Version Description
- [new] Option to disable dynamic mode on mobile devices
- [new] Basic sortable columns for most dashboard tables
- [fix] Exporting adverts not always working for some users
- [change] Responsive feature is now deprecated
- [i18n] Updated translation files
All recent changes are available on the AdRotate website.
=
Download this release
Release Info
Developer | adegans |
Plugin | AdRotate Banner Manager |
Version | 3.14 |
Comparing to | |
See all releases |
Code changes from version 3.13.4 to 3.14
- adrotate-export.php +56 -28
- adrotate-functions.php +11 -6
- adrotate-manage-publisher.php +5 -3
- adrotate-output.php +1 -1
- adrotate-setup.php +14 -4
- adrotate.php +3 -3
- dashboard/adrotatepro.php +22 -8
- dashboard/info.php +1 -1
- dashboard/publisher/adverts-disabled.php +1 -1
- dashboard/publisher/adverts-edit.php +11 -4
- dashboard/publisher/adverts-error.php +1 -1
- dashboard/publisher/adverts-main.php +2 -2
- dashboard/publisher/groups-main.php +1 -1
- dashboard/settings/general.php +4 -0
- images/demo-adblock.png +0 -0
- images/demo-mobile.png +0 -0
- language/adrotate-bg_BG.mo +0 -0
- language/adrotate-bg_BG.po +310 -241
- language/adrotate-el.mo +0 -0
- language/adrotate-el.po +301 -238
- language/adrotate-en_US.mo +0 -0
- language/adrotate-en_US.po +594 -942
- language/adrotate-es_ES.mo +0 -0
- language/adrotate-es_ES.po +310 -241
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +313 -244
- language/adrotate-ja.mo +0 -0
- language/adrotate-ja.po +301 -238
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +310 -241
- language/adrotate-sr_RS.mo +0 -0
- language/adrotate-sr_RS.po +301 -238
- language/adrotate-sv_SV.mo +0 -0
- language/adrotate-sv_SV.po +301 -238
- library/dashboard.css +4 -1
- library/jquery.adrotate.tablesorter.js +45 -0
- library/jquery.tablesorter.min.js +4 -0
- readme.txt +23 -16
adrotate-export.php
CHANGED
@@ -17,47 +17,75 @@
|
|
17 |
Return: -- None --
|
18 |
Since: 3.11
|
19 |
-------------------------------------------------------------*/
|
20 |
-
function adrotate_export_ads($ids) {
|
21 |
global $wpdb;
|
22 |
|
23 |
-
$all_ads = $wpdb->get_results("SELECT * FROM `
|
24 |
-
|
25 |
-
$filename = "AdRotate_export_".date_i18n("mdYHi")."_".uniqid().".xml";
|
26 |
-
$fp = fopen(WP_CONTENT_DIR . '/reports/'.$filename, 'r');
|
27 |
-
|
28 |
-
$xml = new SimpleXMLElement('<adverts></adverts>');
|
29 |
|
|
|
30 |
foreach($all_ads as $single) {
|
31 |
if(in_array($single['id'], $ids)) {
|
32 |
$starttime = $stoptime = 0;
|
33 |
-
$starttime = $wpdb->get_var("SELECT `starttime` FROM `
|
34 |
-
$stoptime = $wpdb->get_var("SELECT `stoptime` FROM `
|
35 |
|
36 |
if(!is_array($single['cities'])) $single['cities'] = array();
|
37 |
if(!is_array($single['countries'])) $single['countries'] = array();
|
38 |
|
39 |
-
$
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
55 |
}
|
56 |
}
|
57 |
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
?>
|
17 |
Return: -- None --
|
18 |
Since: 3.11
|
19 |
-------------------------------------------------------------*/
|
20 |
+
function adrotate_export_ads($ids, $format) {
|
21 |
global $wpdb;
|
22 |
|
23 |
+
$all_ads = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate` ORDER BY `id` ASC;", ARRAY_A);
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
$ads = array();
|
26 |
foreach($all_ads as $single) {
|
27 |
if(in_array($single['id'], $ids)) {
|
28 |
$starttime = $stoptime = 0;
|
29 |
+
$starttime = $wpdb->get_var("SELECT `starttime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$single['id']."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `starttime` ASC LIMIT 1;");
|
30 |
+
$stoptime = $wpdb->get_var("SELECT `stoptime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$single['id']."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
|
31 |
|
32 |
if(!is_array($single['cities'])) $single['cities'] = array();
|
33 |
if(!is_array($single['countries'])) $single['countries'] = array();
|
34 |
|
35 |
+
$ads[$single['id']] = array(
|
36 |
+
'title' => $single['title'],
|
37 |
+
'bannercode' => stripslashes($single['bannercode']),
|
38 |
+
'imagetype' => $single['imagetype'],
|
39 |
+
'image' => $single['image'],
|
40 |
+
'link' => $single['link'],
|
41 |
+
'tracker' => $single['tracker'],
|
42 |
+
'mobile' => $single['mobile'],
|
43 |
+
'tablet' => $single['tablet'],
|
44 |
+
'responsive' => $single['responsive'],
|
45 |
+
'weight' => $single['weight'],
|
46 |
+
'budget' => $single['budget'],
|
47 |
+
'crate' => $single['crate'],
|
48 |
+
'irate' => $single['irate'],
|
49 |
+
'cities' => implode(',', maybe_unserialize($single['cities'])),
|
50 |
+
'countries' => implode(',', maybe_unserialize($single['countries'])),
|
51 |
+
'start' => $starttime,
|
52 |
+
'end' => $stoptime,
|
53 |
+
);
|
54 |
}
|
55 |
}
|
56 |
|
57 |
+
if($ads) {
|
58 |
+
$filename = "AdRotate_export_".date_i18n("mdYHi")."_".uniqid().".xml";
|
59 |
+
|
60 |
+
$xml = new SimpleXMLElement('<adverts></adverts>');
|
61 |
+
foreach($ads as $ad) {
|
62 |
+
$node = $xml->addChild('advert');
|
63 |
+
$node->addChild('title', $ad['title']);
|
64 |
+
$node->addChild('bannercode', $ad['bannercode']);
|
65 |
+
$node->addChild('imagetype', $ad['imagetype']);
|
66 |
+
$node->addChild('image', $ad['image']);
|
67 |
+
$node->addChild('link', $ad['link']);
|
68 |
+
$node->addChild('tracker', $ad['tracker']);
|
69 |
+
$node->addChild('mobile', $ad['mobile']);
|
70 |
+
$node->addChild('tablet', $ad['tablet']);
|
71 |
+
$node->addChild('responsive', $ad['responsive']);
|
72 |
+
$node->addChild('weight', $ad['weight']);
|
73 |
+
$node->addChild('budget', $ad['budget']);
|
74 |
+
$node->addChild('crate', $ad['crate']);
|
75 |
+
$node->addChild('irate', $ad['irate']);
|
76 |
+
$node->addChild('cities', $ad['cities']);
|
77 |
+
$node->addChild('countries', $ad['countries']);
|
78 |
+
$node->addChild('start', $ad['start']);
|
79 |
+
$node->addChild('end', $ad['end']);
|
80 |
+
}
|
81 |
|
82 |
+
file_put_contents(WP_CONTENT_DIR . '/reports/'.$filename, $xml->saveXML());
|
83 |
+
unset($all_ads, $ads);
|
84 |
+
|
85 |
+
adrotate_return('adrotate-ads', 215, array('file' => $filename));
|
86 |
+
exit;
|
87 |
+
} else {
|
88 |
+
adrotate_return('adrotate-ads', 509);
|
89 |
+
}
|
90 |
}
|
91 |
?>
|
adrotate-functions.php
CHANGED
@@ -767,10 +767,15 @@ function adrotate_remove_capability($capability){
|
|
767 |
Since: 3.6
|
768 |
-------------------------------------------------------------*/
|
769 |
function adrotate_dashboard_scripts() {
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
|
|
|
|
|
|
|
|
|
|
774 |
|
775 |
// WP Pointers
|
776 |
$seen_it = explode(',', get_user_meta(get_current_user_id(), 'dismissed_wp_pointers', true));
|
@@ -778,7 +783,7 @@ function adrotate_dashboard_scripts() {
|
|
778 |
wp_enqueue_script('wp-pointer');
|
779 |
wp_enqueue_style('wp-pointer');
|
780 |
add_action('admin_print_footer_scripts', 'adrotate_welcome_pointer');
|
781 |
-
|
782 |
}
|
783 |
|
784 |
/*-------------------------------------------------------------
|
@@ -790,7 +795,7 @@ function adrotate_dashboard_scripts() {
|
|
790 |
Since: 3.6
|
791 |
-------------------------------------------------------------*/
|
792 |
function adrotate_dashboard_styles() {
|
793 |
-
wp_enqueue_style(
|
794 |
}
|
795 |
|
796 |
/*-------------------------------------------------------------
|
767 |
Since: 3.6
|
768 |
-------------------------------------------------------------*/
|
769 |
function adrotate_dashboard_scripts() {
|
770 |
+
$page = (isset($_GET['page'])) ? $_GET['page'] : '';
|
771 |
+
if(strpos($page, 'adrotate') !== false) {
|
772 |
+
wp_enqueue_script('jquery');
|
773 |
+
wp_enqueue_script('raphael', plugins_url('/library/raphael-min.js', __FILE__), array('jquery'));
|
774 |
+
wp_enqueue_script('elycharts', plugins_url('/library/elycharts.min.js', __FILE__), array('jquery', 'raphael'));
|
775 |
+
wp_enqueue_script('textatcursor', plugins_url('/library/textatcursor.js', __FILE__));
|
776 |
+
wp_enqueue_script('tablesorter', plugins_url('/library/jquery.tablesorter.min.js', __FILE__), array('jquery'));
|
777 |
+
wp_enqueue_script('adrotate-tablesorter', plugins_url('/library/jquery.adrotate.tablesorter.js', __FILE__), array('jquery', 'tablesorter'));
|
778 |
+
}
|
779 |
|
780 |
// WP Pointers
|
781 |
$seen_it = explode(',', get_user_meta(get_current_user_id(), 'dismissed_wp_pointers', true));
|
783 |
wp_enqueue_script('wp-pointer');
|
784 |
wp_enqueue_style('wp-pointer');
|
785 |
add_action('admin_print_footer_scripts', 'adrotate_welcome_pointer');
|
786 |
+
}
|
787 |
}
|
788 |
|
789 |
/*-------------------------------------------------------------
|
795 |
Since: 3.6
|
796 |
-------------------------------------------------------------*/
|
797 |
function adrotate_dashboard_styles() {
|
798 |
+
wp_enqueue_style('adrotate-admin-stylesheet', plugins_url('library/dashboard.css', __FILE__));
|
799 |
}
|
800 |
|
801 |
/*-------------------------------------------------------------
|
adrotate-manage-publisher.php
CHANGED
@@ -365,7 +365,7 @@ function adrotate_request_action() {
|
|
365 |
$return = 'adrotate-ads';
|
366 |
if($action == 'export') {
|
367 |
if(current_user_can('adrotate_moderate')) {
|
368 |
-
adrotate_export($banner_ids);
|
369 |
$result_id = 215;
|
370 |
} else {
|
371 |
adrotate_return($return, 500);
|
@@ -563,9 +563,9 @@ function adrotate_renew($id, $howlong = 2592000) {
|
|
563 |
Return: -none-
|
564 |
Since: 3.8.5
|
565 |
-------------------------------------------------------------*/
|
566 |
-
function adrotate_export($ids) {
|
567 |
if(is_array($ids)) {
|
568 |
-
adrotate_export_ads($ids);
|
569 |
}
|
570 |
}
|
571 |
|
@@ -585,10 +585,12 @@ function adrotate_options_submit() {
|
|
585 |
if($settings_tab == 'general') {
|
586 |
$config = get_option('adrotate_config');
|
587 |
|
|
|
588 |
$config['jquery'] = (isset($_POST['adrotate_jquery'])) ? 'Y' : 'N';
|
589 |
$config['jsfooter'] = (isset($_POST['adrotate_jsfooter'])) ? 'Y' : 'N';
|
590 |
|
591 |
// Turn options off. Available in AdRotate Pro only
|
|
|
592 |
$config['banner_folder'] = "wp-content/banners/";
|
593 |
$config['notification_email'] = array();
|
594 |
$config['advertiser_email'] = array();
|
365 |
$return = 'adrotate-ads';
|
366 |
if($action == 'export') {
|
367 |
if(current_user_can('adrotate_moderate')) {
|
368 |
+
adrotate_export($banner_ids, $specific);
|
369 |
$result_id = 215;
|
370 |
} else {
|
371 |
adrotate_return($return, 500);
|
563 |
Return: -none-
|
564 |
Since: 3.8.5
|
565 |
-------------------------------------------------------------*/
|
566 |
+
function adrotate_export($ids, $format) {
|
567 |
if(is_array($ids)) {
|
568 |
+
adrotate_export_ads($ids, $format);
|
569 |
}
|
570 |
}
|
571 |
|
585 |
if($settings_tab == 'general') {
|
586 |
$config = get_option('adrotate_config');
|
587 |
|
588 |
+
$config['mobile_dynamic_mode'] = (isset($_POST['adrotate_mobile_dynamic_mode'])) ? 'Y' : 'N';
|
589 |
$config['jquery'] = (isset($_POST['adrotate_jquery'])) ? 'Y' : 'N';
|
590 |
$config['jsfooter'] = (isset($_POST['adrotate_jsfooter'])) ? 'Y' : 'N';
|
591 |
|
592 |
// Turn options off. Available in AdRotate Pro only
|
593 |
+
$config['textwidget_shortcodes'] = "N";
|
594 |
$config['banner_folder'] = "wp-content/banners/";
|
595 |
$config['notification_email'] = array();
|
596 |
$config['advertiser_email'] = array();
|
adrotate-output.php
CHANGED
@@ -141,7 +141,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
|
141 |
$output .= '<div class="g g-'.$group->id.'">';
|
142 |
|
143 |
// Kill dynamic mode for mobile users
|
144 |
-
if($group->modus == 1 AND (adrotate_is_mobile() OR adrotate_is_tablet())) {
|
145 |
$group->modus = 0;
|
146 |
}
|
147 |
|
141 |
$output .= '<div class="g g-'.$group->id.'">';
|
142 |
|
143 |
// Kill dynamic mode for mobile users
|
144 |
+
if($adrotate_config['mobile_dynamic_mode'] == 'Y' AND $group->modus == 1 AND (adrotate_is_mobile() OR adrotate_is_tablet())) {
|
145 |
$group->modus = 0;
|
146 |
}
|
147 |
|
adrotate-setup.php
CHANGED
@@ -287,6 +287,7 @@ function adrotate_check_config() {
|
|
287 |
if(!isset($config['widgetpadding']) OR ($config['widgetpadding'] != 'Y' AND $config['widgetpadding'] != 'N')) $config['widgetpadding'] = 'N';
|
288 |
if(!isset($config['w3caching']) OR ($config['w3caching'] != 'Y' AND $config['w3caching'] != 'N')) $config['w3caching'] = 'N';
|
289 |
if(!isset($config['textwidget_shortcodes']) OR ($config['textwidget_shortcodes'] != 'Y' AND $config['textwidget_shortcodes'] != 'N')) $config['textwidget_shortcodes'] = 'N';
|
|
|
290 |
if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
|
291 |
if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
|
292 |
if(!isset($config['adblock']) OR ($config['adblock'] != 'Y' AND $config['adblock'] != 'N')) $config['adblock'] = 'N';
|
@@ -343,7 +344,7 @@ function adrotate_dummy_data() {
|
|
343 |
|
344 |
if(is_null($no_ads) AND is_null($no_schedules) AND is_null($no_linkmeta)) {
|
345 |
// Demo ad 1
|
346 |
-
$wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '<a href=\"http:\/\/www.adrotateforwordpress.com\"><img src=\"http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => '
|
347 |
$ad_id = $wpdb->insert_id;
|
348 |
$wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
349 |
$schedule_id = $wpdb->insert_id;
|
@@ -351,7 +352,7 @@ function adrotate_dummy_data() {
|
|
351 |
unset($ad_id, $schedule_id);
|
352 |
|
353 |
// Demo ad 2
|
354 |
-
$wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '<a href=\"http:\/\/www.adrotateforwordpress.com\"><img src=\"http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => '
|
355 |
$ad_id = $wpdb->insert_id;
|
356 |
$wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
357 |
$schedule_id = $wpdb->insert_id;
|
@@ -404,8 +405,9 @@ function adrotate_database_install() {
|
|
404 |
`image` varchar(255) NOT NULL,
|
405 |
`link` longtext NOT NULL,
|
406 |
`tracker` varchar(2) NOT NULL default 'N',
|
407 |
-
`
|
408 |
-
`
|
|
|
409 |
`responsive` varchar(2) NOT NULL default 'N',
|
410 |
`type` varchar(10) NOT NULL default '0',
|
411 |
`weight` int(3) NOT NULL default '6',
|
@@ -784,6 +786,14 @@ function adrotate_database_upgrade() {
|
|
784 |
adrotate_add_column("{$wpdb->prefix}adrotate_schedule", 'day_sun', 'char(1) NOT NULL default \'Y\' AFTER `day_sat`');
|
785 |
}
|
786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
|
788 |
}
|
789 |
|
287 |
if(!isset($config['widgetpadding']) OR ($config['widgetpadding'] != 'Y' AND $config['widgetpadding'] != 'N')) $config['widgetpadding'] = 'N';
|
288 |
if(!isset($config['w3caching']) OR ($config['w3caching'] != 'Y' AND $config['w3caching'] != 'N')) $config['w3caching'] = 'N';
|
289 |
if(!isset($config['textwidget_shortcodes']) OR ($config['textwidget_shortcodes'] != 'Y' AND $config['textwidget_shortcodes'] != 'N')) $config['textwidget_shortcodes'] = 'N';
|
290 |
+
if(!isset($config['mobile_dynamic_mode']) OR ($config['mobile_dynamic_mode'] != 'Y' AND $config['mobile_dynamic_mode'] != 'N')) $config['mobile_dynamic_mode'] = 'N';
|
291 |
if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
|
292 |
if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
|
293 |
if(!isset($config['adblock']) OR ($config['adblock'] != 'Y' AND $config['adblock'] != 'N')) $config['adblock'] = 'N';
|
344 |
|
345 |
if(is_null($no_ads) AND is_null($no_schedules) AND is_null($no_linkmeta)) {
|
346 |
// Demo ad 1
|
347 |
+
$wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '<a href=\"http:\/\/www.adrotateforwordpress.com\"><img src=\"http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
348 |
$ad_id = $wpdb->insert_id;
|
349 |
$wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
350 |
$schedule_id = $wpdb->insert_id;
|
352 |
unset($ad_id, $schedule_id);
|
353 |
|
354 |
// Demo ad 2
|
355 |
+
$wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '<a href=\"http:\/\/www.adrotateforwordpress.com\"><img src=\"http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
356 |
$ad_id = $wpdb->insert_id;
|
357 |
$wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
358 |
$schedule_id = $wpdb->insert_id;
|
405 |
`image` varchar(255) NOT NULL,
|
406 |
`link` longtext NOT NULL,
|
407 |
`tracker` varchar(2) NOT NULL default 'N',
|
408 |
+
`desktop` varchar(2) NOT NULL default 'Y',
|
409 |
+
`mobile` varchar(2) NOT NULL default 'Y',
|
410 |
+
`tablet` varchar(2) NOT NULL default 'Y',
|
411 |
`responsive` varchar(2) NOT NULL default 'N',
|
412 |
`type` varchar(10) NOT NULL default '0',
|
413 |
`weight` int(3) NOT NULL default '6',
|
786 |
adrotate_add_column("{$wpdb->prefix}adrotate_schedule", 'day_sun', 'char(1) NOT NULL default \'Y\' AFTER `day_sat`');
|
787 |
}
|
788 |
|
789 |
+
// Database: 54
|
790 |
+
// AdRotate: 3.14
|
791 |
+
if($adrotate_db_version['current'] < 54) {
|
792 |
+
adrotate_add_column("{$wpdb->prefix}adrotate", 'desktop', 'varchar(2) NOT NULL default \'Y\' AFTER `tracker`');
|
793 |
+
$wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate` CHANGE `mobile` `mobile` varchar(2) NOT NULL default 'Y';");
|
794 |
+
$wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate` CHANGE `tablet` `tablet` varchar(2) NOT NULL default 'Y';");
|
795 |
+
}
|
796 |
+
|
797 |
update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
|
798 |
}
|
799 |
|
adrotate.php
CHANGED
@@ -7,7 +7,7 @@ Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage
|
|
7 |
Description: The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 3.
|
11 |
License: GPLv3
|
12 |
*/
|
13 |
|
@@ -22,9 +22,9 @@ License: GPLv3
|
|
22 |
------------------------------------------------------------------------------------ */
|
23 |
|
24 |
/*--- AdRotate values ---------------------------------------*/
|
25 |
-
define("ADROTATE_DISPLAY", '3.
|
26 |
define("ADROTATE_VERSION", 380);
|
27 |
-
define("ADROTATE_DB_VERSION",
|
28 |
/*-----------------------------------------------------------*/
|
29 |
|
30 |
/*--- Load Files --------------------------------------------*/
|
7 |
Description: The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 3.14
|
11 |
License: GPLv3
|
12 |
*/
|
13 |
|
22 |
------------------------------------------------------------------------------------ */
|
23 |
|
24 |
/*--- AdRotate values ---------------------------------------*/
|
25 |
+
define("ADROTATE_DISPLAY", '3.14');
|
26 |
define("ADROTATE_VERSION", 380);
|
27 |
+
define("ADROTATE_DB_VERSION", 54);
|
28 |
/*-----------------------------------------------------------*/
|
29 |
|
30 |
/*--- Load Files --------------------------------------------*/
|
dashboard/adrotatepro.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
<div id="dashboard-widgets-wrap">
|
13 |
-
<p><center>Take a peek into professional advertising for WordPress websites and discover how you can benefit from the powerful features <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
14 |
|
15 |
<div id="dashboard-widgets" class="metabox-holder">
|
16 |
|
@@ -20,21 +20,28 @@
|
|
20 |
<h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
|
21 |
<div class="postbox-adrotate">
|
22 |
<div class="inside">
|
23 |
-
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
</div>
|
25 |
</div>
|
26 |
|
27 |
<h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
|
28 |
<div class="postbox-adrotate">
|
29 |
<div class="inside">
|
30 |
-
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
31 |
</div>
|
32 |
</div>
|
33 |
|
34 |
<h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
|
35 |
<div class="postbox-adrotate">
|
36 |
<div class="inside">
|
37 |
-
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
38 |
</div>
|
39 |
</div>
|
40 |
|
@@ -42,7 +49,7 @@
|
|
42 |
<div class="postbox-adrotate">
|
43 |
<div class="inside">
|
44 |
<p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/arnan-jungle.jpg" alt="Arnan de Gans" width="100" height="100" align="left" class="adrotate-photo" style="margin: 0 10px 0 0;" />
|
45 |
-
<a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('Premium plugins for WordPress and WooCommerce
|
46 |
|
47 |
<p><center><a href="https://twitter.com/arnandegans" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @arnandegans</a>
|
48 |
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
|
@@ -58,14 +65,21 @@
|
|
58 |
<h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
|
59 |
<div class="postbox-adrotate">
|
60 |
<div class="inside">
|
61 |
-
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
</div>
|
63 |
</div>
|
64 |
|
65 |
<h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
|
66 |
<div class="postbox-adrotate">
|
67 |
<div class="inside">
|
68 |
-
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
69 |
</div>
|
70 |
</div>
|
71 |
|
@@ -102,6 +116,6 @@
|
|
102 |
|
103 |
<div class="clear"></div>
|
104 |
|
105 |
-
<p><center>A grasp of the features AdRotate Pro has to offer over the free version. Check out the <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage
|
106 |
<p><?php echo adrotate_trademark(); ?></p>
|
107 |
</div>
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
<div id="dashboard-widgets-wrap">
|
13 |
+
<p><center>Take a peek into professional advertising for WordPress websites and discover how you can benefit from the powerful features <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank">AdRotate Professional</a> has to offer.</center></p>
|
14 |
|
15 |
<div id="dashboard-widgets" class="metabox-holder">
|
16 |
|
20 |
<h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
|
21 |
<div class="postbox-adrotate">
|
22 |
<div class="inside">
|
23 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-satisfy.png" class="alignleft pro-image" /></a><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
|
27 |
+
<h3><?php _e('Mobile campaigns', 'adrotate'); ?></h3>
|
28 |
+
<div class="postbox-adrotate">
|
29 |
+
<div class="inside">
|
30 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-mobile.png" class="alignleft pro-image" /></a><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
|
31 |
</div>
|
32 |
</div>
|
33 |
|
34 |
<h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
|
35 |
<div class="postbox-adrotate">
|
36 |
<div class="inside">
|
37 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-geo-targeting.png" class="alignleft pro-image" /></a><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
|
38 |
</div>
|
39 |
</div>
|
40 |
|
41 |
<h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
|
42 |
<div class="postbox-adrotate">
|
43 |
<div class="inside">
|
44 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-support.png" class="alignleft pro-image" /></a><?php _e('When you activate your AdRotate Pro license you can use fast and personal email support. No more queueing up in the forums. AdRotate premium support takes priority over the forums and is checked much more often than the forum. Get a solution (usually) within a day.', 'adrotate'); ?></p>
|
45 |
</div>
|
46 |
</div>
|
47 |
|
49 |
<div class="postbox-adrotate">
|
50 |
<div class="inside">
|
51 |
<p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/arnan-jungle.jpg" alt="Arnan de Gans" width="100" height="100" align="left" class="adrotate-photo" style="margin: 0 10px 0 0;" />
|
52 |
+
<a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('Premium plugins for WordPress and WooCommerce! Protect against bots without hindering real users. Need checkout solutions for your WooCommerce store?', 'adrotate'); ?></p>
|
53 |
|
54 |
<p><center><a href="https://twitter.com/arnandegans" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @arnandegans</a>
|
55 |
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
|
65 |
<h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
|
66 |
<div class="postbox-adrotate">
|
67 |
<div class="inside">
|
68 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-schedule.png" class="alignleft pro-image" /></a><?php _e('Schedule your adverts and set up advertising campaigns based on dates you or your advertisers specify without hassle. Seasonal adverts, weekly adverts. You name it, AdRotate schedules it. This makes planning your revenue stream much more easy. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
|
72 |
+
<h3><?php _e('Avoid adblockers', 'adrotate'); ?></h3>
|
73 |
+
<div class="postbox-adrotate">
|
74 |
+
<div class="inside">
|
75 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-adblock.png" class="alignleft pro-image" /></a><?php _e('Try and avoid adblockers so you adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
|
76 |
</div>
|
77 |
</div>
|
78 |
|
79 |
<h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
|
80 |
<div class="postbox-adrotate">
|
81 |
<div class="inside">
|
82 |
+
<p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-notifications.png" class="alignleft pro-image" /></a><?php _e('Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Additionally, you can have AdRotate send push notifications to your iOS or Android smartphone. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
|
83 |
</div>
|
84 |
</div>
|
85 |
|
116 |
|
117 |
<div class="clear"></div>
|
118 |
|
119 |
+
<p><center>A grasp of the features AdRotate Pro has to offer over the free version. Check out the <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage" target="_blank">AdRotate website</a> for more information.</center></p>
|
120 |
<p><?php echo adrotate_trademark(); ?></p>
|
121 |
</div>
|
dashboard/info.php
CHANGED
@@ -120,7 +120,7 @@ $data = get_option("adrotate_advert_status");
|
|
120 |
<div class="postbox-adrotate">
|
121 |
<div class="inside">
|
122 |
<p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/arnan-jungle.jpg" alt="Arnan de Gans" width="100" height="100" align="left" class="adrotate-photo" style="margin: 0 10px 0 0;" />
|
123 |
-
<a href="http://meandmymac.net/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('Premium plugins for WordPress and WooCommerce
|
124 |
|
125 |
<p><center><a href="https://twitter.com/arnandegans" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @arnandegans</a>
|
126 |
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
|
120 |
<div class="postbox-adrotate">
|
121 |
<div class="inside">
|
122 |
<p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/arnan-jungle.jpg" alt="Arnan de Gans" width="100" height="100" align="left" class="adrotate-photo" style="margin: 0 10px 0 0;" />
|
123 |
+
<a href="http://meandmymac.net/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('Premium plugins for WordPress and WooCommerce! Protect against bots without hindering real users. Need checkout solutions for your WooCommerce store?', 'adrotate'); ?></p>
|
124 |
|
125 |
<p><center><a href="https://twitter.com/arnandegans" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @arnandegans</a>
|
126 |
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
|
dashboard/publisher/adverts-disabled.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
<br class="clear" />
|
29 |
</div>
|
30 |
|
31 |
-
<table class="widefat" style="margin-top: .5em">
|
32 |
<thead>
|
33 |
<tr>
|
34 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
28 |
<br class="clear" />
|
29 |
</div>
|
30 |
|
31 |
+
<table class="widefat tablesorter manage-ads-disabled" style="margin-top: .5em">
|
32 |
<thead>
|
33 |
<tr>
|
34 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
dashboard/publisher/adverts-edit.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
if(!$ad_edit_id) {
|
13 |
$edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' ORDER BY `id` DESC LIMIT 1;");
|
14 |
if($edit_id == 0) {
|
15 |
-
$wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => 'dropdown', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => '
|
16 |
$edit_id = $wpdb->insert_id;
|
17 |
|
18 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
|
@@ -297,13 +297,20 @@ if($edit_banner->imagetype == "field") {
|
|
297 |
<p><em><?php _e('Everything below is optional.', 'adrotate'); ?></em></p>
|
298 |
<table class="widefat" style="margin-top: .5em">
|
299 |
<tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
<tr>
|
301 |
<th width="15%" valign="top"><?php _e('Responsive', 'adrotate'); ?></th>
|
302 |
<td colspan="3">
|
303 |
<label for="adrotate_responsive"><input tabindex="22" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
|
304 |
-
<em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext".
|
305 |
<em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
|
306 |
-
<em><strong><?php _e('
|
307 |
</td>
|
308 |
</tr>
|
309 |
<tr>
|
@@ -314,7 +321,7 @@ if($edit_banner->imagetype == "field") {
|
|
314 |
</tr>
|
315 |
</tbody>
|
316 |
</table>
|
317 |
-
<center><?php _e('With AdRotate Pro you can
|
318 |
|
319 |
<h3><?php _e('Geo Targeting in AdRotate Pro', 'adrotate'); ?></h3>
|
320 |
<p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?></em></p>
|
12 |
if(!$ad_edit_id) {
|
13 |
$edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' ORDER BY `id` DESC LIMIT 1;");
|
14 |
if($edit_id == 0) {
|
15 |
+
$wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => 'dropdown', 'image' => '', 'link' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
16 |
$edit_id = $wpdb->insert_id;
|
17 |
|
18 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
|
297 |
<p><em><?php _e('Everything below is optional.', 'adrotate'); ?></em></p>
|
298 |
<table class="widefat" style="margin-top: .5em">
|
299 |
<tbody>
|
300 |
+
<tr>
|
301 |
+
<th width="15%" valign="top"><?php _e('Mobile', 'adrotate'); ?></th>
|
302 |
+
<td colspan="3">
|
303 |
+
<?php _e('Show on;', 'adrotate'); ?> <label for="adrotate_desktop"><input disabled type="checkbox" name="adrotate_desktop" checked="checked" /><?php _e('Computers', 'adrotate'); ?></label> <label for="adrotate_mobile"><input disabled type="checkbox" name="adrotate_mobile" checked="checked" /><?php _e('Smartphones', 'adrotate'); ?></label> <label for="adrotate_tablet"><input disabled type="checkbox" name="adrotate_tablet" checked="checked" /><?php _e('Tablets.', 'adrotate'); ?></label><br />
|
304 |
+
<em><?php _e('Also enable mobile support in the group this advert goes in.', 'adrotate'); ?></em>
|
305 |
+
</td>
|
306 |
+
</tr>
|
307 |
<tr>
|
308 |
<th width="15%" valign="top"><?php _e('Responsive', 'adrotate'); ?></th>
|
309 |
<td colspan="3">
|
310 |
<label for="adrotate_responsive"><input tabindex="22" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
|
311 |
+
<em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext".', 'adrotate'); ?></em><br />
|
312 |
<em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
|
313 |
+
<em><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('This feature will not be developed any further. Consider switching to the Mobile feature in AdRotate Pro as seen above!', 'adrotate'); ?></em></label>
|
314 |
</td>
|
315 |
</tr>
|
316 |
<tr>
|
321 |
</tr>
|
322 |
</tbody>
|
323 |
</table>
|
324 |
+
<center><?php _e('With AdRotate Pro you can easily select which devices the advert should show on!', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>!</center>
|
325 |
|
326 |
<h3><?php _e('Geo Targeting in AdRotate Pro', 'adrotate'); ?></h3>
|
327 |
<p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?></em></p>
|
dashboard/publisher/adverts-error.php
CHANGED
@@ -32,7 +32,7 @@
|
|
32 |
<br class="clear" />
|
33 |
</div>
|
34 |
|
35 |
-
<table class="widefat" style="margin-top: .5em">
|
36 |
<thead>
|
37 |
<tr>
|
38 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
32 |
<br class="clear" />
|
33 |
</div>
|
34 |
|
35 |
+
<table class="widefat tablesorter manage-ads-error" style="margin-top: .5em">
|
36 |
<thead>
|
37 |
<tr>
|
38 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
dashboard/publisher/adverts-main.php
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
<option value="deactivate"><?php _e('Deactivate', 'adrotate'); ?></option>
|
22 |
<option value="delete"><?php _e('Delete', 'adrotate'); ?></option>
|
23 |
<option value="reset"><?php _e('Reset stats', 'adrotate'); ?></option>
|
24 |
-
<option value="export"><?php _e('Export to XML', 'adrotate'); ?></option>
|
25 |
<option value="" disabled><?php _e('-- Renew --', 'adrotate'); ?></option>
|
26 |
<option value="renew-31536000"><?php _e('For 1 year', 'adrotate'); ?></option>
|
27 |
<option value="renew-5184000"><?php _e('For 180 days', 'adrotate'); ?></option>
|
@@ -32,7 +32,7 @@
|
|
32 |
<br class="clear" />
|
33 |
</div>
|
34 |
|
35 |
-
<table class="widefat" style="margin-top: .5em">
|
36 |
<thead>
|
37 |
<tr>
|
38 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
21 |
<option value="deactivate"><?php _e('Deactivate', 'adrotate'); ?></option>
|
22 |
<option value="delete"><?php _e('Delete', 'adrotate'); ?></option>
|
23 |
<option value="reset"><?php _e('Reset stats', 'adrotate'); ?></option>
|
24 |
+
<option value="export-xml"><?php _e('Export to XML', 'adrotate'); ?></option>
|
25 |
<option value="" disabled><?php _e('-- Renew --', 'adrotate'); ?></option>
|
26 |
<option value="renew-31536000"><?php _e('For 1 year', 'adrotate'); ?></option>
|
27 |
<option value="renew-5184000"><?php _e('For 180 days', 'adrotate'); ?></option>
|
32 |
<br class="clear" />
|
33 |
</div>
|
34 |
|
35 |
+
<table class="widefat tablesorter manage-ads-main" style="margin-top: .5em">
|
36 |
<thead>
|
37 |
<tr>
|
38 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
dashboard/publisher/groups-main.php
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
</div>
|
26 |
</div>
|
27 |
|
28 |
-
<table class="widefat" style="margin-top: .5em">
|
29 |
<thead>
|
30 |
<tr>
|
31 |
<td class="check-column"> </td>
|
25 |
</div>
|
26 |
</div>
|
27 |
|
28 |
+
<table class="widefat tablesorter manage-groups-main" style="margin-top: .5em">
|
29 |
<thead>
|
30 |
<tr>
|
31 |
<td class="check-column"> </td>
|
dashboard/settings/general.php
CHANGED
@@ -16,6 +16,10 @@
|
|
16 |
<th valign="top"><?php _e('Text widgets', 'adrotate'); ?></th>
|
17 |
<td><label for="adrotate_textwidget_shortcodes"><input type="checkbox" name="adrotate_textwidget_shortcodes" disabled /><?php _e('Enable if your theme does not support shortcodes in the WordPress text widget.', 'adrotate'); ?></label></td>
|
18 |
</tr>
|
|
|
|
|
|
|
|
|
19 |
<tr>
|
20 |
<th valign="top"><?php _e('Load jQuery', 'adrotate'); ?></th>
|
21 |
<td><label for="adrotate_jquery"><input type="checkbox" name="adrotate_jquery" <?php if($adrotate_config['jquery'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable if your theme does not load jQuery. jQuery is required for dynamic groups, statistics and some other features.', 'adrotate'); ?></label></td>
|
16 |
<th valign="top"><?php _e('Text widgets', 'adrotate'); ?></th>
|
17 |
<td><label for="adrotate_textwidget_shortcodes"><input type="checkbox" name="adrotate_textwidget_shortcodes" disabled /><?php _e('Enable if your theme does not support shortcodes in the WordPress text widget.', 'adrotate'); ?></label></td>
|
18 |
</tr>
|
19 |
+
<tr>
|
20 |
+
<th valign="top"><?php _e('Dynamic mode for Mobile', 'adrotate-pro'); ?></th>
|
21 |
+
<td><label for="adrotate_mobile_dynamic_mode"><input type="checkbox" name="adrotate_mobile_dynamic_mode" <?php if($adrotate_config['mobile_dynamic_mode'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Disable dynamic mode in groups for mobile devices if you notice skipping or jumping content.', 'adrotate-pro'); ?></label></td>
|
22 |
+
</tr>
|
23 |
<tr>
|
24 |
<th valign="top"><?php _e('Load jQuery', 'adrotate'); ?></th>
|
25 |
<td><label for="adrotate_jquery"><input type="checkbox" name="adrotate_jquery" <?php if($adrotate_config['jquery'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable if your theme does not load jQuery. jQuery is required for dynamic groups, statistics and some other features.', 'adrotate'); ?></label></td>
|
images/demo-adblock.png
ADDED
Binary file
|
images/demo-mobile.png
ADDED
Binary file
|
language/adrotate-bg_BG.mo
CHANGED
Binary file
|
language/adrotate-bg_BG.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
@@ -13,117 +13,117 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Няма намерени файлове"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Папката не е намерена или не е достъпна"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Успешно изтриване"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Групата е изтрита"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Статистиката е нулирана"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Успешно подновяване"
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Успешно деактивиране"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Успешно активиране"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Групата и съдържащите се в нея реклами са изтрити"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Export created"
|
66 |
msgstr "Експорта е завършен"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Настройките са запазени"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Database optimized"
|
74 |
msgstr "Базата данни е оптимизирана"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Database repaired"
|
78 |
msgstr "Базата данни е поправена"
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
|
83 |
|
84 |
-
#: adrotate-functions.php:
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr "Празните записи в базата данни са премахнати"
|
87 |
|
88 |
-
#: adrotate-functions.php:
|
89 |
msgid "Action prohibited"
|
90 |
msgstr "Забранено действие"
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
msgid ""
|
94 |
"The ad was saved but has an issue which might prevent it from working "
|
95 |
"properly. Review the colored ad."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: adrotate-functions.php:
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr "Не е намерена информация за избрания период"
|
101 |
|
102 |
-
#: adrotate-functions.php:
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: adrotate-functions.php:
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: adrotate-manage-publisher.php:
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: adrotate-output.php:
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr "О не! Нещо се случи!"
|
125 |
|
126 |
-
#: adrotate-output.php:
|
127 |
msgid ""
|
128 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
129 |
"Verify if the url used is valid or log in via your browser."
|
@@ -132,17 +132,17 @@ msgstr ""
|
|
132 |
"кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
|
133 |
"си."
|
134 |
|
135 |
-
#: adrotate-output.php:
|
136 |
msgid ""
|
137 |
"If you have received the url you want to visit via email, you are being "
|
138 |
"tricked!"
|
139 |
msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
|
140 |
|
141 |
-
#: adrotate-output.php:
|
142 |
msgid "Contact support if the issue persists:"
|
143 |
msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
|
144 |
|
145 |
-
#: adrotate-output.php:
|
146 |
msgid ""
|
147 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
148 |
"restrictions or does not exist!"
|
@@ -150,33 +150,33 @@ msgstr ""
|
|
150 |
"Грешка, рекламата не е налична в момента, поради ограничения в графика/"
|
151 |
"геолокацията или не съществува!"
|
152 |
|
153 |
-
#: adrotate-output.php:
|
154 |
msgid ""
|
155 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
156 |
"restrictions!"
|
157 |
msgstr ""
|
158 |
"Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
|
159 |
|
160 |
-
#: adrotate-output.php:
|
161 |
msgid ""
|
162 |
"Either there are no banners, they are disabled or none qualified for this "
|
163 |
"location!"
|
164 |
msgstr ""
|
165 |
"Няма налични банери, те са деактивирани или не са подходящи за това място!"
|
166 |
|
167 |
-
#: adrotate-output.php:
|
168 |
msgid "Error, no Ad ID set! Check your syntax!"
|
169 |
msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
|
170 |
|
171 |
-
#: adrotate-output.php:
|
172 |
msgid "Error, no group ID set! Check your syntax!"
|
173 |
msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
msgid "Error, group does not exist! Check your syntax!"
|
177 |
msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid ""
|
181 |
"There was an error locating the database tables for AdRotate. Please "
|
182 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -184,66 +184,66 @@ msgstr ""
|
|
184 |
"Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
|
185 |
"изключете и включете наново AdRotate от страницата с плъгините!!"
|
186 |
|
187 |
-
#: adrotate-output.php:
|
188 |
msgid "If this does not solve the issue please seek support at"
|
189 |
msgstr "Ако това не решава проблема, моля потърсете помощ на"
|
190 |
|
191 |
-
#: adrotate-output.php:
|
192 |
msgid "An unknown error occured."
|
193 |
msgstr "Възникна неизвестна грешка."
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
msgid "active ad(s) expired."
|
197 |
msgstr "изтекла/и активна/и реклама/и."
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "Take action now"
|
201 |
msgstr "Предприемане на действия"
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "active ad(s) are about to expire."
|
205 |
msgstr "изтичаща/и активна/и реклама/и."
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "Check it out"
|
209 |
msgstr "Проверете го"
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "active ad(s) with configuration errors."
|
213 |
msgstr "активна(и) реклама(и) с грешни настройки."
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "Solve this"
|
217 |
msgstr "Разреши това"
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "ad(s) expired."
|
221 |
msgstr "изтекла/и реклама/и."
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "ad(s) are about to expire."
|
225 |
msgstr "реклама/и изтича(т)."
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "ad(s) with configuration errors."
|
229 |
msgstr "реклама/и с грешни настройки."
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "Fix this as soon as possible"
|
233 |
msgstr "Поправка възможно най-скоро"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
-
#: dashboard/adrotatepro.php:
|
237 |
-
#: dashboard/adrotatepro.php:
|
238 |
-
#: dashboard/adrotatepro.php:
|
239 |
-
#: dashboard/adrotatepro.php:
|
240 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
241 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
242 |
#: dashboard/settings/geotargeting.php:26
|
243 |
msgid "Buy now"
|
244 |
msgstr "Купи сега"
|
245 |
|
246 |
-
#: adrotate-output.php:
|
247 |
msgid ""
|
248 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
249 |
"to the <strong>PRO</strong> version"
|
@@ -251,67 +251,67 @@ msgstr ""
|
|
251 |
"Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
|
252 |
"до <strong>PRO</strong> версията"
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
#, php-format
|
256 |
msgid ""
|
257 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid "Thank you for your purchase!"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
msgid ""
|
266 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
267 |
"this menu. Check out the"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: adrotate-output.php:
|
271 |
msgid "manuals"
|
272 |
msgstr "ръководства"
|
273 |
|
274 |
-
#: adrotate-output.php:
|
275 |
msgid "and"
|
276 |
msgstr "и"
|
277 |
|
278 |
-
#: adrotate-output.php:
|
279 |
msgid "forums"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: adrotate-output.php:
|
283 |
msgid "Useful Links"
|
284 |
msgstr "Полезни връзки"
|
285 |
|
286 |
-
#: adrotate-output.php:
|
287 |
msgid "Useful links to learn more about AdRotate"
|
288 |
msgstr "Полезни връзки, за да получите повече информация за AdRotate"
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
msgid "AdRotate Page"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
msgid "Getting Started With AdRotate"
|
296 |
msgstr "Започнете от нулата с AdRotate Pro"
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
msgid "AdRotate manuals"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: adrotate-output.php:
|
303 |
msgid "AdRotate Support Forum"
|
304 |
msgstr "Форум за поддръжка на AdRotate"
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
msgid "Help AdRotate Grow"
|
308 |
msgstr "Помогнете за развитието на AdRotate"
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
msgid "Brought to you by"
|
312 |
msgstr "Достига до Вас благодарение на"
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
msgid ""
|
316 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
317 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
@@ -320,35 +320,35 @@ msgstr ""
|
|
320 |
"се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
|
321 |
"това да остане незабелязано."
|
322 |
|
323 |
-
#: adrotate-output.php:
|
324 |
msgid "If you find AdRotate useful please leave your honest"
|
325 |
msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid "rating"
|
329 |
msgstr "оценка"
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid "review"
|
333 |
msgstr "мнение"
|
334 |
|
335 |
-
#: adrotate-output.php:
|
336 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
337 |
msgstr "на WordPress.org, за да се развива AdRotate"
|
338 |
|
339 |
-
#: adrotate-output.php:
|
340 |
msgid "Available in AdRotate Pro"
|
341 |
msgstr "Налично в AdRotate Pro"
|
342 |
|
343 |
-
#: adrotate-output.php:
|
344 |
msgid "More information..."
|
345 |
msgstr "Повече информация..."
|
346 |
|
347 |
-
#: adrotate-output.php:
|
348 |
msgid "This feature is available in AdRotate Pro"
|
349 |
msgstr "Тази функционалност е налична в AdRotate Pro"
|
350 |
|
351 |
-
#: adrotate-output.php:
|
352 |
msgid "Learn more"
|
353 |
msgstr "Повече информация"
|
354 |
|
@@ -468,68 +468,68 @@ msgstr "ID:"
|
|
468 |
msgid "Fill in the ID of the type you want to display!"
|
469 |
msgstr "Попълнете ID-то на типа, който искате да се показва!"
|
470 |
|
471 |
-
#: adrotate.php:
|
472 |
msgid "General Info"
|
473 |
msgstr "Обща информация"
|
474 |
|
475 |
-
#: adrotate.php:
|
476 |
msgid "AdRotate Pro"
|
477 |
msgstr "AdRotate Pro"
|
478 |
|
479 |
-
#: adrotate.php:
|
480 |
msgid "Manage Ads"
|
481 |
msgstr "Управление на реклами"
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "Manage Groups"
|
485 |
msgstr "Управление на групи"
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "Manage Schedules"
|
489 |
msgstr "Управление на графици"
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid "Manage Media"
|
493 |
msgstr "Управление на Медия"
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
msgid "Settings"
|
497 |
msgstr "Настройки"
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
msgid "AdRotate Info"
|
501 |
msgstr "AdRotate Info"
|
502 |
|
503 |
-
#: adrotate.php:
|
504 |
msgid "AdRotate Professional"
|
505 |
msgstr "AdRotate Professional"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "Ad Management"
|
509 |
msgstr "Управление на реклами"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "Manage"
|
513 |
msgstr "Управление"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
msgid "Add New"
|
517 |
msgstr "Добавяне"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "Group Management"
|
521 |
msgstr "Управление на групи"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
#: dashboard/publisher/groups-main.php:70
|
525 |
msgid "Report"
|
526 |
msgstr "Доклад"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Schedule Management available in AdRotate Pro"
|
530 |
msgstr "Управление с графици е налично в AdRotate Pro"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
msgid ""
|
534 |
"Schedule management and multiple schedules per advert is available in "
|
535 |
"AdRotate Pro."
|
@@ -537,28 +537,28 @@ msgstr ""
|
|
537 |
"Управлението на графици и множество графици за една реклама са налични в "
|
538 |
"AdRotate Pro."
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
#: dashboard/publisher/adverts-main.php:114
|
542 |
#: dashboard/publisher/groups-edit.php:75
|
543 |
#: dashboard/publisher/groups-main.php:89
|
544 |
msgid "More information"
|
545 |
msgstr "Повече информация"
|
546 |
|
547 |
-
#: adrotate.php:
|
548 |
#: dashboard/publisher/adverts-error.php:19
|
549 |
#: dashboard/publisher/adverts-main.php:20
|
550 |
#: dashboard/publisher/groups-main.php:20
|
551 |
msgid "Bulk Actions"
|
552 |
msgstr "Масови действия"
|
553 |
|
554 |
-
#: adrotate.php:
|
555 |
#: dashboard/publisher/adverts-error.php:29
|
556 |
#: dashboard/publisher/adverts-main.php:30
|
557 |
#: dashboard/publisher/groups-main.php:24
|
558 |
msgid "Go"
|
559 |
msgstr "Напред"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
#: dashboard/publisher/adverts-error.php:39
|
563 |
#: dashboard/publisher/adverts-main.php:39
|
564 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -566,88 +566,88 @@ msgstr "Напред"
|
|
566 |
msgid "ID"
|
567 |
msgstr "ID"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
msgid "Start"
|
571 |
msgstr "Начало"
|
572 |
|
573 |
-
#: adrotate.php:
|
574 |
msgid "End"
|
575 |
msgstr "Край"
|
576 |
|
577 |
-
#: adrotate.php:
|
578 |
#: dashboard/publisher/groups-main.php:34
|
579 |
msgid "Ads"
|
580 |
msgstr "Реклами"
|
581 |
|
582 |
-
#: adrotate.php:
|
583 |
msgid "Max Impressions"
|
584 |
msgstr "Максимум импресии"
|
585 |
|
586 |
-
#: adrotate.php:
|
587 |
msgid "Max Clicks"
|
588 |
msgstr "Максимум кликове"
|
589 |
|
590 |
-
#: adrotate.php:
|
591 |
msgid "No schedules created yet!"
|
592 |
msgstr "Все още няма създадени графици!"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
596 |
msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
msgid "Upgrade today!"
|
600 |
msgstr "Надградете днес!"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
#: dashboard/publisher/groups-edit.php:387
|
604 |
msgid "Expires soon."
|
605 |
msgstr "Изтича скоро."
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
#: dashboard/publisher/groups-edit.php:388
|
609 |
msgid "Has expired."
|
610 |
msgstr "Изтекла."
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
msgid "Media Management available in AdRotate Pro"
|
614 |
msgstr "Управление на медия е налично в AdRotate Pro"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
msgid ""
|
622 |
"This is useful if you use responsive adverts with multiple images or have "
|
623 |
"HTML5 adverts containing multiple files."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
msgid "Media uploading and management is available in AdRotate Pro."
|
628 |
msgstr "Управлението и качването на медия са налични в AdRotate Pro."
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
msgid "Upload new file"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: adrotate.php:
|
635 |
msgid "Accepted files:"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
msgid "Maximum size is 512Kb."
|
644 |
msgstr "Максималния размер е 512Kb."
|
645 |
|
646 |
-
#: adrotate.php:
|
647 |
msgid "Important:"
|
648 |
msgstr "Важно:"
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
msgid ""
|
652 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
653 |
"spaces with a - or _."
|
@@ -655,13 +655,13 @@ msgstr ""
|
|
655 |
"Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
|
656 |
"интервалите с - или _."
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
msgid ""
|
660 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
661 |
"file so it knows about the changed name. For example for the javascript file."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid ""
|
666 |
"For responsive adverts make sure the filename is in the following format; "
|
667 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
@@ -670,7 +670,7 @@ msgstr ""
|
|
670 |
"формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
|
671 |
"е строго препоръчителен."
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
msgid ""
|
675 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
676 |
"filename instead of \".full\" for the various viewports."
|
@@ -679,13 +679,12 @@ msgstr ""
|
|
679 |
"използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
|
680 |
"файловете, вместо \".full\"."
|
681 |
|
682 |
-
#: adrotate.php:
|
683 |
-
#: dashboard/publisher/groups-edit.php:312
|
684 |
#: dashboard/publisher/groups-edit.php:320
|
685 |
msgid "Example:"
|
686 |
msgstr "Пример:"
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid ""
|
690 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
691 |
"for different viewports."
|
@@ -693,51 +692,51 @@ msgstr ""
|
|
693 |
"image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
|
694 |
"реклама в различни резолюции на екрана."
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
msgid "Upload file"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: adrotate.php:
|
701 |
msgid "Click only once per file!"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: adrotate.php:
|
705 |
msgid "Available files in"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: adrotate.php:
|
709 |
#: dashboard/publisher/groups-main.php:33
|
710 |
msgid "Name"
|
711 |
msgstr "Име"
|
712 |
|
713 |
-
#: adrotate.php:
|
714 |
msgid "Actions"
|
715 |
msgstr "Действия"
|
716 |
|
717 |
-
#: adrotate.php:
|
718 |
-
#: adrotate.php:
|
719 |
#: dashboard/publisher/adverts-disabled.php:22
|
720 |
#: dashboard/publisher/adverts-error.php:21
|
721 |
#: dashboard/publisher/adverts-main.php:22
|
722 |
msgid "Delete"
|
723 |
msgstr "Изтриване"
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
msgid ""
|
727 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
728 |
msgstr ""
|
729 |
"Уверете се, че картинките за банери не се използват от реклами, преди да ги "
|
730 |
"изтриете!"
|
731 |
|
732 |
-
#: adrotate.php:
|
733 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
734 |
msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
msgid "AdRotate Settings"
|
738 |
msgstr "AdRotate Настройки"
|
739 |
|
740 |
-
#: adrotate.php:
|
741 |
msgid "Update Options"
|
742 |
msgstr "Опции за обновяване"
|
743 |
|
@@ -758,10 +757,22 @@ msgstr ""
|
|
758 |
"където да се информират за представянето не рекламите си."
|
759 |
|
760 |
#: dashboard/adrotatepro.php:27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
761 |
msgid "Localize your ad campaigns with Geo Targeting"
|
762 |
msgstr "Локализирайте своите рекламни кампании с Таргетиране по местоположение"
|
763 |
|
764 |
-
#: dashboard/adrotatepro.php:
|
765 |
msgid ""
|
766 |
"Go nationwide or global with localized adverts for your various audiences. "
|
767 |
"Set up adverts for countries and cities and sell impressions per general "
|
@@ -769,11 +780,11 @@ msgid ""
|
|
769 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: dashboard/adrotatepro.php:
|
773 |
msgid "Get Premium Support almost all year round"
|
774 |
msgstr "Получете премиум поддръжка почти през цялата година"
|
775 |
|
776 |
-
#: dashboard/adrotatepro.php:
|
777 |
msgid ""
|
778 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
779 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -781,21 +792,21 @@ msgid ""
|
|
781 |
"forum. Get a solution (usually) within a day."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: dashboard/adrotatepro.php:
|
785 |
msgid "AdRotate is brought to you by"
|
786 |
msgstr "AdRotate достига до Вас, благодарение на"
|
787 |
|
788 |
-
#: dashboard/adrotatepro.php:
|
789 |
msgid ""
|
790 |
-
"Premium plugins for WordPress and WooCommerce
|
791 |
-
"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: dashboard/adrotatepro.php:
|
795 |
msgid "Schedule all campaigns with ease"
|
796 |
msgstr "Планиране на всички кампании с лекота"
|
797 |
|
798 |
-
#: dashboard/adrotatepro.php:
|
799 |
msgid ""
|
800 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
801 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -803,11 +814,23 @@ msgid ""
|
|
803 |
"much more easy. You can set one or many schedules for adverts."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
msgid "Stay up-to-date with notifications"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: dashboard/adrotatepro.php:
|
811 |
msgid ""
|
812 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
813 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -816,89 +839,89 @@ msgid ""
|
|
816 |
"miss an expiration date again."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:
|
820 |
#: dashboard/info.php:93 dashboard/info.php:105
|
821 |
msgid "Buy AdRotate Professional"
|
822 |
msgstr "Купете AdRotate Professional"
|
823 |
|
824 |
-
#: dashboard/adrotatepro.php:
|
825 |
msgid "Single License"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: dashboard/adrotatepro.php:
|
829 |
msgid "For one WordPress installation."
|
830 |
msgstr "За една инсталация на WordPress."
|
831 |
|
832 |
-
#: dashboard/adrotatepro.php:
|
833 |
#: dashboard/info.php:98 dashboard/info.php:110
|
834 |
msgid "Duo License"
|
835 |
msgstr "Duo лиценз"
|
836 |
|
837 |
-
#: dashboard/adrotatepro.php:
|
838 |
msgid "For two WordPress installations."
|
839 |
msgstr "За две Wordpress инсталации."
|
840 |
|
841 |
-
#: dashboard/adrotatepro.php:
|
842 |
#: dashboard/info.php:99 dashboard/info.php:111
|
843 |
msgid "Multi License"
|
844 |
msgstr "Multi лиценз"
|
845 |
|
846 |
-
#: dashboard/adrotatepro.php:
|
847 |
msgid " For up to five WordPress installations."
|
848 |
msgstr " За до 5 Wordpress инсталации."
|
849 |
|
850 |
-
#: dashboard/adrotatepro.php:
|
851 |
#: dashboard/info.php:100 dashboard/info.php:112
|
852 |
msgid "Developer License"
|
853 |
msgstr "Developer лиценз"
|
854 |
|
855 |
-
#: dashboard/adrotatepro.php:
|
856 |
msgid "Unlimited WordPress installations and/or networks."
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: dashboard/adrotatepro.php:
|
860 |
#: dashboard/info.php:101 dashboard/info.php:114
|
861 |
msgid "Compare licenses"
|
862 |
msgstr "Сравнение на лицензи"
|
863 |
|
864 |
-
#: dashboard/adrotatepro.php:
|
865 |
msgid "Not sure which license is for you? Compare them..."
|
866 |
msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
|
867 |
|
868 |
-
#: dashboard/adrotatepro.php:
|
869 |
msgid "All Licenses"
|
870 |
msgstr "Всички лицензи"
|
871 |
|
872 |
-
#: dashboard/adrotatepro.php:
|
873 |
msgid "Lifetime License"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: dashboard/adrotatepro.php:
|
877 |
msgid "Single installation."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
msgid "Up to 2 installations."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
msgid "Up to 10 installations."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
msgid "Up to 25 installations or multisite networks."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: dashboard/adrotatepro.php:
|
893 |
msgid ""
|
894 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: dashboard/adrotatepro.php:
|
898 |
msgid "Not sure which license is for you?"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: dashboard/adrotatepro.php:
|
902 |
msgid "Compare Licenses"
|
903 |
msgstr ""
|
904 |
|
@@ -1234,15 +1257,15 @@ msgstr "Получете по-голяма функционалност с AdRot
|
|
1234 |
|
1235 |
#: dashboard/publisher/adverts-edit.php:192
|
1236 |
#: dashboard/publisher/adverts-edit.php:292
|
1237 |
-
#: dashboard/publisher/adverts-edit.php:
|
1238 |
-
#: dashboard/publisher/adverts-edit.php:
|
1239 |
msgid "Save Advert"
|
1240 |
msgstr "Запиши рекламата"
|
1241 |
|
1242 |
#: dashboard/publisher/adverts-edit.php:193
|
1243 |
#: dashboard/publisher/adverts-edit.php:293
|
1244 |
-
#: dashboard/publisher/adverts-edit.php:
|
1245 |
-
#: dashboard/publisher/adverts-edit.php:
|
1246 |
#: dashboard/publisher/groups-edit.php:154
|
1247 |
#: dashboard/publisher/groups-edit.php:301
|
1248 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1250,35 +1273,35 @@ msgid "Cancel"
|
|
1250 |
msgstr "Отказ"
|
1251 |
|
1252 |
#: dashboard/publisher/adverts-edit.php:196
|
1253 |
-
#: dashboard/publisher/adverts-edit.php:
|
1254 |
#: dashboard/publisher/groups-edit.php:136
|
1255 |
#: dashboard/publisher/groups-edit.php:283
|
1256 |
msgid "Usage"
|
1257 |
msgstr "Употреба"
|
1258 |
|
1259 |
#: dashboard/publisher/adverts-edit.php:200
|
1260 |
-
#: dashboard/publisher/adverts-edit.php:
|
1261 |
#: dashboard/publisher/groups-edit.php:140
|
1262 |
#: dashboard/publisher/groups-edit.php:287
|
1263 |
msgid "Widget"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
#: dashboard/publisher/adverts-edit.php:201
|
1267 |
-
#: dashboard/publisher/adverts-edit.php:
|
1268 |
msgid ""
|
1269 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1270 |
"and enter ID"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
#: dashboard/publisher/adverts-edit.php:204
|
1274 |
-
#: dashboard/publisher/adverts-edit.php:
|
1275 |
#: dashboard/publisher/groups-edit.php:144
|
1276 |
#: dashboard/publisher/groups-edit.php:291
|
1277 |
msgid "In a post or page"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: dashboard/publisher/adverts-edit.php:206
|
1281 |
-
#: dashboard/publisher/adverts-edit.php:
|
1282 |
#: dashboard/publisher/groups-edit.php:146
|
1283 |
#: dashboard/publisher/groups-edit.php:293
|
1284 |
msgid "Directly in a theme"
|
@@ -1335,8 +1358,8 @@ msgid ""
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
#: dashboard/publisher/adverts-edit.php:289
|
1338 |
-
#: dashboard/publisher/adverts-edit.php:
|
1339 |
-
#: dashboard/publisher/adverts-edit.php:
|
1340 |
#: dashboard/publisher/groups-edit.php:200
|
1341 |
msgid "Upgrade today"
|
1342 |
msgstr "Надградете днес"
|
@@ -1351,64 +1374,97 @@ msgid "Everything below is optional."
|
|
1351 |
msgstr "Всичко по-долу е по желание."
|
1352 |
|
1353 |
#: dashboard/publisher/adverts-edit.php:301
|
1354 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1358 |
msgid "Enable responsive support for this advert."
|
1359 |
msgstr "Активиране на responsive дизайн за тази реклама."
|
1360 |
|
1361 |
-
#: dashboard/publisher/adverts-edit.php:
|
1362 |
msgid ""
|
1363 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1364 |
-
"following format; \"imagename.full.ext\".
|
1365 |
-
"strongly recommended."
|
1366 |
msgstr ""
|
1367 |
-
"Качете картинките си в папката за банери и се уверете, че имената са в "
|
1368 |
-
"правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
|
1369 |
-
"картинки е строго препоръчителен."
|
1370 |
|
1371 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1372 |
#: dashboard/publisher/groups-edit.php:194
|
1373 |
msgid "Sortorder"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: dashboard/publisher/adverts-edit.php:
|
1377 |
#: dashboard/publisher/groups-edit.php:196
|
1378 |
msgid "For administrative purposes set a sortorder."
|
1379 |
msgstr "За административни цели задайте критерий за сортиране."
|
1380 |
|
1381 |
-
#: dashboard/publisher/adverts-edit.php:
|
1382 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1383 |
msgstr ""
|
1384 |
"Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
|
1385 |
"на рекламата по подразбиране."
|
1386 |
|
1387 |
-
#: dashboard/publisher/adverts-edit.php:
|
1388 |
msgid ""
|
1389 |
-
"With AdRotate Pro you can
|
|
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: dashboard/publisher/adverts-edit.php:
|
1393 |
msgid "Geo Targeting in AdRotate Pro"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: dashboard/publisher/adverts-edit.php:
|
1397 |
msgid ""
|
1398 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: dashboard/publisher/adverts-edit.php:
|
1402 |
msgid "Cities/States"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: dashboard/publisher/adverts-edit.php:
|
1406 |
msgid ""
|
1407 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1408 |
"states ISO codes are supported)"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: dashboard/publisher/adverts-edit.php:
|
1412 |
msgid ""
|
1413 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1414 |
"correctly!"
|
@@ -1416,67 +1472,67 @@ msgstr ""
|
|
1416 |
"AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
|
1417 |
"правилно!"
|
1418 |
|
1419 |
-
#: dashboard/publisher/adverts-edit.php:
|
1420 |
msgid "Countries"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: dashboard/publisher/adverts-edit.php:
|
1424 |
msgid "Select the countries you want the adverts to show in."
|
1425 |
msgstr "Изберете страните, в които искате да се показват рекламите."
|
1426 |
|
1427 |
-
#: dashboard/publisher/adverts-edit.php:
|
1428 |
msgid "Cities take priority and will be filtered first."
|
1429 |
msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
|
1430 |
|
1431 |
-
#: dashboard/publisher/adverts-edit.php:
|
1432 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: dashboard/publisher/adverts-edit.php:
|
1436 |
msgid "Select Groups"
|
1437 |
msgstr "Избор на групи"
|
1438 |
|
1439 |
-
#: dashboard/publisher/adverts-edit.php:
|
1440 |
msgid "ID - Name"
|
1441 |
msgstr "ID - Име"
|
1442 |
|
1443 |
-
#: dashboard/publisher/adverts-edit.php:
|
1444 |
#: dashboard/publisher/groups-main.php:60
|
1445 |
#: dashboard/settings/geotargeting.php:39
|
1446 |
msgid "Default"
|
1447 |
msgstr "По подразбиране"
|
1448 |
|
1449 |
-
#: dashboard/publisher/adverts-edit.php:
|
1450 |
#: dashboard/publisher/groups-main.php:61
|
1451 |
msgid "Dynamic"
|
1452 |
msgstr "Динамично"
|
1453 |
|
1454 |
-
#: dashboard/publisher/adverts-edit.php:
|
1455 |
#: dashboard/publisher/groups-main.php:61
|
1456 |
msgid "second rotation"
|
1457 |
msgstr "второ завъртане"
|
1458 |
|
1459 |
-
#: dashboard/publisher/adverts-edit.php:
|
1460 |
#: dashboard/publisher/groups-main.php:62
|
1461 |
msgid "Block"
|
1462 |
msgstr "Блок"
|
1463 |
|
1464 |
-
#: dashboard/publisher/adverts-edit.php:
|
1465 |
#: dashboard/publisher/groups-main.php:62
|
1466 |
msgid "grid"
|
1467 |
msgstr "решетка"
|
1468 |
|
1469 |
-
#: dashboard/publisher/adverts-edit.php:
|
1470 |
#: dashboard/publisher/groups-edit.php:202
|
1471 |
#: dashboard/publisher/groups-main.php:63
|
1472 |
msgid "Post Injection"
|
1473 |
msgstr "Вмъкване в публикации"
|
1474 |
|
1475 |
-
#: dashboard/publisher/adverts-edit.php:
|
1476 |
msgid "Geolocation"
|
1477 |
msgstr "Геолокация"
|
1478 |
|
1479 |
-
#: dashboard/publisher/adverts-edit.php:
|
1480 |
#: dashboard/publisher/groups-edit.php:61
|
1481 |
#: dashboard/publisher/groups-main.php:70
|
1482 |
msgid "Mode"
|
@@ -1569,11 +1625,6 @@ msgstr "Кликове днес"
|
|
1569 |
msgid "Monthly overview of clicks and impressions"
|
1570 |
msgstr "Месечен преглед на кликовете и импресиите"
|
1571 |
|
1572 |
-
#: dashboard/publisher/adverts-report.php:58
|
1573 |
-
#: dashboard/publisher/groups-report.php:64
|
1574 |
-
msgid "Note:"
|
1575 |
-
msgstr "Забележка:"
|
1576 |
-
|
1577 |
#: dashboard/publisher/adverts-report.php:58
|
1578 |
#: dashboard/publisher/groups-report.php:64
|
1579 |
msgid ""
|
@@ -1919,9 +1970,8 @@ msgstr "На път сте да изтриете група"
|
|
1919 |
msgid "This action can not be undone!"
|
1920 |
msgstr "Това действие е необратимо!"
|
1921 |
|
1922 |
-
#: dashboard/publisher/groups-main.php:24
|
1923 |
-
#: dashboard/settings/maintenance.php:
|
1924 |
-
#: dashboard/settings/maintenance.php:34
|
1925 |
msgid "OK to continue, CANCEL to stop."
|
1926 |
msgstr "ОК, за да продължите, ОТКАЗ за стоп."
|
1927 |
|
@@ -2002,68 +2052,78 @@ msgid ""
|
|
2002 |
msgstr ""
|
2003 |
|
2004 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005 |
msgid "Load jQuery"
|
2006 |
msgstr "Зареди jQuery"
|
2007 |
|
2008 |
-
#: dashboard/settings/general.php:
|
2009 |
msgid ""
|
2010 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2011 |
"groups, statistics and some other features."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: dashboard/settings/general.php:
|
2015 |
msgid "Load scripts in footer?"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: dashboard/settings/general.php:
|
2019 |
msgid ""
|
2020 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2021 |
"site."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: dashboard/settings/general.php:
|
2025 |
msgid "Adblock disguise"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: dashboard/settings/general.php:
|
2029 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: dashboard/settings/general.php:
|
2033 |
msgid ""
|
2034 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: dashboard/settings/general.php:
|
2038 |
msgid ""
|
2039 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2040 |
"instead of the AdRotate widget."
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: dashboard/settings/general.php:
|
2044 |
msgid ""
|
2045 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2046 |
"feature will have little effect!"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: dashboard/settings/general.php:
|
2050 |
msgid "Banner Folder"
|
2051 |
msgstr "Папка с банери"
|
2052 |
|
2053 |
-
#: dashboard/settings/general.php:
|
2054 |
msgid "Set a location where your banner images will be stored."
|
2055 |
msgstr ""
|
2056 |
"Задайте местоположение, където да се записват вашите картинки за банери."
|
2057 |
|
2058 |
-
#: dashboard/settings/general.php:
|
2059 |
msgid "Location"
|
2060 |
msgstr "Местоположение"
|
2061 |
|
2062 |
-
#: dashboard/settings/general.php:
|
2063 |
msgid "(Default: wp-content/banners/)."
|
2064 |
msgstr "(По подразбиране: wp-content/banners/)."
|
2065 |
|
2066 |
-
#: dashboard/settings/general.php:
|
2067 |
msgid ""
|
2068 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2069 |
"like:"
|
@@ -2071,7 +2131,7 @@ msgstr ""
|
|
2071 |
"Опитайте да заблудите AdBlocker-ите, като използвате шантаво име за папката, "
|
2072 |
"като например:"
|
2073 |
|
2074 |
-
#: dashboard/settings/general.php:
|
2075 |
msgid ""
|
2076 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2077 |
"will show errors when the folder is missing."
|
@@ -2079,46 +2139,46 @@ msgstr ""
|
|
2079 |
"Папката няма да бъде създадена автоматично, ако не съществува. AdRotate ще "
|
2080 |
"показва грешки, ако папката не съществува."
|
2081 |
|
2082 |
-
#: dashboard/settings/general.php:
|
2083 |
msgid "Bot filter"
|
2084 |
msgstr "Филтър на ботове"
|
2085 |
|
2086 |
-
#: dashboard/settings/general.php:
|
2087 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: dashboard/settings/general.php:
|
2091 |
msgid "User-Agent Filter"
|
2092 |
msgstr "Филтър за агенти"
|
2093 |
|
2094 |
-
#: dashboard/settings/general.php:
|
2095 |
msgid ""
|
2096 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: dashboard/settings/general.php:
|
2100 |
msgid ""
|
2101 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2102 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: dashboard/settings/general.php:
|
2106 |
msgid ""
|
2107 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2108 |
"characters are stripped out."
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: dashboard/settings/general.php:
|
2112 |
msgid ""
|
2113 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2114 |
"well."
|
2115 |
msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
|
2116 |
|
2117 |
-
#: dashboard/settings/general.php:
|
2118 |
msgid "Learn more about"
|
2119 |
msgstr "Научете повече за"
|
2120 |
|
2121 |
-
#: dashboard/settings/general.php:
|
2122 |
msgid "user-agents"
|
2123 |
msgstr "агенти"
|
2124 |
|
@@ -2780,6 +2840,15 @@ msgstr ""
|
|
2780 |
"Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
|
2781 |
"(24 часа)."
|
2782 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2783 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2784 |
#~ msgstr ""
|
2785 |
#~ "Проследяването на кликове е включено, но не е намерен валиден линк в кода "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:47+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:47+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:849
|
21 |
msgid "No files found"
|
22 |
msgstr "Няма намерени файлове"
|
23 |
|
24 |
+
#: adrotate-functions.php:852
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Папката не е намерена или не е достъпна"
|
27 |
|
28 |
+
#: adrotate-functions.php:901
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:905
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:909
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Успешно изтриване"
|
39 |
|
40 |
+
#: adrotate-functions.php:913
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Групата е изтрита"
|
43 |
|
44 |
+
#: adrotate-functions.php:917
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Статистиката е нулирана"
|
47 |
|
48 |
+
#: adrotate-functions.php:921
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Успешно подновяване"
|
51 |
|
52 |
+
#: adrotate-functions.php:925
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Успешно деактивиране"
|
55 |
|
56 |
+
#: adrotate-functions.php:929
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Успешно активиране"
|
59 |
|
60 |
+
#: adrotate-functions.php:933
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Групата и съдържащите се в нея реклами са изтрити"
|
63 |
|
64 |
+
#: adrotate-functions.php:937
|
65 |
msgid "Export created"
|
66 |
msgstr "Експорта е завършен"
|
67 |
|
68 |
+
#: adrotate-functions.php:942
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Настройките са запазени"
|
71 |
|
72 |
+
#: adrotate-functions.php:946
|
73 |
msgid "Database optimized"
|
74 |
msgstr "Базата данни е оптимизирана"
|
75 |
|
76 |
+
#: adrotate-functions.php:950
|
77 |
msgid "Database repaired"
|
78 |
msgstr "Базата данни е поправена"
|
79 |
|
80 |
+
#: adrotate-functions.php:954
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
|
83 |
|
84 |
+
#: adrotate-functions.php:958
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr "Празните записи в базата данни са премахнати"
|
87 |
|
88 |
+
#: adrotate-functions.php:963
|
89 |
msgid "Action prohibited"
|
90 |
msgstr "Забранено действие"
|
91 |
|
92 |
+
#: adrotate-functions.php:967
|
93 |
msgid ""
|
94 |
"The ad was saved but has an issue which might prevent it from working "
|
95 |
"properly. Review the colored ad."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: adrotate-functions.php:971
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr "Не е намерена информация за избрания период"
|
101 |
|
102 |
+
#: adrotate-functions.php:975
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
|
105 |
|
106 |
+
#: adrotate-functions.php:979
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: adrotate-functions.php:983
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:987
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-manage-publisher.php:712
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-output.php:639
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr "О не! Нещо се случи!"
|
125 |
|
126 |
+
#: adrotate-output.php:640
|
127 |
msgid ""
|
128 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
129 |
"Verify if the url used is valid or log in via your browser."
|
132 |
"кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
|
133 |
"си."
|
134 |
|
135 |
+
#: adrotate-output.php:641
|
136 |
msgid ""
|
137 |
"If you have received the url you want to visit via email, you are being "
|
138 |
"tricked!"
|
139 |
msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
|
140 |
|
141 |
+
#: adrotate-output.php:642
|
142 |
msgid "Contact support if the issue persists:"
|
143 |
msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
|
144 |
|
145 |
+
#: adrotate-output.php:660
|
146 |
msgid ""
|
147 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
148 |
"restrictions or does not exist!"
|
150 |
"Грешка, рекламата не е налична в момента, поради ограничения в графика/"
|
151 |
"геолокацията или не съществува!"
|
152 |
|
153 |
+
#: adrotate-output.php:662
|
154 |
msgid ""
|
155 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
156 |
"restrictions!"
|
157 |
msgstr ""
|
158 |
"Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
|
159 |
|
160 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
161 |
msgid ""
|
162 |
"Either there are no banners, they are disabled or none qualified for this "
|
163 |
"location!"
|
164 |
msgstr ""
|
165 |
"Няма налични банери, те са деактивирани или не са подходящи за това място!"
|
166 |
|
167 |
+
#: adrotate-output.php:677
|
168 |
msgid "Error, no Ad ID set! Check your syntax!"
|
169 |
msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
|
170 |
|
171 |
+
#: adrotate-output.php:683
|
172 |
msgid "Error, no group ID set! Check your syntax!"
|
173 |
msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
|
174 |
|
175 |
+
#: adrotate-output.php:688
|
176 |
msgid "Error, group does not exist! Check your syntax!"
|
177 |
msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
|
178 |
|
179 |
+
#: adrotate-output.php:694
|
180 |
msgid ""
|
181 |
"There was an error locating the database tables for AdRotate. Please "
|
182 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
184 |
"Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
|
185 |
"изключете и включете наново AdRotate от страницата с плъгините!!"
|
186 |
|
187 |
+
#: adrotate-output.php:694
|
188 |
msgid "If this does not solve the issue please seek support at"
|
189 |
msgstr "Ако това не решава проблема, моля потърсете помощ на"
|
190 |
|
191 |
+
#: adrotate-output.php:700
|
192 |
msgid "An unknown error occured."
|
193 |
msgstr "Възникна неизвестна грешка."
|
194 |
|
195 |
+
#: adrotate-output.php:725
|
196 |
msgid "active ad(s) expired."
|
197 |
msgstr "изтекла/и активна/и реклама/и."
|
198 |
|
199 |
+
#: adrotate-output.php:725
|
200 |
msgid "Take action now"
|
201 |
msgstr "Предприемане на действия"
|
202 |
|
203 |
+
#: adrotate-output.php:727
|
204 |
msgid "active ad(s) are about to expire."
|
205 |
msgstr "изтичаща/и активна/и реклама/и."
|
206 |
|
207 |
+
#: adrotate-output.php:727
|
208 |
msgid "Check it out"
|
209 |
msgstr "Проверете го"
|
210 |
|
211 |
+
#: adrotate-output.php:729
|
212 |
msgid "active ad(s) with configuration errors."
|
213 |
msgstr "активна(и) реклама(и) с грешни настройки."
|
214 |
|
215 |
+
#: adrotate-output.php:729
|
216 |
msgid "Solve this"
|
217 |
msgstr "Разреши това"
|
218 |
|
219 |
+
#: adrotate-output.php:731
|
220 |
msgid "ad(s) expired."
|
221 |
msgstr "изтекла/и реклама/и."
|
222 |
|
223 |
+
#: adrotate-output.php:731
|
224 |
msgid "ad(s) are about to expire."
|
225 |
msgstr "реклама/и изтича(т)."
|
226 |
|
227 |
+
#: adrotate-output.php:731
|
228 |
msgid "ad(s) with configuration errors."
|
229 |
msgstr "реклама/и с грешни настройки."
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "Fix this as soon as possible"
|
233 |
msgstr "Поправка възможно най-скоро"
|
234 |
|
235 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
236 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
237 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
238 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
239 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
240 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
241 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
242 |
#: dashboard/settings/geotargeting.php:26
|
243 |
msgid "Buy now"
|
244 |
msgstr "Купи сега"
|
245 |
|
246 |
+
#: adrotate-output.php:744
|
247 |
msgid ""
|
248 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
249 |
"to the <strong>PRO</strong> version"
|
251 |
"Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
|
252 |
"до <strong>PRO</strong> версията"
|
253 |
|
254 |
+
#: adrotate-output.php:744
|
255 |
#, php-format
|
256 |
msgid ""
|
257 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: adrotate-output.php:744
|
261 |
msgid "Thank you for your purchase!"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: adrotate-output.php:788
|
265 |
msgid ""
|
266 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
267 |
"this menu. Check out the"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: adrotate-output.php:788
|
271 |
msgid "manuals"
|
272 |
msgstr "ръководства"
|
273 |
|
274 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
275 |
msgid "and"
|
276 |
msgstr "и"
|
277 |
|
278 |
+
#: adrotate-output.php:788
|
279 |
msgid "forums"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: adrotate-output.php:821
|
283 |
msgid "Useful Links"
|
284 |
msgstr "Полезни връзки"
|
285 |
|
286 |
+
#: adrotate-output.php:822
|
287 |
msgid "Useful links to learn more about AdRotate"
|
288 |
msgstr "Полезни връзки, за да получите повече информация за AdRotate"
|
289 |
|
290 |
+
#: adrotate-output.php:824
|
291 |
msgid "AdRotate Page"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: adrotate-output.php:825
|
295 |
msgid "Getting Started With AdRotate"
|
296 |
msgstr "Започнете от нулата с AdRotate Pro"
|
297 |
|
298 |
+
#: adrotate-output.php:826
|
299 |
msgid "AdRotate manuals"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: adrotate-output.php:827
|
303 |
msgid "AdRotate Support Forum"
|
304 |
msgstr "Форум за поддръжка на AdRotate"
|
305 |
|
306 |
+
#: adrotate-output.php:853
|
307 |
msgid "Help AdRotate Grow"
|
308 |
msgstr "Помогнете за развитието на AdRotate"
|
309 |
|
310 |
+
#: adrotate-output.php:854
|
311 |
msgid "Brought to you by"
|
312 |
msgstr "Достига до Вас благодарение на"
|
313 |
|
314 |
+
#: adrotate-output.php:861
|
315 |
msgid ""
|
316 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
317 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
320 |
"се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
|
321 |
"това да остане незабелязано."
|
322 |
|
323 |
+
#: adrotate-output.php:861
|
324 |
msgid "If you find AdRotate useful please leave your honest"
|
325 |
msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
|
326 |
|
327 |
+
#: adrotate-output.php:861
|
328 |
msgid "rating"
|
329 |
msgstr "оценка"
|
330 |
|
331 |
+
#: adrotate-output.php:861
|
332 |
msgid "review"
|
333 |
msgstr "мнение"
|
334 |
|
335 |
+
#: adrotate-output.php:861
|
336 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
337 |
msgstr "на WordPress.org, за да се развива AdRotate"
|
338 |
|
339 |
+
#: adrotate-output.php:893
|
340 |
msgid "Available in AdRotate Pro"
|
341 |
msgstr "Налично в AdRotate Pro"
|
342 |
|
343 |
+
#: adrotate-output.php:893
|
344 |
msgid "More information..."
|
345 |
msgstr "Повече информация..."
|
346 |
|
347 |
+
#: adrotate-output.php:894
|
348 |
msgid "This feature is available in AdRotate Pro"
|
349 |
msgstr "Тази функционалност е налична в AdRotate Pro"
|
350 |
|
351 |
+
#: adrotate-output.php:894
|
352 |
msgid "Learn more"
|
353 |
msgstr "Повече информация"
|
354 |
|
468 |
msgid "Fill in the ID of the type you want to display!"
|
469 |
msgstr "Попълнете ID-то на типа, който искате да се показва!"
|
470 |
|
471 |
+
#: adrotate.php:106
|
472 |
msgid "General Info"
|
473 |
msgstr "Обща информация"
|
474 |
|
475 |
+
#: adrotate.php:107
|
476 |
msgid "AdRotate Pro"
|
477 |
msgstr "AdRotate Pro"
|
478 |
|
479 |
+
#: adrotate.php:108
|
480 |
msgid "Manage Ads"
|
481 |
msgstr "Управление на реклами"
|
482 |
|
483 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
484 |
msgid "Manage Groups"
|
485 |
msgstr "Управление на групи"
|
486 |
|
487 |
+
#: adrotate.php:110 adrotate.php:408
|
488 |
msgid "Manage Schedules"
|
489 |
msgstr "Управление на графици"
|
490 |
|
491 |
+
#: adrotate.php:111
|
492 |
msgid "Manage Media"
|
493 |
msgstr "Управление на Медия"
|
494 |
|
495 |
+
#: adrotate.php:112
|
496 |
msgid "Settings"
|
497 |
msgstr "Настройки"
|
498 |
|
499 |
+
#: adrotate.php:135
|
500 |
msgid "AdRotate Info"
|
501 |
msgstr "AdRotate Info"
|
502 |
|
503 |
+
#: adrotate.php:156
|
504 |
msgid "AdRotate Professional"
|
505 |
msgstr "AdRotate Professional"
|
506 |
|
507 |
+
#: adrotate.php:199
|
508 |
msgid "Ad Management"
|
509 |
msgstr "Управление на реклами"
|
510 |
|
511 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
512 |
msgid "Manage"
|
513 |
msgstr "Управление"
|
514 |
|
515 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
516 |
msgid "Add New"
|
517 |
msgstr "Добавяне"
|
518 |
|
519 |
+
#: adrotate.php:337
|
520 |
msgid "Group Management"
|
521 |
msgstr "Управление на групи"
|
522 |
|
523 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
524 |
#: dashboard/publisher/groups-main.php:70
|
525 |
msgid "Report"
|
526 |
msgstr "Доклад"
|
527 |
|
528 |
+
#: adrotate.php:399
|
529 |
msgid "Schedule Management available in AdRotate Pro"
|
530 |
msgstr "Управление с графици е налично в AdRotate Pro"
|
531 |
|
532 |
+
#: adrotate.php:409
|
533 |
msgid ""
|
534 |
"Schedule management and multiple schedules per advert is available in "
|
535 |
"AdRotate Pro."
|
537 |
"Управлението на графици и множество графици за една реклама са налични в "
|
538 |
"AdRotate Pro."
|
539 |
|
540 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
541 |
#: dashboard/publisher/adverts-main.php:114
|
542 |
#: dashboard/publisher/groups-edit.php:75
|
543 |
#: dashboard/publisher/groups-main.php:89
|
544 |
msgid "More information"
|
545 |
msgstr "Повече информация"
|
546 |
|
547 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
548 |
#: dashboard/publisher/adverts-error.php:19
|
549 |
#: dashboard/publisher/adverts-main.php:20
|
550 |
#: dashboard/publisher/groups-main.php:20
|
551 |
msgid "Bulk Actions"
|
552 |
msgstr "Масови действия"
|
553 |
|
554 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
555 |
#: dashboard/publisher/adverts-error.php:29
|
556 |
#: dashboard/publisher/adverts-main.php:30
|
557 |
#: dashboard/publisher/groups-main.php:24
|
558 |
msgid "Go"
|
559 |
msgstr "Напред"
|
560 |
|
561 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
562 |
#: dashboard/publisher/adverts-error.php:39
|
563 |
#: dashboard/publisher/adverts-main.php:39
|
564 |
#: dashboard/publisher/groups-edit.php:51
|
566 |
msgid "ID"
|
567 |
msgstr "ID"
|
568 |
|
569 |
+
#: adrotate.php:427
|
570 |
msgid "Start"
|
571 |
msgstr "Начало"
|
572 |
|
573 |
+
#: adrotate.php:427
|
574 |
msgid "End"
|
575 |
msgstr "Край"
|
576 |
|
577 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
578 |
#: dashboard/publisher/groups-main.php:34
|
579 |
msgid "Ads"
|
580 |
msgstr "Реклами"
|
581 |
|
582 |
+
#: adrotate.php:430
|
583 |
msgid "Max Impressions"
|
584 |
msgstr "Максимум импресии"
|
585 |
|
586 |
+
#: adrotate.php:431
|
587 |
msgid "Max Clicks"
|
588 |
msgstr "Максимум кликове"
|
589 |
|
590 |
+
#: adrotate.php:461
|
591 |
msgid "No schedules created yet!"
|
592 |
msgstr "Все още няма създадени графици!"
|
593 |
|
594 |
+
#: adrotate.php:466
|
595 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
596 |
msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
|
597 |
|
598 |
+
#: adrotate.php:466 adrotate.php:532
|
599 |
msgid "Upgrade today!"
|
600 |
msgstr "Надградете днес!"
|
601 |
|
602 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
603 |
#: dashboard/publisher/groups-edit.php:387
|
604 |
msgid "Expires soon."
|
605 |
msgstr "Изтича скоро."
|
606 |
|
607 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
608 |
#: dashboard/publisher/groups-edit.php:388
|
609 |
msgid "Has expired."
|
610 |
msgstr "Изтекла."
|
611 |
|
612 |
+
#: adrotate.php:494
|
613 |
msgid "Media Management available in AdRotate Pro"
|
614 |
msgstr "Управление на медия е налично в AdRotate Pro"
|
615 |
|
616 |
+
#: adrotate.php:496
|
617 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: adrotate.php:496
|
621 |
msgid ""
|
622 |
"This is useful if you use responsive adverts with multiple images or have "
|
623 |
"HTML5 adverts containing multiple files."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: adrotate.php:496
|
627 |
msgid "Media uploading and management is available in AdRotate Pro."
|
628 |
msgstr "Управлението и качването на медия са налични в AdRotate Pro."
|
629 |
|
630 |
+
#: adrotate.php:498
|
631 |
msgid "Upload new file"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: adrotate.php:499
|
635 |
msgid "Accepted files:"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: adrotate.php:499
|
639 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: adrotate.php:499
|
643 |
msgid "Maximum size is 512Kb."
|
644 |
msgstr "Максималния размер е 512Kb."
|
645 |
|
646 |
+
#: adrotate.php:499
|
647 |
msgid "Important:"
|
648 |
msgstr "Важно:"
|
649 |
|
650 |
+
#: adrotate.php:499
|
651 |
msgid ""
|
652 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
653 |
"spaces with a - or _."
|
655 |
"Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
|
656 |
"интервалите с - или _."
|
657 |
|
658 |
+
#: adrotate.php:499
|
659 |
msgid ""
|
660 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
661 |
"file so it knows about the changed name. For example for the javascript file."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: adrotate.php:502
|
665 |
msgid ""
|
666 |
"For responsive adverts make sure the filename is in the following format; "
|
667 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
670 |
"формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
|
671 |
"е строго препоръчителен."
|
672 |
|
673 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
674 |
msgid ""
|
675 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
676 |
"filename instead of \".full\" for the various viewports."
|
679 |
"използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
|
680 |
"файловете, вместо \".full\"."
|
681 |
|
682 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
683 |
#: dashboard/publisher/groups-edit.php:320
|
684 |
msgid "Example:"
|
685 |
msgstr "Пример:"
|
686 |
|
687 |
+
#: adrotate.php:504
|
688 |
msgid ""
|
689 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
690 |
"for different viewports."
|
692 |
"image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
|
693 |
"реклама в различни резолюции на екрана."
|
694 |
|
695 |
+
#: adrotate.php:508
|
696 |
msgid "Upload file"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: adrotate.php:508
|
700 |
msgid "Click only once per file!"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: adrotate.php:511
|
704 |
msgid "Available files in"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
708 |
#: dashboard/publisher/groups-main.php:33
|
709 |
msgid "Name"
|
710 |
msgstr "Име"
|
711 |
|
712 |
+
#: adrotate.php:517
|
713 |
msgid "Actions"
|
714 |
msgstr "Действия"
|
715 |
|
716 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
717 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
718 |
#: dashboard/publisher/adverts-disabled.php:22
|
719 |
#: dashboard/publisher/adverts-error.php:21
|
720 |
#: dashboard/publisher/adverts-main.php:22
|
721 |
msgid "Delete"
|
722 |
msgstr "Изтриване"
|
723 |
|
724 |
+
#: adrotate.php:532
|
725 |
msgid ""
|
726 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
727 |
msgstr ""
|
728 |
"Уверете се, че картинките за банери не се използват от реклами, преди да ги "
|
729 |
"изтриете!"
|
730 |
|
731 |
+
#: adrotate.php:532
|
732 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
733 |
msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
|
734 |
|
735 |
+
#: adrotate.php:561
|
736 |
msgid "AdRotate Settings"
|
737 |
msgstr "AdRotate Настройки"
|
738 |
|
739 |
+
#: adrotate.php:632
|
740 |
msgid "Update Options"
|
741 |
msgstr "Опции за обновяване"
|
742 |
|
757 |
"където да се информират за представянето не рекламите си."
|
758 |
|
759 |
#: dashboard/adrotatepro.php:27
|
760 |
+
msgid "Mobile campaigns"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: dashboard/adrotatepro.php:30
|
764 |
+
msgid ""
|
765 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
766 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
767 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
768 |
+
"and with a few easy to use options they show up where you want them to!"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: dashboard/adrotatepro.php:34
|
772 |
msgid "Localize your ad campaigns with Geo Targeting"
|
773 |
msgstr "Локализирайте своите рекламни кампании с Таргетиране по местоположение"
|
774 |
|
775 |
+
#: dashboard/adrotatepro.php:37
|
776 |
msgid ""
|
777 |
"Go nationwide or global with localized adverts for your various audiences. "
|
778 |
"Set up adverts for countries and cities and sell impressions per general "
|
780 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: dashboard/adrotatepro.php:41
|
784 |
msgid "Get Premium Support almost all year round"
|
785 |
msgstr "Получете премиум поддръжка почти през цялата година"
|
786 |
|
787 |
+
#: dashboard/adrotatepro.php:44
|
788 |
msgid ""
|
789 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
790 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
792 |
"forum. Get a solution (usually) within a day."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
796 |
msgid "AdRotate is brought to you by"
|
797 |
msgstr "AdRotate достига до Вас, благодарение на"
|
798 |
|
799 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
800 |
msgid ""
|
801 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
802 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: dashboard/adrotatepro.php:65
|
806 |
msgid "Schedule all campaigns with ease"
|
807 |
msgstr "Планиране на всички кампании с лекота"
|
808 |
|
809 |
+
#: dashboard/adrotatepro.php:68
|
810 |
msgid ""
|
811 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
812 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
814 |
"much more easy. You can set one or many schedules for adverts."
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: dashboard/adrotatepro.php:72
|
818 |
+
msgid "Avoid adblockers"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: dashboard/adrotatepro.php:75
|
822 |
+
msgid ""
|
823 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
824 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
825 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
826 |
+
"adverts smartly so these features reach their full potential!"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: dashboard/adrotatepro.php:79
|
830 |
msgid "Stay up-to-date with notifications"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: dashboard/adrotatepro.php:82
|
834 |
msgid ""
|
835 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
836 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
839 |
"miss an expiration date again."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
843 |
#: dashboard/info.php:93 dashboard/info.php:105
|
844 |
msgid "Buy AdRotate Professional"
|
845 |
msgstr "Купете AdRotate Professional"
|
846 |
|
847 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
848 |
msgid "Single License"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
852 |
msgid "For one WordPress installation."
|
853 |
msgstr "За една инсталация на WordPress."
|
854 |
|
855 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
856 |
#: dashboard/info.php:98 dashboard/info.php:110
|
857 |
msgid "Duo License"
|
858 |
msgstr "Duo лиценз"
|
859 |
|
860 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
861 |
msgid "For two WordPress installations."
|
862 |
msgstr "За две Wordpress инсталации."
|
863 |
|
864 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
865 |
#: dashboard/info.php:99 dashboard/info.php:111
|
866 |
msgid "Multi License"
|
867 |
msgstr "Multi лиценз"
|
868 |
|
869 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
870 |
msgid " For up to five WordPress installations."
|
871 |
msgstr " За до 5 Wordpress инсталации."
|
872 |
|
873 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
874 |
#: dashboard/info.php:100 dashboard/info.php:112
|
875 |
msgid "Developer License"
|
876 |
msgstr "Developer лиценз"
|
877 |
|
878 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
879 |
msgid "Unlimited WordPress installations and/or networks."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
883 |
#: dashboard/info.php:101 dashboard/info.php:114
|
884 |
msgid "Compare licenses"
|
885 |
msgstr "Сравнение на лицензи"
|
886 |
|
887 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
888 |
msgid "Not sure which license is for you? Compare them..."
|
889 |
msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
|
890 |
|
891 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
892 |
msgid "All Licenses"
|
893 |
msgstr "Всички лицензи"
|
894 |
|
895 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
896 |
msgid "Lifetime License"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
900 |
msgid "Single installation."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
904 |
msgid "Up to 2 installations."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
908 |
msgid "Up to 10 installations."
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
912 |
msgid "Up to 25 installations or multisite networks."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
916 |
msgid ""
|
917 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
921 |
msgid "Not sure which license is for you?"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
925 |
msgid "Compare Licenses"
|
926 |
msgstr ""
|
927 |
|
1257 |
|
1258 |
#: dashboard/publisher/adverts-edit.php:192
|
1259 |
#: dashboard/publisher/adverts-edit.php:292
|
1260 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1261 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1262 |
msgid "Save Advert"
|
1263 |
msgstr "Запиши рекламата"
|
1264 |
|
1265 |
#: dashboard/publisher/adverts-edit.php:193
|
1266 |
#: dashboard/publisher/adverts-edit.php:293
|
1267 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1268 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1269 |
#: dashboard/publisher/groups-edit.php:154
|
1270 |
#: dashboard/publisher/groups-edit.php:301
|
1271 |
#: dashboard/publisher/groups-edit.php:393
|
1273 |
msgstr "Отказ"
|
1274 |
|
1275 |
#: dashboard/publisher/adverts-edit.php:196
|
1276 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1277 |
#: dashboard/publisher/groups-edit.php:136
|
1278 |
#: dashboard/publisher/groups-edit.php:283
|
1279 |
msgid "Usage"
|
1280 |
msgstr "Употреба"
|
1281 |
|
1282 |
#: dashboard/publisher/adverts-edit.php:200
|
1283 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1284 |
#: dashboard/publisher/groups-edit.php:140
|
1285 |
#: dashboard/publisher/groups-edit.php:287
|
1286 |
msgid "Widget"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
#: dashboard/publisher/adverts-edit.php:201
|
1290 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1291 |
msgid ""
|
1292 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1293 |
"and enter ID"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: dashboard/publisher/adverts-edit.php:204
|
1297 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1298 |
#: dashboard/publisher/groups-edit.php:144
|
1299 |
#: dashboard/publisher/groups-edit.php:291
|
1300 |
msgid "In a post or page"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: dashboard/publisher/adverts-edit.php:206
|
1304 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1305 |
#: dashboard/publisher/groups-edit.php:146
|
1306 |
#: dashboard/publisher/groups-edit.php:293
|
1307 |
msgid "Directly in a theme"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
#: dashboard/publisher/adverts-edit.php:289
|
1361 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1362 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1363 |
#: dashboard/publisher/groups-edit.php:200
|
1364 |
msgid "Upgrade today"
|
1365 |
msgstr "Надградете днес"
|
1374 |
msgstr "Всичко по-долу е по желание."
|
1375 |
|
1376 |
#: dashboard/publisher/adverts-edit.php:301
|
1377 |
+
msgid "Mobile"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1381 |
+
msgid "Show on;"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1385 |
+
msgid "Computers"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1389 |
+
msgid "Smartphones"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
#: dashboard/publisher/adverts-edit.php:303
|
1393 |
+
msgid "Tablets."
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1397 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1401 |
+
msgid "Responsive"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1405 |
msgid "Enable responsive support for this advert."
|
1406 |
msgstr "Активиране на responsive дизайн за тази реклама."
|
1407 |
|
1408 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1409 |
msgid ""
|
1410 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1411 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1412 |
msgstr ""
|
|
|
|
|
|
|
1413 |
|
1414 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1415 |
+
#: dashboard/publisher/adverts-report.php:58
|
1416 |
+
#: dashboard/publisher/groups-report.php:64
|
1417 |
+
msgid "Note:"
|
1418 |
+
msgstr "Забележка:"
|
1419 |
+
|
1420 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1421 |
+
msgid ""
|
1422 |
+
"This feature will not be developed any further. Consider switching to the "
|
1423 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1427 |
#: dashboard/publisher/groups-edit.php:194
|
1428 |
msgid "Sortorder"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1432 |
#: dashboard/publisher/groups-edit.php:196
|
1433 |
msgid "For administrative purposes set a sortorder."
|
1434 |
msgstr "За административни цели задайте критерий за сортиране."
|
1435 |
|
1436 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1437 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1438 |
msgstr ""
|
1439 |
"Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
|
1440 |
"на рекламата по подразбиране."
|
1441 |
|
1442 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1443 |
msgid ""
|
1444 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1445 |
+
"on!"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1449 |
msgid "Geo Targeting in AdRotate Pro"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1453 |
msgid ""
|
1454 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1458 |
msgid "Cities/States"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1462 |
msgid ""
|
1463 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1464 |
"states ISO codes are supported)"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1468 |
msgid ""
|
1469 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1470 |
"correctly!"
|
1472 |
"AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
|
1473 |
"правилно!"
|
1474 |
|
1475 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1476 |
msgid "Countries"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1480 |
msgid "Select the countries you want the adverts to show in."
|
1481 |
msgstr "Изберете страните, в които искате да се показват рекламите."
|
1482 |
|
1483 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1484 |
msgid "Cities take priority and will be filtered first."
|
1485 |
msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
|
1486 |
|
1487 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1488 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1492 |
msgid "Select Groups"
|
1493 |
msgstr "Избор на групи"
|
1494 |
|
1495 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1496 |
msgid "ID - Name"
|
1497 |
msgstr "ID - Име"
|
1498 |
|
1499 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1500 |
#: dashboard/publisher/groups-main.php:60
|
1501 |
#: dashboard/settings/geotargeting.php:39
|
1502 |
msgid "Default"
|
1503 |
msgstr "По подразбиране"
|
1504 |
|
1505 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1506 |
#: dashboard/publisher/groups-main.php:61
|
1507 |
msgid "Dynamic"
|
1508 |
msgstr "Динамично"
|
1509 |
|
1510 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1511 |
#: dashboard/publisher/groups-main.php:61
|
1512 |
msgid "second rotation"
|
1513 |
msgstr "второ завъртане"
|
1514 |
|
1515 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1516 |
#: dashboard/publisher/groups-main.php:62
|
1517 |
msgid "Block"
|
1518 |
msgstr "Блок"
|
1519 |
|
1520 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1521 |
#: dashboard/publisher/groups-main.php:62
|
1522 |
msgid "grid"
|
1523 |
msgstr "решетка"
|
1524 |
|
1525 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1526 |
#: dashboard/publisher/groups-edit.php:202
|
1527 |
#: dashboard/publisher/groups-main.php:63
|
1528 |
msgid "Post Injection"
|
1529 |
msgstr "Вмъкване в публикации"
|
1530 |
|
1531 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1532 |
msgid "Geolocation"
|
1533 |
msgstr "Геолокация"
|
1534 |
|
1535 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1536 |
#: dashboard/publisher/groups-edit.php:61
|
1537 |
#: dashboard/publisher/groups-main.php:70
|
1538 |
msgid "Mode"
|
1625 |
msgid "Monthly overview of clicks and impressions"
|
1626 |
msgstr "Месечен преглед на кликовете и импресиите"
|
1627 |
|
|
|
|
|
|
|
|
|
|
|
1628 |
#: dashboard/publisher/adverts-report.php:58
|
1629 |
#: dashboard/publisher/groups-report.php:64
|
1630 |
msgid ""
|
1970 |
msgid "This action can not be undone!"
|
1971 |
msgstr "Това действие е необратимо!"
|
1972 |
|
1973 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
1974 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
1975 |
msgid "OK to continue, CANCEL to stop."
|
1976 |
msgstr "ОК, за да продължите, ОТКАЗ за стоп."
|
1977 |
|
2052 |
msgstr ""
|
2053 |
|
2054 |
#: dashboard/settings/general.php:20
|
2055 |
+
msgid "Dynamic mode for Mobile"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: dashboard/settings/general.php:21
|
2059 |
+
msgid ""
|
2060 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2061 |
+
"jumping content."
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: dashboard/settings/general.php:24
|
2065 |
msgid "Load jQuery"
|
2066 |
msgstr "Зареди jQuery"
|
2067 |
|
2068 |
+
#: dashboard/settings/general.php:25
|
2069 |
msgid ""
|
2070 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2071 |
"groups, statistics and some other features."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: dashboard/settings/general.php:28
|
2075 |
msgid "Load scripts in footer?"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: dashboard/settings/general.php:29
|
2079 |
msgid ""
|
2080 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2081 |
"site."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: dashboard/settings/general.php:32
|
2085 |
msgid "Adblock disguise"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: dashboard/settings/general.php:34
|
2089 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: dashboard/settings/general.php:35
|
2093 |
msgid ""
|
2094 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: dashboard/settings/general.php:35
|
2098 |
msgid ""
|
2099 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2100 |
"instead of the AdRotate widget."
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: dashboard/settings/general.php:35
|
2104 |
msgid ""
|
2105 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2106 |
"feature will have little effect!"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: dashboard/settings/general.php:40
|
2110 |
msgid "Banner Folder"
|
2111 |
msgstr "Папка с банери"
|
2112 |
|
2113 |
+
#: dashboard/settings/general.php:41
|
2114 |
msgid "Set a location where your banner images will be stored."
|
2115 |
msgstr ""
|
2116 |
"Задайте местоположение, където да се записват вашите картинки за банери."
|
2117 |
|
2118 |
+
#: dashboard/settings/general.php:44
|
2119 |
msgid "Location"
|
2120 |
msgstr "Местоположение"
|
2121 |
|
2122 |
+
#: dashboard/settings/general.php:46
|
2123 |
msgid "(Default: wp-content/banners/)."
|
2124 |
msgstr "(По подразбиране: wp-content/banners/)."
|
2125 |
|
2126 |
+
#: dashboard/settings/general.php:47
|
2127 |
msgid ""
|
2128 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2129 |
"like:"
|
2131 |
"Опитайте да заблудите AdBlocker-ите, като използвате шантаво име за папката, "
|
2132 |
"като например:"
|
2133 |
|
2134 |
+
#: dashboard/settings/general.php:48
|
2135 |
msgid ""
|
2136 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2137 |
"will show errors when the folder is missing."
|
2139 |
"Папката няма да бъде създадена автоматично, ако не съществува. AdRotate ще "
|
2140 |
"показва грешки, ако папката не съществува."
|
2141 |
|
2142 |
+
#: dashboard/settings/general.php:53
|
2143 |
msgid "Bot filter"
|
2144 |
msgstr "Филтър на ботове"
|
2145 |
|
2146 |
+
#: dashboard/settings/general.php:54
|
2147 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: dashboard/settings/general.php:57
|
2151 |
msgid "User-Agent Filter"
|
2152 |
msgstr "Филтър за агенти"
|
2153 |
|
2154 |
+
#: dashboard/settings/general.php:60
|
2155 |
msgid ""
|
2156 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: dashboard/settings/general.php:61
|
2160 |
msgid ""
|
2161 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2162 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: dashboard/settings/general.php:62
|
2166 |
msgid ""
|
2167 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2168 |
"characters are stripped out."
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: dashboard/settings/general.php:63
|
2172 |
msgid ""
|
2173 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2174 |
"well."
|
2175 |
msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
|
2176 |
|
2177 |
+
#: dashboard/settings/general.php:63
|
2178 |
msgid "Learn more about"
|
2179 |
msgstr "Научете повече за"
|
2180 |
|
2181 |
+
#: dashboard/settings/general.php:63
|
2182 |
msgid "user-agents"
|
2183 |
msgstr "агенти"
|
2184 |
|
2840 |
"Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
|
2841 |
"(24 часа)."
|
2842 |
|
2843 |
+
#~ msgid ""
|
2844 |
+
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2845 |
+
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2846 |
+
#~ "is strongly recommended."
|
2847 |
+
#~ msgstr ""
|
2848 |
+
#~ "Качете картинките си в папката за банери и се уверете, че имената са в "
|
2849 |
+
#~ "правилния формат: \"imagename.full.ext\". Пълен набор от правилно "
|
2850 |
+
#~ "оразмерени картинки е строго препоръчителен."
|
2851 |
+
|
2852 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2853 |
#~ msgstr ""
|
2854 |
#~ "Проследяването на кликове е включено, но не е намерен валиден линк в кода "
|
language/adrotate-el.mo
CHANGED
Binary file
|
language/adrotate-el.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
@@ -14,122 +14,122 @@ msgstr ""
|
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Generator: Poedit 1.8.
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: adrotate-functions.php:
|
22 |
msgid "No files found"
|
23 |
msgstr "Δεν βρέθηκαν αρχεία"
|
24 |
|
25 |
-
#: adrotate-functions.php:
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
|
28 |
|
29 |
-
#: adrotate-functions.php:
|
30 |
msgid "Ad saved"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: adrotate-functions.php:
|
34 |
msgid "Group saved"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: adrotate-functions.php:
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
|
40 |
|
41 |
-
#: adrotate-functions.php:
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Η Ομάδα διαγράφηκε"
|
44 |
|
45 |
-
#: adrotate-functions.php:
|
46 |
msgid "Ad(s) statistics reset"
|
47 |
msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
|
48 |
|
49 |
-
#: adrotate-functions.php:
|
50 |
msgid "Ad(s) renewed"
|
51 |
msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
|
52 |
|
53 |
-
#: adrotate-functions.php:
|
54 |
msgid "Ad(s) deactivated"
|
55 |
msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
|
56 |
|
57 |
-
#: adrotate-functions.php:
|
58 |
msgid "Ad(s) activated"
|
59 |
msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
|
60 |
|
61 |
-
#: adrotate-functions.php:
|
62 |
msgid "Group including it's Ads deleted"
|
63 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
64 |
|
65 |
-
#: adrotate-functions.php:
|
66 |
#, fuzzy
|
67 |
msgid "Export created"
|
68 |
msgstr "Επιλογές εξαγωγής"
|
69 |
|
70 |
-
#: adrotate-functions.php:
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
|
73 |
|
74 |
-
#: adrotate-functions.php:
|
75 |
msgid "Database optimized"
|
76 |
msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
|
77 |
|
78 |
-
#: adrotate-functions.php:
|
79 |
msgid "Database repaired"
|
80 |
msgstr "Η βάση δεδομένων επιδιορθώθηκε"
|
81 |
|
82 |
-
#: adrotate-functions.php:
|
83 |
msgid "Ads evaluated and statuses have been corrected where required"
|
84 |
msgstr ""
|
85 |
"Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
|
86 |
"χρειάστηκε"
|
87 |
|
88 |
-
#: adrotate-functions.php:
|
89 |
msgid "Empty database records removed"
|
90 |
msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
msgid "Action prohibited"
|
94 |
msgstr "Η ενέργεια απαγορεύεται"
|
95 |
|
96 |
-
#: adrotate-functions.php:
|
97 |
msgid ""
|
98 |
"The ad was saved but has an issue which might prevent it from working "
|
99 |
"properly. Review the colored ad."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: adrotate-functions.php:
|
103 |
msgid "No data found in selected time period"
|
104 |
msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Database can only be optimized or cleaned once every hour"
|
108 |
msgstr ""
|
109 |
"Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
|
110 |
"ώρα"
|
111 |
|
112 |
-
#: adrotate-functions.php:
|
113 |
msgid "Form can not be (partially) empty!"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: adrotate-functions.php:
|
117 |
msgid "No ads found."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: adrotate-functions.php:
|
121 |
msgid "Unexpected error"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: adrotate-manage-publisher.php:
|
125 |
msgid "AdRotate Advertiser"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "Oh no! Something went wrong!"
|
130 |
msgstr "Παρουσιάστηκε κάποιο σφάλμα."
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid ""
|
134 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
135 |
"Verify if the url used is valid or log in via your browser."
|
@@ -138,7 +138,7 @@ msgstr ""
|
|
138 |
"που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
|
139 |
"browser σας."
|
140 |
|
141 |
-
#: adrotate-output.php:
|
142 |
msgid ""
|
143 |
"If you have received the url you want to visit via email, you are being "
|
144 |
"tricked!"
|
@@ -146,11 +146,11 @@ msgstr ""
|
|
146 |
"Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
|
147 |
"ξεγέλασαν!"
|
148 |
|
149 |
-
#: adrotate-output.php:
|
150 |
msgid "Contact support if the issue persists:"
|
151 |
msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
|
152 |
|
153 |
-
#: adrotate-output.php:
|
154 |
msgid ""
|
155 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
156 |
"restrictions or does not exist!"
|
@@ -158,7 +158,7 @@ msgstr ""
|
|
158 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
159 |
"χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
|
160 |
|
161 |
-
#: adrotate-output.php:
|
162 |
msgid ""
|
163 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
164 |
"restrictions!"
|
@@ -166,7 +166,7 @@ msgstr ""
|
|
166 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
167 |
"χρονικών περιορισμών."
|
168 |
|
169 |
-
#: adrotate-output.php:
|
170 |
msgid ""
|
171 |
"Either there are no banners, they are disabled or none qualified for this "
|
172 |
"location!"
|
@@ -174,20 +174,20 @@ msgstr ""
|
|
174 |
"Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
|
175 |
"πληρεί τις προϋποθέσεις της τοποθεσίας!"
|
176 |
|
177 |
-
#: adrotate-output.php:
|
178 |
msgid "Error, no Ad ID set! Check your syntax!"
|
179 |
msgstr ""
|
180 |
"Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
|
181 |
|
182 |
-
#: adrotate-output.php:
|
183 |
msgid "Error, no group ID set! Check your syntax!"
|
184 |
msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
|
185 |
|
186 |
-
#: adrotate-output.php:
|
187 |
msgid "Error, group does not exist! Check your syntax!"
|
188 |
msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
|
189 |
|
190 |
-
#: adrotate-output.php:
|
191 |
msgid ""
|
192 |
"There was an error locating the database tables for AdRotate. Please "
|
193 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -196,59 +196,59 @@ msgstr ""
|
|
196 |
"Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
|
197 |
"προσθέτων!!"
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "If this does not solve the issue please seek support at"
|
201 |
msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "An unknown error occured."
|
205 |
msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "active ad(s) expired."
|
209 |
msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "Take action now"
|
213 |
msgstr "Λάβετε μέτρα τώρα"
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "active ad(s) are about to expire."
|
217 |
msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "Check it out"
|
221 |
msgstr "Ελέγξτε το"
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "active ad(s) with configuration errors."
|
225 |
msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "Solve this"
|
229 |
msgstr "Λύστε το"
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "ad(s) expired."
|
233 |
msgstr "διαφήμιση(εις) έληξε(αν)"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "ad(s) are about to expire."
|
237 |
msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
msgid "ad(s) with configuration errors."
|
241 |
msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
242 |
|
243 |
-
#: adrotate-output.php:
|
244 |
msgid "Fix this as soon as possible"
|
245 |
msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
246 |
|
247 |
-
#: adrotate-output.php:
|
248 |
-
#: dashboard/adrotatepro.php:
|
249 |
-
#: dashboard/adrotatepro.php:
|
250 |
-
#: dashboard/adrotatepro.php:
|
251 |
-
#: dashboard/adrotatepro.php:
|
252 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
253 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
254 |
#: dashboard/settings/geotargeting.php:26
|
@@ -256,115 +256,115 @@ msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
|
256 |
msgid "Buy now"
|
257 |
msgstr "Λάβετε μέτρα τώρα"
|
258 |
|
259 |
-
#: adrotate-output.php:
|
260 |
msgid ""
|
261 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
262 |
"to the <strong>PRO</strong> version"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: adrotate-output.php:
|
266 |
#, php-format
|
267 |
msgid ""
|
268 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid "Thank you for your purchase!"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: adrotate-output.php:
|
276 |
msgid ""
|
277 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
278 |
"this menu. Check out the"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "manuals"
|
283 |
msgstr "εγχειρίδια"
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "and"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
msgid "forums"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
#, fuzzy
|
295 |
msgid "Useful Links"
|
296 |
msgstr "Χρήσιμοι σύνδεσμοι"
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
msgid "Useful links to learn more about AdRotate"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: adrotate-output.php:
|
303 |
#, fuzzy
|
304 |
msgid "AdRotate Page"
|
305 |
msgstr "AdRotate Pro"
|
306 |
|
307 |
-
#: adrotate-output.php:
|
308 |
#, fuzzy
|
309 |
msgid "Getting Started With AdRotate"
|
310 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
311 |
|
312 |
-
#: adrotate-output.php:
|
313 |
#, fuzzy
|
314 |
msgid "AdRotate manuals"
|
315 |
msgstr "Πληροφορίες του AdRotate"
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
#, fuzzy
|
319 |
msgid "AdRotate Support Forum"
|
320 |
msgstr "Κατάστημα του AdRotate"
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
#, fuzzy
|
324 |
msgid "Help AdRotate Grow"
|
325 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid "Brought to you by"
|
329 |
msgstr "Σας προσφέρεται από"
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid ""
|
333 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
334 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "If you find AdRotate useful please leave your honest"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "rating"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
#, fuzzy
|
347 |
msgid "review"
|
348 |
msgstr "Αξιολογήστε και σχολιάστε"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "Available in AdRotate Pro"
|
356 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
#, fuzzy
|
360 |
msgid "More information..."
|
361 |
msgstr "Περισσότερες πληροφορίες"
|
362 |
|
363 |
-
#: adrotate-output.php:
|
364 |
msgid "This feature is available in AdRotate Pro"
|
365 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
366 |
|
367 |
-
#: adrotate-output.php:
|
368 |
#, fuzzy
|
369 |
msgid "Learn more"
|
370 |
msgstr "Μάθετε περισσότερα σχετικά"
|
@@ -487,79 +487,79 @@ msgstr "Κωδ:"
|
|
487 |
msgid "Fill in the ID of the type you want to display!"
|
488 |
msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
msgid "General Info"
|
492 |
msgstr "Γενικές Πληροφορίες"
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
msgid "AdRotate Pro"
|
496 |
msgstr "AdRotate Pro"
|
497 |
|
498 |
-
#: adrotate.php:
|
499 |
msgid "Manage Ads"
|
500 |
msgstr "Διαχείριση Διαφημίσεων"
|
501 |
|
502 |
-
#: adrotate.php:
|
503 |
msgid "Manage Groups"
|
504 |
msgstr "Διαχείριση Ομάδων"
|
505 |
|
506 |
-
#: adrotate.php:
|
507 |
#, fuzzy
|
508 |
msgid "Manage Schedules"
|
509 |
msgstr "Διαχείριση"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
#, fuzzy
|
513 |
msgid "Manage Media"
|
514 |
msgstr "Media:"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "Settings"
|
518 |
msgstr "Ρυθμίσεις"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "AdRotate Info"
|
522 |
msgstr "Πληροφορίες του AdRotate"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
#, fuzzy
|
526 |
msgid "AdRotate Professional"
|
527 |
msgstr "AdRotate Pro"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
msgid "Ad Management"
|
531 |
msgstr "Διαχείριση Διαφημίσεων"
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
msgid "Manage"
|
535 |
msgstr "Διαχείριση"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
msgid "Add New"
|
539 |
msgstr "Προσθήκη Νέας"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
msgid "Group Management"
|
543 |
msgstr "Διαχείριση Ομάδας"
|
544 |
|
545 |
-
#: adrotate.php:
|
546 |
#: dashboard/publisher/groups-main.php:70
|
547 |
msgid "Report"
|
548 |
msgstr "Αναφορά"
|
549 |
|
550 |
-
#: adrotate.php:
|
551 |
#, fuzzy
|
552 |
msgid "Schedule Management available in AdRotate Pro"
|
553 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
554 |
|
555 |
-
#: adrotate.php:
|
556 |
#, fuzzy
|
557 |
msgid ""
|
558 |
"Schedule management and multiple schedules per advert is available in "
|
559 |
"AdRotate Pro."
|
560 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
561 |
|
562 |
-
#: adrotate.php:
|
563 |
#: dashboard/publisher/adverts-main.php:114
|
564 |
#: dashboard/publisher/groups-edit.php:75
|
565 |
#: dashboard/publisher/groups-main.php:89
|
@@ -567,21 +567,21 @@ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο
|
|
567 |
msgid "More information"
|
568 |
msgstr "Περισσότερες πληροφορίες"
|
569 |
|
570 |
-
#: adrotate.php:
|
571 |
#: dashboard/publisher/adverts-error.php:19
|
572 |
#: dashboard/publisher/adverts-main.php:20
|
573 |
#: dashboard/publisher/groups-main.php:20
|
574 |
msgid "Bulk Actions"
|
575 |
msgstr "Μαζικές Ενέργειες"
|
576 |
|
577 |
-
#: adrotate.php:
|
578 |
#: dashboard/publisher/adverts-error.php:29
|
579 |
#: dashboard/publisher/adverts-main.php:30
|
580 |
#: dashboard/publisher/groups-main.php:24
|
581 |
msgid "Go"
|
582 |
msgstr "Go"
|
583 |
|
584 |
-
#: adrotate.php:
|
585 |
#: dashboard/publisher/adverts-error.php:39
|
586 |
#: dashboard/publisher/adverts-main.php:39
|
587 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -589,175 +589,174 @@ msgstr "Go"
|
|
589 |
msgid "ID"
|
590 |
msgstr "Κωδ."
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
#, fuzzy
|
594 |
msgid "Start"
|
595 |
msgstr "Ώρα έναρξης (ωω: λλ):"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
#, fuzzy
|
599 |
msgid "End"
|
600 |
msgstr "Ώρα λήξης (ωω: λλ):"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
#: dashboard/publisher/groups-main.php:34
|
604 |
msgid "Ads"
|
605 |
msgstr "Διαφημίσεις"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
msgid "Max Impressions"
|
609 |
msgstr "Max Impressions"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
msgid "Max Clicks"
|
613 |
msgstr "Max Clicks"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
#, fuzzy
|
617 |
msgid "No schedules created yet!"
|
618 |
msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
#, fuzzy
|
622 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
623 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
624 |
|
625 |
-
#: adrotate.php:
|
626 |
#, fuzzy
|
627 |
msgid "Upgrade today!"
|
628 |
msgstr "Σήμερα"
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
#: dashboard/publisher/groups-edit.php:387
|
632 |
msgid "Expires soon."
|
633 |
msgstr "Λήγει σύντομα."
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
#: dashboard/publisher/groups-edit.php:388
|
637 |
msgid "Has expired."
|
638 |
msgstr "Έχει λήξει."
|
639 |
|
640 |
-
#: adrotate.php:
|
641 |
#, fuzzy
|
642 |
msgid "Media Management available in AdRotate Pro"
|
643 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
msgid ""
|
651 |
"This is useful if you use responsive adverts with multiple images or have "
|
652 |
"HTML5 adverts containing multiple files."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
#, fuzzy
|
657 |
msgid "Media uploading and management is available in AdRotate Pro."
|
658 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "Upload new file"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "Accepted files:"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "Maximum size is 512Kb."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "Important:"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid ""
|
682 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
683 |
"spaces with a - or _."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: adrotate.php:
|
687 |
msgid ""
|
688 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
689 |
"file so it knows about the changed name. For example for the javascript file."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
msgid ""
|
694 |
"For responsive adverts make sure the filename is in the following format; "
|
695 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: adrotate.php:
|
699 |
msgid ""
|
700 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
701 |
"filename instead of \".full\" for the various viewports."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: adrotate.php:
|
705 |
-
#: dashboard/publisher/groups-edit.php:312
|
706 |
#: dashboard/publisher/groups-edit.php:320
|
707 |
msgid "Example:"
|
708 |
msgstr "Παράδειγμα:"
|
709 |
|
710 |
-
#: adrotate.php:
|
711 |
msgid ""
|
712 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
713 |
"for different viewports."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: adrotate.php:
|
717 |
msgid "Upload file"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
msgid "Click only once per file!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: adrotate.php:
|
725 |
msgid "Available files in"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: adrotate.php:
|
729 |
#: dashboard/publisher/groups-main.php:33
|
730 |
msgid "Name"
|
731 |
msgstr "Όνομα"
|
732 |
|
733 |
-
#: adrotate.php:
|
734 |
#, fuzzy
|
735 |
msgid "Actions"
|
736 |
msgstr "Μαζικές Ενέργειες"
|
737 |
|
738 |
-
#: adrotate.php:
|
739 |
-
#: adrotate.php:
|
740 |
#: dashboard/publisher/adverts-disabled.php:22
|
741 |
#: dashboard/publisher/adverts-error.php:21
|
742 |
#: dashboard/publisher/adverts-main.php:22
|
743 |
msgid "Delete"
|
744 |
msgstr "Διαγραφή"
|
745 |
|
746 |
-
#: adrotate.php:
|
747 |
msgid ""
|
748 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: adrotate.php:
|
752 |
#, fuzzy
|
753 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
754 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
755 |
|
756 |
-
#: adrotate.php:
|
757 |
msgid "AdRotate Settings"
|
758 |
msgstr "Ρυθμίσεις AdRotate"
|
759 |
|
760 |
-
#: adrotate.php:
|
761 |
msgid "Update Options"
|
762 |
msgstr "Επιλογές Ανανέωσης"
|
763 |
|
@@ -775,22 +774,34 @@ msgid ""
|
|
775 |
msgstr ""
|
776 |
|
777 |
#: dashboard/adrotatepro.php:27
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
#: dashboard/adrotatepro.php:30
|
782 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
"Go nationwide or global with localized adverts for your various audiences. "
|
784 |
"Set up adverts for countries and cities and sell impressions per general "
|
785 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
786 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: dashboard/adrotatepro.php:
|
790 |
msgid "Get Premium Support almost all year round"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: dashboard/adrotatepro.php:
|
794 |
msgid ""
|
795 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
796 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -798,21 +809,21 @@ msgid ""
|
|
798 |
"forum. Get a solution (usually) within a day."
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: dashboard/adrotatepro.php:
|
802 |
msgid "AdRotate is brought to you by"
|
803 |
msgstr "Το AdRotate έρχεται από την "
|
804 |
|
805 |
-
#: dashboard/adrotatepro.php:
|
806 |
msgid ""
|
807 |
-
"Premium plugins for WordPress and WooCommerce
|
808 |
-
"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: dashboard/adrotatepro.php:
|
812 |
msgid "Schedule all campaigns with ease"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: dashboard/adrotatepro.php:
|
816 |
msgid ""
|
817 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
818 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -820,11 +831,23 @@ msgid ""
|
|
820 |
"much more easy. You can set one or many schedules for adverts."
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
824 |
msgid "Stay up-to-date with notifications"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: dashboard/adrotatepro.php:
|
828 |
msgid ""
|
829 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
830 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -833,91 +856,91 @@ msgid ""
|
|
833 |
"miss an expiration date again."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: dashboard/adrotatepro.php:
|
837 |
#: dashboard/info.php:93 dashboard/info.php:105
|
838 |
#, fuzzy
|
839 |
msgid "Buy AdRotate Professional"
|
840 |
msgstr "AdRotate Pro"
|
841 |
|
842 |
-
#: dashboard/adrotatepro.php:
|
843 |
msgid "Single License"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: dashboard/adrotatepro.php:
|
847 |
msgid "For one WordPress installation."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: dashboard/adrotatepro.php:
|
851 |
#: dashboard/info.php:98 dashboard/info.php:110
|
852 |
msgid "Duo License"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: dashboard/adrotatepro.php:
|
856 |
msgid "For two WordPress installations."
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: dashboard/adrotatepro.php:
|
860 |
#: dashboard/info.php:99 dashboard/info.php:111
|
861 |
msgid "Multi License"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: dashboard/adrotatepro.php:
|
865 |
msgid " For up to five WordPress installations."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: dashboard/adrotatepro.php:
|
869 |
#: dashboard/info.php:100 dashboard/info.php:112
|
870 |
#, fuzzy
|
871 |
msgid "Developer License"
|
872 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
873 |
|
874 |
-
#: dashboard/adrotatepro.php:
|
875 |
msgid "Unlimited WordPress installations and/or networks."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: dashboard/adrotatepro.php:
|
879 |
#: dashboard/info.php:101 dashboard/info.php:114
|
880 |
msgid "Compare licenses"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: dashboard/adrotatepro.php:
|
884 |
msgid "Not sure which license is for you? Compare them..."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: dashboard/adrotatepro.php:
|
888 |
msgid "All Licenses"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: dashboard/adrotatepro.php:
|
892 |
msgid "Lifetime License"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: dashboard/adrotatepro.php:
|
896 |
msgid "Single installation."
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: dashboard/adrotatepro.php:
|
900 |
msgid "Up to 2 installations."
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: dashboard/adrotatepro.php:
|
904 |
msgid "Up to 10 installations."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: dashboard/adrotatepro.php:
|
908 |
msgid "Up to 25 installations or multisite networks."
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: dashboard/adrotatepro.php:
|
912 |
msgid ""
|
913 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: dashboard/adrotatepro.php:
|
917 |
msgid "Not sure which license is for you?"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: dashboard/adrotatepro.php:
|
921 |
msgid "Compare Licenses"
|
922 |
msgstr ""
|
923 |
|
@@ -1261,15 +1284,15 @@ msgstr "Για περισσότερες δυνατότητες αποκτήστ
|
|
1261 |
|
1262 |
#: dashboard/publisher/adverts-edit.php:192
|
1263 |
#: dashboard/publisher/adverts-edit.php:292
|
1264 |
-
#: dashboard/publisher/adverts-edit.php:
|
1265 |
-
#: dashboard/publisher/adverts-edit.php:
|
1266 |
msgid "Save Advert"
|
1267 |
msgstr "Αποθήκευση Διαφήμισης"
|
1268 |
|
1269 |
#: dashboard/publisher/adverts-edit.php:193
|
1270 |
#: dashboard/publisher/adverts-edit.php:293
|
1271 |
-
#: dashboard/publisher/adverts-edit.php:
|
1272 |
-
#: dashboard/publisher/adverts-edit.php:
|
1273 |
#: dashboard/publisher/groups-edit.php:154
|
1274 |
#: dashboard/publisher/groups-edit.php:301
|
1275 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1277,35 +1300,35 @@ msgid "Cancel"
|
|
1277 |
msgstr "Ακύρωση"
|
1278 |
|
1279 |
#: dashboard/publisher/adverts-edit.php:196
|
1280 |
-
#: dashboard/publisher/adverts-edit.php:
|
1281 |
#: dashboard/publisher/groups-edit.php:136
|
1282 |
#: dashboard/publisher/groups-edit.php:283
|
1283 |
msgid "Usage"
|
1284 |
msgstr "Χρήση"
|
1285 |
|
1286 |
#: dashboard/publisher/adverts-edit.php:200
|
1287 |
-
#: dashboard/publisher/adverts-edit.php:
|
1288 |
#: dashboard/publisher/groups-edit.php:140
|
1289 |
#: dashboard/publisher/groups-edit.php:287
|
1290 |
msgid "Widget"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: dashboard/publisher/adverts-edit.php:201
|
1294 |
-
#: dashboard/publisher/adverts-edit.php:
|
1295 |
msgid ""
|
1296 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1297 |
"and enter ID"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: dashboard/publisher/adverts-edit.php:204
|
1301 |
-
#: dashboard/publisher/adverts-edit.php:
|
1302 |
#: dashboard/publisher/groups-edit.php:144
|
1303 |
#: dashboard/publisher/groups-edit.php:291
|
1304 |
msgid "In a post or page"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: dashboard/publisher/adverts-edit.php:206
|
1308 |
-
#: dashboard/publisher/adverts-edit.php:
|
1309 |
#: dashboard/publisher/groups-edit.php:146
|
1310 |
#: dashboard/publisher/groups-edit.php:293
|
1311 |
msgid "Directly in a theme"
|
@@ -1362,8 +1385,8 @@ msgid ""
|
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: dashboard/publisher/adverts-edit.php:289
|
1365 |
-
#: dashboard/publisher/adverts-edit.php:
|
1366 |
-
#: dashboard/publisher/adverts-edit.php:
|
1367 |
#: dashboard/publisher/groups-edit.php:200
|
1368 |
#, fuzzy
|
1369 |
msgid "Upgrade today"
|
@@ -1379,117 +1402,153 @@ msgid "Everything below is optional."
|
|
1379 |
msgstr "Τα πάντα από κάτω είναι προαιρετικά."
|
1380 |
|
1381 |
#: dashboard/publisher/adverts-edit.php:301
|
1382 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1383 |
msgstr ""
|
1384 |
|
1385 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1386 |
#, fuzzy
|
1387 |
msgid "Enable responsive support for this advert."
|
1388 |
msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
|
1389 |
|
1390 |
-
#: dashboard/publisher/adverts-edit.php:
|
1391 |
msgid ""
|
1392 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1393 |
-
"following format; \"imagename.full.ext\".
|
1394 |
-
"strongly recommended."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1398 |
#: dashboard/publisher/groups-edit.php:194
|
1399 |
msgid "Sortorder"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: dashboard/publisher/adverts-edit.php:
|
1403 |
#: dashboard/publisher/groups-edit.php:196
|
1404 |
msgid "For administrative purposes set a sortorder."
|
1405 |
msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
|
1406 |
|
1407 |
-
#: dashboard/publisher/adverts-edit.php:
|
1408 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1409 |
msgstr ""
|
1410 |
"Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
|
1411 |
"διαφήμισης."
|
1412 |
|
1413 |
-
#: dashboard/publisher/adverts-edit.php:
|
1414 |
msgid ""
|
1415 |
-
"With AdRotate Pro you can
|
|
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: dashboard/publisher/adverts-edit.php:
|
1419 |
msgid "Geo Targeting in AdRotate Pro"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: dashboard/publisher/adverts-edit.php:
|
1423 |
msgid ""
|
1424 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: dashboard/publisher/adverts-edit.php:
|
1428 |
msgid "Cities/States"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: dashboard/publisher/adverts-edit.php:
|
1432 |
msgid ""
|
1433 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1434 |
"states ISO codes are supported)"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: dashboard/publisher/adverts-edit.php:
|
1438 |
msgid ""
|
1439 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1440 |
"correctly!"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: dashboard/publisher/adverts-edit.php:
|
1444 |
msgid "Countries"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: dashboard/publisher/adverts-edit.php:
|
1448 |
#, fuzzy
|
1449 |
msgid "Select the countries you want the adverts to show in."
|
1450 |
msgstr ""
|
1451 |
"Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
|
1452 |
"εμφανίζονται"
|
1453 |
|
1454 |
-
#: dashboard/publisher/adverts-edit.php:
|
1455 |
msgid "Cities take priority and will be filtered first."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: dashboard/publisher/adverts-edit.php:
|
1459 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: dashboard/publisher/adverts-edit.php:
|
1463 |
msgid "Select Groups"
|
1464 |
msgstr "Επιλέξτε Ομάδες"
|
1465 |
|
1466 |
-
#: dashboard/publisher/adverts-edit.php:
|
1467 |
msgid "ID - Name"
|
1468 |
msgstr "ID - Όνομα"
|
1469 |
|
1470 |
-
#: dashboard/publisher/adverts-edit.php:
|
1471 |
#: dashboard/publisher/groups-main.php:60
|
1472 |
#: dashboard/settings/geotargeting.php:39
|
1473 |
msgid "Default"
|
1474 |
msgstr "Προεπιλογή"
|
1475 |
|
1476 |
-
#: dashboard/publisher/adverts-edit.php:
|
1477 |
#: dashboard/publisher/groups-main.php:61
|
1478 |
msgid "Dynamic"
|
1479 |
msgstr "Δυναμική"
|
1480 |
|
1481 |
-
#: dashboard/publisher/adverts-edit.php:
|
1482 |
#: dashboard/publisher/groups-main.php:61
|
1483 |
#, fuzzy
|
1484 |
msgid "second rotation"
|
1485 |
msgstr "Γεωγραφική Τοποθεσία"
|
1486 |
|
1487 |
-
#: dashboard/publisher/adverts-edit.php:
|
1488 |
#: dashboard/publisher/groups-main.php:62
|
1489 |
msgid "Block"
|
1490 |
msgstr "Απαγόρευση"
|
1491 |
|
1492 |
-
#: dashboard/publisher/adverts-edit.php:
|
1493 |
#: dashboard/publisher/groups-main.php:62
|
1494 |
#, fuzzy
|
1495 |
msgid "grid"
|
@@ -1497,17 +1556,17 @@ msgstr ""
|
|
1497 |
"Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
|
1498 |
"πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
|
1499 |
|
1500 |
-
#: dashboard/publisher/adverts-edit.php:
|
1501 |
#: dashboard/publisher/groups-edit.php:202
|
1502 |
#: dashboard/publisher/groups-main.php:63
|
1503 |
msgid "Post Injection"
|
1504 |
msgstr "Εμβολιασμός Δημοσίευσης"
|
1505 |
|
1506 |
-
#: dashboard/publisher/adverts-edit.php:
|
1507 |
msgid "Geolocation"
|
1508 |
msgstr "Γεωγραφική τοποθεσία"
|
1509 |
|
1510 |
-
#: dashboard/publisher/adverts-edit.php:
|
1511 |
#: dashboard/publisher/groups-edit.php:61
|
1512 |
#: dashboard/publisher/groups-main.php:70
|
1513 |
msgid "Mode"
|
@@ -1601,11 +1660,6 @@ msgstr "Clicks σήμερα"
|
|
1601 |
msgid "Monthly overview of clicks and impressions"
|
1602 |
msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
|
1603 |
|
1604 |
-
#: dashboard/publisher/adverts-report.php:58
|
1605 |
-
#: dashboard/publisher/groups-report.php:64
|
1606 |
-
msgid "Note:"
|
1607 |
-
msgstr "Σημείωση:"
|
1608 |
-
|
1609 |
#: dashboard/publisher/adverts-report.php:58
|
1610 |
#: dashboard/publisher/groups-report.php:64
|
1611 |
msgid ""
|
@@ -1970,9 +2024,8 @@ msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
|
|
1970 |
msgid "This action can not be undone!"
|
1971 |
msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
|
1972 |
|
1973 |
-
#: dashboard/publisher/groups-main.php:24
|
1974 |
-
#: dashboard/settings/maintenance.php:
|
1975 |
-
#: dashboard/settings/maintenance.php:34
|
1976 |
msgid "OK to continue, CANCEL to stop."
|
1977 |
msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
|
1978 |
|
@@ -2052,75 +2105,85 @@ msgid ""
|
|
2052 |
msgstr ""
|
2053 |
|
2054 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2055 |
#, fuzzy
|
2056 |
msgid "Load jQuery"
|
2057 |
msgstr "Να περιληφθεί η jQuery"
|
2058 |
|
2059 |
-
#: dashboard/settings/general.php:
|
2060 |
msgid ""
|
2061 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2062 |
"groups, statistics and some other features."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: dashboard/settings/general.php:
|
2066 |
msgid "Load scripts in footer?"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: dashboard/settings/general.php:
|
2070 |
msgid ""
|
2071 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2072 |
"site."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: dashboard/settings/general.php:
|
2076 |
msgid "Adblock disguise"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: dashboard/settings/general.php:
|
2080 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: dashboard/settings/general.php:
|
2084 |
msgid ""
|
2085 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: dashboard/settings/general.php:
|
2089 |
msgid ""
|
2090 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2091 |
"instead of the AdRotate widget."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: dashboard/settings/general.php:
|
2095 |
msgid ""
|
2096 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2097 |
"feature will have little effect!"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: dashboard/settings/general.php:
|
2101 |
msgid "Banner Folder"
|
2102 |
msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ)"
|
2103 |
|
2104 |
-
#: dashboard/settings/general.php:
|
2105 |
#, fuzzy
|
2106 |
msgid "Set a location where your banner images will be stored."
|
2107 |
msgstr ""
|
2108 |
"Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
|
2109 |
"(Προεπιλογή: /wp-content/banners/)."
|
2110 |
|
2111 |
-
#: dashboard/settings/general.php:
|
2112 |
#, fuzzy
|
2113 |
msgid "Location"
|
2114 |
msgstr "Γεωγραφική Τοποθεσία"
|
2115 |
|
2116 |
-
#: dashboard/settings/general.php:
|
2117 |
#, fuzzy
|
2118 |
msgid "(Default: wp-content/banners/)."
|
2119 |
msgstr ""
|
2120 |
"Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
|
2121 |
"(Προεπιλογή: /wp-content/banners/)."
|
2122 |
|
2123 |
-
#: dashboard/settings/general.php:
|
2124 |
msgid ""
|
2125 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2126 |
"like:"
|
@@ -2128,7 +2191,7 @@ msgstr ""
|
|
2128 |
"Για να ξεγελάσετε το μπλοκάρισμα των διαφημίσεων, ορίστε σαν όνομα φακέλου "
|
2129 |
"κάτι περίεργο όπως:"
|
2130 |
|
2131 |
-
#: dashboard/settings/general.php:
|
2132 |
msgid ""
|
2133 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2134 |
"will show errors when the folder is missing."
|
@@ -2136,37 +2199,37 @@ msgstr ""
|
|
2136 |
"Αυτός ο φάκελος δεν θα δημιουργηθεί αυτόματα αν δεν υπάρχει. Το AdRotate θα "
|
2137 |
"εμφανίσει λάθη όταν λείπει ο φάκελος."
|
2138 |
|
2139 |
-
#: dashboard/settings/general.php:
|
2140 |
#, fuzzy
|
2141 |
msgid "Bot filter"
|
2142 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
2143 |
|
2144 |
-
#: dashboard/settings/general.php:
|
2145 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: dashboard/settings/general.php:
|
2149 |
msgid "User-Agent Filter"
|
2150 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
2151 |
|
2152 |
-
#: dashboard/settings/general.php:
|
2153 |
msgid ""
|
2154 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: dashboard/settings/general.php:
|
2158 |
msgid ""
|
2159 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2160 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: dashboard/settings/general.php:
|
2164 |
msgid ""
|
2165 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2166 |
"characters are stripped out."
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: dashboard/settings/general.php:
|
2170 |
msgid ""
|
2171 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2172 |
"well."
|
@@ -2174,11 +2237,11 @@ msgstr ""
|
|
2174 |
"Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
|
2175 |
"απορίπτονται επίσης."
|
2176 |
|
2177 |
-
#: dashboard/settings/general.php:
|
2178 |
msgid "Learn more about"
|
2179 |
msgstr "Μάθετε περισσότερα σχετικά"
|
2180 |
|
2181 |
-
#: dashboard/settings/general.php:
|
2182 |
msgid "user-agents"
|
2183 |
msgstr "πρόγραμμα περιήγησης"
|
2184 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:47+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:47+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 1.8.6\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: adrotate-functions.php:849
|
22 |
msgid "No files found"
|
23 |
msgstr "Δεν βρέθηκαν αρχεία"
|
24 |
|
25 |
+
#: adrotate-functions.php:852
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
|
28 |
|
29 |
+
#: adrotate-functions.php:901
|
30 |
msgid "Ad saved"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: adrotate-functions.php:905
|
34 |
msgid "Group saved"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: adrotate-functions.php:909
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
|
40 |
|
41 |
+
#: adrotate-functions.php:913
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Η Ομάδα διαγράφηκε"
|
44 |
|
45 |
+
#: adrotate-functions.php:917
|
46 |
msgid "Ad(s) statistics reset"
|
47 |
msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
|
48 |
|
49 |
+
#: adrotate-functions.php:921
|
50 |
msgid "Ad(s) renewed"
|
51 |
msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
|
52 |
|
53 |
+
#: adrotate-functions.php:925
|
54 |
msgid "Ad(s) deactivated"
|
55 |
msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
|
56 |
|
57 |
+
#: adrotate-functions.php:929
|
58 |
msgid "Ad(s) activated"
|
59 |
msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
|
60 |
|
61 |
+
#: adrotate-functions.php:933
|
62 |
msgid "Group including it's Ads deleted"
|
63 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
64 |
|
65 |
+
#: adrotate-functions.php:937
|
66 |
#, fuzzy
|
67 |
msgid "Export created"
|
68 |
msgstr "Επιλογές εξαγωγής"
|
69 |
|
70 |
+
#: adrotate-functions.php:942
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
|
73 |
|
74 |
+
#: adrotate-functions.php:946
|
75 |
msgid "Database optimized"
|
76 |
msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
|
77 |
|
78 |
+
#: adrotate-functions.php:950
|
79 |
msgid "Database repaired"
|
80 |
msgstr "Η βάση δεδομένων επιδιορθώθηκε"
|
81 |
|
82 |
+
#: adrotate-functions.php:954
|
83 |
msgid "Ads evaluated and statuses have been corrected where required"
|
84 |
msgstr ""
|
85 |
"Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
|
86 |
"χρειάστηκε"
|
87 |
|
88 |
+
#: adrotate-functions.php:958
|
89 |
msgid "Empty database records removed"
|
90 |
msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
|
91 |
|
92 |
+
#: adrotate-functions.php:963
|
93 |
msgid "Action prohibited"
|
94 |
msgstr "Η ενέργεια απαγορεύεται"
|
95 |
|
96 |
+
#: adrotate-functions.php:967
|
97 |
msgid ""
|
98 |
"The ad was saved but has an issue which might prevent it from working "
|
99 |
"properly. Review the colored ad."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: adrotate-functions.php:971
|
103 |
msgid "No data found in selected time period"
|
104 |
msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
|
105 |
|
106 |
+
#: adrotate-functions.php:975
|
107 |
msgid "Database can only be optimized or cleaned once every hour"
|
108 |
msgstr ""
|
109 |
"Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
|
110 |
"ώρα"
|
111 |
|
112 |
+
#: adrotate-functions.php:979
|
113 |
msgid "Form can not be (partially) empty!"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: adrotate-functions.php:983
|
117 |
msgid "No ads found."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: adrotate-functions.php:987
|
121 |
msgid "Unexpected error"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: adrotate-manage-publisher.php:712
|
125 |
msgid "AdRotate Advertiser"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: adrotate-output.php:639
|
129 |
msgid "Oh no! Something went wrong!"
|
130 |
msgstr "Παρουσιάστηκε κάποιο σφάλμα."
|
131 |
|
132 |
+
#: adrotate-output.php:640
|
133 |
msgid ""
|
134 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
135 |
"Verify if the url used is valid or log in via your browser."
|
138 |
"που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
|
139 |
"browser σας."
|
140 |
|
141 |
+
#: adrotate-output.php:641
|
142 |
msgid ""
|
143 |
"If you have received the url you want to visit via email, you are being "
|
144 |
"tricked!"
|
146 |
"Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
|
147 |
"ξεγέλασαν!"
|
148 |
|
149 |
+
#: adrotate-output.php:642
|
150 |
msgid "Contact support if the issue persists:"
|
151 |
msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
|
152 |
|
153 |
+
#: adrotate-output.php:660
|
154 |
msgid ""
|
155 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
156 |
"restrictions or does not exist!"
|
158 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
159 |
"χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
|
160 |
|
161 |
+
#: adrotate-output.php:662
|
162 |
msgid ""
|
163 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
164 |
"restrictions!"
|
166 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
167 |
"χρονικών περιορισμών."
|
168 |
|
169 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
170 |
msgid ""
|
171 |
"Either there are no banners, they are disabled or none qualified for this "
|
172 |
"location!"
|
174 |
"Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
|
175 |
"πληρεί τις προϋποθέσεις της τοποθεσίας!"
|
176 |
|
177 |
+
#: adrotate-output.php:677
|
178 |
msgid "Error, no Ad ID set! Check your syntax!"
|
179 |
msgstr ""
|
180 |
"Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
|
181 |
|
182 |
+
#: adrotate-output.php:683
|
183 |
msgid "Error, no group ID set! Check your syntax!"
|
184 |
msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
|
185 |
|
186 |
+
#: adrotate-output.php:688
|
187 |
msgid "Error, group does not exist! Check your syntax!"
|
188 |
msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
|
189 |
|
190 |
+
#: adrotate-output.php:694
|
191 |
msgid ""
|
192 |
"There was an error locating the database tables for AdRotate. Please "
|
193 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
196 |
"Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
|
197 |
"προσθέτων!!"
|
198 |
|
199 |
+
#: adrotate-output.php:694
|
200 |
msgid "If this does not solve the issue please seek support at"
|
201 |
msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
|
202 |
|
203 |
+
#: adrotate-output.php:700
|
204 |
msgid "An unknown error occured."
|
205 |
msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
|
206 |
|
207 |
+
#: adrotate-output.php:725
|
208 |
msgid "active ad(s) expired."
|
209 |
msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
|
210 |
|
211 |
+
#: adrotate-output.php:725
|
212 |
msgid "Take action now"
|
213 |
msgstr "Λάβετε μέτρα τώρα"
|
214 |
|
215 |
+
#: adrotate-output.php:727
|
216 |
msgid "active ad(s) are about to expire."
|
217 |
msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
|
218 |
|
219 |
+
#: adrotate-output.php:727
|
220 |
msgid "Check it out"
|
221 |
msgstr "Ελέγξτε το"
|
222 |
|
223 |
+
#: adrotate-output.php:729
|
224 |
msgid "active ad(s) with configuration errors."
|
225 |
msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
|
226 |
|
227 |
+
#: adrotate-output.php:729
|
228 |
msgid "Solve this"
|
229 |
msgstr "Λύστε το"
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "ad(s) expired."
|
233 |
msgstr "διαφήμιση(εις) έληξε(αν)"
|
234 |
|
235 |
+
#: adrotate-output.php:731
|
236 |
msgid "ad(s) are about to expire."
|
237 |
msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
238 |
|
239 |
+
#: adrotate-output.php:731
|
240 |
msgid "ad(s) with configuration errors."
|
241 |
msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
242 |
|
243 |
+
#: adrotate-output.php:731
|
244 |
msgid "Fix this as soon as possible"
|
245 |
msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
246 |
|
247 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
248 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
249 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
250 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
251 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
252 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
253 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
254 |
#: dashboard/settings/geotargeting.php:26
|
256 |
msgid "Buy now"
|
257 |
msgstr "Λάβετε μέτρα τώρα"
|
258 |
|
259 |
+
#: adrotate-output.php:744
|
260 |
msgid ""
|
261 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
262 |
"to the <strong>PRO</strong> version"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:744
|
266 |
#, php-format
|
267 |
msgid ""
|
268 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: adrotate-output.php:744
|
272 |
msgid "Thank you for your purchase!"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: adrotate-output.php:788
|
276 |
msgid ""
|
277 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
278 |
"this menu. Check out the"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: adrotate-output.php:788
|
282 |
msgid "manuals"
|
283 |
msgstr "εγχειρίδια"
|
284 |
|
285 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
286 |
msgid "and"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: adrotate-output.php:788
|
290 |
msgid "forums"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: adrotate-output.php:821
|
294 |
#, fuzzy
|
295 |
msgid "Useful Links"
|
296 |
msgstr "Χρήσιμοι σύνδεσμοι"
|
297 |
|
298 |
+
#: adrotate-output.php:822
|
299 |
msgid "Useful links to learn more about AdRotate"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: adrotate-output.php:824
|
303 |
#, fuzzy
|
304 |
msgid "AdRotate Page"
|
305 |
msgstr "AdRotate Pro"
|
306 |
|
307 |
+
#: adrotate-output.php:825
|
308 |
#, fuzzy
|
309 |
msgid "Getting Started With AdRotate"
|
310 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
311 |
|
312 |
+
#: adrotate-output.php:826
|
313 |
#, fuzzy
|
314 |
msgid "AdRotate manuals"
|
315 |
msgstr "Πληροφορίες του AdRotate"
|
316 |
|
317 |
+
#: adrotate-output.php:827
|
318 |
#, fuzzy
|
319 |
msgid "AdRotate Support Forum"
|
320 |
msgstr "Κατάστημα του AdRotate"
|
321 |
|
322 |
+
#: adrotate-output.php:853
|
323 |
#, fuzzy
|
324 |
msgid "Help AdRotate Grow"
|
325 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
326 |
|
327 |
+
#: adrotate-output.php:854
|
328 |
msgid "Brought to you by"
|
329 |
msgstr "Σας προσφέρεται από"
|
330 |
|
331 |
+
#: adrotate-output.php:861
|
332 |
msgid ""
|
333 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
334 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:861
|
338 |
msgid "If you find AdRotate useful please leave your honest"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: adrotate-output.php:861
|
342 |
msgid "rating"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: adrotate-output.php:861
|
346 |
#, fuzzy
|
347 |
msgid "review"
|
348 |
msgstr "Αξιολογήστε και σχολιάστε"
|
349 |
|
350 |
+
#: adrotate-output.php:861
|
351 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: adrotate-output.php:893
|
355 |
msgid "Available in AdRotate Pro"
|
356 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
357 |
|
358 |
+
#: adrotate-output.php:893
|
359 |
#, fuzzy
|
360 |
msgid "More information..."
|
361 |
msgstr "Περισσότερες πληροφορίες"
|
362 |
|
363 |
+
#: adrotate-output.php:894
|
364 |
msgid "This feature is available in AdRotate Pro"
|
365 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
366 |
|
367 |
+
#: adrotate-output.php:894
|
368 |
#, fuzzy
|
369 |
msgid "Learn more"
|
370 |
msgstr "Μάθετε περισσότερα σχετικά"
|
487 |
msgid "Fill in the ID of the type you want to display!"
|
488 |
msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
|
489 |
|
490 |
+
#: adrotate.php:106
|
491 |
msgid "General Info"
|
492 |
msgstr "Γενικές Πληροφορίες"
|
493 |
|
494 |
+
#: adrotate.php:107
|
495 |
msgid "AdRotate Pro"
|
496 |
msgstr "AdRotate Pro"
|
497 |
|
498 |
+
#: adrotate.php:108
|
499 |
msgid "Manage Ads"
|
500 |
msgstr "Διαχείριση Διαφημίσεων"
|
501 |
|
502 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
503 |
msgid "Manage Groups"
|
504 |
msgstr "Διαχείριση Ομάδων"
|
505 |
|
506 |
+
#: adrotate.php:110 adrotate.php:408
|
507 |
#, fuzzy
|
508 |
msgid "Manage Schedules"
|
509 |
msgstr "Διαχείριση"
|
510 |
|
511 |
+
#: adrotate.php:111
|
512 |
#, fuzzy
|
513 |
msgid "Manage Media"
|
514 |
msgstr "Media:"
|
515 |
|
516 |
+
#: adrotate.php:112
|
517 |
msgid "Settings"
|
518 |
msgstr "Ρυθμίσεις"
|
519 |
|
520 |
+
#: adrotate.php:135
|
521 |
msgid "AdRotate Info"
|
522 |
msgstr "Πληροφορίες του AdRotate"
|
523 |
|
524 |
+
#: adrotate.php:156
|
525 |
#, fuzzy
|
526 |
msgid "AdRotate Professional"
|
527 |
msgstr "AdRotate Pro"
|
528 |
|
529 |
+
#: adrotate.php:199
|
530 |
msgid "Ad Management"
|
531 |
msgstr "Διαχείριση Διαφημίσεων"
|
532 |
|
533 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
534 |
msgid "Manage"
|
535 |
msgstr "Διαχείριση"
|
536 |
|
537 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
538 |
msgid "Add New"
|
539 |
msgstr "Προσθήκη Νέας"
|
540 |
|
541 |
+
#: adrotate.php:337
|
542 |
msgid "Group Management"
|
543 |
msgstr "Διαχείριση Ομάδας"
|
544 |
|
545 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
546 |
#: dashboard/publisher/groups-main.php:70
|
547 |
msgid "Report"
|
548 |
msgstr "Αναφορά"
|
549 |
|
550 |
+
#: adrotate.php:399
|
551 |
#, fuzzy
|
552 |
msgid "Schedule Management available in AdRotate Pro"
|
553 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
554 |
|
555 |
+
#: adrotate.php:409
|
556 |
#, fuzzy
|
557 |
msgid ""
|
558 |
"Schedule management and multiple schedules per advert is available in "
|
559 |
"AdRotate Pro."
|
560 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
561 |
|
562 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
563 |
#: dashboard/publisher/adverts-main.php:114
|
564 |
#: dashboard/publisher/groups-edit.php:75
|
565 |
#: dashboard/publisher/groups-main.php:89
|
567 |
msgid "More information"
|
568 |
msgstr "Περισσότερες πληροφορίες"
|
569 |
|
570 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
571 |
#: dashboard/publisher/adverts-error.php:19
|
572 |
#: dashboard/publisher/adverts-main.php:20
|
573 |
#: dashboard/publisher/groups-main.php:20
|
574 |
msgid "Bulk Actions"
|
575 |
msgstr "Μαζικές Ενέργειες"
|
576 |
|
577 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
578 |
#: dashboard/publisher/adverts-error.php:29
|
579 |
#: dashboard/publisher/adverts-main.php:30
|
580 |
#: dashboard/publisher/groups-main.php:24
|
581 |
msgid "Go"
|
582 |
msgstr "Go"
|
583 |
|
584 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
585 |
#: dashboard/publisher/adverts-error.php:39
|
586 |
#: dashboard/publisher/adverts-main.php:39
|
587 |
#: dashboard/publisher/groups-edit.php:51
|
589 |
msgid "ID"
|
590 |
msgstr "Κωδ."
|
591 |
|
592 |
+
#: adrotate.php:427
|
593 |
#, fuzzy
|
594 |
msgid "Start"
|
595 |
msgstr "Ώρα έναρξης (ωω: λλ):"
|
596 |
|
597 |
+
#: adrotate.php:427
|
598 |
#, fuzzy
|
599 |
msgid "End"
|
600 |
msgstr "Ώρα λήξης (ωω: λλ):"
|
601 |
|
602 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
603 |
#: dashboard/publisher/groups-main.php:34
|
604 |
msgid "Ads"
|
605 |
msgstr "Διαφημίσεις"
|
606 |
|
607 |
+
#: adrotate.php:430
|
608 |
msgid "Max Impressions"
|
609 |
msgstr "Max Impressions"
|
610 |
|
611 |
+
#: adrotate.php:431
|
612 |
msgid "Max Clicks"
|
613 |
msgstr "Max Clicks"
|
614 |
|
615 |
+
#: adrotate.php:461
|
616 |
#, fuzzy
|
617 |
msgid "No schedules created yet!"
|
618 |
msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
|
619 |
|
620 |
+
#: adrotate.php:466
|
621 |
#, fuzzy
|
622 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
623 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
624 |
|
625 |
+
#: adrotate.php:466 adrotate.php:532
|
626 |
#, fuzzy
|
627 |
msgid "Upgrade today!"
|
628 |
msgstr "Σήμερα"
|
629 |
|
630 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
631 |
#: dashboard/publisher/groups-edit.php:387
|
632 |
msgid "Expires soon."
|
633 |
msgstr "Λήγει σύντομα."
|
634 |
|
635 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
636 |
#: dashboard/publisher/groups-edit.php:388
|
637 |
msgid "Has expired."
|
638 |
msgstr "Έχει λήξει."
|
639 |
|
640 |
+
#: adrotate.php:494
|
641 |
#, fuzzy
|
642 |
msgid "Media Management available in AdRotate Pro"
|
643 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
644 |
|
645 |
+
#: adrotate.php:496
|
646 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: adrotate.php:496
|
650 |
msgid ""
|
651 |
"This is useful if you use responsive adverts with multiple images or have "
|
652 |
"HTML5 adverts containing multiple files."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: adrotate.php:496
|
656 |
#, fuzzy
|
657 |
msgid "Media uploading and management is available in AdRotate Pro."
|
658 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
659 |
|
660 |
+
#: adrotate.php:498
|
661 |
msgid "Upload new file"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: adrotate.php:499
|
665 |
msgid "Accepted files:"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: adrotate.php:499
|
669 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: adrotate.php:499
|
673 |
msgid "Maximum size is 512Kb."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: adrotate.php:499
|
677 |
msgid "Important:"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: adrotate.php:499
|
681 |
msgid ""
|
682 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
683 |
"spaces with a - or _."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: adrotate.php:499
|
687 |
msgid ""
|
688 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
689 |
"file so it knows about the changed name. For example for the javascript file."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: adrotate.php:502
|
693 |
msgid ""
|
694 |
"For responsive adverts make sure the filename is in the following format; "
|
695 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
699 |
msgid ""
|
700 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
701 |
"filename instead of \".full\" for the various viewports."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
705 |
#: dashboard/publisher/groups-edit.php:320
|
706 |
msgid "Example:"
|
707 |
msgstr "Παράδειγμα:"
|
708 |
|
709 |
+
#: adrotate.php:504
|
710 |
msgid ""
|
711 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
712 |
"for different viewports."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: adrotate.php:508
|
716 |
msgid "Upload file"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: adrotate.php:508
|
720 |
msgid "Click only once per file!"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: adrotate.php:511
|
724 |
msgid "Available files in"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
728 |
#: dashboard/publisher/groups-main.php:33
|
729 |
msgid "Name"
|
730 |
msgstr "Όνομα"
|
731 |
|
732 |
+
#: adrotate.php:517
|
733 |
#, fuzzy
|
734 |
msgid "Actions"
|
735 |
msgstr "Μαζικές Ενέργειες"
|
736 |
|
737 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
738 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
739 |
#: dashboard/publisher/adverts-disabled.php:22
|
740 |
#: dashboard/publisher/adverts-error.php:21
|
741 |
#: dashboard/publisher/adverts-main.php:22
|
742 |
msgid "Delete"
|
743 |
msgstr "Διαγραφή"
|
744 |
|
745 |
+
#: adrotate.php:532
|
746 |
msgid ""
|
747 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: adrotate.php:532
|
751 |
#, fuzzy
|
752 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
753 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
754 |
|
755 |
+
#: adrotate.php:561
|
756 |
msgid "AdRotate Settings"
|
757 |
msgstr "Ρυθμίσεις AdRotate"
|
758 |
|
759 |
+
#: adrotate.php:632
|
760 |
msgid "Update Options"
|
761 |
msgstr "Επιλογές Ανανέωσης"
|
762 |
|
774 |
msgstr ""
|
775 |
|
776 |
#: dashboard/adrotatepro.php:27
|
777 |
+
msgid "Mobile campaigns"
|
778 |
msgstr ""
|
779 |
|
780 |
#: dashboard/adrotatepro.php:30
|
781 |
msgid ""
|
782 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
783 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
784 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
785 |
+
"and with a few easy to use options they show up where you want them to!"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: dashboard/adrotatepro.php:34
|
789 |
+
msgid "Localize your ad campaigns with Geo Targeting"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: dashboard/adrotatepro.php:37
|
793 |
+
msgid ""
|
794 |
"Go nationwide or global with localized adverts for your various audiences. "
|
795 |
"Set up adverts for countries and cities and sell impressions per general "
|
796 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
797 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: dashboard/adrotatepro.php:41
|
801 |
msgid "Get Premium Support almost all year round"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: dashboard/adrotatepro.php:44
|
805 |
msgid ""
|
806 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
807 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
809 |
"forum. Get a solution (usually) within a day."
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
813 |
msgid "AdRotate is brought to you by"
|
814 |
msgstr "Το AdRotate έρχεται από την "
|
815 |
|
816 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
817 |
msgid ""
|
818 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
819 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: dashboard/adrotatepro.php:65
|
823 |
msgid "Schedule all campaigns with ease"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: dashboard/adrotatepro.php:68
|
827 |
msgid ""
|
828 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
829 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
831 |
"much more easy. You can set one or many schedules for adverts."
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: dashboard/adrotatepro.php:72
|
835 |
+
msgid "Avoid adblockers"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: dashboard/adrotatepro.php:75
|
839 |
+
msgid ""
|
840 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
841 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
842 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
843 |
+
"adverts smartly so these features reach their full potential!"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: dashboard/adrotatepro.php:79
|
847 |
msgid "Stay up-to-date with notifications"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: dashboard/adrotatepro.php:82
|
851 |
msgid ""
|
852 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
853 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
856 |
"miss an expiration date again."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
860 |
#: dashboard/info.php:93 dashboard/info.php:105
|
861 |
#, fuzzy
|
862 |
msgid "Buy AdRotate Professional"
|
863 |
msgstr "AdRotate Pro"
|
864 |
|
865 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
866 |
msgid "Single License"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
870 |
msgid "For one WordPress installation."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
874 |
#: dashboard/info.php:98 dashboard/info.php:110
|
875 |
msgid "Duo License"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
879 |
msgid "For two WordPress installations."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
883 |
#: dashboard/info.php:99 dashboard/info.php:111
|
884 |
msgid "Multi License"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
888 |
msgid " For up to five WordPress installations."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
892 |
#: dashboard/info.php:100 dashboard/info.php:112
|
893 |
#, fuzzy
|
894 |
msgid "Developer License"
|
895 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
896 |
|
897 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
898 |
msgid "Unlimited WordPress installations and/or networks."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
902 |
#: dashboard/info.php:101 dashboard/info.php:114
|
903 |
msgid "Compare licenses"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
907 |
msgid "Not sure which license is for you? Compare them..."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
911 |
msgid "All Licenses"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
915 |
msgid "Lifetime License"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
919 |
msgid "Single installation."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
923 |
msgid "Up to 2 installations."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
927 |
msgid "Up to 10 installations."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
931 |
msgid "Up to 25 installations or multisite networks."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
935 |
msgid ""
|
936 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
940 |
msgid "Not sure which license is for you?"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
944 |
msgid "Compare Licenses"
|
945 |
msgstr ""
|
946 |
|
1284 |
|
1285 |
#: dashboard/publisher/adverts-edit.php:192
|
1286 |
#: dashboard/publisher/adverts-edit.php:292
|
1287 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1288 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1289 |
msgid "Save Advert"
|
1290 |
msgstr "Αποθήκευση Διαφήμισης"
|
1291 |
|
1292 |
#: dashboard/publisher/adverts-edit.php:193
|
1293 |
#: dashboard/publisher/adverts-edit.php:293
|
1294 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1295 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1296 |
#: dashboard/publisher/groups-edit.php:154
|
1297 |
#: dashboard/publisher/groups-edit.php:301
|
1298 |
#: dashboard/publisher/groups-edit.php:393
|
1300 |
msgstr "Ακύρωση"
|
1301 |
|
1302 |
#: dashboard/publisher/adverts-edit.php:196
|
1303 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1304 |
#: dashboard/publisher/groups-edit.php:136
|
1305 |
#: dashboard/publisher/groups-edit.php:283
|
1306 |
msgid "Usage"
|
1307 |
msgstr "Χρήση"
|
1308 |
|
1309 |
#: dashboard/publisher/adverts-edit.php:200
|
1310 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1311 |
#: dashboard/publisher/groups-edit.php:140
|
1312 |
#: dashboard/publisher/groups-edit.php:287
|
1313 |
msgid "Widget"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: dashboard/publisher/adverts-edit.php:201
|
1317 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1318 |
msgid ""
|
1319 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1320 |
"and enter ID"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
#: dashboard/publisher/adverts-edit.php:204
|
1324 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1325 |
#: dashboard/publisher/groups-edit.php:144
|
1326 |
#: dashboard/publisher/groups-edit.php:291
|
1327 |
msgid "In a post or page"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: dashboard/publisher/adverts-edit.php:206
|
1331 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1332 |
#: dashboard/publisher/groups-edit.php:146
|
1333 |
#: dashboard/publisher/groups-edit.php:293
|
1334 |
msgid "Directly in a theme"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: dashboard/publisher/adverts-edit.php:289
|
1388 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1389 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1390 |
#: dashboard/publisher/groups-edit.php:200
|
1391 |
#, fuzzy
|
1392 |
msgid "Upgrade today"
|
1402 |
msgstr "Τα πάντα από κάτω είναι προαιρετικά."
|
1403 |
|
1404 |
#: dashboard/publisher/adverts-edit.php:301
|
1405 |
+
msgid "Mobile"
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1409 |
+
msgid "Show on;"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1413 |
+
msgid "Computers"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1417 |
+
msgid "Smartphones"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: dashboard/publisher/adverts-edit.php:303
|
1421 |
+
msgid "Tablets."
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1425 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1429 |
+
msgid "Responsive"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1433 |
#, fuzzy
|
1434 |
msgid "Enable responsive support for this advert."
|
1435 |
msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
|
1436 |
|
1437 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1438 |
msgid ""
|
1439 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1440 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1444 |
+
#: dashboard/publisher/adverts-report.php:58
|
1445 |
+
#: dashboard/publisher/groups-report.php:64
|
1446 |
+
msgid "Note:"
|
1447 |
+
msgstr "Σημείωση:"
|
1448 |
+
|
1449 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1450 |
+
msgid ""
|
1451 |
+
"This feature will not be developed any further. Consider switching to the "
|
1452 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1456 |
#: dashboard/publisher/groups-edit.php:194
|
1457 |
msgid "Sortorder"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1461 |
#: dashboard/publisher/groups-edit.php:196
|
1462 |
msgid "For administrative purposes set a sortorder."
|
1463 |
msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
|
1464 |
|
1465 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1466 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1467 |
msgstr ""
|
1468 |
"Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
|
1469 |
"διαφήμισης."
|
1470 |
|
1471 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1472 |
msgid ""
|
1473 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1474 |
+
"on!"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1478 |
msgid "Geo Targeting in AdRotate Pro"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1482 |
msgid ""
|
1483 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1487 |
msgid "Cities/States"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1491 |
msgid ""
|
1492 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1493 |
"states ISO codes are supported)"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1497 |
msgid ""
|
1498 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1499 |
"correctly!"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1503 |
msgid "Countries"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1507 |
#, fuzzy
|
1508 |
msgid "Select the countries you want the adverts to show in."
|
1509 |
msgstr ""
|
1510 |
"Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
|
1511 |
"εμφανίζονται"
|
1512 |
|
1513 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1514 |
msgid "Cities take priority and will be filtered first."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1518 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1522 |
msgid "Select Groups"
|
1523 |
msgstr "Επιλέξτε Ομάδες"
|
1524 |
|
1525 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1526 |
msgid "ID - Name"
|
1527 |
msgstr "ID - Όνομα"
|
1528 |
|
1529 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1530 |
#: dashboard/publisher/groups-main.php:60
|
1531 |
#: dashboard/settings/geotargeting.php:39
|
1532 |
msgid "Default"
|
1533 |
msgstr "Προεπιλογή"
|
1534 |
|
1535 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1536 |
#: dashboard/publisher/groups-main.php:61
|
1537 |
msgid "Dynamic"
|
1538 |
msgstr "Δυναμική"
|
1539 |
|
1540 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1541 |
#: dashboard/publisher/groups-main.php:61
|
1542 |
#, fuzzy
|
1543 |
msgid "second rotation"
|
1544 |
msgstr "Γεωγραφική Τοποθεσία"
|
1545 |
|
1546 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1547 |
#: dashboard/publisher/groups-main.php:62
|
1548 |
msgid "Block"
|
1549 |
msgstr "Απαγόρευση"
|
1550 |
|
1551 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1552 |
#: dashboard/publisher/groups-main.php:62
|
1553 |
#, fuzzy
|
1554 |
msgid "grid"
|
1556 |
"Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
|
1557 |
"πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
|
1558 |
|
1559 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1560 |
#: dashboard/publisher/groups-edit.php:202
|
1561 |
#: dashboard/publisher/groups-main.php:63
|
1562 |
msgid "Post Injection"
|
1563 |
msgstr "Εμβολιασμός Δημοσίευσης"
|
1564 |
|
1565 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1566 |
msgid "Geolocation"
|
1567 |
msgstr "Γεωγραφική τοποθεσία"
|
1568 |
|
1569 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1570 |
#: dashboard/publisher/groups-edit.php:61
|
1571 |
#: dashboard/publisher/groups-main.php:70
|
1572 |
msgid "Mode"
|
1660 |
msgid "Monthly overview of clicks and impressions"
|
1661 |
msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
|
1662 |
|
|
|
|
|
|
|
|
|
|
|
1663 |
#: dashboard/publisher/adverts-report.php:58
|
1664 |
#: dashboard/publisher/groups-report.php:64
|
1665 |
msgid ""
|
2024 |
msgid "This action can not be undone!"
|
2025 |
msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
|
2026 |
|
2027 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
2028 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2029 |
msgid "OK to continue, CANCEL to stop."
|
2030 |
msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
|
2031 |
|
2105 |
msgstr ""
|
2106 |
|
2107 |
#: dashboard/settings/general.php:20
|
2108 |
+
msgid "Dynamic mode for Mobile"
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: dashboard/settings/general.php:21
|
2112 |
+
msgid ""
|
2113 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2114 |
+
"jumping content."
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: dashboard/settings/general.php:24
|
2118 |
#, fuzzy
|
2119 |
msgid "Load jQuery"
|
2120 |
msgstr "Να περιληφθεί η jQuery"
|
2121 |
|
2122 |
+
#: dashboard/settings/general.php:25
|
2123 |
msgid ""
|
2124 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2125 |
"groups, statistics and some other features."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: dashboard/settings/general.php:28
|
2129 |
msgid "Load scripts in footer?"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: dashboard/settings/general.php:29
|
2133 |
msgid ""
|
2134 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2135 |
"site."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: dashboard/settings/general.php:32
|
2139 |
msgid "Adblock disguise"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: dashboard/settings/general.php:34
|
2143 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: dashboard/settings/general.php:35
|
2147 |
msgid ""
|
2148 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: dashboard/settings/general.php:35
|
2152 |
msgid ""
|
2153 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2154 |
"instead of the AdRotate widget."
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: dashboard/settings/general.php:35
|
2158 |
msgid ""
|
2159 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2160 |
"feature will have little effect!"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: dashboard/settings/general.php:40
|
2164 |
msgid "Banner Folder"
|
2165 |
msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ)"
|
2166 |
|
2167 |
+
#: dashboard/settings/general.php:41
|
2168 |
#, fuzzy
|
2169 |
msgid "Set a location where your banner images will be stored."
|
2170 |
msgstr ""
|
2171 |
"Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
|
2172 |
"(Προεπιλογή: /wp-content/banners/)."
|
2173 |
|
2174 |
+
#: dashboard/settings/general.php:44
|
2175 |
#, fuzzy
|
2176 |
msgid "Location"
|
2177 |
msgstr "Γεωγραφική Τοποθεσία"
|
2178 |
|
2179 |
+
#: dashboard/settings/general.php:46
|
2180 |
#, fuzzy
|
2181 |
msgid "(Default: wp-content/banners/)."
|
2182 |
msgstr ""
|
2183 |
"Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
|
2184 |
"(Προεπιλογή: /wp-content/banners/)."
|
2185 |
|
2186 |
+
#: dashboard/settings/general.php:47
|
2187 |
msgid ""
|
2188 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2189 |
"like:"
|
2191 |
"Για να ξεγελάσετε το μπλοκάρισμα των διαφημίσεων, ορίστε σαν όνομα φακέλου "
|
2192 |
"κάτι περίεργο όπως:"
|
2193 |
|
2194 |
+
#: dashboard/settings/general.php:48
|
2195 |
msgid ""
|
2196 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2197 |
"will show errors when the folder is missing."
|
2199 |
"Αυτός ο φάκελος δεν θα δημιουργηθεί αυτόματα αν δεν υπάρχει. Το AdRotate θα "
|
2200 |
"εμφανίσει λάθη όταν λείπει ο φάκελος."
|
2201 |
|
2202 |
+
#: dashboard/settings/general.php:53
|
2203 |
#, fuzzy
|
2204 |
msgid "Bot filter"
|
2205 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
2206 |
|
2207 |
+
#: dashboard/settings/general.php:54
|
2208 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: dashboard/settings/general.php:57
|
2212 |
msgid "User-Agent Filter"
|
2213 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
2214 |
|
2215 |
+
#: dashboard/settings/general.php:60
|
2216 |
msgid ""
|
2217 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: dashboard/settings/general.php:61
|
2221 |
msgid ""
|
2222 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2223 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: dashboard/settings/general.php:62
|
2227 |
msgid ""
|
2228 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2229 |
"characters are stripped out."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: dashboard/settings/general.php:63
|
2233 |
msgid ""
|
2234 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2235 |
"well."
|
2237 |
"Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
|
2238 |
"απορίπτονται επίσης."
|
2239 |
|
2240 |
+
#: dashboard/settings/general.php:63
|
2241 |
msgid "Learn more about"
|
2242 |
msgstr "Μάθετε περισσότερα σχετικά"
|
2243 |
|
2244 |
+
#: dashboard/settings/general.php:63
|
2245 |
msgid "user-agents"
|
2246 |
msgstr "πρόγραμμα περιήγησης"
|
2247 |
|
language/adrotate-en_US.mo
CHANGED
Binary file
|
language/adrotate-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: en_US\n"
|
@@ -12,883 +12,747 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
-
"X-Generator: Poedit 1.8.
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
-
#, fuzzy
|
21 |
msgid "No files found"
|
22 |
-
msgstr "
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
-
#, fuzzy
|
26 |
msgid "Folder not found or not accessible"
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: adrotate-functions.php:
|
30 |
msgid "Ad saved"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: adrotate-functions.php:
|
34 |
msgid "Group saved"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: adrotate-functions.php:
|
38 |
-
#, fuzzy
|
39 |
msgid "Ad(s) deleted"
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#: adrotate-functions.php:
|
43 |
-
#, fuzzy
|
44 |
msgid "Group deleted"
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#: adrotate-functions.php:
|
48 |
-
#, fuzzy
|
49 |
msgid "Ad(s) statistics reset"
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
-
#, fuzzy
|
54 |
msgid "Ad(s) renewed"
|
55 |
-
msgstr "
|
56 |
|
57 |
-
#: adrotate-functions.php:
|
58 |
-
#, fuzzy
|
59 |
msgid "Ad(s) deactivated"
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#: adrotate-functions.php:
|
63 |
-
#, fuzzy
|
64 |
msgid "Ad(s) activated"
|
65 |
-
msgstr "
|
66 |
|
67 |
-
#: adrotate-functions.php:
|
68 |
-
#, fuzzy
|
69 |
msgid "Group including it's Ads deleted"
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
-
#, fuzzy
|
74 |
msgid "Export created"
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: adrotate-functions.php:
|
78 |
-
#, fuzzy
|
79 |
msgid "Settings saved"
|
80 |
-
msgstr "
|
81 |
|
82 |
-
#: adrotate-functions.php:
|
83 |
-
#, fuzzy
|
84 |
msgid "Database optimized"
|
85 |
-
msgstr "
|
86 |
|
87 |
-
#: adrotate-functions.php:
|
88 |
-
#, fuzzy
|
89 |
msgid "Database repaired"
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
-
#, fuzzy
|
94 |
msgid "Ads evaluated and statuses have been corrected where required"
|
95 |
msgstr ""
|
96 |
-
"Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
|
97 |
|
98 |
-
#: adrotate-functions.php:
|
99 |
-
#, fuzzy
|
100 |
msgid "Empty database records removed"
|
101 |
-
msgstr "
|
102 |
|
103 |
-
#: adrotate-functions.php:
|
104 |
-
#, fuzzy
|
105 |
msgid "Action prohibited"
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: adrotate-functions.php:
|
109 |
msgid ""
|
110 |
"The ad was saved but has an issue which might prevent it from working "
|
111 |
"properly. Review the colored ad."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: adrotate-functions.php:
|
115 |
-
#, fuzzy
|
116 |
msgid "No data found in selected time period"
|
117 |
-
msgstr "
|
118 |
|
119 |
-
#: adrotate-functions.php:
|
120 |
-
#, fuzzy
|
121 |
msgid "Database can only be optimized or cleaned once every hour"
|
122 |
msgstr ""
|
123 |
-
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Form can not be (partially) empty!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: adrotate-functions.php:
|
130 |
msgid "No ads found."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: adrotate-functions.php:
|
134 |
msgid "Unexpected error"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: adrotate-manage-publisher.php:
|
138 |
msgid "AdRotate Advertiser"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: adrotate-output.php:
|
142 |
-
#, fuzzy
|
143 |
msgid "Oh no! Something went wrong!"
|
144 |
-
msgstr "
|
145 |
|
146 |
-
#: adrotate-output.php:
|
147 |
-
#, fuzzy
|
148 |
msgid ""
|
149 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
150 |
"Verify if the url used is valid or log in via your browser."
|
151 |
msgstr ""
|
152 |
-
"Wordpress n'a pas pu verifier l'authentiticité du lien que vous avez cliqué. "
|
153 |
-
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
154 |
-
"votre navigateur."
|
155 |
|
156 |
-
#: adrotate-output.php:
|
157 |
-
#, fuzzy
|
158 |
msgid ""
|
159 |
"If you have received the url you want to visit via email, you are being "
|
160 |
"tricked!"
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: adrotate-output.php:
|
164 |
-
#, fuzzy
|
165 |
msgid "Contact support if the issue persists:"
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: adrotate-output.php:
|
169 |
-
#, fuzzy
|
170 |
msgid ""
|
171 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
172 |
"restrictions or does not exist!"
|
173 |
msgstr ""
|
174 |
-
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
175 |
-
"horaires/géographiques ou n'existe pas!"
|
176 |
|
177 |
-
#: adrotate-output.php:
|
178 |
-
#, fuzzy
|
179 |
msgid ""
|
180 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
181 |
"restrictions!"
|
182 |
msgstr ""
|
183 |
-
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
184 |
-
"horaires/géographiques ou n'existe pas!"
|
185 |
|
186 |
-
#: adrotate-output.php:
|
187 |
-
#, fuzzy
|
188 |
msgid ""
|
189 |
"Either there are no banners, they are disabled or none qualified for this "
|
190 |
"location!"
|
191 |
msgstr ""
|
192 |
-
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
193 |
-
"cet endroit!"
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
-
#, fuzzy
|
197 |
msgid "Error, no Ad ID set! Check your syntax!"
|
198 |
-
msgstr "
|
199 |
|
200 |
-
#: adrotate-output.php:
|
201 |
-
#, fuzzy
|
202 |
msgid "Error, no group ID set! Check your syntax!"
|
203 |
-
msgstr "
|
204 |
|
205 |
-
#: adrotate-output.php:
|
206 |
-
#, fuzzy
|
207 |
msgid "Error, group does not exist! Check your syntax!"
|
208 |
-
msgstr "
|
209 |
|
210 |
-
#: adrotate-output.php:
|
211 |
-
#, fuzzy
|
212 |
msgid ""
|
213 |
"There was an error locating the database tables for AdRotate. Please "
|
214 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
215 |
msgstr ""
|
216 |
-
"AdRotate ne peut pas trouver la table de la base de données dont elle a "
|
217 |
-
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
218 |
-
"extensions. "
|
219 |
|
220 |
-
#: adrotate-output.php:
|
221 |
-
#, fuzzy
|
222 |
msgid "If this does not solve the issue please seek support at"
|
223 |
msgstr ""
|
224 |
-
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
225 |
-
"support à"
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
-
#, fuzzy
|
229 |
msgid "An unknown error occured."
|
230 |
-
msgstr "
|
231 |
|
232 |
-
#: adrotate-output.php:
|
233 |
-
#, fuzzy
|
234 |
msgid "active ad(s) expired."
|
235 |
-
msgstr "
|
236 |
|
237 |
-
#: adrotate-output.php:
|
238 |
-
#, fuzzy
|
239 |
msgid "Take action now"
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#: adrotate-output.php:
|
243 |
-
#, fuzzy
|
244 |
msgid "active ad(s) are about to expire."
|
245 |
-
msgstr "
|
246 |
|
247 |
-
#: adrotate-output.php:
|
248 |
-
#, fuzzy
|
249 |
msgid "Check it out"
|
250 |
-
msgstr "
|
251 |
|
252 |
-
#: adrotate-output.php:
|
253 |
-
#, fuzzy
|
254 |
msgid "active ad(s) with configuration errors."
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
-
#, fuzzy
|
259 |
msgid "Solve this"
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
-
#, fuzzy
|
264 |
msgid "ad(s) expired."
|
265 |
-
msgstr "
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
-
#, fuzzy
|
269 |
msgid "ad(s) are about to expire."
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#: adrotate-output.php:
|
273 |
-
#, fuzzy
|
274 |
msgid "ad(s) with configuration errors."
|
275 |
-
msgstr "
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
-
#, fuzzy
|
279 |
msgid "Fix this as soon as possible"
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: adrotate-output.php:
|
283 |
-
#: dashboard/adrotatepro.php:
|
284 |
-
#: dashboard/adrotatepro.php:
|
285 |
-
#: dashboard/adrotatepro.php:
|
286 |
-
#: dashboard/adrotatepro.php:
|
287 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
288 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
289 |
#: dashboard/settings/geotargeting.php:26
|
290 |
-
#, fuzzy
|
291 |
msgid "Buy now"
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
msgid ""
|
296 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
297 |
"to the <strong>PRO</strong> version"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
#, php-format
|
302 |
msgid ""
|
303 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
msgid "Thank you for your purchase!"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
msgid ""
|
312 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
313 |
"this menu. Check out the"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: adrotate-output.php:
|
317 |
msgid "manuals"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: adrotate-output.php:
|
321 |
msgid "and"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: adrotate-output.php:
|
325 |
msgid "forums"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: adrotate-output.php:
|
329 |
msgid "Useful Links"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: adrotate-output.php:
|
333 |
msgid "Useful links to learn more about AdRotate"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: adrotate-output.php:
|
337 |
-
#, fuzzy
|
338 |
msgid "AdRotate Page"
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
-
#, fuzzy
|
343 |
msgid "Getting Started With AdRotate"
|
344 |
-
msgstr "
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
-
#, fuzzy
|
348 |
msgid "AdRotate manuals"
|
349 |
-
msgstr "
|
350 |
|
351 |
-
#: adrotate-output.php:
|
352 |
-
#, fuzzy
|
353 |
msgid "AdRotate Support Forum"
|
354 |
-
msgstr "
|
355 |
|
356 |
-
#: adrotate-output.php:
|
357 |
-
#, fuzzy
|
358 |
msgid "Help AdRotate Grow"
|
359 |
-
msgstr "
|
360 |
|
361 |
-
#: adrotate-output.php:
|
362 |
-
#, fuzzy
|
363 |
msgid "Brought to you by"
|
364 |
-
msgstr "
|
365 |
|
366 |
-
#: adrotate-output.php:
|
367 |
msgid ""
|
368 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
369 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
msgid "If you find AdRotate useful please leave your honest"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: adrotate-output.php:
|
377 |
msgid "rating"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: adrotate-output.php:
|
381 |
-
#, fuzzy
|
382 |
msgid "review"
|
383 |
-
msgstr "
|
384 |
|
385 |
-
#: adrotate-output.php:
|
386 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: adrotate-output.php:
|
390 |
-
#, fuzzy
|
391 |
msgid "Available in AdRotate Pro"
|
392 |
-
msgstr "
|
393 |
|
394 |
-
#: adrotate-output.php:
|
395 |
-
#, fuzzy
|
396 |
msgid "More information..."
|
397 |
-
msgstr "
|
398 |
|
399 |
-
#: adrotate-output.php:
|
400 |
-
#, fuzzy
|
401 |
msgid "This feature is available in AdRotate Pro"
|
402 |
-
msgstr "
|
403 |
|
404 |
-
#: adrotate-output.php:
|
405 |
-
#, fuzzy
|
406 |
msgid "Learn more"
|
407 |
-
msgstr "
|
408 |
|
409 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
|
410 |
#: dashboard/publisher/adverts-edit.php:242
|
411 |
-
#, fuzzy
|
412 |
msgid "January"
|
413 |
-
msgstr "
|
414 |
|
415 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
|
416 |
#: dashboard/publisher/adverts-edit.php:243
|
417 |
-
#, fuzzy
|
418 |
msgid "February"
|
419 |
-
msgstr "
|
420 |
|
421 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
|
422 |
#: dashboard/publisher/adverts-edit.php:244
|
423 |
-
#, fuzzy
|
424 |
msgid "March"
|
425 |
-
msgstr "
|
426 |
|
427 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
|
428 |
#: dashboard/publisher/adverts-edit.php:245
|
429 |
-
#, fuzzy
|
430 |
msgid "April"
|
431 |
-
msgstr "
|
432 |
|
433 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
|
434 |
#: dashboard/publisher/adverts-edit.php:246
|
435 |
-
#, fuzzy
|
436 |
msgid "May"
|
437 |
-
msgstr "
|
438 |
|
439 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
|
440 |
#: dashboard/publisher/adverts-edit.php:247
|
441 |
-
#, fuzzy
|
442 |
msgid "June"
|
443 |
-
msgstr "
|
444 |
|
445 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
|
446 |
#: dashboard/publisher/adverts-edit.php:248
|
447 |
-
#, fuzzy
|
448 |
msgid "July"
|
449 |
-
msgstr "
|
450 |
|
451 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
|
452 |
#: dashboard/publisher/adverts-edit.php:249
|
453 |
-
#, fuzzy
|
454 |
msgid "August"
|
455 |
-
msgstr "
|
456 |
|
457 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
|
458 |
#: dashboard/publisher/adverts-edit.php:250
|
459 |
-
#, fuzzy
|
460 |
msgid "September"
|
461 |
-
msgstr "
|
462 |
|
463 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
|
464 |
#: dashboard/publisher/adverts-edit.php:251
|
465 |
-
#, fuzzy
|
466 |
msgid "October"
|
467 |
-
msgstr "
|
468 |
|
469 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
|
470 |
#: dashboard/publisher/adverts-edit.php:252
|
471 |
-
#, fuzzy
|
472 |
msgid "November"
|
473 |
-
msgstr "
|
474 |
|
475 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
|
476 |
#: dashboard/publisher/adverts-edit.php:253
|
477 |
-
#, fuzzy
|
478 |
msgid "December"
|
479 |
-
msgstr "
|
480 |
|
481 |
#: adrotate-statistics.php:222
|
482 |
-
#, fuzzy
|
483 |
msgid "Previous"
|
484 |
-
msgstr "
|
485 |
|
486 |
#: adrotate-statistics.php:224
|
487 |
-
#, fuzzy
|
488 |
msgid "This month"
|
489 |
-
msgstr "
|
490 |
|
491 |
#: adrotate-statistics.php:225
|
492 |
-
#, fuzzy
|
493 |
msgid "Next"
|
494 |
-
msgstr "
|
495 |
|
496 |
#: adrotate-statistics.php:278
|
497 |
-
#, fuzzy
|
498 |
msgid "No data to show!"
|
499 |
-
msgstr "
|
500 |
|
501 |
#: adrotate-widget.php:112
|
502 |
-
#, fuzzy
|
503 |
msgid "Title (optional):"
|
504 |
-
msgstr "
|
505 |
|
506 |
#: adrotate-widget.php:115
|
507 |
-
#, fuzzy
|
508 |
msgid "HTML will be stripped out."
|
509 |
-
msgstr "
|
510 |
|
511 |
#: adrotate-widget.php:118
|
512 |
-
#, fuzzy
|
513 |
msgid "Description (optional):"
|
514 |
-
msgstr "
|
515 |
|
516 |
#: adrotate-widget.php:121
|
517 |
-
#, fuzzy
|
518 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
519 |
msgstr ""
|
520 |
-
"Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
|
521 |
-
"dépouillé.)"
|
522 |
|
523 |
#: adrotate-widget.php:124
|
524 |
-
#, fuzzy
|
525 |
msgid "Type:"
|
526 |
-
msgstr "
|
527 |
|
528 |
#: adrotate-widget.php:126
|
529 |
-
#, fuzzy
|
530 |
msgid "Single Ad - Use Ad ID"
|
531 |
-
msgstr "
|
532 |
|
533 |
#: adrotate-widget.php:127
|
534 |
-
#, fuzzy
|
535 |
msgid "Group of Ads - Use group ID"
|
536 |
-
msgstr "
|
537 |
|
538 |
#: adrotate-widget.php:130
|
539 |
-
#, fuzzy
|
540 |
msgid "Choose what you want to use this widget for"
|
541 |
-
msgstr "
|
542 |
|
543 |
#: adrotate-widget.php:133
|
544 |
-
#, fuzzy
|
545 |
msgid "ID:"
|
546 |
-
msgstr "
|
547 |
|
548 |
#: adrotate-widget.php:136
|
549 |
-
#, fuzzy
|
550 |
msgid "Fill in the ID of the type you want to display!"
|
551 |
-
msgstr "
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
-
#, fuzzy
|
555 |
msgid "General Info"
|
556 |
-
msgstr "
|
557 |
|
558 |
-
#: adrotate.php:
|
559 |
-
#, fuzzy
|
560 |
msgid "AdRotate Pro"
|
561 |
-
msgstr "
|
562 |
|
563 |
-
#: adrotate.php:
|
564 |
-
#, fuzzy
|
565 |
msgid "Manage Ads"
|
566 |
-
msgstr "
|
567 |
|
568 |
-
#: adrotate.php:
|
569 |
-
#, fuzzy
|
570 |
msgid "Manage Groups"
|
571 |
-
msgstr "
|
572 |
|
573 |
-
#: adrotate.php:
|
574 |
-
#, fuzzy
|
575 |
msgid "Manage Schedules"
|
576 |
-
msgstr "
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
-
#, fuzzy
|
580 |
msgid "Manage Media"
|
581 |
-
msgstr "
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
-
#, fuzzy
|
585 |
msgid "Settings"
|
586 |
-
msgstr "
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
-
#, fuzzy
|
590 |
msgid "AdRotate Info"
|
591 |
-
msgstr "
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
-
#, fuzzy
|
595 |
msgid "AdRotate Professional"
|
596 |
-
msgstr "
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
-
#, fuzzy
|
600 |
msgid "Ad Management"
|
601 |
-
msgstr "
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
-
#, fuzzy
|
605 |
msgid "Manage"
|
606 |
-
msgstr "
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
-
#, fuzzy
|
610 |
msgid "Add New"
|
611 |
-
msgstr "
|
612 |
|
613 |
-
#: adrotate.php:
|
614 |
-
#, fuzzy
|
615 |
msgid "Group Management"
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#: adrotate.php:
|
619 |
#: dashboard/publisher/groups-main.php:70
|
620 |
-
#, fuzzy
|
621 |
msgid "Report"
|
622 |
-
msgstr "
|
623 |
|
624 |
-
#: adrotate.php:
|
625 |
-
#, fuzzy
|
626 |
msgid "Schedule Management available in AdRotate Pro"
|
627 |
-
msgstr "
|
628 |
|
629 |
-
#: adrotate.php:
|
630 |
msgid ""
|
631 |
"Schedule management and multiple schedules per advert is available in "
|
632 |
"AdRotate Pro."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
#: dashboard/publisher/adverts-main.php:114
|
637 |
#: dashboard/publisher/groups-edit.php:75
|
638 |
#: dashboard/publisher/groups-main.php:89
|
639 |
-
#, fuzzy
|
640 |
msgid "More information"
|
641 |
-
msgstr "
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
#: dashboard/publisher/adverts-error.php:19
|
645 |
#: dashboard/publisher/adverts-main.php:20
|
646 |
#: dashboard/publisher/groups-main.php:20
|
647 |
-
#, fuzzy
|
648 |
msgid "Bulk Actions"
|
649 |
-
msgstr "
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
#: dashboard/publisher/adverts-error.php:29
|
653 |
#: dashboard/publisher/adverts-main.php:30
|
654 |
#: dashboard/publisher/groups-main.php:24
|
655 |
-
#, fuzzy
|
656 |
msgid "Go"
|
657 |
-
msgstr "
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
#: dashboard/publisher/adverts-error.php:39
|
661 |
#: dashboard/publisher/adverts-main.php:39
|
662 |
#: dashboard/publisher/groups-edit.php:51
|
663 |
#: dashboard/publisher/groups-main.php:32
|
664 |
-
#, fuzzy
|
665 |
msgid "ID"
|
666 |
-
msgstr "
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
-
#, fuzzy
|
670 |
msgid "Start"
|
671 |
-
msgstr "
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
-
#, fuzzy
|
675 |
msgid "End"
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#: adrotate.php:
|
679 |
#: dashboard/publisher/groups-main.php:34
|
680 |
-
#, fuzzy
|
681 |
msgid "Ads"
|
682 |
-
msgstr "
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
-
#, fuzzy
|
686 |
msgid "Max Impressions"
|
687 |
-
msgstr "
|
688 |
|
689 |
-
#: adrotate.php:
|
690 |
-
#, fuzzy
|
691 |
msgid "Max Clicks"
|
692 |
-
msgstr "
|
693 |
|
694 |
-
#: adrotate.php:
|
695 |
-
#, fuzzy
|
696 |
msgid "No schedules created yet!"
|
697 |
-
msgstr "
|
698 |
|
699 |
-
#: adrotate.php:
|
700 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
-
#, fuzzy
|
705 |
msgid "Upgrade today!"
|
706 |
-
msgstr "
|
707 |
|
708 |
-
#: adrotate.php:
|
709 |
#: dashboard/publisher/groups-edit.php:387
|
710 |
-
#, fuzzy
|
711 |
msgid "Expires soon."
|
712 |
-
msgstr "
|
713 |
|
714 |
-
#: adrotate.php:
|
715 |
#: dashboard/publisher/groups-edit.php:388
|
716 |
-
#, fuzzy
|
717 |
msgid "Has expired."
|
718 |
-
msgstr "
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
-
#, fuzzy
|
722 |
msgid "Media Management available in AdRotate Pro"
|
723 |
-
msgstr "
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: adrotate.php:
|
730 |
msgid ""
|
731 |
"This is useful if you use responsive adverts with multiple images or have "
|
732 |
"HTML5 adverts containing multiple files."
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: adrotate.php:
|
736 |
msgid "Media uploading and management is available in AdRotate Pro."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: adrotate.php:
|
740 |
msgid "Upload new file"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: adrotate.php:
|
744 |
msgid "Accepted files:"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: adrotate.php:
|
748 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: adrotate.php:
|
752 |
msgid "Maximum size is 512Kb."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: adrotate.php:
|
756 |
msgid "Important:"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: adrotate.php:
|
760 |
msgid ""
|
761 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
762 |
"spaces with a - or _."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: adrotate.php:
|
766 |
msgid ""
|
767 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
768 |
"file so it knows about the changed name. For example for the javascript file."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: adrotate.php:
|
772 |
msgid ""
|
773 |
"For responsive adverts make sure the filename is in the following format; "
|
774 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: adrotate.php:
|
778 |
-
#, fuzzy
|
779 |
msgid ""
|
780 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
781 |
"filename instead of \".full\" for the various viewports."
|
782 |
msgstr ""
|
783 |
-
"Pour des images plus petites, utilisez \".320\", \".480\", \".768\" ou "
|
784 |
-
"\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
|
785 |
-
"tailles d'écran."
|
786 |
|
787 |
-
#: adrotate.php:
|
788 |
-
#: dashboard/publisher/groups-edit.php:312
|
789 |
#: dashboard/publisher/groups-edit.php:320
|
790 |
-
#, fuzzy
|
791 |
msgid "Example:"
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#: adrotate.php:
|
795 |
-
#, fuzzy
|
796 |
msgid ""
|
797 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
798 |
"for different viewports."
|
799 |
msgstr ""
|
800 |
-
"image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
|
801 |
-
"pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
|
802 |
|
803 |
-
#: adrotate.php:
|
804 |
msgid "Upload file"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: adrotate.php:
|
808 |
msgid "Click only once per file!"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: adrotate.php:
|
812 |
msgid "Available files in"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: adrotate.php:
|
816 |
#: dashboard/publisher/groups-main.php:33
|
817 |
-
#, fuzzy
|
818 |
msgid "Name"
|
819 |
-
msgstr "
|
820 |
|
821 |
-
#: adrotate.php:
|
822 |
-
#, fuzzy
|
823 |
msgid "Actions"
|
824 |
-
msgstr "
|
825 |
|
826 |
-
#: adrotate.php:
|
827 |
-
#: adrotate.php:
|
828 |
#: dashboard/publisher/adverts-disabled.php:22
|
829 |
#: dashboard/publisher/adverts-error.php:21
|
830 |
#: dashboard/publisher/adverts-main.php:22
|
831 |
-
#, fuzzy
|
832 |
msgid "Delete"
|
833 |
-
msgstr "
|
834 |
|
835 |
-
#: adrotate.php:
|
836 |
msgid ""
|
837 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: adrotate.php:
|
841 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: adrotate.php:
|
845 |
-
#, fuzzy
|
846 |
msgid "AdRotate Settings"
|
847 |
-
msgstr "
|
848 |
|
849 |
-
#: adrotate.php:
|
850 |
-
#, fuzzy
|
851 |
msgid "Update Options"
|
852 |
-
msgstr "
|
853 |
|
854 |
#: dashboard/adrotatepro.php:20
|
855 |
-
#, fuzzy
|
856 |
msgid "Satisfy your advertisers"
|
857 |
-
msgstr "
|
858 |
|
859 |
#: dashboard/adrotatepro.php:23
|
860 |
-
#, fuzzy
|
861 |
msgid ""
|
862 |
"Set up advertisers and let them log in to their statistics or even create "
|
863 |
"their own adverts. Created adverts go into a moderation queue for your staff "
|
864 |
"to review. Advertisers have access to their own little dashboard where they "
|
865 |
"can see their adverts performance."
|
866 |
msgstr ""
|
867 |
-
"Mettez en place les annonceurs et laissez-les se connecter à leurs "
|
868 |
-
"statistiques ou donnez leur la permission de créez leurs propres publicités. "
|
869 |
-
"Les annonces créées iront dans votre file d'attente afin d'être revues par "
|
870 |
-
"votre personel. Les annonceurs ont accès à leur propre petit tableau de bord "
|
871 |
-
"où ils peuvent voir les performances de leur publicités."
|
872 |
|
873 |
#: dashboard/adrotatepro.php:27
|
874 |
-
|
875 |
-
|
876 |
-
msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
|
877 |
|
878 |
#: dashboard/adrotatepro.php:30
|
879 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
880 |
"Go nationwide or global with localized adverts for your various audiences. "
|
881 |
"Set up adverts for countries and cities and sell impressions per general "
|
882 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
883 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: dashboard/adrotatepro.php:
|
887 |
-
#, fuzzy
|
888 |
msgid "Get Premium Support almost all year round"
|
889 |
-
msgstr "
|
890 |
|
891 |
-
#: dashboard/adrotatepro.php:
|
892 |
msgid ""
|
893 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
894 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -896,23 +760,21 @@ msgid ""
|
|
896 |
"forum. Get a solution (usually) within a day."
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: dashboard/adrotatepro.php:
|
900 |
-
#, fuzzy
|
901 |
msgid "AdRotate is brought to you by"
|
902 |
-
msgstr "
|
903 |
|
904 |
-
#: dashboard/adrotatepro.php:
|
905 |
msgid ""
|
906 |
-
"Premium plugins for WordPress and WooCommerce
|
907 |
-
"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: dashboard/adrotatepro.php:
|
911 |
-
#, fuzzy
|
912 |
msgid "Schedule all campaigns with ease"
|
913 |
-
msgstr "
|
914 |
|
915 |
-
#: dashboard/adrotatepro.php:
|
916 |
msgid ""
|
917 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
918 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -920,11 +782,23 @@ msgid ""
|
|
920 |
"much more easy. You can set one or many schedules for adverts."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
924 |
msgid "Stay up-to-date with notifications"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: dashboard/adrotatepro.php:
|
928 |
msgid ""
|
929 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
930 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -933,142 +807,123 @@ msgid ""
|
|
933 |
"miss an expiration date again."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: dashboard/adrotatepro.php:
|
937 |
#: dashboard/info.php:93 dashboard/info.php:105
|
938 |
-
#, fuzzy
|
939 |
msgid "Buy AdRotate Professional"
|
940 |
-
msgstr "
|
941 |
|
942 |
-
#: dashboard/adrotatepro.php:
|
943 |
msgid "Single License"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: dashboard/adrotatepro.php:
|
947 |
-
#, fuzzy
|
948 |
msgid "For one WordPress installation."
|
949 |
-
msgstr "
|
950 |
|
951 |
-
#: dashboard/adrotatepro.php:
|
952 |
#: dashboard/info.php:98 dashboard/info.php:110
|
953 |
-
#, fuzzy
|
954 |
msgid "Duo License"
|
955 |
-
msgstr "
|
956 |
|
957 |
-
#: dashboard/adrotatepro.php:
|
958 |
-
#, fuzzy
|
959 |
msgid "For two WordPress installations."
|
960 |
-
msgstr "
|
961 |
|
962 |
-
#: dashboard/adrotatepro.php:
|
963 |
#: dashboard/info.php:99 dashboard/info.php:111
|
964 |
-
#, fuzzy
|
965 |
msgid "Multi License"
|
966 |
-
msgstr "
|
967 |
|
968 |
-
#: dashboard/adrotatepro.php:
|
969 |
-
#, fuzzy
|
970 |
msgid " For up to five WordPress installations."
|
971 |
-
msgstr "
|
972 |
|
973 |
-
#: dashboard/adrotatepro.php:
|
974 |
#: dashboard/info.php:100 dashboard/info.php:112
|
975 |
-
#, fuzzy
|
976 |
msgid "Developer License"
|
977 |
-
msgstr "
|
978 |
|
979 |
-
#: dashboard/adrotatepro.php:
|
980 |
msgid "Unlimited WordPress installations and/or networks."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: dashboard/adrotatepro.php:
|
984 |
#: dashboard/info.php:101 dashboard/info.php:114
|
985 |
-
#, fuzzy
|
986 |
msgid "Compare licenses"
|
987 |
-
msgstr "
|
988 |
|
989 |
-
#: dashboard/adrotatepro.php:
|
990 |
-
#, fuzzy
|
991 |
msgid "Not sure which license is for you? Compare them..."
|
992 |
msgstr ""
|
993 |
-
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
994 |
|
995 |
-
#: dashboard/adrotatepro.php:
|
996 |
-
#, fuzzy
|
997 |
msgid "All Licenses"
|
998 |
-
msgstr "
|
999 |
|
1000 |
-
#: dashboard/adrotatepro.php:
|
1001 |
msgid "Lifetime License"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: dashboard/adrotatepro.php:
|
1005 |
msgid "Single installation."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: dashboard/adrotatepro.php:
|
1009 |
msgid "Up to 2 installations."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: dashboard/adrotatepro.php:
|
1013 |
msgid "Up to 10 installations."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: dashboard/adrotatepro.php:
|
1017 |
msgid "Up to 25 installations or multisite networks."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: dashboard/adrotatepro.php:
|
1021 |
msgid ""
|
1022 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: dashboard/adrotatepro.php:
|
1026 |
msgid "Not sure which license is for you?"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: dashboard/adrotatepro.php:
|
1030 |
msgid "Compare Licenses"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: dashboard/info.php:24
|
1034 |
-
#, fuzzy
|
1035 |
msgid "Currently"
|
1036 |
-
msgstr "
|
1037 |
|
1038 |
#: dashboard/info.php:30
|
1039 |
-
#, fuzzy
|
1040 |
msgid "Your setup"
|
1041 |
-
msgstr "
|
1042 |
|
1043 |
#: dashboard/info.php:31
|
1044 |
-
#, fuzzy
|
1045 |
msgid "Adverts that need you"
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
#: dashboard/info.php:37
|
1049 |
-
#, fuzzy
|
1050 |
msgid "Adverts"
|
1051 |
-
msgstr "
|
1052 |
|
1053 |
#: dashboard/info.php:38
|
1054 |
-
#, fuzzy
|
1055 |
msgid "(Almost) Expired"
|
1056 |
-
msgstr "
|
1057 |
|
1058 |
#: dashboard/info.php:41
|
1059 |
-
#, fuzzy
|
1060 |
msgid "Groups"
|
1061 |
-
msgstr "
|
1062 |
|
1063 |
#: dashboard/info.php:42
|
1064 |
-
#, fuzzy
|
1065 |
msgid "Have errors"
|
1066 |
-
msgstr "
|
1067 |
|
1068 |
#: dashboard/info.php:48
|
1069 |
-
#, fuzzy
|
1070 |
msgid "Support AdRotate"
|
1071 |
-
msgstr "
|
1072 |
|
1073 |
#: dashboard/info.php:55
|
1074 |
msgid "Your gift helps ensure the continued development of AdRotate!"
|
@@ -1079,81 +934,66 @@ msgid "Can't donate money? Consider writing a review instead. Thank you!"
|
|
1079 |
msgstr ""
|
1080 |
|
1081 |
#: dashboard/info.php:64
|
1082 |
-
#, fuzzy
|
1083 |
msgid "AdRotate News and Developer Blog"
|
1084 |
-
msgstr "
|
1085 |
|
1086 |
#: dashboard/info.php:86
|
1087 |
-
#, fuzzy
|
1088 |
msgid "Get more features with AdRotate Pro"
|
1089 |
-
msgstr "
|
1090 |
|
1091 |
#: dashboard/info.php:89
|
1092 |
-
#, fuzzy
|
1093 |
msgid ""
|
1094 |
"Benefit from extra features to reinforce your income with advertising "
|
1095 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1096 |
"Pro offers on top of the trusted features included in the free version."
|
1097 |
msgstr ""
|
1098 |
-
"Profitez de fonctionnalités supplémentaires pour renforcer votre revenu avec "
|
1099 |
-
"des campagnes de publicité. Profitez au maximum de votre site Web avec les "
|
1100 |
-
"outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
|
1101 |
-
"la version gratuite."
|
1102 |
|
1103 |
#: dashboard/info.php:89
|
1104 |
msgid "Want to know more about"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
#: dashboard/info.php:89
|
1108 |
-
#, fuzzy
|
1109 |
msgid "Visit the"
|
1110 |
-
msgstr "
|
1111 |
|
1112 |
#: dashboard/info.php:89
|
1113 |
-
#, fuzzy
|
1114 |
msgid "website"
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
#: dashboard/publisher/adverts-disabled.php:15
|
1118 |
-
#, fuzzy
|
1119 |
msgid "Disabled Ads"
|
1120 |
-
msgstr "
|
1121 |
|
1122 |
#: dashboard/publisher/adverts-disabled.php:21
|
1123 |
#: dashboard/publisher/adverts-edit.php:177
|
1124 |
-
#, fuzzy
|
1125 |
msgid "Activate"
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
#: dashboard/publisher/adverts-disabled.php:23
|
1129 |
#: dashboard/publisher/adverts-error.php:22
|
1130 |
#: dashboard/publisher/adverts-main.php:23
|
1131 |
-
#, fuzzy
|
1132 |
msgid "Reset stats"
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
#: dashboard/publisher/adverts-disabled.php:36
|
1136 |
#: dashboard/publisher/adverts-error.php:40
|
1137 |
#: dashboard/publisher/adverts-main.php:40
|
1138 |
-
#, fuzzy
|
1139 |
msgid "Start / End"
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
#: dashboard/publisher/adverts-disabled.php:37
|
1143 |
#: dashboard/publisher/adverts-edit.php:117
|
1144 |
#: dashboard/publisher/adverts-error.php:41
|
1145 |
#: dashboard/publisher/adverts-main.php:41
|
1146 |
-
#, fuzzy
|
1147 |
msgid "Title"
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
#: dashboard/publisher/adverts-disabled.php:38
|
1151 |
#: dashboard/publisher/adverts-main.php:44
|
1152 |
#: dashboard/publisher/groups-edit.php:333
|
1153 |
#: dashboard/publisher/groups-main.php:36
|
1154 |
-
#, fuzzy
|
1155 |
msgid "Shown"
|
1156 |
-
msgstr "
|
1157 |
|
1158 |
#: dashboard/publisher/adverts-disabled.php:39
|
1159 |
#: dashboard/publisher/adverts-main.php:46
|
@@ -1161,43 +1001,37 @@ msgstr "Montré"
|
|
1161 |
#: dashboard/publisher/groups-edit.php:334
|
1162 |
#: dashboard/publisher/groups-main.php:38
|
1163 |
#: dashboard/publisher/groups-report.php:41
|
1164 |
-
#, fuzzy
|
1165 |
msgid "Clicks"
|
1166 |
-
msgstr "
|
1167 |
|
1168 |
#: dashboard/publisher/adverts-disabled.php:40
|
1169 |
#: dashboard/publisher/adverts-main.php:48
|
1170 |
#: dashboard/publisher/adverts-report.php:38
|
1171 |
#: dashboard/publisher/groups-report.php:44
|
1172 |
-
#, fuzzy
|
1173 |
msgid "CTR"
|
1174 |
-
msgstr "
|
1175 |
|
1176 |
#: dashboard/publisher/adverts-disabled.php:74
|
1177 |
#: dashboard/publisher/adverts-error.php:64
|
1178 |
#: dashboard/publisher/adverts-main.php:87
|
1179 |
#: dashboard/publisher/groups-main.php:70
|
1180 |
-
#, fuzzy
|
1181 |
msgid "Edit"
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
#: dashboard/publisher/adverts-disabled.php:74
|
1185 |
#: dashboard/publisher/adverts-error.php:64
|
1186 |
-
#, fuzzy
|
1187 |
msgid "Stats"
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
#: dashboard/publisher/adverts-disabled.php:74
|
1191 |
#: dashboard/publisher/adverts-error.php:64
|
1192 |
#: dashboard/publisher/adverts-main.php:87
|
1193 |
-
#, fuzzy
|
1194 |
msgid "Groups:"
|
1195 |
-
msgstr "
|
1196 |
|
1197 |
#: dashboard/publisher/adverts-edit.php:48
|
1198 |
-
#, fuzzy
|
1199 |
msgid "The AdCode cannot be empty!"
|
1200 |
-
msgstr "
|
1201 |
|
1202 |
#: dashboard/publisher/adverts-edit.php:51
|
1203 |
msgid "You did not use %image% in your AdCode but did select a file to use!"
|
@@ -1228,53 +1062,42 @@ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
|
|
1228 |
msgstr ""
|
1229 |
|
1230 |
#: dashboard/publisher/adverts-edit.php:71
|
1231 |
-
#, fuzzy
|
1232 |
msgid ""
|
1233 |
"AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
|
1234 |
"the ad!"
|
1235 |
msgstr ""
|
1236 |
-
"AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
|
1237 |
-
"essayez d'enregistrer votre publicité à nouveau!"
|
1238 |
|
1239 |
#: dashboard/publisher/adverts-edit.php:74
|
1240 |
-
#, fuzzy
|
1241 |
msgid "This ad is expired and currently not shown on your website!"
|
1242 |
msgstr ""
|
1243 |
-
"Cette publicité est expirée et ne figure actuellement pas sur votre site!"
|
1244 |
|
1245 |
#: dashboard/publisher/adverts-edit.php:77
|
1246 |
-
#, fuzzy
|
1247 |
msgid "The ad will expire in less than 2 days!"
|
1248 |
-
msgstr "
|
1249 |
|
1250 |
#: dashboard/publisher/adverts-edit.php:80
|
1251 |
-
#, fuzzy
|
1252 |
msgid "This ad will expire in less than 7 days!"
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
#: dashboard/publisher/adverts-edit.php:83
|
1256 |
-
#, fuzzy
|
1257 |
msgid "This ad has been disabled and does not rotate on your site!"
|
1258 |
-
msgstr "
|
1259 |
|
1260 |
#: dashboard/publisher/adverts-edit.php:109
|
1261 |
-
#, fuzzy
|
1262 |
msgid "New Advert"
|
1263 |
-
msgstr "
|
1264 |
|
1265 |
#: dashboard/publisher/adverts-edit.php:111
|
1266 |
-
#, fuzzy
|
1267 |
msgid "Edit Advert"
|
1268 |
-
msgstr "
|
1269 |
|
1270 |
#: dashboard/publisher/adverts-edit.php:123
|
1271 |
msgid "AdCode"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#: dashboard/publisher/adverts-edit.php:128
|
1275 |
-
#, fuzzy
|
1276 |
msgid "Basic Examples:"
|
1277 |
-
msgstr "
|
1278 |
|
1279 |
#: dashboard/publisher/adverts-edit.php:135
|
1280 |
msgid "Useful tags"
|
@@ -1311,26 +1134,19 @@ msgid ""
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: dashboard/publisher/adverts-edit.php:142
|
1314 |
-
#, fuzzy
|
1315 |
msgid "Preview"
|
1316 |
-
msgstr "
|
1317 |
|
1318 |
#: dashboard/publisher/adverts-edit.php:145
|
1319 |
-
#, fuzzy
|
1320 |
msgid ""
|
1321 |
"Note: While this preview is an accurate one, it might look different then it "
|
1322 |
"does on the website."
|
1323 |
msgstr ""
|
1324 |
-
"NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
|
1325 |
-
"différente sur le site."
|
1326 |
|
1327 |
#: dashboard/publisher/adverts-edit.php:146
|
1328 |
-
#, fuzzy
|
1329 |
msgid ""
|
1330 |
"This is because of CSS differences. Your themes CSS file is not active here!"
|
1331 |
msgstr ""
|
1332 |
-
"Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
|
1333 |
-
"pas actif ici!"
|
1334 |
|
1335 |
#: dashboard/publisher/adverts-edit.php:151
|
1336 |
msgid "Banner asset"
|
@@ -1341,42 +1157,35 @@ msgid "WordPress media:"
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
#: dashboard/publisher/adverts-edit.php:154
|
1344 |
-
#, fuzzy
|
1345 |
msgid "Select Banner"
|
1346 |
-
msgstr "
|
1347 |
|
1348 |
#: dashboard/publisher/adverts-edit.php:156
|
1349 |
msgid "- OR -"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#: dashboard/publisher/adverts-edit.php:158
|
1353 |
-
#, fuzzy
|
1354 |
msgid "Banner folder:"
|
1355 |
-
msgstr "
|
1356 |
|
1357 |
#: dashboard/publisher/adverts-edit.php:159
|
1358 |
-
#, fuzzy
|
1359 |
msgid "No image selected"
|
1360 |
-
msgstr "
|
1361 |
|
1362 |
#: dashboard/publisher/adverts-edit.php:163
|
1363 |
msgid "Use %image% in the adcode instead of the file path."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
#: dashboard/publisher/adverts-edit.php:163
|
1367 |
-
#, fuzzy
|
1368 |
msgid ""
|
1369 |
"Use either the text field or the dropdown. If the textfield has content that "
|
1370 |
"field has priority."
|
1371 |
msgstr ""
|
1372 |
-
"Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
|
1373 |
-
"valeur, ce champ a la priorité."
|
1374 |
|
1375 |
#: dashboard/publisher/adverts-edit.php:168
|
1376 |
#: dashboard/settings/statistics.php:12
|
1377 |
-
#, fuzzy
|
1378 |
msgid "Statistics"
|
1379 |
-
msgstr "
|
1380 |
|
1381 |
#: dashboard/publisher/adverts-edit.php:170
|
1382 |
msgid "Enable click and impression tracking for this advert."
|
@@ -1390,73 +1199,67 @@ msgid ""
|
|
1390 |
msgstr ""
|
1391 |
|
1392 |
#: dashboard/publisher/adverts-edit.php:181
|
1393 |
-
#, fuzzy
|
1394 |
msgid "Yes, this ad will be used"
|
1395 |
-
msgstr "
|
1396 |
|
1397 |
#: dashboard/publisher/adverts-edit.php:182
|
1398 |
-
#, fuzzy
|
1399 |
msgid "No, do not show this ad anywhere"
|
1400 |
-
msgstr "
|
1401 |
|
1402 |
#: dashboard/publisher/adverts-edit.php:189
|
1403 |
#: dashboard/publisher/adverts-main.php:114
|
1404 |
#: dashboard/publisher/groups-edit.php:75
|
1405 |
#: dashboard/publisher/groups-main.php:89
|
1406 |
-
#, fuzzy
|
1407 |
msgid "Get more features with AdRotate Pro."
|
1408 |
-
msgstr "
|
1409 |
|
1410 |
#: dashboard/publisher/adverts-edit.php:192
|
1411 |
#: dashboard/publisher/adverts-edit.php:292
|
1412 |
-
#: dashboard/publisher/adverts-edit.php:
|
1413 |
-
#: dashboard/publisher/adverts-edit.php:
|
1414 |
-
#, fuzzy
|
1415 |
msgid "Save Advert"
|
1416 |
-
msgstr "
|
1417 |
|
1418 |
#: dashboard/publisher/adverts-edit.php:193
|
1419 |
#: dashboard/publisher/adverts-edit.php:293
|
1420 |
-
#: dashboard/publisher/adverts-edit.php:
|
1421 |
-
#: dashboard/publisher/adverts-edit.php:
|
1422 |
#: dashboard/publisher/groups-edit.php:154
|
1423 |
#: dashboard/publisher/groups-edit.php:301
|
1424 |
#: dashboard/publisher/groups-edit.php:393
|
1425 |
-
#, fuzzy
|
1426 |
msgid "Cancel"
|
1427 |
-
msgstr "
|
1428 |
|
1429 |
#: dashboard/publisher/adverts-edit.php:196
|
1430 |
-
#: dashboard/publisher/adverts-edit.php:
|
1431 |
#: dashboard/publisher/groups-edit.php:136
|
1432 |
#: dashboard/publisher/groups-edit.php:283
|
1433 |
-
#, fuzzy
|
1434 |
msgid "Usage"
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
#: dashboard/publisher/adverts-edit.php:200
|
1438 |
-
#: dashboard/publisher/adverts-edit.php:
|
1439 |
#: dashboard/publisher/groups-edit.php:140
|
1440 |
#: dashboard/publisher/groups-edit.php:287
|
1441 |
msgid "Widget"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
#: dashboard/publisher/adverts-edit.php:201
|
1445 |
-
#: dashboard/publisher/adverts-edit.php:
|
1446 |
msgid ""
|
1447 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1448 |
"and enter ID"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: dashboard/publisher/adverts-edit.php:204
|
1452 |
-
#: dashboard/publisher/adverts-edit.php:
|
1453 |
#: dashboard/publisher/groups-edit.php:144
|
1454 |
#: dashboard/publisher/groups-edit.php:291
|
1455 |
msgid "In a post or page"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: dashboard/publisher/adverts-edit.php:206
|
1459 |
-
#: dashboard/publisher/adverts-edit.php:
|
1460 |
#: dashboard/publisher/groups-edit.php:146
|
1461 |
#: dashboard/publisher/groups-edit.php:293
|
1462 |
msgid "Directly in a theme"
|
@@ -1488,9 +1291,8 @@ msgstr ""
|
|
1488 |
|
1489 |
#: dashboard/publisher/adverts-edit.php:278
|
1490 |
#: dashboard/publisher/adverts-edit.php:280
|
1491 |
-
#, fuzzy
|
1492 |
msgid "Leave empty or 0 to skip this."
|
1493 |
-
msgstr "
|
1494 |
|
1495 |
#: dashboard/publisher/adverts-edit.php:279
|
1496 |
msgid "Maximum Impressions"
|
@@ -1514,223 +1316,224 @@ msgid ""
|
|
1514 |
msgstr ""
|
1515 |
|
1516 |
#: dashboard/publisher/adverts-edit.php:289
|
1517 |
-
#: dashboard/publisher/adverts-edit.php:
|
1518 |
-
#: dashboard/publisher/adverts-edit.php:
|
1519 |
#: dashboard/publisher/groups-edit.php:200
|
1520 |
-
#, fuzzy
|
1521 |
msgid "Upgrade today"
|
1522 |
-
msgstr "
|
1523 |
|
1524 |
#: dashboard/publisher/adverts-edit.php:296
|
1525 |
#: dashboard/publisher/groups-edit.php:157
|
1526 |
-
#, fuzzy
|
1527 |
msgid "Advanced"
|
1528 |
-
msgstr "
|
1529 |
|
1530 |
#: dashboard/publisher/adverts-edit.php:297
|
1531 |
-
#, fuzzy
|
1532 |
msgid "Everything below is optional."
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
#: dashboard/publisher/adverts-edit.php:301
|
1536 |
-
msgid "
|
1537 |
msgstr ""
|
1538 |
|
1539 |
#: dashboard/publisher/adverts-edit.php:303
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1543 |
|
1544 |
#: dashboard/publisher/adverts-edit.php:304
|
1545 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1546 |
msgid ""
|
1547 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1548 |
-
"following format; \"imagename.full.ext\".
|
1549 |
-
"strongly recommended."
|
1550 |
msgstr ""
|
1551 |
-
"Transférez vos images dans le dossier de la bannière et assurez-vous que le "
|
1552 |
-
"fichier est dans le format suivant: \"nomdefichier.full.ext\". Un ensemble "
|
1553 |
-
"complet d'images de tailles différentes est recommendé si vous avez un site "
|
1554 |
-
"fluide."
|
1555 |
|
1556 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1557 |
#: dashboard/publisher/groups-edit.php:194
|
1558 |
msgid "Sortorder"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: dashboard/publisher/adverts-edit.php:
|
1562 |
#: dashboard/publisher/groups-edit.php:196
|
1563 |
-
#, fuzzy
|
1564 |
msgid "For administrative purposes set a sortorder."
|
1565 |
-
msgstr "
|
1566 |
|
1567 |
-
#: dashboard/publisher/adverts-edit.php:
|
1568 |
-
#, fuzzy
|
1569 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1570 |
msgstr ""
|
1571 |
-
"Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
|
1572 |
-
"de l'ID de la publicité."
|
1573 |
|
1574 |
-
#: dashboard/publisher/adverts-edit.php:
|
1575 |
msgid ""
|
1576 |
-
"With AdRotate Pro you can
|
|
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: dashboard/publisher/adverts-edit.php:
|
1580 |
msgid "Geo Targeting in AdRotate Pro"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: dashboard/publisher/adverts-edit.php:
|
1584 |
msgid ""
|
1585 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: dashboard/publisher/adverts-edit.php:
|
1589 |
msgid "Cities/States"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: dashboard/publisher/adverts-edit.php:
|
1593 |
msgid ""
|
1594 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1595 |
"states ISO codes are supported)"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: dashboard/publisher/adverts-edit.php:
|
1599 |
msgid ""
|
1600 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1601 |
"correctly!"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: dashboard/publisher/adverts-edit.php:
|
1605 |
msgid "Countries"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: dashboard/publisher/adverts-edit.php:
|
1609 |
-
#, fuzzy
|
1610 |
msgid "Select the countries you want the adverts to show in."
|
1611 |
msgstr ""
|
1612 |
-
"Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
|
1613 |
-
"pulicités."
|
1614 |
|
1615 |
-
#: dashboard/publisher/adverts-edit.php:
|
1616 |
msgid "Cities take priority and will be filtered first."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: dashboard/publisher/adverts-edit.php:
|
1620 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: dashboard/publisher/adverts-edit.php:
|
1624 |
-
#, fuzzy
|
1625 |
msgid "Select Groups"
|
1626 |
-
msgstr "
|
1627 |
|
1628 |
-
#: dashboard/publisher/adverts-edit.php:
|
1629 |
-
#, fuzzy
|
1630 |
msgid "ID - Name"
|
1631 |
-
msgstr "
|
1632 |
|
1633 |
-
#: dashboard/publisher/adverts-edit.php:
|
1634 |
#: dashboard/publisher/groups-main.php:60
|
1635 |
#: dashboard/settings/geotargeting.php:39
|
1636 |
-
#, fuzzy
|
1637 |
msgid "Default"
|
1638 |
-
msgstr "
|
1639 |
|
1640 |
-
#: dashboard/publisher/adverts-edit.php:
|
1641 |
#: dashboard/publisher/groups-main.php:61
|
1642 |
-
#, fuzzy
|
1643 |
msgid "Dynamic"
|
1644 |
-
msgstr "
|
1645 |
|
1646 |
-
#: dashboard/publisher/adverts-edit.php:
|
1647 |
#: dashboard/publisher/groups-main.php:61
|
1648 |
-
#, fuzzy
|
1649 |
msgid "second rotation"
|
1650 |
-
msgstr "
|
1651 |
|
1652 |
-
#: dashboard/publisher/adverts-edit.php:
|
1653 |
#: dashboard/publisher/groups-main.php:62
|
1654 |
-
#, fuzzy
|
1655 |
msgid "Block"
|
1656 |
-
msgstr "
|
1657 |
|
1658 |
-
#: dashboard/publisher/adverts-edit.php:
|
1659 |
#: dashboard/publisher/groups-main.php:62
|
1660 |
-
#, fuzzy
|
1661 |
msgid "grid"
|
1662 |
-
msgstr "
|
1663 |
|
1664 |
-
#: dashboard/publisher/adverts-edit.php:
|
1665 |
#: dashboard/publisher/groups-edit.php:202
|
1666 |
#: dashboard/publisher/groups-main.php:63
|
1667 |
-
#, fuzzy
|
1668 |
msgid "Post Injection"
|
1669 |
-
msgstr "
|
1670 |
|
1671 |
-
#: dashboard/publisher/adverts-edit.php:
|
1672 |
-
#, fuzzy
|
1673 |
msgid "Geolocation"
|
1674 |
-
msgstr "
|
1675 |
|
1676 |
-
#: dashboard/publisher/adverts-edit.php:
|
1677 |
#: dashboard/publisher/groups-edit.php:61
|
1678 |
#: dashboard/publisher/groups-main.php:70
|
1679 |
-
#, fuzzy
|
1680 |
msgid "Mode"
|
1681 |
-
msgstr "
|
1682 |
|
1683 |
#: dashboard/publisher/adverts-error.php:12
|
1684 |
-
#, fuzzy
|
1685 |
msgid "Ads that need immediate attention"
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
#: dashboard/publisher/adverts-error.php:20
|
1689 |
#: dashboard/publisher/adverts-main.php:21
|
1690 |
-
#, fuzzy
|
1691 |
msgid "Deactivate"
|
1692 |
-
msgstr "
|
1693 |
|
1694 |
#: dashboard/publisher/adverts-error.php:23
|
1695 |
#: dashboard/publisher/adverts-main.php:25
|
1696 |
-
#, fuzzy
|
1697 |
msgid "-- Renew --"
|
1698 |
-
msgstr "
|
1699 |
|
1700 |
#: dashboard/publisher/adverts-error.php:24
|
1701 |
#: dashboard/publisher/adverts-main.php:26
|
1702 |
-
#, fuzzy
|
1703 |
msgid "For 1 year"
|
1704 |
-
msgstr "
|
1705 |
|
1706 |
#: dashboard/publisher/adverts-error.php:25
|
1707 |
#: dashboard/publisher/adverts-main.php:27
|
1708 |
-
#, fuzzy
|
1709 |
msgid "For 180 days"
|
1710 |
-
msgstr "
|
1711 |
|
1712 |
#: dashboard/publisher/adverts-error.php:26
|
1713 |
#: dashboard/publisher/adverts-main.php:28
|
1714 |
-
#, fuzzy
|
1715 |
msgid "For 30 days"
|
1716 |
-
msgstr "
|
1717 |
|
1718 |
#: dashboard/publisher/adverts-error.php:27
|
1719 |
#: dashboard/publisher/adverts-main.php:29
|
1720 |
-
#, fuzzy
|
1721 |
msgid "For 7 days"
|
1722 |
-
msgstr "
|
1723 |
|
1724 |
#: dashboard/publisher/adverts-error.php:71
|
1725 |
#: dashboard/publisher/groups-edit.php:386
|
1726 |
-
#, fuzzy
|
1727 |
msgid "Configuration errors."
|
1728 |
-
msgstr "
|
1729 |
|
1730 |
#: dashboard/publisher/adverts-main.php:12
|
1731 |
-
#, fuzzy
|
1732 |
msgid "Active Ads"
|
1733 |
-
msgstr "
|
1734 |
|
1735 |
#: dashboard/publisher/adverts-main.php:24
|
1736 |
msgid "Export to XML"
|
@@ -1738,92 +1541,70 @@ msgstr ""
|
|
1738 |
|
1739 |
#: dashboard/publisher/adverts-main.php:42
|
1740 |
#: dashboard/publisher/groups-edit.php:336
|
1741 |
-
#, fuzzy
|
1742 |
msgid "Weight"
|
1743 |
-
msgstr "
|
1744 |
|
1745 |
#: dashboard/publisher/adverts-main.php:45
|
1746 |
#: dashboard/publisher/adverts-main.php:47
|
1747 |
#: dashboard/publisher/groups-main.php:37
|
1748 |
#: dashboard/publisher/groups-main.php:39
|
1749 |
-
#, fuzzy
|
1750 |
msgid "Today"
|
1751 |
-
msgstr "
|
1752 |
|
1753 |
#: dashboard/publisher/adverts-main.php:109
|
1754 |
-
#, fuzzy
|
1755 |
msgid "No ads created yet!"
|
1756 |
-
msgstr "
|
1757 |
|
1758 |
#: dashboard/publisher/adverts-report.php:29
|
1759 |
-
#, fuzzy
|
1760 |
msgid "Statistics for advert"
|
1761 |
-
msgstr "
|
1762 |
|
1763 |
#: dashboard/publisher/adverts-report.php:34
|
1764 |
#: dashboard/publisher/groups-report.php:40
|
1765 |
-
#, fuzzy
|
1766 |
msgid "Impressions"
|
1767 |
-
msgstr "
|
1768 |
|
1769 |
#: dashboard/publisher/adverts-report.php:36
|
1770 |
#: dashboard/publisher/groups-report.php:42
|
1771 |
-
#, fuzzy
|
1772 |
msgid "Impressions today"
|
1773 |
-
msgstr "
|
1774 |
|
1775 |
#: dashboard/publisher/adverts-report.php:37
|
1776 |
#: dashboard/publisher/groups-report.php:43
|
1777 |
-
#, fuzzy
|
1778 |
msgid "Clicks today"
|
1779 |
-
msgstr "
|
1780 |
|
1781 |
#: dashboard/publisher/adverts-report.php:44
|
1782 |
#: dashboard/publisher/groups-report.php:50
|
1783 |
-
#, fuzzy
|
1784 |
msgid "Monthly overview of clicks and impressions"
|
1785 |
-
msgstr "
|
1786 |
-
|
1787 |
-
#: dashboard/publisher/adverts-report.php:58
|
1788 |
-
#: dashboard/publisher/groups-report.php:64
|
1789 |
-
#, fuzzy
|
1790 |
-
msgid "Note:"
|
1791 |
-
msgstr "Note :"
|
1792 |
|
1793 |
#: dashboard/publisher/adverts-report.php:58
|
1794 |
#: dashboard/publisher/groups-report.php:64
|
1795 |
-
#, fuzzy
|
1796 |
msgid ""
|
1797 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1798 |
"counted by other parties."
|
1799 |
msgstr ""
|
1800 |
-
"Toutes les statistiques sont indicatives. Elles ne reflètent pas "
|
1801 |
-
"nécessairement les résultats comptés par d'autres partis."
|
1802 |
|
1803 |
#: dashboard/publisher/groups-edit.php:43
|
1804 |
-
#, fuzzy
|
1805 |
msgid "New Group"
|
1806 |
-
msgstr "
|
1807 |
|
1808 |
#: dashboard/publisher/groups-edit.php:45
|
1809 |
-
#, fuzzy
|
1810 |
msgid "Edit Group"
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
#: dashboard/publisher/groups-edit.php:64
|
1814 |
-
#, fuzzy
|
1815 |
msgid "Default - Show one ad at a time"
|
1816 |
-
msgstr "
|
1817 |
|
1818 |
#: dashboard/publisher/groups-edit.php:65
|
1819 |
-
#, fuzzy
|
1820 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1821 |
-
msgstr "
|
1822 |
|
1823 |
#: dashboard/publisher/groups-edit.php:66
|
1824 |
-
#, fuzzy
|
1825 |
msgid "Block Mode - Show a block of ads"
|
1826 |
-
msgstr "
|
1827 |
|
1828 |
#: dashboard/publisher/groups-edit.php:70
|
1829 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
@@ -1831,33 +1612,28 @@ msgstr ""
|
|
1831 |
|
1832 |
#: dashboard/publisher/groups-edit.php:77
|
1833 |
#: dashboard/publisher/groups-edit.php:104
|
1834 |
-
#, fuzzy
|
1835 |
msgid "Dynamic and Block Mode"
|
1836 |
-
msgstr "
|
1837 |
|
1838 |
#: dashboard/publisher/groups-edit.php:78
|
1839 |
-
#, fuzzy
|
1840 |
msgid "Only required if your group is in Dynamic or Block mode."
|
1841 |
-
msgstr "
|
1842 |
|
1843 |
#: dashboard/publisher/groups-edit.php:82
|
1844 |
msgid "Block size"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: dashboard/publisher/groups-edit.php:88
|
1848 |
-
#, fuzzy
|
1849 |
msgid "rows"
|
1850 |
-
msgstr "
|
1851 |
|
1852 |
#: dashboard/publisher/groups-edit.php:92
|
1853 |
-
#, fuzzy
|
1854 |
msgid "columns"
|
1855 |
-
msgstr "
|
1856 |
|
1857 |
#: dashboard/publisher/groups-edit.php:95
|
1858 |
-
#, fuzzy
|
1859 |
msgid "Block Mode"
|
1860 |
-
msgstr "
|
1861 |
|
1862 |
#: dashboard/publisher/groups-edit.php:95
|
1863 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
@@ -1868,47 +1644,35 @@ msgid "Advert size"
|
|
1868 |
msgstr ""
|
1869 |
|
1870 |
#: dashboard/publisher/groups-edit.php:101
|
1871 |
-
#, fuzzy
|
1872 |
msgid "pixel(s) wide"
|
1873 |
-
msgstr "
|
1874 |
|
1875 |
#: dashboard/publisher/groups-edit.php:101
|
1876 |
-
#, fuzzy
|
1877 |
msgid "pixel(s) high."
|
1878 |
-
msgstr "
|
1879 |
|
1880 |
#: dashboard/publisher/groups-edit.php:104
|
1881 |
-
#, fuzzy
|
1882 |
msgid ""
|
1883 |
"Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
1884 |
"recommended). Default: 125/125."
|
1885 |
msgstr ""
|
1886 |
-
"Definir les dimensions par défaut des pubs en pixel, sans compter les "
|
1887 |
-
"marges. Si vous mettez 'auto', les dimensions seront automatiques (cici "
|
1888 |
-
"n'est pas recommendé). Valeur par défaut : 125/125. "
|
1889 |
|
1890 |
#: dashboard/publisher/groups-edit.php:108
|
1891 |
-
#, fuzzy
|
1892 |
msgid "Automated refresh"
|
1893 |
-
msgstr "
|
1894 |
|
1895 |
#: dashboard/publisher/groups-edit.php:127
|
1896 |
-
#, fuzzy
|
1897 |
msgid "seconds."
|
1898 |
-
msgstr "
|
1899 |
|
1900 |
#: dashboard/publisher/groups-edit.php:130
|
1901 |
-
#, fuzzy
|
1902 |
msgid "Dynamic Mode"
|
1903 |
-
msgstr "
|
1904 |
|
1905 |
#: dashboard/publisher/groups-edit.php:130
|
1906 |
-
#, fuzzy
|
1907 |
msgid ""
|
1908 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1909 |
msgstr ""
|
1910 |
-
"Chargez une nouvelle publicité sans recharger le page après cette "
|
1911 |
-
"intervalle. La valeur par défaut est : 6."
|
1912 |
|
1913 |
#: dashboard/publisher/groups-edit.php:141
|
1914 |
#: dashboard/publisher/groups-edit.php:288
|
@@ -1920,54 +1684,44 @@ msgstr ""
|
|
1920 |
#: dashboard/publisher/groups-edit.php:153
|
1921 |
#: dashboard/publisher/groups-edit.php:300
|
1922 |
#: dashboard/publisher/groups-edit.php:392
|
1923 |
-
#, fuzzy
|
1924 |
msgid "Save Group"
|
1925 |
-
msgstr "
|
1926 |
|
1927 |
#: dashboard/publisher/groups-edit.php:161
|
1928 |
-
#, fuzzy
|
1929 |
msgid "Advert Margin"
|
1930 |
-
msgstr "
|
1931 |
|
1932 |
#: dashboard/publisher/groups-edit.php:163
|
1933 |
-
#, fuzzy
|
1934 |
msgid "pixel(s)"
|
1935 |
-
msgstr "
|
1936 |
|
1937 |
#: dashboard/publisher/groups-edit.php:166
|
1938 |
-
#, fuzzy
|
1939 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
1940 |
msgstr ""
|
1941 |
-
"Une marge transparente en dehors de la publicité en pixels. Valeur par "
|
1942 |
-
"défaut : 0."
|
1943 |
|
1944 |
#: dashboard/publisher/groups-edit.php:166
|
1945 |
-
#, fuzzy
|
1946 |
msgid "Set to 0 to disable."
|
1947 |
-
msgstr "
|
1948 |
|
1949 |
#: dashboard/publisher/groups-edit.php:166
|
1950 |
msgid "Margins are automatically disabled for blocks where required."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
#: dashboard/publisher/groups-edit.php:170
|
1954 |
-
#, fuzzy
|
1955 |
msgid "Align the group"
|
1956 |
-
msgstr "
|
1957 |
|
1958 |
#: dashboard/publisher/groups-edit.php:173
|
1959 |
-
#, fuzzy
|
1960 |
msgid "None (Default)"
|
1961 |
-
msgstr "
|
1962 |
|
1963 |
#: dashboard/publisher/groups-edit.php:174
|
1964 |
msgid "Left"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
#: dashboard/publisher/groups-edit.php:175
|
1968 |
-
#, fuzzy
|
1969 |
msgid "Right"
|
1970 |
-
msgstr "
|
1971 |
|
1972 |
#: dashboard/publisher/groups-edit.php:176
|
1973 |
msgid "Center"
|
@@ -2005,11 +1759,8 @@ msgid "Do not forget to put at least one mobile advert in this group."
|
|
2005 |
msgstr ""
|
2006 |
|
2007 |
#: dashboard/publisher/groups-edit.php:196
|
2008 |
-
#, fuzzy
|
2009 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2010 |
msgstr ""
|
2011 |
-
"Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
|
2012 |
-
"défaut de l'identifiant du groupe."
|
2013 |
|
2014 |
#: dashboard/publisher/groups-edit.php:200
|
2015 |
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
@@ -2022,27 +1773,23 @@ msgstr ""
|
|
2022 |
#: dashboard/publisher/groups-edit.php:209
|
2023 |
#: dashboard/publisher/groups-edit.php:247
|
2024 |
#: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
|
2025 |
-
#, fuzzy
|
2026 |
msgid "Disabled"
|
2027 |
-
msgstr "
|
2028 |
|
2029 |
#: dashboard/publisher/groups-edit.php:210
|
2030 |
#: dashboard/publisher/groups-edit.php:248
|
2031 |
-
#, fuzzy
|
2032 |
msgid "Before content"
|
2033 |
-
msgstr "
|
2034 |
|
2035 |
#: dashboard/publisher/groups-edit.php:211
|
2036 |
#: dashboard/publisher/groups-edit.php:249
|
2037 |
-
#, fuzzy
|
2038 |
msgid "After content"
|
2039 |
-
msgstr "
|
2040 |
|
2041 |
#: dashboard/publisher/groups-edit.php:212
|
2042 |
#: dashboard/publisher/groups-edit.php:250
|
2043 |
-
#, fuzzy
|
2044 |
msgid "Before and after content"
|
2045 |
-
msgstr "
|
2046 |
|
2047 |
#: dashboard/publisher/groups-edit.php:213
|
2048 |
#: dashboard/publisher/groups-edit.php:251
|
@@ -2095,35 +1842,28 @@ msgid "after the 8th paragraph"
|
|
2095 |
msgstr ""
|
2096 |
|
2097 |
#: dashboard/publisher/groups-edit.php:233
|
2098 |
-
#, fuzzy
|
2099 |
msgid "Which categories?"
|
2100 |
-
msgstr "
|
2101 |
|
2102 |
#: dashboard/publisher/groups-edit.php:238
|
2103 |
-
#, fuzzy
|
2104 |
msgid "Click the categories posts you want the adverts to show in."
|
2105 |
msgstr ""
|
2106 |
-
"Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
|
2107 |
-
"pulicités."
|
2108 |
|
2109 |
#: dashboard/publisher/groups-edit.php:243
|
2110 |
msgid "In pages?"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
#: dashboard/publisher/groups-edit.php:271
|
2114 |
-
#, fuzzy
|
2115 |
msgid "Which pages?"
|
2116 |
-
msgstr "
|
2117 |
|
2118 |
#: dashboard/publisher/groups-edit.php:276
|
2119 |
-
#, fuzzy
|
2120 |
msgid "Click the pages you want the adverts to show in."
|
2121 |
-
msgstr "
|
2122 |
|
2123 |
#: dashboard/publisher/groups-edit.php:304
|
2124 |
-
#, fuzzy
|
2125 |
msgid "Wrapper code"
|
2126 |
-
msgstr "
|
2127 |
|
2128 |
#: dashboard/publisher/groups-edit.php:305
|
2129 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
@@ -2134,9 +1874,8 @@ msgid "Before advert"
|
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#: dashboard/publisher/groups-edit.php:313
|
2137 |
-
#, fuzzy
|
2138 |
msgid "Options:"
|
2139 |
-
msgstr "
|
2140 |
|
2141 |
#: dashboard/publisher/groups-edit.php:317
|
2142 |
msgid "After advert"
|
@@ -2151,51 +1890,41 @@ msgid "Choose adverts"
|
|
2151 |
msgstr ""
|
2152 |
|
2153 |
#: dashboard/publisher/groups-edit.php:337
|
2154 |
-
#, fuzzy
|
2155 |
msgid "Visible until"
|
2156 |
-
msgstr "
|
2157 |
|
2158 |
#: dashboard/publisher/groups-edit.php:379
|
2159 |
-
#, fuzzy
|
2160 |
msgid "No ads created!"
|
2161 |
-
msgstr "
|
2162 |
|
2163 |
#: dashboard/publisher/groups-main.php:21
|
2164 |
-
#, fuzzy
|
2165 |
msgid "Delete Group"
|
2166 |
-
msgstr "
|
2167 |
|
2168 |
#: dashboard/publisher/groups-main.php:22
|
2169 |
-
#, fuzzy
|
2170 |
msgid "Delete Group including ads"
|
2171 |
-
msgstr "
|
2172 |
|
2173 |
#: dashboard/publisher/groups-main.php:24
|
2174 |
-
#, fuzzy
|
2175 |
msgid "You are about to delete a group"
|
2176 |
-
msgstr "
|
2177 |
|
2178 |
#: dashboard/publisher/groups-main.php:24
|
2179 |
-
#, fuzzy
|
2180 |
msgid "This action can not be undone!"
|
2181 |
-
msgstr "
|
2182 |
|
2183 |
-
#: dashboard/publisher/groups-main.php:24
|
2184 |
-
#: dashboard/settings/maintenance.php:
|
2185 |
-
#: dashboard/settings/maintenance.php:34
|
2186 |
-
#, fuzzy
|
2187 |
msgid "OK to continue, CANCEL to stop."
|
2188 |
-
msgstr "
|
2189 |
|
2190 |
#: dashboard/publisher/groups-main.php:84
|
2191 |
-
#, fuzzy
|
2192 |
msgid "No groups created!"
|
2193 |
-
msgstr "
|
2194 |
|
2195 |
#: dashboard/publisher/groups-report.php:35
|
2196 |
-
#, fuzzy
|
2197 |
msgid "Statistics for group"
|
2198 |
-
msgstr "
|
2199 |
|
2200 |
#: dashboard/settings/advertisers.php:12
|
2201 |
msgid "Advertisers - Available in AdRotate Pro"
|
@@ -2264,128 +1993,130 @@ msgid ""
|
|
2264 |
msgstr ""
|
2265 |
|
2266 |
#: dashboard/settings/general.php:20
|
2267 |
-
|
2268 |
-
|
2269 |
-
msgstr "Utilisez jQuery"
|
2270 |
|
2271 |
#: dashboard/settings/general.php:21
|
2272 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2273 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2274 |
"groups, statistics and some other features."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: dashboard/settings/general.php:
|
2278 |
msgid "Load scripts in footer?"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: dashboard/settings/general.php:
|
2282 |
msgid ""
|
2283 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2284 |
"site."
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: dashboard/settings/general.php:
|
2288 |
msgid "Adblock disguise"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: dashboard/settings/general.php:
|
2292 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: dashboard/settings/general.php:
|
2296 |
msgid ""
|
2297 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: dashboard/settings/general.php:
|
2301 |
msgid ""
|
2302 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2303 |
"instead of the AdRotate widget."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: dashboard/settings/general.php:
|
2307 |
msgid ""
|
2308 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2309 |
"feature will have little effect!"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: dashboard/settings/general.php:
|
2313 |
msgid "Banner Folder"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: dashboard/settings/general.php:
|
2317 |
msgid "Set a location where your banner images will be stored."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: dashboard/settings/general.php:
|
2321 |
msgid "Location"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: dashboard/settings/general.php:
|
2325 |
msgid "(Default: wp-content/banners/)."
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: dashboard/settings/general.php:
|
2329 |
msgid ""
|
2330 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2331 |
"like:"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: dashboard/settings/general.php:
|
2335 |
msgid ""
|
2336 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2337 |
"will show errors when the folder is missing."
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: dashboard/settings/general.php:
|
2341 |
-
#, fuzzy
|
2342 |
msgid "Bot filter"
|
2343 |
-
msgstr "
|
2344 |
|
2345 |
-
#: dashboard/settings/general.php:
|
2346 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: dashboard/settings/general.php:
|
2350 |
-
#, fuzzy
|
2351 |
msgid "User-Agent Filter"
|
2352 |
-
msgstr "
|
2353 |
|
2354 |
-
#: dashboard/settings/general.php:
|
2355 |
msgid ""
|
2356 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: dashboard/settings/general.php:
|
2360 |
msgid ""
|
2361 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2362 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: dashboard/settings/general.php:
|
2366 |
msgid ""
|
2367 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2368 |
"characters are stripped out."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: dashboard/settings/general.php:
|
2372 |
-
#, fuzzy
|
2373 |
msgid ""
|
2374 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2375 |
"well."
|
2376 |
msgstr ""
|
2377 |
-
"En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
|
2378 |
-
"bloqués."
|
2379 |
|
2380 |
-
#: dashboard/settings/general.php:
|
2381 |
-
#, fuzzy
|
2382 |
msgid "Learn more about"
|
2383 |
-
msgstr "
|
2384 |
|
2385 |
-
#: dashboard/settings/general.php:
|
2386 |
-
#, fuzzy
|
2387 |
msgid "user-agents"
|
2388 |
-
msgstr "
|
2389 |
|
2390 |
#: dashboard/settings/geotargeting.php:12
|
2391 |
msgid "Geo Targeting - Available in AdRotate Pro"
|
@@ -2441,9 +2172,8 @@ msgid "Password/License Key"
|
|
2441 |
msgstr ""
|
2442 |
|
2443 |
#: dashboard/settings/maintenance.php:12
|
2444 |
-
#, fuzzy
|
2445 |
msgid "Maintenance"
|
2446 |
-
msgstr "
|
2447 |
|
2448 |
#: dashboard/settings/maintenance.php:13
|
2449 |
msgid ""
|
@@ -2452,74 +2182,54 @@ msgid ""
|
|
2452 |
msgstr ""
|
2453 |
|
2454 |
#: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
|
2455 |
-
#, fuzzy
|
2456 |
msgid "Optimize Database"
|
2457 |
-
msgstr "
|
2458 |
|
2459 |
#: dashboard/settings/maintenance.php:18
|
2460 |
-
#, fuzzy
|
2461 |
msgid "You are about to optimize the AdRotate database."
|
2462 |
-
msgstr "
|
2463 |
|
2464 |
#: dashboard/settings/maintenance.php:18
|
2465 |
-
#, fuzzy
|
2466 |
msgid "Did you make a backup of your database?"
|
2467 |
-
msgstr "
|
2468 |
|
2469 |
#: dashboard/settings/maintenance.php:18
|
2470 |
-
#, fuzzy
|
2471 |
msgid ""
|
2472 |
"This may take a moment and may cause your website to respond slow "
|
2473 |
"temporarily!"
|
2474 |
msgstr ""
|
2475 |
-
"Cela peut prendre un moment et peut causer à votre site un ralentissement "
|
2476 |
-
"temporaire!"
|
2477 |
|
2478 |
#: dashboard/settings/maintenance.php:19
|
2479 |
-
#, fuzzy
|
2480 |
msgid "Cleans up overhead data in the AdRotate tables."
|
2481 |
-
msgstr "
|
2482 |
|
2483 |
#: dashboard/settings/maintenance.php:20
|
2484 |
-
#, fuzzy
|
2485 |
msgid ""
|
2486 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
2487 |
"made. This can vary from nothing to hundreds of KiB of data."
|
2488 |
msgstr ""
|
2489 |
-
"Les données en surcharge sont des données accumulées résultants des nombreux "
|
2490 |
-
"changements que vous avez fait. Cela peut varier de rien à des centaines de "
|
2491 |
-
"KB de données."
|
2492 |
|
2493 |
#: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
|
2494 |
-
#, fuzzy
|
2495 |
msgid "Clean-up Database"
|
2496 |
-
msgstr "
|
2497 |
|
2498 |
#: dashboard/settings/maintenance.php:26
|
2499 |
-
#, fuzzy
|
2500 |
msgid ""
|
2501 |
"You are about to clean up your database. This may delete expired schedules "
|
2502 |
"and older statistics."
|
2503 |
msgstr ""
|
2504 |
-
"Vous êtes sur le point de nettoyer votre base de données. Cela peut "
|
2505 |
-
"supprimer des calendriers périmés et des vieilles statistiques.."
|
2506 |
|
2507 |
#: dashboard/settings/maintenance.php:26
|
2508 |
-
#, fuzzy
|
2509 |
msgid "Are you sure you want to continue?"
|
2510 |
-
msgstr "
|
2511 |
|
2512 |
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
2513 |
-
#, fuzzy
|
2514 |
msgid "This might take a while and may slow down your site during this action!"
|
2515 |
msgstr ""
|
2516 |
-
"Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
|
2517 |
-
"interval!"
|
2518 |
|
2519 |
#: dashboard/settings/maintenance.php:27
|
2520 |
-
#, fuzzy
|
2521 |
msgid "Delete stats older than 356 days (Optional)."
|
2522 |
-
msgstr "
|
2523 |
|
2524 |
#: dashboard/settings/maintenance.php:28
|
2525 |
msgid ""
|
@@ -2540,29 +2250,22 @@ msgid ""
|
|
2540 |
msgstr ""
|
2541 |
|
2542 |
#: dashboard/settings/maintenance.php:32
|
2543 |
-
#, fuzzy
|
2544 |
msgid "Re-evaluate Ads"
|
2545 |
-
msgstr "
|
2546 |
|
2547 |
#: dashboard/settings/maintenance.php:34
|
2548 |
-
#, fuzzy
|
2549 |
msgid "Re-evaluate all ads"
|
2550 |
-
msgstr "
|
2551 |
|
2552 |
#: dashboard/settings/maintenance.php:34
|
2553 |
-
#, fuzzy
|
2554 |
msgid "You are about to check all ads for errors."
|
2555 |
-
msgstr "
|
2556 |
|
2557 |
#: dashboard/settings/maintenance.php:35
|
2558 |
-
#, fuzzy
|
2559 |
msgid ""
|
2560 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
2561 |
"in. Normally you should not need this feature."
|
2562 |
msgstr ""
|
2563 |
-
"Cela appliquera toutes les règles d'évaluation à toutes les annonces pour "
|
2564 |
-
"voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
|
2565 |
-
"fonctionalité."
|
2566 |
|
2567 |
#: dashboard/settings/maintenance.php:39
|
2568 |
msgid ""
|
@@ -2578,9 +2281,8 @@ msgid ""
|
|
2578 |
msgstr ""
|
2579 |
|
2580 |
#: dashboard/settings/maintenance.php:41
|
2581 |
-
#, fuzzy
|
2582 |
msgid "Troubleshooting"
|
2583 |
-
msgstr "
|
2584 |
|
2585 |
#: dashboard/settings/maintenance.php:42
|
2586 |
msgid ""
|
@@ -2591,9 +2293,8 @@ msgid ""
|
|
2591 |
msgstr ""
|
2592 |
|
2593 |
#: dashboard/settings/maintenance.php:45
|
2594 |
-
#, fuzzy
|
2595 |
msgid "Developer Debug"
|
2596 |
-
msgstr "
|
2597 |
|
2598 |
#: dashboard/settings/maintenance.php:47
|
2599 |
msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
|
@@ -2604,67 +2305,54 @@ msgid "View advert specs and (some) stats in the dashboard."
|
|
2604 |
msgstr ""
|
2605 |
|
2606 |
#: dashboard/settings/maintenance.php:49
|
2607 |
-
#, fuzzy
|
2608 |
msgid ""
|
2609 |
"Disable timers for clicks and impressions and enable a alert window for "
|
2610 |
"clicktracking."
|
2611 |
msgstr ""
|
2612 |
-
"Désactivez les minuteurs pour les clicks et les impressions et activez une "
|
2613 |
-
"fenêtre d'alerte pour le suivi des clicks."
|
2614 |
|
2615 |
#: dashboard/settings/maintenance.php:50
|
2616 |
-
#, fuzzy
|
2617 |
msgid "Temporarily disable encryption on the redirect url."
|
2618 |
-
msgstr "
|
2619 |
|
2620 |
#: dashboard/settings/maintenance.php:55
|
2621 |
msgid "Status and Versions"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
#: dashboard/settings/maintenance.php:58
|
2625 |
-
#, fuzzy
|
2626 |
msgid "Current version:"
|
2627 |
-
msgstr "
|
2628 |
|
2629 |
#: dashboard/settings/maintenance.php:59
|
2630 |
-
#, fuzzy
|
2631 |
msgid "Previous version:"
|
2632 |
-
msgstr "
|
2633 |
|
2634 |
#: dashboard/settings/maintenance.php:62
|
2635 |
-
#, fuzzy
|
2636 |
msgid "Current database version:"
|
2637 |
-
msgstr "
|
2638 |
|
2639 |
#: dashboard/settings/maintenance.php:63
|
2640 |
-
#, fuzzy
|
2641 |
msgid "Previous database version:"
|
2642 |
-
msgstr "
|
2643 |
|
2644 |
#: dashboard/settings/maintenance.php:66
|
2645 |
-
#, fuzzy
|
2646 |
msgid "Current status of adverts"
|
2647 |
-
msgstr "
|
2648 |
|
2649 |
#: dashboard/settings/maintenance.php:67
|
2650 |
-
#, fuzzy
|
2651 |
msgid "Normal"
|
2652 |
-
msgstr "
|
2653 |
|
2654 |
#: dashboard/settings/maintenance.php:67
|
2655 |
-
#, fuzzy
|
2656 |
msgid "Error"
|
2657 |
-
msgstr "
|
2658 |
|
2659 |
#: dashboard/settings/maintenance.php:67
|
2660 |
-
#, fuzzy
|
2661 |
msgid "Expired"
|
2662 |
-
msgstr "
|
2663 |
|
2664 |
#: dashboard/settings/maintenance.php:67
|
2665 |
-
#, fuzzy
|
2666 |
msgid "Expires Soon"
|
2667 |
-
msgstr "
|
2668 |
|
2669 |
#: dashboard/settings/maintenance.php:67
|
2670 |
msgid "Unknown"
|
@@ -2675,100 +2363,68 @@ msgid "Ad evaluation next run:"
|
|
2675 |
msgstr ""
|
2676 |
|
2677 |
#: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
|
2678 |
-
#, fuzzy
|
2679 |
msgid "Not scheduled!"
|
2680 |
-
msgstr "
|
2681 |
|
2682 |
#: dashboard/settings/maintenance.php:74
|
2683 |
msgid "Clean Trackerdata next run:"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
#: dashboard/settings/misc.php:12
|
2687 |
-
#, fuzzy
|
2688 |
msgid "Miscellaneous"
|
2689 |
-
msgstr "
|
2690 |
|
2691 |
#: dashboard/settings/misc.php:15
|
2692 |
-
#, fuzzy
|
2693 |
msgid "Widget alignment"
|
2694 |
-
msgstr "
|
2695 |
|
2696 |
#: dashboard/settings/misc.php:16
|
2697 |
-
#, fuzzy
|
2698 |
msgid ""
|
2699 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2700 |
"not always help!)"
|
2701 |
msgstr ""
|
2702 |
-
"Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
|
2703 |
-
"votre thème. Cette fonction peux ne pas régler le soucis!"
|
2704 |
|
2705 |
#: dashboard/settings/misc.php:19
|
2706 |
-
#, fuzzy
|
2707 |
msgid "Widget padding"
|
2708 |
-
msgstr "
|
2709 |
|
2710 |
#: dashboard/settings/misc.php:20
|
2711 |
-
#, fuzzy
|
2712 |
msgid ""
|
2713 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2714 |
"not always work!)"
|
2715 |
msgstr ""
|
2716 |
-
"Activez cette option pour supprimer la marge (espace vide) autour des "
|
2717 |
-
"publicités dans les widgets. Ceci ne fonctionne pas toujours!"
|
2718 |
|
2719 |
#: dashboard/settings/misc.php:24
|
2720 |
-
#, fuzzy
|
2721 |
msgid "NOTICE:"
|
2722 |
msgstr ""
|
2723 |
-
"NOTA BENE : Les options ci-dessous sont destinées à optimiser votre base de "
|
2724 |
-
"données. Ils ne sont appliqués qu'à vos publicités/groupes et statistiques, "
|
2725 |
-
"et non pas aux autres parties de Wordpress! Ayez toujours une sauvegarde de "
|
2726 |
-
"votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
|
2727 |
-
"de données est lente ou ne réponds pas."
|
2728 |
|
2729 |
#: dashboard/settings/misc.php:25
|
2730 |
-
#, fuzzy
|
2731 |
msgid ""
|
2732 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
2733 |
"You need to add the following line to your wp-config.php near the bottom or "
|
2734 |
"below line 52 (which defines another hash.) Using the \"late init\" function "
|
2735 |
"needs to be enabled in W3 Total Cache as well too."
|
2736 |
msgstr ""
|
2737 |
-
"Vous avez activé le support de W3 Total Caching, mais vous n'avez pas defini "
|
2738 |
-
"le hash de sécurité. Vous devez ajouter la ligne suivante à votre fichier wp-"
|
2739 |
-
"config.php après la ligne 52 (qui définit un autre hash). De plus, la "
|
2740 |
-
"fonction \"late init\" doit être activée dans W3 Total Cache."
|
2741 |
|
2742 |
#: dashboard/settings/misc.php:29
|
2743 |
-
#, fuzzy
|
2744 |
msgid "W3 Total Caching"
|
2745 |
-
msgstr "
|
2746 |
|
2747 |
#: dashboard/settings/misc.php:30
|
2748 |
-
#, fuzzy
|
2749 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2750 |
-
msgstr "
|
2751 |
|
2752 |
#: dashboard/settings/misc.php:34
|
2753 |
-
#, fuzzy
|
2754 |
msgid ""
|
2755 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2756 |
"to refresh the cache. This can take up to a week if not done manually."
|
2757 |
msgstr ""
|
2758 |
-
"Un certain délai est possible avant que les publicités ne commencent à "
|
2759 |
-
"tourner correctement sur votre site. Le plugin de mise en cache doit "
|
2760 |
-
"actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
|
2761 |
-
"pas fait manuellement."
|
2762 |
|
2763 |
#: dashboard/settings/misc.php:34
|
2764 |
-
#, fuzzy
|
2765 |
msgid ""
|
2766 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2767 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
2768 |
msgstr ""
|
2769 |
-
"Le support de la mise en cache ne fonctionne qu'avec le shortcode ou le "
|
2770 |
-
"widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
|
2771 |
-
"PHP dans le code d'exclusion vous-même."
|
2772 |
|
2773 |
#: dashboard/settings/notifications.php:12
|
2774 |
msgid "Notifications - Available in AdRotate Pro"
|
@@ -2932,49 +2588,40 @@ msgid "Roles"
|
|
2932 |
msgstr ""
|
2933 |
|
2934 |
#: dashboard/settings/roles.php:13
|
2935 |
-
#, fuzzy
|
2936 |
msgid "Who has access to what?"
|
2937 |
-
msgstr "
|
2938 |
|
2939 |
#: dashboard/settings/roles.php:16
|
2940 |
-
#, fuzzy
|
2941 |
msgid "Manage/Add/Edit adverts"
|
2942 |
-
msgstr "
|
2943 |
|
2944 |
#: dashboard/settings/roles.php:20
|
2945 |
-
#, fuzzy
|
2946 |
msgid "Role to see and add/edit ads."
|
2947 |
-
msgstr "
|
2948 |
|
2949 |
#: dashboard/settings/roles.php:24
|
2950 |
-
#, fuzzy
|
2951 |
msgid "Delete/Reset adverts"
|
2952 |
-
msgstr "
|
2953 |
|
2954 |
#: dashboard/settings/roles.php:28
|
2955 |
-
#, fuzzy
|
2956 |
msgid "Role to delete ads and reset stats."
|
2957 |
-
msgstr "
|
2958 |
|
2959 |
#: dashboard/settings/roles.php:32
|
2960 |
-
#, fuzzy
|
2961 |
msgid "Manage/Add/Edit groups"
|
2962 |
-
msgstr "
|
2963 |
|
2964 |
#: dashboard/settings/roles.php:36
|
2965 |
-
#, fuzzy
|
2966 |
msgid "Role to see and add/edit groups."
|
2967 |
-
msgstr "
|
2968 |
|
2969 |
#: dashboard/settings/roles.php:40
|
2970 |
-
#, fuzzy
|
2971 |
msgid "Delete groups"
|
2972 |
-
msgstr "
|
2973 |
|
2974 |
#: dashboard/settings/roles.php:44
|
2975 |
-
#, fuzzy
|
2976 |
msgid "Role to delete groups."
|
2977 |
-
msgstr "
|
2978 |
|
2979 |
#: dashboard/settings/statistics.php:13
|
2980 |
msgid "Track statistics for your adverts."
|
@@ -3059,35 +2706,40 @@ msgid "Impression timer"
|
|
3059 |
msgstr ""
|
3060 |
|
3061 |
#: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
|
3062 |
-
#, fuzzy
|
3063 |
msgid "Seconds."
|
3064 |
-
msgstr "
|
3065 |
|
3066 |
#: dashboard/settings/statistics.php:55
|
3067 |
-
#, fuzzy
|
3068 |
msgid "Default: 60."
|
3069 |
-
msgstr "
|
3070 |
|
3071 |
#: dashboard/settings/statistics.php:55
|
3072 |
-
#, fuzzy
|
3073 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
3074 |
-
msgstr "
|
3075 |
|
3076 |
#: dashboard/settings/statistics.php:59
|
3077 |
msgid "Click timer"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
#: dashboard/settings/statistics.php:62
|
3081 |
-
#, fuzzy
|
3082 |
msgid "Default: 86400."
|
3083 |
-
msgstr "
|
3084 |
|
3085 |
#: dashboard/settings/statistics.php:62
|
3086 |
-
#, fuzzy
|
3087 |
msgid ""
|
3088 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
3089 |
msgstr ""
|
3090 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3091 |
|
3092 |
#, fuzzy
|
3093 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:47+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:47+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: en_US\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:849
|
|
|
21 |
msgid "No files found"
|
22 |
+
msgstr ""
|
23 |
|
24 |
+
#: adrotate-functions.php:852
|
|
|
25 |
msgid "Folder not found or not accessible"
|
26 |
+
msgstr ""
|
27 |
|
28 |
+
#: adrotate-functions.php:901
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:905
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:909
|
|
|
37 |
msgid "Ad(s) deleted"
|
38 |
+
msgstr ""
|
39 |
|
40 |
+
#: adrotate-functions.php:913
|
|
|
41 |
msgid "Group deleted"
|
42 |
+
msgstr ""
|
43 |
|
44 |
+
#: adrotate-functions.php:917
|
|
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
+
msgstr ""
|
47 |
|
48 |
+
#: adrotate-functions.php:921
|
|
|
49 |
msgid "Ad(s) renewed"
|
50 |
+
msgstr ""
|
51 |
|
52 |
+
#: adrotate-functions.php:925
|
|
|
53 |
msgid "Ad(s) deactivated"
|
54 |
+
msgstr ""
|
55 |
|
56 |
+
#: adrotate-functions.php:929
|
|
|
57 |
msgid "Ad(s) activated"
|
58 |
+
msgstr ""
|
59 |
|
60 |
+
#: adrotate-functions.php:933
|
|
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
+
msgstr ""
|
63 |
|
64 |
+
#: adrotate-functions.php:937
|
|
|
65 |
msgid "Export created"
|
66 |
+
msgstr ""
|
67 |
|
68 |
+
#: adrotate-functions.php:942
|
|
|
69 |
msgid "Settings saved"
|
70 |
+
msgstr ""
|
71 |
|
72 |
+
#: adrotate-functions.php:946
|
|
|
73 |
msgid "Database optimized"
|
74 |
+
msgstr ""
|
75 |
|
76 |
+
#: adrotate-functions.php:950
|
|
|
77 |
msgid "Database repaired"
|
78 |
+
msgstr ""
|
79 |
|
80 |
+
#: adrotate-functions.php:954
|
|
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr ""
|
|
|
83 |
|
84 |
+
#: adrotate-functions.php:958
|
|
|
85 |
msgid "Empty database records removed"
|
86 |
+
msgstr ""
|
87 |
|
88 |
+
#: adrotate-functions.php:963
|
|
|
89 |
msgid "Action prohibited"
|
90 |
+
msgstr ""
|
91 |
|
92 |
+
#: adrotate-functions.php:967
|
93 |
msgid ""
|
94 |
"The ad was saved but has an issue which might prevent it from working "
|
95 |
"properly. Review the colored ad."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: adrotate-functions.php:971
|
|
|
99 |
msgid "No data found in selected time period"
|
100 |
+
msgstr ""
|
101 |
|
102 |
+
#: adrotate-functions.php:975
|
|
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr ""
|
|
|
105 |
|
106 |
+
#: adrotate-functions.php:979
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: adrotate-functions.php:983
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:987
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-manage-publisher.php:712
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-output.php:639
|
|
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
+
msgstr ""
|
125 |
|
126 |
+
#: adrotate-output.php:640
|
|
|
127 |
msgid ""
|
128 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
129 |
"Verify if the url used is valid or log in via your browser."
|
130 |
msgstr ""
|
|
|
|
|
|
|
131 |
|
132 |
+
#: adrotate-output.php:641
|
|
|
133 |
msgid ""
|
134 |
"If you have received the url you want to visit via email, you are being "
|
135 |
"tricked!"
|
136 |
+
msgstr ""
|
137 |
|
138 |
+
#: adrotate-output.php:642
|
|
|
139 |
msgid "Contact support if the issue persists:"
|
140 |
+
msgstr ""
|
141 |
|
142 |
+
#: adrotate-output.php:660
|
|
|
143 |
msgid ""
|
144 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
145 |
"restrictions or does not exist!"
|
146 |
msgstr ""
|
|
|
|
|
147 |
|
148 |
+
#: adrotate-output.php:662
|
|
|
149 |
msgid ""
|
150 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
151 |
"restrictions!"
|
152 |
msgstr ""
|
|
|
|
|
153 |
|
154 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
|
|
155 |
msgid ""
|
156 |
"Either there are no banners, they are disabled or none qualified for this "
|
157 |
"location!"
|
158 |
msgstr ""
|
|
|
|
|
159 |
|
160 |
+
#: adrotate-output.php:677
|
|
|
161 |
msgid "Error, no Ad ID set! Check your syntax!"
|
162 |
+
msgstr ""
|
163 |
|
164 |
+
#: adrotate-output.php:683
|
|
|
165 |
msgid "Error, no group ID set! Check your syntax!"
|
166 |
+
msgstr ""
|
167 |
|
168 |
+
#: adrotate-output.php:688
|
|
|
169 |
msgid "Error, group does not exist! Check your syntax!"
|
170 |
+
msgstr ""
|
171 |
|
172 |
+
#: adrotate-output.php:694
|
|
|
173 |
msgid ""
|
174 |
"There was an error locating the database tables for AdRotate. Please "
|
175 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
176 |
msgstr ""
|
|
|
|
|
|
|
177 |
|
178 |
+
#: adrotate-output.php:694
|
|
|
179 |
msgid "If this does not solve the issue please seek support at"
|
180 |
msgstr ""
|
|
|
|
|
181 |
|
182 |
+
#: adrotate-output.php:700
|
|
|
183 |
msgid "An unknown error occured."
|
184 |
+
msgstr ""
|
185 |
|
186 |
+
#: adrotate-output.php:725
|
|
|
187 |
msgid "active ad(s) expired."
|
188 |
+
msgstr ""
|
189 |
|
190 |
+
#: adrotate-output.php:725
|
|
|
191 |
msgid "Take action now"
|
192 |
+
msgstr ""
|
193 |
|
194 |
+
#: adrotate-output.php:727
|
|
|
195 |
msgid "active ad(s) are about to expire."
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: adrotate-output.php:727
|
|
|
199 |
msgid "Check it out"
|
200 |
+
msgstr ""
|
201 |
|
202 |
+
#: adrotate-output.php:729
|
|
|
203 |
msgid "active ad(s) with configuration errors."
|
204 |
+
msgstr ""
|
205 |
|
206 |
+
#: adrotate-output.php:729
|
|
|
207 |
msgid "Solve this"
|
208 |
+
msgstr ""
|
209 |
|
210 |
+
#: adrotate-output.php:731
|
|
|
211 |
msgid "ad(s) expired."
|
212 |
+
msgstr ""
|
213 |
|
214 |
+
#: adrotate-output.php:731
|
|
|
215 |
msgid "ad(s) are about to expire."
|
216 |
+
msgstr ""
|
217 |
|
218 |
+
#: adrotate-output.php:731
|
|
|
219 |
msgid "ad(s) with configuration errors."
|
220 |
+
msgstr ""
|
221 |
|
222 |
+
#: adrotate-output.php:731
|
|
|
223 |
msgid "Fix this as soon as possible"
|
224 |
+
msgstr ""
|
225 |
|
226 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
227 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
228 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
229 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
230 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
231 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
232 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
233 |
#: dashboard/settings/geotargeting.php:26
|
|
|
234 |
msgid "Buy now"
|
235 |
+
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:744
|
238 |
msgid ""
|
239 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
240 |
"to the <strong>PRO</strong> version"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: adrotate-output.php:744
|
244 |
#, php-format
|
245 |
msgid ""
|
246 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: adrotate-output.php:744
|
250 |
msgid "Thank you for your purchase!"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:788
|
254 |
msgid ""
|
255 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
256 |
"this menu. Check out the"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: adrotate-output.php:788
|
260 |
msgid "manuals"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
264 |
msgid "and"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: adrotate-output.php:788
|
268 |
msgid "forums"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: adrotate-output.php:821
|
272 |
msgid "Useful Links"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: adrotate-output.php:822
|
276 |
msgid "Useful links to learn more about AdRotate"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: adrotate-output.php:824
|
|
|
280 |
msgid "AdRotate Page"
|
281 |
+
msgstr ""
|
282 |
|
283 |
+
#: adrotate-output.php:825
|
|
|
284 |
msgid "Getting Started With AdRotate"
|
285 |
+
msgstr ""
|
286 |
|
287 |
+
#: adrotate-output.php:826
|
|
|
288 |
msgid "AdRotate manuals"
|
289 |
+
msgstr ""
|
290 |
|
291 |
+
#: adrotate-output.php:827
|
|
|
292 |
msgid "AdRotate Support Forum"
|
293 |
+
msgstr ""
|
294 |
|
295 |
+
#: adrotate-output.php:853
|
|
|
296 |
msgid "Help AdRotate Grow"
|
297 |
+
msgstr ""
|
298 |
|
299 |
+
#: adrotate-output.php:854
|
|
|
300 |
msgid "Brought to you by"
|
301 |
+
msgstr ""
|
302 |
|
303 |
+
#: adrotate-output.php:861
|
304 |
msgid ""
|
305 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
306 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: adrotate-output.php:861
|
310 |
msgid "If you find AdRotate useful please leave your honest"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: adrotate-output.php:861
|
314 |
msgid "rating"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: adrotate-output.php:861
|
|
|
318 |
msgid "review"
|
319 |
+
msgstr ""
|
320 |
|
321 |
+
#: adrotate-output.php:861
|
322 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:893
|
|
|
326 |
msgid "Available in AdRotate Pro"
|
327 |
+
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:893
|
|
|
330 |
msgid "More information..."
|
331 |
+
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:894
|
|
|
334 |
msgid "This feature is available in AdRotate Pro"
|
335 |
+
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:894
|
|
|
338 |
msgid "Learn more"
|
339 |
+
msgstr ""
|
340 |
|
341 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
|
342 |
#: dashboard/publisher/adverts-edit.php:242
|
|
|
343 |
msgid "January"
|
344 |
+
msgstr ""
|
345 |
|
346 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
|
347 |
#: dashboard/publisher/adverts-edit.php:243
|
|
|
348 |
msgid "February"
|
349 |
+
msgstr ""
|
350 |
|
351 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
|
352 |
#: dashboard/publisher/adverts-edit.php:244
|
|
|
353 |
msgid "March"
|
354 |
+
msgstr ""
|
355 |
|
356 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
|
357 |
#: dashboard/publisher/adverts-edit.php:245
|
|
|
358 |
msgid "April"
|
359 |
+
msgstr ""
|
360 |
|
361 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
|
362 |
#: dashboard/publisher/adverts-edit.php:246
|
|
|
363 |
msgid "May"
|
364 |
+
msgstr ""
|
365 |
|
366 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
|
367 |
#: dashboard/publisher/adverts-edit.php:247
|
|
|
368 |
msgid "June"
|
369 |
+
msgstr ""
|
370 |
|
371 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
|
372 |
#: dashboard/publisher/adverts-edit.php:248
|
|
|
373 |
msgid "July"
|
374 |
+
msgstr ""
|
375 |
|
376 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
|
377 |
#: dashboard/publisher/adverts-edit.php:249
|
|
|
378 |
msgid "August"
|
379 |
+
msgstr ""
|
380 |
|
381 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
|
382 |
#: dashboard/publisher/adverts-edit.php:250
|
|
|
383 |
msgid "September"
|
384 |
+
msgstr ""
|
385 |
|
386 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
|
387 |
#: dashboard/publisher/adverts-edit.php:251
|
|
|
388 |
msgid "October"
|
389 |
+
msgstr ""
|
390 |
|
391 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
|
392 |
#: dashboard/publisher/adverts-edit.php:252
|
|
|
393 |
msgid "November"
|
394 |
+
msgstr ""
|
395 |
|
396 |
#: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
|
397 |
#: dashboard/publisher/adverts-edit.php:253
|
|
|
398 |
msgid "December"
|
399 |
+
msgstr ""
|
400 |
|
401 |
#: adrotate-statistics.php:222
|
|
|
402 |
msgid "Previous"
|
403 |
+
msgstr ""
|
404 |
|
405 |
#: adrotate-statistics.php:224
|
|
|
406 |
msgid "This month"
|
407 |
+
msgstr ""
|
408 |
|
409 |
#: adrotate-statistics.php:225
|
|
|
410 |
msgid "Next"
|
411 |
+
msgstr ""
|
412 |
|
413 |
#: adrotate-statistics.php:278
|
|
|
414 |
msgid "No data to show!"
|
415 |
+
msgstr ""
|
416 |
|
417 |
#: adrotate-widget.php:112
|
|
|
418 |
msgid "Title (optional):"
|
419 |
+
msgstr ""
|
420 |
|
421 |
#: adrotate-widget.php:115
|
|
|
422 |
msgid "HTML will be stripped out."
|
423 |
+
msgstr ""
|
424 |
|
425 |
#: adrotate-widget.php:118
|
|
|
426 |
msgid "Description (optional):"
|
427 |
+
msgstr ""
|
428 |
|
429 |
#: adrotate-widget.php:121
|
|
|
430 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
431 |
msgstr ""
|
|
|
|
|
432 |
|
433 |
#: adrotate-widget.php:124
|
|
|
434 |
msgid "Type:"
|
435 |
+
msgstr ""
|
436 |
|
437 |
#: adrotate-widget.php:126
|
|
|
438 |
msgid "Single Ad - Use Ad ID"
|
439 |
+
msgstr ""
|
440 |
|
441 |
#: adrotate-widget.php:127
|
|
|
442 |
msgid "Group of Ads - Use group ID"
|
443 |
+
msgstr ""
|
444 |
|
445 |
#: adrotate-widget.php:130
|
|
|
446 |
msgid "Choose what you want to use this widget for"
|
447 |
+
msgstr ""
|
448 |
|
449 |
#: adrotate-widget.php:133
|
|
|
450 |
msgid "ID:"
|
451 |
+
msgstr ""
|
452 |
|
453 |
#: adrotate-widget.php:136
|
|
|
454 |
msgid "Fill in the ID of the type you want to display!"
|
455 |
+
msgstr ""
|
456 |
|
457 |
+
#: adrotate.php:106
|
|
|
458 |
msgid "General Info"
|
459 |
+
msgstr ""
|
460 |
|
461 |
+
#: adrotate.php:107
|
|
|
462 |
msgid "AdRotate Pro"
|
463 |
+
msgstr ""
|
464 |
|
465 |
+
#: adrotate.php:108
|
|
|
466 |
msgid "Manage Ads"
|
467 |
+
msgstr ""
|
468 |
|
469 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
|
|
470 |
msgid "Manage Groups"
|
471 |
+
msgstr ""
|
472 |
|
473 |
+
#: adrotate.php:110 adrotate.php:408
|
|
|
474 |
msgid "Manage Schedules"
|
475 |
+
msgstr ""
|
476 |
|
477 |
+
#: adrotate.php:111
|
|
|
478 |
msgid "Manage Media"
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: adrotate.php:112
|
|
|
482 |
msgid "Settings"
|
483 |
+
msgstr ""
|
484 |
|
485 |
+
#: adrotate.php:135
|
|
|
486 |
msgid "AdRotate Info"
|
487 |
+
msgstr ""
|
488 |
|
489 |
+
#: adrotate.php:156
|
|
|
490 |
msgid "AdRotate Professional"
|
491 |
+
msgstr ""
|
492 |
|
493 |
+
#: adrotate.php:199
|
|
|
494 |
msgid "Ad Management"
|
495 |
+
msgstr ""
|
496 |
|
497 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
|
|
498 |
msgid "Manage"
|
499 |
+
msgstr ""
|
500 |
|
501 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
|
|
502 |
msgid "Add New"
|
503 |
+
msgstr ""
|
504 |
|
505 |
+
#: adrotate.php:337
|
|
|
506 |
msgid "Group Management"
|
507 |
+
msgstr ""
|
508 |
|
509 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
510 |
#: dashboard/publisher/groups-main.php:70
|
|
|
511 |
msgid "Report"
|
512 |
+
msgstr ""
|
513 |
|
514 |
+
#: adrotate.php:399
|
|
|
515 |
msgid "Schedule Management available in AdRotate Pro"
|
516 |
+
msgstr ""
|
517 |
|
518 |
+
#: adrotate.php:409
|
519 |
msgid ""
|
520 |
"Schedule management and multiple schedules per advert is available in "
|
521 |
"AdRotate Pro."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
525 |
#: dashboard/publisher/adverts-main.php:114
|
526 |
#: dashboard/publisher/groups-edit.php:75
|
527 |
#: dashboard/publisher/groups-main.php:89
|
|
|
528 |
msgid "More information"
|
529 |
+
msgstr ""
|
530 |
|
531 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
532 |
#: dashboard/publisher/adverts-error.php:19
|
533 |
#: dashboard/publisher/adverts-main.php:20
|
534 |
#: dashboard/publisher/groups-main.php:20
|
|
|
535 |
msgid "Bulk Actions"
|
536 |
+
msgstr ""
|
537 |
|
538 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
539 |
#: dashboard/publisher/adverts-error.php:29
|
540 |
#: dashboard/publisher/adverts-main.php:30
|
541 |
#: dashboard/publisher/groups-main.php:24
|
|
|
542 |
msgid "Go"
|
543 |
+
msgstr ""
|
544 |
|
545 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
546 |
#: dashboard/publisher/adverts-error.php:39
|
547 |
#: dashboard/publisher/adverts-main.php:39
|
548 |
#: dashboard/publisher/groups-edit.php:51
|
549 |
#: dashboard/publisher/groups-main.php:32
|
|
|
550 |
msgid "ID"
|
551 |
+
msgstr ""
|
552 |
|
553 |
+
#: adrotate.php:427
|
|
|
554 |
msgid "Start"
|
555 |
+
msgstr ""
|
556 |
|
557 |
+
#: adrotate.php:427
|
|
|
558 |
msgid "End"
|
559 |
+
msgstr ""
|
560 |
|
561 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
562 |
#: dashboard/publisher/groups-main.php:34
|
|
|
563 |
msgid "Ads"
|
564 |
+
msgstr ""
|
565 |
|
566 |
+
#: adrotate.php:430
|
|
|
567 |
msgid "Max Impressions"
|
568 |
+
msgstr ""
|
569 |
|
570 |
+
#: adrotate.php:431
|
|
|
571 |
msgid "Max Clicks"
|
572 |
+
msgstr ""
|
573 |
|
574 |
+
#: adrotate.php:461
|
|
|
575 |
msgid "No schedules created yet!"
|
576 |
+
msgstr ""
|
577 |
|
578 |
+
#: adrotate.php:466
|
579 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: adrotate.php:466 adrotate.php:532
|
|
|
583 |
msgid "Upgrade today!"
|
584 |
+
msgstr ""
|
585 |
|
586 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
587 |
#: dashboard/publisher/groups-edit.php:387
|
|
|
588 |
msgid "Expires soon."
|
589 |
+
msgstr ""
|
590 |
|
591 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
592 |
#: dashboard/publisher/groups-edit.php:388
|
|
|
593 |
msgid "Has expired."
|
594 |
+
msgstr ""
|
595 |
|
596 |
+
#: adrotate.php:494
|
|
|
597 |
msgid "Media Management available in AdRotate Pro"
|
598 |
+
msgstr ""
|
599 |
|
600 |
+
#: adrotate.php:496
|
601 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: adrotate.php:496
|
605 |
msgid ""
|
606 |
"This is useful if you use responsive adverts with multiple images or have "
|
607 |
"HTML5 adverts containing multiple files."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: adrotate.php:496
|
611 |
msgid "Media uploading and management is available in AdRotate Pro."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: adrotate.php:498
|
615 |
msgid "Upload new file"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: adrotate.php:499
|
619 |
msgid "Accepted files:"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: adrotate.php:499
|
623 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: adrotate.php:499
|
627 |
msgid "Maximum size is 512Kb."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: adrotate.php:499
|
631 |
msgid "Important:"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: adrotate.php:499
|
635 |
msgid ""
|
636 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
637 |
"spaces with a - or _."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: adrotate.php:499
|
641 |
msgid ""
|
642 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
643 |
"file so it knows about the changed name. For example for the javascript file."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:502
|
647 |
msgid ""
|
648 |
"For responsive adverts make sure the filename is in the following format; "
|
649 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
|
|
653 |
msgid ""
|
654 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
655 |
"filename instead of \".full\" for the various viewports."
|
656 |
msgstr ""
|
|
|
|
|
|
|
657 |
|
658 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
659 |
#: dashboard/publisher/groups-edit.php:320
|
|
|
660 |
msgid "Example:"
|
661 |
+
msgstr ""
|
662 |
|
663 |
+
#: adrotate.php:504
|
|
|
664 |
msgid ""
|
665 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
666 |
"for different viewports."
|
667 |
msgstr ""
|
|
|
|
|
668 |
|
669 |
+
#: adrotate.php:508
|
670 |
msgid "Upload file"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: adrotate.php:508
|
674 |
msgid "Click only once per file!"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: adrotate.php:511
|
678 |
msgid "Available files in"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
682 |
#: dashboard/publisher/groups-main.php:33
|
|
|
683 |
msgid "Name"
|
684 |
+
msgstr ""
|
685 |
|
686 |
+
#: adrotate.php:517
|
|
|
687 |
msgid "Actions"
|
688 |
+
msgstr ""
|
689 |
|
690 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
691 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
692 |
#: dashboard/publisher/adverts-disabled.php:22
|
693 |
#: dashboard/publisher/adverts-error.php:21
|
694 |
#: dashboard/publisher/adverts-main.php:22
|
|
|
695 |
msgid "Delete"
|
696 |
+
msgstr ""
|
697 |
|
698 |
+
#: adrotate.php:532
|
699 |
msgid ""
|
700 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: adrotate.php:532
|
704 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: adrotate.php:561
|
|
|
708 |
msgid "AdRotate Settings"
|
709 |
+
msgstr ""
|
710 |
|
711 |
+
#: adrotate.php:632
|
|
|
712 |
msgid "Update Options"
|
713 |
+
msgstr ""
|
714 |
|
715 |
#: dashboard/adrotatepro.php:20
|
|
|
716 |
msgid "Satisfy your advertisers"
|
717 |
+
msgstr ""
|
718 |
|
719 |
#: dashboard/adrotatepro.php:23
|
|
|
720 |
msgid ""
|
721 |
"Set up advertisers and let them log in to their statistics or even create "
|
722 |
"their own adverts. Created adverts go into a moderation queue for your staff "
|
723 |
"to review. Advertisers have access to their own little dashboard where they "
|
724 |
"can see their adverts performance."
|
725 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
726 |
|
727 |
#: dashboard/adrotatepro.php:27
|
728 |
+
msgid "Mobile campaigns"
|
729 |
+
msgstr ""
|
|
|
730 |
|
731 |
#: dashboard/adrotatepro.php:30
|
732 |
msgid ""
|
733 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
734 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
735 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
736 |
+
"and with a few easy to use options they show up where you want them to!"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: dashboard/adrotatepro.php:34
|
740 |
+
msgid "Localize your ad campaigns with Geo Targeting"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: dashboard/adrotatepro.php:37
|
744 |
+
msgid ""
|
745 |
"Go nationwide or global with localized adverts for your various audiences. "
|
746 |
"Set up adverts for countries and cities and sell impressions per general "
|
747 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
748 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: dashboard/adrotatepro.php:41
|
|
|
752 |
msgid "Get Premium Support almost all year round"
|
753 |
+
msgstr ""
|
754 |
|
755 |
+
#: dashboard/adrotatepro.php:44
|
756 |
msgid ""
|
757 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
758 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
760 |
"forum. Get a solution (usually) within a day."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
|
|
764 |
msgid "AdRotate is brought to you by"
|
765 |
+
msgstr ""
|
766 |
|
767 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
768 |
msgid ""
|
769 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
770 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: dashboard/adrotatepro.php:65
|
|
|
774 |
msgid "Schedule all campaigns with ease"
|
775 |
+
msgstr ""
|
776 |
|
777 |
+
#: dashboard/adrotatepro.php:68
|
778 |
msgid ""
|
779 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
780 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
782 |
"much more easy. You can set one or many schedules for adverts."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: dashboard/adrotatepro.php:72
|
786 |
+
msgid "Avoid adblockers"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: dashboard/adrotatepro.php:75
|
790 |
+
msgid ""
|
791 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
792 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
793 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
794 |
+
"adverts smartly so these features reach their full potential!"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: dashboard/adrotatepro.php:79
|
798 |
msgid "Stay up-to-date with notifications"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: dashboard/adrotatepro.php:82
|
802 |
msgid ""
|
803 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
804 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
807 |
"miss an expiration date again."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
811 |
#: dashboard/info.php:93 dashboard/info.php:105
|
|
|
812 |
msgid "Buy AdRotate Professional"
|
813 |
+
msgstr ""
|
814 |
|
815 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
816 |
msgid "Single License"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
|
|
820 |
msgid "For one WordPress installation."
|
821 |
+
msgstr ""
|
822 |
|
823 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
824 |
#: dashboard/info.php:98 dashboard/info.php:110
|
|
|
825 |
msgid "Duo License"
|
826 |
+
msgstr ""
|
827 |
|
828 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
|
|
829 |
msgid "For two WordPress installations."
|
830 |
+
msgstr ""
|
831 |
|
832 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
833 |
#: dashboard/info.php:99 dashboard/info.php:111
|
|
|
834 |
msgid "Multi License"
|
835 |
+
msgstr ""
|
836 |
|
837 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
|
|
838 |
msgid " For up to five WordPress installations."
|
839 |
+
msgstr ""
|
840 |
|
841 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
842 |
#: dashboard/info.php:100 dashboard/info.php:112
|
|
|
843 |
msgid "Developer License"
|
844 |
+
msgstr ""
|
845 |
|
846 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
847 |
msgid "Unlimited WordPress installations and/or networks."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
851 |
#: dashboard/info.php:101 dashboard/info.php:114
|
|
|
852 |
msgid "Compare licenses"
|
853 |
+
msgstr ""
|
854 |
|
855 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
|
|
856 |
msgid "Not sure which license is for you? Compare them..."
|
857 |
msgstr ""
|
|
|
858 |
|
859 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
|
|
860 |
msgid "All Licenses"
|
861 |
+
msgstr ""
|
862 |
|
863 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
864 |
msgid "Lifetime License"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
868 |
msgid "Single installation."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
872 |
msgid "Up to 2 installations."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
876 |
msgid "Up to 10 installations."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
880 |
msgid "Up to 25 installations or multisite networks."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
884 |
msgid ""
|
885 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
889 |
msgid "Not sure which license is for you?"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
893 |
msgid "Compare Licenses"
|
894 |
msgstr ""
|
895 |
|
896 |
#: dashboard/info.php:24
|
|
|
897 |
msgid "Currently"
|
898 |
+
msgstr ""
|
899 |
|
900 |
#: dashboard/info.php:30
|
|
|
901 |
msgid "Your setup"
|
902 |
+
msgstr ""
|
903 |
|
904 |
#: dashboard/info.php:31
|
|
|
905 |
msgid "Adverts that need you"
|
906 |
+
msgstr ""
|
907 |
|
908 |
#: dashboard/info.php:37
|
|
|
909 |
msgid "Adverts"
|
910 |
+
msgstr ""
|
911 |
|
912 |
#: dashboard/info.php:38
|
|
|
913 |
msgid "(Almost) Expired"
|
914 |
+
msgstr ""
|
915 |
|
916 |
#: dashboard/info.php:41
|
|
|
917 |
msgid "Groups"
|
918 |
+
msgstr ""
|
919 |
|
920 |
#: dashboard/info.php:42
|
|
|
921 |
msgid "Have errors"
|
922 |
+
msgstr ""
|
923 |
|
924 |
#: dashboard/info.php:48
|
|
|
925 |
msgid "Support AdRotate"
|
926 |
+
msgstr ""
|
927 |
|
928 |
#: dashboard/info.php:55
|
929 |
msgid "Your gift helps ensure the continued development of AdRotate!"
|
934 |
msgstr ""
|
935 |
|
936 |
#: dashboard/info.php:64
|
|
|
937 |
msgid "AdRotate News and Developer Blog"
|
938 |
+
msgstr ""
|
939 |
|
940 |
#: dashboard/info.php:86
|
|
|
941 |
msgid "Get more features with AdRotate Pro"
|
942 |
+
msgstr ""
|
943 |
|
944 |
#: dashboard/info.php:89
|
|
|
945 |
msgid ""
|
946 |
"Benefit from extra features to reinforce your income with advertising "
|
947 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
948 |
"Pro offers on top of the trusted features included in the free version."
|
949 |
msgstr ""
|
|
|
|
|
|
|
|
|
950 |
|
951 |
#: dashboard/info.php:89
|
952 |
msgid "Want to know more about"
|
953 |
msgstr ""
|
954 |
|
955 |
#: dashboard/info.php:89
|
|
|
956 |
msgid "Visit the"
|
957 |
+
msgstr ""
|
958 |
|
959 |
#: dashboard/info.php:89
|
|
|
960 |
msgid "website"
|
961 |
+
msgstr ""
|
962 |
|
963 |
#: dashboard/publisher/adverts-disabled.php:15
|
|
|
964 |
msgid "Disabled Ads"
|
965 |
+
msgstr ""
|
966 |
|
967 |
#: dashboard/publisher/adverts-disabled.php:21
|
968 |
#: dashboard/publisher/adverts-edit.php:177
|
|
|
969 |
msgid "Activate"
|
970 |
+
msgstr ""
|
971 |
|
972 |
#: dashboard/publisher/adverts-disabled.php:23
|
973 |
#: dashboard/publisher/adverts-error.php:22
|
974 |
#: dashboard/publisher/adverts-main.php:23
|
|
|
975 |
msgid "Reset stats"
|
976 |
+
msgstr ""
|
977 |
|
978 |
#: dashboard/publisher/adverts-disabled.php:36
|
979 |
#: dashboard/publisher/adverts-error.php:40
|
980 |
#: dashboard/publisher/adverts-main.php:40
|
|
|
981 |
msgid "Start / End"
|
982 |
+
msgstr ""
|
983 |
|
984 |
#: dashboard/publisher/adverts-disabled.php:37
|
985 |
#: dashboard/publisher/adverts-edit.php:117
|
986 |
#: dashboard/publisher/adverts-error.php:41
|
987 |
#: dashboard/publisher/adverts-main.php:41
|
|
|
988 |
msgid "Title"
|
989 |
+
msgstr ""
|
990 |
|
991 |
#: dashboard/publisher/adverts-disabled.php:38
|
992 |
#: dashboard/publisher/adverts-main.php:44
|
993 |
#: dashboard/publisher/groups-edit.php:333
|
994 |
#: dashboard/publisher/groups-main.php:36
|
|
|
995 |
msgid "Shown"
|
996 |
+
msgstr ""
|
997 |
|
998 |
#: dashboard/publisher/adverts-disabled.php:39
|
999 |
#: dashboard/publisher/adverts-main.php:46
|
1001 |
#: dashboard/publisher/groups-edit.php:334
|
1002 |
#: dashboard/publisher/groups-main.php:38
|
1003 |
#: dashboard/publisher/groups-report.php:41
|
|
|
1004 |
msgid "Clicks"
|
1005 |
+
msgstr ""
|
1006 |
|
1007 |
#: dashboard/publisher/adverts-disabled.php:40
|
1008 |
#: dashboard/publisher/adverts-main.php:48
|
1009 |
#: dashboard/publisher/adverts-report.php:38
|
1010 |
#: dashboard/publisher/groups-report.php:44
|
|
|
1011 |
msgid "CTR"
|
1012 |
+
msgstr ""
|
1013 |
|
1014 |
#: dashboard/publisher/adverts-disabled.php:74
|
1015 |
#: dashboard/publisher/adverts-error.php:64
|
1016 |
#: dashboard/publisher/adverts-main.php:87
|
1017 |
#: dashboard/publisher/groups-main.php:70
|
|
|
1018 |
msgid "Edit"
|
1019 |
+
msgstr ""
|
1020 |
|
1021 |
#: dashboard/publisher/adverts-disabled.php:74
|
1022 |
#: dashboard/publisher/adverts-error.php:64
|
|
|
1023 |
msgid "Stats"
|
1024 |
+
msgstr ""
|
1025 |
|
1026 |
#: dashboard/publisher/adverts-disabled.php:74
|
1027 |
#: dashboard/publisher/adverts-error.php:64
|
1028 |
#: dashboard/publisher/adverts-main.php:87
|
|
|
1029 |
msgid "Groups:"
|
1030 |
+
msgstr ""
|
1031 |
|
1032 |
#: dashboard/publisher/adverts-edit.php:48
|
|
|
1033 |
msgid "The AdCode cannot be empty!"
|
1034 |
+
msgstr ""
|
1035 |
|
1036 |
#: dashboard/publisher/adverts-edit.php:51
|
1037 |
msgid "You did not use %image% in your AdCode but did select a file to use!"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
#: dashboard/publisher/adverts-edit.php:71
|
|
|
1065 |
msgid ""
|
1066 |
"AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
|
1067 |
"the ad!"
|
1068 |
msgstr ""
|
|
|
|
|
1069 |
|
1070 |
#: dashboard/publisher/adverts-edit.php:74
|
|
|
1071 |
msgid "This ad is expired and currently not shown on your website!"
|
1072 |
msgstr ""
|
|
|
1073 |
|
1074 |
#: dashboard/publisher/adverts-edit.php:77
|
|
|
1075 |
msgid "The ad will expire in less than 2 days!"
|
1076 |
+
msgstr ""
|
1077 |
|
1078 |
#: dashboard/publisher/adverts-edit.php:80
|
|
|
1079 |
msgid "This ad will expire in less than 7 days!"
|
1080 |
+
msgstr ""
|
1081 |
|
1082 |
#: dashboard/publisher/adverts-edit.php:83
|
|
|
1083 |
msgid "This ad has been disabled and does not rotate on your site!"
|
1084 |
+
msgstr ""
|
1085 |
|
1086 |
#: dashboard/publisher/adverts-edit.php:109
|
|
|
1087 |
msgid "New Advert"
|
1088 |
+
msgstr ""
|
1089 |
|
1090 |
#: dashboard/publisher/adverts-edit.php:111
|
|
|
1091 |
msgid "Edit Advert"
|
1092 |
+
msgstr ""
|
1093 |
|
1094 |
#: dashboard/publisher/adverts-edit.php:123
|
1095 |
msgid "AdCode"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
#: dashboard/publisher/adverts-edit.php:128
|
|
|
1099 |
msgid "Basic Examples:"
|
1100 |
+
msgstr ""
|
1101 |
|
1102 |
#: dashboard/publisher/adverts-edit.php:135
|
1103 |
msgid "Useful tags"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
#: dashboard/publisher/adverts-edit.php:142
|
|
|
1137 |
msgid "Preview"
|
1138 |
+
msgstr ""
|
1139 |
|
1140 |
#: dashboard/publisher/adverts-edit.php:145
|
|
|
1141 |
msgid ""
|
1142 |
"Note: While this preview is an accurate one, it might look different then it "
|
1143 |
"does on the website."
|
1144 |
msgstr ""
|
|
|
|
|
1145 |
|
1146 |
#: dashboard/publisher/adverts-edit.php:146
|
|
|
1147 |
msgid ""
|
1148 |
"This is because of CSS differences. Your themes CSS file is not active here!"
|
1149 |
msgstr ""
|
|
|
|
|
1150 |
|
1151 |
#: dashboard/publisher/adverts-edit.php:151
|
1152 |
msgid "Banner asset"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
#: dashboard/publisher/adverts-edit.php:154
|
|
|
1160 |
msgid "Select Banner"
|
1161 |
+
msgstr ""
|
1162 |
|
1163 |
#: dashboard/publisher/adverts-edit.php:156
|
1164 |
msgid "- OR -"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
#: dashboard/publisher/adverts-edit.php:158
|
|
|
1168 |
msgid "Banner folder:"
|
1169 |
+
msgstr ""
|
1170 |
|
1171 |
#: dashboard/publisher/adverts-edit.php:159
|
|
|
1172 |
msgid "No image selected"
|
1173 |
+
msgstr ""
|
1174 |
|
1175 |
#: dashboard/publisher/adverts-edit.php:163
|
1176 |
msgid "Use %image% in the adcode instead of the file path."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
#: dashboard/publisher/adverts-edit.php:163
|
|
|
1180 |
msgid ""
|
1181 |
"Use either the text field or the dropdown. If the textfield has content that "
|
1182 |
"field has priority."
|
1183 |
msgstr ""
|
|
|
|
|
1184 |
|
1185 |
#: dashboard/publisher/adverts-edit.php:168
|
1186 |
#: dashboard/settings/statistics.php:12
|
|
|
1187 |
msgid "Statistics"
|
1188 |
+
msgstr ""
|
1189 |
|
1190 |
#: dashboard/publisher/adverts-edit.php:170
|
1191 |
msgid "Enable click and impression tracking for this advert."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
#: dashboard/publisher/adverts-edit.php:181
|
|
|
1202 |
msgid "Yes, this ad will be used"
|
1203 |
+
msgstr ""
|
1204 |
|
1205 |
#: dashboard/publisher/adverts-edit.php:182
|
|
|
1206 |
msgid "No, do not show this ad anywhere"
|
1207 |
+
msgstr ""
|
1208 |
|
1209 |
#: dashboard/publisher/adverts-edit.php:189
|
1210 |
#: dashboard/publisher/adverts-main.php:114
|
1211 |
#: dashboard/publisher/groups-edit.php:75
|
1212 |
#: dashboard/publisher/groups-main.php:89
|
|
|
1213 |
msgid "Get more features with AdRotate Pro."
|
1214 |
+
msgstr ""
|
1215 |
|
1216 |
#: dashboard/publisher/adverts-edit.php:192
|
1217 |
#: dashboard/publisher/adverts-edit.php:292
|
1218 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1219 |
+
#: dashboard/publisher/adverts-edit.php:428
|
|
|
1220 |
msgid "Save Advert"
|
1221 |
+
msgstr ""
|
1222 |
|
1223 |
#: dashboard/publisher/adverts-edit.php:193
|
1224 |
#: dashboard/publisher/adverts-edit.php:293
|
1225 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1226 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1227 |
#: dashboard/publisher/groups-edit.php:154
|
1228 |
#: dashboard/publisher/groups-edit.php:301
|
1229 |
#: dashboard/publisher/groups-edit.php:393
|
|
|
1230 |
msgid "Cancel"
|
1231 |
+
msgstr ""
|
1232 |
|
1233 |
#: dashboard/publisher/adverts-edit.php:196
|
1234 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1235 |
#: dashboard/publisher/groups-edit.php:136
|
1236 |
#: dashboard/publisher/groups-edit.php:283
|
|
|
1237 |
msgid "Usage"
|
1238 |
+
msgstr ""
|
1239 |
|
1240 |
#: dashboard/publisher/adverts-edit.php:200
|
1241 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1242 |
#: dashboard/publisher/groups-edit.php:140
|
1243 |
#: dashboard/publisher/groups-edit.php:287
|
1244 |
msgid "Widget"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
#: dashboard/publisher/adverts-edit.php:201
|
1248 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1249 |
msgid ""
|
1250 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1251 |
"and enter ID"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#: dashboard/publisher/adverts-edit.php:204
|
1255 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1256 |
#: dashboard/publisher/groups-edit.php:144
|
1257 |
#: dashboard/publisher/groups-edit.php:291
|
1258 |
msgid "In a post or page"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#: dashboard/publisher/adverts-edit.php:206
|
1262 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1263 |
#: dashboard/publisher/groups-edit.php:146
|
1264 |
#: dashboard/publisher/groups-edit.php:293
|
1265 |
msgid "Directly in a theme"
|
1291 |
|
1292 |
#: dashboard/publisher/adverts-edit.php:278
|
1293 |
#: dashboard/publisher/adverts-edit.php:280
|
|
|
1294 |
msgid "Leave empty or 0 to skip this."
|
1295 |
+
msgstr ""
|
1296 |
|
1297 |
#: dashboard/publisher/adverts-edit.php:279
|
1298 |
msgid "Maximum Impressions"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: dashboard/publisher/adverts-edit.php:289
|
1319 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1320 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1321 |
#: dashboard/publisher/groups-edit.php:200
|
|
|
1322 |
msgid "Upgrade today"
|
1323 |
+
msgstr ""
|
1324 |
|
1325 |
#: dashboard/publisher/adverts-edit.php:296
|
1326 |
#: dashboard/publisher/groups-edit.php:157
|
|
|
1327 |
msgid "Advanced"
|
1328 |
+
msgstr ""
|
1329 |
|
1330 |
#: dashboard/publisher/adverts-edit.php:297
|
|
|
1331 |
msgid "Everything below is optional."
|
1332 |
+
msgstr ""
|
1333 |
|
1334 |
#: dashboard/publisher/adverts-edit.php:301
|
1335 |
+
msgid "Mobile"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#: dashboard/publisher/adverts-edit.php:303
|
1339 |
+
msgid "Show on;"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1343 |
+
msgid "Computers"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1347 |
+
msgid "Smartphones"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1351 |
+
msgid "Tablets."
|
1352 |
+
msgstr ""
|
1353 |
|
1354 |
#: dashboard/publisher/adverts-edit.php:304
|
1355 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1359 |
+
msgid "Responsive"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1363 |
+
msgid "Enable responsive support for this advert."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1367 |
msgid ""
|
1368 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1369 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1370 |
msgstr ""
|
|
|
|
|
|
|
|
|
1371 |
|
1372 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1373 |
+
#: dashboard/publisher/adverts-report.php:58
|
1374 |
+
#: dashboard/publisher/groups-report.php:64
|
1375 |
+
msgid "Note:"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1379 |
+
msgid ""
|
1380 |
+
"This feature will not be developed any further. Consider switching to the "
|
1381 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1385 |
#: dashboard/publisher/groups-edit.php:194
|
1386 |
msgid "Sortorder"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1390 |
#: dashboard/publisher/groups-edit.php:196
|
|
|
1391 |
msgid "For administrative purposes set a sortorder."
|
1392 |
+
msgstr ""
|
1393 |
|
1394 |
+
#: dashboard/publisher/adverts-edit.php:319
|
|
|
1395 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1396 |
msgstr ""
|
|
|
|
|
1397 |
|
1398 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1399 |
msgid ""
|
1400 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1401 |
+
"on!"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1405 |
msgid "Geo Targeting in AdRotate Pro"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1409 |
msgid ""
|
1410 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1414 |
msgid "Cities/States"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1418 |
msgid ""
|
1419 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1420 |
"states ISO codes are supported)"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1424 |
msgid ""
|
1425 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1426 |
"correctly!"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1430 |
msgid "Countries"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: dashboard/publisher/adverts-edit.php:363
|
|
|
1434 |
msgid "Select the countries you want the adverts to show in."
|
1435 |
msgstr ""
|
|
|
|
|
1436 |
|
1437 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1438 |
msgid "Cities take priority and will be filtered first."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1442 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: dashboard/publisher/adverts-edit.php:392
|
|
|
1446 |
msgid "Select Groups"
|
1447 |
+
msgstr ""
|
1448 |
|
1449 |
+
#: dashboard/publisher/adverts-edit.php:397
|
|
|
1450 |
msgid "ID - Name"
|
1451 |
+
msgstr ""
|
1452 |
|
1453 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1454 |
#: dashboard/publisher/groups-main.php:60
|
1455 |
#: dashboard/settings/geotargeting.php:39
|
|
|
1456 |
msgid "Default"
|
1457 |
+
msgstr ""
|
1458 |
|
1459 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1460 |
#: dashboard/publisher/groups-main.php:61
|
|
|
1461 |
msgid "Dynamic"
|
1462 |
+
msgstr ""
|
1463 |
|
1464 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1465 |
#: dashboard/publisher/groups-main.php:61
|
|
|
1466 |
msgid "second rotation"
|
1467 |
+
msgstr ""
|
1468 |
|
1469 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1470 |
#: dashboard/publisher/groups-main.php:62
|
|
|
1471 |
msgid "Block"
|
1472 |
+
msgstr ""
|
1473 |
|
1474 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1475 |
#: dashboard/publisher/groups-main.php:62
|
|
|
1476 |
msgid "grid"
|
1477 |
+
msgstr ""
|
1478 |
|
1479 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1480 |
#: dashboard/publisher/groups-edit.php:202
|
1481 |
#: dashboard/publisher/groups-main.php:63
|
|
|
1482 |
msgid "Post Injection"
|
1483 |
+
msgstr ""
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:411
|
|
|
1486 |
msgid "Geolocation"
|
1487 |
+
msgstr ""
|
1488 |
|
1489 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1490 |
#: dashboard/publisher/groups-edit.php:61
|
1491 |
#: dashboard/publisher/groups-main.php:70
|
|
|
1492 |
msgid "Mode"
|
1493 |
+
msgstr ""
|
1494 |
|
1495 |
#: dashboard/publisher/adverts-error.php:12
|
|
|
1496 |
msgid "Ads that need immediate attention"
|
1497 |
+
msgstr ""
|
1498 |
|
1499 |
#: dashboard/publisher/adverts-error.php:20
|
1500 |
#: dashboard/publisher/adverts-main.php:21
|
|
|
1501 |
msgid "Deactivate"
|
1502 |
+
msgstr ""
|
1503 |
|
1504 |
#: dashboard/publisher/adverts-error.php:23
|
1505 |
#: dashboard/publisher/adverts-main.php:25
|
|
|
1506 |
msgid "-- Renew --"
|
1507 |
+
msgstr ""
|
1508 |
|
1509 |
#: dashboard/publisher/adverts-error.php:24
|
1510 |
#: dashboard/publisher/adverts-main.php:26
|
|
|
1511 |
msgid "For 1 year"
|
1512 |
+
msgstr ""
|
1513 |
|
1514 |
#: dashboard/publisher/adverts-error.php:25
|
1515 |
#: dashboard/publisher/adverts-main.php:27
|
|
|
1516 |
msgid "For 180 days"
|
1517 |
+
msgstr ""
|
1518 |
|
1519 |
#: dashboard/publisher/adverts-error.php:26
|
1520 |
#: dashboard/publisher/adverts-main.php:28
|
|
|
1521 |
msgid "For 30 days"
|
1522 |
+
msgstr ""
|
1523 |
|
1524 |
#: dashboard/publisher/adverts-error.php:27
|
1525 |
#: dashboard/publisher/adverts-main.php:29
|
|
|
1526 |
msgid "For 7 days"
|
1527 |
+
msgstr ""
|
1528 |
|
1529 |
#: dashboard/publisher/adverts-error.php:71
|
1530 |
#: dashboard/publisher/groups-edit.php:386
|
|
|
1531 |
msgid "Configuration errors."
|
1532 |
+
msgstr ""
|
1533 |
|
1534 |
#: dashboard/publisher/adverts-main.php:12
|
|
|
1535 |
msgid "Active Ads"
|
1536 |
+
msgstr ""
|
1537 |
|
1538 |
#: dashboard/publisher/adverts-main.php:24
|
1539 |
msgid "Export to XML"
|
1541 |
|
1542 |
#: dashboard/publisher/adverts-main.php:42
|
1543 |
#: dashboard/publisher/groups-edit.php:336
|
|
|
1544 |
msgid "Weight"
|
1545 |
+
msgstr ""
|
1546 |
|
1547 |
#: dashboard/publisher/adverts-main.php:45
|
1548 |
#: dashboard/publisher/adverts-main.php:47
|
1549 |
#: dashboard/publisher/groups-main.php:37
|
1550 |
#: dashboard/publisher/groups-main.php:39
|
|
|
1551 |
msgid "Today"
|
1552 |
+
msgstr ""
|
1553 |
|
1554 |
#: dashboard/publisher/adverts-main.php:109
|
|
|
1555 |
msgid "No ads created yet!"
|
1556 |
+
msgstr ""
|
1557 |
|
1558 |
#: dashboard/publisher/adverts-report.php:29
|
|
|
1559 |
msgid "Statistics for advert"
|
1560 |
+
msgstr ""
|
1561 |
|
1562 |
#: dashboard/publisher/adverts-report.php:34
|
1563 |
#: dashboard/publisher/groups-report.php:40
|
|
|
1564 |
msgid "Impressions"
|
1565 |
+
msgstr ""
|
1566 |
|
1567 |
#: dashboard/publisher/adverts-report.php:36
|
1568 |
#: dashboard/publisher/groups-report.php:42
|
|
|
1569 |
msgid "Impressions today"
|
1570 |
+
msgstr ""
|
1571 |
|
1572 |
#: dashboard/publisher/adverts-report.php:37
|
1573 |
#: dashboard/publisher/groups-report.php:43
|
|
|
1574 |
msgid "Clicks today"
|
1575 |
+
msgstr ""
|
1576 |
|
1577 |
#: dashboard/publisher/adverts-report.php:44
|
1578 |
#: dashboard/publisher/groups-report.php:50
|
|
|
1579 |
msgid "Monthly overview of clicks and impressions"
|
1580 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1581 |
|
1582 |
#: dashboard/publisher/adverts-report.php:58
|
1583 |
#: dashboard/publisher/groups-report.php:64
|
|
|
1584 |
msgid ""
|
1585 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1586 |
"counted by other parties."
|
1587 |
msgstr ""
|
|
|
|
|
1588 |
|
1589 |
#: dashboard/publisher/groups-edit.php:43
|
|
|
1590 |
msgid "New Group"
|
1591 |
+
msgstr ""
|
1592 |
|
1593 |
#: dashboard/publisher/groups-edit.php:45
|
|
|
1594 |
msgid "Edit Group"
|
1595 |
+
msgstr ""
|
1596 |
|
1597 |
#: dashboard/publisher/groups-edit.php:64
|
|
|
1598 |
msgid "Default - Show one ad at a time"
|
1599 |
+
msgstr ""
|
1600 |
|
1601 |
#: dashboard/publisher/groups-edit.php:65
|
|
|
1602 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1603 |
+
msgstr ""
|
1604 |
|
1605 |
#: dashboard/publisher/groups-edit.php:66
|
|
|
1606 |
msgid "Block Mode - Show a block of ads"
|
1607 |
+
msgstr ""
|
1608 |
|
1609 |
#: dashboard/publisher/groups-edit.php:70
|
1610 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1612 |
|
1613 |
#: dashboard/publisher/groups-edit.php:77
|
1614 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1615 |
msgid "Dynamic and Block Mode"
|
1616 |
+
msgstr ""
|
1617 |
|
1618 |
#: dashboard/publisher/groups-edit.php:78
|
|
|
1619 |
msgid "Only required if your group is in Dynamic or Block mode."
|
1620 |
+
msgstr ""
|
1621 |
|
1622 |
#: dashboard/publisher/groups-edit.php:82
|
1623 |
msgid "Block size"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: dashboard/publisher/groups-edit.php:88
|
|
|
1627 |
msgid "rows"
|
1628 |
+
msgstr ""
|
1629 |
|
1630 |
#: dashboard/publisher/groups-edit.php:92
|
|
|
1631 |
msgid "columns"
|
1632 |
+
msgstr ""
|
1633 |
|
1634 |
#: dashboard/publisher/groups-edit.php:95
|
|
|
1635 |
msgid "Block Mode"
|
1636 |
+
msgstr ""
|
1637 |
|
1638 |
#: dashboard/publisher/groups-edit.php:95
|
1639 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
#: dashboard/publisher/groups-edit.php:101
|
|
|
1647 |
msgid "pixel(s) wide"
|
1648 |
+
msgstr ""
|
1649 |
|
1650 |
#: dashboard/publisher/groups-edit.php:101
|
|
|
1651 |
msgid "pixel(s) high."
|
1652 |
+
msgstr ""
|
1653 |
|
1654 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1655 |
msgid ""
|
1656 |
"Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
1657 |
"recommended). Default: 125/125."
|
1658 |
msgstr ""
|
|
|
|
|
|
|
1659 |
|
1660 |
#: dashboard/publisher/groups-edit.php:108
|
|
|
1661 |
msgid "Automated refresh"
|
1662 |
+
msgstr ""
|
1663 |
|
1664 |
#: dashboard/publisher/groups-edit.php:127
|
|
|
1665 |
msgid "seconds."
|
1666 |
+
msgstr ""
|
1667 |
|
1668 |
#: dashboard/publisher/groups-edit.php:130
|
|
|
1669 |
msgid "Dynamic Mode"
|
1670 |
+
msgstr ""
|
1671 |
|
1672 |
#: dashboard/publisher/groups-edit.php:130
|
|
|
1673 |
msgid ""
|
1674 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1675 |
msgstr ""
|
|
|
|
|
1676 |
|
1677 |
#: dashboard/publisher/groups-edit.php:141
|
1678 |
#: dashboard/publisher/groups-edit.php:288
|
1684 |
#: dashboard/publisher/groups-edit.php:153
|
1685 |
#: dashboard/publisher/groups-edit.php:300
|
1686 |
#: dashboard/publisher/groups-edit.php:392
|
|
|
1687 |
msgid "Save Group"
|
1688 |
+
msgstr ""
|
1689 |
|
1690 |
#: dashboard/publisher/groups-edit.php:161
|
|
|
1691 |
msgid "Advert Margin"
|
1692 |
+
msgstr ""
|
1693 |
|
1694 |
#: dashboard/publisher/groups-edit.php:163
|
|
|
1695 |
msgid "pixel(s)"
|
1696 |
+
msgstr ""
|
1697 |
|
1698 |
#: dashboard/publisher/groups-edit.php:166
|
|
|
1699 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
1700 |
msgstr ""
|
|
|
|
|
1701 |
|
1702 |
#: dashboard/publisher/groups-edit.php:166
|
|
|
1703 |
msgid "Set to 0 to disable."
|
1704 |
+
msgstr ""
|
1705 |
|
1706 |
#: dashboard/publisher/groups-edit.php:166
|
1707 |
msgid "Margins are automatically disabled for blocks where required."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
#: dashboard/publisher/groups-edit.php:170
|
|
|
1711 |
msgid "Align the group"
|
1712 |
+
msgstr ""
|
1713 |
|
1714 |
#: dashboard/publisher/groups-edit.php:173
|
|
|
1715 |
msgid "None (Default)"
|
1716 |
+
msgstr ""
|
1717 |
|
1718 |
#: dashboard/publisher/groups-edit.php:174
|
1719 |
msgid "Left"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
#: dashboard/publisher/groups-edit.php:175
|
|
|
1723 |
msgid "Right"
|
1724 |
+
msgstr ""
|
1725 |
|
1726 |
#: dashboard/publisher/groups-edit.php:176
|
1727 |
msgid "Center"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: dashboard/publisher/groups-edit.php:196
|
|
|
1762 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
1763 |
msgstr ""
|
|
|
|
|
1764 |
|
1765 |
#: dashboard/publisher/groups-edit.php:200
|
1766 |
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
1773 |
#: dashboard/publisher/groups-edit.php:209
|
1774 |
#: dashboard/publisher/groups-edit.php:247
|
1775 |
#: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
|
|
|
1776 |
msgid "Disabled"
|
1777 |
+
msgstr ""
|
1778 |
|
1779 |
#: dashboard/publisher/groups-edit.php:210
|
1780 |
#: dashboard/publisher/groups-edit.php:248
|
|
|
1781 |
msgid "Before content"
|
1782 |
+
msgstr ""
|
1783 |
|
1784 |
#: dashboard/publisher/groups-edit.php:211
|
1785 |
#: dashboard/publisher/groups-edit.php:249
|
|
|
1786 |
msgid "After content"
|
1787 |
+
msgstr ""
|
1788 |
|
1789 |
#: dashboard/publisher/groups-edit.php:212
|
1790 |
#: dashboard/publisher/groups-edit.php:250
|
|
|
1791 |
msgid "Before and after content"
|
1792 |
+
msgstr ""
|
1793 |
|
1794 |
#: dashboard/publisher/groups-edit.php:213
|
1795 |
#: dashboard/publisher/groups-edit.php:251
|
1842 |
msgstr ""
|
1843 |
|
1844 |
#: dashboard/publisher/groups-edit.php:233
|
|
|
1845 |
msgid "Which categories?"
|
1846 |
+
msgstr ""
|
1847 |
|
1848 |
#: dashboard/publisher/groups-edit.php:238
|
|
|
1849 |
msgid "Click the categories posts you want the adverts to show in."
|
1850 |
msgstr ""
|
|
|
|
|
1851 |
|
1852 |
#: dashboard/publisher/groups-edit.php:243
|
1853 |
msgid "In pages?"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
#: dashboard/publisher/groups-edit.php:271
|
|
|
1857 |
msgid "Which pages?"
|
1858 |
+
msgstr ""
|
1859 |
|
1860 |
#: dashboard/publisher/groups-edit.php:276
|
|
|
1861 |
msgid "Click the pages you want the adverts to show in."
|
1862 |
+
msgstr ""
|
1863 |
|
1864 |
#: dashboard/publisher/groups-edit.php:304
|
|
|
1865 |
msgid "Wrapper code"
|
1866 |
+
msgstr ""
|
1867 |
|
1868 |
#: dashboard/publisher/groups-edit.php:305
|
1869 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
#: dashboard/publisher/groups-edit.php:313
|
|
|
1877 |
msgid "Options:"
|
1878 |
+
msgstr ""
|
1879 |
|
1880 |
#: dashboard/publisher/groups-edit.php:317
|
1881 |
msgid "After advert"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
#: dashboard/publisher/groups-edit.php:337
|
|
|
1893 |
msgid "Visible until"
|
1894 |
+
msgstr ""
|
1895 |
|
1896 |
#: dashboard/publisher/groups-edit.php:379
|
|
|
1897 |
msgid "No ads created!"
|
1898 |
+
msgstr ""
|
1899 |
|
1900 |
#: dashboard/publisher/groups-main.php:21
|
|
|
1901 |
msgid "Delete Group"
|
1902 |
+
msgstr ""
|
1903 |
|
1904 |
#: dashboard/publisher/groups-main.php:22
|
|
|
1905 |
msgid "Delete Group including ads"
|
1906 |
+
msgstr ""
|
1907 |
|
1908 |
#: dashboard/publisher/groups-main.php:24
|
|
|
1909 |
msgid "You are about to delete a group"
|
1910 |
+
msgstr ""
|
1911 |
|
1912 |
#: dashboard/publisher/groups-main.php:24
|
|
|
1913 |
msgid "This action can not be undone!"
|
1914 |
+
msgstr ""
|
1915 |
|
1916 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
1917 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
|
|
1918 |
msgid "OK to continue, CANCEL to stop."
|
1919 |
+
msgstr ""
|
1920 |
|
1921 |
#: dashboard/publisher/groups-main.php:84
|
|
|
1922 |
msgid "No groups created!"
|
1923 |
+
msgstr ""
|
1924 |
|
1925 |
#: dashboard/publisher/groups-report.php:35
|
|
|
1926 |
msgid "Statistics for group"
|
1927 |
+
msgstr ""
|
1928 |
|
1929 |
#: dashboard/settings/advertisers.php:12
|
1930 |
msgid "Advertisers - Available in AdRotate Pro"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
#: dashboard/settings/general.php:20
|
1996 |
+
msgid "Dynamic mode for Mobile"
|
1997 |
+
msgstr ""
|
|
|
1998 |
|
1999 |
#: dashboard/settings/general.php:21
|
2000 |
msgid ""
|
2001 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2002 |
+
"jumping content."
|
2003 |
+
msgstr ""
|
2004 |
+
|
2005 |
+
#: dashboard/settings/general.php:24
|
2006 |
+
msgid "Load jQuery"
|
2007 |
+
msgstr ""
|
2008 |
+
|
2009 |
+
#: dashboard/settings/general.php:25
|
2010 |
+
msgid ""
|
2011 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2012 |
"groups, statistics and some other features."
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: dashboard/settings/general.php:28
|
2016 |
msgid "Load scripts in footer?"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: dashboard/settings/general.php:29
|
2020 |
msgid ""
|
2021 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2022 |
"site."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: dashboard/settings/general.php:32
|
2026 |
msgid "Adblock disguise"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: dashboard/settings/general.php:34
|
2030 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: dashboard/settings/general.php:35
|
2034 |
msgid ""
|
2035 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: dashboard/settings/general.php:35
|
2039 |
msgid ""
|
2040 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2041 |
"instead of the AdRotate widget."
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: dashboard/settings/general.php:35
|
2045 |
msgid ""
|
2046 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2047 |
"feature will have little effect!"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: dashboard/settings/general.php:40
|
2051 |
msgid "Banner Folder"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: dashboard/settings/general.php:41
|
2055 |
msgid "Set a location where your banner images will be stored."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: dashboard/settings/general.php:44
|
2059 |
msgid "Location"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: dashboard/settings/general.php:46
|
2063 |
msgid "(Default: wp-content/banners/)."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: dashboard/settings/general.php:47
|
2067 |
msgid ""
|
2068 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2069 |
"like:"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: dashboard/settings/general.php:48
|
2073 |
msgid ""
|
2074 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2075 |
"will show errors when the folder is missing."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: dashboard/settings/general.php:53
|
|
|
2079 |
msgid "Bot filter"
|
2080 |
+
msgstr ""
|
2081 |
|
2082 |
+
#: dashboard/settings/general.php:54
|
2083 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: dashboard/settings/general.php:57
|
|
|
2087 |
msgid "User-Agent Filter"
|
2088 |
+
msgstr ""
|
2089 |
|
2090 |
+
#: dashboard/settings/general.php:60
|
2091 |
msgid ""
|
2092 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: dashboard/settings/general.php:61
|
2096 |
msgid ""
|
2097 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2098 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: dashboard/settings/general.php:62
|
2102 |
msgid ""
|
2103 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2104 |
"characters are stripped out."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: dashboard/settings/general.php:63
|
|
|
2108 |
msgid ""
|
2109 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2110 |
"well."
|
2111 |
msgstr ""
|
|
|
|
|
2112 |
|
2113 |
+
#: dashboard/settings/general.php:63
|
|
|
2114 |
msgid "Learn more about"
|
2115 |
+
msgstr ""
|
2116 |
|
2117 |
+
#: dashboard/settings/general.php:63
|
|
|
2118 |
msgid "user-agents"
|
2119 |
+
msgstr ""
|
2120 |
|
2121 |
#: dashboard/settings/geotargeting.php:12
|
2122 |
msgid "Geo Targeting - Available in AdRotate Pro"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
#: dashboard/settings/maintenance.php:12
|
|
|
2175 |
msgid "Maintenance"
|
2176 |
+
msgstr ""
|
2177 |
|
2178 |
#: dashboard/settings/maintenance.php:13
|
2179 |
msgid ""
|
2182 |
msgstr ""
|
2183 |
|
2184 |
#: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
|
|
|
2185 |
msgid "Optimize Database"
|
2186 |
+
msgstr ""
|
2187 |
|
2188 |
#: dashboard/settings/maintenance.php:18
|
|
|
2189 |
msgid "You are about to optimize the AdRotate database."
|
2190 |
+
msgstr ""
|
2191 |
|
2192 |
#: dashboard/settings/maintenance.php:18
|
|
|
2193 |
msgid "Did you make a backup of your database?"
|
2194 |
+
msgstr ""
|
2195 |
|
2196 |
#: dashboard/settings/maintenance.php:18
|
|
|
2197 |
msgid ""
|
2198 |
"This may take a moment and may cause your website to respond slow "
|
2199 |
"temporarily!"
|
2200 |
msgstr ""
|
|
|
|
|
2201 |
|
2202 |
#: dashboard/settings/maintenance.php:19
|
|
|
2203 |
msgid "Cleans up overhead data in the AdRotate tables."
|
2204 |
+
msgstr ""
|
2205 |
|
2206 |
#: dashboard/settings/maintenance.php:20
|
|
|
2207 |
msgid ""
|
2208 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
2209 |
"made. This can vary from nothing to hundreds of KiB of data."
|
2210 |
msgstr ""
|
|
|
|
|
|
|
2211 |
|
2212 |
#: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
|
|
|
2213 |
msgid "Clean-up Database"
|
2214 |
+
msgstr ""
|
2215 |
|
2216 |
#: dashboard/settings/maintenance.php:26
|
|
|
2217 |
msgid ""
|
2218 |
"You are about to clean up your database. This may delete expired schedules "
|
2219 |
"and older statistics."
|
2220 |
msgstr ""
|
|
|
|
|
2221 |
|
2222 |
#: dashboard/settings/maintenance.php:26
|
|
|
2223 |
msgid "Are you sure you want to continue?"
|
2224 |
+
msgstr ""
|
2225 |
|
2226 |
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2227 |
msgid "This might take a while and may slow down your site during this action!"
|
2228 |
msgstr ""
|
|
|
|
|
2229 |
|
2230 |
#: dashboard/settings/maintenance.php:27
|
|
|
2231 |
msgid "Delete stats older than 356 days (Optional)."
|
2232 |
+
msgstr ""
|
2233 |
|
2234 |
#: dashboard/settings/maintenance.php:28
|
2235 |
msgid ""
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: dashboard/settings/maintenance.php:32
|
|
|
2253 |
msgid "Re-evaluate Ads"
|
2254 |
+
msgstr ""
|
2255 |
|
2256 |
#: dashboard/settings/maintenance.php:34
|
|
|
2257 |
msgid "Re-evaluate all ads"
|
2258 |
+
msgstr ""
|
2259 |
|
2260 |
#: dashboard/settings/maintenance.php:34
|
|
|
2261 |
msgid "You are about to check all ads for errors."
|
2262 |
+
msgstr ""
|
2263 |
|
2264 |
#: dashboard/settings/maintenance.php:35
|
|
|
2265 |
msgid ""
|
2266 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
2267 |
"in. Normally you should not need this feature."
|
2268 |
msgstr ""
|
|
|
|
|
|
|
2269 |
|
2270 |
#: dashboard/settings/maintenance.php:39
|
2271 |
msgid ""
|
2281 |
msgstr ""
|
2282 |
|
2283 |
#: dashboard/settings/maintenance.php:41
|
|
|
2284 |
msgid "Troubleshooting"
|
2285 |
+
msgstr ""
|
2286 |
|
2287 |
#: dashboard/settings/maintenance.php:42
|
2288 |
msgid ""
|
2293 |
msgstr ""
|
2294 |
|
2295 |
#: dashboard/settings/maintenance.php:45
|
|
|
2296 |
msgid "Developer Debug"
|
2297 |
+
msgstr ""
|
2298 |
|
2299 |
#: dashboard/settings/maintenance.php:47
|
2300 |
msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
#: dashboard/settings/maintenance.php:49
|
|
|
2308 |
msgid ""
|
2309 |
"Disable timers for clicks and impressions and enable a alert window for "
|
2310 |
"clicktracking."
|
2311 |
msgstr ""
|
|
|
|
|
2312 |
|
2313 |
#: dashboard/settings/maintenance.php:50
|
|
|
2314 |
msgid "Temporarily disable encryption on the redirect url."
|
2315 |
+
msgstr ""
|
2316 |
|
2317 |
#: dashboard/settings/maintenance.php:55
|
2318 |
msgid "Status and Versions"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
#: dashboard/settings/maintenance.php:58
|
|
|
2322 |
msgid "Current version:"
|
2323 |
+
msgstr ""
|
2324 |
|
2325 |
#: dashboard/settings/maintenance.php:59
|
|
|
2326 |
msgid "Previous version:"
|
2327 |
+
msgstr ""
|
2328 |
|
2329 |
#: dashboard/settings/maintenance.php:62
|
|
|
2330 |
msgid "Current database version:"
|
2331 |
+
msgstr ""
|
2332 |
|
2333 |
#: dashboard/settings/maintenance.php:63
|
|
|
2334 |
msgid "Previous database version:"
|
2335 |
+
msgstr ""
|
2336 |
|
2337 |
#: dashboard/settings/maintenance.php:66
|
|
|
2338 |
msgid "Current status of adverts"
|
2339 |
+
msgstr ""
|
2340 |
|
2341 |
#: dashboard/settings/maintenance.php:67
|
|
|
2342 |
msgid "Normal"
|
2343 |
+
msgstr ""
|
2344 |
|
2345 |
#: dashboard/settings/maintenance.php:67
|
|
|
2346 |
msgid "Error"
|
2347 |
+
msgstr ""
|
2348 |
|
2349 |
#: dashboard/settings/maintenance.php:67
|
|
|
2350 |
msgid "Expired"
|
2351 |
+
msgstr ""
|
2352 |
|
2353 |
#: dashboard/settings/maintenance.php:67
|
|
|
2354 |
msgid "Expires Soon"
|
2355 |
+
msgstr ""
|
2356 |
|
2357 |
#: dashboard/settings/maintenance.php:67
|
2358 |
msgid "Unknown"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
#: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
|
|
|
2366 |
msgid "Not scheduled!"
|
2367 |
+
msgstr ""
|
2368 |
|
2369 |
#: dashboard/settings/maintenance.php:74
|
2370 |
msgid "Clean Trackerdata next run:"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
#: dashboard/settings/misc.php:12
|
|
|
2374 |
msgid "Miscellaneous"
|
2375 |
+
msgstr ""
|
2376 |
|
2377 |
#: dashboard/settings/misc.php:15
|
|
|
2378 |
msgid "Widget alignment"
|
2379 |
+
msgstr ""
|
2380 |
|
2381 |
#: dashboard/settings/misc.php:16
|
|
|
2382 |
msgid ""
|
2383 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2384 |
"not always help!)"
|
2385 |
msgstr ""
|
|
|
|
|
2386 |
|
2387 |
#: dashboard/settings/misc.php:19
|
|
|
2388 |
msgid "Widget padding"
|
2389 |
+
msgstr ""
|
2390 |
|
2391 |
#: dashboard/settings/misc.php:20
|
|
|
2392 |
msgid ""
|
2393 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2394 |
"not always work!)"
|
2395 |
msgstr ""
|
|
|
|
|
2396 |
|
2397 |
#: dashboard/settings/misc.php:24
|
|
|
2398 |
msgid "NOTICE:"
|
2399 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
2400 |
|
2401 |
#: dashboard/settings/misc.php:25
|
|
|
2402 |
msgid ""
|
2403 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
2404 |
"You need to add the following line to your wp-config.php near the bottom or "
|
2405 |
"below line 52 (which defines another hash.) Using the \"late init\" function "
|
2406 |
"needs to be enabled in W3 Total Cache as well too."
|
2407 |
msgstr ""
|
|
|
|
|
|
|
|
|
2408 |
|
2409 |
#: dashboard/settings/misc.php:29
|
|
|
2410 |
msgid "W3 Total Caching"
|
2411 |
+
msgstr ""
|
2412 |
|
2413 |
#: dashboard/settings/misc.php:30
|
|
|
2414 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2415 |
+
msgstr ""
|
2416 |
|
2417 |
#: dashboard/settings/misc.php:34
|
|
|
2418 |
msgid ""
|
2419 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2420 |
"to refresh the cache. This can take up to a week if not done manually."
|
2421 |
msgstr ""
|
|
|
|
|
|
|
|
|
2422 |
|
2423 |
#: dashboard/settings/misc.php:34
|
|
|
2424 |
msgid ""
|
2425 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2426 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
2427 |
msgstr ""
|
|
|
|
|
|
|
2428 |
|
2429 |
#: dashboard/settings/notifications.php:12
|
2430 |
msgid "Notifications - Available in AdRotate Pro"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
#: dashboard/settings/roles.php:13
|
|
|
2591 |
msgid "Who has access to what?"
|
2592 |
+
msgstr ""
|
2593 |
|
2594 |
#: dashboard/settings/roles.php:16
|
|
|
2595 |
msgid "Manage/Add/Edit adverts"
|
2596 |
+
msgstr ""
|
2597 |
|
2598 |
#: dashboard/settings/roles.php:20
|
|
|
2599 |
msgid "Role to see and add/edit ads."
|
2600 |
+
msgstr ""
|
2601 |
|
2602 |
#: dashboard/settings/roles.php:24
|
|
|
2603 |
msgid "Delete/Reset adverts"
|
2604 |
+
msgstr ""
|
2605 |
|
2606 |
#: dashboard/settings/roles.php:28
|
|
|
2607 |
msgid "Role to delete ads and reset stats."
|
2608 |
+
msgstr ""
|
2609 |
|
2610 |
#: dashboard/settings/roles.php:32
|
|
|
2611 |
msgid "Manage/Add/Edit groups"
|
2612 |
+
msgstr ""
|
2613 |
|
2614 |
#: dashboard/settings/roles.php:36
|
|
|
2615 |
msgid "Role to see and add/edit groups."
|
2616 |
+
msgstr ""
|
2617 |
|
2618 |
#: dashboard/settings/roles.php:40
|
|
|
2619 |
msgid "Delete groups"
|
2620 |
+
msgstr ""
|
2621 |
|
2622 |
#: dashboard/settings/roles.php:44
|
|
|
2623 |
msgid "Role to delete groups."
|
2624 |
+
msgstr ""
|
2625 |
|
2626 |
#: dashboard/settings/statistics.php:13
|
2627 |
msgid "Track statistics for your adverts."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
#: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
|
|
|
2709 |
msgid "Seconds."
|
2710 |
+
msgstr ""
|
2711 |
|
2712 |
#: dashboard/settings/statistics.php:55
|
|
|
2713 |
msgid "Default: 60."
|
2714 |
+
msgstr ""
|
2715 |
|
2716 |
#: dashboard/settings/statistics.php:55
|
|
|
2717 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
2718 |
+
msgstr ""
|
2719 |
|
2720 |
#: dashboard/settings/statistics.php:59
|
2721 |
msgid "Click timer"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
#: dashboard/settings/statistics.php:62
|
|
|
2725 |
msgid "Default: 86400."
|
2726 |
+
msgstr ""
|
2727 |
|
2728 |
#: dashboard/settings/statistics.php:62
|
|
|
2729 |
msgid ""
|
2730 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2731 |
msgstr ""
|
2732 |
+
|
2733 |
+
#, fuzzy
|
2734 |
+
#~ msgid ""
|
2735 |
+
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2736 |
+
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2737 |
+
#~ "is strongly recommended."
|
2738 |
+
#~ msgstr ""
|
2739 |
+
#~ "Transférez vos images dans le dossier de la bannière et assurez-vous que "
|
2740 |
+
#~ "le fichier est dans le format suivant: \"nomdefichier.full.ext\". Un "
|
2741 |
+
#~ "ensemble complet d'images de tailles différentes est recommendé si vous "
|
2742 |
+
#~ "avez un site fluide."
|
2743 |
|
2744 |
#, fuzzy
|
2745 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
language/adrotate-es_ES.mo
CHANGED
Binary file
|
language/adrotate-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
@@ -13,118 +13,118 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Anuncio(s) eliminado"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Grupo borrado"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Estadisticas del Anuncio(s) restablecidas"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Anuncio(s) renovado"
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Anuncio(s) desactivado"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Anuncio(s) activado"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "Exportación Creada"
|
68 |
|
69 |
-
#: adrotate-functions.php:
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Ajustes guardados"
|
72 |
|
73 |
-
#: adrotate-functions.php:
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Base de Datos optimizada"
|
76 |
|
77 |
-
#: adrotate-functions.php:
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Base de Datos reparada"
|
80 |
|
81 |
-
#: adrotate-functions.php:
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "Se han eliminado los registros vacios de la base de datos"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "Acción prohibida"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid ""
|
95 |
"The ad was saved but has an issue which might prevent it from working "
|
96 |
"properly. Review the colored ad."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: adrotate-functions.php:
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "No se han encontrado datos en el período de tiempo seleccionado"
|
102 |
|
103 |
-
#: adrotate-functions.php:
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
|
106 |
|
107 |
-
#: adrotate-functions.php:
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: adrotate-functions.php:
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: adrotate-functions.php:
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: adrotate-manage-publisher.php:
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: adrotate-output.php:
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr "¡Oh, no! Algo salió mal!"
|
126 |
|
127 |
-
#: adrotate-output.php:
|
128 |
msgid ""
|
129 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
130 |
"Verify if the url used is valid or log in via your browser."
|
@@ -132,7 +132,7 @@ msgstr ""
|
|
132 |
"WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
|
133 |
"Verificar si la url utilizada es válida o acceder a través del navegador."
|
134 |
|
135 |
-
#: adrotate-output.php:
|
136 |
msgid ""
|
137 |
"If you have received the url you want to visit via email, you are being "
|
138 |
"tricked!"
|
@@ -140,11 +140,11 @@ msgstr ""
|
|
140 |
"Si usted ha recibido la url que desea visitar a través del correo "
|
141 |
"electrónico, es posible que le esten engañando!"
|
142 |
|
143 |
-
#: adrotate-output.php:
|
144 |
msgid "Contact support if the issue persists:"
|
145 |
msgstr "Si el problema persiste, contacte con el soporte:"
|
146 |
|
147 |
-
#: adrotate-output.php:
|
148 |
msgid ""
|
149 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
150 |
"restrictions or does not exist!"
|
@@ -152,7 +152,7 @@ msgstr ""
|
|
152 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
153 |
"restricciones de programa, de geolocalización o no existe!"
|
154 |
|
155 |
-
#: adrotate-output.php:
|
156 |
msgid ""
|
157 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
158 |
"restrictions!"
|
@@ -160,7 +160,7 @@ msgstr ""
|
|
160 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
161 |
"restricciones restricciones de programa o geolocalización!"
|
162 |
|
163 |
-
#: adrotate-output.php:
|
164 |
msgid ""
|
165 |
"Either there are no banners, they are disabled or none qualified for this "
|
166 |
"location!"
|
@@ -168,19 +168,19 @@ msgstr ""
|
|
168 |
"O bien no hay banners, estan desactivados o no estan programados para esta "
|
169 |
"ubicación!"
|
170 |
|
171 |
-
#: adrotate-output.php:
|
172 |
msgid "Error, no Ad ID set! Check your syntax!"
|
173 |
msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
msgid "Error, no group ID set! Check your syntax!"
|
177 |
msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid "Error, group does not exist! Check your syntax!"
|
181 |
msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
msgid ""
|
185 |
"There was an error locating the database tables for AdRotate. Please "
|
186 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -188,59 +188,59 @@ msgstr ""
|
|
188 |
"Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
|
189 |
"desactivar y volver a activar el plugin AdRotate de la página!"
|
190 |
|
191 |
-
#: adrotate-output.php:
|
192 |
msgid "If this does not solve the issue please seek support at"
|
193 |
msgstr "Si esto no resuelve el problema por favor busque apoyo en"
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
msgid "An unknown error occured."
|
197 |
msgstr "Ha ocurrido un error desconocido."
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "active ad(s) expired."
|
201 |
msgstr "anuncio(s) activo(s) caducó."
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "Take action now"
|
205 |
msgstr "Tomar medidas ahora"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "active ad(s) are about to expire."
|
209 |
msgstr "anuncio(s) activo(s) están a punto de caducar."
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "Check it out"
|
213 |
msgstr "Compruébelo"
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "active ad(s) with configuration errors."
|
217 |
msgstr "anuncio(s) activo(s) con errores de configuración."
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "Solve this"
|
221 |
msgstr "Solucione este"
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "ad(s) expired."
|
225 |
msgstr "anuncio(s) caducado."
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "ad(s) are about to expire."
|
229 |
msgstr "anuncio(s) están a punto de caducar."
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "ad(s) with configuration errors."
|
233 |
msgstr "anuncio(s) con errores de configuración."
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "Fix this as soon as possible"
|
237 |
msgstr "Solucionar esto en cuanto sea posible"
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
-
#: dashboard/adrotatepro.php:
|
241 |
-
#: dashboard/adrotatepro.php:
|
242 |
-
#: dashboard/adrotatepro.php:
|
243 |
-
#: dashboard/adrotatepro.php:
|
244 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
245 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
246 |
#: dashboard/settings/geotargeting.php:26
|
@@ -248,114 +248,114 @@ msgstr "Solucionar esto en cuanto sea posible"
|
|
248 |
msgid "Buy now"
|
249 |
msgstr "Comprar"
|
250 |
|
251 |
-
#: adrotate-output.php:
|
252 |
msgid ""
|
253 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
254 |
"to the <strong>PRO</strong> version"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
#, php-format
|
259 |
msgid ""
|
260 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: adrotate-output.php:
|
264 |
msgid "Thank you for your purchase!"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid ""
|
269 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
270 |
"this menu. Check out the"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
msgid "manuals"
|
275 |
msgstr "manuales"
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "and"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "forums"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
#, fuzzy
|
287 |
msgid "Useful Links"
|
288 |
msgstr "Enlaces de interés"
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
msgid "Useful links to learn more about AdRotate"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
#, fuzzy
|
296 |
msgid "AdRotate Page"
|
297 |
msgstr "AdRotate Pro"
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
#, fuzzy
|
301 |
msgid "Getting Started With AdRotate"
|
302 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate manuals"
|
307 |
msgstr "Información de AdRotate"
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
#, fuzzy
|
311 |
msgid "AdRotate Support Forum"
|
312 |
msgstr "Tienda AdRotate"
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
#, fuzzy
|
316 |
msgid "Help AdRotate Grow"
|
317 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
318 |
|
319 |
-
#: adrotate-output.php:
|
320 |
msgid "Brought to you by"
|
321 |
msgstr "Presentado por"
|
322 |
|
323 |
-
#: adrotate-output.php:
|
324 |
msgid ""
|
325 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
326 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: adrotate-output.php:
|
330 |
msgid "If you find AdRotate useful please leave your honest"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "rating"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
#, fuzzy
|
339 |
msgid "review"
|
340 |
msgstr "Revise el anuncio aquí:"
|
341 |
|
342 |
-
#: adrotate-output.php:
|
343 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
msgid "Available in AdRotate Pro"
|
348 |
msgstr "Disponible en AdRotate Pro"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "More information..."
|
352 |
msgstr "Más información..."
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "This feature is available in AdRotate Pro"
|
356 |
msgstr "Esta función está disponible en AdRotate Pro"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
msgid "Learn more"
|
360 |
msgstr "Aprender más"
|
361 |
|
@@ -476,77 +476,77 @@ msgstr "ID:"
|
|
476 |
msgid "Fill in the ID of the type you want to display!"
|
477 |
msgstr "Rellene con el ID del tipo que desea mostrar!"
|
478 |
|
479 |
-
#: adrotate.php:
|
480 |
msgid "General Info"
|
481 |
msgstr "Información General"
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "AdRotate Pro"
|
485 |
msgstr "AdRotate Pro"
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "Manage Ads"
|
489 |
msgstr "Gestionar Anuncios"
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid "Manage Groups"
|
493 |
msgstr "Gestionar Grupos"
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
#, fuzzy
|
497 |
msgid "Manage Schedules"
|
498 |
msgstr "Gestionar Programas"
|
499 |
|
500 |
-
#: adrotate.php:
|
501 |
#, fuzzy
|
502 |
msgid "Manage Media"
|
503 |
msgstr "Gestionar Medios"
|
504 |
|
505 |
-
#: adrotate.php:
|
506 |
msgid "Settings"
|
507 |
msgstr "Ajustes"
|
508 |
|
509 |
-
#: adrotate.php:
|
510 |
msgid "AdRotate Info"
|
511 |
msgstr "Información de AdRotate"
|
512 |
|
513 |
-
#: adrotate.php:
|
514 |
msgid "AdRotate Professional"
|
515 |
msgstr "AdRotate Profesional"
|
516 |
|
517 |
-
#: adrotate.php:
|
518 |
msgid "Ad Management"
|
519 |
msgstr "Administración de Anuncios"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
msgid "Manage"
|
523 |
msgstr "Gestionar"
|
524 |
|
525 |
-
#: adrotate.php:
|
526 |
msgid "Add New"
|
527 |
msgstr "Añadir Nuevo"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
msgid "Group Management"
|
531 |
msgstr "Administración de Grupos"
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
#: dashboard/publisher/groups-main.php:70
|
535 |
msgid "Report"
|
536 |
msgstr "Informe"
|
537 |
|
538 |
-
#: adrotate.php:
|
539 |
#, fuzzy
|
540 |
msgid "Schedule Management available in AdRotate Pro"
|
541 |
msgstr "Disponible en AdRotate Pro"
|
542 |
|
543 |
-
#: adrotate.php:
|
544 |
msgid ""
|
545 |
"Schedule management and multiple schedules per advert is available in "
|
546 |
"AdRotate Pro."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: adrotate.php:
|
550 |
#: dashboard/publisher/adverts-main.php:114
|
551 |
#: dashboard/publisher/groups-edit.php:75
|
552 |
#: dashboard/publisher/groups-main.php:89
|
@@ -554,21 +554,21 @@ msgstr ""
|
|
554 |
msgid "More information"
|
555 |
msgstr "Más información..."
|
556 |
|
557 |
-
#: adrotate.php:
|
558 |
#: dashboard/publisher/adverts-error.php:19
|
559 |
#: dashboard/publisher/adverts-main.php:20
|
560 |
#: dashboard/publisher/groups-main.php:20
|
561 |
msgid "Bulk Actions"
|
562 |
msgstr "Acciones en Lote"
|
563 |
|
564 |
-
#: adrotate.php:
|
565 |
#: dashboard/publisher/adverts-error.php:29
|
566 |
#: dashboard/publisher/adverts-main.php:30
|
567 |
#: dashboard/publisher/groups-main.php:24
|
568 |
msgid "Go"
|
569 |
msgstr "Aplicar"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
#: dashboard/publisher/adverts-error.php:39
|
573 |
#: dashboard/publisher/adverts-main.php:39
|
574 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -576,97 +576,97 @@ msgstr "Aplicar"
|
|
576 |
msgid "ID"
|
577 |
msgstr "ID"
|
578 |
|
579 |
-
#: adrotate.php:
|
580 |
#, fuzzy
|
581 |
msgid "Start"
|
582 |
msgstr "Iniciar"
|
583 |
|
584 |
-
#: adrotate.php:
|
585 |
#, fuzzy
|
586 |
msgid "End"
|
587 |
msgstr "Finalizar"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
#: dashboard/publisher/groups-main.php:34
|
591 |
msgid "Ads"
|
592 |
msgstr "Anuncios"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
msgid "Max Impressions"
|
596 |
msgstr "Número máximo de Impresiones"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
msgid "Max Clicks"
|
600 |
msgstr "Número máximo de Clics"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
#, fuzzy
|
604 |
msgid "No schedules created yet!"
|
605 |
msgstr "Todavia no se han creado programas!"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
#, fuzzy
|
609 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
610 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#, fuzzy
|
614 |
msgid "Upgrade today!"
|
615 |
msgstr "Hoy"
|
616 |
|
617 |
-
#: adrotate.php:
|
618 |
#: dashboard/publisher/groups-edit.php:387
|
619 |
msgid "Expires soon."
|
620 |
msgstr "Caduca pronto."
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
#: dashboard/publisher/groups-edit.php:388
|
624 |
msgid "Has expired."
|
625 |
msgstr "Ha expirado."
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
#, fuzzy
|
629 |
msgid "Media Management available in AdRotate Pro"
|
630 |
msgstr "Esta función está disponible en AdRotate Pro"
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid ""
|
638 |
"This is useful if you use responsive adverts with multiple images or have "
|
639 |
"HTML5 adverts containing multiple files."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
#, fuzzy
|
644 |
msgid "Media uploading and management is available in AdRotate Pro."
|
645 |
msgstr "Esta función está disponible en AdRotate Pro"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid "Upload new file"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Accepted files:"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
#, fuzzy
|
661 |
msgid "Maximum size is 512Kb."
|
662 |
msgstr "El tamaño máximo es 512Kb."
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
#, fuzzy
|
666 |
msgid "Important:"
|
667 |
msgstr "Importante:"
|
668 |
|
669 |
-
#: adrotate.php:
|
670 |
#, fuzzy
|
671 |
msgid ""
|
672 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
@@ -675,13 +675,13 @@ msgstr ""
|
|
675 |
"Asegúrese de que en el nombre de su archivo no contiene espacios ni "
|
676 |
"caracteres especiales. Reemplace los espacios con un - o _."
|
677 |
|
678 |
-
#: adrotate.php:
|
679 |
msgid ""
|
680 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
681 |
"file so it knows about the changed name. For example for the javascript file."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
#, fuzzy
|
686 |
msgid ""
|
687 |
"For responsive adverts make sure the filename is in the following format; "
|
@@ -691,7 +691,7 @@ msgstr ""
|
|
691 |
"siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
|
692 |
"de imágenes del mismo tamaño."
|
693 |
|
694 |
-
#: adrotate.php:
|
695 |
msgid ""
|
696 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
697 |
"filename instead of \".full\" for the various viewports."
|
@@ -700,13 +700,12 @@ msgstr ""
|
|
700 |
"\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
|
701 |
"diferentes visores."
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
-
#: dashboard/publisher/groups-edit.php:312
|
705 |
#: dashboard/publisher/groups-edit.php:320
|
706 |
msgid "Example:"
|
707 |
msgstr "Ejemplo:"
|
708 |
|
709 |
-
#: adrotate.php:
|
710 |
#, fuzzy
|
711 |
msgid ""
|
712 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -715,37 +714,37 @@ msgstr ""
|
|
715 |
"image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
|
716 |
"distintas ventanas gráficas. Se necesita jQuery."
|
717 |
|
718 |
-
#: adrotate.php:
|
719 |
msgid "Upload file"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: adrotate.php:
|
723 |
msgid "Click only once per file!"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: adrotate.php:
|
727 |
msgid "Available files in"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: adrotate.php:
|
731 |
#: dashboard/publisher/groups-main.php:33
|
732 |
msgid "Name"
|
733 |
msgstr "Nombre"
|
734 |
|
735 |
-
#: adrotate.php:
|
736 |
#, fuzzy
|
737 |
msgid "Actions"
|
738 |
msgstr "Acciones"
|
739 |
|
740 |
-
#: adrotate.php:
|
741 |
-
#: adrotate.php:
|
742 |
#: dashboard/publisher/adverts-disabled.php:22
|
743 |
#: dashboard/publisher/adverts-error.php:21
|
744 |
#: dashboard/publisher/adverts-main.php:22
|
745 |
msgid "Delete"
|
746 |
msgstr "Borrar"
|
747 |
|
748 |
-
#: adrotate.php:
|
749 |
#, fuzzy
|
750 |
msgid ""
|
751 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
@@ -753,16 +752,16 @@ msgstr ""
|
|
753 |
"¡Asegúrese de que las imágenes de banner no se están utilizando en los "
|
754 |
"anuncios cuando las elimine!"
|
755 |
|
756 |
-
#: adrotate.php:
|
757 |
#, fuzzy
|
758 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
759 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
760 |
|
761 |
-
#: adrotate.php:
|
762 |
msgid "AdRotate Settings"
|
763 |
msgstr "Ajustes AdRotate"
|
764 |
|
765 |
-
#: adrotate.php:
|
766 |
msgid "Update Options"
|
767 |
msgstr "Actualizar Opciones"
|
768 |
|
@@ -783,10 +782,22 @@ msgstr ""
|
|
783 |
"propio panel donde pueden ver el rendimiento de sus anuncios."
|
784 |
|
785 |
#: dashboard/adrotatepro.php:27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
msgid "Localize your ad campaigns with Geo Targeting"
|
787 |
msgstr "Localizar sus campañas publicitarias con Geo Targeting"
|
788 |
|
789 |
-
#: dashboard/adrotatepro.php:
|
790 |
msgid ""
|
791 |
"Go nationwide or global with localized adverts for your various audiences. "
|
792 |
"Set up adverts for countries and cities and sell impressions per general "
|
@@ -794,11 +805,11 @@ msgid ""
|
|
794 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: dashboard/adrotatepro.php:
|
798 |
msgid "Get Premium Support almost all year round"
|
799 |
msgstr "Obtenga Soporte Premium completo durante todo el año"
|
800 |
|
801 |
-
#: dashboard/adrotatepro.php:
|
802 |
msgid ""
|
803 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
804 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -806,21 +817,21 @@ msgid ""
|
|
806 |
"forum. Get a solution (usually) within a day."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: dashboard/adrotatepro.php:
|
810 |
msgid "AdRotate is brought to you by"
|
811 |
msgstr "AdRotate es ofrecido por"
|
812 |
|
813 |
-
#: dashboard/adrotatepro.php:
|
814 |
msgid ""
|
815 |
-
"Premium plugins for WordPress and WooCommerce
|
816 |
-
"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:
|
820 |
msgid "Schedule all campaigns with ease"
|
821 |
msgstr "Programe todas las campañas con facilidad"
|
822 |
|
823 |
-
#: dashboard/adrotatepro.php:
|
824 |
msgid ""
|
825 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
826 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -828,11 +839,23 @@ msgid ""
|
|
828 |
"much more easy. You can set one or many schedules for adverts."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
832 |
msgid "Stay up-to-date with notifications"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: dashboard/adrotatepro.php:
|
836 |
msgid ""
|
837 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
838 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -841,89 +864,89 @@ msgid ""
|
|
841 |
"miss an expiration date again."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: dashboard/adrotatepro.php:
|
845 |
#: dashboard/info.php:93 dashboard/info.php:105
|
846 |
msgid "Buy AdRotate Professional"
|
847 |
msgstr "Comprar AdRotate Profesional"
|
848 |
|
849 |
-
#: dashboard/adrotatepro.php:
|
850 |
msgid "Single License"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: dashboard/adrotatepro.php:
|
854 |
msgid "For one WordPress installation."
|
855 |
msgstr "Para una instalación de WordPress."
|
856 |
|
857 |
-
#: dashboard/adrotatepro.php:
|
858 |
#: dashboard/info.php:98 dashboard/info.php:110
|
859 |
msgid "Duo License"
|
860 |
msgstr "Duo Licencia"
|
861 |
|
862 |
-
#: dashboard/adrotatepro.php:
|
863 |
msgid "For two WordPress installations."
|
864 |
msgstr "Para dos instalaciónes de WordPress."
|
865 |
|
866 |
-
#: dashboard/adrotatepro.php:
|
867 |
#: dashboard/info.php:99 dashboard/info.php:111
|
868 |
msgid "Multi License"
|
869 |
msgstr "Multi Licencia"
|
870 |
|
871 |
-
#: dashboard/adrotatepro.php:
|
872 |
msgid " For up to five WordPress installations."
|
873 |
msgstr "Para un máximo de cinco instalaciones de WordPress."
|
874 |
|
875 |
-
#: dashboard/adrotatepro.php:
|
876 |
#: dashboard/info.php:100 dashboard/info.php:112
|
877 |
msgid "Developer License"
|
878 |
msgstr "Developer Licencia"
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
msgid "Unlimited WordPress installations and/or networks."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
#: dashboard/info.php:101 dashboard/info.php:114
|
886 |
msgid "Compare licenses"
|
887 |
msgstr "Comparar licencias"
|
888 |
|
889 |
-
#: dashboard/adrotatepro.php:
|
890 |
msgid "Not sure which license is for you? Compare them..."
|
891 |
msgstr "No está seguro de que licencia es para usted? Comparelas..."
|
892 |
|
893 |
-
#: dashboard/adrotatepro.php:
|
894 |
msgid "All Licenses"
|
895 |
msgstr "Todas las licencias"
|
896 |
|
897 |
-
#: dashboard/adrotatepro.php:
|
898 |
msgid "Lifetime License"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: dashboard/adrotatepro.php:
|
902 |
msgid "Single installation."
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: dashboard/adrotatepro.php:
|
906 |
msgid "Up to 2 installations."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: dashboard/adrotatepro.php:
|
910 |
msgid "Up to 10 installations."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: dashboard/adrotatepro.php:
|
914 |
msgid "Up to 25 installations or multisite networks."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: dashboard/adrotatepro.php:
|
918 |
msgid ""
|
919 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: dashboard/adrotatepro.php:
|
923 |
msgid "Not sure which license is for you?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: dashboard/adrotatepro.php:
|
927 |
msgid "Compare Licenses"
|
928 |
msgstr ""
|
929 |
|
@@ -1263,15 +1286,15 @@ msgstr "Obtenga más funciones con AdRotate Pro"
|
|
1263 |
|
1264 |
#: dashboard/publisher/adverts-edit.php:192
|
1265 |
#: dashboard/publisher/adverts-edit.php:292
|
1266 |
-
#: dashboard/publisher/adverts-edit.php:
|
1267 |
-
#: dashboard/publisher/adverts-edit.php:
|
1268 |
msgid "Save Advert"
|
1269 |
msgstr "Guardar Anuncio"
|
1270 |
|
1271 |
#: dashboard/publisher/adverts-edit.php:193
|
1272 |
#: dashboard/publisher/adverts-edit.php:293
|
1273 |
-
#: dashboard/publisher/adverts-edit.php:
|
1274 |
-
#: dashboard/publisher/adverts-edit.php:
|
1275 |
#: dashboard/publisher/groups-edit.php:154
|
1276 |
#: dashboard/publisher/groups-edit.php:301
|
1277 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1279,35 +1302,35 @@ msgid "Cancel"
|
|
1279 |
msgstr "Cancelar"
|
1280 |
|
1281 |
#: dashboard/publisher/adverts-edit.php:196
|
1282 |
-
#: dashboard/publisher/adverts-edit.php:
|
1283 |
#: dashboard/publisher/groups-edit.php:136
|
1284 |
#: dashboard/publisher/groups-edit.php:283
|
1285 |
msgid "Usage"
|
1286 |
msgstr "Utilización"
|
1287 |
|
1288 |
#: dashboard/publisher/adverts-edit.php:200
|
1289 |
-
#: dashboard/publisher/adverts-edit.php:
|
1290 |
#: dashboard/publisher/groups-edit.php:140
|
1291 |
#: dashboard/publisher/groups-edit.php:287
|
1292 |
msgid "Widget"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: dashboard/publisher/adverts-edit.php:201
|
1296 |
-
#: dashboard/publisher/adverts-edit.php:
|
1297 |
msgid ""
|
1298 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1299 |
"and enter ID"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: dashboard/publisher/adverts-edit.php:204
|
1303 |
-
#: dashboard/publisher/adverts-edit.php:
|
1304 |
#: dashboard/publisher/groups-edit.php:144
|
1305 |
#: dashboard/publisher/groups-edit.php:291
|
1306 |
msgid "In a post or page"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: dashboard/publisher/adverts-edit.php:206
|
1310 |
-
#: dashboard/publisher/adverts-edit.php:
|
1311 |
#: dashboard/publisher/groups-edit.php:146
|
1312 |
#: dashboard/publisher/groups-edit.php:293
|
1313 |
msgid "Directly in a theme"
|
@@ -1364,8 +1387,8 @@ msgid ""
|
|
1364 |
msgstr ""
|
1365 |
|
1366 |
#: dashboard/publisher/adverts-edit.php:289
|
1367 |
-
#: dashboard/publisher/adverts-edit.php:
|
1368 |
-
#: dashboard/publisher/adverts-edit.php:
|
1369 |
#: dashboard/publisher/groups-edit.php:200
|
1370 |
#, fuzzy
|
1371 |
msgid "Upgrade today"
|
@@ -1381,62 +1404,95 @@ msgid "Everything below is optional."
|
|
1381 |
msgstr "Todo lo siguiente es opcional."
|
1382 |
|
1383 |
#: dashboard/publisher/adverts-edit.php:301
|
1384 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1388 |
msgid "Enable responsive support for this advert."
|
1389 |
msgstr "Habilitar soporte sensible para este anuncio."
|
1390 |
|
1391 |
-
#: dashboard/publisher/adverts-edit.php:
|
1392 |
msgid ""
|
1393 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1394 |
-
"following format; \"imagename.full.ext\".
|
1395 |
-
"strongly recommended."
|
1396 |
msgstr ""
|
1397 |
-
"Cargar las imágenes a la carpeta de banners y asegúrese de que el nombre del "
|
1398 |
-
"archivo es el siguiente formato; \"nombreimagen.full.ext\". Se recomienda un "
|
1399 |
-
"conjunto de imágenes del mismo tamaño."
|
1400 |
|
1401 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1402 |
#: dashboard/publisher/groups-edit.php:194
|
1403 |
msgid "Sortorder"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
#: dashboard/publisher/groups-edit.php:196
|
1408 |
msgid "For administrative purposes set a sortorder."
|
1409 |
msgstr "A efectos administrativos, establecer una Clasificación normal."
|
1410 |
|
1411 |
-
#: dashboard/publisher/adverts-edit.php:
|
1412 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1413 |
msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
|
1414 |
|
1415 |
-
#: dashboard/publisher/adverts-edit.php:
|
1416 |
msgid ""
|
1417 |
-
"With AdRotate Pro you can
|
|
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: dashboard/publisher/adverts-edit.php:
|
1421 |
msgid "Geo Targeting in AdRotate Pro"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: dashboard/publisher/adverts-edit.php:
|
1425 |
msgid ""
|
1426 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: dashboard/publisher/adverts-edit.php:
|
1430 |
msgid "Cities/States"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: dashboard/publisher/adverts-edit.php:
|
1434 |
msgid ""
|
1435 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1436 |
"states ISO codes are supported)"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: dashboard/publisher/adverts-edit.php:
|
1440 |
#, fuzzy
|
1441 |
msgid ""
|
1442 |
"AdRotate does not check the validity of names so make sure you spell them "
|
@@ -1445,67 +1501,67 @@ msgstr ""
|
|
1445 |
"AdRotate no comprueba la validez de los nombres, así que asegúrate de "
|
1446 |
"escribirlos correctamente!"
|
1447 |
|
1448 |
-
#: dashboard/publisher/adverts-edit.php:
|
1449 |
msgid "Countries"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: dashboard/publisher/adverts-edit.php:
|
1453 |
msgid "Select the countries you want the adverts to show in."
|
1454 |
msgstr "Seleccione los países en los que desea que los anuncios se muestren."
|
1455 |
|
1456 |
-
#: dashboard/publisher/adverts-edit.php:
|
1457 |
msgid "Cities take priority and will be filtered first."
|
1458 |
msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
|
1459 |
|
1460 |
-
#: dashboard/publisher/adverts-edit.php:
|
1461 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: dashboard/publisher/adverts-edit.php:
|
1465 |
msgid "Select Groups"
|
1466 |
msgstr "Seleccione Grupos"
|
1467 |
|
1468 |
-
#: dashboard/publisher/adverts-edit.php:
|
1469 |
msgid "ID - Name"
|
1470 |
msgstr "ID - Nombre"
|
1471 |
|
1472 |
-
#: dashboard/publisher/adverts-edit.php:
|
1473 |
#: dashboard/publisher/groups-main.php:60
|
1474 |
#: dashboard/settings/geotargeting.php:39
|
1475 |
msgid "Default"
|
1476 |
msgstr "Predeterminado"
|
1477 |
|
1478 |
-
#: dashboard/publisher/adverts-edit.php:
|
1479 |
#: dashboard/publisher/groups-main.php:61
|
1480 |
msgid "Dynamic"
|
1481 |
msgstr "Dinámico"
|
1482 |
|
1483 |
-
#: dashboard/publisher/adverts-edit.php:
|
1484 |
#: dashboard/publisher/groups-main.php:61
|
1485 |
msgid "second rotation"
|
1486 |
msgstr "segundos rotación"
|
1487 |
|
1488 |
-
#: dashboard/publisher/adverts-edit.php:
|
1489 |
#: dashboard/publisher/groups-main.php:62
|
1490 |
msgid "Block"
|
1491 |
msgstr "Block"
|
1492 |
|
1493 |
-
#: dashboard/publisher/adverts-edit.php:
|
1494 |
#: dashboard/publisher/groups-main.php:62
|
1495 |
msgid "grid"
|
1496 |
msgstr "cuadrícula"
|
1497 |
|
1498 |
-
#: dashboard/publisher/adverts-edit.php:
|
1499 |
#: dashboard/publisher/groups-edit.php:202
|
1500 |
#: dashboard/publisher/groups-main.php:63
|
1501 |
msgid "Post Injection"
|
1502 |
msgstr "Integrarlo después"
|
1503 |
|
1504 |
-
#: dashboard/publisher/adverts-edit.php:
|
1505 |
msgid "Geolocation"
|
1506 |
msgstr "Geolocalización"
|
1507 |
|
1508 |
-
#: dashboard/publisher/adverts-edit.php:
|
1509 |
#: dashboard/publisher/groups-edit.php:61
|
1510 |
#: dashboard/publisher/groups-main.php:70
|
1511 |
msgid "Mode"
|
@@ -1599,11 +1655,6 @@ msgstr "Clics hoy"
|
|
1599 |
msgid "Monthly overview of clicks and impressions"
|
1600 |
msgstr "Resumen mensual de clics e impresiones"
|
1601 |
|
1602 |
-
#: dashboard/publisher/adverts-report.php:58
|
1603 |
-
#: dashboard/publisher/groups-report.php:64
|
1604 |
-
msgid "Note:"
|
1605 |
-
msgstr "Nota:"
|
1606 |
-
|
1607 |
#: dashboard/publisher/adverts-report.php:58
|
1608 |
#: dashboard/publisher/groups-report.php:64
|
1609 |
msgid ""
|
@@ -1955,9 +2006,8 @@ msgstr "Está a punto de eliminar un grupo"
|
|
1955 |
msgid "This action can not be undone!"
|
1956 |
msgstr "Esta acción no se puede deshacerse!"
|
1957 |
|
1958 |
-
#: dashboard/publisher/groups-main.php:24
|
1959 |
-
#: dashboard/settings/maintenance.php:
|
1960 |
-
#: dashboard/settings/maintenance.php:34
|
1961 |
msgid "OK to continue, CANCEL to stop."
|
1962 |
msgstr "OK para continuar, CANCELAR para detenerlo."
|
1963 |
|
@@ -2038,67 +2088,77 @@ msgid ""
|
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2041 |
msgid "Load jQuery"
|
2042 |
msgstr "Cargar jQuery"
|
2043 |
|
2044 |
-
#: dashboard/settings/general.php:
|
2045 |
msgid ""
|
2046 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2047 |
"groups, statistics and some other features."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: dashboard/settings/general.php:
|
2051 |
msgid "Load scripts in footer?"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: dashboard/settings/general.php:
|
2055 |
msgid ""
|
2056 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2057 |
"site."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: dashboard/settings/general.php:
|
2061 |
msgid "Adblock disguise"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: dashboard/settings/general.php:
|
2065 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: dashboard/settings/general.php:
|
2069 |
msgid ""
|
2070 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: dashboard/settings/general.php:
|
2074 |
msgid ""
|
2075 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2076 |
"instead of the AdRotate widget."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: dashboard/settings/general.php:
|
2080 |
msgid ""
|
2081 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2082 |
"feature will have little effect!"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: dashboard/settings/general.php:
|
2086 |
msgid "Banner Folder"
|
2087 |
msgstr "Carpeta de los Banners"
|
2088 |
|
2089 |
-
#: dashboard/settings/general.php:
|
2090 |
msgid "Set a location where your banner images will be stored."
|
2091 |
msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
|
2092 |
|
2093 |
-
#: dashboard/settings/general.php:
|
2094 |
msgid "Location"
|
2095 |
msgstr "Localización"
|
2096 |
|
2097 |
-
#: dashboard/settings/general.php:
|
2098 |
msgid "(Default: wp-content/banners/)."
|
2099 |
msgstr "(Predeterminado: wp-content/banners/)."
|
2100 |
|
2101 |
-
#: dashboard/settings/general.php:
|
2102 |
msgid ""
|
2103 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2104 |
"like:"
|
@@ -2106,7 +2166,7 @@ msgstr ""
|
|
2106 |
"Un truco para tratar de bloquear el acceso a los anuncios es asignar a la "
|
2107 |
"carpeta un nombre impensable como:"
|
2108 |
|
2109 |
-
#: dashboard/settings/general.php:
|
2110 |
msgid ""
|
2111 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2112 |
"will show errors when the folder is missing."
|
@@ -2114,36 +2174,36 @@ msgstr ""
|
|
2114 |
"Si esta carpeta no existe, el sistema NO LA CREARA de forma automática. "
|
2115 |
"Cuando no se encuentre la carpeta, AdRotate mostrará errores."
|
2116 |
|
2117 |
-
#: dashboard/settings/general.php:
|
2118 |
msgid "Bot filter"
|
2119 |
msgstr "Filtro de Motor de búsqueda"
|
2120 |
|
2121 |
-
#: dashboard/settings/general.php:
|
2122 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: dashboard/settings/general.php:
|
2126 |
msgid "User-Agent Filter"
|
2127 |
msgstr "Filtro de User-Agent"
|
2128 |
|
2129 |
-
#: dashboard/settings/general.php:
|
2130 |
msgid ""
|
2131 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: dashboard/settings/general.php:
|
2135 |
msgid ""
|
2136 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2137 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: dashboard/settings/general.php:
|
2141 |
msgid ""
|
2142 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2143 |
"characters are stripped out."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: dashboard/settings/general.php:
|
2147 |
msgid ""
|
2148 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2149 |
"well."
|
@@ -2151,11 +2211,11 @@ msgstr ""
|
|
2151 |
"Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
|
2152 |
"bloqueados."
|
2153 |
|
2154 |
-
#: dashboard/settings/general.php:
|
2155 |
msgid "Learn more about"
|
2156 |
msgstr "Más información sobre"
|
2157 |
|
2158 |
-
#: dashboard/settings/general.php:
|
2159 |
msgid "user-agents"
|
2160 |
msgstr "user-agents"
|
2161 |
|
@@ -2821,6 +2881,15 @@ msgid ""
|
|
2821 |
msgstr ""
|
2822 |
"Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
|
2823 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2824 |
#, fuzzy
|
2825 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2826 |
#~ msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:45+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:45+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:849
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
+
#: adrotate-functions.php:852
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
+
#: adrotate-functions.php:901
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:905
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:909
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Anuncio(s) eliminado"
|
39 |
|
40 |
+
#: adrotate-functions.php:913
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Grupo borrado"
|
43 |
|
44 |
+
#: adrotate-functions.php:917
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Estadisticas del Anuncio(s) restablecidas"
|
47 |
|
48 |
+
#: adrotate-functions.php:921
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Anuncio(s) renovado"
|
51 |
|
52 |
+
#: adrotate-functions.php:925
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Anuncio(s) desactivado"
|
55 |
|
56 |
+
#: adrotate-functions.php:929
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Anuncio(s) activado"
|
59 |
|
60 |
+
#: adrotate-functions.php:933
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
63 |
|
64 |
+
#: adrotate-functions.php:937
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "Exportación Creada"
|
68 |
|
69 |
+
#: adrotate-functions.php:942
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Ajustes guardados"
|
72 |
|
73 |
+
#: adrotate-functions.php:946
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Base de Datos optimizada"
|
76 |
|
77 |
+
#: adrotate-functions.php:950
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Base de Datos reparada"
|
80 |
|
81 |
+
#: adrotate-functions.php:954
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
|
84 |
|
85 |
+
#: adrotate-functions.php:958
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "Se han eliminado los registros vacios de la base de datos"
|
88 |
|
89 |
+
#: adrotate-functions.php:963
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "Acción prohibida"
|
92 |
|
93 |
+
#: adrotate-functions.php:967
|
94 |
msgid ""
|
95 |
"The ad was saved but has an issue which might prevent it from working "
|
96 |
"properly. Review the colored ad."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: adrotate-functions.php:971
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "No se han encontrado datos en el período de tiempo seleccionado"
|
102 |
|
103 |
+
#: adrotate-functions.php:975
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
|
106 |
|
107 |
+
#: adrotate-functions.php:979
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: adrotate-functions.php:983
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: adrotate-functions.php:987
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: adrotate-manage-publisher.php:712
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: adrotate-output.php:639
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr "¡Oh, no! Algo salió mal!"
|
126 |
|
127 |
+
#: adrotate-output.php:640
|
128 |
msgid ""
|
129 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
130 |
"Verify if the url used is valid or log in via your browser."
|
132 |
"WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
|
133 |
"Verificar si la url utilizada es válida o acceder a través del navegador."
|
134 |
|
135 |
+
#: adrotate-output.php:641
|
136 |
msgid ""
|
137 |
"If you have received the url you want to visit via email, you are being "
|
138 |
"tricked!"
|
140 |
"Si usted ha recibido la url que desea visitar a través del correo "
|
141 |
"electrónico, es posible que le esten engañando!"
|
142 |
|
143 |
+
#: adrotate-output.php:642
|
144 |
msgid "Contact support if the issue persists:"
|
145 |
msgstr "Si el problema persiste, contacte con el soporte:"
|
146 |
|
147 |
+
#: adrotate-output.php:660
|
148 |
msgid ""
|
149 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
150 |
"restrictions or does not exist!"
|
152 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
153 |
"restricciones de programa, de geolocalización o no existe!"
|
154 |
|
155 |
+
#: adrotate-output.php:662
|
156 |
msgid ""
|
157 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
158 |
"restrictions!"
|
160 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
161 |
"restricciones restricciones de programa o geolocalización!"
|
162 |
|
163 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
164 |
msgid ""
|
165 |
"Either there are no banners, they are disabled or none qualified for this "
|
166 |
"location!"
|
168 |
"O bien no hay banners, estan desactivados o no estan programados para esta "
|
169 |
"ubicación!"
|
170 |
|
171 |
+
#: adrotate-output.php:677
|
172 |
msgid "Error, no Ad ID set! Check your syntax!"
|
173 |
msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
|
174 |
|
175 |
+
#: adrotate-output.php:683
|
176 |
msgid "Error, no group ID set! Check your syntax!"
|
177 |
msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
|
178 |
|
179 |
+
#: adrotate-output.php:688
|
180 |
msgid "Error, group does not exist! Check your syntax!"
|
181 |
msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
|
182 |
|
183 |
+
#: adrotate-output.php:694
|
184 |
msgid ""
|
185 |
"There was an error locating the database tables for AdRotate. Please "
|
186 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
188 |
"Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
|
189 |
"desactivar y volver a activar el plugin AdRotate de la página!"
|
190 |
|
191 |
+
#: adrotate-output.php:694
|
192 |
msgid "If this does not solve the issue please seek support at"
|
193 |
msgstr "Si esto no resuelve el problema por favor busque apoyo en"
|
194 |
|
195 |
+
#: adrotate-output.php:700
|
196 |
msgid "An unknown error occured."
|
197 |
msgstr "Ha ocurrido un error desconocido."
|
198 |
|
199 |
+
#: adrotate-output.php:725
|
200 |
msgid "active ad(s) expired."
|
201 |
msgstr "anuncio(s) activo(s) caducó."
|
202 |
|
203 |
+
#: adrotate-output.php:725
|
204 |
msgid "Take action now"
|
205 |
msgstr "Tomar medidas ahora"
|
206 |
|
207 |
+
#: adrotate-output.php:727
|
208 |
msgid "active ad(s) are about to expire."
|
209 |
msgstr "anuncio(s) activo(s) están a punto de caducar."
|
210 |
|
211 |
+
#: adrotate-output.php:727
|
212 |
msgid "Check it out"
|
213 |
msgstr "Compruébelo"
|
214 |
|
215 |
+
#: adrotate-output.php:729
|
216 |
msgid "active ad(s) with configuration errors."
|
217 |
msgstr "anuncio(s) activo(s) con errores de configuración."
|
218 |
|
219 |
+
#: adrotate-output.php:729
|
220 |
msgid "Solve this"
|
221 |
msgstr "Solucione este"
|
222 |
|
223 |
+
#: adrotate-output.php:731
|
224 |
msgid "ad(s) expired."
|
225 |
msgstr "anuncio(s) caducado."
|
226 |
|
227 |
+
#: adrotate-output.php:731
|
228 |
msgid "ad(s) are about to expire."
|
229 |
msgstr "anuncio(s) están a punto de caducar."
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "ad(s) with configuration errors."
|
233 |
msgstr "anuncio(s) con errores de configuración."
|
234 |
|
235 |
+
#: adrotate-output.php:731
|
236 |
msgid "Fix this as soon as possible"
|
237 |
msgstr "Solucionar esto en cuanto sea posible"
|
238 |
|
239 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
240 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
241 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
242 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
243 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
244 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
245 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
246 |
#: dashboard/settings/geotargeting.php:26
|
248 |
msgid "Buy now"
|
249 |
msgstr "Comprar"
|
250 |
|
251 |
+
#: adrotate-output.php:744
|
252 |
msgid ""
|
253 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
254 |
"to the <strong>PRO</strong> version"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:744
|
258 |
#, php-format
|
259 |
msgid ""
|
260 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: adrotate-output.php:744
|
264 |
msgid "Thank you for your purchase!"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: adrotate-output.php:788
|
268 |
msgid ""
|
269 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
270 |
"this menu. Check out the"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:788
|
274 |
msgid "manuals"
|
275 |
msgstr "manuales"
|
276 |
|
277 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
278 |
msgid "and"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: adrotate-output.php:788
|
282 |
msgid "forums"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: adrotate-output.php:821
|
286 |
#, fuzzy
|
287 |
msgid "Useful Links"
|
288 |
msgstr "Enlaces de interés"
|
289 |
|
290 |
+
#: adrotate-output.php:822
|
291 |
msgid "Useful links to learn more about AdRotate"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: adrotate-output.php:824
|
295 |
#, fuzzy
|
296 |
msgid "AdRotate Page"
|
297 |
msgstr "AdRotate Pro"
|
298 |
|
299 |
+
#: adrotate-output.php:825
|
300 |
#, fuzzy
|
301 |
msgid "Getting Started With AdRotate"
|
302 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
303 |
|
304 |
+
#: adrotate-output.php:826
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate manuals"
|
307 |
msgstr "Información de AdRotate"
|
308 |
|
309 |
+
#: adrotate-output.php:827
|
310 |
#, fuzzy
|
311 |
msgid "AdRotate Support Forum"
|
312 |
msgstr "Tienda AdRotate"
|
313 |
|
314 |
+
#: adrotate-output.php:853
|
315 |
#, fuzzy
|
316 |
msgid "Help AdRotate Grow"
|
317 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
318 |
|
319 |
+
#: adrotate-output.php:854
|
320 |
msgid "Brought to you by"
|
321 |
msgstr "Presentado por"
|
322 |
|
323 |
+
#: adrotate-output.php:861
|
324 |
msgid ""
|
325 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
326 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:861
|
330 |
msgid "If you find AdRotate useful please leave your honest"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:861
|
334 |
msgid "rating"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:861
|
338 |
#, fuzzy
|
339 |
msgid "review"
|
340 |
msgstr "Revise el anuncio aquí:"
|
341 |
|
342 |
+
#: adrotate-output.php:861
|
343 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: adrotate-output.php:893
|
347 |
msgid "Available in AdRotate Pro"
|
348 |
msgstr "Disponible en AdRotate Pro"
|
349 |
|
350 |
+
#: adrotate-output.php:893
|
351 |
msgid "More information..."
|
352 |
msgstr "Más información..."
|
353 |
|
354 |
+
#: adrotate-output.php:894
|
355 |
msgid "This feature is available in AdRotate Pro"
|
356 |
msgstr "Esta función está disponible en AdRotate Pro"
|
357 |
|
358 |
+
#: adrotate-output.php:894
|
359 |
msgid "Learn more"
|
360 |
msgstr "Aprender más"
|
361 |
|
476 |
msgid "Fill in the ID of the type you want to display!"
|
477 |
msgstr "Rellene con el ID del tipo que desea mostrar!"
|
478 |
|
479 |
+
#: adrotate.php:106
|
480 |
msgid "General Info"
|
481 |
msgstr "Información General"
|
482 |
|
483 |
+
#: adrotate.php:107
|
484 |
msgid "AdRotate Pro"
|
485 |
msgstr "AdRotate Pro"
|
486 |
|
487 |
+
#: adrotate.php:108
|
488 |
msgid "Manage Ads"
|
489 |
msgstr "Gestionar Anuncios"
|
490 |
|
491 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
492 |
msgid "Manage Groups"
|
493 |
msgstr "Gestionar Grupos"
|
494 |
|
495 |
+
#: adrotate.php:110 adrotate.php:408
|
496 |
#, fuzzy
|
497 |
msgid "Manage Schedules"
|
498 |
msgstr "Gestionar Programas"
|
499 |
|
500 |
+
#: adrotate.php:111
|
501 |
#, fuzzy
|
502 |
msgid "Manage Media"
|
503 |
msgstr "Gestionar Medios"
|
504 |
|
505 |
+
#: adrotate.php:112
|
506 |
msgid "Settings"
|
507 |
msgstr "Ajustes"
|
508 |
|
509 |
+
#: adrotate.php:135
|
510 |
msgid "AdRotate Info"
|
511 |
msgstr "Información de AdRotate"
|
512 |
|
513 |
+
#: adrotate.php:156
|
514 |
msgid "AdRotate Professional"
|
515 |
msgstr "AdRotate Profesional"
|
516 |
|
517 |
+
#: adrotate.php:199
|
518 |
msgid "Ad Management"
|
519 |
msgstr "Administración de Anuncios"
|
520 |
|
521 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
522 |
msgid "Manage"
|
523 |
msgstr "Gestionar"
|
524 |
|
525 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
526 |
msgid "Add New"
|
527 |
msgstr "Añadir Nuevo"
|
528 |
|
529 |
+
#: adrotate.php:337
|
530 |
msgid "Group Management"
|
531 |
msgstr "Administración de Grupos"
|
532 |
|
533 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
534 |
#: dashboard/publisher/groups-main.php:70
|
535 |
msgid "Report"
|
536 |
msgstr "Informe"
|
537 |
|
538 |
+
#: adrotate.php:399
|
539 |
#, fuzzy
|
540 |
msgid "Schedule Management available in AdRotate Pro"
|
541 |
msgstr "Disponible en AdRotate Pro"
|
542 |
|
543 |
+
#: adrotate.php:409
|
544 |
msgid ""
|
545 |
"Schedule management and multiple schedules per advert is available in "
|
546 |
"AdRotate Pro."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
550 |
#: dashboard/publisher/adverts-main.php:114
|
551 |
#: dashboard/publisher/groups-edit.php:75
|
552 |
#: dashboard/publisher/groups-main.php:89
|
554 |
msgid "More information"
|
555 |
msgstr "Más información..."
|
556 |
|
557 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
558 |
#: dashboard/publisher/adverts-error.php:19
|
559 |
#: dashboard/publisher/adverts-main.php:20
|
560 |
#: dashboard/publisher/groups-main.php:20
|
561 |
msgid "Bulk Actions"
|
562 |
msgstr "Acciones en Lote"
|
563 |
|
564 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
565 |
#: dashboard/publisher/adverts-error.php:29
|
566 |
#: dashboard/publisher/adverts-main.php:30
|
567 |
#: dashboard/publisher/groups-main.php:24
|
568 |
msgid "Go"
|
569 |
msgstr "Aplicar"
|
570 |
|
571 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
572 |
#: dashboard/publisher/adverts-error.php:39
|
573 |
#: dashboard/publisher/adverts-main.php:39
|
574 |
#: dashboard/publisher/groups-edit.php:51
|
576 |
msgid "ID"
|
577 |
msgstr "ID"
|
578 |
|
579 |
+
#: adrotate.php:427
|
580 |
#, fuzzy
|
581 |
msgid "Start"
|
582 |
msgstr "Iniciar"
|
583 |
|
584 |
+
#: adrotate.php:427
|
585 |
#, fuzzy
|
586 |
msgid "End"
|
587 |
msgstr "Finalizar"
|
588 |
|
589 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
590 |
#: dashboard/publisher/groups-main.php:34
|
591 |
msgid "Ads"
|
592 |
msgstr "Anuncios"
|
593 |
|
594 |
+
#: adrotate.php:430
|
595 |
msgid "Max Impressions"
|
596 |
msgstr "Número máximo de Impresiones"
|
597 |
|
598 |
+
#: adrotate.php:431
|
599 |
msgid "Max Clicks"
|
600 |
msgstr "Número máximo de Clics"
|
601 |
|
602 |
+
#: adrotate.php:461
|
603 |
#, fuzzy
|
604 |
msgid "No schedules created yet!"
|
605 |
msgstr "Todavia no se han creado programas!"
|
606 |
|
607 |
+
#: adrotate.php:466
|
608 |
#, fuzzy
|
609 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
610 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
611 |
|
612 |
+
#: adrotate.php:466 adrotate.php:532
|
613 |
#, fuzzy
|
614 |
msgid "Upgrade today!"
|
615 |
msgstr "Hoy"
|
616 |
|
617 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
618 |
#: dashboard/publisher/groups-edit.php:387
|
619 |
msgid "Expires soon."
|
620 |
msgstr "Caduca pronto."
|
621 |
|
622 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
623 |
#: dashboard/publisher/groups-edit.php:388
|
624 |
msgid "Has expired."
|
625 |
msgstr "Ha expirado."
|
626 |
|
627 |
+
#: adrotate.php:494
|
628 |
#, fuzzy
|
629 |
msgid "Media Management available in AdRotate Pro"
|
630 |
msgstr "Esta función está disponible en AdRotate Pro"
|
631 |
|
632 |
+
#: adrotate.php:496
|
633 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: adrotate.php:496
|
637 |
msgid ""
|
638 |
"This is useful if you use responsive adverts with multiple images or have "
|
639 |
"HTML5 adverts containing multiple files."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: adrotate.php:496
|
643 |
#, fuzzy
|
644 |
msgid "Media uploading and management is available in AdRotate Pro."
|
645 |
msgstr "Esta función está disponible en AdRotate Pro"
|
646 |
|
647 |
+
#: adrotate.php:498
|
648 |
msgid "Upload new file"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: adrotate.php:499
|
652 |
msgid "Accepted files:"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: adrotate.php:499
|
656 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: adrotate.php:499
|
660 |
#, fuzzy
|
661 |
msgid "Maximum size is 512Kb."
|
662 |
msgstr "El tamaño máximo es 512Kb."
|
663 |
|
664 |
+
#: adrotate.php:499
|
665 |
#, fuzzy
|
666 |
msgid "Important:"
|
667 |
msgstr "Importante:"
|
668 |
|
669 |
+
#: adrotate.php:499
|
670 |
#, fuzzy
|
671 |
msgid ""
|
672 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
675 |
"Asegúrese de que en el nombre de su archivo no contiene espacios ni "
|
676 |
"caracteres especiales. Reemplace los espacios con un - o _."
|
677 |
|
678 |
+
#: adrotate.php:499
|
679 |
msgid ""
|
680 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
681 |
"file so it knows about the changed name. For example for the javascript file."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: adrotate.php:502
|
685 |
#, fuzzy
|
686 |
msgid ""
|
687 |
"For responsive adverts make sure the filename is in the following format; "
|
691 |
"siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
|
692 |
"de imágenes del mismo tamaño."
|
693 |
|
694 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
695 |
msgid ""
|
696 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
697 |
"filename instead of \".full\" for the various viewports."
|
700 |
"\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
|
701 |
"diferentes visores."
|
702 |
|
703 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
704 |
#: dashboard/publisher/groups-edit.php:320
|
705 |
msgid "Example:"
|
706 |
msgstr "Ejemplo:"
|
707 |
|
708 |
+
#: adrotate.php:504
|
709 |
#, fuzzy
|
710 |
msgid ""
|
711 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
714 |
"image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
|
715 |
"distintas ventanas gráficas. Se necesita jQuery."
|
716 |
|
717 |
+
#: adrotate.php:508
|
718 |
msgid "Upload file"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: adrotate.php:508
|
722 |
msgid "Click only once per file!"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: adrotate.php:511
|
726 |
msgid "Available files in"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
730 |
#: dashboard/publisher/groups-main.php:33
|
731 |
msgid "Name"
|
732 |
msgstr "Nombre"
|
733 |
|
734 |
+
#: adrotate.php:517
|
735 |
#, fuzzy
|
736 |
msgid "Actions"
|
737 |
msgstr "Acciones"
|
738 |
|
739 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
740 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
741 |
#: dashboard/publisher/adverts-disabled.php:22
|
742 |
#: dashboard/publisher/adverts-error.php:21
|
743 |
#: dashboard/publisher/adverts-main.php:22
|
744 |
msgid "Delete"
|
745 |
msgstr "Borrar"
|
746 |
|
747 |
+
#: adrotate.php:532
|
748 |
#, fuzzy
|
749 |
msgid ""
|
750 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
752 |
"¡Asegúrese de que las imágenes de banner no se están utilizando en los "
|
753 |
"anuncios cuando las elimine!"
|
754 |
|
755 |
+
#: adrotate.php:532
|
756 |
#, fuzzy
|
757 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
758 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
759 |
|
760 |
+
#: adrotate.php:561
|
761 |
msgid "AdRotate Settings"
|
762 |
msgstr "Ajustes AdRotate"
|
763 |
|
764 |
+
#: adrotate.php:632
|
765 |
msgid "Update Options"
|
766 |
msgstr "Actualizar Opciones"
|
767 |
|
782 |
"propio panel donde pueden ver el rendimiento de sus anuncios."
|
783 |
|
784 |
#: dashboard/adrotatepro.php:27
|
785 |
+
msgid "Mobile campaigns"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: dashboard/adrotatepro.php:30
|
789 |
+
msgid ""
|
790 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
791 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
792 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
793 |
+
"and with a few easy to use options they show up where you want them to!"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: dashboard/adrotatepro.php:34
|
797 |
msgid "Localize your ad campaigns with Geo Targeting"
|
798 |
msgstr "Localizar sus campañas publicitarias con Geo Targeting"
|
799 |
|
800 |
+
#: dashboard/adrotatepro.php:37
|
801 |
msgid ""
|
802 |
"Go nationwide or global with localized adverts for your various audiences. "
|
803 |
"Set up adverts for countries and cities and sell impressions per general "
|
805 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: dashboard/adrotatepro.php:41
|
809 |
msgid "Get Premium Support almost all year round"
|
810 |
msgstr "Obtenga Soporte Premium completo durante todo el año"
|
811 |
|
812 |
+
#: dashboard/adrotatepro.php:44
|
813 |
msgid ""
|
814 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
815 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
817 |
"forum. Get a solution (usually) within a day."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
821 |
msgid "AdRotate is brought to you by"
|
822 |
msgstr "AdRotate es ofrecido por"
|
823 |
|
824 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
825 |
msgid ""
|
826 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
827 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: dashboard/adrotatepro.php:65
|
831 |
msgid "Schedule all campaigns with ease"
|
832 |
msgstr "Programe todas las campañas con facilidad"
|
833 |
|
834 |
+
#: dashboard/adrotatepro.php:68
|
835 |
msgid ""
|
836 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
837 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
839 |
"much more easy. You can set one or many schedules for adverts."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: dashboard/adrotatepro.php:72
|
843 |
+
msgid "Avoid adblockers"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: dashboard/adrotatepro.php:75
|
847 |
+
msgid ""
|
848 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
849 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
850 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
851 |
+
"adverts smartly so these features reach their full potential!"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: dashboard/adrotatepro.php:79
|
855 |
msgid "Stay up-to-date with notifications"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: dashboard/adrotatepro.php:82
|
859 |
msgid ""
|
860 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
861 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
864 |
"miss an expiration date again."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
868 |
#: dashboard/info.php:93 dashboard/info.php:105
|
869 |
msgid "Buy AdRotate Professional"
|
870 |
msgstr "Comprar AdRotate Profesional"
|
871 |
|
872 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
873 |
msgid "Single License"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
877 |
msgid "For one WordPress installation."
|
878 |
msgstr "Para una instalación de WordPress."
|
879 |
|
880 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
881 |
#: dashboard/info.php:98 dashboard/info.php:110
|
882 |
msgid "Duo License"
|
883 |
msgstr "Duo Licencia"
|
884 |
|
885 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
886 |
msgid "For two WordPress installations."
|
887 |
msgstr "Para dos instalaciónes de WordPress."
|
888 |
|
889 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
890 |
#: dashboard/info.php:99 dashboard/info.php:111
|
891 |
msgid "Multi License"
|
892 |
msgstr "Multi Licencia"
|
893 |
|
894 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
895 |
msgid " For up to five WordPress installations."
|
896 |
msgstr "Para un máximo de cinco instalaciones de WordPress."
|
897 |
|
898 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
899 |
#: dashboard/info.php:100 dashboard/info.php:112
|
900 |
msgid "Developer License"
|
901 |
msgstr "Developer Licencia"
|
902 |
|
903 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
904 |
msgid "Unlimited WordPress installations and/or networks."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
908 |
#: dashboard/info.php:101 dashboard/info.php:114
|
909 |
msgid "Compare licenses"
|
910 |
msgstr "Comparar licencias"
|
911 |
|
912 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
913 |
msgid "Not sure which license is for you? Compare them..."
|
914 |
msgstr "No está seguro de que licencia es para usted? Comparelas..."
|
915 |
|
916 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
917 |
msgid "All Licenses"
|
918 |
msgstr "Todas las licencias"
|
919 |
|
920 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
921 |
msgid "Lifetime License"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
925 |
msgid "Single installation."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
929 |
msgid "Up to 2 installations."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
933 |
msgid "Up to 10 installations."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
937 |
msgid "Up to 25 installations or multisite networks."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
941 |
msgid ""
|
942 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
946 |
msgid "Not sure which license is for you?"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
950 |
msgid "Compare Licenses"
|
951 |
msgstr ""
|
952 |
|
1286 |
|
1287 |
#: dashboard/publisher/adverts-edit.php:192
|
1288 |
#: dashboard/publisher/adverts-edit.php:292
|
1289 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1290 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1291 |
msgid "Save Advert"
|
1292 |
msgstr "Guardar Anuncio"
|
1293 |
|
1294 |
#: dashboard/publisher/adverts-edit.php:193
|
1295 |
#: dashboard/publisher/adverts-edit.php:293
|
1296 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1297 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1298 |
#: dashboard/publisher/groups-edit.php:154
|
1299 |
#: dashboard/publisher/groups-edit.php:301
|
1300 |
#: dashboard/publisher/groups-edit.php:393
|
1302 |
msgstr "Cancelar"
|
1303 |
|
1304 |
#: dashboard/publisher/adverts-edit.php:196
|
1305 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1306 |
#: dashboard/publisher/groups-edit.php:136
|
1307 |
#: dashboard/publisher/groups-edit.php:283
|
1308 |
msgid "Usage"
|
1309 |
msgstr "Utilización"
|
1310 |
|
1311 |
#: dashboard/publisher/adverts-edit.php:200
|
1312 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1313 |
#: dashboard/publisher/groups-edit.php:140
|
1314 |
#: dashboard/publisher/groups-edit.php:287
|
1315 |
msgid "Widget"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: dashboard/publisher/adverts-edit.php:201
|
1319 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1320 |
msgid ""
|
1321 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1322 |
"and enter ID"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: dashboard/publisher/adverts-edit.php:204
|
1326 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1327 |
#: dashboard/publisher/groups-edit.php:144
|
1328 |
#: dashboard/publisher/groups-edit.php:291
|
1329 |
msgid "In a post or page"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
#: dashboard/publisher/adverts-edit.php:206
|
1333 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1334 |
#: dashboard/publisher/groups-edit.php:146
|
1335 |
#: dashboard/publisher/groups-edit.php:293
|
1336 |
msgid "Directly in a theme"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
#: dashboard/publisher/adverts-edit.php:289
|
1390 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1391 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1392 |
#: dashboard/publisher/groups-edit.php:200
|
1393 |
#, fuzzy
|
1394 |
msgid "Upgrade today"
|
1404 |
msgstr "Todo lo siguiente es opcional."
|
1405 |
|
1406 |
#: dashboard/publisher/adverts-edit.php:301
|
1407 |
+
msgid "Mobile"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1411 |
+
msgid "Show on;"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1415 |
+
msgid "Computers"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1419 |
+
msgid "Smartphones"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: dashboard/publisher/adverts-edit.php:303
|
1423 |
+
msgid "Tablets."
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1427 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1431 |
+
msgid "Responsive"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1435 |
msgid "Enable responsive support for this advert."
|
1436 |
msgstr "Habilitar soporte sensible para este anuncio."
|
1437 |
|
1438 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1439 |
msgid ""
|
1440 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1441 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1442 |
msgstr ""
|
|
|
|
|
|
|
1443 |
|
1444 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1445 |
+
#: dashboard/publisher/adverts-report.php:58
|
1446 |
+
#: dashboard/publisher/groups-report.php:64
|
1447 |
+
msgid "Note:"
|
1448 |
+
msgstr "Nota:"
|
1449 |
+
|
1450 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1451 |
+
msgid ""
|
1452 |
+
"This feature will not be developed any further. Consider switching to the "
|
1453 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1457 |
#: dashboard/publisher/groups-edit.php:194
|
1458 |
msgid "Sortorder"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1462 |
#: dashboard/publisher/groups-edit.php:196
|
1463 |
msgid "For administrative purposes set a sortorder."
|
1464 |
msgstr "A efectos administrativos, establecer una Clasificación normal."
|
1465 |
|
1466 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1467 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1468 |
msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
|
1469 |
|
1470 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1471 |
msgid ""
|
1472 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1473 |
+
"on!"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1477 |
msgid "Geo Targeting in AdRotate Pro"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1481 |
msgid ""
|
1482 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1486 |
msgid "Cities/States"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1490 |
msgid ""
|
1491 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1492 |
"states ISO codes are supported)"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1496 |
#, fuzzy
|
1497 |
msgid ""
|
1498 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1501 |
"AdRotate no comprueba la validez de los nombres, así que asegúrate de "
|
1502 |
"escribirlos correctamente!"
|
1503 |
|
1504 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1505 |
msgid "Countries"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1509 |
msgid "Select the countries you want the adverts to show in."
|
1510 |
msgstr "Seleccione los países en los que desea que los anuncios se muestren."
|
1511 |
|
1512 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1513 |
msgid "Cities take priority and will be filtered first."
|
1514 |
msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
|
1515 |
|
1516 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1517 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1521 |
msgid "Select Groups"
|
1522 |
msgstr "Seleccione Grupos"
|
1523 |
|
1524 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1525 |
msgid "ID - Name"
|
1526 |
msgstr "ID - Nombre"
|
1527 |
|
1528 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1529 |
#: dashboard/publisher/groups-main.php:60
|
1530 |
#: dashboard/settings/geotargeting.php:39
|
1531 |
msgid "Default"
|
1532 |
msgstr "Predeterminado"
|
1533 |
|
1534 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1535 |
#: dashboard/publisher/groups-main.php:61
|
1536 |
msgid "Dynamic"
|
1537 |
msgstr "Dinámico"
|
1538 |
|
1539 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1540 |
#: dashboard/publisher/groups-main.php:61
|
1541 |
msgid "second rotation"
|
1542 |
msgstr "segundos rotación"
|
1543 |
|
1544 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1545 |
#: dashboard/publisher/groups-main.php:62
|
1546 |
msgid "Block"
|
1547 |
msgstr "Block"
|
1548 |
|
1549 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1550 |
#: dashboard/publisher/groups-main.php:62
|
1551 |
msgid "grid"
|
1552 |
msgstr "cuadrícula"
|
1553 |
|
1554 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1555 |
#: dashboard/publisher/groups-edit.php:202
|
1556 |
#: dashboard/publisher/groups-main.php:63
|
1557 |
msgid "Post Injection"
|
1558 |
msgstr "Integrarlo después"
|
1559 |
|
1560 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1561 |
msgid "Geolocation"
|
1562 |
msgstr "Geolocalización"
|
1563 |
|
1564 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1565 |
#: dashboard/publisher/groups-edit.php:61
|
1566 |
#: dashboard/publisher/groups-main.php:70
|
1567 |
msgid "Mode"
|
1655 |
msgid "Monthly overview of clicks and impressions"
|
1656 |
msgstr "Resumen mensual de clics e impresiones"
|
1657 |
|
|
|
|
|
|
|
|
|
|
|
1658 |
#: dashboard/publisher/adverts-report.php:58
|
1659 |
#: dashboard/publisher/groups-report.php:64
|
1660 |
msgid ""
|
2006 |
msgid "This action can not be undone!"
|
2007 |
msgstr "Esta acción no se puede deshacerse!"
|
2008 |
|
2009 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
2010 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2011 |
msgid "OK to continue, CANCEL to stop."
|
2012 |
msgstr "OK para continuar, CANCELAR para detenerlo."
|
2013 |
|
2088 |
msgstr ""
|
2089 |
|
2090 |
#: dashboard/settings/general.php:20
|
2091 |
+
msgid "Dynamic mode for Mobile"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: dashboard/settings/general.php:21
|
2095 |
+
msgid ""
|
2096 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2097 |
+
"jumping content."
|
2098 |
+
msgstr ""
|
2099 |
+
|
2100 |
+
#: dashboard/settings/general.php:24
|
2101 |
msgid "Load jQuery"
|
2102 |
msgstr "Cargar jQuery"
|
2103 |
|
2104 |
+
#: dashboard/settings/general.php:25
|
2105 |
msgid ""
|
2106 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2107 |
"groups, statistics and some other features."
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: dashboard/settings/general.php:28
|
2111 |
msgid "Load scripts in footer?"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: dashboard/settings/general.php:29
|
2115 |
msgid ""
|
2116 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2117 |
"site."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: dashboard/settings/general.php:32
|
2121 |
msgid "Adblock disguise"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: dashboard/settings/general.php:34
|
2125 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: dashboard/settings/general.php:35
|
2129 |
msgid ""
|
2130 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: dashboard/settings/general.php:35
|
2134 |
msgid ""
|
2135 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2136 |
"instead of the AdRotate widget."
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: dashboard/settings/general.php:35
|
2140 |
msgid ""
|
2141 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2142 |
"feature will have little effect!"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: dashboard/settings/general.php:40
|
2146 |
msgid "Banner Folder"
|
2147 |
msgstr "Carpeta de los Banners"
|
2148 |
|
2149 |
+
#: dashboard/settings/general.php:41
|
2150 |
msgid "Set a location where your banner images will be stored."
|
2151 |
msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
|
2152 |
|
2153 |
+
#: dashboard/settings/general.php:44
|
2154 |
msgid "Location"
|
2155 |
msgstr "Localización"
|
2156 |
|
2157 |
+
#: dashboard/settings/general.php:46
|
2158 |
msgid "(Default: wp-content/banners/)."
|
2159 |
msgstr "(Predeterminado: wp-content/banners/)."
|
2160 |
|
2161 |
+
#: dashboard/settings/general.php:47
|
2162 |
msgid ""
|
2163 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2164 |
"like:"
|
2166 |
"Un truco para tratar de bloquear el acceso a los anuncios es asignar a la "
|
2167 |
"carpeta un nombre impensable como:"
|
2168 |
|
2169 |
+
#: dashboard/settings/general.php:48
|
2170 |
msgid ""
|
2171 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2172 |
"will show errors when the folder is missing."
|
2174 |
"Si esta carpeta no existe, el sistema NO LA CREARA de forma automática. "
|
2175 |
"Cuando no se encuentre la carpeta, AdRotate mostrará errores."
|
2176 |
|
2177 |
+
#: dashboard/settings/general.php:53
|
2178 |
msgid "Bot filter"
|
2179 |
msgstr "Filtro de Motor de búsqueda"
|
2180 |
|
2181 |
+
#: dashboard/settings/general.php:54
|
2182 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: dashboard/settings/general.php:57
|
2186 |
msgid "User-Agent Filter"
|
2187 |
msgstr "Filtro de User-Agent"
|
2188 |
|
2189 |
+
#: dashboard/settings/general.php:60
|
2190 |
msgid ""
|
2191 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: dashboard/settings/general.php:61
|
2195 |
msgid ""
|
2196 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2197 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: dashboard/settings/general.php:62
|
2201 |
msgid ""
|
2202 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2203 |
"characters are stripped out."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: dashboard/settings/general.php:63
|
2207 |
msgid ""
|
2208 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2209 |
"well."
|
2211 |
"Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
|
2212 |
"bloqueados."
|
2213 |
|
2214 |
+
#: dashboard/settings/general.php:63
|
2215 |
msgid "Learn more about"
|
2216 |
msgstr "Más información sobre"
|
2217 |
|
2218 |
+
#: dashboard/settings/general.php:63
|
2219 |
msgid "user-agents"
|
2220 |
msgstr "user-agents"
|
2221 |
|
2881 |
msgstr ""
|
2882 |
"Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
|
2883 |
|
2884 |
+
#~ msgid ""
|
2885 |
+
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2886 |
+
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2887 |
+
#~ "is strongly recommended."
|
2888 |
+
#~ msgstr ""
|
2889 |
+
#~ "Cargar las imágenes a la carpeta de banners y asegúrese de que el nombre "
|
2890 |
+
#~ "del archivo es el siguiente formato; \"nombreimagen.full.ext\". Se "
|
2891 |
+
#~ "recomienda un conjunto de imágenes del mismo tamaño."
|
2892 |
+
|
2893 |
#, fuzzy
|
2894 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2895 |
#~ msgstr ""
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,131 +2,131 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Publicité(s) supprimée(s)"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groupe supprimé"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "publicité(s) renouvellée(s)"
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Publicité(s) désactivée(s)"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Publicité(s) activée(s)"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "Publicité créée"
|
68 |
|
69 |
-
#: adrotate-functions.php:
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Paramètres sauvegardés"
|
72 |
|
73 |
-
#: adrotate-functions.php:
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Base de données optimisée"
|
76 |
|
77 |
-
#: adrotate-functions.php:
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Base de données réparée"
|
80 |
|
81 |
-
#: adrotate-functions.php:
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr ""
|
84 |
"Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
|
85 |
|
86 |
-
#: adrotate-functions.php:
|
87 |
msgid "Empty database records removed"
|
88 |
msgstr "Les registres vides de la base de données ont été supprimés"
|
89 |
|
90 |
-
#: adrotate-functions.php:
|
91 |
msgid "Action prohibited"
|
92 |
msgstr "Action interdite"
|
93 |
|
94 |
-
#: adrotate-functions.php:
|
95 |
msgid ""
|
96 |
"The ad was saved but has an issue which might prevent it from working "
|
97 |
"properly. Review the colored ad."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: adrotate-functions.php:
|
101 |
msgid "No data found in selected time period"
|
102 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
103 |
|
104 |
-
#: adrotate-functions.php:
|
105 |
msgid "Database can only be optimized or cleaned once every hour"
|
106 |
msgstr ""
|
107 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
110 |
msgid "Form can not be (partially) empty!"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: adrotate-functions.php:
|
114 |
msgid "No ads found."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: adrotate-functions.php:
|
118 |
msgid "Unexpected error"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: adrotate-manage-publisher.php:
|
122 |
msgid "AdRotate Advertiser"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: adrotate-output.php:
|
126 |
msgid "Oh no! Something went wrong!"
|
127 |
msgstr "Oh no! Un problème est survenu!"
|
128 |
|
129 |
-
#: adrotate-output.php:
|
130 |
msgid ""
|
131 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
132 |
"Verify if the url used is valid or log in via your browser."
|
@@ -135,17 +135,17 @@ msgstr ""
|
|
135 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
136 |
"votre navigateur."
|
137 |
|
138 |
-
#: adrotate-output.php:
|
139 |
msgid ""
|
140 |
"If you have received the url you want to visit via email, you are being "
|
141 |
"tricked!"
|
142 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
msgid "Contact support if the issue persists:"
|
146 |
msgstr "Contactez le support si le soucis persiste :"
|
147 |
|
148 |
-
#: adrotate-output.php:
|
149 |
msgid ""
|
150 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
151 |
"restrictions or does not exist!"
|
@@ -153,7 +153,7 @@ msgstr ""
|
|
153 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
154 |
"horaires/géographiques ou n'existe pas!"
|
155 |
|
156 |
-
#: adrotate-output.php:
|
157 |
msgid ""
|
158 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
159 |
"restrictions!"
|
@@ -161,7 +161,7 @@ msgstr ""
|
|
161 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
162 |
"horaires/géographiques!"
|
163 |
|
164 |
-
#: adrotate-output.php:
|
165 |
msgid ""
|
166 |
"Either there are no banners, they are disabled or none qualified for this "
|
167 |
"location!"
|
@@ -169,19 +169,19 @@ msgstr ""
|
|
169 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
170 |
"cet endroit!"
|
171 |
|
172 |
-
#: adrotate-output.php:
|
173 |
msgid "Error, no Ad ID set! Check your syntax!"
|
174 |
msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
|
175 |
|
176 |
-
#: adrotate-output.php:
|
177 |
msgid "Error, no group ID set! Check your syntax!"
|
178 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
179 |
|
180 |
-
#: adrotate-output.php:
|
181 |
msgid "Error, group does not exist! Check your syntax!"
|
182 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
183 |
|
184 |
-
#: adrotate-output.php:
|
185 |
msgid ""
|
186 |
"There was an error locating the database tables for AdRotate. Please "
|
187 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -190,170 +190,170 @@ msgstr ""
|
|
190 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
191 |
"extensions. "
|
192 |
|
193 |
-
#: adrotate-output.php:
|
194 |
msgid "If this does not solve the issue please seek support at"
|
195 |
msgstr ""
|
196 |
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
197 |
"support à"
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "An unknown error occured."
|
201 |
msgstr "Une erreur inconnue s'est produite."
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "active ad(s) expired."
|
205 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "Take action now"
|
209 |
msgstr "Agir maintenant"
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "active ad(s) are about to expire."
|
213 |
msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "Check it out"
|
217 |
msgstr "Vérifier-le"
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "active ad(s) with configuration errors."
|
221 |
msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "Solve this"
|
225 |
msgstr "Résoudre"
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "ad(s) expired."
|
229 |
msgstr "publicité(s) expirée(s)"
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "ad(s) are about to expire."
|
233 |
msgstr "publicité(s) sont sur le point d'expirer"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "ad(s) with configuration errors."
|
237 |
msgstr "publicité(s) avec des erreurs de configuration."
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
msgid "Fix this as soon as possible"
|
241 |
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
242 |
|
243 |
-
#: adrotate-output.php:
|
244 |
-
#: dashboard/adrotatepro.php:
|
245 |
-
#: dashboard/adrotatepro.php:
|
246 |
-
#: dashboard/adrotatepro.php:
|
247 |
-
#: dashboard/adrotatepro.php:
|
248 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
249 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
250 |
#: dashboard/settings/geotargeting.php:26
|
251 |
msgid "Buy now"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
msgid ""
|
256 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
257 |
"to the <strong>PRO</strong> version"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
#, php-format
|
262 |
msgid ""
|
263 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
msgid "Thank you for your purchase!"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: adrotate-output.php:
|
271 |
msgid ""
|
272 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
273 |
"this menu. Check out the"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: adrotate-output.php:
|
277 |
msgid "manuals"
|
278 |
msgstr "manuels"
|
279 |
|
280 |
-
#: adrotate-output.php:
|
281 |
msgid "and"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: adrotate-output.php:
|
285 |
msgid "forums"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: adrotate-output.php:
|
289 |
msgid "Useful Links"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: adrotate-output.php:
|
293 |
msgid "Useful links to learn more about AdRotate"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: adrotate-output.php:
|
297 |
msgid "AdRotate Page"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
msgid "Getting Started With AdRotate"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
msgid "AdRotate manuals"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
msgid "AdRotate Support Forum"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: adrotate-output.php:
|
313 |
#, fuzzy
|
314 |
msgid "Help AdRotate Grow"
|
315 |
msgstr "AdRotate Pro"
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
msgid "Brought to you by"
|
319 |
msgstr "Présenté par"
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
msgid ""
|
323 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
324 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid "If you find AdRotate useful please leave your honest"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid "rating"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: adrotate-output.php:
|
336 |
#, fuzzy
|
337 |
msgid "review"
|
338 |
msgstr "En avant-première"
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: adrotate-output.php:
|
345 |
msgid "Available in AdRotate Pro"
|
346 |
msgstr "Disponible dans Adrotate Pro"
|
347 |
|
348 |
-
#: adrotate-output.php:
|
349 |
msgid "More information..."
|
350 |
msgstr "Plus d'informations..."
|
351 |
|
352 |
-
#: adrotate-output.php:
|
353 |
msgid "This feature is available in AdRotate Pro"
|
354 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
355 |
|
356 |
-
#: adrotate-output.php:
|
357 |
msgid "Learn more"
|
358 |
msgstr "En savoir plus"
|
359 |
|
@@ -475,99 +475,99 @@ msgstr "ID :"
|
|
475 |
msgid "Fill in the ID of the type you want to display!"
|
476 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
477 |
|
478 |
-
#: adrotate.php:
|
479 |
msgid "General Info"
|
480 |
msgstr "Informations générales"
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
msgid "AdRotate Pro"
|
484 |
msgstr "AdRotate Pro"
|
485 |
|
486 |
-
#: adrotate.php:
|
487 |
msgid "Manage Ads"
|
488 |
msgstr "Gérer les pubs"
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
msgid "Manage Groups"
|
492 |
msgstr "Gérer les groupes"
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
#, fuzzy
|
496 |
msgid "Manage Schedules"
|
497 |
msgstr "Gérer les pubs"
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
#, fuzzy
|
501 |
msgid "Manage Media"
|
502 |
msgstr "Gérer les pubs"
|
503 |
|
504 |
-
#: adrotate.php:
|
505 |
msgid "Settings"
|
506 |
msgstr "Paramètres"
|
507 |
|
508 |
-
#: adrotate.php:
|
509 |
msgid "AdRotate Info"
|
510 |
msgstr "Informations sur Adrotate"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "AdRotate Professional"
|
514 |
msgstr "AdRotate professionel"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "Ad Management"
|
518 |
msgstr "Gestion des pubs"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "Manage"
|
522 |
msgstr "Gérer"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Add New"
|
526 |
msgstr "Ajouter"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Group Management"
|
530 |
msgstr "Gérer les groupes"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
#: dashboard/publisher/groups-main.php:70
|
534 |
msgid "Report"
|
535 |
msgstr "Rapport"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
#, fuzzy
|
539 |
msgid "Schedule Management available in AdRotate Pro"
|
540 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
541 |
|
542 |
-
#: adrotate.php:
|
543 |
#, fuzzy
|
544 |
msgid ""
|
545 |
"Schedule management and multiple schedules per advert is available in "
|
546 |
"AdRotate Pro."
|
547 |
msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
548 |
|
549 |
-
#: adrotate.php:
|
550 |
#: dashboard/publisher/adverts-main.php:114
|
551 |
#: dashboard/publisher/groups-edit.php:75
|
552 |
#: dashboard/publisher/groups-main.php:89
|
553 |
msgid "More information"
|
554 |
msgstr "Plus d'information"
|
555 |
|
556 |
-
#: adrotate.php:
|
557 |
#: dashboard/publisher/adverts-error.php:19
|
558 |
#: dashboard/publisher/adverts-main.php:20
|
559 |
#: dashboard/publisher/groups-main.php:20
|
560 |
msgid "Bulk Actions"
|
561 |
msgstr "Actions en vrac"
|
562 |
|
563 |
-
#: adrotate.php:
|
564 |
#: dashboard/publisher/adverts-error.php:29
|
565 |
#: dashboard/publisher/adverts-main.php:30
|
566 |
#: dashboard/publisher/groups-main.php:24
|
567 |
msgid "Go"
|
568 |
msgstr "Aller"
|
569 |
|
570 |
-
#: adrotate.php:
|
571 |
#: dashboard/publisher/adverts-error.php:39
|
572 |
#: dashboard/publisher/adverts-main.php:39
|
573 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -575,108 +575,108 @@ msgstr "Aller"
|
|
575 |
msgid "ID"
|
576 |
msgstr "ID"
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
#, fuzzy
|
580 |
msgid "Start"
|
581 |
msgstr "Début / Fin"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
msgid "End"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: adrotate.php:
|
588 |
#: dashboard/publisher/groups-main.php:34
|
589 |
msgid "Ads"
|
590 |
msgstr "Pubs"
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
#, fuzzy
|
594 |
msgid "Max Impressions"
|
595 |
msgstr "Nombre max de vues :"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
#, fuzzy
|
599 |
msgid "Max Clicks"
|
600 |
msgstr "Nombre de clicks max :"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
#, fuzzy
|
604 |
msgid "No schedules created yet!"
|
605 |
msgstr "Aucune pub n'a encore été créé!"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
#, fuzzy
|
609 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
610 |
msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#, fuzzy
|
614 |
msgid "Upgrade today!"
|
615 |
msgstr "Mettre à jour aujourd'hui"
|
616 |
|
617 |
-
#: adrotate.php:
|
618 |
#: dashboard/publisher/groups-edit.php:387
|
619 |
msgid "Expires soon."
|
620 |
msgstr "Expire bientôt."
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
#: dashboard/publisher/groups-edit.php:388
|
624 |
msgid "Has expired."
|
625 |
msgstr "A expiré."
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
#, fuzzy
|
629 |
msgid "Media Management available in AdRotate Pro"
|
630 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid ""
|
638 |
"This is useful if you use responsive adverts with multiple images or have "
|
639 |
"HTML5 adverts containing multiple files."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
#, fuzzy
|
644 |
msgid "Media uploading and management is available in AdRotate Pro."
|
645 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid "Upload new file"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Accepted files:"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "Maximum size is 512Kb."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "Important:"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid ""
|
669 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
670 |
"spaces with a - or _."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
msgid ""
|
675 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
676 |
"file so it knows about the changed name. For example for the javascript file."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
#, fuzzy
|
681 |
msgid ""
|
682 |
"For responsive adverts make sure the filename is in the following format; "
|
@@ -687,7 +687,7 @@ msgstr ""
|
|
687 |
"complet d'images de tailles différentes est recommendé si vous avez un site "
|
688 |
"fluide."
|
689 |
|
690 |
-
#: adrotate.php:
|
691 |
msgid ""
|
692 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
693 |
"filename instead of \".full\" for the various viewports."
|
@@ -696,13 +696,12 @@ msgstr ""
|
|
696 |
"\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
|
697 |
"tailles d'écran."
|
698 |
|
699 |
-
#: adrotate.php:
|
700 |
-
#: dashboard/publisher/groups-edit.php:312
|
701 |
#: dashboard/publisher/groups-edit.php:320
|
702 |
msgid "Example:"
|
703 |
msgstr "Exemple :"
|
704 |
|
705 |
-
#: adrotate.php:
|
706 |
#, fuzzy
|
707 |
msgid ""
|
708 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -711,51 +710,51 @@ msgstr ""
|
|
711 |
"image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
|
712 |
"pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
|
713 |
|
714 |
-
#: adrotate.php:
|
715 |
msgid "Upload file"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: adrotate.php:
|
719 |
msgid "Click only once per file!"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: adrotate.php:
|
723 |
msgid "Available files in"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: adrotate.php:
|
727 |
#: dashboard/publisher/groups-main.php:33
|
728 |
msgid "Name"
|
729 |
msgstr "Nom"
|
730 |
|
731 |
-
#: adrotate.php:
|
732 |
#, fuzzy
|
733 |
msgid "Actions"
|
734 |
msgstr "Actions en vrac"
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
-
#: adrotate.php:
|
738 |
#: dashboard/publisher/adverts-disabled.php:22
|
739 |
#: dashboard/publisher/adverts-error.php:21
|
740 |
#: dashboard/publisher/adverts-main.php:22
|
741 |
msgid "Delete"
|
742 |
msgstr "Effacer"
|
743 |
|
744 |
-
#: adrotate.php:
|
745 |
msgid ""
|
746 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: adrotate.php:
|
750 |
#, fuzzy
|
751 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
752 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
msgid "AdRotate Settings"
|
756 |
msgstr "Paramètres de AdRotate"
|
757 |
|
758 |
-
#: adrotate.php:
|
759 |
msgid "Update Options"
|
760 |
msgstr "Mettre à jour les options"
|
761 |
|
@@ -777,10 +776,22 @@ msgstr ""
|
|
777 |
"où ils peuvent voir les performances de leur publicités."
|
778 |
|
779 |
#: dashboard/adrotatepro.php:27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
780 |
msgid "Localize your ad campaigns with Geo Targeting"
|
781 |
msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
|
782 |
|
783 |
-
#: dashboard/adrotatepro.php:
|
784 |
msgid ""
|
785 |
"Go nationwide or global with localized adverts for your various audiences. "
|
786 |
"Set up adverts for countries and cities and sell impressions per general "
|
@@ -788,11 +799,11 @@ msgid ""
|
|
788 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: dashboard/adrotatepro.php:
|
792 |
msgid "Get Premium Support almost all year round"
|
793 |
msgstr "Obtenez du soutien Premium pendant toute l'année"
|
794 |
|
795 |
-
#: dashboard/adrotatepro.php:
|
796 |
msgid ""
|
797 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
798 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -800,21 +811,21 @@ msgid ""
|
|
800 |
"forum. Get a solution (usually) within a day."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: dashboard/adrotatepro.php:
|
804 |
msgid "AdRotate is brought to you by"
|
805 |
msgstr "AdRotate est offert par"
|
806 |
|
807 |
-
#: dashboard/adrotatepro.php:
|
808 |
msgid ""
|
809 |
-
"Premium plugins for WordPress and WooCommerce
|
810 |
-
"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: dashboard/adrotatepro.php:
|
814 |
msgid "Schedule all campaigns with ease"
|
815 |
msgstr "Planifier toutes vos campagnes en toute simplicité"
|
816 |
|
817 |
-
#: dashboard/adrotatepro.php:
|
818 |
msgid ""
|
819 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
820 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -822,11 +833,23 @@ msgid ""
|
|
822 |
"much more easy. You can set one or many schedules for adverts."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
msgid "Stay up-to-date with notifications"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: dashboard/adrotatepro.php:
|
830 |
msgid ""
|
831 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
832 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -835,90 +858,90 @@ msgid ""
|
|
835 |
"miss an expiration date again."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: dashboard/adrotatepro.php:
|
839 |
#: dashboard/info.php:93 dashboard/info.php:105
|
840 |
msgid "Buy AdRotate Professional"
|
841 |
msgstr "Achetez AdRotate Professionel"
|
842 |
|
843 |
-
#: dashboard/adrotatepro.php:
|
844 |
msgid "Single License"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: dashboard/adrotatepro.php:
|
848 |
msgid "For one WordPress installation."
|
849 |
msgstr "Pour une installation Wordpress."
|
850 |
|
851 |
-
#: dashboard/adrotatepro.php:
|
852 |
#: dashboard/info.php:98 dashboard/info.php:110
|
853 |
msgid "Duo License"
|
854 |
msgstr "Licence Duo"
|
855 |
|
856 |
-
#: dashboard/adrotatepro.php:
|
857 |
msgid "For two WordPress installations."
|
858 |
msgstr "Pour deux installations Wordpress."
|
859 |
|
860 |
-
#: dashboard/adrotatepro.php:
|
861 |
#: dashboard/info.php:99 dashboard/info.php:111
|
862 |
msgid "Multi License"
|
863 |
msgstr "Licence Multiple"
|
864 |
|
865 |
-
#: dashboard/adrotatepro.php:
|
866 |
msgid " For up to five WordPress installations."
|
867 |
msgstr "Pour un max de cinq installation Wordpress."
|
868 |
|
869 |
-
#: dashboard/adrotatepro.php:
|
870 |
#: dashboard/info.php:100 dashboard/info.php:112
|
871 |
msgid "Developer License"
|
872 |
msgstr "Licence de Developpeur"
|
873 |
|
874 |
-
#: dashboard/adrotatepro.php:
|
875 |
msgid "Unlimited WordPress installations and/or networks."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: dashboard/adrotatepro.php:
|
879 |
#: dashboard/info.php:101 dashboard/info.php:114
|
880 |
msgid "Compare licenses"
|
881 |
msgstr "Comparer les licences"
|
882 |
|
883 |
-
#: dashboard/adrotatepro.php:
|
884 |
msgid "Not sure which license is for you? Compare them..."
|
885 |
msgstr ""
|
886 |
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
msgid "All Licenses"
|
890 |
msgstr "Toutes les licences"
|
891 |
|
892 |
-
#: dashboard/adrotatepro.php:
|
893 |
msgid "Lifetime License"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: dashboard/adrotatepro.php:
|
897 |
msgid "Single installation."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: dashboard/adrotatepro.php:
|
901 |
msgid "Up to 2 installations."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: dashboard/adrotatepro.php:
|
905 |
msgid "Up to 10 installations."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: dashboard/adrotatepro.php:
|
909 |
msgid "Up to 25 installations or multisite networks."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: dashboard/adrotatepro.php:
|
913 |
msgid ""
|
914 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: dashboard/adrotatepro.php:
|
918 |
msgid "Not sure which license is for you?"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: dashboard/adrotatepro.php:
|
922 |
msgid "Compare Licenses"
|
923 |
msgstr ""
|
924 |
|
@@ -1258,15 +1281,15 @@ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
|
1258 |
|
1259 |
#: dashboard/publisher/adverts-edit.php:192
|
1260 |
#: dashboard/publisher/adverts-edit.php:292
|
1261 |
-
#: dashboard/publisher/adverts-edit.php:
|
1262 |
-
#: dashboard/publisher/adverts-edit.php:
|
1263 |
msgid "Save Advert"
|
1264 |
msgstr "Sauvegarder la pub"
|
1265 |
|
1266 |
#: dashboard/publisher/adverts-edit.php:193
|
1267 |
#: dashboard/publisher/adverts-edit.php:293
|
1268 |
-
#: dashboard/publisher/adverts-edit.php:
|
1269 |
-
#: dashboard/publisher/adverts-edit.php:
|
1270 |
#: dashboard/publisher/groups-edit.php:154
|
1271 |
#: dashboard/publisher/groups-edit.php:301
|
1272 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1274,35 +1297,35 @@ msgid "Cancel"
|
|
1274 |
msgstr "Annuller"
|
1275 |
|
1276 |
#: dashboard/publisher/adverts-edit.php:196
|
1277 |
-
#: dashboard/publisher/adverts-edit.php:
|
1278 |
#: dashboard/publisher/groups-edit.php:136
|
1279 |
#: dashboard/publisher/groups-edit.php:283
|
1280 |
msgid "Usage"
|
1281 |
msgstr "Usage"
|
1282 |
|
1283 |
#: dashboard/publisher/adverts-edit.php:200
|
1284 |
-
#: dashboard/publisher/adverts-edit.php:
|
1285 |
#: dashboard/publisher/groups-edit.php:140
|
1286 |
#: dashboard/publisher/groups-edit.php:287
|
1287 |
msgid "Widget"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: dashboard/publisher/adverts-edit.php:201
|
1291 |
-
#: dashboard/publisher/adverts-edit.php:
|
1292 |
msgid ""
|
1293 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1294 |
"and enter ID"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: dashboard/publisher/adverts-edit.php:204
|
1298 |
-
#: dashboard/publisher/adverts-edit.php:
|
1299 |
#: dashboard/publisher/groups-edit.php:144
|
1300 |
#: dashboard/publisher/groups-edit.php:291
|
1301 |
msgid "In a post or page"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: dashboard/publisher/adverts-edit.php:206
|
1305 |
-
#: dashboard/publisher/adverts-edit.php:
|
1306 |
#: dashboard/publisher/groups-edit.php:146
|
1307 |
#: dashboard/publisher/groups-edit.php:293
|
1308 |
msgid "Directly in a theme"
|
@@ -1359,8 +1382,8 @@ msgid ""
|
|
1359 |
msgstr ""
|
1360 |
|
1361 |
#: dashboard/publisher/adverts-edit.php:289
|
1362 |
-
#: dashboard/publisher/adverts-edit.php:
|
1363 |
-
#: dashboard/publisher/adverts-edit.php:
|
1364 |
#: dashboard/publisher/groups-edit.php:200
|
1365 |
msgid "Upgrade today"
|
1366 |
msgstr "Mettre à jour aujourd'hui"
|
@@ -1375,132 +1398,164 @@ msgid "Everything below is optional."
|
|
1375 |
msgstr "Tous les paramètres ci-dessous sont optionels."
|
1376 |
|
1377 |
#: dashboard/publisher/adverts-edit.php:301
|
1378 |
-
msgid "
|
|
|
|
|
|
|
|
|
1379 |
msgstr ""
|
1380 |
|
1381 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1382 |
msgid "Enable responsive support for this advert."
|
1383 |
msgstr "Activer le support réactif pour cette publicité."
|
1384 |
|
1385 |
-
#: dashboard/publisher/adverts-edit.php:
|
1386 |
msgid ""
|
1387 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1388 |
-
"following format; \"imagename.full.ext\".
|
1389 |
-
"strongly recommended."
|
1390 |
msgstr ""
|
1391 |
-
"Transférez vos images dans le dossier de la bannière et assurez-vous que le "
|
1392 |
-
"fichier est dans le format suivant: \"nomdefichier.full.ext\". Un ensemble "
|
1393 |
-
"complet d'images de tailles différentes est recommendé si vous avez un site "
|
1394 |
-
"fluide."
|
1395 |
|
1396 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1397 |
#: dashboard/publisher/groups-edit.php:194
|
1398 |
msgid "Sortorder"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: dashboard/publisher/adverts-edit.php:
|
1402 |
#: dashboard/publisher/groups-edit.php:196
|
1403 |
msgid "For administrative purposes set a sortorder."
|
1404 |
msgstr "Pour des raisons administratives définir un ordre de tri."
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1408 |
msgstr ""
|
1409 |
"Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
|
1410 |
"de l'ID de la publicité."
|
1411 |
|
1412 |
-
#: dashboard/publisher/adverts-edit.php:
|
1413 |
msgid ""
|
1414 |
-
"With AdRotate Pro you can
|
|
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: dashboard/publisher/adverts-edit.php:
|
1418 |
msgid "Geo Targeting in AdRotate Pro"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: dashboard/publisher/adverts-edit.php:
|
1422 |
msgid ""
|
1423 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: dashboard/publisher/adverts-edit.php:
|
1427 |
msgid "Cities/States"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: dashboard/publisher/adverts-edit.php:
|
1431 |
msgid ""
|
1432 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1433 |
"states ISO codes are supported)"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: dashboard/publisher/adverts-edit.php:
|
1437 |
msgid ""
|
1438 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1439 |
"correctly!"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: dashboard/publisher/adverts-edit.php:
|
1443 |
msgid "Countries"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: dashboard/publisher/adverts-edit.php:
|
1447 |
#, fuzzy
|
1448 |
msgid "Select the countries you want the adverts to show in."
|
1449 |
msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
|
1450 |
|
1451 |
-
#: dashboard/publisher/adverts-edit.php:
|
1452 |
msgid "Cities take priority and will be filtered first."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: dashboard/publisher/adverts-edit.php:
|
1456 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: dashboard/publisher/adverts-edit.php:
|
1460 |
msgid "Select Groups"
|
1461 |
msgstr "Choisir groupes"
|
1462 |
|
1463 |
-
#: dashboard/publisher/adverts-edit.php:
|
1464 |
msgid "ID - Name"
|
1465 |
msgstr "ID - Nom"
|
1466 |
|
1467 |
-
#: dashboard/publisher/adverts-edit.php:
|
1468 |
#: dashboard/publisher/groups-main.php:60
|
1469 |
#: dashboard/settings/geotargeting.php:39
|
1470 |
msgid "Default"
|
1471 |
msgstr "Par défaut"
|
1472 |
|
1473 |
-
#: dashboard/publisher/adverts-edit.php:
|
1474 |
#: dashboard/publisher/groups-main.php:61
|
1475 |
msgid "Dynamic"
|
1476 |
msgstr "Dynamique"
|
1477 |
|
1478 |
-
#: dashboard/publisher/adverts-edit.php:
|
1479 |
#: dashboard/publisher/groups-main.php:61
|
1480 |
msgid "second rotation"
|
1481 |
msgstr "deuxième rotation"
|
1482 |
|
1483 |
-
#: dashboard/publisher/adverts-edit.php:
|
1484 |
#: dashboard/publisher/groups-main.php:62
|
1485 |
msgid "Block"
|
1486 |
msgstr "Bloc"
|
1487 |
|
1488 |
-
#: dashboard/publisher/adverts-edit.php:
|
1489 |
#: dashboard/publisher/groups-main.php:62
|
1490 |
msgid "grid"
|
1491 |
msgstr "grille"
|
1492 |
|
1493 |
-
#: dashboard/publisher/adverts-edit.php:
|
1494 |
#: dashboard/publisher/groups-edit.php:202
|
1495 |
#: dashboard/publisher/groups-main.php:63
|
1496 |
msgid "Post Injection"
|
1497 |
msgstr "Injection dans l'article"
|
1498 |
|
1499 |
-
#: dashboard/publisher/adverts-edit.php:
|
1500 |
msgid "Geolocation"
|
1501 |
msgstr "Géolocalisation"
|
1502 |
|
1503 |
-
#: dashboard/publisher/adverts-edit.php:
|
1504 |
#: dashboard/publisher/groups-edit.php:61
|
1505 |
#: dashboard/publisher/groups-main.php:70
|
1506 |
msgid "Mode"
|
@@ -1593,11 +1648,6 @@ msgstr "Clicks aujourd'hui"
|
|
1593 |
msgid "Monthly overview of clicks and impressions"
|
1594 |
msgstr "Synthèse mensuelle de clics et d'impressions"
|
1595 |
|
1596 |
-
#: dashboard/publisher/adverts-report.php:58
|
1597 |
-
#: dashboard/publisher/groups-report.php:64
|
1598 |
-
msgid "Note:"
|
1599 |
-
msgstr "Note :"
|
1600 |
-
|
1601 |
#: dashboard/publisher/adverts-report.php:58
|
1602 |
#: dashboard/publisher/groups-report.php:64
|
1603 |
msgid ""
|
@@ -1945,9 +1995,8 @@ msgstr "Vous allez supprimer un groupe"
|
|
1945 |
msgid "This action can not be undone!"
|
1946 |
msgstr "Ceci ne peux pas être défait!"
|
1947 |
|
1948 |
-
#: dashboard/publisher/groups-main.php:24
|
1949 |
-
#: dashboard/settings/maintenance.php:
|
1950 |
-
#: dashboard/settings/maintenance.php:34
|
1951 |
msgid "OK to continue, CANCEL to stop."
|
1952 |
msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
1953 |
|
@@ -2026,108 +2075,118 @@ msgid ""
|
|
2026 |
msgstr ""
|
2027 |
|
2028 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2029 |
msgid "Load jQuery"
|
2030 |
msgstr "Utilisez jQuery"
|
2031 |
|
2032 |
-
#: dashboard/settings/general.php:
|
2033 |
msgid ""
|
2034 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2035 |
"groups, statistics and some other features."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: dashboard/settings/general.php:
|
2039 |
msgid "Load scripts in footer?"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: dashboard/settings/general.php:
|
2043 |
msgid ""
|
2044 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2045 |
"site."
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: dashboard/settings/general.php:
|
2049 |
msgid "Adblock disguise"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: dashboard/settings/general.php:
|
2053 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: dashboard/settings/general.php:
|
2057 |
msgid ""
|
2058 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: dashboard/settings/general.php:
|
2062 |
msgid ""
|
2063 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2064 |
"instead of the AdRotate widget."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: dashboard/settings/general.php:
|
2068 |
msgid ""
|
2069 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2070 |
"feature will have little effect!"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: dashboard/settings/general.php:
|
2074 |
msgid "Banner Folder"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: dashboard/settings/general.php:
|
2078 |
msgid "Set a location where your banner images will be stored."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: dashboard/settings/general.php:
|
2082 |
msgid "Location"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: dashboard/settings/general.php:
|
2086 |
msgid "(Default: wp-content/banners/)."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: dashboard/settings/general.php:
|
2090 |
msgid ""
|
2091 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2092 |
"like:"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: dashboard/settings/general.php:
|
2096 |
msgid ""
|
2097 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2098 |
"will show errors when the folder is missing."
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: dashboard/settings/general.php:
|
2102 |
msgid "Bot filter"
|
2103 |
msgstr "Filtre de robots"
|
2104 |
|
2105 |
-
#: dashboard/settings/general.php:
|
2106 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: dashboard/settings/general.php:
|
2110 |
msgid "User-Agent Filter"
|
2111 |
msgstr "Filtrage par User-Agent"
|
2112 |
|
2113 |
-
#: dashboard/settings/general.php:
|
2114 |
msgid ""
|
2115 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: dashboard/settings/general.php:
|
2119 |
msgid ""
|
2120 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2121 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: dashboard/settings/general.php:
|
2125 |
msgid ""
|
2126 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2127 |
"characters are stripped out."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: dashboard/settings/general.php:
|
2131 |
msgid ""
|
2132 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2133 |
"well."
|
@@ -2135,11 +2194,11 @@ msgstr ""
|
|
2135 |
"En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
|
2136 |
"bloqués."
|
2137 |
|
2138 |
-
#: dashboard/settings/general.php:
|
2139 |
msgid "Learn more about"
|
2140 |
msgstr "En savoir plus sur"
|
2141 |
|
2142 |
-
#: dashboard/settings/general.php:
|
2143 |
msgid "user-agents"
|
2144 |
msgstr "user-agents"
|
2145 |
|
@@ -2784,6 +2843,16 @@ msgid ""
|
|
2784 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2785 |
msgstr ""
|
2786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2787 |
#~ msgid "Create multiple schedules for each advert with AdRotate Pro."
|
2788 |
#~ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
2789 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:45+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:48+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
|
9 |
+
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:849
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
+
#: adrotate-functions.php:852
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
|
27 |
|
28 |
+
#: adrotate-functions.php:901
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:905
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:909
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Publicité(s) supprimée(s)"
|
39 |
|
40 |
+
#: adrotate-functions.php:913
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groupe supprimé"
|
43 |
|
44 |
+
#: adrotate-functions.php:917
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
|
47 |
|
48 |
+
#: adrotate-functions.php:921
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "publicité(s) renouvellée(s)"
|
51 |
|
52 |
+
#: adrotate-functions.php:925
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Publicité(s) désactivée(s)"
|
55 |
|
56 |
+
#: adrotate-functions.php:929
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Publicité(s) activée(s)"
|
59 |
|
60 |
+
#: adrotate-functions.php:933
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
63 |
|
64 |
+
#: adrotate-functions.php:937
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "Publicité créée"
|
68 |
|
69 |
+
#: adrotate-functions.php:942
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Paramètres sauvegardés"
|
72 |
|
73 |
+
#: adrotate-functions.php:946
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Base de données optimisée"
|
76 |
|
77 |
+
#: adrotate-functions.php:950
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Base de données réparée"
|
80 |
|
81 |
+
#: adrotate-functions.php:954
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr ""
|
84 |
"Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
|
85 |
|
86 |
+
#: adrotate-functions.php:958
|
87 |
msgid "Empty database records removed"
|
88 |
msgstr "Les registres vides de la base de données ont été supprimés"
|
89 |
|
90 |
+
#: adrotate-functions.php:963
|
91 |
msgid "Action prohibited"
|
92 |
msgstr "Action interdite"
|
93 |
|
94 |
+
#: adrotate-functions.php:967
|
95 |
msgid ""
|
96 |
"The ad was saved but has an issue which might prevent it from working "
|
97 |
"properly. Review the colored ad."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: adrotate-functions.php:971
|
101 |
msgid "No data found in selected time period"
|
102 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
103 |
|
104 |
+
#: adrotate-functions.php:975
|
105 |
msgid "Database can only be optimized or cleaned once every hour"
|
106 |
msgstr ""
|
107 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
108 |
|
109 |
+
#: adrotate-functions.php:979
|
110 |
msgid "Form can not be (partially) empty!"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: adrotate-functions.php:983
|
114 |
msgid "No ads found."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: adrotate-functions.php:987
|
118 |
msgid "Unexpected error"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: adrotate-manage-publisher.php:712
|
122 |
msgid "AdRotate Advertiser"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: adrotate-output.php:639
|
126 |
msgid "Oh no! Something went wrong!"
|
127 |
msgstr "Oh no! Un problème est survenu!"
|
128 |
|
129 |
+
#: adrotate-output.php:640
|
130 |
msgid ""
|
131 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
132 |
"Verify if the url used is valid or log in via your browser."
|
135 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
136 |
"votre navigateur."
|
137 |
|
138 |
+
#: adrotate-output.php:641
|
139 |
msgid ""
|
140 |
"If you have received the url you want to visit via email, you are being "
|
141 |
"tricked!"
|
142 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
143 |
|
144 |
+
#: adrotate-output.php:642
|
145 |
msgid "Contact support if the issue persists:"
|
146 |
msgstr "Contactez le support si le soucis persiste :"
|
147 |
|
148 |
+
#: adrotate-output.php:660
|
149 |
msgid ""
|
150 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
151 |
"restrictions or does not exist!"
|
153 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
154 |
"horaires/géographiques ou n'existe pas!"
|
155 |
|
156 |
+
#: adrotate-output.php:662
|
157 |
msgid ""
|
158 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
159 |
"restrictions!"
|
161 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
162 |
"horaires/géographiques!"
|
163 |
|
164 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
165 |
msgid ""
|
166 |
"Either there are no banners, they are disabled or none qualified for this "
|
167 |
"location!"
|
169 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
170 |
"cet endroit!"
|
171 |
|
172 |
+
#: adrotate-output.php:677
|
173 |
msgid "Error, no Ad ID set! Check your syntax!"
|
174 |
msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
|
175 |
|
176 |
+
#: adrotate-output.php:683
|
177 |
msgid "Error, no group ID set! Check your syntax!"
|
178 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
179 |
|
180 |
+
#: adrotate-output.php:688
|
181 |
msgid "Error, group does not exist! Check your syntax!"
|
182 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
183 |
|
184 |
+
#: adrotate-output.php:694
|
185 |
msgid ""
|
186 |
"There was an error locating the database tables for AdRotate. Please "
|
187 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
190 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
191 |
"extensions. "
|
192 |
|
193 |
+
#: adrotate-output.php:694
|
194 |
msgid "If this does not solve the issue please seek support at"
|
195 |
msgstr ""
|
196 |
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
197 |
"support à"
|
198 |
|
199 |
+
#: adrotate-output.php:700
|
200 |
msgid "An unknown error occured."
|
201 |
msgstr "Une erreur inconnue s'est produite."
|
202 |
|
203 |
+
#: adrotate-output.php:725
|
204 |
msgid "active ad(s) expired."
|
205 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
206 |
|
207 |
+
#: adrotate-output.php:725
|
208 |
msgid "Take action now"
|
209 |
msgstr "Agir maintenant"
|
210 |
|
211 |
+
#: adrotate-output.php:727
|
212 |
msgid "active ad(s) are about to expire."
|
213 |
msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
214 |
|
215 |
+
#: adrotate-output.php:727
|
216 |
msgid "Check it out"
|
217 |
msgstr "Vérifier-le"
|
218 |
|
219 |
+
#: adrotate-output.php:729
|
220 |
msgid "active ad(s) with configuration errors."
|
221 |
msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
222 |
|
223 |
+
#: adrotate-output.php:729
|
224 |
msgid "Solve this"
|
225 |
msgstr "Résoudre"
|
226 |
|
227 |
+
#: adrotate-output.php:731
|
228 |
msgid "ad(s) expired."
|
229 |
msgstr "publicité(s) expirée(s)"
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "ad(s) are about to expire."
|
233 |
msgstr "publicité(s) sont sur le point d'expirer"
|
234 |
|
235 |
+
#: adrotate-output.php:731
|
236 |
msgid "ad(s) with configuration errors."
|
237 |
msgstr "publicité(s) avec des erreurs de configuration."
|
238 |
|
239 |
+
#: adrotate-output.php:731
|
240 |
msgid "Fix this as soon as possible"
|
241 |
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
242 |
|
243 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
244 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
245 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
246 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
247 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
248 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
249 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
250 |
#: dashboard/settings/geotargeting.php:26
|
251 |
msgid "Buy now"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: adrotate-output.php:744
|
255 |
msgid ""
|
256 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
257 |
"to the <strong>PRO</strong> version"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: adrotate-output.php:744
|
261 |
#, php-format
|
262 |
msgid ""
|
263 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: adrotate-output.php:744
|
267 |
msgid "Thank you for your purchase!"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: adrotate-output.php:788
|
271 |
msgid ""
|
272 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
273 |
"this menu. Check out the"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: adrotate-output.php:788
|
277 |
msgid "manuals"
|
278 |
msgstr "manuels"
|
279 |
|
280 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
281 |
msgid "and"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: adrotate-output.php:788
|
285 |
msgid "forums"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: adrotate-output.php:821
|
289 |
msgid "Useful Links"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: adrotate-output.php:822
|
293 |
msgid "Useful links to learn more about AdRotate"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: adrotate-output.php:824
|
297 |
msgid "AdRotate Page"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: adrotate-output.php:825
|
301 |
msgid "Getting Started With AdRotate"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: adrotate-output.php:826
|
305 |
msgid "AdRotate manuals"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: adrotate-output.php:827
|
309 |
msgid "AdRotate Support Forum"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: adrotate-output.php:853
|
313 |
#, fuzzy
|
314 |
msgid "Help AdRotate Grow"
|
315 |
msgstr "AdRotate Pro"
|
316 |
|
317 |
+
#: adrotate-output.php:854
|
318 |
msgid "Brought to you by"
|
319 |
msgstr "Présenté par"
|
320 |
|
321 |
+
#: adrotate-output.php:861
|
322 |
msgid ""
|
323 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
324 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: adrotate-output.php:861
|
328 |
msgid "If you find AdRotate useful please leave your honest"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: adrotate-output.php:861
|
332 |
msgid "rating"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: adrotate-output.php:861
|
336 |
#, fuzzy
|
337 |
msgid "review"
|
338 |
msgstr "En avant-première"
|
339 |
|
340 |
+
#: adrotate-output.php:861
|
341 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: adrotate-output.php:893
|
345 |
msgid "Available in AdRotate Pro"
|
346 |
msgstr "Disponible dans Adrotate Pro"
|
347 |
|
348 |
+
#: adrotate-output.php:893
|
349 |
msgid "More information..."
|
350 |
msgstr "Plus d'informations..."
|
351 |
|
352 |
+
#: adrotate-output.php:894
|
353 |
msgid "This feature is available in AdRotate Pro"
|
354 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
355 |
|
356 |
+
#: adrotate-output.php:894
|
357 |
msgid "Learn more"
|
358 |
msgstr "En savoir plus"
|
359 |
|
475 |
msgid "Fill in the ID of the type you want to display!"
|
476 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
477 |
|
478 |
+
#: adrotate.php:106
|
479 |
msgid "General Info"
|
480 |
msgstr "Informations générales"
|
481 |
|
482 |
+
#: adrotate.php:107
|
483 |
msgid "AdRotate Pro"
|
484 |
msgstr "AdRotate Pro"
|
485 |
|
486 |
+
#: adrotate.php:108
|
487 |
msgid "Manage Ads"
|
488 |
msgstr "Gérer les pubs"
|
489 |
|
490 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
491 |
msgid "Manage Groups"
|
492 |
msgstr "Gérer les groupes"
|
493 |
|
494 |
+
#: adrotate.php:110 adrotate.php:408
|
495 |
#, fuzzy
|
496 |
msgid "Manage Schedules"
|
497 |
msgstr "Gérer les pubs"
|
498 |
|
499 |
+
#: adrotate.php:111
|
500 |
#, fuzzy
|
501 |
msgid "Manage Media"
|
502 |
msgstr "Gérer les pubs"
|
503 |
|
504 |
+
#: adrotate.php:112
|
505 |
msgid "Settings"
|
506 |
msgstr "Paramètres"
|
507 |
|
508 |
+
#: adrotate.php:135
|
509 |
msgid "AdRotate Info"
|
510 |
msgstr "Informations sur Adrotate"
|
511 |
|
512 |
+
#: adrotate.php:156
|
513 |
msgid "AdRotate Professional"
|
514 |
msgstr "AdRotate professionel"
|
515 |
|
516 |
+
#: adrotate.php:199
|
517 |
msgid "Ad Management"
|
518 |
msgstr "Gestion des pubs"
|
519 |
|
520 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
521 |
msgid "Manage"
|
522 |
msgstr "Gérer"
|
523 |
|
524 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
525 |
msgid "Add New"
|
526 |
msgstr "Ajouter"
|
527 |
|
528 |
+
#: adrotate.php:337
|
529 |
msgid "Group Management"
|
530 |
msgstr "Gérer les groupes"
|
531 |
|
532 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
533 |
#: dashboard/publisher/groups-main.php:70
|
534 |
msgid "Report"
|
535 |
msgstr "Rapport"
|
536 |
|
537 |
+
#: adrotate.php:399
|
538 |
#, fuzzy
|
539 |
msgid "Schedule Management available in AdRotate Pro"
|
540 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
541 |
|
542 |
+
#: adrotate.php:409
|
543 |
#, fuzzy
|
544 |
msgid ""
|
545 |
"Schedule management and multiple schedules per advert is available in "
|
546 |
"AdRotate Pro."
|
547 |
msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
548 |
|
549 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
550 |
#: dashboard/publisher/adverts-main.php:114
|
551 |
#: dashboard/publisher/groups-edit.php:75
|
552 |
#: dashboard/publisher/groups-main.php:89
|
553 |
msgid "More information"
|
554 |
msgstr "Plus d'information"
|
555 |
|
556 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
557 |
#: dashboard/publisher/adverts-error.php:19
|
558 |
#: dashboard/publisher/adverts-main.php:20
|
559 |
#: dashboard/publisher/groups-main.php:20
|
560 |
msgid "Bulk Actions"
|
561 |
msgstr "Actions en vrac"
|
562 |
|
563 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
564 |
#: dashboard/publisher/adverts-error.php:29
|
565 |
#: dashboard/publisher/adverts-main.php:30
|
566 |
#: dashboard/publisher/groups-main.php:24
|
567 |
msgid "Go"
|
568 |
msgstr "Aller"
|
569 |
|
570 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
571 |
#: dashboard/publisher/adverts-error.php:39
|
572 |
#: dashboard/publisher/adverts-main.php:39
|
573 |
#: dashboard/publisher/groups-edit.php:51
|
575 |
msgid "ID"
|
576 |
msgstr "ID"
|
577 |
|
578 |
+
#: adrotate.php:427
|
579 |
#, fuzzy
|
580 |
msgid "Start"
|
581 |
msgstr "Début / Fin"
|
582 |
|
583 |
+
#: adrotate.php:427
|
584 |
msgid "End"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
588 |
#: dashboard/publisher/groups-main.php:34
|
589 |
msgid "Ads"
|
590 |
msgstr "Pubs"
|
591 |
|
592 |
+
#: adrotate.php:430
|
593 |
#, fuzzy
|
594 |
msgid "Max Impressions"
|
595 |
msgstr "Nombre max de vues :"
|
596 |
|
597 |
+
#: adrotate.php:431
|
598 |
#, fuzzy
|
599 |
msgid "Max Clicks"
|
600 |
msgstr "Nombre de clicks max :"
|
601 |
|
602 |
+
#: adrotate.php:461
|
603 |
#, fuzzy
|
604 |
msgid "No schedules created yet!"
|
605 |
msgstr "Aucune pub n'a encore été créé!"
|
606 |
|
607 |
+
#: adrotate.php:466
|
608 |
#, fuzzy
|
609 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
610 |
msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
611 |
|
612 |
+
#: adrotate.php:466 adrotate.php:532
|
613 |
#, fuzzy
|
614 |
msgid "Upgrade today!"
|
615 |
msgstr "Mettre à jour aujourd'hui"
|
616 |
|
617 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
618 |
#: dashboard/publisher/groups-edit.php:387
|
619 |
msgid "Expires soon."
|
620 |
msgstr "Expire bientôt."
|
621 |
|
622 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
623 |
#: dashboard/publisher/groups-edit.php:388
|
624 |
msgid "Has expired."
|
625 |
msgstr "A expiré."
|
626 |
|
627 |
+
#: adrotate.php:494
|
628 |
#, fuzzy
|
629 |
msgid "Media Management available in AdRotate Pro"
|
630 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
631 |
|
632 |
+
#: adrotate.php:496
|
633 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: adrotate.php:496
|
637 |
msgid ""
|
638 |
"This is useful if you use responsive adverts with multiple images or have "
|
639 |
"HTML5 adverts containing multiple files."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: adrotate.php:496
|
643 |
#, fuzzy
|
644 |
msgid "Media uploading and management is available in AdRotate Pro."
|
645 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
646 |
|
647 |
+
#: adrotate.php:498
|
648 |
msgid "Upload new file"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: adrotate.php:499
|
652 |
msgid "Accepted files:"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: adrotate.php:499
|
656 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: adrotate.php:499
|
660 |
msgid "Maximum size is 512Kb."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: adrotate.php:499
|
664 |
msgid "Important:"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: adrotate.php:499
|
668 |
msgid ""
|
669 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
670 |
"spaces with a - or _."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: adrotate.php:499
|
674 |
msgid ""
|
675 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
676 |
"file so it knows about the changed name. For example for the javascript file."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: adrotate.php:502
|
680 |
#, fuzzy
|
681 |
msgid ""
|
682 |
"For responsive adverts make sure the filename is in the following format; "
|
687 |
"complet d'images de tailles différentes est recommendé si vous avez un site "
|
688 |
"fluide."
|
689 |
|
690 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
691 |
msgid ""
|
692 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
693 |
"filename instead of \".full\" for the various viewports."
|
696 |
"\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
|
697 |
"tailles d'écran."
|
698 |
|
699 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
700 |
#: dashboard/publisher/groups-edit.php:320
|
701 |
msgid "Example:"
|
702 |
msgstr "Exemple :"
|
703 |
|
704 |
+
#: adrotate.php:504
|
705 |
#, fuzzy
|
706 |
msgid ""
|
707 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
710 |
"image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
|
711 |
"pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
|
712 |
|
713 |
+
#: adrotate.php:508
|
714 |
msgid "Upload file"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: adrotate.php:508
|
718 |
msgid "Click only once per file!"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: adrotate.php:511
|
722 |
msgid "Available files in"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
726 |
#: dashboard/publisher/groups-main.php:33
|
727 |
msgid "Name"
|
728 |
msgstr "Nom"
|
729 |
|
730 |
+
#: adrotate.php:517
|
731 |
#, fuzzy
|
732 |
msgid "Actions"
|
733 |
msgstr "Actions en vrac"
|
734 |
|
735 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
736 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
737 |
#: dashboard/publisher/adverts-disabled.php:22
|
738 |
#: dashboard/publisher/adverts-error.php:21
|
739 |
#: dashboard/publisher/adverts-main.php:22
|
740 |
msgid "Delete"
|
741 |
msgstr "Effacer"
|
742 |
|
743 |
+
#: adrotate.php:532
|
744 |
msgid ""
|
745 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: adrotate.php:532
|
749 |
#, fuzzy
|
750 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
751 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
752 |
|
753 |
+
#: adrotate.php:561
|
754 |
msgid "AdRotate Settings"
|
755 |
msgstr "Paramètres de AdRotate"
|
756 |
|
757 |
+
#: adrotate.php:632
|
758 |
msgid "Update Options"
|
759 |
msgstr "Mettre à jour les options"
|
760 |
|
776 |
"où ils peuvent voir les performances de leur publicités."
|
777 |
|
778 |
#: dashboard/adrotatepro.php:27
|
779 |
+
msgid "Mobile campaigns"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: dashboard/adrotatepro.php:30
|
783 |
+
msgid ""
|
784 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
785 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
786 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
787 |
+
"and with a few easy to use options they show up where you want them to!"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: dashboard/adrotatepro.php:34
|
791 |
msgid "Localize your ad campaigns with Geo Targeting"
|
792 |
msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
|
793 |
|
794 |
+
#: dashboard/adrotatepro.php:37
|
795 |
msgid ""
|
796 |
"Go nationwide or global with localized adverts for your various audiences. "
|
797 |
"Set up adverts for countries and cities and sell impressions per general "
|
799 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: dashboard/adrotatepro.php:41
|
803 |
msgid "Get Premium Support almost all year round"
|
804 |
msgstr "Obtenez du soutien Premium pendant toute l'année"
|
805 |
|
806 |
+
#: dashboard/adrotatepro.php:44
|
807 |
msgid ""
|
808 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
809 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
811 |
"forum. Get a solution (usually) within a day."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
815 |
msgid "AdRotate is brought to you by"
|
816 |
msgstr "AdRotate est offert par"
|
817 |
|
818 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
819 |
msgid ""
|
820 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
821 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: dashboard/adrotatepro.php:65
|
825 |
msgid "Schedule all campaigns with ease"
|
826 |
msgstr "Planifier toutes vos campagnes en toute simplicité"
|
827 |
|
828 |
+
#: dashboard/adrotatepro.php:68
|
829 |
msgid ""
|
830 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
831 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
833 |
"much more easy. You can set one or many schedules for adverts."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: dashboard/adrotatepro.php:72
|
837 |
+
msgid "Avoid adblockers"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: dashboard/adrotatepro.php:75
|
841 |
+
msgid ""
|
842 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
843 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
844 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
845 |
+
"adverts smartly so these features reach their full potential!"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: dashboard/adrotatepro.php:79
|
849 |
msgid "Stay up-to-date with notifications"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: dashboard/adrotatepro.php:82
|
853 |
msgid ""
|
854 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
855 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
858 |
"miss an expiration date again."
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
862 |
#: dashboard/info.php:93 dashboard/info.php:105
|
863 |
msgid "Buy AdRotate Professional"
|
864 |
msgstr "Achetez AdRotate Professionel"
|
865 |
|
866 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
867 |
msgid "Single License"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
871 |
msgid "For one WordPress installation."
|
872 |
msgstr "Pour une installation Wordpress."
|
873 |
|
874 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
875 |
#: dashboard/info.php:98 dashboard/info.php:110
|
876 |
msgid "Duo License"
|
877 |
msgstr "Licence Duo"
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
880 |
msgid "For two WordPress installations."
|
881 |
msgstr "Pour deux installations Wordpress."
|
882 |
|
883 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
884 |
#: dashboard/info.php:99 dashboard/info.php:111
|
885 |
msgid "Multi License"
|
886 |
msgstr "Licence Multiple"
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
889 |
msgid " For up to five WordPress installations."
|
890 |
msgstr "Pour un max de cinq installation Wordpress."
|
891 |
|
892 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
893 |
#: dashboard/info.php:100 dashboard/info.php:112
|
894 |
msgid "Developer License"
|
895 |
msgstr "Licence de Developpeur"
|
896 |
|
897 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
898 |
msgid "Unlimited WordPress installations and/or networks."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
902 |
#: dashboard/info.php:101 dashboard/info.php:114
|
903 |
msgid "Compare licenses"
|
904 |
msgstr "Comparer les licences"
|
905 |
|
906 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
907 |
msgid "Not sure which license is for you? Compare them..."
|
908 |
msgstr ""
|
909 |
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
910 |
|
911 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
912 |
msgid "All Licenses"
|
913 |
msgstr "Toutes les licences"
|
914 |
|
915 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
916 |
msgid "Lifetime License"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
920 |
msgid "Single installation."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
924 |
msgid "Up to 2 installations."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
928 |
msgid "Up to 10 installations."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
932 |
msgid "Up to 25 installations or multisite networks."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
936 |
msgid ""
|
937 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
941 |
msgid "Not sure which license is for you?"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
945 |
msgid "Compare Licenses"
|
946 |
msgstr ""
|
947 |
|
1281 |
|
1282 |
#: dashboard/publisher/adverts-edit.php:192
|
1283 |
#: dashboard/publisher/adverts-edit.php:292
|
1284 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1285 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1286 |
msgid "Save Advert"
|
1287 |
msgstr "Sauvegarder la pub"
|
1288 |
|
1289 |
#: dashboard/publisher/adverts-edit.php:193
|
1290 |
#: dashboard/publisher/adverts-edit.php:293
|
1291 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1292 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1293 |
#: dashboard/publisher/groups-edit.php:154
|
1294 |
#: dashboard/publisher/groups-edit.php:301
|
1295 |
#: dashboard/publisher/groups-edit.php:393
|
1297 |
msgstr "Annuller"
|
1298 |
|
1299 |
#: dashboard/publisher/adverts-edit.php:196
|
1300 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1301 |
#: dashboard/publisher/groups-edit.php:136
|
1302 |
#: dashboard/publisher/groups-edit.php:283
|
1303 |
msgid "Usage"
|
1304 |
msgstr "Usage"
|
1305 |
|
1306 |
#: dashboard/publisher/adverts-edit.php:200
|
1307 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1308 |
#: dashboard/publisher/groups-edit.php:140
|
1309 |
#: dashboard/publisher/groups-edit.php:287
|
1310 |
msgid "Widget"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: dashboard/publisher/adverts-edit.php:201
|
1314 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1315 |
msgid ""
|
1316 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1317 |
"and enter ID"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: dashboard/publisher/adverts-edit.php:204
|
1321 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1322 |
#: dashboard/publisher/groups-edit.php:144
|
1323 |
#: dashboard/publisher/groups-edit.php:291
|
1324 |
msgid "In a post or page"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: dashboard/publisher/adverts-edit.php:206
|
1328 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1329 |
#: dashboard/publisher/groups-edit.php:146
|
1330 |
#: dashboard/publisher/groups-edit.php:293
|
1331 |
msgid "Directly in a theme"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
#: dashboard/publisher/adverts-edit.php:289
|
1385 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1386 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1387 |
#: dashboard/publisher/groups-edit.php:200
|
1388 |
msgid "Upgrade today"
|
1389 |
msgstr "Mettre à jour aujourd'hui"
|
1398 |
msgstr "Tous les paramètres ci-dessous sont optionels."
|
1399 |
|
1400 |
#: dashboard/publisher/adverts-edit.php:301
|
1401 |
+
msgid "Mobile"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1405 |
+
msgid "Show on;"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
#: dashboard/publisher/adverts-edit.php:303
|
1409 |
+
msgid "Computers"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1413 |
+
msgid "Smartphones"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1417 |
+
msgid "Tablets."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1421 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1425 |
+
msgid "Responsive"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1429 |
msgid "Enable responsive support for this advert."
|
1430 |
msgstr "Activer le support réactif pour cette publicité."
|
1431 |
|
1432 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1433 |
msgid ""
|
1434 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1435 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1436 |
msgstr ""
|
|
|
|
|
|
|
|
|
1437 |
|
1438 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1439 |
+
#: dashboard/publisher/adverts-report.php:58
|
1440 |
+
#: dashboard/publisher/groups-report.php:64
|
1441 |
+
msgid "Note:"
|
1442 |
+
msgstr "Note :"
|
1443 |
+
|
1444 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1445 |
+
msgid ""
|
1446 |
+
"This feature will not be developed any further. Consider switching to the "
|
1447 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1451 |
#: dashboard/publisher/groups-edit.php:194
|
1452 |
msgid "Sortorder"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1456 |
#: dashboard/publisher/groups-edit.php:196
|
1457 |
msgid "For administrative purposes set a sortorder."
|
1458 |
msgstr "Pour des raisons administratives définir un ordre de tri."
|
1459 |
|
1460 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1461 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1462 |
msgstr ""
|
1463 |
"Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
|
1464 |
"de l'ID de la publicité."
|
1465 |
|
1466 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1467 |
msgid ""
|
1468 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1469 |
+
"on!"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1473 |
msgid "Geo Targeting in AdRotate Pro"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1477 |
msgid ""
|
1478 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1482 |
msgid "Cities/States"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1486 |
msgid ""
|
1487 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1488 |
"states ISO codes are supported)"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1492 |
msgid ""
|
1493 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1494 |
"correctly!"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1498 |
msgid "Countries"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1502 |
#, fuzzy
|
1503 |
msgid "Select the countries you want the adverts to show in."
|
1504 |
msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
|
1505 |
|
1506 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1507 |
msgid "Cities take priority and will be filtered first."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1511 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1515 |
msgid "Select Groups"
|
1516 |
msgstr "Choisir groupes"
|
1517 |
|
1518 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1519 |
msgid "ID - Name"
|
1520 |
msgstr "ID - Nom"
|
1521 |
|
1522 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1523 |
#: dashboard/publisher/groups-main.php:60
|
1524 |
#: dashboard/settings/geotargeting.php:39
|
1525 |
msgid "Default"
|
1526 |
msgstr "Par défaut"
|
1527 |
|
1528 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1529 |
#: dashboard/publisher/groups-main.php:61
|
1530 |
msgid "Dynamic"
|
1531 |
msgstr "Dynamique"
|
1532 |
|
1533 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1534 |
#: dashboard/publisher/groups-main.php:61
|
1535 |
msgid "second rotation"
|
1536 |
msgstr "deuxième rotation"
|
1537 |
|
1538 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1539 |
#: dashboard/publisher/groups-main.php:62
|
1540 |
msgid "Block"
|
1541 |
msgstr "Bloc"
|
1542 |
|
1543 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1544 |
#: dashboard/publisher/groups-main.php:62
|
1545 |
msgid "grid"
|
1546 |
msgstr "grille"
|
1547 |
|
1548 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1549 |
#: dashboard/publisher/groups-edit.php:202
|
1550 |
#: dashboard/publisher/groups-main.php:63
|
1551 |
msgid "Post Injection"
|
1552 |
msgstr "Injection dans l'article"
|
1553 |
|
1554 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1555 |
msgid "Geolocation"
|
1556 |
msgstr "Géolocalisation"
|
1557 |
|
1558 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1559 |
#: dashboard/publisher/groups-edit.php:61
|
1560 |
#: dashboard/publisher/groups-main.php:70
|
1561 |
msgid "Mode"
|
1648 |
msgid "Monthly overview of clicks and impressions"
|
1649 |
msgstr "Synthèse mensuelle de clics et d'impressions"
|
1650 |
|
|
|
|
|
|
|
|
|
|
|
1651 |
#: dashboard/publisher/adverts-report.php:58
|
1652 |
#: dashboard/publisher/groups-report.php:64
|
1653 |
msgid ""
|
1995 |
msgid "This action can not be undone!"
|
1996 |
msgstr "Ceci ne peux pas être défait!"
|
1997 |
|
1998 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
1999 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2000 |
msgid "OK to continue, CANCEL to stop."
|
2001 |
msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
2002 |
|
2075 |
msgstr ""
|
2076 |
|
2077 |
#: dashboard/settings/general.php:20
|
2078 |
+
msgid "Dynamic mode for Mobile"
|
2079 |
+
msgstr ""
|
2080 |
+
|
2081 |
+
#: dashboard/settings/general.php:21
|
2082 |
+
msgid ""
|
2083 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2084 |
+
"jumping content."
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: dashboard/settings/general.php:24
|
2088 |
msgid "Load jQuery"
|
2089 |
msgstr "Utilisez jQuery"
|
2090 |
|
2091 |
+
#: dashboard/settings/general.php:25
|
2092 |
msgid ""
|
2093 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2094 |
"groups, statistics and some other features."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: dashboard/settings/general.php:28
|
2098 |
msgid "Load scripts in footer?"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: dashboard/settings/general.php:29
|
2102 |
msgid ""
|
2103 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2104 |
"site."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: dashboard/settings/general.php:32
|
2108 |
msgid "Adblock disguise"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: dashboard/settings/general.php:34
|
2112 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: dashboard/settings/general.php:35
|
2116 |
msgid ""
|
2117 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: dashboard/settings/general.php:35
|
2121 |
msgid ""
|
2122 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2123 |
"instead of the AdRotate widget."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: dashboard/settings/general.php:35
|
2127 |
msgid ""
|
2128 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2129 |
"feature will have little effect!"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: dashboard/settings/general.php:40
|
2133 |
msgid "Banner Folder"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: dashboard/settings/general.php:41
|
2137 |
msgid "Set a location where your banner images will be stored."
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: dashboard/settings/general.php:44
|
2141 |
msgid "Location"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: dashboard/settings/general.php:46
|
2145 |
msgid "(Default: wp-content/banners/)."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: dashboard/settings/general.php:47
|
2149 |
msgid ""
|
2150 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2151 |
"like:"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: dashboard/settings/general.php:48
|
2155 |
msgid ""
|
2156 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2157 |
"will show errors when the folder is missing."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: dashboard/settings/general.php:53
|
2161 |
msgid "Bot filter"
|
2162 |
msgstr "Filtre de robots"
|
2163 |
|
2164 |
+
#: dashboard/settings/general.php:54
|
2165 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: dashboard/settings/general.php:57
|
2169 |
msgid "User-Agent Filter"
|
2170 |
msgstr "Filtrage par User-Agent"
|
2171 |
|
2172 |
+
#: dashboard/settings/general.php:60
|
2173 |
msgid ""
|
2174 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: dashboard/settings/general.php:61
|
2178 |
msgid ""
|
2179 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2180 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: dashboard/settings/general.php:62
|
2184 |
msgid ""
|
2185 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2186 |
"characters are stripped out."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: dashboard/settings/general.php:63
|
2190 |
msgid ""
|
2191 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2192 |
"well."
|
2194 |
"En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
|
2195 |
"bloqués."
|
2196 |
|
2197 |
+
#: dashboard/settings/general.php:63
|
2198 |
msgid "Learn more about"
|
2199 |
msgstr "En savoir plus sur"
|
2200 |
|
2201 |
+
#: dashboard/settings/general.php:63
|
2202 |
msgid "user-agents"
|
2203 |
msgstr "user-agents"
|
2204 |
|
2843 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#~ msgid ""
|
2847 |
+
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2848 |
+
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2849 |
+
#~ "is strongly recommended."
|
2850 |
+
#~ msgstr ""
|
2851 |
+
#~ "Transférez vos images dans le dossier de la bannière et assurez-vous que "
|
2852 |
+
#~ "le fichier est dans le format suivant: \"nomdefichier.full.ext\". Un "
|
2853 |
+
#~ "ensemble complet d'images de tailles différentes est recommendé si vous "
|
2854 |
+
#~ "avez un site fluide."
|
2855 |
+
|
2856 |
#~ msgid "Create multiple schedules for each advert with AdRotate Pro."
|
2857 |
#~ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
2858 |
|
language/adrotate-ja.mo
CHANGED
Binary file
|
language/adrotate-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -13,118 +13,118 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
-
#: adrotate-functions.php:
|
28 |
msgid "Ad saved"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: adrotate-functions.php:
|
32 |
msgid "Group saved"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: adrotate-functions.php:
|
36 |
msgid "Ad(s) deleted"
|
37 |
msgstr "広告削除"
|
38 |
|
39 |
-
#: adrotate-functions.php:
|
40 |
msgid "Group deleted"
|
41 |
msgstr "グループの削除"
|
42 |
|
43 |
-
#: adrotate-functions.php:
|
44 |
msgid "Ad(s) statistics reset"
|
45 |
msgstr "広告の統計情報初期化"
|
46 |
|
47 |
-
#: adrotate-functions.php:
|
48 |
msgid "Ad(s) renewed"
|
49 |
msgstr "広告の更新"
|
50 |
|
51 |
-
#: adrotate-functions.php:
|
52 |
msgid "Ad(s) deactivated"
|
53 |
msgstr "広告の利用停止"
|
54 |
|
55 |
-
#: adrotate-functions.php:
|
56 |
msgid "Ad(s) activated"
|
57 |
msgstr "広告の利用可能化"
|
58 |
|
59 |
-
#: adrotate-functions.php:
|
60 |
msgid "Group including it's Ads deleted"
|
61 |
msgstr "削除された広告がグループに含まれています。"
|
62 |
|
63 |
-
#: adrotate-functions.php:
|
64 |
#, fuzzy
|
65 |
msgid "Export created"
|
66 |
msgstr "エクスポートオプション"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Settings saved"
|
70 |
msgstr "設定を保存します。"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Database optimized"
|
74 |
msgstr "データベースの最適化"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Database repaired"
|
78 |
msgstr "データベースの修復"
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
#, fuzzy
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "広告"
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "空のデータベースは削除されました。"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "今の操作は禁止されました。"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid ""
|
95 |
"The ad was saved but has an issue which might prevent it from working "
|
96 |
"properly. Review the colored ad."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: adrotate-functions.php:
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "選ばれた期間が見つかりません。"
|
102 |
|
103 |
-
#: adrotate-functions.php:
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
|
106 |
|
107 |
-
#: adrotate-functions.php:
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: adrotate-functions.php:
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: adrotate-functions.php:
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: adrotate-manage-publisher.php:
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: adrotate-output.php:
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: adrotate-output.php:
|
128 |
#, fuzzy
|
129 |
msgid ""
|
130 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
@@ -134,28 +134,28 @@ msgstr ""
|
|
134 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
135 |
"さい。英語ですが。"
|
136 |
|
137 |
-
#: adrotate-output.php:
|
138 |
#, fuzzy
|
139 |
msgid ""
|
140 |
"If you have received the url you want to visit via email, you are being "
|
141 |
"tricked!"
|
142 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
#, fuzzy
|
146 |
msgid "Contact support if the issue persists:"
|
147 |
msgstr ""
|
148 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
149 |
"さい。"
|
150 |
|
151 |
-
#: adrotate-output.php:
|
152 |
#, fuzzy
|
153 |
msgid ""
|
154 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
155 |
"restrictions or does not exist!"
|
156 |
msgstr "この広告は無効にされていると、サイト上で表示されません!"
|
157 |
|
158 |
-
#: adrotate-output.php:
|
159 |
#, fuzzy
|
160 |
msgid ""
|
161 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
@@ -164,30 +164,30 @@ msgstr ""
|
|
164 |
"AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
|
165 |
"を再度保存してください!"
|
166 |
|
167 |
-
#: adrotate-output.php:
|
168 |
msgid ""
|
169 |
"Either there are no banners, they are disabled or none qualified for this "
|
170 |
"location!"
|
171 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
172 |
|
173 |
-
#: adrotate-output.php:
|
174 |
#, fuzzy
|
175 |
msgid "Error, no Ad ID set! Check your syntax!"
|
176 |
msgstr "広告 - 広告IDを使ってください。"
|
177 |
|
178 |
-
#: adrotate-output.php:
|
179 |
#, fuzzy
|
180 |
msgid "Error, no group ID set! Check your syntax!"
|
181 |
msgstr "広告グループ - グループIDを使ってください。"
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
#, fuzzy
|
185 |
msgid "Error, group does not exist! Check your syntax!"
|
186 |
msgstr ""
|
187 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
188 |
"クスをオンにします。"
|
189 |
|
190 |
-
#: adrotate-output.php:
|
191 |
msgid ""
|
192 |
"There was an error locating the database tables for AdRotate. Please "
|
193 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -195,61 +195,61 @@ msgstr ""
|
|
195 |
"AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
|
196 |
"して、再登録して下さい。"
|
197 |
|
198 |
-
#: adrotate-output.php:
|
199 |
msgid "If this does not solve the issue please seek support at"
|
200 |
msgstr ""
|
201 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
202 |
"さい。"
|
203 |
|
204 |
-
#: adrotate-output.php:
|
205 |
msgid "An unknown error occured."
|
206 |
msgstr "理解できないエラーが起こっています。"
|
207 |
|
208 |
-
#: adrotate-output.php:
|
209 |
msgid "active ad(s) expired."
|
210 |
msgstr "個の広告が期限切れです。"
|
211 |
|
212 |
-
#: adrotate-output.php:
|
213 |
msgid "Take action now"
|
214 |
msgstr "継続する場合は対応して下さい。"
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
msgid "active ad(s) are about to expire."
|
218 |
msgstr "個の広告がまもなく期限切れです。"
|
219 |
|
220 |
-
#: adrotate-output.php:
|
221 |
msgid "Check it out"
|
222 |
msgstr "チェックして下さい。"
|
223 |
|
224 |
-
#: adrotate-output.php:
|
225 |
msgid "active ad(s) with configuration errors."
|
226 |
msgstr "個の広告が設定エラーになっています。"
|
227 |
|
228 |
-
#: adrotate-output.php:
|
229 |
msgid "Solve this"
|
230 |
msgstr "これを解決して下さい。"
|
231 |
|
232 |
-
#: adrotate-output.php:
|
233 |
msgid "ad(s) expired."
|
234 |
msgstr "個の広告が期限切れです。"
|
235 |
|
236 |
-
#: adrotate-output.php:
|
237 |
msgid "ad(s) are about to expire."
|
238 |
msgstr "個の広告がまもなく期限切れです。"
|
239 |
|
240 |
-
#: adrotate-output.php:
|
241 |
msgid "ad(s) with configuration errors."
|
242 |
msgstr "個の広告が設定エラーになっています。"
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
msgid "Fix this as soon as possible"
|
246 |
msgstr "これは出来る限り早く修正して下さい。"
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
-
#: dashboard/adrotatepro.php:
|
250 |
-
#: dashboard/adrotatepro.php:
|
251 |
-
#: dashboard/adrotatepro.php:
|
252 |
-
#: dashboard/adrotatepro.php:
|
253 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
254 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
255 |
#: dashboard/settings/geotargeting.php:26
|
@@ -257,120 +257,120 @@ msgstr "これは出来る限り早く修正して下さい。"
|
|
257 |
msgid "Buy now"
|
258 |
msgstr "継続する場合は対応して下さい。"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid ""
|
262 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
263 |
"to the <strong>PRO</strong> version"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
#, php-format
|
268 |
msgid ""
|
269 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: adrotate-output.php:
|
273 |
msgid "Thank you for your purchase!"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: adrotate-output.php:
|
277 |
msgid ""
|
278 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
279 |
"this menu. Check out the"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: adrotate-output.php:
|
283 |
msgid "manuals"
|
284 |
msgstr "マニュアル(英語サイト)"
|
285 |
|
286 |
-
#: adrotate-output.php:
|
287 |
msgid "and"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
#, fuzzy
|
292 |
msgid "forums"
|
293 |
msgstr "フォーラム"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
#, fuzzy
|
297 |
msgid "Useful Links"
|
298 |
msgstr "役に立つ情報"
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
msgid "Useful links to learn more about AdRotate"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate Page"
|
307 |
msgstr "AdRotate Blog"
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
#, fuzzy
|
311 |
msgid "Getting Started With AdRotate"
|
312 |
msgstr ""
|
313 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
314 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
315 |
|
316 |
-
#: adrotate-output.php:
|
317 |
#, fuzzy
|
318 |
msgid "AdRotate manuals"
|
319 |
msgstr "AdRotate Blog"
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
#, fuzzy
|
323 |
msgid "AdRotate Support Forum"
|
324 |
msgstr "AdRotate Blog"
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
#, fuzzy
|
328 |
msgid "Help AdRotate Grow"
|
329 |
msgstr "AdRotate Blog"
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid "Brought to you by"
|
333 |
msgstr "サービス紹介"
|
334 |
|
335 |
-
#: adrotate-output.php:
|
336 |
msgid ""
|
337 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
338 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "If you find AdRotate useful please leave your honest"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "rating"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
#, fuzzy
|
351 |
msgid "review"
|
352 |
msgstr "全般レポートを見れる権限"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
#, fuzzy
|
360 |
msgid "Available in AdRotate Pro"
|
361 |
msgstr "AdRotate Blog"
|
362 |
|
363 |
-
#: adrotate-output.php:
|
364 |
#, fuzzy
|
365 |
msgid "More information..."
|
366 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
367 |
|
368 |
-
#: adrotate-output.php:
|
369 |
#, fuzzy
|
370 |
msgid "This feature is available in AdRotate Pro"
|
371 |
msgstr "この機能は使いません。"
|
372 |
|
373 |
-
#: adrotate-output.php:
|
374 |
#, fuzzy
|
375 |
msgid "Learn more"
|
376 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
@@ -495,82 +495,82 @@ msgstr "広告ブロック - ブロックIDを使ってください。"
|
|
495 |
msgid "Fill in the ID of the type you want to display!"
|
496 |
msgstr "表示したいタイプのIDを入力してください!"
|
497 |
|
498 |
-
#: adrotate.php:
|
499 |
#, fuzzy
|
500 |
msgid "General Info"
|
501 |
msgstr "一般設定"
|
502 |
|
503 |
-
#: adrotate.php:
|
504 |
#, fuzzy
|
505 |
msgid "AdRotate Pro"
|
506 |
msgstr "AdRotate Blog"
|
507 |
|
508 |
-
#: adrotate.php:
|
509 |
msgid "Manage Ads"
|
510 |
msgstr "広告管理"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "Manage Groups"
|
514 |
msgstr "グループの管理"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
#, fuzzy
|
518 |
msgid "Manage Schedules"
|
519 |
msgstr "管理"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
#, fuzzy
|
523 |
msgid "Manage Media"
|
524 |
msgstr "画像リンク先URL:"
|
525 |
|
526 |
-
#: adrotate.php:
|
527 |
msgid "Settings"
|
528 |
msgstr "設定"
|
529 |
|
530 |
-
#: adrotate.php:
|
531 |
#, fuzzy
|
532 |
msgid "AdRotate Info"
|
533 |
msgstr "AdRotate Blog"
|
534 |
|
535 |
-
#: adrotate.php:
|
536 |
#, fuzzy
|
537 |
msgid "AdRotate Professional"
|
538 |
msgstr "AdRotate Blog"
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
msgid "Ad Management"
|
542 |
msgstr "広告管理"
|
543 |
|
544 |
-
#: adrotate.php:
|
545 |
msgid "Manage"
|
546 |
msgstr "管理"
|
547 |
|
548 |
-
#: adrotate.php:
|
549 |
msgid "Add New"
|
550 |
msgstr "新規追加"
|
551 |
|
552 |
-
#: adrotate.php:
|
553 |
msgid "Group Management"
|
554 |
msgstr "グループの管理"
|
555 |
|
556 |
-
#: adrotate.php:
|
557 |
#: dashboard/publisher/groups-main.php:70
|
558 |
msgid "Report"
|
559 |
msgstr "レポート"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
#, fuzzy
|
563 |
msgid "Schedule Management available in AdRotate Pro"
|
564 |
msgstr "この機能は使いません。"
|
565 |
|
566 |
-
#: adrotate.php:
|
567 |
#, fuzzy
|
568 |
msgid ""
|
569 |
"Schedule management and multiple schedules per advert is available in "
|
570 |
"AdRotate Pro."
|
571 |
msgstr "この機能は使いません。"
|
572 |
|
573 |
-
#: adrotate.php:
|
574 |
#: dashboard/publisher/adverts-main.php:114
|
575 |
#: dashboard/publisher/groups-edit.php:75
|
576 |
#: dashboard/publisher/groups-main.php:89
|
@@ -578,21 +578,21 @@ msgstr "この機能は使いません。"
|
|
578 |
msgid "More information"
|
579 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
580 |
|
581 |
-
#: adrotate.php:
|
582 |
#: dashboard/publisher/adverts-error.php:19
|
583 |
#: dashboard/publisher/adverts-main.php:20
|
584 |
#: dashboard/publisher/groups-main.php:20
|
585 |
msgid "Bulk Actions"
|
586 |
msgstr "一括操作"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
#: dashboard/publisher/adverts-error.php:29
|
590 |
#: dashboard/publisher/adverts-main.php:30
|
591 |
#: dashboard/publisher/groups-main.php:24
|
592 |
msgid "Go"
|
593 |
msgstr "実行"
|
594 |
|
595 |
-
#: adrotate.php:
|
596 |
#: dashboard/publisher/adverts-error.php:39
|
597 |
#: dashboard/publisher/adverts-main.php:39
|
598 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -601,181 +601,180 @@ msgstr "実行"
|
|
601 |
msgid "ID"
|
602 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
msgid "Start"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
msgid "End"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#: dashboard/publisher/groups-main.php:34
|
614 |
msgid "Ads"
|
615 |
msgstr "広告"
|
616 |
|
617 |
-
#: adrotate.php:
|
618 |
#, fuzzy
|
619 |
msgid "Max Impressions"
|
620 |
msgstr "表示数"
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
#, fuzzy
|
624 |
msgid "Max Clicks"
|
625 |
msgstr "クリック"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
#, fuzzy
|
629 |
msgid "No schedules created yet!"
|
630 |
msgstr "まだブロックが作られていません。"
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
#, fuzzy
|
634 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
635 |
msgstr ""
|
636 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
637 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
#, fuzzy
|
641 |
msgid "Upgrade today!"
|
642 |
msgstr "本日"
|
643 |
|
644 |
-
#: adrotate.php:
|
645 |
#: dashboard/publisher/groups-edit.php:387
|
646 |
#, fuzzy
|
647 |
msgid "Expires soon."
|
648 |
msgstr "これは出来る限り早く修正して下さい。"
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
#: dashboard/publisher/groups-edit.php:388
|
652 |
#, fuzzy
|
653 |
msgid "Has expired."
|
654 |
msgstr "個の広告が期限切れです。"
|
655 |
|
656 |
-
#: adrotate.php:
|
657 |
#, fuzzy
|
658 |
msgid "Media Management available in AdRotate Pro"
|
659 |
msgstr "この機能は使いません。"
|
660 |
|
661 |
-
#: adrotate.php:
|
662 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: adrotate.php:
|
666 |
msgid ""
|
667 |
"This is useful if you use responsive adverts with multiple images or have "
|
668 |
"HTML5 adverts containing multiple files."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
#, fuzzy
|
673 |
msgid "Media uploading and management is available in AdRotate Pro."
|
674 |
msgstr "この機能は使いません。"
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "Upload new file"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid "Accepted files:"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid "Maximum size is 512Kb."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
msgid "Important:"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
msgid ""
|
698 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
699 |
"spaces with a - or _."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: adrotate.php:
|
703 |
msgid ""
|
704 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
705 |
"file so it knows about the changed name. For example for the javascript file."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: adrotate.php:
|
709 |
msgid ""
|
710 |
"For responsive adverts make sure the filename is in the following format; "
|
711 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: adrotate.php:
|
715 |
msgid ""
|
716 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
717 |
"filename instead of \".full\" for the various viewports."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
-
#: dashboard/publisher/groups-edit.php:312
|
722 |
#: dashboard/publisher/groups-edit.php:320
|
723 |
msgid "Example:"
|
724 |
msgstr "例:"
|
725 |
|
726 |
-
#: adrotate.php:
|
727 |
msgid ""
|
728 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
729 |
"for different viewports."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: adrotate.php:
|
733 |
msgid "Upload file"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
msgid "Click only once per file!"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: adrotate.php:
|
741 |
msgid "Available files in"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: adrotate.php:
|
745 |
#: dashboard/publisher/groups-main.php:33
|
746 |
msgid "Name"
|
747 |
msgstr "名前"
|
748 |
|
749 |
-
#: adrotate.php:
|
750 |
#, fuzzy
|
751 |
msgid "Actions"
|
752 |
msgstr "一括操作"
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
-
#: adrotate.php:
|
756 |
#: dashboard/publisher/adverts-disabled.php:22
|
757 |
#: dashboard/publisher/adverts-error.php:21
|
758 |
#: dashboard/publisher/adverts-main.php:22
|
759 |
msgid "Delete"
|
760 |
msgstr "削除"
|
761 |
|
762 |
-
#: adrotate.php:
|
763 |
msgid ""
|
764 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: adrotate.php:
|
768 |
#, fuzzy
|
769 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
770 |
msgstr ""
|
771 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
772 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
773 |
|
774 |
-
#: adrotate.php:
|
775 |
msgid "AdRotate Settings"
|
776 |
msgstr "AdRotate 設定"
|
777 |
|
778 |
-
#: adrotate.php:
|
779 |
msgid "Update Options"
|
780 |
msgstr "設定の更新"
|
781 |
|
@@ -793,22 +792,34 @@ msgid ""
|
|
793 |
msgstr ""
|
794 |
|
795 |
#: dashboard/adrotatepro.php:27
|
796 |
-
msgid "
|
797 |
msgstr ""
|
798 |
|
799 |
#: dashboard/adrotatepro.php:30
|
800 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
801 |
"Go nationwide or global with localized adverts for your various audiences. "
|
802 |
"Set up adverts for countries and cities and sell impressions per general "
|
803 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
804 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: dashboard/adrotatepro.php:
|
808 |
msgid "Get Premium Support almost all year round"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: dashboard/adrotatepro.php:
|
812 |
msgid ""
|
813 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
814 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -816,22 +827,22 @@ msgid ""
|
|
816 |
"forum. Get a solution (usually) within a day."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:
|
820 |
#, fuzzy
|
821 |
msgid "AdRotate is brought to you by"
|
822 |
msgstr "サービス紹介"
|
823 |
|
824 |
-
#: dashboard/adrotatepro.php:
|
825 |
msgid ""
|
826 |
-
"Premium plugins for WordPress and WooCommerce
|
827 |
-
"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: dashboard/adrotatepro.php:
|
831 |
msgid "Schedule all campaigns with ease"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: dashboard/adrotatepro.php:
|
835 |
msgid ""
|
836 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
837 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -839,11 +850,23 @@ msgid ""
|
|
839 |
"much more easy. You can set one or many schedules for adverts."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
msgid "Stay up-to-date with notifications"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: dashboard/adrotatepro.php:
|
847 |
msgid ""
|
848 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
849 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -852,92 +875,92 @@ msgid ""
|
|
852 |
"miss an expiration date again."
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: dashboard/adrotatepro.php:
|
856 |
#: dashboard/info.php:93 dashboard/info.php:105
|
857 |
#, fuzzy
|
858 |
msgid "Buy AdRotate Professional"
|
859 |
msgstr "AdRotate Blog"
|
860 |
|
861 |
-
#: dashboard/adrotatepro.php:
|
862 |
msgid "Single License"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: dashboard/adrotatepro.php:
|
866 |
msgid "For one WordPress installation."
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: dashboard/adrotatepro.php:
|
870 |
#: dashboard/info.php:98 dashboard/info.php:110
|
871 |
msgid "Duo License"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: dashboard/adrotatepro.php:
|
875 |
msgid "For two WordPress installations."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: dashboard/adrotatepro.php:
|
879 |
#: dashboard/info.php:99 dashboard/info.php:111
|
880 |
msgid "Multi License"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: dashboard/adrotatepro.php:
|
884 |
msgid " For up to five WordPress installations."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: dashboard/adrotatepro.php:
|
888 |
#: dashboard/info.php:100 dashboard/info.php:112
|
889 |
#, fuzzy
|
890 |
msgid "Developer License"
|
891 |
msgstr "開発者向けデバッグ"
|
892 |
|
893 |
-
#: dashboard/adrotatepro.php:
|
894 |
msgid "Unlimited WordPress installations and/or networks."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: dashboard/adrotatepro.php:
|
898 |
#: dashboard/info.php:101 dashboard/info.php:114
|
899 |
msgid "Compare licenses"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: dashboard/adrotatepro.php:
|
903 |
msgid "Not sure which license is for you? Compare them..."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: dashboard/adrotatepro.php:
|
907 |
#, fuzzy
|
908 |
msgid "All Licenses"
|
909 |
msgstr "すべての広告の再評価"
|
910 |
|
911 |
-
#: dashboard/adrotatepro.php:
|
912 |
msgid "Lifetime License"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: dashboard/adrotatepro.php:
|
916 |
msgid "Single installation."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: dashboard/adrotatepro.php:
|
920 |
msgid "Up to 2 installations."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: dashboard/adrotatepro.php:
|
924 |
msgid "Up to 10 installations."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: dashboard/adrotatepro.php:
|
928 |
msgid "Up to 25 installations or multisite networks."
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: dashboard/adrotatepro.php:
|
932 |
msgid ""
|
933 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: dashboard/adrotatepro.php:
|
937 |
msgid "Not sure which license is for you?"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: dashboard/adrotatepro.php:
|
941 |
msgid "Compare Licenses"
|
942 |
msgstr ""
|
943 |
|
@@ -1300,16 +1323,16 @@ msgstr ""
|
|
1300 |
|
1301 |
#: dashboard/publisher/adverts-edit.php:192
|
1302 |
#: dashboard/publisher/adverts-edit.php:292
|
1303 |
-
#: dashboard/publisher/adverts-edit.php:
|
1304 |
-
#: dashboard/publisher/adverts-edit.php:
|
1305 |
#, fuzzy
|
1306 |
msgid "Save Advert"
|
1307 |
msgstr "保存"
|
1308 |
|
1309 |
#: dashboard/publisher/adverts-edit.php:193
|
1310 |
#: dashboard/publisher/adverts-edit.php:293
|
1311 |
-
#: dashboard/publisher/adverts-edit.php:
|
1312 |
-
#: dashboard/publisher/adverts-edit.php:
|
1313 |
#: dashboard/publisher/groups-edit.php:154
|
1314 |
#: dashboard/publisher/groups-edit.php:301
|
1315 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1317,35 +1340,35 @@ msgid "Cancel"
|
|
1317 |
msgstr "キャンセル"
|
1318 |
|
1319 |
#: dashboard/publisher/adverts-edit.php:196
|
1320 |
-
#: dashboard/publisher/adverts-edit.php:
|
1321 |
#: dashboard/publisher/groups-edit.php:136
|
1322 |
#: dashboard/publisher/groups-edit.php:283
|
1323 |
msgid "Usage"
|
1324 |
msgstr "利用タグ"
|
1325 |
|
1326 |
#: dashboard/publisher/adverts-edit.php:200
|
1327 |
-
#: dashboard/publisher/adverts-edit.php:
|
1328 |
#: dashboard/publisher/groups-edit.php:140
|
1329 |
#: dashboard/publisher/groups-edit.php:287
|
1330 |
msgid "Widget"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: dashboard/publisher/adverts-edit.php:201
|
1334 |
-
#: dashboard/publisher/adverts-edit.php:
|
1335 |
msgid ""
|
1336 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1337 |
"and enter ID"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
#: dashboard/publisher/adverts-edit.php:204
|
1341 |
-
#: dashboard/publisher/adverts-edit.php:
|
1342 |
#: dashboard/publisher/groups-edit.php:144
|
1343 |
#: dashboard/publisher/groups-edit.php:291
|
1344 |
msgid "In a post or page"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
#: dashboard/publisher/adverts-edit.php:206
|
1348 |
-
#: dashboard/publisher/adverts-edit.php:
|
1349 |
#: dashboard/publisher/groups-edit.php:146
|
1350 |
#: dashboard/publisher/groups-edit.php:293
|
1351 |
msgid "Directly in a theme"
|
@@ -1402,8 +1425,8 @@ msgid ""
|
|
1402 |
msgstr ""
|
1403 |
|
1404 |
#: dashboard/publisher/adverts-edit.php:289
|
1405 |
-
#: dashboard/publisher/adverts-edit.php:
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
#: dashboard/publisher/groups-edit.php:200
|
1408 |
#, fuzzy
|
1409 |
msgid "Upgrade today"
|
@@ -1421,116 +1444,152 @@ msgid "Everything below is optional."
|
|
1421 |
msgstr "タイトル(オプション):"
|
1422 |
|
1423 |
#: dashboard/publisher/adverts-edit.php:301
|
1424 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1425 |
msgstr ""
|
1426 |
|
1427 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1428 |
#, fuzzy
|
1429 |
msgid "Enable responsive support for this advert."
|
1430 |
msgstr "広告の追加・編集管理"
|
1431 |
|
1432 |
-
#: dashboard/publisher/adverts-edit.php:
|
1433 |
msgid ""
|
1434 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1435 |
-
"following format; \"imagename.full.ext\".
|
1436 |
-
"strongly recommended."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1440 |
#: dashboard/publisher/groups-edit.php:194
|
1441 |
msgid "Sortorder"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: dashboard/publisher/adverts-edit.php:
|
1445 |
#: dashboard/publisher/groups-edit.php:196
|
1446 |
msgid "For administrative purposes set a sortorder."
|
1447 |
msgstr "管理目的で順序を設定できます。"
|
1448 |
|
1449 |
-
#: dashboard/publisher/adverts-edit.php:
|
1450 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1451 |
msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
|
1452 |
|
1453 |
-
#: dashboard/publisher/adverts-edit.php:
|
1454 |
msgid ""
|
1455 |
-
"With AdRotate Pro you can
|
|
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: dashboard/publisher/adverts-edit.php:
|
1459 |
msgid "Geo Targeting in AdRotate Pro"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: dashboard/publisher/adverts-edit.php:
|
1463 |
msgid ""
|
1464 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: dashboard/publisher/adverts-edit.php:
|
1468 |
msgid "Cities/States"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: dashboard/publisher/adverts-edit.php:
|
1472 |
msgid ""
|
1473 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1474 |
"states ISO codes are supported)"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: dashboard/publisher/adverts-edit.php:
|
1478 |
msgid ""
|
1479 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1480 |
"correctly!"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: dashboard/publisher/adverts-edit.php:
|
1484 |
msgid "Countries"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: dashboard/publisher/adverts-edit.php:
|
1488 |
#, fuzzy
|
1489 |
msgid "Select the countries you want the adverts to show in."
|
1490 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
1491 |
|
1492 |
-
#: dashboard/publisher/adverts-edit.php:
|
1493 |
msgid "Cities take priority and will be filtered first."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: dashboard/publisher/adverts-edit.php:
|
1497 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: dashboard/publisher/adverts-edit.php:
|
1501 |
msgid "Select Groups"
|
1502 |
msgstr "グループを選択"
|
1503 |
|
1504 |
-
#: dashboard/publisher/adverts-edit.php:
|
1505 |
#, fuzzy
|
1506 |
msgid "ID - Name"
|
1507 |
msgstr "名前"
|
1508 |
|
1509 |
-
#: dashboard/publisher/adverts-edit.php:
|
1510 |
#: dashboard/publisher/groups-main.php:60
|
1511 |
#: dashboard/settings/geotargeting.php:39
|
1512 |
#, fuzzy
|
1513 |
msgid "Default"
|
1514 |
msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
|
1515 |
|
1516 |
-
#: dashboard/publisher/adverts-edit.php:
|
1517 |
#: dashboard/publisher/groups-main.php:61
|
1518 |
msgid "Dynamic"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: dashboard/publisher/adverts-edit.php:
|
1522 |
#: dashboard/publisher/groups-main.php:61
|
1523 |
#, fuzzy
|
1524 |
msgid "second rotation"
|
1525 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
1526 |
|
1527 |
-
#: dashboard/publisher/adverts-edit.php:
|
1528 |
#: dashboard/publisher/groups-main.php:62
|
1529 |
#, fuzzy
|
1530 |
msgid "Block"
|
1531 |
msgstr "ブロック管理"
|
1532 |
|
1533 |
-
#: dashboard/publisher/adverts-edit.php:
|
1534 |
#: dashboard/publisher/groups-main.php:62
|
1535 |
#, fuzzy
|
1536 |
msgid "grid"
|
@@ -1538,18 +1597,18 @@ msgstr ""
|
|
1538 |
"広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
|
1539 |
"列です。)"
|
1540 |
|
1541 |
-
#: dashboard/publisher/adverts-edit.php:
|
1542 |
#: dashboard/publisher/groups-edit.php:202
|
1543 |
#: dashboard/publisher/groups-main.php:63
|
1544 |
#, fuzzy
|
1545 |
msgid "Post Injection"
|
1546 |
msgstr "投稿及びページ内掲載する場合:"
|
1547 |
|
1548 |
-
#: dashboard/publisher/adverts-edit.php:
|
1549 |
msgid "Geolocation"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: dashboard/publisher/adverts-edit.php:
|
1553 |
#: dashboard/publisher/groups-edit.php:61
|
1554 |
#: dashboard/publisher/groups-main.php:70
|
1555 |
#, fuzzy
|
@@ -1647,11 +1706,6 @@ msgstr "今日のクリック数"
|
|
1647 |
msgid "Monthly overview of clicks and impressions"
|
1648 |
msgstr "クリック"
|
1649 |
|
1650 |
-
#: dashboard/publisher/adverts-report.php:58
|
1651 |
-
#: dashboard/publisher/groups-report.php:64
|
1652 |
-
msgid "Note:"
|
1653 |
-
msgstr "注意:"
|
1654 |
-
|
1655 |
#: dashboard/publisher/adverts-report.php:58
|
1656 |
#: dashboard/publisher/groups-report.php:64
|
1657 |
msgid ""
|
@@ -2020,9 +2074,8 @@ msgstr "グループを削除しようとしています。"
|
|
2020 |
msgid "This action can not be undone!"
|
2021 |
msgstr "この処理は復旧できません。注意して下さい。"
|
2022 |
|
2023 |
-
#: dashboard/publisher/groups-main.php:24
|
2024 |
-
#: dashboard/settings/maintenance.php:
|
2025 |
-
#: dashboard/settings/maintenance.php:34
|
2026 |
msgid "OK to continue, CANCEL to stop."
|
2027 |
msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
|
2028 |
|
@@ -2108,70 +2161,80 @@ msgid ""
|
|
2108 |
msgstr ""
|
2109 |
|
2110 |
#: dashboard/settings/general.php:20
|
2111 |
-
msgid "
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#: dashboard/settings/general.php:21
|
2115 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2116 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2117 |
"groups, statistics and some other features."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: dashboard/settings/general.php:
|
2121 |
msgid "Load scripts in footer?"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: dashboard/settings/general.php:
|
2125 |
msgid ""
|
2126 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2127 |
"site."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: dashboard/settings/general.php:
|
2131 |
msgid "Adblock disguise"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: dashboard/settings/general.php:
|
2135 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: dashboard/settings/general.php:
|
2139 |
msgid ""
|
2140 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: dashboard/settings/general.php:
|
2144 |
msgid ""
|
2145 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2146 |
"instead of the AdRotate widget."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: dashboard/settings/general.php:
|
2150 |
msgid ""
|
2151 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2152 |
"feature will have little effect!"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: dashboard/settings/general.php:
|
2156 |
#, fuzzy
|
2157 |
msgid "Banner Folder"
|
2158 |
msgstr "画像バナー"
|
2159 |
|
2160 |
-
#: dashboard/settings/general.php:
|
2161 |
#, fuzzy
|
2162 |
msgid "Set a location where your banner images will be stored."
|
2163 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
2164 |
|
2165 |
-
#: dashboard/settings/general.php:
|
2166 |
#, fuzzy
|
2167 |
msgid "Location"
|
2168 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
2169 |
|
2170 |
-
#: dashboard/settings/general.php:
|
2171 |
msgid "(Default: wp-content/banners/)."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: dashboard/settings/general.php:
|
2175 |
#, fuzzy
|
2176 |
msgid ""
|
2177 |
"To try and trick ad blockers you could set the folder to something crazy "
|
@@ -2180,44 +2243,44 @@ msgstr ""
|
|
2180 |
"AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
|
2181 |
"を再度保存してください!"
|
2182 |
|
2183 |
-
#: dashboard/settings/general.php:
|
2184 |
#, fuzzy
|
2185 |
msgid ""
|
2186 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2187 |
"will show errors when the folder is missing."
|
2188 |
msgstr "画像バナー"
|
2189 |
|
2190 |
-
#: dashboard/settings/general.php:
|
2191 |
#, fuzzy
|
2192 |
msgid "Bot filter"
|
2193 |
msgstr "ユーザーエージェントフィルター"
|
2194 |
|
2195 |
-
#: dashboard/settings/general.php:
|
2196 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: dashboard/settings/general.php:
|
2200 |
msgid "User-Agent Filter"
|
2201 |
msgstr "ユーザーエージェントフィルター"
|
2202 |
|
2203 |
-
#: dashboard/settings/general.php:
|
2204 |
msgid ""
|
2205 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: dashboard/settings/general.php:
|
2209 |
msgid ""
|
2210 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2211 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: dashboard/settings/general.php:
|
2215 |
msgid ""
|
2216 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2217 |
"characters are stripped out."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: dashboard/settings/general.php:
|
2221 |
msgid ""
|
2222 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2223 |
"well."
|
@@ -2225,11 +2288,11 @@ msgstr ""
|
|
2225 |
"さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
|
2226 |
"れます。"
|
2227 |
|
2228 |
-
#: dashboard/settings/general.php:
|
2229 |
msgid "Learn more about"
|
2230 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
2231 |
|
2232 |
-
#: dashboard/settings/general.php:
|
2233 |
msgid "user-agents"
|
2234 |
msgstr "ユーザーエージェント[英語]"
|
2235 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:45+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:45+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:849
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
+
#: adrotate-functions.php:852
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
+
#: adrotate-functions.php:901
|
28 |
msgid "Ad saved"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: adrotate-functions.php:905
|
32 |
msgid "Group saved"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: adrotate-functions.php:909
|
36 |
msgid "Ad(s) deleted"
|
37 |
msgstr "広告削除"
|
38 |
|
39 |
+
#: adrotate-functions.php:913
|
40 |
msgid "Group deleted"
|
41 |
msgstr "グループの削除"
|
42 |
|
43 |
+
#: adrotate-functions.php:917
|
44 |
msgid "Ad(s) statistics reset"
|
45 |
msgstr "広告の統計情報初期化"
|
46 |
|
47 |
+
#: adrotate-functions.php:921
|
48 |
msgid "Ad(s) renewed"
|
49 |
msgstr "広告の更新"
|
50 |
|
51 |
+
#: adrotate-functions.php:925
|
52 |
msgid "Ad(s) deactivated"
|
53 |
msgstr "広告の利用停止"
|
54 |
|
55 |
+
#: adrotate-functions.php:929
|
56 |
msgid "Ad(s) activated"
|
57 |
msgstr "広告の利用可能化"
|
58 |
|
59 |
+
#: adrotate-functions.php:933
|
60 |
msgid "Group including it's Ads deleted"
|
61 |
msgstr "削除された広告がグループに含まれています。"
|
62 |
|
63 |
+
#: adrotate-functions.php:937
|
64 |
#, fuzzy
|
65 |
msgid "Export created"
|
66 |
msgstr "エクスポートオプション"
|
67 |
|
68 |
+
#: adrotate-functions.php:942
|
69 |
msgid "Settings saved"
|
70 |
msgstr "設定を保存します。"
|
71 |
|
72 |
+
#: adrotate-functions.php:946
|
73 |
msgid "Database optimized"
|
74 |
msgstr "データベースの最適化"
|
75 |
|
76 |
+
#: adrotate-functions.php:950
|
77 |
msgid "Database repaired"
|
78 |
msgstr "データベースの修復"
|
79 |
|
80 |
+
#: adrotate-functions.php:954
|
81 |
#, fuzzy
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "広告"
|
84 |
|
85 |
+
#: adrotate-functions.php:958
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "空のデータベースは削除されました。"
|
88 |
|
89 |
+
#: adrotate-functions.php:963
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "今の操作は禁止されました。"
|
92 |
|
93 |
+
#: adrotate-functions.php:967
|
94 |
msgid ""
|
95 |
"The ad was saved but has an issue which might prevent it from working "
|
96 |
"properly. Review the colored ad."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: adrotate-functions.php:971
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "選ばれた期間が見つかりません。"
|
102 |
|
103 |
+
#: adrotate-functions.php:975
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
|
106 |
|
107 |
+
#: adrotate-functions.php:979
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: adrotate-functions.php:983
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: adrotate-functions.php:987
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: adrotate-manage-publisher.php:712
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: adrotate-output.php:639
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: adrotate-output.php:640
|
128 |
#, fuzzy
|
129 |
msgid ""
|
130 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
134 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
135 |
"さい。英語ですが。"
|
136 |
|
137 |
+
#: adrotate-output.php:641
|
138 |
#, fuzzy
|
139 |
msgid ""
|
140 |
"If you have received the url you want to visit via email, you are being "
|
141 |
"tricked!"
|
142 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
143 |
|
144 |
+
#: adrotate-output.php:642
|
145 |
#, fuzzy
|
146 |
msgid "Contact support if the issue persists:"
|
147 |
msgstr ""
|
148 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
149 |
"さい。"
|
150 |
|
151 |
+
#: adrotate-output.php:660
|
152 |
#, fuzzy
|
153 |
msgid ""
|
154 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
155 |
"restrictions or does not exist!"
|
156 |
msgstr "この広告は無効にされていると、サイト上で表示されません!"
|
157 |
|
158 |
+
#: adrotate-output.php:662
|
159 |
#, fuzzy
|
160 |
msgid ""
|
161 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
164 |
"AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
|
165 |
"を再度保存してください!"
|
166 |
|
167 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
168 |
msgid ""
|
169 |
"Either there are no banners, they are disabled or none qualified for this "
|
170 |
"location!"
|
171 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
172 |
|
173 |
+
#: adrotate-output.php:677
|
174 |
#, fuzzy
|
175 |
msgid "Error, no Ad ID set! Check your syntax!"
|
176 |
msgstr "広告 - 広告IDを使ってください。"
|
177 |
|
178 |
+
#: adrotate-output.php:683
|
179 |
#, fuzzy
|
180 |
msgid "Error, no group ID set! Check your syntax!"
|
181 |
msgstr "広告グループ - グループIDを使ってください。"
|
182 |
|
183 |
+
#: adrotate-output.php:688
|
184 |
#, fuzzy
|
185 |
msgid "Error, group does not exist! Check your syntax!"
|
186 |
msgstr ""
|
187 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
188 |
"クスをオンにします。"
|
189 |
|
190 |
+
#: adrotate-output.php:694
|
191 |
msgid ""
|
192 |
"There was an error locating the database tables for AdRotate. Please "
|
193 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
195 |
"AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
|
196 |
"して、再登録して下さい。"
|
197 |
|
198 |
+
#: adrotate-output.php:694
|
199 |
msgid "If this does not solve the issue please seek support at"
|
200 |
msgstr ""
|
201 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
202 |
"さい。"
|
203 |
|
204 |
+
#: adrotate-output.php:700
|
205 |
msgid "An unknown error occured."
|
206 |
msgstr "理解できないエラーが起こっています。"
|
207 |
|
208 |
+
#: adrotate-output.php:725
|
209 |
msgid "active ad(s) expired."
|
210 |
msgstr "個の広告が期限切れです。"
|
211 |
|
212 |
+
#: adrotate-output.php:725
|
213 |
msgid "Take action now"
|
214 |
msgstr "継続する場合は対応して下さい。"
|
215 |
|
216 |
+
#: adrotate-output.php:727
|
217 |
msgid "active ad(s) are about to expire."
|
218 |
msgstr "個の広告がまもなく期限切れです。"
|
219 |
|
220 |
+
#: adrotate-output.php:727
|
221 |
msgid "Check it out"
|
222 |
msgstr "チェックして下さい。"
|
223 |
|
224 |
+
#: adrotate-output.php:729
|
225 |
msgid "active ad(s) with configuration errors."
|
226 |
msgstr "個の広告が設定エラーになっています。"
|
227 |
|
228 |
+
#: adrotate-output.php:729
|
229 |
msgid "Solve this"
|
230 |
msgstr "これを解決して下さい。"
|
231 |
|
232 |
+
#: adrotate-output.php:731
|
233 |
msgid "ad(s) expired."
|
234 |
msgstr "個の広告が期限切れです。"
|
235 |
|
236 |
+
#: adrotate-output.php:731
|
237 |
msgid "ad(s) are about to expire."
|
238 |
msgstr "個の広告がまもなく期限切れです。"
|
239 |
|
240 |
+
#: adrotate-output.php:731
|
241 |
msgid "ad(s) with configuration errors."
|
242 |
msgstr "個の広告が設定エラーになっています。"
|
243 |
|
244 |
+
#: adrotate-output.php:731
|
245 |
msgid "Fix this as soon as possible"
|
246 |
msgstr "これは出来る限り早く修正して下さい。"
|
247 |
|
248 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
249 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
250 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
251 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
252 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
253 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
254 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
255 |
#: dashboard/settings/geotargeting.php:26
|
257 |
msgid "Buy now"
|
258 |
msgstr "継続する場合は対応して下さい。"
|
259 |
|
260 |
+
#: adrotate-output.php:744
|
261 |
msgid ""
|
262 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
263 |
"to the <strong>PRO</strong> version"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: adrotate-output.php:744
|
267 |
#, php-format
|
268 |
msgid ""
|
269 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: adrotate-output.php:744
|
273 |
msgid "Thank you for your purchase!"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: adrotate-output.php:788
|
277 |
msgid ""
|
278 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
279 |
"this menu. Check out the"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: adrotate-output.php:788
|
283 |
msgid "manuals"
|
284 |
msgstr "マニュアル(英語サイト)"
|
285 |
|
286 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
287 |
msgid "and"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: adrotate-output.php:788
|
291 |
#, fuzzy
|
292 |
msgid "forums"
|
293 |
msgstr "フォーラム"
|
294 |
|
295 |
+
#: adrotate-output.php:821
|
296 |
#, fuzzy
|
297 |
msgid "Useful Links"
|
298 |
msgstr "役に立つ情報"
|
299 |
|
300 |
+
#: adrotate-output.php:822
|
301 |
msgid "Useful links to learn more about AdRotate"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: adrotate-output.php:824
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate Page"
|
307 |
msgstr "AdRotate Blog"
|
308 |
|
309 |
+
#: adrotate-output.php:825
|
310 |
#, fuzzy
|
311 |
msgid "Getting Started With AdRotate"
|
312 |
msgstr ""
|
313 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
314 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
315 |
|
316 |
+
#: adrotate-output.php:826
|
317 |
#, fuzzy
|
318 |
msgid "AdRotate manuals"
|
319 |
msgstr "AdRotate Blog"
|
320 |
|
321 |
+
#: adrotate-output.php:827
|
322 |
#, fuzzy
|
323 |
msgid "AdRotate Support Forum"
|
324 |
msgstr "AdRotate Blog"
|
325 |
|
326 |
+
#: adrotate-output.php:853
|
327 |
#, fuzzy
|
328 |
msgid "Help AdRotate Grow"
|
329 |
msgstr "AdRotate Blog"
|
330 |
|
331 |
+
#: adrotate-output.php:854
|
332 |
msgid "Brought to you by"
|
333 |
msgstr "サービス紹介"
|
334 |
|
335 |
+
#: adrotate-output.php:861
|
336 |
msgid ""
|
337 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
338 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: adrotate-output.php:861
|
342 |
msgid "If you find AdRotate useful please leave your honest"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: adrotate-output.php:861
|
346 |
msgid "rating"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: adrotate-output.php:861
|
350 |
#, fuzzy
|
351 |
msgid "review"
|
352 |
msgstr "全般レポートを見れる権限"
|
353 |
|
354 |
+
#: adrotate-output.php:861
|
355 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: adrotate-output.php:893
|
359 |
#, fuzzy
|
360 |
msgid "Available in AdRotate Pro"
|
361 |
msgstr "AdRotate Blog"
|
362 |
|
363 |
+
#: adrotate-output.php:893
|
364 |
#, fuzzy
|
365 |
msgid "More information..."
|
366 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
367 |
|
368 |
+
#: adrotate-output.php:894
|
369 |
#, fuzzy
|
370 |
msgid "This feature is available in AdRotate Pro"
|
371 |
msgstr "この機能は使いません。"
|
372 |
|
373 |
+
#: adrotate-output.php:894
|
374 |
#, fuzzy
|
375 |
msgid "Learn more"
|
376 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
495 |
msgid "Fill in the ID of the type you want to display!"
|
496 |
msgstr "表示したいタイプのIDを入力してください!"
|
497 |
|
498 |
+
#: adrotate.php:106
|
499 |
#, fuzzy
|
500 |
msgid "General Info"
|
501 |
msgstr "一般設定"
|
502 |
|
503 |
+
#: adrotate.php:107
|
504 |
#, fuzzy
|
505 |
msgid "AdRotate Pro"
|
506 |
msgstr "AdRotate Blog"
|
507 |
|
508 |
+
#: adrotate.php:108
|
509 |
msgid "Manage Ads"
|
510 |
msgstr "広告管理"
|
511 |
|
512 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
513 |
msgid "Manage Groups"
|
514 |
msgstr "グループの管理"
|
515 |
|
516 |
+
#: adrotate.php:110 adrotate.php:408
|
517 |
#, fuzzy
|
518 |
msgid "Manage Schedules"
|
519 |
msgstr "管理"
|
520 |
|
521 |
+
#: adrotate.php:111
|
522 |
#, fuzzy
|
523 |
msgid "Manage Media"
|
524 |
msgstr "画像リンク先URL:"
|
525 |
|
526 |
+
#: adrotate.php:112
|
527 |
msgid "Settings"
|
528 |
msgstr "設定"
|
529 |
|
530 |
+
#: adrotate.php:135
|
531 |
#, fuzzy
|
532 |
msgid "AdRotate Info"
|
533 |
msgstr "AdRotate Blog"
|
534 |
|
535 |
+
#: adrotate.php:156
|
536 |
#, fuzzy
|
537 |
msgid "AdRotate Professional"
|
538 |
msgstr "AdRotate Blog"
|
539 |
|
540 |
+
#: adrotate.php:199
|
541 |
msgid "Ad Management"
|
542 |
msgstr "広告管理"
|
543 |
|
544 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
545 |
msgid "Manage"
|
546 |
msgstr "管理"
|
547 |
|
548 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
549 |
msgid "Add New"
|
550 |
msgstr "新規追加"
|
551 |
|
552 |
+
#: adrotate.php:337
|
553 |
msgid "Group Management"
|
554 |
msgstr "グループの管理"
|
555 |
|
556 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
557 |
#: dashboard/publisher/groups-main.php:70
|
558 |
msgid "Report"
|
559 |
msgstr "レポート"
|
560 |
|
561 |
+
#: adrotate.php:399
|
562 |
#, fuzzy
|
563 |
msgid "Schedule Management available in AdRotate Pro"
|
564 |
msgstr "この機能は使いません。"
|
565 |
|
566 |
+
#: adrotate.php:409
|
567 |
#, fuzzy
|
568 |
msgid ""
|
569 |
"Schedule management and multiple schedules per advert is available in "
|
570 |
"AdRotate Pro."
|
571 |
msgstr "この機能は使いません。"
|
572 |
|
573 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
574 |
#: dashboard/publisher/adverts-main.php:114
|
575 |
#: dashboard/publisher/groups-edit.php:75
|
576 |
#: dashboard/publisher/groups-main.php:89
|
578 |
msgid "More information"
|
579 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
580 |
|
581 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
582 |
#: dashboard/publisher/adverts-error.php:19
|
583 |
#: dashboard/publisher/adverts-main.php:20
|
584 |
#: dashboard/publisher/groups-main.php:20
|
585 |
msgid "Bulk Actions"
|
586 |
msgstr "一括操作"
|
587 |
|
588 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
589 |
#: dashboard/publisher/adverts-error.php:29
|
590 |
#: dashboard/publisher/adverts-main.php:30
|
591 |
#: dashboard/publisher/groups-main.php:24
|
592 |
msgid "Go"
|
593 |
msgstr "実行"
|
594 |
|
595 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
596 |
#: dashboard/publisher/adverts-error.php:39
|
597 |
#: dashboard/publisher/adverts-main.php:39
|
598 |
#: dashboard/publisher/groups-edit.php:51
|
601 |
msgid "ID"
|
602 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
603 |
|
604 |
+
#: adrotate.php:427
|
605 |
msgid "Start"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: adrotate.php:427
|
609 |
msgid "End"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
613 |
#: dashboard/publisher/groups-main.php:34
|
614 |
msgid "Ads"
|
615 |
msgstr "広告"
|
616 |
|
617 |
+
#: adrotate.php:430
|
618 |
#, fuzzy
|
619 |
msgid "Max Impressions"
|
620 |
msgstr "表示数"
|
621 |
|
622 |
+
#: adrotate.php:431
|
623 |
#, fuzzy
|
624 |
msgid "Max Clicks"
|
625 |
msgstr "クリック"
|
626 |
|
627 |
+
#: adrotate.php:461
|
628 |
#, fuzzy
|
629 |
msgid "No schedules created yet!"
|
630 |
msgstr "まだブロックが作られていません。"
|
631 |
|
632 |
+
#: adrotate.php:466
|
633 |
#, fuzzy
|
634 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
635 |
msgstr ""
|
636 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
637 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
638 |
|
639 |
+
#: adrotate.php:466 adrotate.php:532
|
640 |
#, fuzzy
|
641 |
msgid "Upgrade today!"
|
642 |
msgstr "本日"
|
643 |
|
644 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
645 |
#: dashboard/publisher/groups-edit.php:387
|
646 |
#, fuzzy
|
647 |
msgid "Expires soon."
|
648 |
msgstr "これは出来る限り早く修正して下さい。"
|
649 |
|
650 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
651 |
#: dashboard/publisher/groups-edit.php:388
|
652 |
#, fuzzy
|
653 |
msgid "Has expired."
|
654 |
msgstr "個の広告が期限切れです。"
|
655 |
|
656 |
+
#: adrotate.php:494
|
657 |
#, fuzzy
|
658 |
msgid "Media Management available in AdRotate Pro"
|
659 |
msgstr "この機能は使いません。"
|
660 |
|
661 |
+
#: adrotate.php:496
|
662 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: adrotate.php:496
|
666 |
msgid ""
|
667 |
"This is useful if you use responsive adverts with multiple images or have "
|
668 |
"HTML5 adverts containing multiple files."
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: adrotate.php:496
|
672 |
#, fuzzy
|
673 |
msgid "Media uploading and management is available in AdRotate Pro."
|
674 |
msgstr "この機能は使いません。"
|
675 |
|
676 |
+
#: adrotate.php:498
|
677 |
msgid "Upload new file"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: adrotate.php:499
|
681 |
msgid "Accepted files:"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: adrotate.php:499
|
685 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: adrotate.php:499
|
689 |
msgid "Maximum size is 512Kb."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: adrotate.php:499
|
693 |
msgid "Important:"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: adrotate.php:499
|
697 |
msgid ""
|
698 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
699 |
"spaces with a - or _."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: adrotate.php:499
|
703 |
msgid ""
|
704 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
705 |
"file so it knows about the changed name. For example for the javascript file."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: adrotate.php:502
|
709 |
msgid ""
|
710 |
"For responsive adverts make sure the filename is in the following format; "
|
711 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
715 |
msgid ""
|
716 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
717 |
"filename instead of \".full\" for the various viewports."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
721 |
#: dashboard/publisher/groups-edit.php:320
|
722 |
msgid "Example:"
|
723 |
msgstr "例:"
|
724 |
|
725 |
+
#: adrotate.php:504
|
726 |
msgid ""
|
727 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
728 |
"for different viewports."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: adrotate.php:508
|
732 |
msgid "Upload file"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: adrotate.php:508
|
736 |
msgid "Click only once per file!"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: adrotate.php:511
|
740 |
msgid "Available files in"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
744 |
#: dashboard/publisher/groups-main.php:33
|
745 |
msgid "Name"
|
746 |
msgstr "名前"
|
747 |
|
748 |
+
#: adrotate.php:517
|
749 |
#, fuzzy
|
750 |
msgid "Actions"
|
751 |
msgstr "一括操作"
|
752 |
|
753 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
754 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
755 |
#: dashboard/publisher/adverts-disabled.php:22
|
756 |
#: dashboard/publisher/adverts-error.php:21
|
757 |
#: dashboard/publisher/adverts-main.php:22
|
758 |
msgid "Delete"
|
759 |
msgstr "削除"
|
760 |
|
761 |
+
#: adrotate.php:532
|
762 |
msgid ""
|
763 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: adrotate.php:532
|
767 |
#, fuzzy
|
768 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
769 |
msgstr ""
|
770 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
771 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
772 |
|
773 |
+
#: adrotate.php:561
|
774 |
msgid "AdRotate Settings"
|
775 |
msgstr "AdRotate 設定"
|
776 |
|
777 |
+
#: adrotate.php:632
|
778 |
msgid "Update Options"
|
779 |
msgstr "設定の更新"
|
780 |
|
792 |
msgstr ""
|
793 |
|
794 |
#: dashboard/adrotatepro.php:27
|
795 |
+
msgid "Mobile campaigns"
|
796 |
msgstr ""
|
797 |
|
798 |
#: dashboard/adrotatepro.php:30
|
799 |
msgid ""
|
800 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
801 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
802 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
803 |
+
"and with a few easy to use options they show up where you want them to!"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: dashboard/adrotatepro.php:34
|
807 |
+
msgid "Localize your ad campaigns with Geo Targeting"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: dashboard/adrotatepro.php:37
|
811 |
+
msgid ""
|
812 |
"Go nationwide or global with localized adverts for your various audiences. "
|
813 |
"Set up adverts for countries and cities and sell impressions per general "
|
814 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
815 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: dashboard/adrotatepro.php:41
|
819 |
msgid "Get Premium Support almost all year round"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: dashboard/adrotatepro.php:44
|
823 |
msgid ""
|
824 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
825 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
827 |
"forum. Get a solution (usually) within a day."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
831 |
#, fuzzy
|
832 |
msgid "AdRotate is brought to you by"
|
833 |
msgstr "サービス紹介"
|
834 |
|
835 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
836 |
msgid ""
|
837 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
838 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: dashboard/adrotatepro.php:65
|
842 |
msgid "Schedule all campaigns with ease"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: dashboard/adrotatepro.php:68
|
846 |
msgid ""
|
847 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
848 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
850 |
"much more easy. You can set one or many schedules for adverts."
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: dashboard/adrotatepro.php:72
|
854 |
+
msgid "Avoid adblockers"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: dashboard/adrotatepro.php:75
|
858 |
+
msgid ""
|
859 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
860 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
861 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
862 |
+
"adverts smartly so these features reach their full potential!"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: dashboard/adrotatepro.php:79
|
866 |
msgid "Stay up-to-date with notifications"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: dashboard/adrotatepro.php:82
|
870 |
msgid ""
|
871 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
872 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
875 |
"miss an expiration date again."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
879 |
#: dashboard/info.php:93 dashboard/info.php:105
|
880 |
#, fuzzy
|
881 |
msgid "Buy AdRotate Professional"
|
882 |
msgstr "AdRotate Blog"
|
883 |
|
884 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
885 |
msgid "Single License"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
889 |
msgid "For one WordPress installation."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
893 |
#: dashboard/info.php:98 dashboard/info.php:110
|
894 |
msgid "Duo License"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
898 |
msgid "For two WordPress installations."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
902 |
#: dashboard/info.php:99 dashboard/info.php:111
|
903 |
msgid "Multi License"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
907 |
msgid " For up to five WordPress installations."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
911 |
#: dashboard/info.php:100 dashboard/info.php:112
|
912 |
#, fuzzy
|
913 |
msgid "Developer License"
|
914 |
msgstr "開発者向けデバッグ"
|
915 |
|
916 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
917 |
msgid "Unlimited WordPress installations and/or networks."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
921 |
#: dashboard/info.php:101 dashboard/info.php:114
|
922 |
msgid "Compare licenses"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
926 |
msgid "Not sure which license is for you? Compare them..."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
930 |
#, fuzzy
|
931 |
msgid "All Licenses"
|
932 |
msgstr "すべての広告の再評価"
|
933 |
|
934 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
935 |
msgid "Lifetime License"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
939 |
msgid "Single installation."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
943 |
msgid "Up to 2 installations."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
947 |
msgid "Up to 10 installations."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
951 |
msgid "Up to 25 installations or multisite networks."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
955 |
msgid ""
|
956 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
960 |
msgid "Not sure which license is for you?"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
964 |
msgid "Compare Licenses"
|
965 |
msgstr ""
|
966 |
|
1323 |
|
1324 |
#: dashboard/publisher/adverts-edit.php:192
|
1325 |
#: dashboard/publisher/adverts-edit.php:292
|
1326 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1327 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1328 |
#, fuzzy
|
1329 |
msgid "Save Advert"
|
1330 |
msgstr "保存"
|
1331 |
|
1332 |
#: dashboard/publisher/adverts-edit.php:193
|
1333 |
#: dashboard/publisher/adverts-edit.php:293
|
1334 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1335 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1336 |
#: dashboard/publisher/groups-edit.php:154
|
1337 |
#: dashboard/publisher/groups-edit.php:301
|
1338 |
#: dashboard/publisher/groups-edit.php:393
|
1340 |
msgstr "キャンセル"
|
1341 |
|
1342 |
#: dashboard/publisher/adverts-edit.php:196
|
1343 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1344 |
#: dashboard/publisher/groups-edit.php:136
|
1345 |
#: dashboard/publisher/groups-edit.php:283
|
1346 |
msgid "Usage"
|
1347 |
msgstr "利用タグ"
|
1348 |
|
1349 |
#: dashboard/publisher/adverts-edit.php:200
|
1350 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1351 |
#: dashboard/publisher/groups-edit.php:140
|
1352 |
#: dashboard/publisher/groups-edit.php:287
|
1353 |
msgid "Widget"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
#: dashboard/publisher/adverts-edit.php:201
|
1357 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1358 |
msgid ""
|
1359 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1360 |
"and enter ID"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
#: dashboard/publisher/adverts-edit.php:204
|
1364 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1365 |
#: dashboard/publisher/groups-edit.php:144
|
1366 |
#: dashboard/publisher/groups-edit.php:291
|
1367 |
msgid "In a post or page"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
#: dashboard/publisher/adverts-edit.php:206
|
1371 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1372 |
#: dashboard/publisher/groups-edit.php:146
|
1373 |
#: dashboard/publisher/groups-edit.php:293
|
1374 |
msgid "Directly in a theme"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
#: dashboard/publisher/adverts-edit.php:289
|
1428 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1429 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1430 |
#: dashboard/publisher/groups-edit.php:200
|
1431 |
#, fuzzy
|
1432 |
msgid "Upgrade today"
|
1444 |
msgstr "タイトル(オプション):"
|
1445 |
|
1446 |
#: dashboard/publisher/adverts-edit.php:301
|
1447 |
+
msgid "Mobile"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1451 |
+
msgid "Show on;"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1455 |
+
msgid "Computers"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1459 |
+
msgid "Smartphones"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
#: dashboard/publisher/adverts-edit.php:303
|
1463 |
+
msgid "Tablets."
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1467 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1471 |
+
msgid "Responsive"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1475 |
#, fuzzy
|
1476 |
msgid "Enable responsive support for this advert."
|
1477 |
msgstr "広告の追加・編集管理"
|
1478 |
|
1479 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1480 |
msgid ""
|
1481 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1482 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1486 |
+
#: dashboard/publisher/adverts-report.php:58
|
1487 |
+
#: dashboard/publisher/groups-report.php:64
|
1488 |
+
msgid "Note:"
|
1489 |
+
msgstr "注意:"
|
1490 |
+
|
1491 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1492 |
+
msgid ""
|
1493 |
+
"This feature will not be developed any further. Consider switching to the "
|
1494 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1498 |
#: dashboard/publisher/groups-edit.php:194
|
1499 |
msgid "Sortorder"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1503 |
#: dashboard/publisher/groups-edit.php:196
|
1504 |
msgid "For administrative purposes set a sortorder."
|
1505 |
msgstr "管理目的で順序を設定できます。"
|
1506 |
|
1507 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1508 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1509 |
msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
|
1510 |
|
1511 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1512 |
msgid ""
|
1513 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1514 |
+
"on!"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1518 |
msgid "Geo Targeting in AdRotate Pro"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1522 |
msgid ""
|
1523 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1527 |
msgid "Cities/States"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1531 |
msgid ""
|
1532 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1533 |
"states ISO codes are supported)"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1537 |
msgid ""
|
1538 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1539 |
"correctly!"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1543 |
msgid "Countries"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1547 |
#, fuzzy
|
1548 |
msgid "Select the countries you want the adverts to show in."
|
1549 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
1550 |
|
1551 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1552 |
msgid "Cities take priority and will be filtered first."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1556 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1560 |
msgid "Select Groups"
|
1561 |
msgstr "グループを選択"
|
1562 |
|
1563 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1564 |
#, fuzzy
|
1565 |
msgid "ID - Name"
|
1566 |
msgstr "名前"
|
1567 |
|
1568 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1569 |
#: dashboard/publisher/groups-main.php:60
|
1570 |
#: dashboard/settings/geotargeting.php:39
|
1571 |
#, fuzzy
|
1572 |
msgid "Default"
|
1573 |
msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
|
1574 |
|
1575 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1576 |
#: dashboard/publisher/groups-main.php:61
|
1577 |
msgid "Dynamic"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1581 |
#: dashboard/publisher/groups-main.php:61
|
1582 |
#, fuzzy
|
1583 |
msgid "second rotation"
|
1584 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
1585 |
|
1586 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1587 |
#: dashboard/publisher/groups-main.php:62
|
1588 |
#, fuzzy
|
1589 |
msgid "Block"
|
1590 |
msgstr "ブロック管理"
|
1591 |
|
1592 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1593 |
#: dashboard/publisher/groups-main.php:62
|
1594 |
#, fuzzy
|
1595 |
msgid "grid"
|
1597 |
"広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
|
1598 |
"列です。)"
|
1599 |
|
1600 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1601 |
#: dashboard/publisher/groups-edit.php:202
|
1602 |
#: dashboard/publisher/groups-main.php:63
|
1603 |
#, fuzzy
|
1604 |
msgid "Post Injection"
|
1605 |
msgstr "投稿及びページ内掲載する場合:"
|
1606 |
|
1607 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1608 |
msgid "Geolocation"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1612 |
#: dashboard/publisher/groups-edit.php:61
|
1613 |
#: dashboard/publisher/groups-main.php:70
|
1614 |
#, fuzzy
|
1706 |
msgid "Monthly overview of clicks and impressions"
|
1707 |
msgstr "クリック"
|
1708 |
|
|
|
|
|
|
|
|
|
|
|
1709 |
#: dashboard/publisher/adverts-report.php:58
|
1710 |
#: dashboard/publisher/groups-report.php:64
|
1711 |
msgid ""
|
2074 |
msgid "This action can not be undone!"
|
2075 |
msgstr "この処理は復旧できません。注意して下さい。"
|
2076 |
|
2077 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
2078 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2079 |
msgid "OK to continue, CANCEL to stop."
|
2080 |
msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
|
2081 |
|
2161 |
msgstr ""
|
2162 |
|
2163 |
#: dashboard/settings/general.php:20
|
2164 |
+
msgid "Dynamic mode for Mobile"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: dashboard/settings/general.php:21
|
2168 |
msgid ""
|
2169 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2170 |
+
"jumping content."
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#: dashboard/settings/general.php:24
|
2174 |
+
msgid "Load jQuery"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: dashboard/settings/general.php:25
|
2178 |
+
msgid ""
|
2179 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2180 |
"groups, statistics and some other features."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: dashboard/settings/general.php:28
|
2184 |
msgid "Load scripts in footer?"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: dashboard/settings/general.php:29
|
2188 |
msgid ""
|
2189 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2190 |
"site."
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: dashboard/settings/general.php:32
|
2194 |
msgid "Adblock disguise"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: dashboard/settings/general.php:34
|
2198 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: dashboard/settings/general.php:35
|
2202 |
msgid ""
|
2203 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: dashboard/settings/general.php:35
|
2207 |
msgid ""
|
2208 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2209 |
"instead of the AdRotate widget."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: dashboard/settings/general.php:35
|
2213 |
msgid ""
|
2214 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2215 |
"feature will have little effect!"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: dashboard/settings/general.php:40
|
2219 |
#, fuzzy
|
2220 |
msgid "Banner Folder"
|
2221 |
msgstr "画像バナー"
|
2222 |
|
2223 |
+
#: dashboard/settings/general.php:41
|
2224 |
#, fuzzy
|
2225 |
msgid "Set a location where your banner images will be stored."
|
2226 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
2227 |
|
2228 |
+
#: dashboard/settings/general.php:44
|
2229 |
#, fuzzy
|
2230 |
msgid "Location"
|
2231 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
2232 |
|
2233 |
+
#: dashboard/settings/general.php:46
|
2234 |
msgid "(Default: wp-content/banners/)."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: dashboard/settings/general.php:47
|
2238 |
#, fuzzy
|
2239 |
msgid ""
|
2240 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2243 |
"AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
|
2244 |
"を再度保存してください!"
|
2245 |
|
2246 |
+
#: dashboard/settings/general.php:48
|
2247 |
#, fuzzy
|
2248 |
msgid ""
|
2249 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2250 |
"will show errors when the folder is missing."
|
2251 |
msgstr "画像バナー"
|
2252 |
|
2253 |
+
#: dashboard/settings/general.php:53
|
2254 |
#, fuzzy
|
2255 |
msgid "Bot filter"
|
2256 |
msgstr "ユーザーエージェントフィルター"
|
2257 |
|
2258 |
+
#: dashboard/settings/general.php:54
|
2259 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: dashboard/settings/general.php:57
|
2263 |
msgid "User-Agent Filter"
|
2264 |
msgstr "ユーザーエージェントフィルター"
|
2265 |
|
2266 |
+
#: dashboard/settings/general.php:60
|
2267 |
msgid ""
|
2268 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: dashboard/settings/general.php:61
|
2272 |
msgid ""
|
2273 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2274 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: dashboard/settings/general.php:62
|
2278 |
msgid ""
|
2279 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2280 |
"characters are stripped out."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: dashboard/settings/general.php:63
|
2284 |
msgid ""
|
2285 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2286 |
"well."
|
2288 |
"さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
|
2289 |
"れます。"
|
2290 |
|
2291 |
+
#: dashboard/settings/general.php:63
|
2292 |
msgid "Learn more about"
|
2293 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
2294 |
|
2295 |
+
#: dashboard/settings/general.php:63
|
2296 |
msgid "user-agents"
|
2297 |
msgstr "ユーザーエージェント[英語]"
|
2298 |
|
language/adrotate-pl_PL.mo
CHANGED
Binary file
|
language/adrotate-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -15,119 +15,119 @@ msgstr ""
|
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Generator: Poedit 1.8.
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
-
#: adrotate-functions.php:
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
-
#: adrotate-functions.php:
|
32 |
msgid "Ad saved"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: adrotate-functions.php:
|
36 |
msgid "Group saved"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: adrotate-functions.php:
|
40 |
msgid "Ad(s) deleted"
|
41 |
msgstr "Reklama usunięta"
|
42 |
|
43 |
-
#: adrotate-functions.php:
|
44 |
msgid "Group deleted"
|
45 |
msgstr "Grupa usunięta"
|
46 |
|
47 |
-
#: adrotate-functions.php:
|
48 |
msgid "Ad(s) statistics reset"
|
49 |
msgstr "Resetuj statystyki reklamy"
|
50 |
|
51 |
-
#: adrotate-functions.php:
|
52 |
msgid "Ad(s) renewed"
|
53 |
msgstr "Odnów reklamę"
|
54 |
|
55 |
-
#: adrotate-functions.php:
|
56 |
msgid "Ad(s) deactivated"
|
57 |
msgstr "Reklama wyłączona"
|
58 |
|
59 |
-
#: adrotate-functions.php:
|
60 |
msgid "Ad(s) activated"
|
61 |
msgstr "Reklama włączona"
|
62 |
|
63 |
-
#: adrotate-functions.php:
|
64 |
msgid "Group including it's Ads deleted"
|
65 |
msgstr "Grupa wraz z reklamami usunięta"
|
66 |
|
67 |
-
#: adrotate-functions.php:
|
68 |
#, fuzzy
|
69 |
msgid "Export created"
|
70 |
msgstr "Reklama utworzona"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Settings saved"
|
74 |
msgstr "Ustawienia zapisane"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Database optimized"
|
78 |
msgstr "Baza danych zoptymalizowana"
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid "Database repaired"
|
82 |
msgstr "Baza danych naprawiona"
|
83 |
|
84 |
-
#: adrotate-functions.php:
|
85 |
msgid "Ads evaluated and statuses have been corrected where required"
|
86 |
msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
|
87 |
|
88 |
-
#: adrotate-functions.php:
|
89 |
msgid "Empty database records removed"
|
90 |
msgstr "Usunięto puste rekordy bazy danych"
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
msgid "Action prohibited"
|
94 |
msgstr "Czynność zabroniona."
|
95 |
|
96 |
-
#: adrotate-functions.php:
|
97 |
msgid ""
|
98 |
"The ad was saved but has an issue which might prevent it from working "
|
99 |
"properly. Review the colored ad."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: adrotate-functions.php:
|
103 |
msgid "No data found in selected time period"
|
104 |
msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Database can only be optimized or cleaned once every hour"
|
108 |
msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
111 |
msgid "Form can not be (partially) empty!"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: adrotate-functions.php:
|
115 |
msgid "No ads found."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: adrotate-functions.php:
|
119 |
msgid "Unexpected error"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: adrotate-manage-publisher.php:
|
123 |
msgid "AdRotate Advertiser"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: adrotate-output.php:
|
127 |
msgid "Oh no! Something went wrong!"
|
128 |
msgstr "Uwaga ! Coś poszło nie tak !"
|
129 |
|
130 |
-
#: adrotate-output.php:
|
131 |
msgid ""
|
132 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
133 |
"Verify if the url used is valid or log in via your browser."
|
@@ -135,7 +135,7 @@ msgstr ""
|
|
135 |
"Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
|
136 |
"Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
|
137 |
|
138 |
-
#: adrotate-output.php:
|
139 |
msgid ""
|
140 |
"If you have received the url you want to visit via email, you are being "
|
141 |
"tricked!"
|
@@ -143,11 +143,11 @@ msgstr ""
|
|
143 |
"Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
|
144 |
"zostałeś oszukany. "
|
145 |
|
146 |
-
#: adrotate-output.php:
|
147 |
msgid "Contact support if the issue persists:"
|
148 |
msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
|
149 |
|
150 |
-
#: adrotate-output.php:
|
151 |
msgid ""
|
152 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
153 |
"restrictions or does not exist!"
|
@@ -155,7 +155,7 @@ msgstr ""
|
|
155 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
156 |
"harmonogramie lub geolokalizacji lub może nie istnieć."
|
157 |
|
158 |
-
#: adrotate-output.php:
|
159 |
msgid ""
|
160 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
161 |
"restrictions!"
|
@@ -163,7 +163,7 @@ msgstr ""
|
|
163 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
164 |
"harmonogramie lub geolokalizacji."
|
165 |
|
166 |
-
#: adrotate-output.php:
|
167 |
msgid ""
|
168 |
"Either there are no banners, they are disabled or none qualified for this "
|
169 |
"location!"
|
@@ -171,19 +171,19 @@ msgstr ""
|
|
171 |
"Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
|
172 |
"lokalizacji!"
|
173 |
|
174 |
-
#: adrotate-output.php:
|
175 |
msgid "Error, no Ad ID set! Check your syntax!"
|
176 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
177 |
|
178 |
-
#: adrotate-output.php:
|
179 |
msgid "Error, no group ID set! Check your syntax!"
|
180 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
181 |
|
182 |
-
#: adrotate-output.php:
|
183 |
msgid "Error, group does not exist! Check your syntax!"
|
184 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
|
185 |
|
186 |
-
#: adrotate-output.php:
|
187 |
msgid ""
|
188 |
"There was an error locating the database tables for AdRotate. Please "
|
189 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -191,60 +191,60 @@ msgstr ""
|
|
191 |
"Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
|
192 |
"AdRote na panelu wtyczek."
|
193 |
|
194 |
-
#: adrotate-output.php:
|
195 |
msgid "If this does not solve the issue please seek support at"
|
196 |
msgstr ""
|
197 |
"Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "An unknown error occured."
|
201 |
msgstr "Pojawił się nieznany błąd."
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "active ad(s) expired."
|
205 |
msgstr "Aktywne reklamy wygasły."
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "Take action now"
|
209 |
msgstr "Uruchom natymiastowo."
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "active ad(s) are about to expire."
|
213 |
msgstr "Aktywne reklamy niedługo wygasną."
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "Check it out"
|
217 |
msgstr "Sprawdz to"
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "active ad(s) with configuration errors."
|
221 |
msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "Solve this"
|
225 |
msgstr "Napraw to"
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "ad(s) expired."
|
229 |
msgstr "Reklama wygasła."
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "ad(s) are about to expire."
|
233 |
msgstr "Reklama które wygasną."
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "ad(s) with configuration errors."
|
237 |
msgstr "Reklamy z błędami konfuguracyjnymi."
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
msgid "Fix this as soon as possible"
|
241 |
msgstr "Napraw to tak szybko jak to możliwe"
|
242 |
|
243 |
-
#: adrotate-output.php:
|
244 |
-
#: dashboard/adrotatepro.php:
|
245 |
-
#: dashboard/adrotatepro.php:
|
246 |
-
#: dashboard/adrotatepro.php:
|
247 |
-
#: dashboard/adrotatepro.php:
|
248 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
249 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
250 |
#: dashboard/settings/geotargeting.php:26
|
@@ -252,115 +252,115 @@ msgstr "Napraw to tak szybko jak to możliwe"
|
|
252 |
msgid "Buy now"
|
253 |
msgstr "Kup"
|
254 |
|
255 |
-
#: adrotate-output.php:
|
256 |
msgid ""
|
257 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
258 |
"to the <strong>PRO</strong> version"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: adrotate-output.php:
|
262 |
#, php-format
|
263 |
msgid ""
|
264 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid "Thank you for your purchase!"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid ""
|
273 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
274 |
"this menu. Check out the"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "manuals"
|
279 |
msgstr "instrukcje"
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "and"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "forums"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
#, fuzzy
|
291 |
msgid "Useful Links"
|
292 |
msgstr "Użyteczne odnośniki."
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
msgid "Useful links to learn more about AdRotate"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
#, fuzzy
|
300 |
msgid "AdRotate Page"
|
301 |
msgstr "AdRotate Pro"
|
302 |
|
303 |
-
#: adrotate-output.php:
|
304 |
#, fuzzy
|
305 |
msgid "Getting Started With AdRotate"
|
306 |
msgstr "Więcej ustawień z AdRotate Pro"
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
#, fuzzy
|
310 |
msgid "AdRotate manuals"
|
311 |
msgstr "Informacja AdRotate "
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
#, fuzzy
|
315 |
msgid "AdRotate Support Forum"
|
316 |
msgstr "Sklep AdRotate"
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
#, fuzzy
|
320 |
msgid "Help AdRotate Grow"
|
321 |
msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
322 |
|
323 |
-
#: adrotate-output.php:
|
324 |
msgid "Brought to you by"
|
325 |
msgstr "Dostarczone przez "
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid ""
|
329 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
330 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "If you find AdRotate useful please leave your honest"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "rating"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
#, fuzzy
|
343 |
msgid "review"
|
344 |
msgstr ""
|
345 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
346 |
|
347 |
-
#: adrotate-output.php:
|
348 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: adrotate-output.php:
|
352 |
msgid "Available in AdRotate Pro"
|
353 |
msgstr "Dostępne w wersji AdRotate Pro"
|
354 |
|
355 |
-
#: adrotate-output.php:
|
356 |
msgid "More information..."
|
357 |
msgstr "Więcej informacji"
|
358 |
|
359 |
-
#: adrotate-output.php:
|
360 |
msgid "This feature is available in AdRotate Pro"
|
361 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
362 |
|
363 |
-
#: adrotate-output.php:
|
364 |
msgid "Learn more"
|
365 |
msgstr "Dowiedź się więcej"
|
366 |
|
@@ -480,77 +480,77 @@ msgstr "ID:"
|
|
480 |
msgid "Fill in the ID of the type you want to display!"
|
481 |
msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "General Info"
|
485 |
msgstr "Informacje główne"
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "AdRotate Pro"
|
489 |
msgstr "AdRotate Pro"
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid "Manage Ads"
|
493 |
msgstr "Zarządzaj reklamami"
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
msgid "Manage Groups"
|
497 |
msgstr "Zarządzaj grupami"
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
#, fuzzy
|
501 |
msgid "Manage Schedules"
|
502 |
msgstr "Zarządzaj"
|
503 |
|
504 |
-
#: adrotate.php:
|
505 |
#, fuzzy
|
506 |
msgid "Manage Media"
|
507 |
msgstr "Media:"
|
508 |
|
509 |
-
#: adrotate.php:
|
510 |
msgid "Settings"
|
511 |
msgstr "Ustawienia"
|
512 |
|
513 |
-
#: adrotate.php:
|
514 |
msgid "AdRotate Info"
|
515 |
msgstr "Informacja AdRotate "
|
516 |
|
517 |
-
#: adrotate.php:
|
518 |
msgid "AdRotate Professional"
|
519 |
msgstr "AdRotate Professional"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
msgid "Ad Management"
|
523 |
msgstr "Zarządzanie Reklamami"
|
524 |
|
525 |
-
#: adrotate.php:
|
526 |
msgid "Manage"
|
527 |
msgstr "Zarządzaj"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
msgid "Add New"
|
531 |
msgstr "Dodaj nową"
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
msgid "Group Management"
|
535 |
msgstr "Zarządzanie grupą reklam"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
#: dashboard/publisher/groups-main.php:70
|
539 |
msgid "Report"
|
540 |
msgstr "Raport"
|
541 |
|
542 |
-
#: adrotate.php:
|
543 |
#, fuzzy
|
544 |
msgid "Schedule Management available in AdRotate Pro"
|
545 |
msgstr "Dostępne w wersji AdRotate Pro"
|
546 |
|
547 |
-
#: adrotate.php:
|
548 |
msgid ""
|
549 |
"Schedule management and multiple schedules per advert is available in "
|
550 |
"AdRotate Pro."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
#: dashboard/publisher/adverts-main.php:114
|
555 |
#: dashboard/publisher/groups-edit.php:75
|
556 |
#: dashboard/publisher/groups-main.php:89
|
@@ -558,21 +558,21 @@ msgstr ""
|
|
558 |
msgid "More information"
|
559 |
msgstr "Więcej informacji"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
#: dashboard/publisher/adverts-error.php:19
|
563 |
#: dashboard/publisher/adverts-main.php:20
|
564 |
#: dashboard/publisher/groups-main.php:20
|
565 |
msgid "Bulk Actions"
|
566 |
msgstr "Działania masowe"
|
567 |
|
568 |
-
#: adrotate.php:
|
569 |
#: dashboard/publisher/adverts-error.php:29
|
570 |
#: dashboard/publisher/adverts-main.php:30
|
571 |
#: dashboard/publisher/groups-main.php:24
|
572 |
msgid "Go"
|
573 |
msgstr "Idź"
|
574 |
|
575 |
-
#: adrotate.php:
|
576 |
#: dashboard/publisher/adverts-error.php:39
|
577 |
#: dashboard/publisher/adverts-main.php:39
|
578 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -580,107 +580,107 @@ msgstr "Idź"
|
|
580 |
msgid "ID"
|
581 |
msgstr "ID"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#, fuzzy
|
585 |
msgid "Start"
|
586 |
msgstr "Start / Koniec"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
#, fuzzy
|
590 |
msgid "End"
|
591 |
msgstr "Start / Koniec"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
#: dashboard/publisher/groups-main.php:34
|
595 |
msgid "Ads"
|
596 |
msgstr "Reklamy"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
msgid "Max Impressions"
|
600 |
msgstr "Maksymalna liczba wyświetleń"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
msgid "Max Clicks"
|
604 |
msgstr "Maksymalna liczna kliknięć"
|
605 |
|
606 |
-
#: adrotate.php:
|
607 |
#, fuzzy
|
608 |
msgid "No schedules created yet!"
|
609 |
msgstr "Nie utworzono jeszcze żadnych reklam!"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
#, fuzzy
|
613 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
614 |
msgstr "Więcej ustawień z AdRotate Pro"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#, fuzzy
|
618 |
msgid "Upgrade today!"
|
619 |
msgstr "Dziś"
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#: dashboard/publisher/groups-edit.php:387
|
623 |
msgid "Expires soon."
|
624 |
msgstr "Wygasa wkrótce."
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#: dashboard/publisher/groups-edit.php:388
|
628 |
msgid "Has expired."
|
629 |
msgstr "Wygasła."
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
#, fuzzy
|
633 |
msgid "Media Management available in AdRotate Pro"
|
634 |
msgstr "Dostępne w wersji AdRotate Pro"
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: adrotate.php:
|
641 |
msgid ""
|
642 |
"This is useful if you use responsive adverts with multiple images or have "
|
643 |
"HTML5 adverts containing multiple files."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: adrotate.php:
|
647 |
#, fuzzy
|
648 |
msgid "Media uploading and management is available in AdRotate Pro."
|
649 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Upload new file"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid "Accepted files:"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "Maximum size is 512Kb."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "Important:"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid ""
|
673 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
674 |
"spaces with a - or _."
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: adrotate.php:
|
678 |
msgid ""
|
679 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
680 |
"file so it knows about the changed name. For example for the javascript file."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
#, fuzzy
|
685 |
msgid ""
|
686 |
"For responsive adverts make sure the filename is in the following format; "
|
@@ -690,7 +690,7 @@ msgstr ""
|
|
690 |
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
691 |
"pełnego wachlarza rozmiarów.'"
|
692 |
|
693 |
-
#: adrotate.php:
|
694 |
msgid ""
|
695 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
696 |
"filename instead of \".full\" for the various viewports."
|
@@ -698,13 +698,12 @@ msgstr ""
|
|
698 |
"Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
|
699 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
700 |
|
701 |
-
#: adrotate.php:
|
702 |
-
#: dashboard/publisher/groups-edit.php:312
|
703 |
#: dashboard/publisher/groups-edit.php:320
|
704 |
msgid "Example:"
|
705 |
msgstr "Przykład:"
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
#, fuzzy
|
709 |
msgid ""
|
710 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -713,51 +712,51 @@ msgstr ""
|
|
713 |
"image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
|
714 |
"różnych widokach. Wymaga jQuery."
|
715 |
|
716 |
-
#: adrotate.php:
|
717 |
msgid "Upload file"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
msgid "Click only once per file!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: adrotate.php:
|
725 |
msgid "Available files in"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: adrotate.php:
|
729 |
#: dashboard/publisher/groups-main.php:33
|
730 |
msgid "Name"
|
731 |
msgstr "Nazwa"
|
732 |
|
733 |
-
#: adrotate.php:
|
734 |
#, fuzzy
|
735 |
msgid "Actions"
|
736 |
msgstr "Działania masowe"
|
737 |
|
738 |
-
#: adrotate.php:
|
739 |
-
#: adrotate.php:
|
740 |
#: dashboard/publisher/adverts-disabled.php:22
|
741 |
#: dashboard/publisher/adverts-error.php:21
|
742 |
#: dashboard/publisher/adverts-main.php:22
|
743 |
msgid "Delete"
|
744 |
msgstr "Usuń"
|
745 |
|
746 |
-
#: adrotate.php:
|
747 |
msgid ""
|
748 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: adrotate.php:
|
752 |
#, fuzzy
|
753 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
754 |
msgstr "Więcej ustawień z AdRotate Pro"
|
755 |
|
756 |
-
#: adrotate.php:
|
757 |
msgid "AdRotate Settings"
|
758 |
msgstr "Ustawienia AdRotate"
|
759 |
|
760 |
-
#: adrotate.php:
|
761 |
msgid "Update Options"
|
762 |
msgstr "Zapisz opcje"
|
763 |
|
@@ -779,10 +778,22 @@ msgstr ""
|
|
779 |
"zobaczyć statystyki swoich reklam."
|
780 |
|
781 |
#: dashboard/adrotatepro.php:27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
782 |
msgid "Localize your ad campaigns with Geo Targeting"
|
783 |
msgstr "Zlokalizuje swoje kampanie reklamowe używajac geolokalizacji"
|
784 |
|
785 |
-
#: dashboard/adrotatepro.php:
|
786 |
msgid ""
|
787 |
"Go nationwide or global with localized adverts for your various audiences. "
|
788 |
"Set up adverts for countries and cities and sell impressions per general "
|
@@ -790,11 +801,11 @@ msgid ""
|
|
790 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: dashboard/adrotatepro.php:
|
794 |
msgid "Get Premium Support almost all year round"
|
795 |
msgstr "Zakup Wsparcie premium na cały rok."
|
796 |
|
797 |
-
#: dashboard/adrotatepro.php:
|
798 |
msgid ""
|
799 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
800 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -802,21 +813,21 @@ msgid ""
|
|
802 |
"forum. Get a solution (usually) within a day."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: dashboard/adrotatepro.php:
|
806 |
msgid "AdRotate is brought to you by"
|
807 |
msgstr "Możesz koszystać z AdRotate dzięki"
|
808 |
|
809 |
-
#: dashboard/adrotatepro.php:
|
810 |
msgid ""
|
811 |
-
"Premium plugins for WordPress and WooCommerce
|
812 |
-
"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: dashboard/adrotatepro.php:
|
816 |
msgid "Schedule all campaigns with ease"
|
817 |
msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:
|
820 |
msgid ""
|
821 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
822 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -824,11 +835,23 @@ msgid ""
|
|
824 |
"much more easy. You can set one or many schedules for adverts."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
828 |
msgid "Stay up-to-date with notifications"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: dashboard/adrotatepro.php:
|
832 |
msgid ""
|
833 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
834 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -837,89 +860,89 @@ msgid ""
|
|
837 |
"miss an expiration date again."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: dashboard/adrotatepro.php:
|
841 |
#: dashboard/info.php:93 dashboard/info.php:105
|
842 |
msgid "Buy AdRotate Professional"
|
843 |
msgstr "Kup AdRotate Pro"
|
844 |
|
845 |
-
#: dashboard/adrotatepro.php:
|
846 |
msgid "Single License"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: dashboard/adrotatepro.php:
|
850 |
msgid "For one WordPress installation."
|
851 |
msgstr "dla jednej instalcji Wordpressa"
|
852 |
|
853 |
-
#: dashboard/adrotatepro.php:
|
854 |
#: dashboard/info.php:98 dashboard/info.php:110
|
855 |
msgid "Duo License"
|
856 |
msgstr "Podwójna licencja"
|
857 |
|
858 |
-
#: dashboard/adrotatepro.php:
|
859 |
msgid "For two WordPress installations."
|
860 |
msgstr "dla dwóch instalcji Wordpressa"
|
861 |
|
862 |
-
#: dashboard/adrotatepro.php:
|
863 |
#: dashboard/info.php:99 dashboard/info.php:111
|
864 |
msgid "Multi License"
|
865 |
msgstr "Multi licencja"
|
866 |
|
867 |
-
#: dashboard/adrotatepro.php:
|
868 |
msgid " For up to five WordPress installations."
|
869 |
msgstr "dla 5 instalacji Wordpessa."
|
870 |
|
871 |
-
#: dashboard/adrotatepro.php:
|
872 |
#: dashboard/info.php:100 dashboard/info.php:112
|
873 |
msgid "Developer License"
|
874 |
msgstr "Licencja Programisty"
|
875 |
|
876 |
-
#: dashboard/adrotatepro.php:
|
877 |
msgid "Unlimited WordPress installations and/or networks."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
#: dashboard/info.php:101 dashboard/info.php:114
|
882 |
msgid "Compare licenses"
|
883 |
msgstr "Porównaj licencje."
|
884 |
|
885 |
-
#: dashboard/adrotatepro.php:
|
886 |
msgid "Not sure which license is for you? Compare them..."
|
887 |
msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
|
888 |
|
889 |
-
#: dashboard/adrotatepro.php:
|
890 |
msgid "All Licenses"
|
891 |
msgstr "Wszystkie licencje"
|
892 |
|
893 |
-
#: dashboard/adrotatepro.php:
|
894 |
msgid "Lifetime License"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: dashboard/adrotatepro.php:
|
898 |
msgid "Single installation."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: dashboard/adrotatepro.php:
|
902 |
msgid "Up to 2 installations."
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: dashboard/adrotatepro.php:
|
906 |
msgid "Up to 10 installations."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: dashboard/adrotatepro.php:
|
910 |
msgid "Up to 25 installations or multisite networks."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: dashboard/adrotatepro.php:
|
914 |
msgid ""
|
915 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: dashboard/adrotatepro.php:
|
919 |
msgid "Not sure which license is for you?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: dashboard/adrotatepro.php:
|
923 |
msgid "Compare Licenses"
|
924 |
msgstr ""
|
925 |
|
@@ -1258,15 +1281,15 @@ msgstr "Więcej ustawień z AdRotate Pro"
|
|
1258 |
|
1259 |
#: dashboard/publisher/adverts-edit.php:192
|
1260 |
#: dashboard/publisher/adverts-edit.php:292
|
1261 |
-
#: dashboard/publisher/adverts-edit.php:
|
1262 |
-
#: dashboard/publisher/adverts-edit.php:
|
1263 |
msgid "Save Advert"
|
1264 |
msgstr "Zapisz reklamę"
|
1265 |
|
1266 |
#: dashboard/publisher/adverts-edit.php:193
|
1267 |
#: dashboard/publisher/adverts-edit.php:293
|
1268 |
-
#: dashboard/publisher/adverts-edit.php:
|
1269 |
-
#: dashboard/publisher/adverts-edit.php:
|
1270 |
#: dashboard/publisher/groups-edit.php:154
|
1271 |
#: dashboard/publisher/groups-edit.php:301
|
1272 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1274,35 +1297,35 @@ msgid "Cancel"
|
|
1274 |
msgstr "Anuluj"
|
1275 |
|
1276 |
#: dashboard/publisher/adverts-edit.php:196
|
1277 |
-
#: dashboard/publisher/adverts-edit.php:
|
1278 |
#: dashboard/publisher/groups-edit.php:136
|
1279 |
#: dashboard/publisher/groups-edit.php:283
|
1280 |
msgid "Usage"
|
1281 |
msgstr "Użycie"
|
1282 |
|
1283 |
#: dashboard/publisher/adverts-edit.php:200
|
1284 |
-
#: dashboard/publisher/adverts-edit.php:
|
1285 |
#: dashboard/publisher/groups-edit.php:140
|
1286 |
#: dashboard/publisher/groups-edit.php:287
|
1287 |
msgid "Widget"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: dashboard/publisher/adverts-edit.php:201
|
1291 |
-
#: dashboard/publisher/adverts-edit.php:
|
1292 |
msgid ""
|
1293 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1294 |
"and enter ID"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: dashboard/publisher/adverts-edit.php:204
|
1298 |
-
#: dashboard/publisher/adverts-edit.php:
|
1299 |
#: dashboard/publisher/groups-edit.php:144
|
1300 |
#: dashboard/publisher/groups-edit.php:291
|
1301 |
msgid "In a post or page"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: dashboard/publisher/adverts-edit.php:206
|
1305 |
-
#: dashboard/publisher/adverts-edit.php:
|
1306 |
#: dashboard/publisher/groups-edit.php:146
|
1307 |
#: dashboard/publisher/groups-edit.php:293
|
1308 |
msgid "Directly in a theme"
|
@@ -1359,8 +1382,8 @@ msgid ""
|
|
1359 |
msgstr ""
|
1360 |
|
1361 |
#: dashboard/publisher/adverts-edit.php:289
|
1362 |
-
#: dashboard/publisher/adverts-edit.php:
|
1363 |
-
#: dashboard/publisher/adverts-edit.php:
|
1364 |
#: dashboard/publisher/groups-edit.php:200
|
1365 |
#, fuzzy
|
1366 |
msgid "Upgrade today"
|
@@ -1376,129 +1399,162 @@ msgid "Everything below is optional."
|
|
1376 |
msgstr "Wszystkie opcje poniżej są opcjonalne."
|
1377 |
|
1378 |
#: dashboard/publisher/adverts-edit.php:301
|
1379 |
-
msgid "
|
1380 |
msgstr ""
|
1381 |
|
1382 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1383 |
msgid "Enable responsive support for this advert."
|
1384 |
msgstr "Włącz responsywny wygląd dla tej reklamy."
|
1385 |
|
1386 |
-
#: dashboard/publisher/adverts-edit.php:
|
1387 |
msgid ""
|
1388 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1389 |
-
"following format; \"imagename.full.ext\".
|
1390 |
-
"strongly recommended."
|
1391 |
msgstr ""
|
1392 |
-
"Wyślij obrazy do folderu banerów i upewnij się że pliki mają odpowiednie "
|
1393 |
-
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
1394 |
-
"pełnego wachlarza rozmiarów.'"
|
1395 |
|
1396 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1397 |
#: dashboard/publisher/groups-edit.php:194
|
1398 |
msgid "Sortorder"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: dashboard/publisher/adverts-edit.php:
|
1402 |
#: dashboard/publisher/groups-edit.php:196
|
1403 |
msgid "For administrative purposes set a sortorder."
|
1404 |
msgstr "Dla celów administracyjnych ustaw sortowanie."
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1408 |
msgstr ""
|
1409 |
"Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
|
1410 |
|
1411 |
-
#: dashboard/publisher/adverts-edit.php:
|
1412 |
msgid ""
|
1413 |
-
"With AdRotate Pro you can
|
|
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: dashboard/publisher/adverts-edit.php:
|
1417 |
msgid "Geo Targeting in AdRotate Pro"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: dashboard/publisher/adverts-edit.php:
|
1421 |
msgid ""
|
1422 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: dashboard/publisher/adverts-edit.php:
|
1426 |
msgid "Cities/States"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: dashboard/publisher/adverts-edit.php:
|
1430 |
msgid ""
|
1431 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1432 |
"states ISO codes are supported)"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: dashboard/publisher/adverts-edit.php:
|
1436 |
msgid ""
|
1437 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1438 |
"correctly!"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: dashboard/publisher/adverts-edit.php:
|
1442 |
msgid "Countries"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: dashboard/publisher/adverts-edit.php:
|
1446 |
msgid "Select the countries you want the adverts to show in."
|
1447 |
msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
|
1448 |
|
1449 |
-
#: dashboard/publisher/adverts-edit.php:
|
1450 |
msgid "Cities take priority and will be filtered first."
|
1451 |
msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
|
1452 |
|
1453 |
-
#: dashboard/publisher/adverts-edit.php:
|
1454 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: dashboard/publisher/adverts-edit.php:
|
1458 |
msgid "Select Groups"
|
1459 |
msgstr "Wybierz grupy"
|
1460 |
|
1461 |
-
#: dashboard/publisher/adverts-edit.php:
|
1462 |
msgid "ID - Name"
|
1463 |
msgstr "ID - Nazwa"
|
1464 |
|
1465 |
-
#: dashboard/publisher/adverts-edit.php:
|
1466 |
#: dashboard/publisher/groups-main.php:60
|
1467 |
#: dashboard/settings/geotargeting.php:39
|
1468 |
msgid "Default"
|
1469 |
msgstr "Domyślny"
|
1470 |
|
1471 |
-
#: dashboard/publisher/adverts-edit.php:
|
1472 |
#: dashboard/publisher/groups-main.php:61
|
1473 |
msgid "Dynamic"
|
1474 |
msgstr "Dynamiczny"
|
1475 |
|
1476 |
-
#: dashboard/publisher/adverts-edit.php:
|
1477 |
#: dashboard/publisher/groups-main.php:61
|
1478 |
msgid "second rotation"
|
1479 |
msgstr "drugi obrót"
|
1480 |
|
1481 |
-
#: dashboard/publisher/adverts-edit.php:
|
1482 |
#: dashboard/publisher/groups-main.php:62
|
1483 |
msgid "Block"
|
1484 |
msgstr "Blok"
|
1485 |
|
1486 |
-
#: dashboard/publisher/adverts-edit.php:
|
1487 |
#: dashboard/publisher/groups-main.php:62
|
1488 |
msgid "grid"
|
1489 |
msgstr "siatka"
|
1490 |
|
1491 |
-
#: dashboard/publisher/adverts-edit.php:
|
1492 |
#: dashboard/publisher/groups-edit.php:202
|
1493 |
#: dashboard/publisher/groups-main.php:63
|
1494 |
msgid "Post Injection"
|
1495 |
msgstr "Umieszczanie we wpisach"
|
1496 |
|
1497 |
-
#: dashboard/publisher/adverts-edit.php:
|
1498 |
msgid "Geolocation"
|
1499 |
msgstr "Geolokalizacja"
|
1500 |
|
1501 |
-
#: dashboard/publisher/adverts-edit.php:
|
1502 |
#: dashboard/publisher/groups-edit.php:61
|
1503 |
#: dashboard/publisher/groups-main.php:70
|
1504 |
msgid "Mode"
|
@@ -1592,11 +1648,6 @@ msgstr "Dzisiejsze kliknięcia "
|
|
1592 |
msgid "Monthly overview of clicks and impressions"
|
1593 |
msgstr "Miesięczne zestawienie kliknięć i wyświetleń"
|
1594 |
|
1595 |
-
#: dashboard/publisher/adverts-report.php:58
|
1596 |
-
#: dashboard/publisher/groups-report.php:64
|
1597 |
-
msgid "Note:"
|
1598 |
-
msgstr "Notatka:"
|
1599 |
-
|
1600 |
#: dashboard/publisher/adverts-report.php:58
|
1601 |
#: dashboard/publisher/groups-report.php:64
|
1602 |
msgid ""
|
@@ -1950,9 +2001,8 @@ msgstr "Zamierzasz usunąc grupę reklam"
|
|
1950 |
msgid "This action can not be undone!"
|
1951 |
msgstr "Nie można cofnąć tego ruchu!"
|
1952 |
|
1953 |
-
#: dashboard/publisher/groups-main.php:24
|
1954 |
-
#: dashboard/settings/maintenance.php:
|
1955 |
-
#: dashboard/settings/maintenance.php:34
|
1956 |
msgid "OK to continue, CANCEL to stop."
|
1957 |
msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
|
1958 |
|
@@ -2033,67 +2083,77 @@ msgid ""
|
|
2033 |
msgstr ""
|
2034 |
|
2035 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2036 |
msgid "Load jQuery"
|
2037 |
msgstr "Załąduj jQuery"
|
2038 |
|
2039 |
-
#: dashboard/settings/general.php:
|
2040 |
msgid ""
|
2041 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2042 |
"groups, statistics and some other features."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: dashboard/settings/general.php:
|
2046 |
msgid "Load scripts in footer?"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: dashboard/settings/general.php:
|
2050 |
msgid ""
|
2051 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2052 |
"site."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: dashboard/settings/general.php:
|
2056 |
msgid "Adblock disguise"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: dashboard/settings/general.php:
|
2060 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: dashboard/settings/general.php:
|
2064 |
msgid ""
|
2065 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: dashboard/settings/general.php:
|
2069 |
msgid ""
|
2070 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2071 |
"instead of the AdRotate widget."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: dashboard/settings/general.php:
|
2075 |
msgid ""
|
2076 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2077 |
"feature will have little effect!"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: dashboard/settings/general.php:
|
2081 |
msgid "Banner Folder"
|
2082 |
msgstr "Folder banerów"
|
2083 |
|
2084 |
-
#: dashboard/settings/general.php:
|
2085 |
msgid "Set a location where your banner images will be stored."
|
2086 |
msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
|
2087 |
|
2088 |
-
#: dashboard/settings/general.php:
|
2089 |
msgid "Location"
|
2090 |
msgstr "Lokalizacja"
|
2091 |
|
2092 |
-
#: dashboard/settings/general.php:
|
2093 |
msgid "(Default: wp-content/banners/)."
|
2094 |
msgstr "(Domyślnie: wp-content/banners/)."
|
2095 |
|
2096 |
-
#: dashboard/settings/general.php:
|
2097 |
msgid ""
|
2098 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2099 |
"like:"
|
@@ -2101,7 +2161,7 @@ msgstr ""
|
|
2101 |
"Jeśli chcesz możeszspróbować trochę oszukać programy blokujące reklamy. "
|
2102 |
"Wsytarczy żę podasz jakąś nietypową nazwę folderu np. taką :"
|
2103 |
|
2104 |
-
#: dashboard/settings/general.php:
|
2105 |
msgid ""
|
2106 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2107 |
"will show errors when the folder is missing."
|
@@ -2109,46 +2169,46 @@ msgstr ""
|
|
2109 |
"Ten folder nie zostanie automatycznie utworzony jeśli nie istnieje. AdRotate "
|
2110 |
"wyświetli błędy jeśli nie odnajdzie katalogu."
|
2111 |
|
2112 |
-
#: dashboard/settings/general.php:
|
2113 |
msgid "Bot filter"
|
2114 |
msgstr "Filtr Botów Internetowych"
|
2115 |
|
2116 |
-
#: dashboard/settings/general.php:
|
2117 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: dashboard/settings/general.php:
|
2121 |
msgid "User-Agent Filter"
|
2122 |
msgstr "Filtr Agentów"
|
2123 |
|
2124 |
-
#: dashboard/settings/general.php:
|
2125 |
msgid ""
|
2126 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: dashboard/settings/general.php:
|
2130 |
msgid ""
|
2131 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2132 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: dashboard/settings/general.php:
|
2136 |
msgid ""
|
2137 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2138 |
"characters are stripped out."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: dashboard/settings/general.php:
|
2142 |
msgid ""
|
2143 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2144 |
"well."
|
2145 |
msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
|
2146 |
|
2147 |
-
#: dashboard/settings/general.php:
|
2148 |
msgid "Learn more about"
|
2149 |
msgstr "Dowiedź się więcej o"
|
2150 |
|
2151 |
-
#: dashboard/settings/general.php:
|
2152 |
msgid "user-agents"
|
2153 |
msgstr "Agenci przeglądarek"
|
2154 |
|
@@ -2816,6 +2876,15 @@ msgid ""
|
|
2816 |
msgstr ""
|
2817 |
"Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
|
2818 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2819 |
#, fuzzy
|
2820 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2821 |
#~ msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:45+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:45+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Generator: Poedit 1.8.6\n"
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
+
#: adrotate-functions.php:849
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
+
#: adrotate-functions.php:852
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
+
#: adrotate-functions.php:901
|
32 |
msgid "Ad saved"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: adrotate-functions.php:905
|
36 |
msgid "Group saved"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: adrotate-functions.php:909
|
40 |
msgid "Ad(s) deleted"
|
41 |
msgstr "Reklama usunięta"
|
42 |
|
43 |
+
#: adrotate-functions.php:913
|
44 |
msgid "Group deleted"
|
45 |
msgstr "Grupa usunięta"
|
46 |
|
47 |
+
#: adrotate-functions.php:917
|
48 |
msgid "Ad(s) statistics reset"
|
49 |
msgstr "Resetuj statystyki reklamy"
|
50 |
|
51 |
+
#: adrotate-functions.php:921
|
52 |
msgid "Ad(s) renewed"
|
53 |
msgstr "Odnów reklamę"
|
54 |
|
55 |
+
#: adrotate-functions.php:925
|
56 |
msgid "Ad(s) deactivated"
|
57 |
msgstr "Reklama wyłączona"
|
58 |
|
59 |
+
#: adrotate-functions.php:929
|
60 |
msgid "Ad(s) activated"
|
61 |
msgstr "Reklama włączona"
|
62 |
|
63 |
+
#: adrotate-functions.php:933
|
64 |
msgid "Group including it's Ads deleted"
|
65 |
msgstr "Grupa wraz z reklamami usunięta"
|
66 |
|
67 |
+
#: adrotate-functions.php:937
|
68 |
#, fuzzy
|
69 |
msgid "Export created"
|
70 |
msgstr "Reklama utworzona"
|
71 |
|
72 |
+
#: adrotate-functions.php:942
|
73 |
msgid "Settings saved"
|
74 |
msgstr "Ustawienia zapisane"
|
75 |
|
76 |
+
#: adrotate-functions.php:946
|
77 |
msgid "Database optimized"
|
78 |
msgstr "Baza danych zoptymalizowana"
|
79 |
|
80 |
+
#: adrotate-functions.php:950
|
81 |
msgid "Database repaired"
|
82 |
msgstr "Baza danych naprawiona"
|
83 |
|
84 |
+
#: adrotate-functions.php:954
|
85 |
msgid "Ads evaluated and statuses have been corrected where required"
|
86 |
msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
|
87 |
|
88 |
+
#: adrotate-functions.php:958
|
89 |
msgid "Empty database records removed"
|
90 |
msgstr "Usunięto puste rekordy bazy danych"
|
91 |
|
92 |
+
#: adrotate-functions.php:963
|
93 |
msgid "Action prohibited"
|
94 |
msgstr "Czynność zabroniona."
|
95 |
|
96 |
+
#: adrotate-functions.php:967
|
97 |
msgid ""
|
98 |
"The ad was saved but has an issue which might prevent it from working "
|
99 |
"properly. Review the colored ad."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: adrotate-functions.php:971
|
103 |
msgid "No data found in selected time period"
|
104 |
msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
|
105 |
|
106 |
+
#: adrotate-functions.php:975
|
107 |
msgid "Database can only be optimized or cleaned once every hour"
|
108 |
msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
|
109 |
|
110 |
+
#: adrotate-functions.php:979
|
111 |
msgid "Form can not be (partially) empty!"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:983
|
115 |
msgid "No ads found."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-functions.php:987
|
119 |
msgid "Unexpected error"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-manage-publisher.php:712
|
123 |
msgid "AdRotate Advertiser"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: adrotate-output.php:639
|
127 |
msgid "Oh no! Something went wrong!"
|
128 |
msgstr "Uwaga ! Coś poszło nie tak !"
|
129 |
|
130 |
+
#: adrotate-output.php:640
|
131 |
msgid ""
|
132 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
133 |
"Verify if the url used is valid or log in via your browser."
|
135 |
"Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
|
136 |
"Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
|
137 |
|
138 |
+
#: adrotate-output.php:641
|
139 |
msgid ""
|
140 |
"If you have received the url you want to visit via email, you are being "
|
141 |
"tricked!"
|
143 |
"Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
|
144 |
"zostałeś oszukany. "
|
145 |
|
146 |
+
#: adrotate-output.php:642
|
147 |
msgid "Contact support if the issue persists:"
|
148 |
msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
|
149 |
|
150 |
+
#: adrotate-output.php:660
|
151 |
msgid ""
|
152 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
153 |
"restrictions or does not exist!"
|
155 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
156 |
"harmonogramie lub geolokalizacji lub może nie istnieć."
|
157 |
|
158 |
+
#: adrotate-output.php:662
|
159 |
msgid ""
|
160 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
161 |
"restrictions!"
|
163 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
164 |
"harmonogramie lub geolokalizacji."
|
165 |
|
166 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
167 |
msgid ""
|
168 |
"Either there are no banners, they are disabled or none qualified for this "
|
169 |
"location!"
|
171 |
"Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
|
172 |
"lokalizacji!"
|
173 |
|
174 |
+
#: adrotate-output.php:677
|
175 |
msgid "Error, no Ad ID set! Check your syntax!"
|
176 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
177 |
|
178 |
+
#: adrotate-output.php:683
|
179 |
msgid "Error, no group ID set! Check your syntax!"
|
180 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
181 |
|
182 |
+
#: adrotate-output.php:688
|
183 |
msgid "Error, group does not exist! Check your syntax!"
|
184 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
|
185 |
|
186 |
+
#: adrotate-output.php:694
|
187 |
msgid ""
|
188 |
"There was an error locating the database tables for AdRotate. Please "
|
189 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
191 |
"Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
|
192 |
"AdRote na panelu wtyczek."
|
193 |
|
194 |
+
#: adrotate-output.php:694
|
195 |
msgid "If this does not solve the issue please seek support at"
|
196 |
msgstr ""
|
197 |
"Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
|
198 |
|
199 |
+
#: adrotate-output.php:700
|
200 |
msgid "An unknown error occured."
|
201 |
msgstr "Pojawił się nieznany błąd."
|
202 |
|
203 |
+
#: adrotate-output.php:725
|
204 |
msgid "active ad(s) expired."
|
205 |
msgstr "Aktywne reklamy wygasły."
|
206 |
|
207 |
+
#: adrotate-output.php:725
|
208 |
msgid "Take action now"
|
209 |
msgstr "Uruchom natymiastowo."
|
210 |
|
211 |
+
#: adrotate-output.php:727
|
212 |
msgid "active ad(s) are about to expire."
|
213 |
msgstr "Aktywne reklamy niedługo wygasną."
|
214 |
|
215 |
+
#: adrotate-output.php:727
|
216 |
msgid "Check it out"
|
217 |
msgstr "Sprawdz to"
|
218 |
|
219 |
+
#: adrotate-output.php:729
|
220 |
msgid "active ad(s) with configuration errors."
|
221 |
msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
|
222 |
|
223 |
+
#: adrotate-output.php:729
|
224 |
msgid "Solve this"
|
225 |
msgstr "Napraw to"
|
226 |
|
227 |
+
#: adrotate-output.php:731
|
228 |
msgid "ad(s) expired."
|
229 |
msgstr "Reklama wygasła."
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "ad(s) are about to expire."
|
233 |
msgstr "Reklama które wygasną."
|
234 |
|
235 |
+
#: adrotate-output.php:731
|
236 |
msgid "ad(s) with configuration errors."
|
237 |
msgstr "Reklamy z błędami konfuguracyjnymi."
|
238 |
|
239 |
+
#: adrotate-output.php:731
|
240 |
msgid "Fix this as soon as possible"
|
241 |
msgstr "Napraw to tak szybko jak to możliwe"
|
242 |
|
243 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
244 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
245 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
246 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
247 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
248 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
249 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
250 |
#: dashboard/settings/geotargeting.php:26
|
252 |
msgid "Buy now"
|
253 |
msgstr "Kup"
|
254 |
|
255 |
+
#: adrotate-output.php:744
|
256 |
msgid ""
|
257 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
258 |
"to the <strong>PRO</strong> version"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:744
|
262 |
#, php-format
|
263 |
msgid ""
|
264 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: adrotate-output.php:744
|
268 |
msgid "Thank you for your purchase!"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: adrotate-output.php:788
|
272 |
msgid ""
|
273 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
274 |
"this menu. Check out the"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: adrotate-output.php:788
|
278 |
msgid "manuals"
|
279 |
msgstr "instrukcje"
|
280 |
|
281 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
282 |
msgid "and"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: adrotate-output.php:788
|
286 |
msgid "forums"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: adrotate-output.php:821
|
290 |
#, fuzzy
|
291 |
msgid "Useful Links"
|
292 |
msgstr "Użyteczne odnośniki."
|
293 |
|
294 |
+
#: adrotate-output.php:822
|
295 |
msgid "Useful links to learn more about AdRotate"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: adrotate-output.php:824
|
299 |
#, fuzzy
|
300 |
msgid "AdRotate Page"
|
301 |
msgstr "AdRotate Pro"
|
302 |
|
303 |
+
#: adrotate-output.php:825
|
304 |
#, fuzzy
|
305 |
msgid "Getting Started With AdRotate"
|
306 |
msgstr "Więcej ustawień z AdRotate Pro"
|
307 |
|
308 |
+
#: adrotate-output.php:826
|
309 |
#, fuzzy
|
310 |
msgid "AdRotate manuals"
|
311 |
msgstr "Informacja AdRotate "
|
312 |
|
313 |
+
#: adrotate-output.php:827
|
314 |
#, fuzzy
|
315 |
msgid "AdRotate Support Forum"
|
316 |
msgstr "Sklep AdRotate"
|
317 |
|
318 |
+
#: adrotate-output.php:853
|
319 |
#, fuzzy
|
320 |
msgid "Help AdRotate Grow"
|
321 |
msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
322 |
|
323 |
+
#: adrotate-output.php:854
|
324 |
msgid "Brought to you by"
|
325 |
msgstr "Dostarczone przez "
|
326 |
|
327 |
+
#: adrotate-output.php:861
|
328 |
msgid ""
|
329 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
330 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:861
|
334 |
msgid "If you find AdRotate useful please leave your honest"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:861
|
338 |
msgid "rating"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: adrotate-output.php:861
|
342 |
#, fuzzy
|
343 |
msgid "review"
|
344 |
msgstr ""
|
345 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
346 |
|
347 |
+
#: adrotate-output.php:861
|
348 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: adrotate-output.php:893
|
352 |
msgid "Available in AdRotate Pro"
|
353 |
msgstr "Dostępne w wersji AdRotate Pro"
|
354 |
|
355 |
+
#: adrotate-output.php:893
|
356 |
msgid "More information..."
|
357 |
msgstr "Więcej informacji"
|
358 |
|
359 |
+
#: adrotate-output.php:894
|
360 |
msgid "This feature is available in AdRotate Pro"
|
361 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
362 |
|
363 |
+
#: adrotate-output.php:894
|
364 |
msgid "Learn more"
|
365 |
msgstr "Dowiedź się więcej"
|
366 |
|
480 |
msgid "Fill in the ID of the type you want to display!"
|
481 |
msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
|
482 |
|
483 |
+
#: adrotate.php:106
|
484 |
msgid "General Info"
|
485 |
msgstr "Informacje główne"
|
486 |
|
487 |
+
#: adrotate.php:107
|
488 |
msgid "AdRotate Pro"
|
489 |
msgstr "AdRotate Pro"
|
490 |
|
491 |
+
#: adrotate.php:108
|
492 |
msgid "Manage Ads"
|
493 |
msgstr "Zarządzaj reklamami"
|
494 |
|
495 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
496 |
msgid "Manage Groups"
|
497 |
msgstr "Zarządzaj grupami"
|
498 |
|
499 |
+
#: adrotate.php:110 adrotate.php:408
|
500 |
#, fuzzy
|
501 |
msgid "Manage Schedules"
|
502 |
msgstr "Zarządzaj"
|
503 |
|
504 |
+
#: adrotate.php:111
|
505 |
#, fuzzy
|
506 |
msgid "Manage Media"
|
507 |
msgstr "Media:"
|
508 |
|
509 |
+
#: adrotate.php:112
|
510 |
msgid "Settings"
|
511 |
msgstr "Ustawienia"
|
512 |
|
513 |
+
#: adrotate.php:135
|
514 |
msgid "AdRotate Info"
|
515 |
msgstr "Informacja AdRotate "
|
516 |
|
517 |
+
#: adrotate.php:156
|
518 |
msgid "AdRotate Professional"
|
519 |
msgstr "AdRotate Professional"
|
520 |
|
521 |
+
#: adrotate.php:199
|
522 |
msgid "Ad Management"
|
523 |
msgstr "Zarządzanie Reklamami"
|
524 |
|
525 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
526 |
msgid "Manage"
|
527 |
msgstr "Zarządzaj"
|
528 |
|
529 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
530 |
msgid "Add New"
|
531 |
msgstr "Dodaj nową"
|
532 |
|
533 |
+
#: adrotate.php:337
|
534 |
msgid "Group Management"
|
535 |
msgstr "Zarządzanie grupą reklam"
|
536 |
|
537 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
538 |
#: dashboard/publisher/groups-main.php:70
|
539 |
msgid "Report"
|
540 |
msgstr "Raport"
|
541 |
|
542 |
+
#: adrotate.php:399
|
543 |
#, fuzzy
|
544 |
msgid "Schedule Management available in AdRotate Pro"
|
545 |
msgstr "Dostępne w wersji AdRotate Pro"
|
546 |
|
547 |
+
#: adrotate.php:409
|
548 |
msgid ""
|
549 |
"Schedule management and multiple schedules per advert is available in "
|
550 |
"AdRotate Pro."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
554 |
#: dashboard/publisher/adverts-main.php:114
|
555 |
#: dashboard/publisher/groups-edit.php:75
|
556 |
#: dashboard/publisher/groups-main.php:89
|
558 |
msgid "More information"
|
559 |
msgstr "Więcej informacji"
|
560 |
|
561 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
562 |
#: dashboard/publisher/adverts-error.php:19
|
563 |
#: dashboard/publisher/adverts-main.php:20
|
564 |
#: dashboard/publisher/groups-main.php:20
|
565 |
msgid "Bulk Actions"
|
566 |
msgstr "Działania masowe"
|
567 |
|
568 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
569 |
#: dashboard/publisher/adverts-error.php:29
|
570 |
#: dashboard/publisher/adverts-main.php:30
|
571 |
#: dashboard/publisher/groups-main.php:24
|
572 |
msgid "Go"
|
573 |
msgstr "Idź"
|
574 |
|
575 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
576 |
#: dashboard/publisher/adverts-error.php:39
|
577 |
#: dashboard/publisher/adverts-main.php:39
|
578 |
#: dashboard/publisher/groups-edit.php:51
|
580 |
msgid "ID"
|
581 |
msgstr "ID"
|
582 |
|
583 |
+
#: adrotate.php:427
|
584 |
#, fuzzy
|
585 |
msgid "Start"
|
586 |
msgstr "Start / Koniec"
|
587 |
|
588 |
+
#: adrotate.php:427
|
589 |
#, fuzzy
|
590 |
msgid "End"
|
591 |
msgstr "Start / Koniec"
|
592 |
|
593 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
594 |
#: dashboard/publisher/groups-main.php:34
|
595 |
msgid "Ads"
|
596 |
msgstr "Reklamy"
|
597 |
|
598 |
+
#: adrotate.php:430
|
599 |
msgid "Max Impressions"
|
600 |
msgstr "Maksymalna liczba wyświetleń"
|
601 |
|
602 |
+
#: adrotate.php:431
|
603 |
msgid "Max Clicks"
|
604 |
msgstr "Maksymalna liczna kliknięć"
|
605 |
|
606 |
+
#: adrotate.php:461
|
607 |
#, fuzzy
|
608 |
msgid "No schedules created yet!"
|
609 |
msgstr "Nie utworzono jeszcze żadnych reklam!"
|
610 |
|
611 |
+
#: adrotate.php:466
|
612 |
#, fuzzy
|
613 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
614 |
msgstr "Więcej ustawień z AdRotate Pro"
|
615 |
|
616 |
+
#: adrotate.php:466 adrotate.php:532
|
617 |
#, fuzzy
|
618 |
msgid "Upgrade today!"
|
619 |
msgstr "Dziś"
|
620 |
|
621 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
622 |
#: dashboard/publisher/groups-edit.php:387
|
623 |
msgid "Expires soon."
|
624 |
msgstr "Wygasa wkrótce."
|
625 |
|
626 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
627 |
#: dashboard/publisher/groups-edit.php:388
|
628 |
msgid "Has expired."
|
629 |
msgstr "Wygasła."
|
630 |
|
631 |
+
#: adrotate.php:494
|
632 |
#, fuzzy
|
633 |
msgid "Media Management available in AdRotate Pro"
|
634 |
msgstr "Dostępne w wersji AdRotate Pro"
|
635 |
|
636 |
+
#: adrotate.php:496
|
637 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: adrotate.php:496
|
641 |
msgid ""
|
642 |
"This is useful if you use responsive adverts with multiple images or have "
|
643 |
"HTML5 adverts containing multiple files."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:496
|
647 |
#, fuzzy
|
648 |
msgid "Media uploading and management is available in AdRotate Pro."
|
649 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
650 |
|
651 |
+
#: adrotate.php:498
|
652 |
msgid "Upload new file"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: adrotate.php:499
|
656 |
msgid "Accepted files:"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: adrotate.php:499
|
660 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: adrotate.php:499
|
664 |
msgid "Maximum size is 512Kb."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: adrotate.php:499
|
668 |
msgid "Important:"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: adrotate.php:499
|
672 |
msgid ""
|
673 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
674 |
"spaces with a - or _."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: adrotate.php:499
|
678 |
msgid ""
|
679 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
680 |
"file so it knows about the changed name. For example for the javascript file."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: adrotate.php:502
|
684 |
#, fuzzy
|
685 |
msgid ""
|
686 |
"For responsive adverts make sure the filename is in the following format; "
|
690 |
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
691 |
"pełnego wachlarza rozmiarów.'"
|
692 |
|
693 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
694 |
msgid ""
|
695 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
696 |
"filename instead of \".full\" for the various viewports."
|
698 |
"Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
|
699 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
700 |
|
701 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
702 |
#: dashboard/publisher/groups-edit.php:320
|
703 |
msgid "Example:"
|
704 |
msgstr "Przykład:"
|
705 |
|
706 |
+
#: adrotate.php:504
|
707 |
#, fuzzy
|
708 |
msgid ""
|
709 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
712 |
"image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
|
713 |
"różnych widokach. Wymaga jQuery."
|
714 |
|
715 |
+
#: adrotate.php:508
|
716 |
msgid "Upload file"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: adrotate.php:508
|
720 |
msgid "Click only once per file!"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: adrotate.php:511
|
724 |
msgid "Available files in"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
728 |
#: dashboard/publisher/groups-main.php:33
|
729 |
msgid "Name"
|
730 |
msgstr "Nazwa"
|
731 |
|
732 |
+
#: adrotate.php:517
|
733 |
#, fuzzy
|
734 |
msgid "Actions"
|
735 |
msgstr "Działania masowe"
|
736 |
|
737 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
738 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
739 |
#: dashboard/publisher/adverts-disabled.php:22
|
740 |
#: dashboard/publisher/adverts-error.php:21
|
741 |
#: dashboard/publisher/adverts-main.php:22
|
742 |
msgid "Delete"
|
743 |
msgstr "Usuń"
|
744 |
|
745 |
+
#: adrotate.php:532
|
746 |
msgid ""
|
747 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: adrotate.php:532
|
751 |
#, fuzzy
|
752 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
753 |
msgstr "Więcej ustawień z AdRotate Pro"
|
754 |
|
755 |
+
#: adrotate.php:561
|
756 |
msgid "AdRotate Settings"
|
757 |
msgstr "Ustawienia AdRotate"
|
758 |
|
759 |
+
#: adrotate.php:632
|
760 |
msgid "Update Options"
|
761 |
msgstr "Zapisz opcje"
|
762 |
|
778 |
"zobaczyć statystyki swoich reklam."
|
779 |
|
780 |
#: dashboard/adrotatepro.php:27
|
781 |
+
msgid "Mobile campaigns"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: dashboard/adrotatepro.php:30
|
785 |
+
msgid ""
|
786 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
787 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
788 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
789 |
+
"and with a few easy to use options they show up where you want them to!"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: dashboard/adrotatepro.php:34
|
793 |
msgid "Localize your ad campaigns with Geo Targeting"
|
794 |
msgstr "Zlokalizuje swoje kampanie reklamowe używajac geolokalizacji"
|
795 |
|
796 |
+
#: dashboard/adrotatepro.php:37
|
797 |
msgid ""
|
798 |
"Go nationwide or global with localized adverts for your various audiences. "
|
799 |
"Set up adverts for countries and cities and sell impressions per general "
|
801 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: dashboard/adrotatepro.php:41
|
805 |
msgid "Get Premium Support almost all year round"
|
806 |
msgstr "Zakup Wsparcie premium na cały rok."
|
807 |
|
808 |
+
#: dashboard/adrotatepro.php:44
|
809 |
msgid ""
|
810 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
811 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
813 |
"forum. Get a solution (usually) within a day."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
817 |
msgid "AdRotate is brought to you by"
|
818 |
msgstr "Możesz koszystać z AdRotate dzięki"
|
819 |
|
820 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
821 |
msgid ""
|
822 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
823 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: dashboard/adrotatepro.php:65
|
827 |
msgid "Schedule all campaigns with ease"
|
828 |
msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
|
829 |
|
830 |
+
#: dashboard/adrotatepro.php:68
|
831 |
msgid ""
|
832 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
833 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
835 |
"much more easy. You can set one or many schedules for adverts."
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: dashboard/adrotatepro.php:72
|
839 |
+
msgid "Avoid adblockers"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: dashboard/adrotatepro.php:75
|
843 |
+
msgid ""
|
844 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
845 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
846 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
847 |
+
"adverts smartly so these features reach their full potential!"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: dashboard/adrotatepro.php:79
|
851 |
msgid "Stay up-to-date with notifications"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: dashboard/adrotatepro.php:82
|
855 |
msgid ""
|
856 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
857 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
860 |
"miss an expiration date again."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
864 |
#: dashboard/info.php:93 dashboard/info.php:105
|
865 |
msgid "Buy AdRotate Professional"
|
866 |
msgstr "Kup AdRotate Pro"
|
867 |
|
868 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
869 |
msgid "Single License"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
873 |
msgid "For one WordPress installation."
|
874 |
msgstr "dla jednej instalcji Wordpressa"
|
875 |
|
876 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
877 |
#: dashboard/info.php:98 dashboard/info.php:110
|
878 |
msgid "Duo License"
|
879 |
msgstr "Podwójna licencja"
|
880 |
|
881 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
882 |
msgid "For two WordPress installations."
|
883 |
msgstr "dla dwóch instalcji Wordpressa"
|
884 |
|
885 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
886 |
#: dashboard/info.php:99 dashboard/info.php:111
|
887 |
msgid "Multi License"
|
888 |
msgstr "Multi licencja"
|
889 |
|
890 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
891 |
msgid " For up to five WordPress installations."
|
892 |
msgstr "dla 5 instalacji Wordpessa."
|
893 |
|
894 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
895 |
#: dashboard/info.php:100 dashboard/info.php:112
|
896 |
msgid "Developer License"
|
897 |
msgstr "Licencja Programisty"
|
898 |
|
899 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
900 |
msgid "Unlimited WordPress installations and/or networks."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
904 |
#: dashboard/info.php:101 dashboard/info.php:114
|
905 |
msgid "Compare licenses"
|
906 |
msgstr "Porównaj licencje."
|
907 |
|
908 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
909 |
msgid "Not sure which license is for you? Compare them..."
|
910 |
msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
|
911 |
|
912 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
913 |
msgid "All Licenses"
|
914 |
msgstr "Wszystkie licencje"
|
915 |
|
916 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
917 |
msgid "Lifetime License"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
921 |
msgid "Single installation."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
925 |
msgid "Up to 2 installations."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
929 |
msgid "Up to 10 installations."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
933 |
msgid "Up to 25 installations or multisite networks."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
937 |
msgid ""
|
938 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
942 |
msgid "Not sure which license is for you?"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
946 |
msgid "Compare Licenses"
|
947 |
msgstr ""
|
948 |
|
1281 |
|
1282 |
#: dashboard/publisher/adverts-edit.php:192
|
1283 |
#: dashboard/publisher/adverts-edit.php:292
|
1284 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1285 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1286 |
msgid "Save Advert"
|
1287 |
msgstr "Zapisz reklamę"
|
1288 |
|
1289 |
#: dashboard/publisher/adverts-edit.php:193
|
1290 |
#: dashboard/publisher/adverts-edit.php:293
|
1291 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1292 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1293 |
#: dashboard/publisher/groups-edit.php:154
|
1294 |
#: dashboard/publisher/groups-edit.php:301
|
1295 |
#: dashboard/publisher/groups-edit.php:393
|
1297 |
msgstr "Anuluj"
|
1298 |
|
1299 |
#: dashboard/publisher/adverts-edit.php:196
|
1300 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1301 |
#: dashboard/publisher/groups-edit.php:136
|
1302 |
#: dashboard/publisher/groups-edit.php:283
|
1303 |
msgid "Usage"
|
1304 |
msgstr "Użycie"
|
1305 |
|
1306 |
#: dashboard/publisher/adverts-edit.php:200
|
1307 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1308 |
#: dashboard/publisher/groups-edit.php:140
|
1309 |
#: dashboard/publisher/groups-edit.php:287
|
1310 |
msgid "Widget"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: dashboard/publisher/adverts-edit.php:201
|
1314 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1315 |
msgid ""
|
1316 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1317 |
"and enter ID"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: dashboard/publisher/adverts-edit.php:204
|
1321 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1322 |
#: dashboard/publisher/groups-edit.php:144
|
1323 |
#: dashboard/publisher/groups-edit.php:291
|
1324 |
msgid "In a post or page"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: dashboard/publisher/adverts-edit.php:206
|
1328 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1329 |
#: dashboard/publisher/groups-edit.php:146
|
1330 |
#: dashboard/publisher/groups-edit.php:293
|
1331 |
msgid "Directly in a theme"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
#: dashboard/publisher/adverts-edit.php:289
|
1385 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1386 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1387 |
#: dashboard/publisher/groups-edit.php:200
|
1388 |
#, fuzzy
|
1389 |
msgid "Upgrade today"
|
1399 |
msgstr "Wszystkie opcje poniżej są opcjonalne."
|
1400 |
|
1401 |
#: dashboard/publisher/adverts-edit.php:301
|
1402 |
+
msgid "Mobile"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
#: dashboard/publisher/adverts-edit.php:303
|
1406 |
+
msgid "Show on;"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1410 |
+
msgid "Computers"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1414 |
+
msgid "Smartphones"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1418 |
+
msgid "Tablets."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1422 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1426 |
+
msgid "Responsive"
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1430 |
msgid "Enable responsive support for this advert."
|
1431 |
msgstr "Włącz responsywny wygląd dla tej reklamy."
|
1432 |
|
1433 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1434 |
msgid ""
|
1435 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1436 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1437 |
msgstr ""
|
|
|
|
|
|
|
1438 |
|
1439 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1440 |
+
#: dashboard/publisher/adverts-report.php:58
|
1441 |
+
#: dashboard/publisher/groups-report.php:64
|
1442 |
+
msgid "Note:"
|
1443 |
+
msgstr "Notatka:"
|
1444 |
+
|
1445 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1446 |
+
msgid ""
|
1447 |
+
"This feature will not be developed any further. Consider switching to the "
|
1448 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1452 |
#: dashboard/publisher/groups-edit.php:194
|
1453 |
msgid "Sortorder"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1457 |
#: dashboard/publisher/groups-edit.php:196
|
1458 |
msgid "For administrative purposes set a sortorder."
|
1459 |
msgstr "Dla celów administracyjnych ustaw sortowanie."
|
1460 |
|
1461 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1462 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1463 |
msgstr ""
|
1464 |
"Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
|
1465 |
|
1466 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1467 |
msgid ""
|
1468 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1469 |
+
"on!"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1473 |
msgid "Geo Targeting in AdRotate Pro"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1477 |
msgid ""
|
1478 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1482 |
msgid "Cities/States"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1486 |
msgid ""
|
1487 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1488 |
"states ISO codes are supported)"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1492 |
msgid ""
|
1493 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1494 |
"correctly!"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1498 |
msgid "Countries"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1502 |
msgid "Select the countries you want the adverts to show in."
|
1503 |
msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
|
1504 |
|
1505 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1506 |
msgid "Cities take priority and will be filtered first."
|
1507 |
msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
|
1508 |
|
1509 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1510 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1514 |
msgid "Select Groups"
|
1515 |
msgstr "Wybierz grupy"
|
1516 |
|
1517 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1518 |
msgid "ID - Name"
|
1519 |
msgstr "ID - Nazwa"
|
1520 |
|
1521 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1522 |
#: dashboard/publisher/groups-main.php:60
|
1523 |
#: dashboard/settings/geotargeting.php:39
|
1524 |
msgid "Default"
|
1525 |
msgstr "Domyślny"
|
1526 |
|
1527 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1528 |
#: dashboard/publisher/groups-main.php:61
|
1529 |
msgid "Dynamic"
|
1530 |
msgstr "Dynamiczny"
|
1531 |
|
1532 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1533 |
#: dashboard/publisher/groups-main.php:61
|
1534 |
msgid "second rotation"
|
1535 |
msgstr "drugi obrót"
|
1536 |
|
1537 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1538 |
#: dashboard/publisher/groups-main.php:62
|
1539 |
msgid "Block"
|
1540 |
msgstr "Blok"
|
1541 |
|
1542 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1543 |
#: dashboard/publisher/groups-main.php:62
|
1544 |
msgid "grid"
|
1545 |
msgstr "siatka"
|
1546 |
|
1547 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1548 |
#: dashboard/publisher/groups-edit.php:202
|
1549 |
#: dashboard/publisher/groups-main.php:63
|
1550 |
msgid "Post Injection"
|
1551 |
msgstr "Umieszczanie we wpisach"
|
1552 |
|
1553 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1554 |
msgid "Geolocation"
|
1555 |
msgstr "Geolokalizacja"
|
1556 |
|
1557 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1558 |
#: dashboard/publisher/groups-edit.php:61
|
1559 |
#: dashboard/publisher/groups-main.php:70
|
1560 |
msgid "Mode"
|
1648 |
msgid "Monthly overview of clicks and impressions"
|
1649 |
msgstr "Miesięczne zestawienie kliknięć i wyświetleń"
|
1650 |
|
|
|
|
|
|
|
|
|
|
|
1651 |
#: dashboard/publisher/adverts-report.php:58
|
1652 |
#: dashboard/publisher/groups-report.php:64
|
1653 |
msgid ""
|
2001 |
msgid "This action can not be undone!"
|
2002 |
msgstr "Nie można cofnąć tego ruchu!"
|
2003 |
|
2004 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
2005 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2006 |
msgid "OK to continue, CANCEL to stop."
|
2007 |
msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
|
2008 |
|
2083 |
msgstr ""
|
2084 |
|
2085 |
#: dashboard/settings/general.php:20
|
2086 |
+
msgid "Dynamic mode for Mobile"
|
2087 |
+
msgstr ""
|
2088 |
+
|
2089 |
+
#: dashboard/settings/general.php:21
|
2090 |
+
msgid ""
|
2091 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2092 |
+
"jumping content."
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: dashboard/settings/general.php:24
|
2096 |
msgid "Load jQuery"
|
2097 |
msgstr "Załąduj jQuery"
|
2098 |
|
2099 |
+
#: dashboard/settings/general.php:25
|
2100 |
msgid ""
|
2101 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2102 |
"groups, statistics and some other features."
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: dashboard/settings/general.php:28
|
2106 |
msgid "Load scripts in footer?"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: dashboard/settings/general.php:29
|
2110 |
msgid ""
|
2111 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2112 |
"site."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: dashboard/settings/general.php:32
|
2116 |
msgid "Adblock disguise"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: dashboard/settings/general.php:34
|
2120 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: dashboard/settings/general.php:35
|
2124 |
msgid ""
|
2125 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: dashboard/settings/general.php:35
|
2129 |
msgid ""
|
2130 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2131 |
"instead of the AdRotate widget."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: dashboard/settings/general.php:35
|
2135 |
msgid ""
|
2136 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2137 |
"feature will have little effect!"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: dashboard/settings/general.php:40
|
2141 |
msgid "Banner Folder"
|
2142 |
msgstr "Folder banerów"
|
2143 |
|
2144 |
+
#: dashboard/settings/general.php:41
|
2145 |
msgid "Set a location where your banner images will be stored."
|
2146 |
msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
|
2147 |
|
2148 |
+
#: dashboard/settings/general.php:44
|
2149 |
msgid "Location"
|
2150 |
msgstr "Lokalizacja"
|
2151 |
|
2152 |
+
#: dashboard/settings/general.php:46
|
2153 |
msgid "(Default: wp-content/banners/)."
|
2154 |
msgstr "(Domyślnie: wp-content/banners/)."
|
2155 |
|
2156 |
+
#: dashboard/settings/general.php:47
|
2157 |
msgid ""
|
2158 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2159 |
"like:"
|
2161 |
"Jeśli chcesz możeszspróbować trochę oszukać programy blokujące reklamy. "
|
2162 |
"Wsytarczy żę podasz jakąś nietypową nazwę folderu np. taką :"
|
2163 |
|
2164 |
+
#: dashboard/settings/general.php:48
|
2165 |
msgid ""
|
2166 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2167 |
"will show errors when the folder is missing."
|
2169 |
"Ten folder nie zostanie automatycznie utworzony jeśli nie istnieje. AdRotate "
|
2170 |
"wyświetli błędy jeśli nie odnajdzie katalogu."
|
2171 |
|
2172 |
+
#: dashboard/settings/general.php:53
|
2173 |
msgid "Bot filter"
|
2174 |
msgstr "Filtr Botów Internetowych"
|
2175 |
|
2176 |
+
#: dashboard/settings/general.php:54
|
2177 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: dashboard/settings/general.php:57
|
2181 |
msgid "User-Agent Filter"
|
2182 |
msgstr "Filtr Agentów"
|
2183 |
|
2184 |
+
#: dashboard/settings/general.php:60
|
2185 |
msgid ""
|
2186 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: dashboard/settings/general.php:61
|
2190 |
msgid ""
|
2191 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2192 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: dashboard/settings/general.php:62
|
2196 |
msgid ""
|
2197 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2198 |
"characters are stripped out."
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: dashboard/settings/general.php:63
|
2202 |
msgid ""
|
2203 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2204 |
"well."
|
2205 |
msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
|
2206 |
|
2207 |
+
#: dashboard/settings/general.php:63
|
2208 |
msgid "Learn more about"
|
2209 |
msgstr "Dowiedź się więcej o"
|
2210 |
|
2211 |
+
#: dashboard/settings/general.php:63
|
2212 |
msgid "user-agents"
|
2213 |
msgstr "Agenci przeglądarek"
|
2214 |
|
2876 |
msgstr ""
|
2877 |
"Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
|
2878 |
|
2879 |
+
#~ msgid ""
|
2880 |
+
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2881 |
+
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2882 |
+
#~ "is strongly recommended."
|
2883 |
+
#~ msgstr ""
|
2884 |
+
#~ "Wyślij obrazy do folderu banerów i upewnij się że pliki mają odpowiednie "
|
2885 |
+
#~ "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
2886 |
+
#~ "pełnego wachlarza rozmiarów.'"
|
2887 |
+
|
2888 |
#, fuzzy
|
2889 |
#~ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
|
2890 |
#~ msgstr ""
|
language/adrotate-sr_RS.mo
CHANGED
Binary file
|
language/adrotate-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
@@ -13,117 +13,117 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
-
#: adrotate-functions.php:
|
28 |
msgid "Ad saved"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: adrotate-functions.php:
|
32 |
msgid "Group saved"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: adrotate-functions.php:
|
36 |
msgid "Ad(s) deleted"
|
37 |
msgstr "Izbrisani oglasu"
|
38 |
|
39 |
-
#: adrotate-functions.php:
|
40 |
msgid "Group deleted"
|
41 |
msgstr "Izbrisana grupa"
|
42 |
|
43 |
-
#: adrotate-functions.php:
|
44 |
msgid "Ad(s) statistics reset"
|
45 |
msgstr "Statistički resestovani oglasi"
|
46 |
|
47 |
-
#: adrotate-functions.php:
|
48 |
msgid "Ad(s) renewed"
|
49 |
msgstr "Ponovo obnovljeni oglasi"
|
50 |
|
51 |
-
#: adrotate-functions.php:
|
52 |
msgid "Ad(s) deactivated"
|
53 |
msgstr "Deaktivirani oglasi"
|
54 |
|
55 |
-
#: adrotate-functions.php:
|
56 |
msgid "Ad(s) activated"
|
57 |
msgstr "Aktivirani oglasi"
|
58 |
|
59 |
-
#: adrotate-functions.php:
|
60 |
msgid "Group including it's Ads deleted"
|
61 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
62 |
|
63 |
-
#: adrotate-functions.php:
|
64 |
#, fuzzy
|
65 |
msgid "Export created"
|
66 |
msgstr "Izlazne opcije za"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Postavke sačuvane"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Database optimized"
|
74 |
msgstr "Baza podataka optimizirana"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Database repaired"
|
78 |
msgstr "Baza podataka popravljena"
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
|
83 |
|
84 |
-
#: adrotate-functions.php:
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
87 |
|
88 |
-
#: adrotate-functions.php:
|
89 |
msgid "Action prohibited"
|
90 |
msgstr "Zabranjeno delo"
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
msgid ""
|
94 |
"The ad was saved but has an issue which might prevent it from working "
|
95 |
"properly. Review the colored ad."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: adrotate-functions.php:
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
|
101 |
|
102 |
-
#: adrotate-functions.php:
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: adrotate-functions.php:
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: adrotate-manage-publisher.php:
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: adrotate-output.php:
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr "O ne! Nešto nije kako treba!"
|
125 |
|
126 |
-
#: adrotate-output.php:
|
127 |
msgid ""
|
128 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
129 |
"Verify if the url used is valid or log in via your browser."
|
@@ -132,51 +132,51 @@ msgstr ""
|
|
132 |
"kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
|
133 |
"pretraživača."
|
134 |
|
135 |
-
#: adrotate-output.php:
|
136 |
msgid ""
|
137 |
"If you have received the url you want to visit via email, you are being "
|
138 |
"tricked!"
|
139 |
msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
|
140 |
|
141 |
-
#: adrotate-output.php:
|
142 |
msgid "Contact support if the issue persists:"
|
143 |
msgstr "Kontaktirajte podršku ako se problem nastavi:"
|
144 |
|
145 |
-
#: adrotate-output.php:
|
146 |
#, fuzzy
|
147 |
msgid ""
|
148 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
149 |
"restrictions or does not exist!"
|
150 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
151 |
|
152 |
-
#: adrotate-output.php:
|
153 |
#, fuzzy
|
154 |
msgid ""
|
155 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
156 |
"restrictions!"
|
157 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
158 |
|
159 |
-
#: adrotate-output.php:
|
160 |
msgid ""
|
161 |
"Either there are no banners, they are disabled or none qualified for this "
|
162 |
"location!"
|
163 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
164 |
|
165 |
-
#: adrotate-output.php:
|
166 |
msgid "Error, no Ad ID set! Check your syntax!"
|
167 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
168 |
|
169 |
-
#: adrotate-output.php:
|
170 |
#, fuzzy
|
171 |
msgid "Error, no group ID set! Check your syntax!"
|
172 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
173 |
|
174 |
-
#: adrotate-output.php:
|
175 |
#, fuzzy
|
176 |
msgid "Error, group does not exist! Check your syntax!"
|
177 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid ""
|
181 |
"There was an error locating the database tables for AdRotate. Please "
|
182 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -184,59 +184,59 @@ msgstr ""
|
|
184 |
"Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
|
185 |
"deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
|
186 |
|
187 |
-
#: adrotate-output.php:
|
188 |
msgid "If this does not solve the issue please seek support at"
|
189 |
msgstr "Ako ne reši problem potražite podršku na"
|
190 |
|
191 |
-
#: adrotate-output.php:
|
192 |
msgid "An unknown error occured."
|
193 |
msgstr "Nepoznati error se ukazao."
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
msgid "active ad(s) expired."
|
197 |
msgstr "aktivni ad-ovi su istekli."
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "Take action now"
|
201 |
msgstr "Reagujte odmah"
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "active ad(s) are about to expire."
|
205 |
msgstr "aktivni ad-ovi će uskoro da isteknu."
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "Check it out"
|
209 |
msgstr "Pogledajte ovde"
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "active ad(s) with configuration errors."
|
213 |
msgstr "aktivni ad-ovi sa konfiguracionim greškama."
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "Solve this"
|
217 |
msgstr "Reši ovo"
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "ad(s) expired."
|
221 |
msgstr "ad-ovi su istekli."
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "ad(s) are about to expire."
|
225 |
msgstr "ad-ovi će uskoro da isteknu."
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "ad(s) with configuration errors."
|
229 |
msgstr "ad-ovi sa konfiguracionim greškama."
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "Fix this as soon as possible"
|
233 |
msgstr "Popravi ovo što pre je moguće"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
-
#: dashboard/adrotatepro.php:
|
237 |
-
#: dashboard/adrotatepro.php:
|
238 |
-
#: dashboard/adrotatepro.php:
|
239 |
-
#: dashboard/adrotatepro.php:
|
240 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
241 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
242 |
#: dashboard/settings/geotargeting.php:26
|
@@ -244,115 +244,115 @@ msgstr "Popravi ovo što pre je moguće"
|
|
244 |
msgid "Buy now"
|
245 |
msgstr "Kupite odmah"
|
246 |
|
247 |
-
#: adrotate-output.php:
|
248 |
msgid ""
|
249 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
250 |
"to the <strong>PRO</strong> version"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: adrotate-output.php:
|
254 |
#, php-format
|
255 |
msgid ""
|
256 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: adrotate-output.php:
|
260 |
msgid "Thank you for your purchase!"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: adrotate-output.php:
|
264 |
msgid ""
|
265 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
266 |
"this menu. Check out the"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
msgid "manuals"
|
271 |
msgstr "priručnici"
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
msgid "and"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "forums"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
#, fuzzy
|
283 |
msgid "Useful Links"
|
284 |
msgstr "Korisni linkovi"
|
285 |
|
286 |
-
#: adrotate-output.php:
|
287 |
msgid "Useful links to learn more about AdRotate"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
#, fuzzy
|
292 |
msgid "AdRotate Page"
|
293 |
msgstr "AdRotate Pro"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
#, fuzzy
|
297 |
msgid "Getting Started With AdRotate"
|
298 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
#, fuzzy
|
302 |
msgid "AdRotate manuals"
|
303 |
msgstr "AdRotate informacije"
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
#, fuzzy
|
307 |
msgid "AdRotate Support Forum"
|
308 |
msgstr "AdRotate prodavnica"
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
#, fuzzy
|
312 |
msgid "Help AdRotate Grow"
|
313 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
314 |
|
315 |
-
#: adrotate-output.php:
|
316 |
msgid "Brought to you by"
|
317 |
msgstr "Za tebe od"
|
318 |
|
319 |
-
#: adrotate-output.php:
|
320 |
msgid ""
|
321 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
322 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
msgid "If you find AdRotate useful please leave your honest"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: adrotate-output.php:
|
330 |
msgid "rating"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
#, fuzzy
|
335 |
msgid "review"
|
336 |
msgstr "Dajte ocenu i komentar"
|
337 |
|
338 |
-
#: adrotate-output.php:
|
339 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: adrotate-output.php:
|
343 |
msgid "Available in AdRotate Pro"
|
344 |
msgstr "Dostupno u AdRotate Pro"
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
#, fuzzy
|
348 |
msgid "More information..."
|
349 |
msgstr "Saznajte više"
|
350 |
|
351 |
-
#: adrotate-output.php:
|
352 |
msgid "This feature is available in AdRotate Pro"
|
353 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
354 |
|
355 |
-
#: adrotate-output.php:
|
356 |
msgid "Learn more"
|
357 |
msgstr "Saznajte više"
|
358 |
|
@@ -474,79 +474,79 @@ msgstr "ID:"
|
|
474 |
msgid "Fill in the ID of the type you want to display!"
|
475 |
msgstr "Popunite ID tipa koji želite da prikažete!"
|
476 |
|
477 |
-
#: adrotate.php:
|
478 |
msgid "General Info"
|
479 |
msgstr "Opšte informacije"
|
480 |
|
481 |
-
#: adrotate.php:
|
482 |
msgid "AdRotate Pro"
|
483 |
msgstr "AdRotate Pro"
|
484 |
|
485 |
-
#: adrotate.php:
|
486 |
msgid "Manage Ads"
|
487 |
msgstr "Upravljajte oglasima"
|
488 |
|
489 |
-
#: adrotate.php:
|
490 |
msgid "Manage Groups"
|
491 |
msgstr "Upravljajte grupama"
|
492 |
|
493 |
-
#: adrotate.php:
|
494 |
#, fuzzy
|
495 |
msgid "Manage Schedules"
|
496 |
msgstr "Upravljati"
|
497 |
|
498 |
-
#: adrotate.php:
|
499 |
#, fuzzy
|
500 |
msgid "Manage Media"
|
501 |
msgstr "Media:"
|
502 |
|
503 |
-
#: adrotate.php:
|
504 |
msgid "Settings"
|
505 |
msgstr "Postavke"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "AdRotate Info"
|
509 |
msgstr "AdRotate informacije"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
#, fuzzy
|
513 |
msgid "AdRotate Professional"
|
514 |
msgstr "AdRotate promocije"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "Ad Management"
|
518 |
msgstr "Menadžment oglasa"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "Manage"
|
522 |
msgstr "Upravljati"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Add New"
|
526 |
msgstr "Dodati novi"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Group Management"
|
530 |
msgstr "Menadžment grupe"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
#: dashboard/publisher/groups-main.php:70
|
534 |
msgid "Report"
|
535 |
msgstr "Izveštaj"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
#, fuzzy
|
539 |
msgid "Schedule Management available in AdRotate Pro"
|
540 |
msgstr "Dostupno u AdRotate Pro"
|
541 |
|
542 |
-
#: adrotate.php:
|
543 |
#, fuzzy
|
544 |
msgid ""
|
545 |
"Schedule management and multiple schedules per advert is available in "
|
546 |
"AdRotate Pro."
|
547 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
548 |
|
549 |
-
#: adrotate.php:
|
550 |
#: dashboard/publisher/adverts-main.php:114
|
551 |
#: dashboard/publisher/groups-edit.php:75
|
552 |
#: dashboard/publisher/groups-main.php:89
|
@@ -554,21 +554,21 @@ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
|
554 |
msgid "More information"
|
555 |
msgstr "Saznajte više"
|
556 |
|
557 |
-
#: adrotate.php:
|
558 |
#: dashboard/publisher/adverts-error.php:19
|
559 |
#: dashboard/publisher/adverts-main.php:20
|
560 |
#: dashboard/publisher/groups-main.php:20
|
561 |
msgid "Bulk Actions"
|
562 |
msgstr "Delo bulk-ovanja"
|
563 |
|
564 |
-
#: adrotate.php:
|
565 |
#: dashboard/publisher/adverts-error.php:29
|
566 |
#: dashboard/publisher/adverts-main.php:30
|
567 |
#: dashboard/publisher/groups-main.php:24
|
568 |
msgid "Go"
|
569 |
msgstr "Kreni"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
#: dashboard/publisher/adverts-error.php:39
|
573 |
#: dashboard/publisher/adverts-main.php:39
|
574 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -576,177 +576,176 @@ msgstr "Kreni"
|
|
576 |
msgid "ID"
|
577 |
msgstr "ID"
|
578 |
|
579 |
-
#: adrotate.php:
|
580 |
#, fuzzy
|
581 |
msgid "Start"
|
582 |
msgstr "Početno vreme (hh:mm):"
|
583 |
|
584 |
-
#: adrotate.php:
|
585 |
#, fuzzy
|
586 |
msgid "End"
|
587 |
msgstr "Završno vreme (hh:mm):"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
#: dashboard/publisher/groups-main.php:34
|
591 |
msgid "Ads"
|
592 |
msgstr "Oglasi"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
#, fuzzy
|
596 |
msgid "Max Impressions"
|
597 |
msgstr "Utisci"
|
598 |
|
599 |
-
#: adrotate.php:
|
600 |
#, fuzzy
|
601 |
msgid "Max Clicks"
|
602 |
msgstr "Klikovi"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
#, fuzzy
|
606 |
msgid "No schedules created yet!"
|
607 |
msgstr "Nijedan blok nije stvoren još uvek!"
|
608 |
|
609 |
-
#: adrotate.php:
|
610 |
#, fuzzy
|
611 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
612 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
613 |
|
614 |
-
#: adrotate.php:
|
615 |
#, fuzzy
|
616 |
msgid "Upgrade today!"
|
617 |
msgstr "Danas"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
#: dashboard/publisher/groups-edit.php:387
|
621 |
msgid "Expires soon."
|
622 |
msgstr "Ističe uskoro."
|
623 |
|
624 |
-
#: adrotate.php:
|
625 |
#: dashboard/publisher/groups-edit.php:388
|
626 |
msgid "Has expired."
|
627 |
msgstr "Isteklo je."
|
628 |
|
629 |
-
#: adrotate.php:
|
630 |
#, fuzzy
|
631 |
msgid "Media Management available in AdRotate Pro"
|
632 |
msgstr "Dostupno u AdRotate Pro"
|
633 |
|
634 |
-
#: adrotate.php:
|
635 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
msgid ""
|
640 |
"This is useful if you use responsive adverts with multiple images or have "
|
641 |
"HTML5 adverts containing multiple files."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: adrotate.php:
|
645 |
#, fuzzy
|
646 |
msgid "Media uploading and management is available in AdRotate Pro."
|
647 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
msgid "Upload new file"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
msgid "Accepted files:"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: adrotate.php:
|
658 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: adrotate.php:
|
662 |
msgid "Maximum size is 512Kb."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: adrotate.php:
|
666 |
msgid "Important:"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: adrotate.php:
|
670 |
msgid ""
|
671 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
672 |
"spaces with a - or _."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid ""
|
677 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
678 |
"file so it knows about the changed name. For example for the javascript file."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: adrotate.php:
|
682 |
msgid ""
|
683 |
"For responsive adverts make sure the filename is in the following format; "
|
684 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: adrotate.php:
|
688 |
msgid ""
|
689 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
690 |
"filename instead of \".full\" for the various viewports."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: adrotate.php:
|
694 |
-
#: dashboard/publisher/groups-edit.php:312
|
695 |
#: dashboard/publisher/groups-edit.php:320
|
696 |
msgid "Example:"
|
697 |
msgstr "Primer"
|
698 |
|
699 |
-
#: adrotate.php:
|
700 |
msgid ""
|
701 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
702 |
"for different viewports."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: adrotate.php:
|
706 |
msgid "Upload file"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: adrotate.php:
|
710 |
msgid "Click only once per file!"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: adrotate.php:
|
714 |
msgid "Available files in"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: adrotate.php:
|
718 |
#: dashboard/publisher/groups-main.php:33
|
719 |
msgid "Name"
|
720 |
msgstr "Ime"
|
721 |
|
722 |
-
#: adrotate.php:
|
723 |
#, fuzzy
|
724 |
msgid "Actions"
|
725 |
msgstr "Delo bulk-ovanja"
|
726 |
|
727 |
-
#: adrotate.php:
|
728 |
-
#: adrotate.php:
|
729 |
#: dashboard/publisher/adverts-disabled.php:22
|
730 |
#: dashboard/publisher/adverts-error.php:21
|
731 |
#: dashboard/publisher/adverts-main.php:22
|
732 |
msgid "Delete"
|
733 |
msgstr "Obrisati"
|
734 |
|
735 |
-
#: adrotate.php:
|
736 |
msgid ""
|
737 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: adrotate.php:
|
741 |
#, fuzzy
|
742 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
743 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
744 |
|
745 |
-
#: adrotate.php:
|
746 |
msgid "AdRotate Settings"
|
747 |
msgstr "AdRotate postavke"
|
748 |
|
749 |
-
#: adrotate.php:
|
750 |
msgid "Update Options"
|
751 |
msgstr "Update opcije"
|
752 |
|
@@ -764,22 +763,34 @@ msgid ""
|
|
764 |
msgstr ""
|
765 |
|
766 |
#: dashboard/adrotatepro.php:27
|
767 |
-
msgid "
|
768 |
msgstr ""
|
769 |
|
770 |
#: dashboard/adrotatepro.php:30
|
771 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
"Go nationwide or global with localized adverts for your various audiences. "
|
773 |
"Set up adverts for countries and cities and sell impressions per general "
|
774 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
775 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: dashboard/adrotatepro.php:
|
779 |
msgid "Get Premium Support almost all year round"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: dashboard/adrotatepro.php:
|
783 |
msgid ""
|
784 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
785 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -787,21 +798,21 @@ msgid ""
|
|
787 |
"forum. Get a solution (usually) within a day."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: dashboard/adrotatepro.php:
|
791 |
msgid "AdRotate is brought to you by"
|
792 |
msgstr "AdRotate vam je omogućio"
|
793 |
|
794 |
-
#: dashboard/adrotatepro.php:
|
795 |
msgid ""
|
796 |
-
"Premium plugins for WordPress and WooCommerce
|
797 |
-
"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: dashboard/adrotatepro.php:
|
801 |
msgid "Schedule all campaigns with ease"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: dashboard/adrotatepro.php:
|
805 |
msgid ""
|
806 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
807 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -809,11 +820,23 @@ msgid ""
|
|
809 |
"much more easy. You can set one or many schedules for adverts."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
813 |
msgid "Stay up-to-date with notifications"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: dashboard/adrotatepro.php:
|
817 |
msgid ""
|
818 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
819 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -822,95 +845,95 @@ msgid ""
|
|
822 |
"miss an expiration date again."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: dashboard/adrotatepro.php:
|
826 |
#: dashboard/info.php:93 dashboard/info.php:105
|
827 |
#, fuzzy
|
828 |
msgid "Buy AdRotate Professional"
|
829 |
msgstr "Kupite odmah"
|
830 |
|
831 |
-
#: dashboard/adrotatepro.php:
|
832 |
msgid "Single License"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: dashboard/adrotatepro.php:
|
836 |
#, fuzzy
|
837 |
msgid "For one WordPress installation."
|
838 |
msgstr "Instalacije"
|
839 |
|
840 |
-
#: dashboard/adrotatepro.php:
|
841 |
#: dashboard/info.php:98 dashboard/info.php:110
|
842 |
msgid "Duo License"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: dashboard/adrotatepro.php:
|
846 |
#, fuzzy
|
847 |
msgid "For two WordPress installations."
|
848 |
msgstr "Instalacije"
|
849 |
|
850 |
-
#: dashboard/adrotatepro.php:
|
851 |
#: dashboard/info.php:99 dashboard/info.php:111
|
852 |
msgid "Multi License"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: dashboard/adrotatepro.php:
|
856 |
#, fuzzy
|
857 |
msgid " For up to five WordPress installations."
|
858 |
msgstr "Instalacije"
|
859 |
|
860 |
-
#: dashboard/adrotatepro.php:
|
861 |
#: dashboard/info.php:100 dashboard/info.php:112
|
862 |
#, fuzzy
|
863 |
msgid "Developer License"
|
864 |
msgstr "Debug za programera"
|
865 |
|
866 |
-
#: dashboard/adrotatepro.php:
|
867 |
msgid "Unlimited WordPress installations and/or networks."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: dashboard/adrotatepro.php:
|
871 |
#: dashboard/info.php:101 dashboard/info.php:114
|
872 |
msgid "Compare licenses"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: dashboard/adrotatepro.php:
|
876 |
msgid "Not sure which license is for you? Compare them..."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: dashboard/adrotatepro.php:
|
880 |
#, fuzzy
|
881 |
msgid "All Licenses"
|
882 |
msgstr "Ponovo ocenite sve oglase"
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
msgid "Lifetime License"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
msgid "Single installation."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: dashboard/adrotatepro.php:
|
893 |
msgid "Up to 2 installations."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: dashboard/adrotatepro.php:
|
897 |
msgid "Up to 10 installations."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: dashboard/adrotatepro.php:
|
901 |
msgid "Up to 25 installations or multisite networks."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: dashboard/adrotatepro.php:
|
905 |
msgid ""
|
906 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: dashboard/adrotatepro.php:
|
910 |
msgid "Not sure which license is for you?"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: dashboard/adrotatepro.php:
|
914 |
msgid "Compare Licenses"
|
915 |
msgstr ""
|
916 |
|
@@ -1255,15 +1278,15 @@ msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
|
1255 |
|
1256 |
#: dashboard/publisher/adverts-edit.php:192
|
1257 |
#: dashboard/publisher/adverts-edit.php:292
|
1258 |
-
#: dashboard/publisher/adverts-edit.php:
|
1259 |
-
#: dashboard/publisher/adverts-edit.php:
|
1260 |
msgid "Save Advert"
|
1261 |
msgstr "Sačuvaj oglas"
|
1262 |
|
1263 |
#: dashboard/publisher/adverts-edit.php:193
|
1264 |
#: dashboard/publisher/adverts-edit.php:293
|
1265 |
-
#: dashboard/publisher/adverts-edit.php:
|
1266 |
-
#: dashboard/publisher/adverts-edit.php:
|
1267 |
#: dashboard/publisher/groups-edit.php:154
|
1268 |
#: dashboard/publisher/groups-edit.php:301
|
1269 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1271,35 +1294,35 @@ msgid "Cancel"
|
|
1271 |
msgstr "Ukini"
|
1272 |
|
1273 |
#: dashboard/publisher/adverts-edit.php:196
|
1274 |
-
#: dashboard/publisher/adverts-edit.php:
|
1275 |
#: dashboard/publisher/groups-edit.php:136
|
1276 |
#: dashboard/publisher/groups-edit.php:283
|
1277 |
msgid "Usage"
|
1278 |
msgstr "upotreba"
|
1279 |
|
1280 |
#: dashboard/publisher/adverts-edit.php:200
|
1281 |
-
#: dashboard/publisher/adverts-edit.php:
|
1282 |
#: dashboard/publisher/groups-edit.php:140
|
1283 |
#: dashboard/publisher/groups-edit.php:287
|
1284 |
msgid "Widget"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: dashboard/publisher/adverts-edit.php:201
|
1288 |
-
#: dashboard/publisher/adverts-edit.php:
|
1289 |
msgid ""
|
1290 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1291 |
"and enter ID"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: dashboard/publisher/adverts-edit.php:204
|
1295 |
-
#: dashboard/publisher/adverts-edit.php:
|
1296 |
#: dashboard/publisher/groups-edit.php:144
|
1297 |
#: dashboard/publisher/groups-edit.php:291
|
1298 |
msgid "In a post or page"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
#: dashboard/publisher/adverts-edit.php:206
|
1302 |
-
#: dashboard/publisher/adverts-edit.php:
|
1303 |
#: dashboard/publisher/groups-edit.php:146
|
1304 |
#: dashboard/publisher/groups-edit.php:293
|
1305 |
msgid "Directly in a theme"
|
@@ -1356,8 +1379,8 @@ msgid ""
|
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: dashboard/publisher/adverts-edit.php:289
|
1359 |
-
#: dashboard/publisher/adverts-edit.php:
|
1360 |
-
#: dashboard/publisher/adverts-edit.php:
|
1361 |
#: dashboard/publisher/groups-edit.php:200
|
1362 |
#, fuzzy
|
1363 |
msgid "Upgrade today"
|
@@ -1374,136 +1397,172 @@ msgid "Everything below is optional."
|
|
1374 |
msgstr "Naslov (opcionalno):"
|
1375 |
|
1376 |
#: dashboard/publisher/adverts-edit.php:301
|
1377 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1378 |
msgstr ""
|
1379 |
|
1380 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1381 |
#, fuzzy
|
1382 |
msgid "Enable responsive support for this advert."
|
1383 |
msgstr "Oglasi"
|
1384 |
|
1385 |
-
#: dashboard/publisher/adverts-edit.php:
|
1386 |
msgid ""
|
1387 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1388 |
-
"following format; \"imagename.full.ext\".
|
1389 |
-
"strongly recommended."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1393 |
#: dashboard/publisher/groups-edit.php:194
|
1394 |
msgid "Sortorder"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: dashboard/publisher/adverts-edit.php:
|
1398 |
#: dashboard/publisher/groups-edit.php:196
|
1399 |
msgid "For administrative purposes set a sortorder."
|
1400 |
msgstr "Za administrativne svrhe postavili sortorder ."
|
1401 |
|
1402 |
-
#: dashboard/publisher/adverts-edit.php:
|
1403 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1404 |
msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
msgid ""
|
1408 |
-
"With AdRotate Pro you can
|
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: dashboard/publisher/adverts-edit.php:
|
1412 |
msgid "Geo Targeting in AdRotate Pro"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: dashboard/publisher/adverts-edit.php:
|
1416 |
msgid ""
|
1417 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: dashboard/publisher/adverts-edit.php:
|
1421 |
msgid "Cities/States"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: dashboard/publisher/adverts-edit.php:
|
1425 |
msgid ""
|
1426 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1427 |
"states ISO codes are supported)"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: dashboard/publisher/adverts-edit.php:
|
1431 |
msgid ""
|
1432 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1433 |
"correctly!"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: dashboard/publisher/adverts-edit.php:
|
1437 |
msgid "Countries"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: dashboard/publisher/adverts-edit.php:
|
1441 |
#, fuzzy
|
1442 |
msgid "Select the countries you want the adverts to show in."
|
1443 |
msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
|
1444 |
|
1445 |
-
#: dashboard/publisher/adverts-edit.php:
|
1446 |
msgid "Cities take priority and will be filtered first."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: dashboard/publisher/adverts-edit.php:
|
1450 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: dashboard/publisher/adverts-edit.php:
|
1454 |
msgid "Select Groups"
|
1455 |
msgstr "Izbor grupe"
|
1456 |
|
1457 |
-
#: dashboard/publisher/adverts-edit.php:
|
1458 |
#, fuzzy
|
1459 |
msgid "ID - Name"
|
1460 |
msgstr "Ime"
|
1461 |
|
1462 |
-
#: dashboard/publisher/adverts-edit.php:
|
1463 |
#: dashboard/publisher/groups-main.php:60
|
1464 |
#: dashboard/settings/geotargeting.php:39
|
1465 |
#, fuzzy
|
1466 |
msgid "Default"
|
1467 |
msgstr "Default - Prikazati po jedan oglas"
|
1468 |
|
1469 |
-
#: dashboard/publisher/adverts-edit.php:
|
1470 |
#: dashboard/publisher/groups-main.php:61
|
1471 |
#, fuzzy
|
1472 |
msgid "Dynamic"
|
1473 |
msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
|
1474 |
|
1475 |
-
#: dashboard/publisher/adverts-edit.php:
|
1476 |
#: dashboard/publisher/groups-main.php:61
|
1477 |
#, fuzzy
|
1478 |
msgid "second rotation"
|
1479 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
1480 |
|
1481 |
-
#: dashboard/publisher/adverts-edit.php:
|
1482 |
#: dashboard/publisher/groups-main.php:62
|
1483 |
#, fuzzy
|
1484 |
msgid "Block"
|
1485 |
msgstr "Menadžmet blokiranih"
|
1486 |
|
1487 |
-
#: dashboard/publisher/adverts-edit.php:
|
1488 |
#: dashboard/publisher/groups-main.php:62
|
1489 |
#, fuzzy
|
1490 |
msgid "grid"
|
1491 |
msgstr ""
|
1492 |
"Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
|
1493 |
|
1494 |
-
#: dashboard/publisher/adverts-edit.php:
|
1495 |
#: dashboard/publisher/groups-edit.php:202
|
1496 |
#: dashboard/publisher/groups-main.php:63
|
1497 |
#, fuzzy
|
1498 |
msgid "Post Injection"
|
1499 |
msgstr "U post ili stranicu:"
|
1500 |
|
1501 |
-
#: dashboard/publisher/adverts-edit.php:
|
1502 |
#, fuzzy
|
1503 |
msgid "Geolocation"
|
1504 |
msgstr "GeoLocation"
|
1505 |
|
1506 |
-
#: dashboard/publisher/adverts-edit.php:
|
1507 |
#: dashboard/publisher/groups-edit.php:61
|
1508 |
#: dashboard/publisher/groups-main.php:70
|
1509 |
msgid "Mode"
|
@@ -1598,11 +1657,6 @@ msgstr "Klik danas"
|
|
1598 |
msgid "Monthly overview of clicks and impressions"
|
1599 |
msgstr "Mesečni pregled klikova i utisaka"
|
1600 |
|
1601 |
-
#: dashboard/publisher/adverts-report.php:58
|
1602 |
-
#: dashboard/publisher/groups-report.php:64
|
1603 |
-
msgid "Note:"
|
1604 |
-
msgstr "Beleška:"
|
1605 |
-
|
1606 |
#: dashboard/publisher/adverts-report.php:58
|
1607 |
#: dashboard/publisher/groups-report.php:64
|
1608 |
msgid ""
|
@@ -1966,9 +2020,8 @@ msgstr "Vi ste na putu da izbrišete grupu"
|
|
1966 |
msgid "This action can not be undone!"
|
1967 |
msgstr "Ovo delo se ne može povratiti!"
|
1968 |
|
1969 |
-
#: dashboard/publisher/groups-main.php:24
|
1970 |
-
#: dashboard/settings/maintenance.php:
|
1971 |
-
#: dashboard/settings/maintenance.php:34
|
1972 |
msgid "OK to continue, CANCEL to stop."
|
1973 |
msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
|
1974 |
|
@@ -2049,77 +2102,87 @@ msgid ""
|
|
2049 |
msgstr ""
|
2050 |
|
2051 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2052 |
#, fuzzy
|
2053 |
msgid "Load jQuery"
|
2054 |
msgstr ""
|
2055 |
"Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
|
2056 |
"Default: 6."
|
2057 |
|
2058 |
-
#: dashboard/settings/general.php:
|
2059 |
msgid ""
|
2060 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2061 |
"groups, statistics and some other features."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: dashboard/settings/general.php:
|
2065 |
msgid "Load scripts in footer?"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: dashboard/settings/general.php:
|
2069 |
msgid ""
|
2070 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2071 |
"site."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: dashboard/settings/general.php:
|
2075 |
msgid "Adblock disguise"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: dashboard/settings/general.php:
|
2079 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: dashboard/settings/general.php:
|
2083 |
msgid ""
|
2084 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: dashboard/settings/general.php:
|
2088 |
msgid ""
|
2089 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2090 |
"instead of the AdRotate widget."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: dashboard/settings/general.php:
|
2094 |
msgid ""
|
2095 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2096 |
"feature will have little effect!"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: dashboard/settings/general.php:
|
2100 |
msgid "Banner Folder"
|
2101 |
msgstr "Baner Folder"
|
2102 |
|
2103 |
-
#: dashboard/settings/general.php:
|
2104 |
#, fuzzy
|
2105 |
msgid "Set a location where your banner images will be stored."
|
2106 |
msgstr ""
|
2107 |
"Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
|
2108 |
"banners/)."
|
2109 |
|
2110 |
-
#: dashboard/settings/general.php:
|
2111 |
#, fuzzy
|
2112 |
msgid "Location"
|
2113 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
2114 |
|
2115 |
-
#: dashboard/settings/general.php:
|
2116 |
#, fuzzy
|
2117 |
msgid "(Default: wp-content/banners/)."
|
2118 |
msgstr ""
|
2119 |
"Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
|
2120 |
"banners/)."
|
2121 |
|
2122 |
-
#: dashboard/settings/general.php:
|
2123 |
msgid ""
|
2124 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2125 |
"like:"
|
@@ -2127,7 +2190,7 @@ msgstr ""
|
|
2127 |
"Da biste probali i prevarili blokatore oglasa možete da odredite folder u "
|
2128 |
"nešto ludo kao što su :"
|
2129 |
|
2130 |
-
#: dashboard/settings/general.php:
|
2131 |
msgid ""
|
2132 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2133 |
"will show errors when the folder is missing."
|
@@ -2135,37 +2198,37 @@ msgstr ""
|
|
2135 |
"Ovaj folder neće biti kreirani automatski ako se ona ne postoji . AdRotate "
|
2136 |
"će pokazati greške kada folder nedostaje ."
|
2137 |
|
2138 |
-
#: dashboard/settings/general.php:
|
2139 |
#, fuzzy
|
2140 |
msgid "Bot filter"
|
2141 |
msgstr "User- agent filter"
|
2142 |
|
2143 |
-
#: dashboard/settings/general.php:
|
2144 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: dashboard/settings/general.php:
|
2148 |
msgid "User-Agent Filter"
|
2149 |
msgstr "User- agent filter"
|
2150 |
|
2151 |
-
#: dashboard/settings/general.php:
|
2152 |
msgid ""
|
2153 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: dashboard/settings/general.php:
|
2157 |
msgid ""
|
2158 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2159 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: dashboard/settings/general.php:
|
2163 |
msgid ""
|
2164 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2165 |
"characters are stripped out."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: dashboard/settings/general.php:
|
2169 |
msgid ""
|
2170 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2171 |
"well."
|
@@ -2173,11 +2236,11 @@ msgstr ""
|
|
2173 |
"Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
|
2174 |
"dobro."
|
2175 |
|
2176 |
-
#: dashboard/settings/general.php:
|
2177 |
msgid "Learn more about"
|
2178 |
msgstr "Saznajte više o"
|
2179 |
|
2180 |
-
#: dashboard/settings/general.php:
|
2181 |
msgid "user-agents"
|
2182 |
msgstr "korisnici-agenti"
|
2183 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:45+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:45+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:849
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
+
#: adrotate-functions.php:852
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
+
#: adrotate-functions.php:901
|
28 |
msgid "Ad saved"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: adrotate-functions.php:905
|
32 |
msgid "Group saved"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: adrotate-functions.php:909
|
36 |
msgid "Ad(s) deleted"
|
37 |
msgstr "Izbrisani oglasu"
|
38 |
|
39 |
+
#: adrotate-functions.php:913
|
40 |
msgid "Group deleted"
|
41 |
msgstr "Izbrisana grupa"
|
42 |
|
43 |
+
#: adrotate-functions.php:917
|
44 |
msgid "Ad(s) statistics reset"
|
45 |
msgstr "Statistički resestovani oglasi"
|
46 |
|
47 |
+
#: adrotate-functions.php:921
|
48 |
msgid "Ad(s) renewed"
|
49 |
msgstr "Ponovo obnovljeni oglasi"
|
50 |
|
51 |
+
#: adrotate-functions.php:925
|
52 |
msgid "Ad(s) deactivated"
|
53 |
msgstr "Deaktivirani oglasi"
|
54 |
|
55 |
+
#: adrotate-functions.php:929
|
56 |
msgid "Ad(s) activated"
|
57 |
msgstr "Aktivirani oglasi"
|
58 |
|
59 |
+
#: adrotate-functions.php:933
|
60 |
msgid "Group including it's Ads deleted"
|
61 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
62 |
|
63 |
+
#: adrotate-functions.php:937
|
64 |
#, fuzzy
|
65 |
msgid "Export created"
|
66 |
msgstr "Izlazne opcije za"
|
67 |
|
68 |
+
#: adrotate-functions.php:942
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Postavke sačuvane"
|
71 |
|
72 |
+
#: adrotate-functions.php:946
|
73 |
msgid "Database optimized"
|
74 |
msgstr "Baza podataka optimizirana"
|
75 |
|
76 |
+
#: adrotate-functions.php:950
|
77 |
msgid "Database repaired"
|
78 |
msgstr "Baza podataka popravljena"
|
79 |
|
80 |
+
#: adrotate-functions.php:954
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
|
83 |
|
84 |
+
#: adrotate-functions.php:958
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
87 |
|
88 |
+
#: adrotate-functions.php:963
|
89 |
msgid "Action prohibited"
|
90 |
msgstr "Zabranjeno delo"
|
91 |
|
92 |
+
#: adrotate-functions.php:967
|
93 |
msgid ""
|
94 |
"The ad was saved but has an issue which might prevent it from working "
|
95 |
"properly. Review the colored ad."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: adrotate-functions.php:971
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
|
101 |
|
102 |
+
#: adrotate-functions.php:975
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
|
105 |
|
106 |
+
#: adrotate-functions.php:979
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: adrotate-functions.php:983
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:987
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-manage-publisher.php:712
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-output.php:639
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr "O ne! Nešto nije kako treba!"
|
125 |
|
126 |
+
#: adrotate-output.php:640
|
127 |
msgid ""
|
128 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
129 |
"Verify if the url used is valid or log in via your browser."
|
132 |
"kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
|
133 |
"pretraživača."
|
134 |
|
135 |
+
#: adrotate-output.php:641
|
136 |
msgid ""
|
137 |
"If you have received the url you want to visit via email, you are being "
|
138 |
"tricked!"
|
139 |
msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
|
140 |
|
141 |
+
#: adrotate-output.php:642
|
142 |
msgid "Contact support if the issue persists:"
|
143 |
msgstr "Kontaktirajte podršku ako se problem nastavi:"
|
144 |
|
145 |
+
#: adrotate-output.php:660
|
146 |
#, fuzzy
|
147 |
msgid ""
|
148 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
149 |
"restrictions or does not exist!"
|
150 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
151 |
|
152 |
+
#: adrotate-output.php:662
|
153 |
#, fuzzy
|
154 |
msgid ""
|
155 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
156 |
"restrictions!"
|
157 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
158 |
|
159 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
160 |
msgid ""
|
161 |
"Either there are no banners, they are disabled or none qualified for this "
|
162 |
"location!"
|
163 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
164 |
|
165 |
+
#: adrotate-output.php:677
|
166 |
msgid "Error, no Ad ID set! Check your syntax!"
|
167 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
168 |
|
169 |
+
#: adrotate-output.php:683
|
170 |
#, fuzzy
|
171 |
msgid "Error, no group ID set! Check your syntax!"
|
172 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
173 |
|
174 |
+
#: adrotate-output.php:688
|
175 |
#, fuzzy
|
176 |
msgid "Error, group does not exist! Check your syntax!"
|
177 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
178 |
|
179 |
+
#: adrotate-output.php:694
|
180 |
msgid ""
|
181 |
"There was an error locating the database tables for AdRotate. Please "
|
182 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
184 |
"Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
|
185 |
"deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
|
186 |
|
187 |
+
#: adrotate-output.php:694
|
188 |
msgid "If this does not solve the issue please seek support at"
|
189 |
msgstr "Ako ne reši problem potražite podršku na"
|
190 |
|
191 |
+
#: adrotate-output.php:700
|
192 |
msgid "An unknown error occured."
|
193 |
msgstr "Nepoznati error se ukazao."
|
194 |
|
195 |
+
#: adrotate-output.php:725
|
196 |
msgid "active ad(s) expired."
|
197 |
msgstr "aktivni ad-ovi su istekli."
|
198 |
|
199 |
+
#: adrotate-output.php:725
|
200 |
msgid "Take action now"
|
201 |
msgstr "Reagujte odmah"
|
202 |
|
203 |
+
#: adrotate-output.php:727
|
204 |
msgid "active ad(s) are about to expire."
|
205 |
msgstr "aktivni ad-ovi će uskoro da isteknu."
|
206 |
|
207 |
+
#: adrotate-output.php:727
|
208 |
msgid "Check it out"
|
209 |
msgstr "Pogledajte ovde"
|
210 |
|
211 |
+
#: adrotate-output.php:729
|
212 |
msgid "active ad(s) with configuration errors."
|
213 |
msgstr "aktivni ad-ovi sa konfiguracionim greškama."
|
214 |
|
215 |
+
#: adrotate-output.php:729
|
216 |
msgid "Solve this"
|
217 |
msgstr "Reši ovo"
|
218 |
|
219 |
+
#: adrotate-output.php:731
|
220 |
msgid "ad(s) expired."
|
221 |
msgstr "ad-ovi su istekli."
|
222 |
|
223 |
+
#: adrotate-output.php:731
|
224 |
msgid "ad(s) are about to expire."
|
225 |
msgstr "ad-ovi će uskoro da isteknu."
|
226 |
|
227 |
+
#: adrotate-output.php:731
|
228 |
msgid "ad(s) with configuration errors."
|
229 |
msgstr "ad-ovi sa konfiguracionim greškama."
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "Fix this as soon as possible"
|
233 |
msgstr "Popravi ovo što pre je moguće"
|
234 |
|
235 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
236 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
237 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
238 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
239 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
240 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
241 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
242 |
#: dashboard/settings/geotargeting.php:26
|
244 |
msgid "Buy now"
|
245 |
msgstr "Kupite odmah"
|
246 |
|
247 |
+
#: adrotate-output.php:744
|
248 |
msgid ""
|
249 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
250 |
"to the <strong>PRO</strong> version"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:744
|
254 |
#, php-format
|
255 |
msgid ""
|
256 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: adrotate-output.php:744
|
260 |
msgid "Thank you for your purchase!"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: adrotate-output.php:788
|
264 |
msgid ""
|
265 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
266 |
"this menu. Check out the"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: adrotate-output.php:788
|
270 |
msgid "manuals"
|
271 |
msgstr "priručnici"
|
272 |
|
273 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
274 |
msgid "and"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: adrotate-output.php:788
|
278 |
msgid "forums"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: adrotate-output.php:821
|
282 |
#, fuzzy
|
283 |
msgid "Useful Links"
|
284 |
msgstr "Korisni linkovi"
|
285 |
|
286 |
+
#: adrotate-output.php:822
|
287 |
msgid "Useful links to learn more about AdRotate"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: adrotate-output.php:824
|
291 |
#, fuzzy
|
292 |
msgid "AdRotate Page"
|
293 |
msgstr "AdRotate Pro"
|
294 |
|
295 |
+
#: adrotate-output.php:825
|
296 |
#, fuzzy
|
297 |
msgid "Getting Started With AdRotate"
|
298 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
299 |
|
300 |
+
#: adrotate-output.php:826
|
301 |
#, fuzzy
|
302 |
msgid "AdRotate manuals"
|
303 |
msgstr "AdRotate informacije"
|
304 |
|
305 |
+
#: adrotate-output.php:827
|
306 |
#, fuzzy
|
307 |
msgid "AdRotate Support Forum"
|
308 |
msgstr "AdRotate prodavnica"
|
309 |
|
310 |
+
#: adrotate-output.php:853
|
311 |
#, fuzzy
|
312 |
msgid "Help AdRotate Grow"
|
313 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
314 |
|
315 |
+
#: adrotate-output.php:854
|
316 |
msgid "Brought to you by"
|
317 |
msgstr "Za tebe od"
|
318 |
|
319 |
+
#: adrotate-output.php:861
|
320 |
msgid ""
|
321 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
322 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:861
|
326 |
msgid "If you find AdRotate useful please leave your honest"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:861
|
330 |
msgid "rating"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:861
|
334 |
#, fuzzy
|
335 |
msgid "review"
|
336 |
msgstr "Dajte ocenu i komentar"
|
337 |
|
338 |
+
#: adrotate-output.php:861
|
339 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: adrotate-output.php:893
|
343 |
msgid "Available in AdRotate Pro"
|
344 |
msgstr "Dostupno u AdRotate Pro"
|
345 |
|
346 |
+
#: adrotate-output.php:893
|
347 |
#, fuzzy
|
348 |
msgid "More information..."
|
349 |
msgstr "Saznajte više"
|
350 |
|
351 |
+
#: adrotate-output.php:894
|
352 |
msgid "This feature is available in AdRotate Pro"
|
353 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
354 |
|
355 |
+
#: adrotate-output.php:894
|
356 |
msgid "Learn more"
|
357 |
msgstr "Saznajte više"
|
358 |
|
474 |
msgid "Fill in the ID of the type you want to display!"
|
475 |
msgstr "Popunite ID tipa koji želite da prikažete!"
|
476 |
|
477 |
+
#: adrotate.php:106
|
478 |
msgid "General Info"
|
479 |
msgstr "Opšte informacije"
|
480 |
|
481 |
+
#: adrotate.php:107
|
482 |
msgid "AdRotate Pro"
|
483 |
msgstr "AdRotate Pro"
|
484 |
|
485 |
+
#: adrotate.php:108
|
486 |
msgid "Manage Ads"
|
487 |
msgstr "Upravljajte oglasima"
|
488 |
|
489 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
490 |
msgid "Manage Groups"
|
491 |
msgstr "Upravljajte grupama"
|
492 |
|
493 |
+
#: adrotate.php:110 adrotate.php:408
|
494 |
#, fuzzy
|
495 |
msgid "Manage Schedules"
|
496 |
msgstr "Upravljati"
|
497 |
|
498 |
+
#: adrotate.php:111
|
499 |
#, fuzzy
|
500 |
msgid "Manage Media"
|
501 |
msgstr "Media:"
|
502 |
|
503 |
+
#: adrotate.php:112
|
504 |
msgid "Settings"
|
505 |
msgstr "Postavke"
|
506 |
|
507 |
+
#: adrotate.php:135
|
508 |
msgid "AdRotate Info"
|
509 |
msgstr "AdRotate informacije"
|
510 |
|
511 |
+
#: adrotate.php:156
|
512 |
#, fuzzy
|
513 |
msgid "AdRotate Professional"
|
514 |
msgstr "AdRotate promocije"
|
515 |
|
516 |
+
#: adrotate.php:199
|
517 |
msgid "Ad Management"
|
518 |
msgstr "Menadžment oglasa"
|
519 |
|
520 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
521 |
msgid "Manage"
|
522 |
msgstr "Upravljati"
|
523 |
|
524 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
525 |
msgid "Add New"
|
526 |
msgstr "Dodati novi"
|
527 |
|
528 |
+
#: adrotate.php:337
|
529 |
msgid "Group Management"
|
530 |
msgstr "Menadžment grupe"
|
531 |
|
532 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
533 |
#: dashboard/publisher/groups-main.php:70
|
534 |
msgid "Report"
|
535 |
msgstr "Izveštaj"
|
536 |
|
537 |
+
#: adrotate.php:399
|
538 |
#, fuzzy
|
539 |
msgid "Schedule Management available in AdRotate Pro"
|
540 |
msgstr "Dostupno u AdRotate Pro"
|
541 |
|
542 |
+
#: adrotate.php:409
|
543 |
#, fuzzy
|
544 |
msgid ""
|
545 |
"Schedule management and multiple schedules per advert is available in "
|
546 |
"AdRotate Pro."
|
547 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
548 |
|
549 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
550 |
#: dashboard/publisher/adverts-main.php:114
|
551 |
#: dashboard/publisher/groups-edit.php:75
|
552 |
#: dashboard/publisher/groups-main.php:89
|
554 |
msgid "More information"
|
555 |
msgstr "Saznajte više"
|
556 |
|
557 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
558 |
#: dashboard/publisher/adverts-error.php:19
|
559 |
#: dashboard/publisher/adverts-main.php:20
|
560 |
#: dashboard/publisher/groups-main.php:20
|
561 |
msgid "Bulk Actions"
|
562 |
msgstr "Delo bulk-ovanja"
|
563 |
|
564 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
565 |
#: dashboard/publisher/adverts-error.php:29
|
566 |
#: dashboard/publisher/adverts-main.php:30
|
567 |
#: dashboard/publisher/groups-main.php:24
|
568 |
msgid "Go"
|
569 |
msgstr "Kreni"
|
570 |
|
571 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
572 |
#: dashboard/publisher/adverts-error.php:39
|
573 |
#: dashboard/publisher/adverts-main.php:39
|
574 |
#: dashboard/publisher/groups-edit.php:51
|
576 |
msgid "ID"
|
577 |
msgstr "ID"
|
578 |
|
579 |
+
#: adrotate.php:427
|
580 |
#, fuzzy
|
581 |
msgid "Start"
|
582 |
msgstr "Početno vreme (hh:mm):"
|
583 |
|
584 |
+
#: adrotate.php:427
|
585 |
#, fuzzy
|
586 |
msgid "End"
|
587 |
msgstr "Završno vreme (hh:mm):"
|
588 |
|
589 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
590 |
#: dashboard/publisher/groups-main.php:34
|
591 |
msgid "Ads"
|
592 |
msgstr "Oglasi"
|
593 |
|
594 |
+
#: adrotate.php:430
|
595 |
#, fuzzy
|
596 |
msgid "Max Impressions"
|
597 |
msgstr "Utisci"
|
598 |
|
599 |
+
#: adrotate.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Max Clicks"
|
602 |
msgstr "Klikovi"
|
603 |
|
604 |
+
#: adrotate.php:461
|
605 |
#, fuzzy
|
606 |
msgid "No schedules created yet!"
|
607 |
msgstr "Nijedan blok nije stvoren još uvek!"
|
608 |
|
609 |
+
#: adrotate.php:466
|
610 |
#, fuzzy
|
611 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
612 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
613 |
|
614 |
+
#: adrotate.php:466 adrotate.php:532
|
615 |
#, fuzzy
|
616 |
msgid "Upgrade today!"
|
617 |
msgstr "Danas"
|
618 |
|
619 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
620 |
#: dashboard/publisher/groups-edit.php:387
|
621 |
msgid "Expires soon."
|
622 |
msgstr "Ističe uskoro."
|
623 |
|
624 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
625 |
#: dashboard/publisher/groups-edit.php:388
|
626 |
msgid "Has expired."
|
627 |
msgstr "Isteklo je."
|
628 |
|
629 |
+
#: adrotate.php:494
|
630 |
#, fuzzy
|
631 |
msgid "Media Management available in AdRotate Pro"
|
632 |
msgstr "Dostupno u AdRotate Pro"
|
633 |
|
634 |
+
#: adrotate.php:496
|
635 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: adrotate.php:496
|
639 |
msgid ""
|
640 |
"This is useful if you use responsive adverts with multiple images or have "
|
641 |
"HTML5 adverts containing multiple files."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: adrotate.php:496
|
645 |
#, fuzzy
|
646 |
msgid "Media uploading and management is available in AdRotate Pro."
|
647 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
648 |
|
649 |
+
#: adrotate.php:498
|
650 |
msgid "Upload new file"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: adrotate.php:499
|
654 |
msgid "Accepted files:"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: adrotate.php:499
|
658 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: adrotate.php:499
|
662 |
msgid "Maximum size is 512Kb."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: adrotate.php:499
|
666 |
msgid "Important:"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: adrotate.php:499
|
670 |
msgid ""
|
671 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
672 |
"spaces with a - or _."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: adrotate.php:499
|
676 |
msgid ""
|
677 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
678 |
"file so it knows about the changed name. For example for the javascript file."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: adrotate.php:502
|
682 |
msgid ""
|
683 |
"For responsive adverts make sure the filename is in the following format; "
|
684 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
688 |
msgid ""
|
689 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
690 |
"filename instead of \".full\" for the various viewports."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
694 |
#: dashboard/publisher/groups-edit.php:320
|
695 |
msgid "Example:"
|
696 |
msgstr "Primer"
|
697 |
|
698 |
+
#: adrotate.php:504
|
699 |
msgid ""
|
700 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
701 |
"for different viewports."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: adrotate.php:508
|
705 |
msgid "Upload file"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: adrotate.php:508
|
709 |
msgid "Click only once per file!"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: adrotate.php:511
|
713 |
msgid "Available files in"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
717 |
#: dashboard/publisher/groups-main.php:33
|
718 |
msgid "Name"
|
719 |
msgstr "Ime"
|
720 |
|
721 |
+
#: adrotate.php:517
|
722 |
#, fuzzy
|
723 |
msgid "Actions"
|
724 |
msgstr "Delo bulk-ovanja"
|
725 |
|
726 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
727 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
728 |
#: dashboard/publisher/adverts-disabled.php:22
|
729 |
#: dashboard/publisher/adverts-error.php:21
|
730 |
#: dashboard/publisher/adverts-main.php:22
|
731 |
msgid "Delete"
|
732 |
msgstr "Obrisati"
|
733 |
|
734 |
+
#: adrotate.php:532
|
735 |
msgid ""
|
736 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: adrotate.php:532
|
740 |
#, fuzzy
|
741 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
742 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
743 |
|
744 |
+
#: adrotate.php:561
|
745 |
msgid "AdRotate Settings"
|
746 |
msgstr "AdRotate postavke"
|
747 |
|
748 |
+
#: adrotate.php:632
|
749 |
msgid "Update Options"
|
750 |
msgstr "Update opcije"
|
751 |
|
763 |
msgstr ""
|
764 |
|
765 |
#: dashboard/adrotatepro.php:27
|
766 |
+
msgid "Mobile campaigns"
|
767 |
msgstr ""
|
768 |
|
769 |
#: dashboard/adrotatepro.php:30
|
770 |
msgid ""
|
771 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
772 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
773 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
774 |
+
"and with a few easy to use options they show up where you want them to!"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: dashboard/adrotatepro.php:34
|
778 |
+
msgid "Localize your ad campaigns with Geo Targeting"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: dashboard/adrotatepro.php:37
|
782 |
+
msgid ""
|
783 |
"Go nationwide or global with localized adverts for your various audiences. "
|
784 |
"Set up adverts for countries and cities and sell impressions per general "
|
785 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
786 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: dashboard/adrotatepro.php:41
|
790 |
msgid "Get Premium Support almost all year round"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: dashboard/adrotatepro.php:44
|
794 |
msgid ""
|
795 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
796 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
798 |
"forum. Get a solution (usually) within a day."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
802 |
msgid "AdRotate is brought to you by"
|
803 |
msgstr "AdRotate vam je omogućio"
|
804 |
|
805 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
806 |
msgid ""
|
807 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
808 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: dashboard/adrotatepro.php:65
|
812 |
msgid "Schedule all campaigns with ease"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: dashboard/adrotatepro.php:68
|
816 |
msgid ""
|
817 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
818 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
820 |
"much more easy. You can set one or many schedules for adverts."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: dashboard/adrotatepro.php:72
|
824 |
+
msgid "Avoid adblockers"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: dashboard/adrotatepro.php:75
|
828 |
+
msgid ""
|
829 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
830 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
831 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
832 |
+
"adverts smartly so these features reach their full potential!"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: dashboard/adrotatepro.php:79
|
836 |
msgid "Stay up-to-date with notifications"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: dashboard/adrotatepro.php:82
|
840 |
msgid ""
|
841 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
842 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
845 |
"miss an expiration date again."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
849 |
#: dashboard/info.php:93 dashboard/info.php:105
|
850 |
#, fuzzy
|
851 |
msgid "Buy AdRotate Professional"
|
852 |
msgstr "Kupite odmah"
|
853 |
|
854 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
855 |
msgid "Single License"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
859 |
#, fuzzy
|
860 |
msgid "For one WordPress installation."
|
861 |
msgstr "Instalacije"
|
862 |
|
863 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
864 |
#: dashboard/info.php:98 dashboard/info.php:110
|
865 |
msgid "Duo License"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
869 |
#, fuzzy
|
870 |
msgid "For two WordPress installations."
|
871 |
msgstr "Instalacije"
|
872 |
|
873 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
874 |
#: dashboard/info.php:99 dashboard/info.php:111
|
875 |
msgid "Multi License"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
879 |
#, fuzzy
|
880 |
msgid " For up to five WordPress installations."
|
881 |
msgstr "Instalacije"
|
882 |
|
883 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
884 |
#: dashboard/info.php:100 dashboard/info.php:112
|
885 |
#, fuzzy
|
886 |
msgid "Developer License"
|
887 |
msgstr "Debug za programera"
|
888 |
|
889 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
890 |
msgid "Unlimited WordPress installations and/or networks."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
894 |
#: dashboard/info.php:101 dashboard/info.php:114
|
895 |
msgid "Compare licenses"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
899 |
msgid "Not sure which license is for you? Compare them..."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
903 |
#, fuzzy
|
904 |
msgid "All Licenses"
|
905 |
msgstr "Ponovo ocenite sve oglase"
|
906 |
|
907 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
908 |
msgid "Lifetime License"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
912 |
msgid "Single installation."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
916 |
msgid "Up to 2 installations."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
920 |
msgid "Up to 10 installations."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
924 |
msgid "Up to 25 installations or multisite networks."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
928 |
msgid ""
|
929 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
933 |
msgid "Not sure which license is for you?"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
937 |
msgid "Compare Licenses"
|
938 |
msgstr ""
|
939 |
|
1278 |
|
1279 |
#: dashboard/publisher/adverts-edit.php:192
|
1280 |
#: dashboard/publisher/adverts-edit.php:292
|
1281 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1282 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1283 |
msgid "Save Advert"
|
1284 |
msgstr "Sačuvaj oglas"
|
1285 |
|
1286 |
#: dashboard/publisher/adverts-edit.php:193
|
1287 |
#: dashboard/publisher/adverts-edit.php:293
|
1288 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1289 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1290 |
#: dashboard/publisher/groups-edit.php:154
|
1291 |
#: dashboard/publisher/groups-edit.php:301
|
1292 |
#: dashboard/publisher/groups-edit.php:393
|
1294 |
msgstr "Ukini"
|
1295 |
|
1296 |
#: dashboard/publisher/adverts-edit.php:196
|
1297 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1298 |
#: dashboard/publisher/groups-edit.php:136
|
1299 |
#: dashboard/publisher/groups-edit.php:283
|
1300 |
msgid "Usage"
|
1301 |
msgstr "upotreba"
|
1302 |
|
1303 |
#: dashboard/publisher/adverts-edit.php:200
|
1304 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1305 |
#: dashboard/publisher/groups-edit.php:140
|
1306 |
#: dashboard/publisher/groups-edit.php:287
|
1307 |
msgid "Widget"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: dashboard/publisher/adverts-edit.php:201
|
1311 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1312 |
msgid ""
|
1313 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1314 |
"and enter ID"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#: dashboard/publisher/adverts-edit.php:204
|
1318 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1319 |
#: dashboard/publisher/groups-edit.php:144
|
1320 |
#: dashboard/publisher/groups-edit.php:291
|
1321 |
msgid "In a post or page"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: dashboard/publisher/adverts-edit.php:206
|
1325 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1326 |
#: dashboard/publisher/groups-edit.php:146
|
1327 |
#: dashboard/publisher/groups-edit.php:293
|
1328 |
msgid "Directly in a theme"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
#: dashboard/publisher/adverts-edit.php:289
|
1382 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1383 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1384 |
#: dashboard/publisher/groups-edit.php:200
|
1385 |
#, fuzzy
|
1386 |
msgid "Upgrade today"
|
1397 |
msgstr "Naslov (opcionalno):"
|
1398 |
|
1399 |
#: dashboard/publisher/adverts-edit.php:301
|
1400 |
+
msgid "Mobile"
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1404 |
+
msgid "Show on;"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1408 |
+
msgid "Computers"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1412 |
+
msgid "Smartphones"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: dashboard/publisher/adverts-edit.php:303
|
1416 |
+
msgid "Tablets."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1420 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1424 |
+
msgid "Responsive"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1428 |
#, fuzzy
|
1429 |
msgid "Enable responsive support for this advert."
|
1430 |
msgstr "Oglasi"
|
1431 |
|
1432 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1433 |
msgid ""
|
1434 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1435 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1439 |
+
#: dashboard/publisher/adverts-report.php:58
|
1440 |
+
#: dashboard/publisher/groups-report.php:64
|
1441 |
+
msgid "Note:"
|
1442 |
+
msgstr "Beleška:"
|
1443 |
+
|
1444 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1445 |
+
msgid ""
|
1446 |
+
"This feature will not be developed any further. Consider switching to the "
|
1447 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1451 |
#: dashboard/publisher/groups-edit.php:194
|
1452 |
msgid "Sortorder"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1456 |
#: dashboard/publisher/groups-edit.php:196
|
1457 |
msgid "For administrative purposes set a sortorder."
|
1458 |
msgstr "Za administrativne svrhe postavili sortorder ."
|
1459 |
|
1460 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1461 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1462 |
msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
|
1463 |
|
1464 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1465 |
msgid ""
|
1466 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1467 |
+
"on!"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1471 |
msgid "Geo Targeting in AdRotate Pro"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1475 |
msgid ""
|
1476 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1480 |
msgid "Cities/States"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1484 |
msgid ""
|
1485 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1486 |
"states ISO codes are supported)"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1490 |
msgid ""
|
1491 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1492 |
"correctly!"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1496 |
msgid "Countries"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1500 |
#, fuzzy
|
1501 |
msgid "Select the countries you want the adverts to show in."
|
1502 |
msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
|
1503 |
|
1504 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1505 |
msgid "Cities take priority and will be filtered first."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1509 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1513 |
msgid "Select Groups"
|
1514 |
msgstr "Izbor grupe"
|
1515 |
|
1516 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1517 |
#, fuzzy
|
1518 |
msgid "ID - Name"
|
1519 |
msgstr "Ime"
|
1520 |
|
1521 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1522 |
#: dashboard/publisher/groups-main.php:60
|
1523 |
#: dashboard/settings/geotargeting.php:39
|
1524 |
#, fuzzy
|
1525 |
msgid "Default"
|
1526 |
msgstr "Default - Prikazati po jedan oglas"
|
1527 |
|
1528 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1529 |
#: dashboard/publisher/groups-main.php:61
|
1530 |
#, fuzzy
|
1531 |
msgid "Dynamic"
|
1532 |
msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
|
1533 |
|
1534 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1535 |
#: dashboard/publisher/groups-main.php:61
|
1536 |
#, fuzzy
|
1537 |
msgid "second rotation"
|
1538 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
1539 |
|
1540 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1541 |
#: dashboard/publisher/groups-main.php:62
|
1542 |
#, fuzzy
|
1543 |
msgid "Block"
|
1544 |
msgstr "Menadžmet blokiranih"
|
1545 |
|
1546 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1547 |
#: dashboard/publisher/groups-main.php:62
|
1548 |
#, fuzzy
|
1549 |
msgid "grid"
|
1550 |
msgstr ""
|
1551 |
"Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
|
1552 |
|
1553 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1554 |
#: dashboard/publisher/groups-edit.php:202
|
1555 |
#: dashboard/publisher/groups-main.php:63
|
1556 |
#, fuzzy
|
1557 |
msgid "Post Injection"
|
1558 |
msgstr "U post ili stranicu:"
|
1559 |
|
1560 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1561 |
#, fuzzy
|
1562 |
msgid "Geolocation"
|
1563 |
msgstr "GeoLocation"
|
1564 |
|
1565 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1566 |
#: dashboard/publisher/groups-edit.php:61
|
1567 |
#: dashboard/publisher/groups-main.php:70
|
1568 |
msgid "Mode"
|
1657 |
msgid "Monthly overview of clicks and impressions"
|
1658 |
msgstr "Mesečni pregled klikova i utisaka"
|
1659 |
|
|
|
|
|
|
|
|
|
|
|
1660 |
#: dashboard/publisher/adverts-report.php:58
|
1661 |
#: dashboard/publisher/groups-report.php:64
|
1662 |
msgid ""
|
2020 |
msgid "This action can not be undone!"
|
2021 |
msgstr "Ovo delo se ne može povratiti!"
|
2022 |
|
2023 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
2024 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2025 |
msgid "OK to continue, CANCEL to stop."
|
2026 |
msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
|
2027 |
|
2102 |
msgstr ""
|
2103 |
|
2104 |
#: dashboard/settings/general.php:20
|
2105 |
+
msgid "Dynamic mode for Mobile"
|
2106 |
+
msgstr ""
|
2107 |
+
|
2108 |
+
#: dashboard/settings/general.php:21
|
2109 |
+
msgid ""
|
2110 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2111 |
+
"jumping content."
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: dashboard/settings/general.php:24
|
2115 |
#, fuzzy
|
2116 |
msgid "Load jQuery"
|
2117 |
msgstr ""
|
2118 |
"Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
|
2119 |
"Default: 6."
|
2120 |
|
2121 |
+
#: dashboard/settings/general.php:25
|
2122 |
msgid ""
|
2123 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2124 |
"groups, statistics and some other features."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: dashboard/settings/general.php:28
|
2128 |
msgid "Load scripts in footer?"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: dashboard/settings/general.php:29
|
2132 |
msgid ""
|
2133 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2134 |
"site."
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: dashboard/settings/general.php:32
|
2138 |
msgid "Adblock disguise"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: dashboard/settings/general.php:34
|
2142 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: dashboard/settings/general.php:35
|
2146 |
msgid ""
|
2147 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: dashboard/settings/general.php:35
|
2151 |
msgid ""
|
2152 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2153 |
"instead of the AdRotate widget."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: dashboard/settings/general.php:35
|
2157 |
msgid ""
|
2158 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2159 |
"feature will have little effect!"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: dashboard/settings/general.php:40
|
2163 |
msgid "Banner Folder"
|
2164 |
msgstr "Baner Folder"
|
2165 |
|
2166 |
+
#: dashboard/settings/general.php:41
|
2167 |
#, fuzzy
|
2168 |
msgid "Set a location where your banner images will be stored."
|
2169 |
msgstr ""
|
2170 |
"Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
|
2171 |
"banners/)."
|
2172 |
|
2173 |
+
#: dashboard/settings/general.php:44
|
2174 |
#, fuzzy
|
2175 |
msgid "Location"
|
2176 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
2177 |
|
2178 |
+
#: dashboard/settings/general.php:46
|
2179 |
#, fuzzy
|
2180 |
msgid "(Default: wp-content/banners/)."
|
2181 |
msgstr ""
|
2182 |
"Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
|
2183 |
"banners/)."
|
2184 |
|
2185 |
+
#: dashboard/settings/general.php:47
|
2186 |
msgid ""
|
2187 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2188 |
"like:"
|
2190 |
"Da biste probali i prevarili blokatore oglasa možete da odredite folder u "
|
2191 |
"nešto ludo kao što su :"
|
2192 |
|
2193 |
+
#: dashboard/settings/general.php:48
|
2194 |
msgid ""
|
2195 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2196 |
"will show errors when the folder is missing."
|
2198 |
"Ovaj folder neće biti kreirani automatski ako se ona ne postoji . AdRotate "
|
2199 |
"će pokazati greške kada folder nedostaje ."
|
2200 |
|
2201 |
+
#: dashboard/settings/general.php:53
|
2202 |
#, fuzzy
|
2203 |
msgid "Bot filter"
|
2204 |
msgstr "User- agent filter"
|
2205 |
|
2206 |
+
#: dashboard/settings/general.php:54
|
2207 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: dashboard/settings/general.php:57
|
2211 |
msgid "User-Agent Filter"
|
2212 |
msgstr "User- agent filter"
|
2213 |
|
2214 |
+
#: dashboard/settings/general.php:60
|
2215 |
msgid ""
|
2216 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: dashboard/settings/general.php:61
|
2220 |
msgid ""
|
2221 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2222 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: dashboard/settings/general.php:62
|
2226 |
msgid ""
|
2227 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2228 |
"characters are stripped out."
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: dashboard/settings/general.php:63
|
2232 |
msgid ""
|
2233 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2234 |
"well."
|
2236 |
"Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
|
2237 |
"dobro."
|
2238 |
|
2239 |
+
#: dashboard/settings/general.php:63
|
2240 |
msgid "Learn more about"
|
2241 |
msgstr "Saznajte više o"
|
2242 |
|
2243 |
+
#: dashboard/settings/general.php:63
|
2244 |
msgid "user-agents"
|
2245 |
msgstr "korisnici-agenti"
|
2246 |
|
language/adrotate-sv_SV.mo
CHANGED
Binary file
|
language/adrotate-sv_SV.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
@@ -13,118 +13,118 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annons(er) raderas"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Grupp raderad"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Annons(er) statistik återställning"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Annons(er) förnyas"
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Annons(er) avaktiveras"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Annons(er) aktiveras"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Grupp inklusive dess annonser raderade"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "export skapad"
|
68 |
|
69 |
-
#: adrotate-functions.php:
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Inställningar sparas"
|
72 |
|
73 |
-
#: adrotate-functions.php:
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Databas optimerad"
|
76 |
|
77 |
-
#: adrotate-functions.php:
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Databas reparation"
|
80 |
|
81 |
-
#: adrotate-functions.php:
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "annonser utvärderas och status har rättats till vid behov"
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "Tomma databasposter tas bort"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "Åtgärden förbjuden"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid ""
|
95 |
"The ad was saved but has an issue which might prevent it from working "
|
96 |
"properly. Review the colored ad."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: adrotate-functions.php:
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "Inga data finns i vald tidsperiod"
|
102 |
|
103 |
-
#: adrotate-functions.php:
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
|
106 |
|
107 |
-
#: adrotate-functions.php:
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: adrotate-functions.php:
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: adrotate-functions.php:
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: adrotate-manage-publisher.php:
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: adrotate-output.php:
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr "Åh nej! Något gick fel!"
|
126 |
|
127 |
-
#: adrotate-output.php:
|
128 |
msgid ""
|
129 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
130 |
"Verify if the url used is valid or log in via your browser."
|
@@ -133,18 +133,18 @@ msgstr ""
|
|
133 |
"klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
|
134 |
"via webbläsaren."
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid ""
|
138 |
"If you have received the url you want to visit via email, you are being "
|
139 |
"tricked!"
|
140 |
msgstr ""
|
141 |
"Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
|
142 |
|
143 |
-
#: adrotate-output.php:
|
144 |
msgid "Contact support if the issue persists:"
|
145 |
msgstr "Kontakta support om problemet kvarstår:"
|
146 |
|
147 |
-
#: adrotate-output.php:
|
148 |
msgid ""
|
149 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
150 |
"restrictions or does not exist!"
|
@@ -152,7 +152,7 @@ msgstr ""
|
|
152 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
153 |
"geolokalisering restriktioner eller finns inte!"
|
154 |
|
155 |
-
#: adrotate-output.php:
|
156 |
msgid ""
|
157 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
158 |
"restrictions!"
|
@@ -160,7 +160,7 @@ msgstr ""
|
|
160 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
161 |
"geolokalisering begränsningar!"
|
162 |
|
163 |
-
#: adrotate-output.php:
|
164 |
msgid ""
|
165 |
"Either there are no banners, they are disabled or none qualified for this "
|
166 |
"location!"
|
@@ -168,19 +168,19 @@ msgstr ""
|
|
168 |
"Antingen finns det inga banderoller, de har inaktiverats eller inga "
|
169 |
"kvalificerade för den här platsen!"
|
170 |
|
171 |
-
#: adrotate-output.php:
|
172 |
msgid "Error, no Ad ID set! Check your syntax!"
|
173 |
msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
msgid "Error, no group ID set! Check your syntax!"
|
177 |
msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid "Error, group does not exist! Check your syntax!"
|
181 |
msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
msgid ""
|
185 |
"There was an error locating the database tables for AdRotate. Please "
|
186 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -188,59 +188,59 @@ msgstr ""
|
|
188 |
"Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
|
189 |
"avaktivera och återaktivera AdRotate från plugin sidan!"
|
190 |
|
191 |
-
#: adrotate-output.php:
|
192 |
msgid "If this does not solve the issue please seek support at"
|
193 |
msgstr "Om detta inte löser problemet vänligen söka stöd hos"
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
msgid "An unknown error occured."
|
197 |
msgstr "Ett okänt fel uppstod."
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid "active ad(s) expired."
|
201 |
msgstr "aktiv annons (er) gått ut."
|
202 |
|
203 |
-
#: adrotate-output.php:
|
204 |
msgid "Take action now"
|
205 |
msgstr "Agera nu"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "active ad(s) are about to expire."
|
209 |
msgstr "aktiv annons(er) är på väg att löpa ut."
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
msgid "Check it out"
|
213 |
msgstr "Kolla in det"
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "active ad(s) with configuration errors."
|
217 |
msgstr "aktiv annons(er) med konfigurationsfel."
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "Solve this"
|
221 |
msgstr "Lös det här"
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "ad(s) expired."
|
225 |
msgstr "annons(er) gått ut."
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "ad(s) are about to expire."
|
229 |
msgstr "annons(er) är på väg att löpa ut."
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "ad(s) with configuration errors."
|
233 |
msgstr "annons (er) med konfigurationsfel."
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "Fix this as soon as possible"
|
237 |
msgstr "Lös det här så fort som möjligt"
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
-
#: dashboard/adrotatepro.php:
|
241 |
-
#: dashboard/adrotatepro.php:
|
242 |
-
#: dashboard/adrotatepro.php:
|
243 |
-
#: dashboard/adrotatepro.php:
|
244 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
245 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
246 |
#: dashboard/settings/geotargeting.php:26
|
@@ -248,115 +248,115 @@ msgstr "Lös det här så fort som möjligt"
|
|
248 |
msgid "Buy now"
|
249 |
msgstr "Köp nu"
|
250 |
|
251 |
-
#: adrotate-output.php:
|
252 |
msgid ""
|
253 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
254 |
"to the <strong>PRO</strong> version"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
#, php-format
|
259 |
msgid ""
|
260 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: adrotate-output.php:
|
264 |
msgid "Thank you for your purchase!"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid ""
|
269 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
270 |
"this menu. Check out the"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
msgid "manuals"
|
275 |
msgstr "manual"
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "and"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "forums"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
#, fuzzy
|
287 |
msgid "Useful Links"
|
288 |
msgstr "Nyttiga länkar"
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
msgid "Useful links to learn more about AdRotate"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
#, fuzzy
|
296 |
msgid "AdRotate Page"
|
297 |
msgstr "AdRotate Pro"
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
#, fuzzy
|
301 |
msgid "Getting Started With AdRotate"
|
302 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate manuals"
|
307 |
msgstr "AdRotate Information"
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
#, fuzzy
|
311 |
msgid "AdRotate Support Forum"
|
312 |
msgstr "AdRotate butik"
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
#, fuzzy
|
316 |
msgid "Help AdRotate Grow"
|
317 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
318 |
|
319 |
-
#: adrotate-output.php:
|
320 |
msgid "Brought to you by"
|
321 |
msgstr "Presenteras av"
|
322 |
|
323 |
-
#: adrotate-output.php:
|
324 |
msgid ""
|
325 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
326 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: adrotate-output.php:
|
330 |
msgid "If you find AdRotate useful please leave your honest"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "rating"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
#, fuzzy
|
339 |
msgid "review"
|
340 |
msgstr "Betygsätt och omdöme"
|
341 |
|
342 |
-
#: adrotate-output.php:
|
343 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
msgid "Available in AdRotate Pro"
|
348 |
msgstr "Tillgänglig i AdRotate Pro"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
#, fuzzy
|
352 |
msgid "More information..."
|
353 |
msgstr "Mer info"
|
354 |
|
355 |
-
#: adrotate-output.php:
|
356 |
msgid "This feature is available in AdRotate Pro"
|
357 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
358 |
|
359 |
-
#: adrotate-output.php:
|
360 |
#, fuzzy
|
361 |
msgid "Learn more"
|
362 |
msgstr "Läs mer om"
|
@@ -478,79 +478,79 @@ msgstr "ID:"
|
|
478 |
msgid "Fill in the ID of the type you want to display!"
|
479 |
msgstr "Fyll i ID för den typ som du vill visa!"
|
480 |
|
481 |
-
#: adrotate.php:
|
482 |
msgid "General Info"
|
483 |
msgstr "Allmän info"
|
484 |
|
485 |
-
#: adrotate.php:
|
486 |
msgid "AdRotate Pro"
|
487 |
msgstr "AdRotate Pro"
|
488 |
|
489 |
-
#: adrotate.php:
|
490 |
msgid "Manage Ads"
|
491 |
msgstr "Hantera Annonser"
|
492 |
|
493 |
-
#: adrotate.php:
|
494 |
msgid "Manage Groups"
|
495 |
msgstr "Hantera Grupper"
|
496 |
|
497 |
-
#: adrotate.php:
|
498 |
#, fuzzy
|
499 |
msgid "Manage Schedules"
|
500 |
msgstr "Hantera"
|
501 |
|
502 |
-
#: adrotate.php:
|
503 |
#, fuzzy
|
504 |
msgid "Manage Media"
|
505 |
msgstr "Media:"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "Settings"
|
509 |
msgstr "Inställningar"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "AdRotate Info"
|
513 |
msgstr "AdRotate Information"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
#, fuzzy
|
517 |
msgid "AdRotate Professional"
|
518 |
msgstr "AdRotate"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "Ad Management"
|
522 |
msgstr "Annonshantering"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Manage"
|
526 |
msgstr "Hantera"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Add New"
|
530 |
msgstr "Lägg till ny"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
msgid "Group Management"
|
534 |
msgstr "Grupp Hantering"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
#: dashboard/publisher/groups-main.php:70
|
538 |
msgid "Report"
|
539 |
msgstr "Rapport"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
#, fuzzy
|
543 |
msgid "Schedule Management available in AdRotate Pro"
|
544 |
msgstr "Tillgänglig i AdRotate Pro"
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
#, fuzzy
|
548 |
msgid ""
|
549 |
"Schedule management and multiple schedules per advert is available in "
|
550 |
"AdRotate Pro."
|
551 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
#: dashboard/publisher/adverts-main.php:114
|
555 |
#: dashboard/publisher/groups-edit.php:75
|
556 |
#: dashboard/publisher/groups-main.php:89
|
@@ -558,21 +558,21 @@ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
|
558 |
msgid "More information"
|
559 |
msgstr "Mer info"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
#: dashboard/publisher/adverts-error.php:19
|
563 |
#: dashboard/publisher/adverts-main.php:20
|
564 |
#: dashboard/publisher/groups-main.php:20
|
565 |
msgid "Bulk Actions"
|
566 |
msgstr "Massåtgärder"
|
567 |
|
568 |
-
#: adrotate.php:
|
569 |
#: dashboard/publisher/adverts-error.php:29
|
570 |
#: dashboard/publisher/adverts-main.php:30
|
571 |
#: dashboard/publisher/groups-main.php:24
|
572 |
msgid "Go"
|
573 |
msgstr "Gå"
|
574 |
|
575 |
-
#: adrotate.php:
|
576 |
#: dashboard/publisher/adverts-error.php:39
|
577 |
#: dashboard/publisher/adverts-main.php:39
|
578 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -580,176 +580,175 @@ msgstr "Gå"
|
|
580 |
msgid "ID"
|
581 |
msgstr "ID"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#, fuzzy
|
585 |
msgid "Start"
|
586 |
msgstr "Starttid (hh: mm):"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
#, fuzzy
|
590 |
msgid "End"
|
591 |
msgstr "Avsluta tid (hh: mm):"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
#: dashboard/publisher/groups-main.php:34
|
595 |
msgid "Ads"
|
596 |
msgstr "Annonser"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
msgid "Max Impressions"
|
600 |
msgstr "Max Intryck"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
msgid "Max Clicks"
|
604 |
msgstr "Max Klick"
|
605 |
|
606 |
-
#: adrotate.php:
|
607 |
#, fuzzy
|
608 |
msgid "No schedules created yet!"
|
609 |
msgstr "Inga block har skapats än!"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
#, fuzzy
|
613 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
614 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#, fuzzy
|
618 |
msgid "Upgrade today!"
|
619 |
msgstr "i dag"
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#: dashboard/publisher/groups-edit.php:387
|
623 |
msgid "Expires soon."
|
624 |
msgstr "Utgår inom kort."
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#: dashboard/publisher/groups-edit.php:388
|
628 |
msgid "Has expired."
|
629 |
msgstr "Har gått ut."
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
#, fuzzy
|
633 |
msgid "Media Management available in AdRotate Pro"
|
634 |
msgstr "Tillgänglig i AdRotate Pro"
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: adrotate.php:
|
641 |
msgid ""
|
642 |
"This is useful if you use responsive adverts with multiple images or have "
|
643 |
"HTML5 adverts containing multiple files."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: adrotate.php:
|
647 |
#, fuzzy
|
648 |
msgid "Media uploading and management is available in AdRotate Pro."
|
649 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Upload new file"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid "Accepted files:"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
#, fuzzy
|
665 |
msgid "Maximum size is 512Kb."
|
666 |
msgstr "Maximal storlek är 512Kb."
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "Important:"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid ""
|
674 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
675 |
"spaces with a - or _."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: adrotate.php:
|
679 |
msgid ""
|
680 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
681 |
"file so it knows about the changed name. For example for the javascript file."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid ""
|
686 |
"For responsive adverts make sure the filename is in the following format; "
|
687 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: adrotate.php:
|
691 |
msgid ""
|
692 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
693 |
"filename instead of \".full\" for the various viewports."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
-
#: dashboard/publisher/groups-edit.php:312
|
698 |
#: dashboard/publisher/groups-edit.php:320
|
699 |
msgid "Example:"
|
700 |
msgstr "Exempel:"
|
701 |
|
702 |
-
#: adrotate.php:
|
703 |
msgid ""
|
704 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
705 |
"for different viewports."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: adrotate.php:
|
709 |
msgid "Upload file"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: adrotate.php:
|
713 |
msgid "Click only once per file!"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: adrotate.php:
|
717 |
msgid "Available files in"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
#: dashboard/publisher/groups-main.php:33
|
722 |
msgid "Name"
|
723 |
msgstr "Namn"
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
#, fuzzy
|
727 |
msgid "Actions"
|
728 |
msgstr "Massåtgärder"
|
729 |
|
730 |
-
#: adrotate.php:
|
731 |
-
#: adrotate.php:
|
732 |
#: dashboard/publisher/adverts-disabled.php:22
|
733 |
#: dashboard/publisher/adverts-error.php:21
|
734 |
#: dashboard/publisher/adverts-main.php:22
|
735 |
msgid "Delete"
|
736 |
msgstr "Radera"
|
737 |
|
738 |
-
#: adrotate.php:
|
739 |
msgid ""
|
740 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: adrotate.php:
|
744 |
#, fuzzy
|
745 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
746 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
747 |
|
748 |
-
#: adrotate.php:
|
749 |
msgid "AdRotate Settings"
|
750 |
msgstr "AdRotate Inställningar"
|
751 |
|
752 |
-
#: adrotate.php:
|
753 |
msgid "Update Options"
|
754 |
msgstr "Update Options"
|
755 |
|
@@ -767,22 +766,34 @@ msgid ""
|
|
767 |
msgstr ""
|
768 |
|
769 |
#: dashboard/adrotatepro.php:27
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
#: dashboard/adrotatepro.php:30
|
774 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
"Go nationwide or global with localized adverts for your various audiences. "
|
776 |
"Set up adverts for countries and cities and sell impressions per general "
|
777 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
778 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: dashboard/adrotatepro.php:
|
782 |
msgid "Get Premium Support almost all year round"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: dashboard/adrotatepro.php:
|
786 |
msgid ""
|
787 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
788 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
@@ -790,21 +801,21 @@ msgid ""
|
|
790 |
"forum. Get a solution (usually) within a day."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: dashboard/adrotatepro.php:
|
794 |
msgid "AdRotate is brought to you by"
|
795 |
msgstr "AdRotate kommer till dig genom"
|
796 |
|
797 |
-
#: dashboard/adrotatepro.php:
|
798 |
msgid ""
|
799 |
-
"Premium plugins for WordPress and WooCommerce
|
800 |
-
"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: dashboard/adrotatepro.php:
|
804 |
msgid "Schedule all campaigns with ease"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: dashboard/adrotatepro.php:
|
808 |
msgid ""
|
809 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
810 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -812,11 +823,23 @@ msgid ""
|
|
812 |
"much more easy. You can set one or many schedules for adverts."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: dashboard/adrotatepro.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
msgid "Stay up-to-date with notifications"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:
|
820 |
msgid ""
|
821 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
822 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -825,96 +848,96 @@ msgid ""
|
|
825 |
"miss an expiration date again."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: dashboard/adrotatepro.php:
|
829 |
#: dashboard/info.php:93 dashboard/info.php:105
|
830 |
#, fuzzy
|
831 |
msgid "Buy AdRotate Professional"
|
832 |
msgstr "Köp nu"
|
833 |
|
834 |
-
#: dashboard/adrotatepro.php:
|
835 |
msgid "Single License"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: dashboard/adrotatepro.php:
|
839 |
#, fuzzy
|
840 |
msgid "For one WordPress installation."
|
841 |
msgstr "Installation"
|
842 |
|
843 |
-
#: dashboard/adrotatepro.php:
|
844 |
#: dashboard/info.php:98 dashboard/info.php:110
|
845 |
#, fuzzy
|
846 |
msgid "Duo License"
|
847 |
msgstr "AdRotate Licens"
|
848 |
|
849 |
-
#: dashboard/adrotatepro.php:
|
850 |
#, fuzzy
|
851 |
msgid "For two WordPress installations."
|
852 |
msgstr "Installation"
|
853 |
|
854 |
-
#: dashboard/adrotatepro.php:
|
855 |
#: dashboard/info.php:99 dashboard/info.php:111
|
856 |
#, fuzzy
|
857 |
msgid "Multi License"
|
858 |
msgstr "AdRotate Licens"
|
859 |
|
860 |
-
#: dashboard/adrotatepro.php:
|
861 |
#, fuzzy
|
862 |
msgid " For up to five WordPress installations."
|
863 |
msgstr "Installation"
|
864 |
|
865 |
-
#: dashboard/adrotatepro.php:
|
866 |
#: dashboard/info.php:100 dashboard/info.php:112
|
867 |
#, fuzzy
|
868 |
msgid "Developer License"
|
869 |
msgstr "Utvecklar Debug"
|
870 |
|
871 |
-
#: dashboard/adrotatepro.php:
|
872 |
msgid "Unlimited WordPress installations and/or networks."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: dashboard/adrotatepro.php:
|
876 |
#: dashboard/info.php:101 dashboard/info.php:114
|
877 |
msgid "Compare licenses"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
msgid "Not sure which license is for you? Compare them..."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
msgid "All Licenses"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
msgid "Lifetime License"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: dashboard/adrotatepro.php:
|
893 |
msgid "Single installation."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: dashboard/adrotatepro.php:
|
897 |
msgid "Up to 2 installations."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: dashboard/adrotatepro.php:
|
901 |
msgid "Up to 10 installations."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: dashboard/adrotatepro.php:
|
905 |
msgid "Up to 25 installations or multisite networks."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: dashboard/adrotatepro.php:
|
909 |
msgid ""
|
910 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: dashboard/adrotatepro.php:
|
914 |
msgid "Not sure which license is for you?"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: dashboard/adrotatepro.php:
|
918 |
msgid "Compare Licenses"
|
919 |
msgstr ""
|
920 |
|
@@ -1255,15 +1278,15 @@ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
|
1255 |
|
1256 |
#: dashboard/publisher/adverts-edit.php:192
|
1257 |
#: dashboard/publisher/adverts-edit.php:292
|
1258 |
-
#: dashboard/publisher/adverts-edit.php:
|
1259 |
-
#: dashboard/publisher/adverts-edit.php:
|
1260 |
msgid "Save Advert"
|
1261 |
msgstr "Spara annons"
|
1262 |
|
1263 |
#: dashboard/publisher/adverts-edit.php:193
|
1264 |
#: dashboard/publisher/adverts-edit.php:293
|
1265 |
-
#: dashboard/publisher/adverts-edit.php:
|
1266 |
-
#: dashboard/publisher/adverts-edit.php:
|
1267 |
#: dashboard/publisher/groups-edit.php:154
|
1268 |
#: dashboard/publisher/groups-edit.php:301
|
1269 |
#: dashboard/publisher/groups-edit.php:393
|
@@ -1271,35 +1294,35 @@ msgid "Cancel"
|
|
1271 |
msgstr "Avbryt"
|
1272 |
|
1273 |
#: dashboard/publisher/adverts-edit.php:196
|
1274 |
-
#: dashboard/publisher/adverts-edit.php:
|
1275 |
#: dashboard/publisher/groups-edit.php:136
|
1276 |
#: dashboard/publisher/groups-edit.php:283
|
1277 |
msgid "Usage"
|
1278 |
msgstr "Användning"
|
1279 |
|
1280 |
#: dashboard/publisher/adverts-edit.php:200
|
1281 |
-
#: dashboard/publisher/adverts-edit.php:
|
1282 |
#: dashboard/publisher/groups-edit.php:140
|
1283 |
#: dashboard/publisher/groups-edit.php:287
|
1284 |
msgid "Widget"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: dashboard/publisher/adverts-edit.php:201
|
1288 |
-
#: dashboard/publisher/adverts-edit.php:
|
1289 |
msgid ""
|
1290 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1291 |
"and enter ID"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: dashboard/publisher/adverts-edit.php:204
|
1295 |
-
#: dashboard/publisher/adverts-edit.php:
|
1296 |
#: dashboard/publisher/groups-edit.php:144
|
1297 |
#: dashboard/publisher/groups-edit.php:291
|
1298 |
msgid "In a post or page"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
#: dashboard/publisher/adverts-edit.php:206
|
1302 |
-
#: dashboard/publisher/adverts-edit.php:
|
1303 |
#: dashboard/publisher/groups-edit.php:146
|
1304 |
#: dashboard/publisher/groups-edit.php:293
|
1305 |
msgid "Directly in a theme"
|
@@ -1356,8 +1379,8 @@ msgid ""
|
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: dashboard/publisher/adverts-edit.php:289
|
1359 |
-
#: dashboard/publisher/adverts-edit.php:
|
1360 |
-
#: dashboard/publisher/adverts-edit.php:
|
1361 |
#: dashboard/publisher/groups-edit.php:200
|
1362 |
#, fuzzy
|
1363 |
msgid "Upgrade today"
|
@@ -1373,61 +1396,97 @@ msgid "Everything below is optional."
|
|
1373 |
msgstr "Allt nedan är frivillig."
|
1374 |
|
1375 |
#: dashboard/publisher/adverts-edit.php:301
|
1376 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1377 |
msgstr ""
|
1378 |
|
1379 |
#: dashboard/publisher/adverts-edit.php:303
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1380 |
#, fuzzy
|
1381 |
msgid "Enable responsive support for this advert."
|
1382 |
msgstr "Aktivera klickspårning för denna annons."
|
1383 |
|
1384 |
-
#: dashboard/publisher/adverts-edit.php:
|
1385 |
msgid ""
|
1386 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1387 |
-
"following format; \"imagename.full.ext\".
|
1388 |
-
"strongly recommended."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1392 |
#: dashboard/publisher/groups-edit.php:194
|
1393 |
msgid "Sortorder"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: dashboard/publisher/adverts-edit.php:
|
1397 |
#: dashboard/publisher/groups-edit.php:196
|
1398 |
msgid "For administrative purposes set a sortorder."
|
1399 |
msgstr "För administrativa ändamål sätt en sortorder."
|
1400 |
|
1401 |
-
#: dashboard/publisher/adverts-edit.php:
|
1402 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1403 |
msgstr ""
|
1404 |
"Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
msgid ""
|
1408 |
-
"With AdRotate Pro you can
|
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: dashboard/publisher/adverts-edit.php:
|
1412 |
msgid "Geo Targeting in AdRotate Pro"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: dashboard/publisher/adverts-edit.php:
|
1416 |
msgid ""
|
1417 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: dashboard/publisher/adverts-edit.php:
|
1421 |
msgid "Cities/States"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: dashboard/publisher/adverts-edit.php:
|
1425 |
msgid ""
|
1426 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1427 |
"states ISO codes are supported)"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: dashboard/publisher/adverts-edit.php:
|
1431 |
#, fuzzy
|
1432 |
msgid ""
|
1433 |
"AdRotate does not check the validity of names so make sure you spell them "
|
@@ -1436,55 +1495,55 @@ msgstr ""
|
|
1436 |
"AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
|
1437 |
"rätt!"
|
1438 |
|
1439 |
-
#: dashboard/publisher/adverts-edit.php:
|
1440 |
msgid "Countries"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: dashboard/publisher/adverts-edit.php:
|
1444 |
#, fuzzy
|
1445 |
msgid "Select the countries you want the adverts to show in."
|
1446 |
msgstr "Välj de länder som du vill att annonser för att visa i."
|
1447 |
|
1448 |
-
#: dashboard/publisher/adverts-edit.php:
|
1449 |
#, fuzzy
|
1450 |
msgid "Cities take priority and will be filtered first."
|
1451 |
msgstr "Städer prioriteras och kommer att filtreras först."
|
1452 |
|
1453 |
-
#: dashboard/publisher/adverts-edit.php:
|
1454 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: dashboard/publisher/adverts-edit.php:
|
1458 |
msgid "Select Groups"
|
1459 |
msgstr "Välj Grupper"
|
1460 |
|
1461 |
-
#: dashboard/publisher/adverts-edit.php:
|
1462 |
msgid "ID - Name"
|
1463 |
msgstr "ID - Namn"
|
1464 |
|
1465 |
-
#: dashboard/publisher/adverts-edit.php:
|
1466 |
#: dashboard/publisher/groups-main.php:60
|
1467 |
#: dashboard/settings/geotargeting.php:39
|
1468 |
msgid "Default"
|
1469 |
msgstr "Default"
|
1470 |
|
1471 |
-
#: dashboard/publisher/adverts-edit.php:
|
1472 |
#: dashboard/publisher/groups-main.php:61
|
1473 |
msgid "Dynamic"
|
1474 |
msgstr "Dynamic"
|
1475 |
|
1476 |
-
#: dashboard/publisher/adverts-edit.php:
|
1477 |
#: dashboard/publisher/groups-main.php:61
|
1478 |
#, fuzzy
|
1479 |
msgid "second rotation"
|
1480 |
msgstr "Geo Location"
|
1481 |
|
1482 |
-
#: dashboard/publisher/adverts-edit.php:
|
1483 |
#: dashboard/publisher/groups-main.php:62
|
1484 |
msgid "Block"
|
1485 |
msgstr "Block"
|
1486 |
|
1487 |
-
#: dashboard/publisher/adverts-edit.php:
|
1488 |
#: dashboard/publisher/groups-main.php:62
|
1489 |
#, fuzzy
|
1490 |
msgid "grid"
|
@@ -1492,17 +1551,17 @@ msgstr ""
|
|
1492 |
"Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
|
1493 |
"(Standard: 2/2)"
|
1494 |
|
1495 |
-
#: dashboard/publisher/adverts-edit.php:
|
1496 |
#: dashboard/publisher/groups-edit.php:202
|
1497 |
#: dashboard/publisher/groups-main.php:63
|
1498 |
msgid "Post Injection"
|
1499 |
msgstr "Post injektion"
|
1500 |
|
1501 |
-
#: dashboard/publisher/adverts-edit.php:
|
1502 |
msgid "Geolocation"
|
1503 |
msgstr "Geolocation"
|
1504 |
|
1505 |
-
#: dashboard/publisher/adverts-edit.php:
|
1506 |
#: dashboard/publisher/groups-edit.php:61
|
1507 |
#: dashboard/publisher/groups-main.php:70
|
1508 |
msgid "Mode"
|
@@ -1596,11 +1655,6 @@ msgstr "Klick idag"
|
|
1596 |
msgid "Monthly overview of clicks and impressions"
|
1597 |
msgstr "Månads översikt av klick och visningar"
|
1598 |
|
1599 |
-
#: dashboard/publisher/adverts-report.php:58
|
1600 |
-
#: dashboard/publisher/groups-report.php:64
|
1601 |
-
msgid "Note:"
|
1602 |
-
msgstr "Notera:"
|
1603 |
-
|
1604 |
#: dashboard/publisher/adverts-report.php:58
|
1605 |
#: dashboard/publisher/groups-report.php:64
|
1606 |
msgid ""
|
@@ -1955,9 +2009,8 @@ msgstr "Du håller på att ta bort en grupp"
|
|
1955 |
msgid "This action can not be undone!"
|
1956 |
msgstr "Denna åtgärd kan inte ångras!"
|
1957 |
|
1958 |
-
#: dashboard/publisher/groups-main.php:24
|
1959 |
-
#: dashboard/settings/maintenance.php:
|
1960 |
-
#: dashboard/settings/maintenance.php:34
|
1961 |
msgid "OK to continue, CANCEL to stop."
|
1962 |
msgstr "OK för att fortsätta, CANCEL för att avbryta."
|
1963 |
|
@@ -2037,77 +2090,87 @@ msgid ""
|
|
2037 |
msgstr ""
|
2038 |
|
2039 |
#: dashboard/settings/general.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2040 |
#, fuzzy
|
2041 |
msgid "Load jQuery"
|
2042 |
msgstr ""
|
2043 |
"Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
|
2044 |
"om andra plugins eller teman redan läsa här."
|
2045 |
|
2046 |
-
#: dashboard/settings/general.php:
|
2047 |
msgid ""
|
2048 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2049 |
"groups, statistics and some other features."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: dashboard/settings/general.php:
|
2053 |
msgid "Load scripts in footer?"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: dashboard/settings/general.php:
|
2057 |
msgid ""
|
2058 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2059 |
"site."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: dashboard/settings/general.php:
|
2063 |
msgid "Adblock disguise"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: dashboard/settings/general.php:
|
2067 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: dashboard/settings/general.php:
|
2071 |
msgid ""
|
2072 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: dashboard/settings/general.php:
|
2076 |
msgid ""
|
2077 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2078 |
"instead of the AdRotate widget."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: dashboard/settings/general.php:
|
2082 |
msgid ""
|
2083 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2084 |
"feature will have little effect!"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: dashboard/settings/general.php:
|
2088 |
msgid "Banner Folder"
|
2089 |
msgstr "Banner Folder"
|
2090 |
|
2091 |
-
#: dashboard/settings/general.php:
|
2092 |
#, fuzzy
|
2093 |
msgid "Set a location where your banner images will be stored."
|
2094 |
msgstr ""
|
2095 |
"Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
|
2096 |
"banners /)."
|
2097 |
|
2098 |
-
#: dashboard/settings/general.php:
|
2099 |
#, fuzzy
|
2100 |
msgid "Location"
|
2101 |
msgstr "Geo Location"
|
2102 |
|
2103 |
-
#: dashboard/settings/general.php:
|
2104 |
#, fuzzy
|
2105 |
msgid "(Default: wp-content/banners/)."
|
2106 |
msgstr ""
|
2107 |
"Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
|
2108 |
"banners /)."
|
2109 |
|
2110 |
-
#: dashboard/settings/general.php:
|
2111 |
msgid ""
|
2112 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2113 |
"like:"
|
@@ -2115,7 +2178,7 @@ msgstr ""
|
|
2115 |
"Att försöka lura annons blockerare som du kan ställa in mappen till något "
|
2116 |
"galet som:"
|
2117 |
|
2118 |
-
#: dashboard/settings/general.php:
|
2119 |
msgid ""
|
2120 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2121 |
"will show errors when the folder is missing."
|
@@ -2123,48 +2186,48 @@ msgstr ""
|
|
2123 |
"Denna mapp kommer inte automatiskt att skapas om den inte existerar. "
|
2124 |
"AdRotate visar fel när mappen saknas."
|
2125 |
|
2126 |
-
#: dashboard/settings/general.php:
|
2127 |
#, fuzzy
|
2128 |
msgid "Bot filter"
|
2129 |
msgstr "User-Agent Filter"
|
2130 |
|
2131 |
-
#: dashboard/settings/general.php:
|
2132 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: dashboard/settings/general.php:
|
2136 |
msgid "User-Agent Filter"
|
2137 |
msgstr "User-Agent Filter"
|
2138 |
|
2139 |
-
#: dashboard/settings/general.php:
|
2140 |
msgid ""
|
2141 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: dashboard/settings/general.php:
|
2145 |
msgid ""
|
2146 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2147 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: dashboard/settings/general.php:
|
2151 |
msgid ""
|
2152 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2153 |
"characters are stripped out."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: dashboard/settings/general.php:
|
2157 |
msgid ""
|
2158 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2159 |
"well."
|
2160 |
msgstr ""
|
2161 |
"Ytterligare till listan anges här, tomma user-agents blockerades också."
|
2162 |
|
2163 |
-
#: dashboard/settings/general.php:
|
2164 |
msgid "Learn more about"
|
2165 |
msgstr "Läs mer om"
|
2166 |
|
2167 |
-
#: dashboard/settings/general.php:
|
2168 |
msgid "user-agents"
|
2169 |
msgstr "user-agents"
|
2170 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-16 23:45+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-16 23:45+0800\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:849
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
+
#: adrotate-functions.php:852
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
+
#: adrotate-functions.php:901
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:905
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:909
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annons(er) raderas"
|
39 |
|
40 |
+
#: adrotate-functions.php:913
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Grupp raderad"
|
43 |
|
44 |
+
#: adrotate-functions.php:917
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Annons(er) statistik återställning"
|
47 |
|
48 |
+
#: adrotate-functions.php:921
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Annons(er) förnyas"
|
51 |
|
52 |
+
#: adrotate-functions.php:925
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Annons(er) avaktiveras"
|
55 |
|
56 |
+
#: adrotate-functions.php:929
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Annons(er) aktiveras"
|
59 |
|
60 |
+
#: adrotate-functions.php:933
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Grupp inklusive dess annonser raderade"
|
63 |
|
64 |
+
#: adrotate-functions.php:937
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "export skapad"
|
68 |
|
69 |
+
#: adrotate-functions.php:942
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Inställningar sparas"
|
72 |
|
73 |
+
#: adrotate-functions.php:946
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Databas optimerad"
|
76 |
|
77 |
+
#: adrotate-functions.php:950
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Databas reparation"
|
80 |
|
81 |
+
#: adrotate-functions.php:954
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "annonser utvärderas och status har rättats till vid behov"
|
84 |
|
85 |
+
#: adrotate-functions.php:958
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "Tomma databasposter tas bort"
|
88 |
|
89 |
+
#: adrotate-functions.php:963
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "Åtgärden förbjuden"
|
92 |
|
93 |
+
#: adrotate-functions.php:967
|
94 |
msgid ""
|
95 |
"The ad was saved but has an issue which might prevent it from working "
|
96 |
"properly. Review the colored ad."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: adrotate-functions.php:971
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "Inga data finns i vald tidsperiod"
|
102 |
|
103 |
+
#: adrotate-functions.php:975
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
|
106 |
|
107 |
+
#: adrotate-functions.php:979
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: adrotate-functions.php:983
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: adrotate-functions.php:987
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: adrotate-manage-publisher.php:712
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: adrotate-output.php:639
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr "Åh nej! Något gick fel!"
|
126 |
|
127 |
+
#: adrotate-output.php:640
|
128 |
msgid ""
|
129 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
130 |
"Verify if the url used is valid or log in via your browser."
|
133 |
"klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
|
134 |
"via webbläsaren."
|
135 |
|
136 |
+
#: adrotate-output.php:641
|
137 |
msgid ""
|
138 |
"If you have received the url you want to visit via email, you are being "
|
139 |
"tricked!"
|
140 |
msgstr ""
|
141 |
"Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
|
142 |
|
143 |
+
#: adrotate-output.php:642
|
144 |
msgid "Contact support if the issue persists:"
|
145 |
msgstr "Kontakta support om problemet kvarstår:"
|
146 |
|
147 |
+
#: adrotate-output.php:660
|
148 |
msgid ""
|
149 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
150 |
"restrictions or does not exist!"
|
152 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
153 |
"geolokalisering restriktioner eller finns inte!"
|
154 |
|
155 |
+
#: adrotate-output.php:662
|
156 |
msgid ""
|
157 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
158 |
"restrictions!"
|
160 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
161 |
"geolokalisering begränsningar!"
|
162 |
|
163 |
+
#: adrotate-output.php:669 adrotate-output.php:671
|
164 |
msgid ""
|
165 |
"Either there are no banners, they are disabled or none qualified for this "
|
166 |
"location!"
|
168 |
"Antingen finns det inga banderoller, de har inaktiverats eller inga "
|
169 |
"kvalificerade för den här platsen!"
|
170 |
|
171 |
+
#: adrotate-output.php:677
|
172 |
msgid "Error, no Ad ID set! Check your syntax!"
|
173 |
msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
|
174 |
|
175 |
+
#: adrotate-output.php:683
|
176 |
msgid "Error, no group ID set! Check your syntax!"
|
177 |
msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
|
178 |
|
179 |
+
#: adrotate-output.php:688
|
180 |
msgid "Error, group does not exist! Check your syntax!"
|
181 |
msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
|
182 |
|
183 |
+
#: adrotate-output.php:694
|
184 |
msgid ""
|
185 |
"There was an error locating the database tables for AdRotate. Please "
|
186 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
188 |
"Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
|
189 |
"avaktivera och återaktivera AdRotate från plugin sidan!"
|
190 |
|
191 |
+
#: adrotate-output.php:694
|
192 |
msgid "If this does not solve the issue please seek support at"
|
193 |
msgstr "Om detta inte löser problemet vänligen söka stöd hos"
|
194 |
|
195 |
+
#: adrotate-output.php:700
|
196 |
msgid "An unknown error occured."
|
197 |
msgstr "Ett okänt fel uppstod."
|
198 |
|
199 |
+
#: adrotate-output.php:725
|
200 |
msgid "active ad(s) expired."
|
201 |
msgstr "aktiv annons (er) gått ut."
|
202 |
|
203 |
+
#: adrotate-output.php:725
|
204 |
msgid "Take action now"
|
205 |
msgstr "Agera nu"
|
206 |
|
207 |
+
#: adrotate-output.php:727
|
208 |
msgid "active ad(s) are about to expire."
|
209 |
msgstr "aktiv annons(er) är på väg att löpa ut."
|
210 |
|
211 |
+
#: adrotate-output.php:727
|
212 |
msgid "Check it out"
|
213 |
msgstr "Kolla in det"
|
214 |
|
215 |
+
#: adrotate-output.php:729
|
216 |
msgid "active ad(s) with configuration errors."
|
217 |
msgstr "aktiv annons(er) med konfigurationsfel."
|
218 |
|
219 |
+
#: adrotate-output.php:729
|
220 |
msgid "Solve this"
|
221 |
msgstr "Lös det här"
|
222 |
|
223 |
+
#: adrotate-output.php:731
|
224 |
msgid "ad(s) expired."
|
225 |
msgstr "annons(er) gått ut."
|
226 |
|
227 |
+
#: adrotate-output.php:731
|
228 |
msgid "ad(s) are about to expire."
|
229 |
msgstr "annons(er) är på väg att löpa ut."
|
230 |
|
231 |
+
#: adrotate-output.php:731
|
232 |
msgid "ad(s) with configuration errors."
|
233 |
msgstr "annons (er) med konfigurationsfel."
|
234 |
|
235 |
+
#: adrotate-output.php:731
|
236 |
msgid "Fix this as soon as possible"
|
237 |
msgstr "Lös det här så fort som möjligt"
|
238 |
|
239 |
+
#: adrotate-output.php:743 dashboard/adrotatepro.php:90
|
240 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:92
|
241 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:102
|
242 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:104
|
243 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:97 dashboard/info.php:98
|
244 |
#: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
|
245 |
#: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
|
246 |
#: dashboard/settings/geotargeting.php:26
|
248 |
msgid "Buy now"
|
249 |
msgstr "Köp nu"
|
250 |
|
251 |
+
#: adrotate-output.php:744
|
252 |
msgid ""
|
253 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
254 |
"to the <strong>PRO</strong> version"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:744
|
258 |
#, php-format
|
259 |
msgid ""
|
260 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: adrotate-output.php:744
|
264 |
msgid "Thank you for your purchase!"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: adrotate-output.php:788
|
268 |
msgid ""
|
269 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
270 |
"this menu. Check out the"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:788
|
274 |
msgid "manuals"
|
275 |
msgstr "manual"
|
276 |
|
277 |
+
#: adrotate-output.php:788 adrotate-output.php:861
|
278 |
msgid "and"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: adrotate-output.php:788
|
282 |
msgid "forums"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: adrotate-output.php:821
|
286 |
#, fuzzy
|
287 |
msgid "Useful Links"
|
288 |
msgstr "Nyttiga länkar"
|
289 |
|
290 |
+
#: adrotate-output.php:822
|
291 |
msgid "Useful links to learn more about AdRotate"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: adrotate-output.php:824
|
295 |
#, fuzzy
|
296 |
msgid "AdRotate Page"
|
297 |
msgstr "AdRotate Pro"
|
298 |
|
299 |
+
#: adrotate-output.php:825
|
300 |
#, fuzzy
|
301 |
msgid "Getting Started With AdRotate"
|
302 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
303 |
|
304 |
+
#: adrotate-output.php:826
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate manuals"
|
307 |
msgstr "AdRotate Information"
|
308 |
|
309 |
+
#: adrotate-output.php:827
|
310 |
#, fuzzy
|
311 |
msgid "AdRotate Support Forum"
|
312 |
msgstr "AdRotate butik"
|
313 |
|
314 |
+
#: adrotate-output.php:853
|
315 |
#, fuzzy
|
316 |
msgid "Help AdRotate Grow"
|
317 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
318 |
|
319 |
+
#: adrotate-output.php:854
|
320 |
msgid "Brought to you by"
|
321 |
msgstr "Presenteras av"
|
322 |
|
323 |
+
#: adrotate-output.php:861
|
324 |
msgid ""
|
325 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
326 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:861
|
330 |
msgid "If you find AdRotate useful please leave your honest"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:861
|
334 |
msgid "rating"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:861
|
338 |
#, fuzzy
|
339 |
msgid "review"
|
340 |
msgstr "Betygsätt och omdöme"
|
341 |
|
342 |
+
#: adrotate-output.php:861
|
343 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: adrotate-output.php:893
|
347 |
msgid "Available in AdRotate Pro"
|
348 |
msgstr "Tillgänglig i AdRotate Pro"
|
349 |
|
350 |
+
#: adrotate-output.php:893
|
351 |
#, fuzzy
|
352 |
msgid "More information..."
|
353 |
msgstr "Mer info"
|
354 |
|
355 |
+
#: adrotate-output.php:894
|
356 |
msgid "This feature is available in AdRotate Pro"
|
357 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
358 |
|
359 |
+
#: adrotate-output.php:894
|
360 |
#, fuzzy
|
361 |
msgid "Learn more"
|
362 |
msgstr "Läs mer om"
|
478 |
msgid "Fill in the ID of the type you want to display!"
|
479 |
msgstr "Fyll i ID för den typ som du vill visa!"
|
480 |
|
481 |
+
#: adrotate.php:106
|
482 |
msgid "General Info"
|
483 |
msgstr "Allmän info"
|
484 |
|
485 |
+
#: adrotate.php:107
|
486 |
msgid "AdRotate Pro"
|
487 |
msgstr "AdRotate Pro"
|
488 |
|
489 |
+
#: adrotate.php:108
|
490 |
msgid "Manage Ads"
|
491 |
msgstr "Hantera Annonser"
|
492 |
|
493 |
+
#: adrotate.php:109 dashboard/publisher/groups-main.php:12
|
494 |
msgid "Manage Groups"
|
495 |
msgstr "Hantera Grupper"
|
496 |
|
497 |
+
#: adrotate.php:110 adrotate.php:408
|
498 |
#, fuzzy
|
499 |
msgid "Manage Schedules"
|
500 |
msgstr "Hantera"
|
501 |
|
502 |
+
#: adrotate.php:111
|
503 |
#, fuzzy
|
504 |
msgid "Manage Media"
|
505 |
msgstr "Media:"
|
506 |
|
507 |
+
#: adrotate.php:112
|
508 |
msgid "Settings"
|
509 |
msgstr "Inställningar"
|
510 |
|
511 |
+
#: adrotate.php:135
|
512 |
msgid "AdRotate Info"
|
513 |
msgstr "AdRotate Information"
|
514 |
|
515 |
+
#: adrotate.php:156
|
516 |
#, fuzzy
|
517 |
msgid "AdRotate Professional"
|
518 |
msgstr "AdRotate"
|
519 |
|
520 |
+
#: adrotate.php:199
|
521 |
msgid "Ad Management"
|
522 |
msgstr "Annonshantering"
|
523 |
|
524 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
525 |
msgid "Manage"
|
526 |
msgstr "Hantera"
|
527 |
|
528 |
+
#: adrotate.php:259 adrotate.php:345 adrotate.php:404
|
529 |
msgid "Add New"
|
530 |
msgstr "Lägg till ny"
|
531 |
|
532 |
+
#: adrotate.php:337
|
533 |
msgid "Group Management"
|
534 |
msgstr "Grupp Hantering"
|
535 |
|
536 |
+
#: adrotate.php:347 dashboard/publisher/adverts-main.php:87
|
537 |
#: dashboard/publisher/groups-main.php:70
|
538 |
msgid "Report"
|
539 |
msgstr "Rapport"
|
540 |
|
541 |
+
#: adrotate.php:399
|
542 |
#, fuzzy
|
543 |
msgid "Schedule Management available in AdRotate Pro"
|
544 |
msgstr "Tillgänglig i AdRotate Pro"
|
545 |
|
546 |
+
#: adrotate.php:409
|
547 |
#, fuzzy
|
548 |
msgid ""
|
549 |
"Schedule management and multiple schedules per advert is available in "
|
550 |
"AdRotate Pro."
|
551 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
552 |
|
553 |
+
#: adrotate.php:409 adrotate.php:496 dashboard/publisher/adverts-edit.php:189
|
554 |
#: dashboard/publisher/adverts-main.php:114
|
555 |
#: dashboard/publisher/groups-edit.php:75
|
556 |
#: dashboard/publisher/groups-main.php:89
|
558 |
msgid "More information"
|
559 |
msgstr "Mer info"
|
560 |
|
561 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:20
|
562 |
#: dashboard/publisher/adverts-error.php:19
|
563 |
#: dashboard/publisher/adverts-main.php:20
|
564 |
#: dashboard/publisher/groups-main.php:20
|
565 |
msgid "Bulk Actions"
|
566 |
msgstr "Massåtgärder"
|
567 |
|
568 |
+
#: adrotate.php:417 dashboard/publisher/adverts-disabled.php:25
|
569 |
#: dashboard/publisher/adverts-error.php:29
|
570 |
#: dashboard/publisher/adverts-main.php:30
|
571 |
#: dashboard/publisher/groups-main.php:24
|
572 |
msgid "Go"
|
573 |
msgstr "Gå"
|
574 |
|
575 |
+
#: adrotate.php:426 dashboard/publisher/adverts-disabled.php:35
|
576 |
#: dashboard/publisher/adverts-error.php:39
|
577 |
#: dashboard/publisher/adverts-main.php:39
|
578 |
#: dashboard/publisher/groups-edit.php:51
|
580 |
msgid "ID"
|
581 |
msgstr "ID"
|
582 |
|
583 |
+
#: adrotate.php:427
|
584 |
#, fuzzy
|
585 |
msgid "Start"
|
586 |
msgstr "Starttid (hh: mm):"
|
587 |
|
588 |
+
#: adrotate.php:427
|
589 |
#, fuzzy
|
590 |
msgid "End"
|
591 |
msgstr "Avsluta tid (hh: mm):"
|
592 |
|
593 |
+
#: adrotate.php:428 dashboard/publisher/adverts-edit.php:398
|
594 |
#: dashboard/publisher/groups-main.php:34
|
595 |
msgid "Ads"
|
596 |
msgstr "Annonser"
|
597 |
|
598 |
+
#: adrotate.php:430
|
599 |
msgid "Max Impressions"
|
600 |
msgstr "Max Intryck"
|
601 |
|
602 |
+
#: adrotate.php:431
|
603 |
msgid "Max Clicks"
|
604 |
msgstr "Max Klick"
|
605 |
|
606 |
+
#: adrotate.php:461
|
607 |
#, fuzzy
|
608 |
msgid "No schedules created yet!"
|
609 |
msgstr "Inga block har skapats än!"
|
610 |
|
611 |
+
#: adrotate.php:466
|
612 |
#, fuzzy
|
613 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
614 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
615 |
|
616 |
+
#: adrotate.php:466 adrotate.php:532
|
617 |
#, fuzzy
|
618 |
msgid "Upgrade today!"
|
619 |
msgstr "i dag"
|
620 |
|
621 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:72
|
622 |
#: dashboard/publisher/groups-edit.php:387
|
623 |
msgid "Expires soon."
|
624 |
msgstr "Utgår inom kort."
|
625 |
|
626 |
+
#: adrotate.php:470 dashboard/publisher/adverts-error.php:73
|
627 |
#: dashboard/publisher/groups-edit.php:388
|
628 |
msgid "Has expired."
|
629 |
msgstr "Har gått ut."
|
630 |
|
631 |
+
#: adrotate.php:494
|
632 |
#, fuzzy
|
633 |
msgid "Media Management available in AdRotate Pro"
|
634 |
msgstr "Tillgänglig i AdRotate Pro"
|
635 |
|
636 |
+
#: adrotate.php:496
|
637 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: adrotate.php:496
|
641 |
msgid ""
|
642 |
"This is useful if you use responsive adverts with multiple images or have "
|
643 |
"HTML5 adverts containing multiple files."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:496
|
647 |
#, fuzzy
|
648 |
msgid "Media uploading and management is available in AdRotate Pro."
|
649 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
650 |
|
651 |
+
#: adrotate.php:498
|
652 |
msgid "Upload new file"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: adrotate.php:499
|
656 |
msgid "Accepted files:"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: adrotate.php:499
|
660 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: adrotate.php:499
|
664 |
#, fuzzy
|
665 |
msgid "Maximum size is 512Kb."
|
666 |
msgstr "Maximal storlek är 512Kb."
|
667 |
|
668 |
+
#: adrotate.php:499
|
669 |
msgid "Important:"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: adrotate.php:499
|
673 |
msgid ""
|
674 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
675 |
"spaces with a - or _."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: adrotate.php:499
|
679 |
msgid ""
|
680 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
681 |
"file so it knows about the changed name. For example for the javascript file."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: adrotate.php:502
|
685 |
msgid ""
|
686 |
"For responsive adverts make sure the filename is in the following format; "
|
687 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: adrotate.php:503 dashboard/publisher/adverts-edit.php:312
|
691 |
msgid ""
|
692 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
693 |
"filename instead of \".full\" for the various viewports."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: adrotate.php:504 dashboard/publisher/groups-edit.php:312
|
|
|
697 |
#: dashboard/publisher/groups-edit.php:320
|
698 |
msgid "Example:"
|
699 |
msgstr "Exempel:"
|
700 |
|
701 |
+
#: adrotate.php:504
|
702 |
msgid ""
|
703 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
704 |
"for different viewports."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: adrotate.php:508
|
708 |
msgid "Upload file"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: adrotate.php:508
|
712 |
msgid "Click only once per file!"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: adrotate.php:511
|
716 |
msgid "Available files in"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: adrotate.php:516 dashboard/publisher/groups-edit.php:55
|
720 |
#: dashboard/publisher/groups-main.php:33
|
721 |
msgid "Name"
|
722 |
msgstr "Namn"
|
723 |
|
724 |
+
#: adrotate.php:517
|
725 |
#, fuzzy
|
726 |
msgid "Actions"
|
727 |
msgstr "Massåtgärder"
|
728 |
|
729 |
+
#: adrotate.php:522 adrotate.php:523 adrotate.php:524 adrotate.php:525
|
730 |
+
#: adrotate.php:526 adrotate.php:527 adrotate.php:528
|
731 |
#: dashboard/publisher/adverts-disabled.php:22
|
732 |
#: dashboard/publisher/adverts-error.php:21
|
733 |
#: dashboard/publisher/adverts-main.php:22
|
734 |
msgid "Delete"
|
735 |
msgstr "Radera"
|
736 |
|
737 |
+
#: adrotate.php:532
|
738 |
msgid ""
|
739 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: adrotate.php:532
|
743 |
#, fuzzy
|
744 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
745 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
746 |
|
747 |
+
#: adrotate.php:561
|
748 |
msgid "AdRotate Settings"
|
749 |
msgstr "AdRotate Inställningar"
|
750 |
|
751 |
+
#: adrotate.php:632
|
752 |
msgid "Update Options"
|
753 |
msgstr "Update Options"
|
754 |
|
766 |
msgstr ""
|
767 |
|
768 |
#: dashboard/adrotatepro.php:27
|
769 |
+
msgid "Mobile campaigns"
|
770 |
msgstr ""
|
771 |
|
772 |
#: dashboard/adrotatepro.php:30
|
773 |
msgid ""
|
774 |
+
"Target mobile users with ease and show the right adverts to smartphones, "
|
775 |
+
"tablets and computers. Mix and match as you please and offer adverts that "
|
776 |
+
"suit the device. Create as many mobile adverts as you want without effort "
|
777 |
+
"and with a few easy to use options they show up where you want them to!"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: dashboard/adrotatepro.php:34
|
781 |
+
msgid "Localize your ad campaigns with Geo Targeting"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: dashboard/adrotatepro.php:37
|
785 |
+
msgid ""
|
786 |
"Go nationwide or global with localized adverts for your various audiences. "
|
787 |
"Set up adverts for countries and cities and sell impressions per general "
|
788 |
"area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
|
789 |
"Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: dashboard/adrotatepro.php:41
|
793 |
msgid "Get Premium Support almost all year round"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: dashboard/adrotatepro.php:44
|
797 |
msgid ""
|
798 |
"When you activate your AdRotate Pro license you can use fast and personal "
|
799 |
"email support. No more queueing up in the forums. AdRotate premium support "
|
801 |
"forum. Get a solution (usually) within a day."
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:119
|
805 |
msgid "AdRotate is brought to you by"
|
806 |
msgstr "AdRotate kommer till dig genom"
|
807 |
|
808 |
+
#: dashboard/adrotatepro.php:52 dashboard/info.php:123
|
809 |
msgid ""
|
810 |
+
"Premium plugins for WordPress and WooCommerce! Protect against bots without "
|
811 |
+
"hindering real users. Need checkout solutions for your WooCommerce store?"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: dashboard/adrotatepro.php:65
|
815 |
msgid "Schedule all campaigns with ease"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: dashboard/adrotatepro.php:68
|
819 |
msgid ""
|
820 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
821 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
823 |
"much more easy. You can set one or many schedules for adverts."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: dashboard/adrotatepro.php:72
|
827 |
+
msgid "Avoid adblockers"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: dashboard/adrotatepro.php:75
|
831 |
+
msgid ""
|
832 |
+
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
833 |
+
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
834 |
+
"adverts are less likely to be removed. Of-course make sure you create your "
|
835 |
+
"adverts smartly so these features reach their full potential!"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: dashboard/adrotatepro.php:79
|
839 |
msgid "Stay up-to-date with notifications"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: dashboard/adrotatepro.php:82
|
843 |
msgid ""
|
844 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
845 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
848 |
"miss an expiration date again."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: dashboard/adrotatepro.php:86 dashboard/adrotatepro.php:98
|
852 |
#: dashboard/info.php:93 dashboard/info.php:105
|
853 |
#, fuzzy
|
854 |
msgid "Buy AdRotate Professional"
|
855 |
msgstr "Köp nu"
|
856 |
|
857 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
858 |
msgid "Single License"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: dashboard/adrotatepro.php:90 dashboard/info.php:97
|
862 |
#, fuzzy
|
863 |
msgid "For one WordPress installation."
|
864 |
msgstr "Installation"
|
865 |
|
866 |
+
#: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:103
|
867 |
#: dashboard/info.php:98 dashboard/info.php:110
|
868 |
#, fuzzy
|
869 |
msgid "Duo License"
|
870 |
msgstr "AdRotate Licens"
|
871 |
|
872 |
+
#: dashboard/adrotatepro.php:91 dashboard/info.php:98
|
873 |
#, fuzzy
|
874 |
msgid "For two WordPress installations."
|
875 |
msgstr "Installation"
|
876 |
|
877 |
+
#: dashboard/adrotatepro.php:92 dashboard/adrotatepro.php:104
|
878 |
#: dashboard/info.php:99 dashboard/info.php:111
|
879 |
#, fuzzy
|
880 |
msgid "Multi License"
|
881 |
msgstr "AdRotate Licens"
|
882 |
|
883 |
+
#: dashboard/adrotatepro.php:92 dashboard/info.php:99
|
884 |
#, fuzzy
|
885 |
msgid " For up to five WordPress installations."
|
886 |
msgstr "Installation"
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:93 dashboard/adrotatepro.php:105
|
889 |
#: dashboard/info.php:100 dashboard/info.php:112
|
890 |
#, fuzzy
|
891 |
msgid "Developer License"
|
892 |
msgstr "Utvecklar Debug"
|
893 |
|
894 |
+
#: dashboard/adrotatepro.php:93 dashboard/info.php:100
|
895 |
msgid "Unlimited WordPress installations and/or networks."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: dashboard/adrotatepro.php:94 dashboard/adrotatepro.php:107
|
899 |
#: dashboard/info.php:101 dashboard/info.php:114
|
900 |
msgid "Compare licenses"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
904 |
msgid "Not sure which license is for you? Compare them..."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: dashboard/adrotatepro.php:94 dashboard/info.php:101
|
908 |
msgid "All Licenses"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
912 |
msgid "Lifetime License"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:109
|
916 |
msgid "Single installation."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:110
|
920 |
msgid "Up to 2 installations."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: dashboard/adrotatepro.php:104 dashboard/info.php:111
|
924 |
msgid "Up to 10 installations."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: dashboard/adrotatepro.php:105 dashboard/info.php:112
|
928 |
msgid "Up to 25 installations or multisite networks."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: dashboard/adrotatepro.php:106 dashboard/info.php:113
|
932 |
msgid ""
|
933 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
937 |
msgid "Not sure which license is for you?"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: dashboard/adrotatepro.php:107 dashboard/info.php:114
|
941 |
msgid "Compare Licenses"
|
942 |
msgstr ""
|
943 |
|
1278 |
|
1279 |
#: dashboard/publisher/adverts-edit.php:192
|
1280 |
#: dashboard/publisher/adverts-edit.php:292
|
1281 |
+
#: dashboard/publisher/adverts-edit.php:387
|
1282 |
+
#: dashboard/publisher/adverts-edit.php:428
|
1283 |
msgid "Save Advert"
|
1284 |
msgstr "Spara annons"
|
1285 |
|
1286 |
#: dashboard/publisher/adverts-edit.php:193
|
1287 |
#: dashboard/publisher/adverts-edit.php:293
|
1288 |
+
#: dashboard/publisher/adverts-edit.php:388
|
1289 |
+
#: dashboard/publisher/adverts-edit.php:429
|
1290 |
#: dashboard/publisher/groups-edit.php:154
|
1291 |
#: dashboard/publisher/groups-edit.php:301
|
1292 |
#: dashboard/publisher/groups-edit.php:393
|
1294 |
msgstr "Avbryt"
|
1295 |
|
1296 |
#: dashboard/publisher/adverts-edit.php:196
|
1297 |
+
#: dashboard/publisher/adverts-edit.php:370
|
1298 |
#: dashboard/publisher/groups-edit.php:136
|
1299 |
#: dashboard/publisher/groups-edit.php:283
|
1300 |
msgid "Usage"
|
1301 |
msgstr "Användning"
|
1302 |
|
1303 |
#: dashboard/publisher/adverts-edit.php:200
|
1304 |
+
#: dashboard/publisher/adverts-edit.php:374
|
1305 |
#: dashboard/publisher/groups-edit.php:140
|
1306 |
#: dashboard/publisher/groups-edit.php:287
|
1307 |
msgid "Widget"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: dashboard/publisher/adverts-edit.php:201
|
1311 |
+
#: dashboard/publisher/adverts-edit.php:375
|
1312 |
msgid ""
|
1313 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
|
1314 |
"and enter ID"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#: dashboard/publisher/adverts-edit.php:204
|
1318 |
+
#: dashboard/publisher/adverts-edit.php:378
|
1319 |
#: dashboard/publisher/groups-edit.php:144
|
1320 |
#: dashboard/publisher/groups-edit.php:291
|
1321 |
msgid "In a post or page"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: dashboard/publisher/adverts-edit.php:206
|
1325 |
+
#: dashboard/publisher/adverts-edit.php:380
|
1326 |
#: dashboard/publisher/groups-edit.php:146
|
1327 |
#: dashboard/publisher/groups-edit.php:293
|
1328 |
msgid "Directly in a theme"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
#: dashboard/publisher/adverts-edit.php:289
|
1382 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1383 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1384 |
#: dashboard/publisher/groups-edit.php:200
|
1385 |
#, fuzzy
|
1386 |
msgid "Upgrade today"
|
1396 |
msgstr "Allt nedan är frivillig."
|
1397 |
|
1398 |
#: dashboard/publisher/adverts-edit.php:301
|
1399 |
+
msgid "Mobile"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1403 |
+
msgid "Show on;"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1407 |
+
msgid "Computers"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: dashboard/publisher/adverts-edit.php:303
|
1411 |
+
msgid "Smartphones"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: dashboard/publisher/adverts-edit.php:303
|
1415 |
+
msgid "Tablets."
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1419 |
+
msgid "Also enable mobile support in the group this advert goes in."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: dashboard/publisher/adverts-edit.php:308
|
1423 |
+
msgid "Responsive"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: dashboard/publisher/adverts-edit.php:310
|
1427 |
#, fuzzy
|
1428 |
msgid "Enable responsive support for this advert."
|
1429 |
msgstr "Aktivera klickspårning för denna annons."
|
1430 |
|
1431 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1432 |
msgid ""
|
1433 |
"Upload your images to the banner folder and make sure the filename is in the "
|
1434 |
+
"following format; \"imagename.full.ext\"."
|
|
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1438 |
+
#: dashboard/publisher/adverts-report.php:58
|
1439 |
+
#: dashboard/publisher/groups-report.php:64
|
1440 |
+
msgid "Note:"
|
1441 |
+
msgstr "Notera:"
|
1442 |
+
|
1443 |
+
#: dashboard/publisher/adverts-edit.php:313
|
1444 |
+
msgid ""
|
1445 |
+
"This feature will not be developed any further. Consider switching to the "
|
1446 |
+
"Mobile feature in AdRotate Pro as seen above!"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1450 |
#: dashboard/publisher/groups-edit.php:194
|
1451 |
msgid "Sortorder"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1455 |
#: dashboard/publisher/groups-edit.php:196
|
1456 |
msgid "For administrative purposes set a sortorder."
|
1457 |
msgstr "För administrativa ändamål sätt en sortorder."
|
1458 |
|
1459 |
+
#: dashboard/publisher/adverts-edit.php:319
|
1460 |
msgid "Leave empty or 0 to skip this. Will default to ad id."
|
1461 |
msgstr ""
|
1462 |
"Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
|
1463 |
|
1464 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1465 |
msgid ""
|
1466 |
+
"With AdRotate Pro you can easily select which devices the advert should show "
|
1467 |
+
"on!"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1471 |
msgid "Geo Targeting in AdRotate Pro"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: dashboard/publisher/adverts-edit.php:327
|
1475 |
msgid ""
|
1476 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: dashboard/publisher/adverts-edit.php:331
|
1480 |
msgid "Cities/States"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1484 |
msgid ""
|
1485 |
"A comma separated list of cities (or the Metro ID) and/or states (Also the "
|
1486 |
"states ISO codes are supported)"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: dashboard/publisher/adverts-edit.php:334
|
1490 |
#, fuzzy
|
1491 |
msgid ""
|
1492 |
"AdRotate does not check the validity of names so make sure you spell them "
|
1495 |
"AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
|
1496 |
"rätt!"
|
1497 |
|
1498 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1499 |
msgid "Countries"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1503 |
#, fuzzy
|
1504 |
msgid "Select the countries you want the adverts to show in."
|
1505 |
msgstr "Välj de länder som du vill att annonser för att visa i."
|
1506 |
|
1507 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1508 |
#, fuzzy
|
1509 |
msgid "Cities take priority and will be filtered first."
|
1510 |
msgstr "Städer prioriteras och kommer att filtreras först."
|
1511 |
|
1512 |
+
#: dashboard/publisher/adverts-edit.php:368
|
1513 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: dashboard/publisher/adverts-edit.php:392
|
1517 |
msgid "Select Groups"
|
1518 |
msgstr "Välj Grupper"
|
1519 |
|
1520 |
+
#: dashboard/publisher/adverts-edit.php:397
|
1521 |
msgid "ID - Name"
|
1522 |
msgstr "ID - Namn"
|
1523 |
|
1524 |
+
#: dashboard/publisher/adverts-edit.php:407
|
1525 |
#: dashboard/publisher/groups-main.php:60
|
1526 |
#: dashboard/settings/geotargeting.php:39
|
1527 |
msgid "Default"
|
1528 |
msgstr "Default"
|
1529 |
|
1530 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1531 |
#: dashboard/publisher/groups-main.php:61
|
1532 |
msgid "Dynamic"
|
1533 |
msgstr "Dynamic"
|
1534 |
|
1535 |
+
#: dashboard/publisher/adverts-edit.php:408
|
1536 |
#: dashboard/publisher/groups-main.php:61
|
1537 |
#, fuzzy
|
1538 |
msgid "second rotation"
|
1539 |
msgstr "Geo Location"
|
1540 |
|
1541 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1542 |
#: dashboard/publisher/groups-main.php:62
|
1543 |
msgid "Block"
|
1544 |
msgstr "Block"
|
1545 |
|
1546 |
+
#: dashboard/publisher/adverts-edit.php:409
|
1547 |
#: dashboard/publisher/groups-main.php:62
|
1548 |
#, fuzzy
|
1549 |
msgid "grid"
|
1551 |
"Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
|
1552 |
"(Standard: 2/2)"
|
1553 |
|
1554 |
+
#: dashboard/publisher/adverts-edit.php:410
|
1555 |
#: dashboard/publisher/groups-edit.php:202
|
1556 |
#: dashboard/publisher/groups-main.php:63
|
1557 |
msgid "Post Injection"
|
1558 |
msgstr "Post injektion"
|
1559 |
|
1560 |
+
#: dashboard/publisher/adverts-edit.php:411
|
1561 |
msgid "Geolocation"
|
1562 |
msgstr "Geolocation"
|
1563 |
|
1564 |
+
#: dashboard/publisher/adverts-edit.php:417
|
1565 |
#: dashboard/publisher/groups-edit.php:61
|
1566 |
#: dashboard/publisher/groups-main.php:70
|
1567 |
msgid "Mode"
|
1655 |
msgid "Monthly overview of clicks and impressions"
|
1656 |
msgstr "Månads översikt av klick och visningar"
|
1657 |
|
|
|
|
|
|
|
|
|
|
|
1658 |
#: dashboard/publisher/adverts-report.php:58
|
1659 |
#: dashboard/publisher/groups-report.php:64
|
1660 |
msgid ""
|
2009 |
msgid "This action can not be undone!"
|
2010 |
msgstr "Denna åtgärd kan inte ångras!"
|
2011 |
|
2012 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
|
2013 |
+
#: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
|
|
|
2014 |
msgid "OK to continue, CANCEL to stop."
|
2015 |
msgstr "OK för att fortsätta, CANCEL för att avbryta."
|
2016 |
|
2090 |
msgstr ""
|
2091 |
|
2092 |
#: dashboard/settings/general.php:20
|
2093 |
+
msgid "Dynamic mode for Mobile"
|
2094 |
+
msgstr ""
|
2095 |
+
|
2096 |
+
#: dashboard/settings/general.php:21
|
2097 |
+
msgid ""
|
2098 |
+
"Disable dynamic mode in groups for mobile devices if you notice skipping or "
|
2099 |
+
"jumping content."
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: dashboard/settings/general.php:24
|
2103 |
#, fuzzy
|
2104 |
msgid "Load jQuery"
|
2105 |
msgstr ""
|
2106 |
"Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
|
2107 |
"om andra plugins eller teman redan läsa här."
|
2108 |
|
2109 |
+
#: dashboard/settings/general.php:25
|
2110 |
msgid ""
|
2111 |
"Enable if your theme does not load jQuery. jQuery is required for dynamic "
|
2112 |
"groups, statistics and some other features."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: dashboard/settings/general.php:28
|
2116 |
msgid "Load scripts in footer?"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: dashboard/settings/general.php:29
|
2120 |
msgid ""
|
2121 |
"Enable if you want to load all AdRotate Javascripts in the footer of your "
|
2122 |
"site."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: dashboard/settings/general.php:32
|
2126 |
msgid "Adblock disguise"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: dashboard/settings/general.php:34
|
2130 |
msgid "Leave empty to disable. Use only lowercaps letters. For example:"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: dashboard/settings/general.php:35
|
2134 |
msgid ""
|
2135 |
"Try and avoid adblock plugins in most modern browsers when using shortcodes."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: dashboard/settings/general.php:35
|
2139 |
msgid ""
|
2140 |
"To also apply this feature to widgets, use a text widget with a shortcode "
|
2141 |
"instead of the AdRotate widget."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: dashboard/settings/general.php:35
|
2145 |
msgid ""
|
2146 |
"Avoid the use of obvious keywords or filenames in your adverts or this "
|
2147 |
"feature will have little effect!"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: dashboard/settings/general.php:40
|
2151 |
msgid "Banner Folder"
|
2152 |
msgstr "Banner Folder"
|
2153 |
|
2154 |
+
#: dashboard/settings/general.php:41
|
2155 |
#, fuzzy
|
2156 |
msgid "Set a location where your banner images will be stored."
|
2157 |
msgstr ""
|
2158 |
"Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
|
2159 |
"banners /)."
|
2160 |
|
2161 |
+
#: dashboard/settings/general.php:44
|
2162 |
#, fuzzy
|
2163 |
msgid "Location"
|
2164 |
msgstr "Geo Location"
|
2165 |
|
2166 |
+
#: dashboard/settings/general.php:46
|
2167 |
#, fuzzy
|
2168 |
msgid "(Default: wp-content/banners/)."
|
2169 |
msgstr ""
|
2170 |
"Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
|
2171 |
"banners /)."
|
2172 |
|
2173 |
+
#: dashboard/settings/general.php:47
|
2174 |
msgid ""
|
2175 |
"To try and trick ad blockers you could set the folder to something crazy "
|
2176 |
"like:"
|
2178 |
"Att försöka lura annons blockerare som du kan ställa in mappen till något "
|
2179 |
"galet som:"
|
2180 |
|
2181 |
+
#: dashboard/settings/general.php:48
|
2182 |
msgid ""
|
2183 |
"This folder will not be automatically created if it doesn't exist. AdRotate "
|
2184 |
"will show errors when the folder is missing."
|
2186 |
"Denna mapp kommer inte automatiskt att skapas om den inte existerar. "
|
2187 |
"AdRotate visar fel när mappen saknas."
|
2188 |
|
2189 |
+
#: dashboard/settings/general.php:53
|
2190 |
#, fuzzy
|
2191 |
msgid "Bot filter"
|
2192 |
msgstr "User-Agent Filter"
|
2193 |
|
2194 |
+
#: dashboard/settings/general.php:54
|
2195 |
msgid "The bot filter is used for the AdRotate stats tracker."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: dashboard/settings/general.php:57
|
2199 |
msgid "User-Agent Filter"
|
2200 |
msgstr "User-Agent Filter"
|
2201 |
|
2202 |
+
#: dashboard/settings/general.php:60
|
2203 |
msgid ""
|
2204 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: dashboard/settings/general.php:61
|
2208 |
msgid ""
|
2209 |
"Keep in mind that this might give false positives. The word 'fire' also "
|
2210 |
"matches 'firefox', but not vice-versa. So be careful!"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: dashboard/settings/general.php:62
|
2214 |
msgid ""
|
2215 |
"Only words with alphanumeric characters and [ - _ ] are allowed. All other "
|
2216 |
"characters are stripped out."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: dashboard/settings/general.php:63
|
2220 |
msgid ""
|
2221 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
2222 |
"well."
|
2223 |
msgstr ""
|
2224 |
"Ytterligare till listan anges här, tomma user-agents blockerades också."
|
2225 |
|
2226 |
+
#: dashboard/settings/general.php:63
|
2227 |
msgid "Learn more about"
|
2228 |
msgstr "Läs mer om"
|
2229 |
|
2230 |
+
#: dashboard/settings/general.php:63
|
2231 |
msgid "user-agents"
|
2232 |
msgstr "user-agents"
|
2233 |
|
library/dashboard.css
CHANGED
@@ -28,4 +28,7 @@
|
|
28 |
.postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
|
29 |
.inside { padding:6px 10px 12px; clear:both; }
|
30 |
.pro-image { padding:0px 3px 0px 0px; }
|
31 |
-
.adrotate-photo { border-radius: 5px; }
|
|
|
|
|
|
28 |
.postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
|
29 |
.inside { padding:6px 10px 12px; clear:both; }
|
30 |
.pro-image { padding:0px 3px 0px 0px; }
|
31 |
+
.adrotate-photo { border-radius: 5px; }
|
32 |
+
|
33 |
+
/* Tablesorter */
|
34 |
+
table.tablesorter thead tr .header { text-decoration: underline; cursor: pointer; }
|
library/jquery.adrotate.tablesorter.js
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
Tablesorter settings/directives
|
3 |
+
Arnan de Gans (http://meandmymac.net, https://ajdg.solutions/)
|
4 |
+
Version: 1.0
|
5 |
+
With help from: N/a
|
6 |
+
Original code: Tablesorter docs
|
7 |
+
*/
|
8 |
+
|
9 |
+
/* ------------------------------------------------------------------------------------
|
10 |
+
* COPYRIGHT AND TRADEMARK NOTICE
|
11 |
+
* Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
|
12 |
+
* ADROTATE is a trademark of Arnan de Gans.
|
13 |
+
|
14 |
+
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
15 |
+
* By using this code you agree to indemnify Arnan de Gans from any
|
16 |
+
* liability that might arise from it's use.
|
17 |
+
------------------------------------------------------------------------------------ */
|
18 |
+
|
19 |
+
jQuery(function() {
|
20 |
+
jQuery("table.manage-ads-main").tablesorter({
|
21 |
+
headers: {
|
22 |
+
4: { sorter: false },
|
23 |
+
5: { sorter: false },
|
24 |
+
6: { sorter: false },
|
25 |
+
7: { sorter: false },
|
26 |
+
8: { sorter: false },
|
27 |
+
}
|
28 |
+
});
|
29 |
+
jQuery("table.manage-ads-disabled").tablesorter({
|
30 |
+
headers: {
|
31 |
+
3: { sorter: false },
|
32 |
+
4: { sorter: false },
|
33 |
+
5: { sorter: false },
|
34 |
+
}
|
35 |
+
});
|
36 |
+
jQuery("table.manage-groups-main").tablesorter({
|
37 |
+
headers: {
|
38 |
+
2: { sorter: false },
|
39 |
+
3: { sorter: false },
|
40 |
+
4: { sorter: false },
|
41 |
+
5: { sorter: false },
|
42 |
+
6: { sorter: false },
|
43 |
+
}
|
44 |
+
});
|
45 |
+
});
|
library/jquery.tablesorter.min.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
(function($){$.extend({tablesorter:new
|
3 |
+
function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){var text="";if(!node)return"";if(!config.supportsTextContent)config.supportsTextContent=node.textContent||false;if(config.textExtraction=="simple"){if(config.supportsTextContent){text=node.textContent;}else{if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){text=node.childNodes[0].innerHTML;}else{text=node.innerHTML;}}}else{if(typeof(config.textExtraction)=="function"){text=config.textExtraction(node);}else{text=$(node).text();}}return text;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){var pos=n[i][checkCell];rows.push(r[pos]);if(!table.config.appender){var l=r[pos].length;for(var j=0;j<l;j++){tableBody[0].appendChild(r[pos][j]);}}}if(table.config.appender){table.config.appender(table,rows);}rows=null;if(table.config.debug){benchmark("Rebuilt table:",appendTime);}applyWidget(table);setTimeout(function(){$(table).trigger("sortEnd");},0);};function buildHeaders(table){if(table.config.debug){var time=new Date();}var meta=($.metadata)?true:false;var header_index=computeTableHeaderCellIndexes(table);$tableHeaders=$(table.config.selectorHeaders,table).each(function(index){this.column=header_index[this.parentNode.rowIndex+"-"+this.cellIndex];this.order=formatSortingOrder(table.config.sortInitialOrder);this.count=this.order;if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(checkHeaderOptionsSortingLocked(table,index))this.order=this.lockedOrder=checkHeaderOptionsSortingLocked(table,index);if(!this.sortDisabled){var $th=$(this).addClass(table.config.cssHeader);if(table.config.onRenderHeader)table.config.onRenderHeader.apply($th);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};var thead=t.getElementsByTagName('THEAD')[0];var trs=thead.getElementsByTagName('TR');for(var i=0;i<trs.length;i++){var cells=trs[i].cells;for(var j=0;j<cells.length;j++){var c=cells[j];var rowIndex=c.parentNode.rowIndex;var cellId=rowIndex+"-"+c.cellIndex;var rowSpan=c.rowSpan||1;var colSpan=c.colSpan||1
|
4 |
+
var firstAvailCol;if(typeof(matrix[rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(typeof(matrix[rowIndex][k])=="undefined"){firstAvailCol=k;break;}}lookup[cellId]=firstAvailCol;for(var k=rowIndex;k<rowIndex+rowSpan;k++){if(typeof(matrix[k])=="undefined"){matrix[k]=[];}var matrixrow=matrix[k];for(var l=firstAvailCol;l<firstAvailCol+colSpan;l++){matrixrow[l]="x";}}}}return lookup;}function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i<l;i++){getWidgetById(c[i]).format(table);}}function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){if(widgets[i].id.toLowerCase()==name.toLowerCase()){return widgets[i];}}};function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerCase()=="desc")?1:0;}else{return(v==1)?1:0;}}function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i][0]==v){return true;}}return false;}function setHeadersCss(table,$headers,list,css){$headers.removeClass(css[0]).removeClass(css[1]);var h=[];$headers.each(function(offset){if(!this.sortDisabled){h[this.column]=$(this);}});var l=list.length;for(var i=0;i<l;i++){h[list[i][0]].addClass(css[list[i][1]]);}}function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFixed){var colgroup=$('<colgroup>');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($('<col>').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i<l;i++){var s=sortList[i],o=c.headerList[s[0]];o.count=s[1];o.count++;}}function multisort(table,sortList,cache){if(table.config.debug){var sortTime=new Date();}var dynamicExp="var sortWrapper = function(a,b) {",l=sortList.length;for(var i=0;i<l;i++){var c=sortList[i][0];var order=sortList[i][1];var s=(table.config.parsers[c].type=="text")?((order==0)?makeSortFunction("text","asc",c):makeSortFunction("text","desc",c)):((order==0)?makeSortFunction("numeric","asc",c):makeSortFunction("numeric","desc",c));var e="e"+i;dynamicExp+="var "+e+" = "+s;dynamicExp+="if("+e+") { return "+e+"; } ";dynamicExp+="else { ";}var orgOrderCol=cache.normalized[0].length-1;dynamicExp+="return a["+orgOrderCol+"]-b["+orgOrderCol+"];";for(var i=0;i<l;i++){dynamicExp+="}; ";}dynamicExp+="return 0; ";dynamicExp+="}; ";if(table.config.debug){benchmark("Evaling expression:"+dynamicExp,new Date());}eval(dynamicExp);cache.normalized.sort(sortWrapper);if(table.config.debug){benchmark("Sorting on "+sortList.toString()+" and dir "+order+" time:",sortTime);}return cache;};function makeSortFunction(type,direction,index){var a="a["+index+"]",b="b["+index+"]";if(type=='text'&&direction=='asc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+a+" < "+b+") ? -1 : 1 )));";}else if(type=='text'&&direction=='desc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+b+" < "+a+") ? -1 : 1 )));";}else if(type=='numeric'&&direction=='asc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+a+" - "+b+"));";}else if(type=='numeric'&&direction=='desc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+b+" - "+a+"));";}};function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"] > b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((a<b)?-1:((a>b)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((b<a)?-1:((b>a)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j<a.length;j++){if(a[j][0]!=i){config.sortList.push(a[j]);}}}config.sortList.push([i,this.order]);}else{if(isValueInArray(i,config.sortList)){for(var j=0;j<config.sortList.length;j++){var s=config.sortList[j],o=config.headerList[s[0]];if(s[0]==i){o.count=s[1];o.count++;s[1]=o.count%2;}}}else{config.sortList.push([i,this.order]);}};setTimeout(function(){setHeadersCss($this[0],$headers,config.sortList,sortCSS);appendToTable($this[0],multisort($this[0],config.sortList,cache));},1);return false;}}).mousedown(function(){if(config.cancelSelection){this.onselectstart=function(){return false};return false;}});$this.bind("update",function(){var me=this;setTimeout(function(){me.config.parsers=buildParserCache(me,$headers);cache=buildCache(me);},1);}).bind("updateCell",function(e,cell){var config=this.config;var pos=[(cell.parentNode.rowIndex-1),cell.cellIndex];cache.normalized[pos[0]][pos[1]]=config.parsers[pos[1]].format(getElementText(config,cell),cell);}).bind("sorton",function(e,list){$(this).trigger("sortStart");config.sortList=list;var sortList=config.sortList;updateHeaderSortCount(this,sortList);setHeadersCss(this,$headers,sortList,sortCSS);appendToTable(this,multisort(this,sortList,cache));}).bind("appendCache",function(){appendToTable(this,cache);}).bind("applyWidgetId",function(e,id){getWidgetById(id).format(this);}).bind("applyWidgets",function(){applyWidget(this);});if($.metadata&&($(this).metadata()&&$(this).metadata().sortlist)){config.sortList=$(this).metadata().sortlist;}if(config.sortList.length>0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==parser.id.toLowerCase()){a=false;}}if(a){parsers.push(parser);};};this.addWidget=function(widget){widgets.push(widget);};this.formatFloat=function(s){var i=parseFloat(s);return(isNaN(i))?0:i;};this.formatInt=function(s){var i=parseInt(s);return(isNaN(i))?0:i;};this.isDigit=function(s,config){return/^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g,'')));};this.clearTableBody=function(table){if($.browser.msie){function empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(table.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};}});$.fn.extend({tablesorter:$.tablesorter.construct});var ts=$.tablesorter;ts.addParser({id:"text",is:function(s){return true;},format:function(s){return $.trim(s.toLocaleLowerCase());},type:"text"});ts.addParser({id:"digit",is:function(s,table){var c=table.config;return $.tablesorter.isDigit(s,c);},format:function(s){return $.tablesorter.formatFloat(s);},type:"numeric"});ts.addParser({id:"currency",is:function(s){return/^[£$€?.]/.test(s);},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));},type:"numeric"});ts.addParser({id:"ipAddress",is:function(s){return/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);},format:function(s){var a=s.split("."),r="",l=a.length;for(var i=0;i<l;i++){var item=a[i];if(item.length==2){r+="0"+item;}else{r+=item;}}return $.tablesorter.formatFloat(r);},type:"numeric"});ts.addParser({id:"url",is:function(s){return/^(https?|ftp|file):\/\/$/.test(s);},format:function(s){return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));},type:"text"});ts.addParser({id:"isoDate",is:function(s){return/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);},format:function(s){return $.tablesorter.formatFloat((s!="")?new Date(s.replace(new RegExp(/-/g),"/")).getTime():"0");},type:"numeric"});ts.addParser({id:"percent",is:function(s){return/\%$/.test($.trim(s));},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));},type:"numeric"});ts.addParser({id:"usLongDate",is:function(s){return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));},format:function(s){return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"shortDate",is:function(s){return/\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s);},format:function(s,table){var c=table.config;s=s.replace(/\-/g,"/");if(c.dateFormat=="us"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$1/$2");}else if(c.dateFormat=="uk"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$2/$1");}else if(c.dateFormat=="dd/mm/yy"||c.dateFormat=="dd-mm-yy"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/,"$1/$2/$3");}return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"time",is:function(s){return/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);},format:function(s){return $.tablesorter.formatFloat(new Date("2000/01/01 "+s).getTime());},type:"numeric"});ts.addParser({id:"metadata",is:function(s){return false;},format:function(s,table,cell){var c=table.config,p=(!c.parserMetadataName)?'sortValue':c.parserMetadataName;return $(cell).metadata()[p];},type:"numeric"});ts.addWidget({id:"zebra",format:function(table){if(table.config.debug){var time=new Date();}var $tr,row=-1,odd;$("tr:visible",table.tBodies[0]).each(function(i){$tr=$(this);if(!$tr.hasClass(table.config.cssChildRow))row++;odd=(row%2==0);$tr.removeClass(table.config.widgetZebra.css[odd?0:1]).addClass(table.config.widgetZebra.css[odd?1:0])});if(table.config.debug){$.tablesorter.benchmark("Applying Zebra widget",time);}}});})(jQuery);
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: adegans
|
|
3 |
Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme
|
4 |
Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv3
|
9 |
|
10 |
The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
|
@@ -91,16 +91,21 @@ You can also post your questions on the [forum](https://ajdg.solutions/forums/?p
|
|
91 |
|
92 |
Be a Pro and go Pro. With [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme)!
|
93 |
|
94 |
-
= 3.
|
95 |
-
* [
|
96 |
-
* [
|
97 |
-
* [fix]
|
98 |
-
* [
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
* [
|
103 |
-
* [
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
106 |
|
@@ -108,10 +113,12 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
|
|
108 |
|
109 |
== Upgrade Notice ==
|
110 |
|
111 |
-
= 3.
|
112 |
-
* [
|
113 |
-
* [
|
114 |
-
* [fix]
|
|
|
|
|
115 |
|
116 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
117 |
|
3 |
Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme
|
4 |
Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 3.14
|
8 |
License: GPLv3
|
9 |
|
10 |
The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
|
91 |
|
92 |
Be a Pro and go Pro. With [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme)!
|
93 |
|
94 |
+
= 3.14 FREE =
|
95 |
+
* [new] Option to disable dynamic mode on mobile devices
|
96 |
+
* [new] Basic sortable columns for most dashboard tables
|
97 |
+
* [fix] Exporting adverts not always working for some users
|
98 |
+
* [change] Responsive feature is now deprecated
|
99 |
+
* [i18n] Updated translation files
|
100 |
+
|
101 |
+
= 3.18 PRO =
|
102 |
+
* [new] Option to disable dynamic mode on mobile devices
|
103 |
+
* [new] Added 'Desktop' option to Mobile adverts
|
104 |
+
* [new] Optionally let advertisers use the Mobile adverts option
|
105 |
+
* [new] Basic sortable columns for most dashboard tables
|
106 |
+
* [fix] Region selection not working for advertisers
|
107 |
+
* [change] Responsive feature is now deprecated
|
108 |
+
* [i18n] Updated translation files
|
109 |
|
110 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
111 |
|
113 |
|
114 |
== Upgrade Notice ==
|
115 |
|
116 |
+
= 3.14 =
|
117 |
+
* [new] Option to disable dynamic mode on mobile devices
|
118 |
+
* [new] Basic sortable columns for most dashboard tables
|
119 |
+
* [fix] Exporting adverts not always working for some users
|
120 |
+
* [change] Responsive feature is now deprecated
|
121 |
+
* [i18n] Updated translation files
|
122 |
|
123 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
124 |
|