Version Description
FREE = * [new] AdRotate error detection and status notifications * [new] Stats display for graphs now shows totals and CTR * [change] Updated bot filter keywords * [change] Reports display tweaks * [change] Impressions always tracked when using internal tracker * [fix] Advert evaluation cache not always accurate
Download this release
Release Info
Developer | adegans |
Plugin | AdRotate Banner Manager |
Version | 3.15 |
Comparing to | |
See all releases |
Code changes from version 3.14.2 to 3.15
- adrotate-functions.php +4 -18
- adrotate-manage-publisher.php +5 -12
- adrotate-output.php +62 -34
- adrotate-setup.php +57 -17
- adrotate-widget.php +10 -11
- adrotate.php +9 -10
- dashboard/publisher/adverts-disabled.php +1 -1
- dashboard/publisher/adverts-edit.php +1 -1
- dashboard/publisher/adverts-error.php +1 -1
- dashboard/publisher/adverts-main.php +2 -2
- dashboard/publisher/adverts-report.php +20 -14
- dashboard/publisher/groups-edit.php +5 -5
- dashboard/publisher/groups-main.php +2 -2
- dashboard/publisher/groups-report.php +12 -11
- dashboard/settings/maintenance.php +1 -1
- dashboard/settings/notifications.php +0 -9
- language/adrotate-bg_BG.mo +0 -0
- language/adrotate-bg_BG.po +372 -316
- language/adrotate-el.mo +0 -0
- language/adrotate-el.po +373 -316
- language/adrotate-en_US.mo +0 -0
- language/adrotate-en_US.po +275 -293
- language/adrotate-es_ES.mo +0 -0
- language/adrotate-es_ES.po +373 -317
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +362 -314
- language/adrotate-ja.mo +0 -0
- language/adrotate-ja.po +371 -315
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +404 -317
- language/adrotate-sr_RS.mo +0 -0
- language/adrotate-sr_RS.po +374 -318
- language/adrotate-sv_SV.mo +0 -0
- language/adrotate-sv_SV.po +376 -320
- readme.txt +29 -26
adrotate-functions.php
CHANGED
@@ -486,18 +486,11 @@ function adrotate_select_pages($savedpages, $count = 2, $child_of = 0, $parent =
|
|
486 |
Return:
|
487 |
Since: 3.6.5
|
488 |
-------------------------------------------------------------*/
|
489 |
-
function adrotate_prepare_evaluate_ads($return = true
|
490 |
global $wpdb;
|
491 |
|
492 |
-
$getid = '';
|
493 |
-
if($id > 0) {
|
494 |
-
$getid = " AND `id` = {$id}";
|
495 |
-
} else {
|
496 |
-
$getid = " AND `type` != 'empty'";
|
497 |
-
}
|
498 |
-
|
499 |
// Fetch ads
|
500 |
-
$ads = $wpdb->get_results("SELECT `id` FROM `".$wpdb->prefix."adrotate` WHERE `type` != 'disabled'
|
501 |
|
502 |
// Determine error states
|
503 |
$error = $expired = $expiressoon = $normal = $unknown = 0;
|
@@ -533,15 +526,7 @@ function adrotate_prepare_evaluate_ads($return = true, $id = 0) {
|
|
533 |
}
|
534 |
}
|
535 |
|
536 |
-
$
|
537 |
-
$result = array('error' => $error,
|
538 |
-
'expired' => $expired,
|
539 |
-
'expiressoon' => $expiressoon,
|
540 |
-
'normal' => $normal,
|
541 |
-
'total' => $count,
|
542 |
-
'unknown' => $unknown
|
543 |
-
);
|
544 |
-
|
545 |
update_option('adrotate_advert_status', $result);
|
546 |
if($return) adrotate_return('adrotate-settings', 405);
|
547 |
}
|
@@ -555,6 +540,7 @@ function adrotate_prepare_evaluate_ads($return = true, $id = 0) {
|
|
555 |
Since: 3.8.5.1
|
556 |
-------------------------------------------------------------*/
|
557 |
function adrotate_evaluate_ads() {
|
|
|
558 |
adrotate_prepare_evaluate_ads(false);
|
559 |
}
|
560 |
|
486 |
Return:
|
487 |
Since: 3.6.5
|
488 |
-------------------------------------------------------------*/
|
489 |
+
function adrotate_prepare_evaluate_ads($return = true) {
|
490 |
global $wpdb;
|
491 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
// Fetch ads
|
493 |
+
$ads = $wpdb->get_results("SELECT `id` FROM `".$wpdb->prefix."adrotate` WHERE `type` != 'disabled' AND `type` != 'empty' ORDER BY `id` ASC;");
|
494 |
|
495 |
// Determine error states
|
496 |
$error = $expired = $expiressoon = $normal = $unknown = 0;
|
526 |
}
|
527 |
}
|
528 |
|
529 |
+
$result = array('error' => $error, 'expired' => $expired, 'expiressoon' => $expiressoon, 'normal' => $normal, 'unknown' => $unknown);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
530 |
update_option('adrotate_advert_status', $result);
|
531 |
if($return) adrotate_return('adrotate-settings', 405);
|
532 |
}
|
540 |
Since: 3.8.5.1
|
541 |
-------------------------------------------------------------*/
|
542 |
function adrotate_evaluate_ads() {
|
543 |
+
// Verify all ads
|
544 |
adrotate_prepare_evaluate_ads(false);
|
545 |
}
|
546 |
|
adrotate-manage-publisher.php
CHANGED
@@ -180,7 +180,8 @@ function adrotate_insert_input() {
|
|
180 |
}
|
181 |
|
182 |
if($active == "active") {
|
183 |
-
|
|
|
184 |
}
|
185 |
|
186 |
adrotate_return('adrotate-ads', 200);
|
@@ -418,6 +419,7 @@ function adrotate_request_action() {
|
|
418 |
}
|
419 |
}
|
420 |
}
|
|
|
421 |
adrotate_prepare_evaluate_ads(false);
|
422 |
}
|
423 |
|
@@ -466,11 +468,9 @@ function adrotate_delete($id, $what) {
|
|
466 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate` WHERE `id` = %d;", $id));
|
467 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = %d;", $id));
|
468 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `ad` = %d;", $id));
|
469 |
-
adrotate_prepare_evaluate_ads(false);
|
470 |
} else if ($what == 'group') {
|
471 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = %d;", $id));
|
472 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = %d;", $id));
|
473 |
-
adrotate_prepare_evaluate_ads(false);
|
474 |
} else if ($what == 'bannergroup') {
|
475 |
$linkmeta = $wpdb->get_results($wpdb->prepare("SELECT `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = %d;", $id));
|
476 |
foreach($linkmeta as $meta) {
|
@@ -481,8 +481,9 @@ function adrotate_delete($id, $what) {
|
|
481 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = %d;", $id));
|
482 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = %d;", $id));
|
483 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `group` = %d;", $id)); // Perhaps unnessesary
|
484 |
-
adrotate_prepare_evaluate_ads(false);
|
485 |
}
|
|
|
|
|
486 |
}
|
487 |
}
|
488 |
|
@@ -591,9 +592,6 @@ function adrotate_options_submit() {
|
|
591 |
$config['banner_folder'] = "wp-content/banners/";
|
592 |
$config['notification_email'] = array();
|
593 |
$config['advertiser_email'] = array();
|
594 |
-
$config['adblock'] = 'N';
|
595 |
-
$config['adblock_timer'] = 0;
|
596 |
-
$config['adblock_message'] = '';
|
597 |
$config['enable_geo'] = 0;
|
598 |
$config['geo_cookie_life'] = 86400;
|
599 |
$config['geo_email'] = '';
|
@@ -601,10 +599,6 @@ function adrotate_options_submit() {
|
|
601 |
$config['enable_advertisers'] = 'N';
|
602 |
$config['enable_editing'] = 'N';
|
603 |
$config['enable_geo_advertisers'] = 0;
|
604 |
-
$config['adblock'] = 'N';
|
605 |
-
$config['adblock_loggedin'] = 'N';
|
606 |
-
$config['adblock_timer'] = 5;
|
607 |
-
$config['adblock_message'] = "Ad blocker detected! Please wait %time% seconds or disable your ad blocker!";
|
608 |
update_option('adrotate_config', $config);
|
609 |
|
610 |
// Sort out crawlers
|
@@ -621,7 +615,6 @@ function adrotate_options_submit() {
|
|
621 |
// Turn options off. Available in AdRotate Pro only
|
622 |
$notifications['notification_email'] = 'N';
|
623 |
$notifications['notification_push'] = 'N';
|
624 |
-
$notifications['notification_dashboard'] = 'Y';
|
625 |
$notifications['notification_email_publisher'] = array();
|
626 |
$notifications['notification_email_advertiser'] = array(get_option('admin_email'));
|
627 |
$notifications['notification_push_geo'] = 'N';
|
180 |
}
|
181 |
|
182 |
if($active == "active") {
|
183 |
+
// Verify all ads
|
184 |
+
adrotate_prepare_evaluate_ads(false);
|
185 |
}
|
186 |
|
187 |
adrotate_return('adrotate-ads', 200);
|
419 |
}
|
420 |
}
|
421 |
}
|
422 |
+
// Verify all ads
|
423 |
adrotate_prepare_evaluate_ads(false);
|
424 |
}
|
425 |
|
468 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate` WHERE `id` = %d;", $id));
|
469 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = %d;", $id));
|
470 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `ad` = %d;", $id));
|
|
|
471 |
} else if ($what == 'group') {
|
472 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = %d;", $id));
|
473 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = %d;", $id));
|
|
|
474 |
} else if ($what == 'bannergroup') {
|
475 |
$linkmeta = $wpdb->get_results($wpdb->prepare("SELECT `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = %d;", $id));
|
476 |
foreach($linkmeta as $meta) {
|
481 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = %d;", $id));
|
482 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = %d;", $id));
|
483 |
$wpdb->query($wpdb->prepare("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `group` = %d;", $id)); // Perhaps unnessesary
|
|
|
484 |
}
|
485 |
+
// Verify all ads
|
486 |
+
adrotate_prepare_evaluate_ads(false);
|
487 |
}
|
488 |
}
|
489 |
|
592 |
$config['banner_folder'] = "wp-content/banners/";
|
593 |
$config['notification_email'] = array();
|
594 |
$config['advertiser_email'] = array();
|
|
|
|
|
|
|
595 |
$config['enable_geo'] = 0;
|
596 |
$config['geo_cookie_life'] = 86400;
|
597 |
$config['geo_email'] = '';
|
599 |
$config['enable_advertisers'] = 'N';
|
600 |
$config['enable_editing'] = 'N';
|
601 |
$config['enable_geo_advertisers'] = 0;
|
|
|
|
|
|
|
|
|
602 |
update_option('adrotate_config', $config);
|
603 |
|
604 |
// Sort out crawlers
|
615 |
// Turn options off. Available in AdRotate Pro only
|
616 |
$notifications['notification_email'] = 'N';
|
617 |
$notifications['notification_push'] = 'N';
|
|
|
618 |
$notifications['notification_email_publisher'] = array();
|
619 |
$notifications['notification_email_advertiser'] = array(get_option('admin_email'));
|
620 |
$notifications['notification_push_geo'] = 'N';
|
adrotate-output.php
CHANGED
@@ -45,7 +45,7 @@ function adrotate_ad($banner_id, $individual = true, $group = null, $site = 0) {
|
|
45 |
$output .= adrotate_ad_output($banner->id, 0, $banner->title, $banner->bannercode, $banner->tracker, $image, $banner->responsive);
|
46 |
if($individual == true) $output .= '</div>';
|
47 |
|
48 |
-
if($adrotate_config['stats'] == 1
|
49 |
adrotate_count_impression($banner->id, 0, 0, $adrotate_config['impression_timer']);
|
50 |
}
|
51 |
} else {
|
@@ -372,12 +372,12 @@ function adrotate_ad_output($id, $group = 0, $name, $bannercode, $tracker, $imag
|
|
372 |
$banner_output = $bannercode;
|
373 |
$banner_output = stripslashes(htmlspecialchars_decode($banner_output, ENT_QUOTES));
|
374 |
|
375 |
-
if($adrotate_config['stats'] > 0) {
|
376 |
if(empty($blog_id) or $blog_id == '') {
|
377 |
$blog_id = 0;
|
378 |
}
|
379 |
|
380 |
-
if($adrotate_config['stats'] == 1
|
381 |
preg_match_all('/<a[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
|
382 |
if(isset($matches[0])) {
|
383 |
$banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
|
@@ -449,7 +449,7 @@ function adrotate_custom_scripts() {
|
|
449 |
if(get_option('adrotate_responsive_required') > 0) wp_enqueue_script('responsive-adrotate', plugins_url('/library/jquery.adrotate.responsive.js', __FILE__), false, null, $in_footer);
|
450 |
|
451 |
// Make clicktracking and impression tracking a possibility
|
452 |
-
if($adrotate_config['stats'] == 1){
|
453 |
wp_enqueue_script('clicktrack-adrotate', plugins_url('/library/jquery.adrotate.clicktracker.js', __FILE__), false, null, $in_footer);
|
454 |
wp_localize_script('jshowoff-adrotate', 'impression_object', array('ajax_url' => admin_url( 'admin-ajax.php')));
|
455 |
wp_localize_script('clicktrack-adrotate', 'click_object', array('ajax_url' => admin_url('admin-ajax.php')));
|
@@ -485,21 +485,14 @@ function adrotate_custom_javascript() {
|
|
485 |
unset($groups);
|
486 |
}
|
487 |
|
488 |
-
$output = "<!-- AdRotate JS -->\n";
|
489 |
-
$output .= "<script type=\"text/javascript\">\n";
|
490 |
-
|
491 |
-
if(($adrotate_config['adblock'] == 'Y' AND !is_user_logged_in()) OR ($adrotate_config['adblock'] == 'Y' AND $adrotate_config['adblock_loggedin'] == "Y" AND is_user_logged_in())) {
|
492 |
-
$output .= "jQuery(document).ready(function() {\n";
|
493 |
-
$output .= "\tjQuery('body').adblockdetect({time: ".$adrotate_config['adblock_timer'].", message: \"".$adrotate_config['adblock_message']."\"});\n";
|
494 |
-
$output .= "});\n";
|
495 |
-
}
|
496 |
-
|
497 |
if(isset($output_js)) {
|
|
|
|
|
498 |
$output .= $output_js;
|
|
|
|
|
499 |
unset($output_js);
|
500 |
}
|
501 |
-
$output .= "</script>\n";
|
502 |
-
$output .= "<!-- /AdRotate JS -->\n\n";
|
503 |
|
504 |
echo $output;
|
505 |
}
|
@@ -678,6 +671,46 @@ function adrotate_error($action, $arg = null) {
|
|
678 |
}
|
679 |
}
|
680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
681 |
/*-------------------------------------------------------------
|
682 |
Name: adrotate_notifications_dashboard
|
683 |
|
@@ -687,24 +720,19 @@ function adrotate_error($action, $arg = null) {
|
|
687 |
Since: 3.0
|
688 |
-------------------------------------------------------------*/
|
689 |
function adrotate_notifications_dashboard() {
|
690 |
-
global $adrotate_advert_status;
|
691 |
if(current_user_can('adrotate_ad_manage')) {
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
if($data['expired'] > 0 AND $data['expiressoon'] == 0 AND $data['error'] == 0) {
|
700 |
-
echo '<div class="error"><p>'.$data['expired'].' '.__('active ad(s) expired.', 'adrotate').' <a href="admin.php?page=adrotate-ads">'.__('Take action now', 'adrotate').'</a>!</p></div>';
|
701 |
-
} else if($data['expired'] == 0 AND $data['expiressoon'] > 0 AND $data['error'] == 0) {
|
702 |
-
echo '<div class="error"><p>'.$data['expiressoon'].' '.__('active ad(s) are about to expire.', 'adrotate').' <a href="admin.php?page=adrotate-ads">'.__('Check it out', 'adrotate').'</a>!</p></div>';
|
703 |
-
} else if($data['expired'] == 0 AND $data['expiressoon'] == 0 AND $data['error'] > 0) {
|
704 |
-
echo '<div class="error"><p>There are '.$data['error'].' '.__('active ad(s) with configuration errors.', 'adrotate').' <a href="admin.php?page=adrotate-ads">'.__('Solve this', 'adrotate').'</a>!</p></div>';
|
705 |
-
} else {
|
706 |
-
echo '<div class="error"><p>'.$data['expired'].' '.__('ad(s) expired.', 'adrotate').' '.$data['expiressoon'].' '.__('ad(s) are about to expire.', 'adrotate').' There are '.$data['error'].' '.__('ad(s) with configuration errors.', 'adrotate').' <a href="admin.php?page=adrotate-ads">'.__('Fix this as soon as possible', 'adrotate').'</a>!</p></div>';
|
707 |
}
|
|
|
|
|
|
|
|
|
708 |
}
|
709 |
|
710 |
if(isset($_GET['hide']) AND $_GET['hide'] == 1) update_option('adrotate_hide_banner', 1);
|
@@ -713,7 +741,7 @@ function adrotate_notifications_dashboard() {
|
|
713 |
|
714 |
$pro_banner = get_option('adrotate_hide_banner');
|
715 |
if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
|
716 |
-
echo '<div class="updated" style="padding: 0; margin: 0;
|
717 |
echo ' <div class="adrotate_banner">';
|
718 |
echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?add-to-cart=1126?pk_campaign=adrotatefree-upgradebanner">'.__('Buy now', 'adrotate').'</a></div>';
|
719 |
echo ' <div class="text">'.__("You've been using <strong>AdRotate</strong> for a while now. Why not upgrade to the <strong>PRO</strong> version", 'adrotate').'?<br /><span>'.__('Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!', 'adrotate' ).' '.__('Thank you for your purchase!', 'adrotate' ).'</span></div>';
|
@@ -725,7 +753,7 @@ function adrotate_notifications_dashboard() {
|
|
725 |
|
726 |
$review_banner = get_option('adrotate_hide_review');
|
727 |
if($review_banner != 1 AND $review_banner < (adrotate_now() - 2419200) AND strpos($page, 'adrotate') !== false) {
|
728 |
-
echo '<div class="updated" style="padding: 0; margin: 0;
|
729 |
echo ' <div class="adrotate_banner">';
|
730 |
echo ' <div class="button_div"><a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a></div>';
|
731 |
echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner" target="_blank">get in touch</a>!</span></div>';
|
@@ -740,7 +768,7 @@ function adrotate_notifications_dashboard() {
|
|
740 |
$adrotate_db_version = get_option("adrotate_db_version");
|
741 |
$adrotate_version = get_option("adrotate_version");
|
742 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
|
743 |
-
echo '<div class="updated" style="padding: 0; margin: 0;
|
744 |
echo ' <div class="adrotate_banner">';
|
745 |
echo ' <div class="button_div"><a class="button" href="admin.php?page=adrotate&upgrade=1">Update Now</a></div>';
|
746 |
echo ' <div class="text">You have almost finished upgrading <strong>AdRotate</strong> to version <strong>'.ADROTATE_DISPLAY.'</strong>!<br /><span>To complete the update click the button on the left. This may take a few seconds to complete!</span></div>';
|
45 |
$output .= adrotate_ad_output($banner->id, 0, $banner->title, $banner->bannercode, $banner->tracker, $image, $banner->responsive);
|
46 |
if($individual == true) $output .= '</div>';
|
47 |
|
48 |
+
if($adrotate_config['stats'] == 1) {
|
49 |
adrotate_count_impression($banner->id, 0, 0, $adrotate_config['impression_timer']);
|
50 |
}
|
51 |
} else {
|
372 |
$banner_output = $bannercode;
|
373 |
$banner_output = stripslashes(htmlspecialchars_decode($banner_output, ENT_QUOTES));
|
374 |
|
375 |
+
if($adrotate_config['stats'] > 0 AND $tracker == "Y") {
|
376 |
if(empty($blog_id) or $blog_id == '') {
|
377 |
$blog_id = 0;
|
378 |
}
|
379 |
|
380 |
+
if($adrotate_config['stats'] == 1) { // Internal tracker
|
381 |
preg_match_all('/<a[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
|
382 |
if(isset($matches[0])) {
|
383 |
$banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
|
449 |
if(get_option('adrotate_responsive_required') > 0) wp_enqueue_script('responsive-adrotate', plugins_url('/library/jquery.adrotate.responsive.js', __FILE__), false, null, $in_footer);
|
450 |
|
451 |
// Make clicktracking and impression tracking a possibility
|
452 |
+
if($adrotate_config['stats'] == 1) {
|
453 |
wp_enqueue_script('clicktrack-adrotate', plugins_url('/library/jquery.adrotate.clicktracker.js', __FILE__), false, null, $in_footer);
|
454 |
wp_localize_script('jshowoff-adrotate', 'impression_object', array('ajax_url' => admin_url( 'admin-ajax.php')));
|
455 |
wp_localize_script('clicktrack-adrotate', 'click_object', array('ajax_url' => admin_url('admin-ajax.php')));
|
485 |
unset($groups);
|
486 |
}
|
487 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
if(isset($output_js)) {
|
489 |
+
$output = "<!-- AdRotate JS -->\n";
|
490 |
+
$output .= "<script type=\"text/javascript\">\n";
|
491 |
$output .= $output_js;
|
492 |
+
$output .= "</script>\n";
|
493 |
+
$output .= "<!-- /AdRotate JS -->\n\n";
|
494 |
unset($output_js);
|
495 |
}
|
|
|
|
|
496 |
|
497 |
echo $output;
|
498 |
}
|
671 |
}
|
672 |
}
|
673 |
|
674 |
+
/*-------------------------------------------------------------
|
675 |
+
Name: adrotate_dashboard_error
|
676 |
+
|
677 |
+
Purpose: Show errors for problems in using AdRotate
|
678 |
+
Since: 3.19.1
|
679 |
+
-------------------------------------------------------------*/
|
680 |
+
function adrotate_dashboard_error() {
|
681 |
+
global $adrotate_config;
|
682 |
+
|
683 |
+
$status = get_option('adrotate_advert_status');
|
684 |
+
|
685 |
+
// Adverts
|
686 |
+
if($status['expired'] > 0) {
|
687 |
+
$error['advert_expired'] = sprintf(_n('One advert is expired.', '%1$s adverts expired!', $status['expired'], 'adrotate-pro'), $status['expired']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate-pro').'</a>!';
|
688 |
+
}
|
689 |
+
if($status['expiressoon'] > 0) {
|
690 |
+
$error['advert_soon'] = sprintf(_n('One advert expires soon.', '%1$s adverts are almost expiring!', $status['expiressoon'], 'adrotate-pro'), $status['expiressoon']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate-pro').'</a>!';
|
691 |
+
}
|
692 |
+
if($status['error'] > 0) {
|
693 |
+
$error['advert_config'] = sprintf(_n('One advert with configuration errors.', '%1$s adverts have configuration errors!', $status['error'], 'adrotate-pro'), $status['error']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate-pro').'</a>!';
|
694 |
+
}
|
695 |
+
|
696 |
+
// Caching
|
697 |
+
if($adrotate_config['w3caching'] == "Y" AND !is_plugin_active('/w3-total-cache/w3-total-cache.php')) {
|
698 |
+
$error['w3tc_not_active'] = __('You have enable caching support but W3 Total Cache is not active on your site!', 'adrotate-pro').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">Disable Caching Support</a> or <a href="'.admin_url('/plugins.php').'">Enable W3 Total Cache</a>.';
|
699 |
+
}
|
700 |
+
if($adrotate_config['w3caching'] == "Y" AND !defined('W3TC_DYNAMIC_SECURITY')) {
|
701 |
+
$error['w3tc_no_hash'] = __('You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is not set.', 'adrotate-pro').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">How to configure W3 Total Cache</a>.';
|
702 |
+
}
|
703 |
+
|
704 |
+
// Misc
|
705 |
+
if(!is_writable(ABSPATH.$adrotate_config['banner_folder'])) {
|
706 |
+
$error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate-pro').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/" target="_blank">Set up your banner folder</a>.';
|
707 |
+
}
|
708 |
+
|
709 |
+
$error = (isset($error) AND is_array($error)) ? $error : false;
|
710 |
+
|
711 |
+
return $error;
|
712 |
+
}
|
713 |
+
|
714 |
/*-------------------------------------------------------------
|
715 |
Name: adrotate_notifications_dashboard
|
716 |
|
720 |
Since: 3.0
|
721 |
-------------------------------------------------------------*/
|
722 |
function adrotate_notifications_dashboard() {
|
|
|
723 |
if(current_user_can('adrotate_ad_manage')) {
|
724 |
+
$adrotate_has_error = adrotate_dashboard_error();
|
725 |
+
if($adrotate_has_error) {
|
726 |
+
echo '<div class="error" style="padding: 0; margin: 0;">';
|
727 |
+
echo ' <div class="adrotate_banner">';
|
728 |
+
echo ' <div class="text">AdRotate has detected '._n('one issue that requires', 'several issues that require', count($adrotate_has_error), 'adrotate-pro').' your attention:<br /><span>';
|
729 |
+
foreach($adrotate_has_error as $error => $message) {
|
730 |
+
echo '» '.$message.'<br />';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
731 |
}
|
732 |
+
echo ' </span></div>';
|
733 |
+
echo ' <div class="icon"><img title="AdRotate Logo" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
|
734 |
+
echo ' </div>';
|
735 |
+
echo '</div>';
|
736 |
}
|
737 |
|
738 |
if(isset($_GET['hide']) AND $_GET['hide'] == 1) update_option('adrotate_hide_banner', 1);
|
741 |
|
742 |
$pro_banner = get_option('adrotate_hide_banner');
|
743 |
if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
|
744 |
+
echo '<div class="updated" style="padding: 0; margin: 0;">';
|
745 |
echo ' <div class="adrotate_banner">';
|
746 |
echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?add-to-cart=1126?pk_campaign=adrotatefree-upgradebanner">'.__('Buy now', 'adrotate').'</a></div>';
|
747 |
echo ' <div class="text">'.__("You've been using <strong>AdRotate</strong> for a while now. Why not upgrade to the <strong>PRO</strong> version", 'adrotate').'?<br /><span>'.__('Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!', 'adrotate' ).' '.__('Thank you for your purchase!', 'adrotate' ).'</span></div>';
|
753 |
|
754 |
$review_banner = get_option('adrotate_hide_review');
|
755 |
if($review_banner != 1 AND $review_banner < (adrotate_now() - 2419200) AND strpos($page, 'adrotate') !== false) {
|
756 |
+
echo '<div class="updated" style="padding: 0; margin: 0;">';
|
757 |
echo ' <div class="adrotate_banner">';
|
758 |
echo ' <div class="button_div"><a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a></div>';
|
759 |
echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner" target="_blank">get in touch</a>!</span></div>';
|
768 |
$adrotate_db_version = get_option("adrotate_db_version");
|
769 |
$adrotate_version = get_option("adrotate_version");
|
770 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
|
771 |
+
echo '<div class="updated" style="padding: 0; margin: 0;">';
|
772 |
echo ' <div class="adrotate_banner">';
|
773 |
echo ' <div class="button_div"><a class="button" href="admin.php?page=adrotate&upgrade=1">Update Now</a></div>';
|
774 |
echo ' <div class="text">You have almost finished upgrading <strong>AdRotate</strong> to version <strong>'.ADROTATE_DISPLAY.'</strong>!<br /><span>To complete the update click the button on the left. This may take a few seconds to complete!</span></div>';
|
adrotate-setup.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -181,9 +181,9 @@ function adrotate_uninstall_setup() {
|
|
181 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate`");
|
182 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_groups`");
|
183 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_tracker`");
|
184 |
-
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_blocks`"); // Obsolete in 3.9.10
|
185 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_linkmeta`");
|
186 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_stats`");
|
|
|
187 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_schedule`");
|
188 |
|
189 |
// Delete Options
|
@@ -202,11 +202,7 @@ function adrotate_uninstall_setup() {
|
|
202 |
delete_option('adrotate_geo_requests');
|
203 |
delete_option('adrotate_responsive_required');
|
204 |
delete_option('adrotate_dynamic_required');
|
205 |
-
delete_option('adrotate_roles'); // Obsolete in 3.11.8
|
206 |
-
delete_option('adrotate_server'); // Obsolete in 3.11.1
|
207 |
-
delete_option('adrotate_server_hide'); // Obsolete in 3.11.1
|
208 |
delete_option('adrotate_version');
|
209 |
-
delete_site_option('adrotate_multisite'); // Obsolete in 3.10.18
|
210 |
|
211 |
// Clear out userroles
|
212 |
remove_role('adrotate_advertiser');
|
@@ -247,10 +243,10 @@ function adrotate_network_propagate($pfunction, $network_wide) {
|
|
247 |
-------------------------------------------------------------*/
|
248 |
function adrotate_check_config() {
|
249 |
|
250 |
-
$config
|
251 |
$notifications = get_option('adrotate_notifications');
|
252 |
-
$crawlers
|
253 |
-
$debug
|
254 |
|
255 |
if(!isset($config)) $config = array();
|
256 |
if(!isset($notifications)) $notifications = array();
|
@@ -290,15 +286,10 @@ function adrotate_check_config() {
|
|
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';
|
294 |
-
if(!isset($config['adblock_timer']) OR $config['adblock_timer'] < 0 OR $config['adblock_timer'] > 20) $config['adblock_timer'] = 5;
|
295 |
-
if(!isset($config['adblock_message'])) $config['adblock_message'] = "Ad blocker detected! Please wait %time% seconds or disable your ad blocker!";
|
296 |
-
if(!isset($config['adblock_loggedin']) OR ($config['adblock_loggedin'] != 'Y' AND $config['adblock_loggedin'] != 'N')) $config['adblock_loggedin'] = "N";
|
297 |
update_option('adrotate_config', $config);
|
298 |
|
299 |
if(!isset($notifications['notification_push']) OR ($notifications['notification_push'] != 'Y' AND $notifications['notification_push'] != 'N')) $notifications['notification_push'] = 'N';
|
300 |
if(!isset($notifications['notification_email']) OR ($notifications['notification_email'] != 'Y' AND $notifications['notification_email'] != 'N')) $notifications['notification_email'] = 'Y';
|
301 |
-
if(!isset($config['notification_dashboard']) OR ($config['notification_dashboard'] != 'Y' AND $config['notification_dashboard'] != 'N')) $config['notification_dashboard'] = 'Y';
|
302 |
|
303 |
if(!isset($notifications['notification_push_geo']) OR ($notifications['notification_push_geo'] != 'Y' AND $notifications['notification_push_geo'] != 'N')) $notifications['notification_push_geo'] = 'N';
|
304 |
if(!isset($notifications['notification_push_status']) OR ($notifications['notification_push_status'] != 'Y' AND $notifications['notification_push_status'] != 'N')) $notifications['notification_push_status'] = 'N';
|
@@ -313,7 +304,7 @@ function adrotate_check_config() {
|
|
313 |
if(!isset($notifications['notification_email_advertiser'])) $notifications['notification_email_advertiser'] = array(get_option('admin_email'));
|
314 |
update_option('adrotate_notifications', $notifications);
|
315 |
|
316 |
-
if(!isset($crawlers) OR count($crawlers) < 1) $crawlers = array("008", "
|
317 |
update_option('adrotate_crawlers', $crawlers);
|
318 |
|
319 |
if(!isset($debug['general'])) $debug['general'] = false;
|
@@ -500,6 +491,20 @@ function adrotate_database_install() {
|
|
500 |
) ".$charset_collate.$engine.";");
|
501 |
}
|
502 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
if(!in_array("{$wpdb->prefix}adrotate_tracker", $found_tables)) {
|
504 |
dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_tracker` (
|
505 |
`id` bigint(9) unsigned NOT NULL auto_increment,
|
@@ -537,6 +542,7 @@ function adrotate_check_upgrade() {
|
|
537 |
$adrotate_db_version = get_option("adrotate_db_version");
|
538 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION) {
|
539 |
adrotate_database_upgrade();
|
|
|
540 |
adrotate_prepare_evaluate_ads(false);
|
541 |
}
|
542 |
|
@@ -811,6 +817,40 @@ function adrotate_database_upgrade() {
|
|
811 |
adrotate_del_column("{$wpdb->prefix}adrotate_tracker", 'useragent');
|
812 |
}
|
813 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
|
815 |
}
|
816 |
|
@@ -991,8 +1031,8 @@ function adrotate_optimize_database() {
|
|
991 |
$now = adrotate_now();
|
992 |
|
993 |
if($adrotate_db_timer < ($now - 86400)) {
|
994 |
-
dbDelta("OPTIMIZE TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule
|
995 |
-
dbDelta("REPAIR TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
|
996 |
update_option('adrotate_db_timer', $now);
|
997 |
adrotate_return('adrotate-settings', 403);
|
998 |
} else {
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
+
* Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
|
5 |
* ADROTATE is a trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
181 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate`");
|
182 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_groups`");
|
183 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_tracker`");
|
|
|
184 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_linkmeta`");
|
185 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_stats`");
|
186 |
+
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_stats_archive`");
|
187 |
$wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_schedule`");
|
188 |
|
189 |
// Delete Options
|
202 |
delete_option('adrotate_geo_requests');
|
203 |
delete_option('adrotate_responsive_required');
|
204 |
delete_option('adrotate_dynamic_required');
|
|
|
|
|
|
|
205 |
delete_option('adrotate_version');
|
|
|
206 |
|
207 |
// Clear out userroles
|
208 |
remove_role('adrotate_advertiser');
|
243 |
-------------------------------------------------------------*/
|
244 |
function adrotate_check_config() {
|
245 |
|
246 |
+
$config = get_option('adrotate_config');
|
247 |
$notifications = get_option('adrotate_notifications');
|
248 |
+
$crawlers = get_option('adrotate_crawlers');
|
249 |
+
$debug = get_option('adrotate_debug');
|
250 |
|
251 |
if(!isset($config)) $config = array();
|
252 |
if(!isset($notifications)) $notifications = array();
|
286 |
if(!isset($config['mobile_dynamic_mode']) OR ($config['mobile_dynamic_mode'] != 'Y' AND $config['mobile_dynamic_mode'] != 'N')) $config['mobile_dynamic_mode'] = 'N';
|
287 |
if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
|
288 |
if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
|
|
|
|
|
|
|
|
|
289 |
update_option('adrotate_config', $config);
|
290 |
|
291 |
if(!isset($notifications['notification_push']) OR ($notifications['notification_push'] != 'Y' AND $notifications['notification_push'] != 'N')) $notifications['notification_push'] = 'N';
|
292 |
if(!isset($notifications['notification_email']) OR ($notifications['notification_email'] != 'Y' AND $notifications['notification_email'] != 'N')) $notifications['notification_email'] = 'Y';
|
|
|
293 |
|
294 |
if(!isset($notifications['notification_push_geo']) OR ($notifications['notification_push_geo'] != 'Y' AND $notifications['notification_push_geo'] != 'N')) $notifications['notification_push_geo'] = 'N';
|
295 |
if(!isset($notifications['notification_push_status']) OR ($notifications['notification_push_status'] != 'Y' AND $notifications['notification_push_status'] != 'N')) $notifications['notification_push_status'] = 'N';
|
304 |
if(!isset($notifications['notification_email_advertiser'])) $notifications['notification_email_advertiser'] = array(get_option('admin_email'));
|
305 |
update_option('adrotate_notifications', $notifications);
|
306 |
|
307 |
+
if(!isset($crawlers) OR count($crawlers) < 1) $crawlers = array("008", "bot", "crawler", "spider", "Accoona-AI-Agent", "alexa", "Arachmo", "B-l-i-t-z-B-O-T", "boitho.com-dc", "Cerberian Drtrs","Charlotte", "cosmos", "Covario IDS", "DataparkSearch","FindLinks", "Holmes", "htdig", "ia_archiver", "ichiro", "inktomi", "igdeSpyder", "L.webis", "Larbin", "LinkWalker", "lwp-trivial", "mabontland", "Mnogosearch", "mogimogi", "Morning Paper", "MVAClient", "NetResearchServer", "NewsGator", "NG-Search", "NutchCVS", "Nymesis", "oegp", "Orbiter", "Peew", "Pompos", "PostPost", "PycURL", "Qseero", "Radian6", "SBIder", "ScoutJet", "Scrubby", "SearchSight", "semanticdiscovery", "ShopWiki", "silk", "Snappy", "Sqworm", "StackRambler", "Teoma", "TinEye", "truwoGPS", "updated", "Vagabondo", "Vortex", "voyager", "VYU2", "webcollage", "Websquash.com", "wf84", "WomlpeFactory", "yacy", "Yahoo! Slurp", "Yahoo! Slurp China", "YahooSeeker", "YahooSeeker-Testing", "YandexImages", "Yeti", "yoogliFetchAgent", "Zao", "ZyBorg", "froogle","looksmart", "Firefly", "NationalDirectory", "Ask Jeeves", "TECNOSEEK", "InfoSeek", "Scooter", "appie", "WebBug", "Spade", "rabaz", "TechnoratiSnoop");
|
308 |
update_option('adrotate_crawlers', $crawlers);
|
309 |
|
310 |
if(!isset($debug['general'])) $debug['general'] = false;
|
491 |
) ".$charset_collate.$engine.";");
|
492 |
}
|
493 |
|
494 |
+
if(!in_array("{$wpdb->prefix}adrotate_stats_archive", $found_tables)) {
|
495 |
+
dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_stats_archive` (
|
496 |
+
`id` bigint(9) unsigned NOT NULL auto_increment,
|
497 |
+
`ad` int(5) unsigned NOT NULL default '0',
|
498 |
+
`group` int(5) unsigned NOT NULL default '0',
|
499 |
+
`thetime` int(15) unsigned NOT NULL default '0',
|
500 |
+
`clicks` int(15) unsigned NOT NULL default '0',
|
501 |
+
`impressions` int(15) unsigned NOT NULL default '0',
|
502 |
+
PRIMARY KEY (`id`),
|
503 |
+
INDEX `ad` (`ad`),
|
504 |
+
INDEX `thetime` (`thetime`)
|
505 |
+
) ".$charset_collate.$engine.";");
|
506 |
+
}
|
507 |
+
|
508 |
if(!in_array("{$wpdb->prefix}adrotate_tracker", $found_tables)) {
|
509 |
dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_tracker` (
|
510 |
`id` bigint(9) unsigned NOT NULL auto_increment,
|
542 |
$adrotate_db_version = get_option("adrotate_db_version");
|
543 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION) {
|
544 |
adrotate_database_upgrade();
|
545 |
+
// Verify all ads
|
546 |
adrotate_prepare_evaluate_ads(false);
|
547 |
}
|
548 |
|
817 |
adrotate_del_column("{$wpdb->prefix}adrotate_tracker", 'useragent');
|
818 |
}
|
819 |
|
820 |
+
// Database: 57
|
821 |
+
// AdRotate: 4.0
|
822 |
+
if($adrotate_db_version['current'] < 57) {
|
823 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
824 |
+
|
825 |
+
$charset_collate = $engine = '';
|
826 |
+
$found_tables = $wpdb->get_col("SHOW TABLES LIKE '{$wpdb->prefix}adrotate%';");
|
827 |
+
if(!empty($wpdb->charset)) {
|
828 |
+
$charset_collate .= " DEFAULT CHARACTER SET {$wpdb->charset}";
|
829 |
+
}
|
830 |
+
if($wpdb->has_cap('collation') AND !empty($wpdb->collate)) {
|
831 |
+
$charset_collate .= " COLLATE {$wpdb->collate}";
|
832 |
+
}
|
833 |
+
|
834 |
+
$found_engine = $wpdb->get_var("SELECT ENGINE FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA` = '".DB_NAME."' AND `TABLE_NAME` = '{$wpdb->prefix}posts';");
|
835 |
+
if(strtolower($found_engine) == 'innodb') {
|
836 |
+
$engine = ' ENGINE=InnoDB';
|
837 |
+
}
|
838 |
+
|
839 |
+
if(!in_array("{$wpdb->prefix}adrotate_stats_archive", $found_tables)) {
|
840 |
+
dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_stats_archive` (
|
841 |
+
`id` bigint(9) unsigned NOT NULL auto_increment,
|
842 |
+
`ad` int(5) unsigned NOT NULL default '0',
|
843 |
+
`group` int(5) unsigned NOT NULL default '0',
|
844 |
+
`thetime` int(15) unsigned NOT NULL default '0',
|
845 |
+
`clicks` int(15) unsigned NOT NULL default '0',
|
846 |
+
`impressions` int(15) unsigned NOT NULL default '0',
|
847 |
+
PRIMARY KEY (`id`),
|
848 |
+
INDEX `ad` (`ad`),
|
849 |
+
INDEX `thetime` (`thetime`)
|
850 |
+
) ".$charset_collate.$engine.";");
|
851 |
+
}
|
852 |
+
}
|
853 |
+
|
854 |
update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
|
855 |
}
|
856 |
|
1031 |
$now = adrotate_now();
|
1032 |
|
1033 |
if($adrotate_db_timer < ($now - 86400)) {
|
1034 |
+
dbDelta("OPTIMIZE TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_stats_archive`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
|
1035 |
+
dbDelta("REPAIR TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_stats_archive`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
|
1036 |
update_option('adrotate_db_timer', $now);
|
1037 |
adrotate_return('adrotate-settings', 403);
|
1038 |
} else {
|
adrotate-widget.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -13,8 +13,6 @@
|
|
13 |
Name: adrotate_widget
|
14 |
|
15 |
Purpose: Unlimited widgets for the sidebar
|
16 |
-
Receive: -none-
|
17 |
-
Return: -none-
|
18 |
Since: 0.8
|
19 |
-------------------------------------------------------------*/
|
20 |
class adrotate_widgets extends WP_Widget {
|
@@ -22,16 +20,18 @@ class adrotate_widgets extends WP_Widget {
|
|
22 |
/*-------------------------------------------------------------
|
23 |
Purpose: Construct the widget
|
24 |
-------------------------------------------------------------*/
|
25 |
-
function
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
29 |
}
|
30 |
|
31 |
/*-------------------------------------------------------------
|
32 |
Purpose: Display the widget
|
33 |
-------------------------------------------------------------*/
|
34 |
-
function widget($args, $instance) {
|
35 |
global $adrotate_config, $blog_id;
|
36 |
|
37 |
extract($args);
|
@@ -77,7 +77,7 @@ class adrotate_widgets extends WP_Widget {
|
|
77 |
/*-------------------------------------------------------------
|
78 |
Purpose: Save the widget options per instance
|
79 |
-------------------------------------------------------------*/
|
80 |
-
function update($new_instance, $old_instance) {
|
81 |
$new_instance['title'] = strip_tags($new_instance['title']);
|
82 |
$new_instance['description'] = strip_tags($new_instance['description']);
|
83 |
$new_instance['type'] = strip_tags($new_instance['type']);
|
@@ -99,7 +99,7 @@ class adrotate_widgets extends WP_Widget {
|
|
99 |
/*-------------------------------------------------------------
|
100 |
Purpose: Display the widget options for admins
|
101 |
-------------------------------------------------------------*/
|
102 |
-
function form($instance) {
|
103 |
global $blog_id;
|
104 |
|
105 |
$defaults = array();
|
@@ -142,6 +142,5 @@ class adrotate_widgets extends WP_Widget {
|
|
142 |
<input id="<?php echo $this->get_field_id('siteid'); ?>" name="<?php echo $this->get_field_name('siteid'); ?>" type="hidden" value="<?php echo $blog_id; ?>" />
|
143 |
<?php
|
144 |
}
|
145 |
-
|
146 |
}
|
147 |
?>
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
+
* Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
|
5 |
* ADROTATE is a trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
13 |
Name: adrotate_widget
|
14 |
|
15 |
Purpose: Unlimited widgets for the sidebar
|
|
|
|
|
16 |
Since: 0.8
|
17 |
-------------------------------------------------------------*/
|
18 |
class adrotate_widgets extends WP_Widget {
|
20 |
/*-------------------------------------------------------------
|
21 |
Purpose: Construct the widget
|
22 |
-------------------------------------------------------------*/
|
23 |
+
public function __construct() {
|
24 |
+
$widget_ops = array(
|
25 |
+
'classname' => 'adrotate_widgets',
|
26 |
+
'description' => 'Show a group of adverts or a single advert in any widget area.',
|
27 |
+
);
|
28 |
+
parent::__construct('adrotate_widgets', 'AdRotate', $widget_ops);
|
29 |
}
|
30 |
|
31 |
/*-------------------------------------------------------------
|
32 |
Purpose: Display the widget
|
33 |
-------------------------------------------------------------*/
|
34 |
+
public function widget($args, $instance) {
|
35 |
global $adrotate_config, $blog_id;
|
36 |
|
37 |
extract($args);
|
77 |
/*-------------------------------------------------------------
|
78 |
Purpose: Save the widget options per instance
|
79 |
-------------------------------------------------------------*/
|
80 |
+
public function update($new_instance, $old_instance) {
|
81 |
$new_instance['title'] = strip_tags($new_instance['title']);
|
82 |
$new_instance['description'] = strip_tags($new_instance['description']);
|
83 |
$new_instance['type'] = strip_tags($new_instance['type']);
|
99 |
/*-------------------------------------------------------------
|
100 |
Purpose: Display the widget options for admins
|
101 |
-------------------------------------------------------------*/
|
102 |
+
public function form($instance) {
|
103 |
global $blog_id;
|
104 |
|
105 |
$defaults = array();
|
142 |
<input id="<?php echo $this->get_field_id('siteid'); ?>" name="<?php echo $this->get_field_name('siteid'); ?>" type="hidden" value="<?php echo $blog_id; ?>" />
|
143 |
<?php
|
144 |
}
|
|
|
145 |
}
|
146 |
?>
|
adrotate.php
CHANGED
@@ -7,13 +7,13 @@ 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 |
|
14 |
/* ------------------------------------------------------------------------------------
|
15 |
* COPYRIGHT AND TRADEMARK NOTICE
|
16 |
-
* Copyright 2008-
|
17 |
* ADROTATE is a trademark of Arnan de Gans.
|
18 |
|
19 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -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 --------------------------------------------*/
|
@@ -44,7 +44,6 @@ $adrotate_crawlers = get_option('adrotate_crawlers');
|
|
44 |
$adrotate_version = get_option("adrotate_version");
|
45 |
$adrotate_db_version = get_option("adrotate_db_version");
|
46 |
$adrotate_debug = get_option("adrotate_debug");
|
47 |
-
$adrotate_advert_status = get_option("adrotate_advert_status");
|
48 |
/*-----------------------------------------------------------*/
|
49 |
|
50 |
/*--- Core --------------------------------------------------*/
|
@@ -105,7 +104,7 @@ function adrotate_dashboard() {
|
|
105 |
$adrotate_page = add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon-menu.png', __FILE__), '25.8');
|
106 |
$adrotate_page = add_submenu_page('adrotate', 'AdRotate > '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
|
107 |
$adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
|
108 |
-
$adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage
|
109 |
$adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
|
110 |
$adrotate_schedules = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
|
111 |
$adrotate_media = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
|
@@ -129,7 +128,7 @@ function adrotate_dashboard() {
|
|
129 |
Return: -none-
|
130 |
-------------------------------------------------------------*/
|
131 |
function adrotate_info() {
|
132 |
-
global $wpdb
|
133 |
?>
|
134 |
<div class="wrap">
|
135 |
<h1><?php _e('AdRotate Info', 'adrotate'); ?></h1>
|
@@ -196,7 +195,7 @@ function adrotate_manage() {
|
|
196 |
$monthend = mktime(0, 0, 0, $month+1, 0, $year);
|
197 |
?>
|
198 |
<div class="wrap">
|
199 |
-
<h1><?php _e('
|
200 |
|
201 |
<?php if($status > 0) adrotate_status($status, array('file' => $file)); ?>
|
202 |
|
@@ -581,6 +580,7 @@ function adrotate_options() {
|
|
581 |
|
582 |
<?php
|
583 |
$adrotate_config = get_option('adrotate_config');
|
|
|
584 |
|
585 |
if($active_tab == 'general') {
|
586 |
$adrotate_crawlers = get_option('adrotate_crawlers');
|
@@ -604,10 +604,9 @@ function adrotate_options() {
|
|
604 |
} elseif($active_tab == 'misc') {
|
605 |
include("dashboard/settings/misc.php");
|
606 |
} elseif($active_tab == 'maintenance') {
|
607 |
-
$adrotate_debug = get_option('adrotate_debug');
|
608 |
$adrotate_version = get_option('adrotate_version');
|
609 |
$adrotate_db_version = get_option('adrotate_db_version');
|
610 |
-
$
|
611 |
|
612 |
$adevaluate = wp_next_scheduled('adrotate_evaluate_ads');
|
613 |
$adschedule = wp_next_scheduled('adrotate_notification');
|
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.15
|
11 |
License: GPLv3
|
12 |
*/
|
13 |
|
14 |
/* ------------------------------------------------------------------------------------
|
15 |
* COPYRIGHT AND TRADEMARK NOTICE
|
16 |
+
* Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
|
17 |
* ADROTATE is a trademark of Arnan de Gans.
|
18 |
|
19 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
22 |
------------------------------------------------------------------------------------ */
|
23 |
|
24 |
/*--- AdRotate values ---------------------------------------*/
|
25 |
+
define("ADROTATE_DISPLAY", '3.15');
|
26 |
define("ADROTATE_VERSION", 380);
|
27 |
+
define("ADROTATE_DB_VERSION", 57);
|
28 |
/*-----------------------------------------------------------*/
|
29 |
|
30 |
/*--- Load Files --------------------------------------------*/
|
44 |
$adrotate_version = get_option("adrotate_version");
|
45 |
$adrotate_db_version = get_option("adrotate_db_version");
|
46 |
$adrotate_debug = get_option("adrotate_debug");
|
|
|
47 |
/*-----------------------------------------------------------*/
|
48 |
|
49 |
/*--- Core --------------------------------------------------*/
|
104 |
$adrotate_page = add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon-menu.png', __FILE__), '25.8');
|
105 |
$adrotate_page = add_submenu_page('adrotate', 'AdRotate > '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
|
106 |
$adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
|
107 |
+
$adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Adverts', 'adrotate'), __('Manage Adverts', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
|
108 |
$adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
|
109 |
$adrotate_schedules = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
|
110 |
$adrotate_media = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
|
128 |
Return: -none-
|
129 |
-------------------------------------------------------------*/
|
130 |
function adrotate_info() {
|
131 |
+
global $wpdb;
|
132 |
?>
|
133 |
<div class="wrap">
|
134 |
<h1><?php _e('AdRotate Info', 'adrotate'); ?></h1>
|
195 |
$monthend = mktime(0, 0, 0, $month+1, 0, $year);
|
196 |
?>
|
197 |
<div class="wrap">
|
198 |
+
<h1><?php _e('Advert Management', 'adrotate'); ?></h1>
|
199 |
|
200 |
<?php if($status > 0) adrotate_status($status, array('file' => $file)); ?>
|
201 |
|
580 |
|
581 |
<?php
|
582 |
$adrotate_config = get_option('adrotate_config');
|
583 |
+
$adrotate_debug = get_option('adrotate_debug');
|
584 |
|
585 |
if($active_tab == 'general') {
|
586 |
$adrotate_crawlers = get_option('adrotate_crawlers');
|
604 |
} elseif($active_tab == 'misc') {
|
605 |
include("dashboard/settings/misc.php");
|
606 |
} elseif($active_tab == 'maintenance') {
|
|
|
607 |
$adrotate_version = get_option('adrotate_version');
|
608 |
$adrotate_db_version = get_option('adrotate_db_version');
|
609 |
+
$advert_status = get_option("adrotate_advert_status");
|
610 |
|
611 |
$adevaluate = wp_next_scheduled('adrotate_evaluate_ads');
|
612 |
$adschedule = wp_next_scheduled('adrotate_notification');
|
dashboard/publisher/adverts-disabled.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<form name="disabled_banners" id="post" method="post" action="admin.php?page=adrotate-ads">
|
13 |
<?php wp_nonce_field('adrotate_bulk_ads_disable','adrotate_nonce'); ?>
|
14 |
|
15 |
-
<h3><?php _e('Disabled
|
16 |
|
17 |
<div class="tablenav">
|
18 |
<div class="alignleft actions">
|
12 |
<form name="disabled_banners" id="post" method="post" action="admin.php?page=adrotate-ads">
|
13 |
<?php wp_nonce_field('adrotate_bulk_ads_disable','adrotate_nonce'); ?>
|
14 |
|
15 |
+
<h3><?php _e('Disabled Adverts', 'adrotate'); ?></h3>
|
16 |
|
17 |
<div class="tablenav">
|
18 |
<div class="alignleft actions">
|
dashboard/publisher/adverts-edit.php
CHANGED
@@ -394,7 +394,7 @@ if($edit_banner->imagetype == "field") {
|
|
394 |
<tr>
|
395 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
396 |
<th><?php _e('ID - Name', 'adrotate'); ?></th>
|
397 |
-
<th width="5%"><center><?php _e('
|
398 |
</tr>
|
399 |
</thead>
|
400 |
|
394 |
<tr>
|
395 |
<td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
|
396 |
<th><?php _e('ID - Name', 'adrotate'); ?></th>
|
397 |
+
<th width="5%"><center><?php _e('Adverts', 'adrotate'); ?></center></th>
|
398 |
</tr>
|
399 |
</thead>
|
400 |
|
dashboard/publisher/adverts-error.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* liability that might arise from it's use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
-
<h3><?php _e('
|
13 |
|
14 |
<form name="errorbanners" id="post" method="post" action="admin.php?page=adrotate-ads">
|
15 |
<?php wp_nonce_field('adrotate_bulk_ads_error','adrotate_nonce'); ?>
|
9 |
* liability that might arise from it's use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
+
<h3><?php _e('Adverts that need attention', 'adrotate'); ?></h3>
|
13 |
|
14 |
<form name="errorbanners" id="post" method="post" action="admin.php?page=adrotate-ads">
|
15 |
<?php wp_nonce_field('adrotate_bulk_ads_error','adrotate_nonce'); ?>
|
dashboard/publisher/adverts-main.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* liability that might arise from it's use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
-
<h3><?php _e('Active
|
13 |
|
14 |
<form name="banners" id="post" method="post" action="admin.php?page=adrotate-ads">
|
15 |
<?php wp_nonce_field('adrotate_bulk_ads_active','adrotate_nonce'); ?>
|
@@ -106,7 +106,7 @@
|
|
106 |
<?php } else { ?>
|
107 |
<tr id='no-groups'>
|
108 |
<th class="check-column"> </th>
|
109 |
-
<td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '10' : '5'; ?>"><em><?php _e('No
|
110 |
</tr>
|
111 |
<?php } ?>
|
112 |
</tbody>
|
9 |
* liability that might arise from it's use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
+
<h3><?php _e('Active Adverts', 'adrotate'); ?></h3>
|
13 |
|
14 |
<form name="banners" id="post" method="post" action="admin.php?page=adrotate-ads">
|
15 |
<?php wp_nonce_field('adrotate_bulk_ads_active','adrotate_nonce'); ?>
|
106 |
<?php } else { ?>
|
107 |
<tr id='no-groups'>
|
108 |
<th class="check-column"> </th>
|
109 |
+
<td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '10' : '5'; ?>"><em><?php _e('No adverts created yet!', 'adrotate'); ?></em></td>
|
110 |
</tr>
|
111 |
<?php } ?>
|
112 |
</tbody>
|
dashboard/publisher/adverts-report.php
CHANGED
@@ -9,21 +9,22 @@
|
|
9 |
* liability that might arise from it's use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
|
12 |
-
$banner
|
13 |
-
$stats
|
14 |
-
$stats_today
|
|
|
15 |
|
16 |
// Get Click Through Rate
|
17 |
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
|
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
}
|
27 |
?>
|
28 |
|
29 |
<h3><?php _e('Statistics for advert', 'adrotate'); ?> '<?php echo $banner->title; ?>'</h3>
|
@@ -45,12 +46,17 @@ if($adrotate_debug['publisher'] == true) {
|
|
45 |
<table class="widefat" style="margin-top: .5em">
|
46 |
|
47 |
<tbody>
|
48 |
-
|
49 |
-
<th colspan="
|
50 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('ads', $ad_edit_id, $month, $year); ?></div>
|
51 |
<?php echo adrotate_stats_graph('ads', $ad_edit_id, 1, $monthstart, $monthend); ?>
|
52 |
</th>
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
54 |
</tbody>
|
55 |
|
56 |
</table>
|
9 |
* liability that might arise from it's use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
|
12 |
+
$banner = $wpdb->get_row("SELECT `title`, `tracker` FROM `".$wpdb->prefix."adrotate` WHERE `id` = '$ad_edit_id';");
|
13 |
+
$stats = adrotate_stats($ad_edit_id);
|
14 |
+
$stats_today = adrotate_stats($ad_edit_id, $today);
|
15 |
+
$stats_graph_month = adrotate_stats($ad_edit_id, $monthstart, $monthend);
|
16 |
|
17 |
// Get Click Through Rate
|
18 |
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
19 |
+
$ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month['impressions']);
|
20 |
|
21 |
+
// Prevent gaps in display
|
22 |
+
if(empty($stats['impressions'])) $stats['impressions'] = 0;
|
23 |
+
if(empty($stats['clicks'])) $stats['clicks'] = 0;
|
24 |
+
if(empty($stats_today['impressions'])) $stats_today['impressions'] = 0;
|
25 |
+
if(empty($stats_today['clicks'])) $stats_today['clicks'] = 0;
|
26 |
+
if(empty($stats_graph_month['impressions'])) $stats_graph_month['impressions'] = 0;
|
27 |
+
if(empty($stats_graph_month['clicks'])) $stats_graph_month['clicks'] = 0;
|
|
|
28 |
?>
|
29 |
|
30 |
<h3><?php _e('Statistics for advert', 'adrotate'); ?> '<?php echo $banner->title; ?>'</h3>
|
46 |
<table class="widefat" style="margin-top: .5em">
|
47 |
|
48 |
<tbody>
|
49 |
+
<tr>
|
50 |
+
<th colspan="3">
|
51 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('ads', $ad_edit_id, $month, $year); ?></div>
|
52 |
<?php echo adrotate_stats_graph('ads', $ad_edit_id, 1, $monthstart, $monthend); ?>
|
53 |
</th>
|
54 |
+
</tr>
|
55 |
+
<tr>
|
56 |
+
<td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
|
57 |
+
<td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate-pro'); ?><br /><div class="number_large"><?php if($banner->tracker == "Y") { echo $stats_graph_month['clicks']; } else { echo '--'; } ?></div></div></td>
|
58 |
+
<td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate-pro'); ?><br /><div class="number_large"><?php if($banner->tracker == "Y") { echo $ctr_graph_month.' %'; } else { echo '--'; } ?></div></div></td>
|
59 |
+
</tr>
|
60 |
</tbody>
|
61 |
|
62 |
</table>
|
dashboard/publisher/groups-edit.php
CHANGED
@@ -63,7 +63,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
63 |
<select tabindex="2" name="adrotate_modus">
|
64 |
<option value="0" <?php if($edit_group->modus == 0) { echo 'selected'; } ?>><?php _e('Default - Show one ad at a time', 'adrotate'); ?></option>
|
65 |
<option value="1" <?php if($edit_group->modus == 1) { echo 'selected'; } ?>><?php _e('Dynamic Mode - Show a different ad every few seconds', 'adrotate'); ?></option>
|
66 |
-
<option value="2" <?php if($edit_group->modus == 2) { echo 'selected'; } ?>><?php _e('Block Mode - Show a block of
|
67 |
</select>
|
68 |
</td>
|
69 |
<td>
|
@@ -101,7 +101,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
101 |
<label for="adrotate_adwidth"><input tabindex="5" name="adrotate_adwidth" type="text" class="search-input" size="3" value="<?php echo $edit_group->adwidth; ?>" autocomplete="off" /> <?php _e('pixel(s) wide', 'adrotate'); ?>,</label> <label for="adrotate_adheight"><input tabindex="6" name="adrotate_adheight" type="text" class="search-input" size="3" value="<?php echo $edit_group->adheight; ?>" autocomplete="off" /> <?php _e('pixel(s) high.', 'adrotate'); ?></label>
|
102 |
</td>
|
103 |
<td colspan="2">
|
104 |
-
<p><em><?php _e('Dynamic and Block Mode', 'adrotate'); ?> - <?php _e('Define the maximum size of the
|
105 |
</td>
|
106 |
</tr>
|
107 |
<tr>
|
@@ -138,7 +138,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
138 |
<tbody>
|
139 |
<tr>
|
140 |
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
141 |
-
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of
|
142 |
</tr>
|
143 |
<tr>
|
144 |
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
@@ -285,7 +285,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
285 |
<tbody>
|
286 |
<tr>
|
287 |
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
288 |
-
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of
|
289 |
</tr>
|
290 |
<tr>
|
291 |
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
@@ -376,7 +376,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
376 |
<?php } else { ?>
|
377 |
<tr>
|
378 |
<th class="check-column"> </th>
|
379 |
-
<td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '6' : '4'; ?>"><em><?php _e('No
|
380 |
</tr>
|
381 |
<?php } ?>
|
382 |
</tbody>
|
63 |
<select tabindex="2" name="adrotate_modus">
|
64 |
<option value="0" <?php if($edit_group->modus == 0) { echo 'selected'; } ?>><?php _e('Default - Show one ad at a time', 'adrotate'); ?></option>
|
65 |
<option value="1" <?php if($edit_group->modus == 1) { echo 'selected'; } ?>><?php _e('Dynamic Mode - Show a different ad every few seconds', 'adrotate'); ?></option>
|
66 |
+
<option value="2" <?php if($edit_group->modus == 2) { echo 'selected'; } ?>><?php _e('Block Mode - Show a block of adverts', 'adrotate'); ?></option>
|
67 |
</select>
|
68 |
</td>
|
69 |
<td>
|
101 |
<label for="adrotate_adwidth"><input tabindex="5" name="adrotate_adwidth" type="text" class="search-input" size="3" value="<?php echo $edit_group->adwidth; ?>" autocomplete="off" /> <?php _e('pixel(s) wide', 'adrotate'); ?>,</label> <label for="adrotate_adheight"><input tabindex="6" name="adrotate_adheight" type="text" class="search-input" size="3" value="<?php echo $edit_group->adheight; ?>" autocomplete="off" /> <?php _e('pixel(s) high.', 'adrotate'); ?></label>
|
102 |
</td>
|
103 |
<td colspan="2">
|
104 |
+
<p><em><?php _e('Dynamic and Block Mode', 'adrotate'); ?> - <?php _e('Define the maximum size of the adverts in pixels. Size can be \'auto\' (Not recommended). Default: 125/125.', 'adrotate'); ?></em></p>
|
105 |
</td>
|
106 |
</tr>
|
107 |
<tr>
|
138 |
<tbody>
|
139 |
<tr>
|
140 |
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
141 |
+
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Adverts" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
|
142 |
</tr>
|
143 |
<tr>
|
144 |
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
285 |
<tbody>
|
286 |
<tr>
|
287 |
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
288 |
+
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Adverts" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
|
289 |
</tr>
|
290 |
<tr>
|
291 |
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
376 |
<?php } else { ?>
|
377 |
<tr>
|
378 |
<th class="check-column"> </th>
|
379 |
+
<td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '6' : '4'; ?>"><em><?php _e('No adverts created!', 'adrotate'); ?></em></td>
|
380 |
</tr>
|
381 |
<?php } ?>
|
382 |
</tbody>
|
dashboard/publisher/groups-main.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
<select name="adrotate_action" id="cat" class="postform">
|
20 |
<option value=""><?php _e('Bulk Actions', 'adrotate'); ?></option>
|
21 |
<option value="group_delete"><?php _e('Delete Group', 'adrotate'); ?></option>
|
22 |
-
<option value="group_delete_banners"><?php _e('Delete Group including
|
23 |
</select>
|
24 |
<input onclick="return confirm('<?php _e('You are about to delete a group', 'adrotate'); ?>\n<?php _e('This action can not be undone!', 'adrotate'); ?>\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')" type="submit" id="post-action-submit" name="adrotate_action_submit" value="<?php _e('Go', 'adrotate'); ?>" class="button-secondary" />
|
25 |
</div>
|
@@ -31,7 +31,7 @@
|
|
31 |
<td class="check-column"> </td>
|
32 |
<th width="5%"><center><?php _e('ID', 'adrotate'); ?></center></th>
|
33 |
<th><?php _e('Name', 'adrotate'); ?></th>
|
34 |
-
<th width="5%"><center><?php _e('
|
35 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
36 |
<th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
|
37 |
<th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
|
19 |
<select name="adrotate_action" id="cat" class="postform">
|
20 |
<option value=""><?php _e('Bulk Actions', 'adrotate'); ?></option>
|
21 |
<option value="group_delete"><?php _e('Delete Group', 'adrotate'); ?></option>
|
22 |
+
<option value="group_delete_banners"><?php _e('Delete Group including adverts', 'adrotate'); ?></option>
|
23 |
</select>
|
24 |
<input onclick="return confirm('<?php _e('You are about to delete a group', 'adrotate'); ?>\n<?php _e('This action can not be undone!', 'adrotate'); ?>\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')" type="submit" id="post-action-submit" name="adrotate_action_submit" value="<?php _e('Go', 'adrotate'); ?>" class="button-secondary" />
|
25 |
</div>
|
31 |
<td class="check-column"> </td>
|
32 |
<th width="5%"><center><?php _e('ID', 'adrotate'); ?></center></th>
|
33 |
<th><?php _e('Name', 'adrotate'); ?></th>
|
34 |
+
<th width="5%"><center><?php _e('Adverts', 'adrotate'); ?></center></th>
|
35 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
36 |
<th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
|
37 |
<th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
|
dashboard/publisher/groups-report.php
CHANGED
@@ -13,23 +13,19 @@ $title = $wpdb->get_var("SELECT `name` FROM `".$wpdb->prefix."adrotate_groups` W
|
|
13 |
$stats = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group_edit_id';", ARRAY_A);
|
14 |
$stats_today = $wpdb->get_row("SELECT `clicks`, `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group_edit_id' AND `thetime` = '$today';", ARRAY_A);
|
15 |
|
|
|
|
|
16 |
// Get Click Through Rate
|
17 |
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
|
|
18 |
|
19 |
// Prevent gaps in display
|
20 |
if(empty($stats['impressions'])) $stats['impressions'] = 0;
|
21 |
if(empty($stats['clicks'])) $stats['clicks'] = 0;
|
22 |
if(empty($stats_today['impressions'])) $stats_today['impressions'] = 0;
|
23 |
if(empty($stats_today['clicks'])) $stats_today['clicks'] = 0;
|
24 |
-
|
25 |
-
if($
|
26 |
-
echo "<p><strong>[DEBUG] Group (all time)</strong><pre>";
|
27 |
-
print_r($stats);
|
28 |
-
echo "</pre></p>";
|
29 |
-
echo "<p><strong>[DEBUG] Group (today)</strong><pre>";
|
30 |
-
print_r($stats_today);
|
31 |
-
echo "</pre></p>";
|
32 |
-
}
|
33 |
?>
|
34 |
|
35 |
<h3><?php _e('Statistics for group', 'adrotate'); ?> '<?php echo $title; ?>'</h3>
|
@@ -51,12 +47,17 @@ if($adrotate_debug['publisher'] == true) {
|
|
51 |
<table class="widefat" style="margin-top: .5em">
|
52 |
|
53 |
<tbody>
|
54 |
-
|
55 |
<th colspan="5">
|
56 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('groups', $group_edit_id, $month, $year); ?></div>
|
57 |
<?php echo adrotate_stats_graph('groups', $group_edit_id, 1, $monthstart, $monthend); ?>
|
58 |
</th>
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
60 |
</tbody>
|
61 |
|
62 |
</table>
|
13 |
$stats = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group_edit_id';", ARRAY_A);
|
14 |
$stats_today = $wpdb->get_row("SELECT `clicks`, `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group_edit_id' AND `thetime` = '$today';", ARRAY_A);
|
15 |
|
16 |
+
$stats_graph_month = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats` WHERE `group` = {$group_edit_id} AND `thetime` >= {$monthstart} AND `thetime` <= {$monthend};", ARRAY_A);
|
17 |
+
|
18 |
// Get Click Through Rate
|
19 |
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
20 |
+
$ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month['impressions']);
|
21 |
|
22 |
// Prevent gaps in display
|
23 |
if(empty($stats['impressions'])) $stats['impressions'] = 0;
|
24 |
if(empty($stats['clicks'])) $stats['clicks'] = 0;
|
25 |
if(empty($stats_today['impressions'])) $stats_today['impressions'] = 0;
|
26 |
if(empty($stats_today['clicks'])) $stats_today['clicks'] = 0;
|
27 |
+
if(empty($stats_graph_month['impressions'])) $stats_graph_month['impressions'] = 0;
|
28 |
+
if(empty($stats_graph_month['clicks'])) $stats_graph_month['clicks'] = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
?>
|
30 |
|
31 |
<h3><?php _e('Statistics for group', 'adrotate'); ?> '<?php echo $title; ?>'</h3>
|
47 |
<table class="widefat" style="margin-top: .5em">
|
48 |
|
49 |
<tbody>
|
50 |
+
<tr>
|
51 |
<th colspan="5">
|
52 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('groups', $group_edit_id, $month, $year); ?></div>
|
53 |
<?php echo adrotate_stats_graph('groups', $group_edit_id, 1, $monthstart, $monthend); ?>
|
54 |
</th>
|
55 |
+
</tr>
|
56 |
+
<tr>
|
57 |
+
<td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
|
58 |
+
<td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $stats_graph_month['clicks']; ?></div></div></td>
|
59 |
+
<td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $ctr_graph_month; ?> %</div></div></td>
|
60 |
+
</tr>
|
61 |
</tbody>
|
62 |
|
63 |
</table>
|
dashboard/settings/maintenance.php
CHANGED
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr>
|
66 |
<td valign="top"><?php _e('Current status of adverts', 'adrotate'); ?></td>
|
67 |
-
<td><?php _e('Normal', 'adrotate'); ?>: <?php echo $
|
68 |
</tr>
|
69 |
<tr>
|
70 |
<td><?php _e('Banners/assets Folder', 'adrotate-pro'); ?></td>
|
64 |
</tr>
|
65 |
<tr>
|
66 |
<td valign="top"><?php _e('Current status of adverts', 'adrotate'); ?></td>
|
67 |
+
<td><?php _e('Normal', 'adrotate'); ?>: <?php echo $advert_status['normal']; ?>, <?php _e('Error', 'adrotate'); ?>: <?php echo $advert_status['error']; ?>, <?php _e('Expired', 'adrotate'); ?>: <?php echo $advert_status['expired']; ?>, <?php _e('Expires Soon', 'adrotate'); ?>: <?php echo $advert_status['expiressoon']; ?>, <?php _e('Unknown', 'adrotate'); ?>: <?php echo $advert_status['unknown']; ?>.</td>
|
68 |
</tr>
|
69 |
<tr>
|
70 |
<td><?php _e('Banners/assets Folder', 'adrotate-pro'); ?></td>
|
dashboard/settings/notifications.php
CHANGED
@@ -28,15 +28,6 @@
|
|
28 |
</tr>
|
29 |
</table>
|
30 |
|
31 |
-
<h3><?php _e('Dashboard Notifications', 'adrotate'); ?></h3>
|
32 |
-
<span class="description"><?php _e('These show to every administrator who can edit adverts.', 'adrotate'); ?></span>
|
33 |
-
<table class="form-table">
|
34 |
-
<tr>
|
35 |
-
<th valign="top"><?php _e('Notification banners', 'adrotate'); ?></th>
|
36 |
-
<td><label for="adrotate_notification_dashboard_disabled"><input type="checkbox" name="adrotate_notification_dashboard_disabled" disabled /> <?php _e('Disable dashboard notifications.', 'adrotate'); ?></label></td>
|
37 |
-
</tr>
|
38 |
-
</table>
|
39 |
-
|
40 |
<h3><?php _e('Email Notifications', 'adrotate'); ?></h3>
|
41 |
<span class="description"><?php _e('Set up who gets notification emails.', 'adrotate'); ?></span>
|
42 |
<table class="form-table">
|
28 |
</tr>
|
29 |
</table>
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
<h3><?php _e('Email Notifications', 'adrotate'); ?></h3>
|
32 |
<span class="description"><?php _e('Set up who gets notification emails.', 'adrotate'); ?></span>
|
33 |
<table class="form-table">
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
@@ -17,113 +17,113 @@ msgstr ""
|
|
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,46 @@ 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 "
|
197 |
-
msgstr "
|
198 |
-
|
199 |
-
#: adrotate-output.php:
|
200 |
-
msgid "
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
msgstr "
|
210 |
-
|
211 |
-
#: adrotate-output.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
-
|
215 |
-
#: adrotate-output.php:
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
#:
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
#: adrotate-output.php:729
|
224 |
-
msgid "ad(s) are about to expire."
|
225 |
-
msgstr "реклама/и изтича(т)."
|
226 |
-
|
227 |
-
#: adrotate-output.php:729
|
228 |
-
msgid "ad(s) with configuration errors."
|
229 |
-
msgstr "реклама/и с грешни настройки."
|
230 |
-
|
231 |
-
#: adrotate-output.php:729
|
232 |
-
msgid "Fix this as soon as possible"
|
233 |
-
msgstr "Поправка възможно най-скоро"
|
234 |
-
|
235 |
-
#: adrotate-output.php:741 dashboard/adrotatepro.php:106
|
236 |
-
#: dashboard/adrotatepro.php:107 dashboard/adrotatepro.php:108
|
237 |
-
#: dashboard/adrotatepro.php:109 dashboard/adrotatepro.php:118
|
238 |
-
#: dashboard/adrotatepro.php:119 dashboard/adrotatepro.php:120
|
239 |
-
#: dashboard/adrotatepro.php:121 dashboard/info.php:114 dashboard/info.php:115
|
240 |
-
#: dashboard/info.php:116 dashboard/info.php:117 dashboard/info.php:126
|
241 |
-
#: dashboard/info.php:127 dashboard/info.php:128 dashboard/info.php:129
|
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 +231,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 website"
|
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 "
|
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 +300,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 |
|
@@ -428,108 +408,108 @@ msgstr "Следващ"
|
|
428 |
msgid "No data to show!"
|
429 |
msgstr "Няма информация!"
|
430 |
|
431 |
-
#: adrotate-widget.php:
|
432 |
msgid "Title (optional):"
|
433 |
msgstr "Заглавие (не е задължително):"
|
434 |
|
435 |
-
#: adrotate-widget.php:
|
436 |
msgid "HTML will be stripped out."
|
437 |
msgstr "HTML тагове не се поддържат."
|
438 |
|
439 |
-
#: adrotate-widget.php:
|
440 |
msgid "Description (optional):"
|
441 |
msgstr "Описание (не е задължително):"
|
442 |
|
443 |
-
#: adrotate-widget.php:
|
444 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
445 |
msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
|
446 |
|
447 |
-
#: adrotate-widget.php:
|
448 |
msgid "Type:"
|
449 |
msgstr "Тип:"
|
450 |
|
451 |
-
#: adrotate-widget.php:
|
452 |
-
msgid "
|
453 |
-
msgstr "
|
454 |
|
455 |
-
#: adrotate-widget.php:
|
456 |
-
msgid "Group
|
457 |
-
msgstr "
|
458 |
|
459 |
-
#: adrotate-widget.php:
|
460 |
msgid "Choose what you want to use this widget for"
|
461 |
msgstr "Изберете за какво иската да използвате тази джаджа"
|
462 |
|
463 |
-
#: adrotate-widget.php:
|
464 |
msgid "ID:"
|
465 |
msgstr "ID:"
|
466 |
|
467 |
-
#: adrotate-widget.php:
|
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
|
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 "
|
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 +517,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 +546,87 @@ 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 +634,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 +649,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,12 +658,12 @@ msgstr ""
|
|
679 |
"използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
|
680 |
"файловете, вместо \".full\"."
|
681 |
|
682 |
-
#: adrotate.php:
|
683 |
#: dashboard/publisher/groups-edit.php:320
|
684 |
msgid "Example:"
|
685 |
msgstr "Пример:"
|
686 |
|
687 |
-
#: adrotate.php:
|
688 |
msgid ""
|
689 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
690 |
"for different viewports."
|
@@ -692,51 +671,51 @@ msgstr ""
|
|
692 |
"image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
|
693 |
"реклама в различни резолюции на екрана."
|
694 |
|
695 |
-
#: adrotate.php:
|
696 |
msgid "Upload file"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: adrotate.php:
|
700 |
msgid "Click only once per file!"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
msgid "Available files in"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
#: dashboard/publisher/groups-main.php:33
|
709 |
msgid "Name"
|
710 |
msgstr "Име"
|
711 |
|
712 |
-
#: adrotate.php:
|
713 |
msgid "Actions"
|
714 |
msgstr "Действия"
|
715 |
|
716 |
-
#: adrotate.php:
|
717 |
-
#: adrotate.php:
|
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:
|
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:
|
732 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
733 |
msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
|
734 |
|
735 |
-
#: adrotate.php:
|
736 |
msgid "AdRotate Settings"
|
737 |
msgstr "AdRotate Настройки"
|
738 |
|
739 |
-
#: adrotate.php:
|
740 |
msgid "Update Options"
|
741 |
msgstr "Опции за обновяване"
|
742 |
|
@@ -792,22 +771,15 @@ msgid ""
|
|
792 |
"forum. Get a solution (usually) within a day."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
796 |
msgid "AdRotate is brought to you by"
|
797 |
msgstr "AdRotate достига до Вас, благодарение на"
|
798 |
|
799 |
-
#: dashboard/adrotatepro.php:
|
800 |
-
msgid ""
|
801 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
802 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
803 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: dashboard/adrotatepro.php:81
|
807 |
msgid "Schedule all campaigns with ease"
|
808 |
msgstr "Планиране на всички кампании с лекота"
|
809 |
|
810 |
-
#: dashboard/adrotatepro.php:
|
811 |
msgid ""
|
812 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
813 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -815,11 +787,11 @@ msgid ""
|
|
815 |
"much more easy. You can set one or many schedules for adverts."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: dashboard/adrotatepro.php:
|
819 |
msgid "Avoid adblockers"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: dashboard/adrotatepro.php:
|
823 |
msgid ""
|
824 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
825 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
@@ -827,11 +799,11 @@ msgid ""
|
|
827 |
"adverts smartly so these features reach their full potential!"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: dashboard/adrotatepro.php:
|
831 |
msgid "Stay up-to-date with notifications"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: dashboard/adrotatepro.php:
|
835 |
msgid ""
|
836 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
837 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -840,89 +812,89 @@ msgid ""
|
|
840 |
"miss an expiration date again."
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: dashboard/adrotatepro.php:
|
844 |
-
#: dashboard/info.php:
|
845 |
msgid "Buy AdRotate Professional"
|
846 |
msgstr "Купете AdRotate Professional"
|
847 |
|
848 |
-
#: dashboard/adrotatepro.php:
|
849 |
msgid "Single License"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: dashboard/adrotatepro.php:
|
853 |
msgid "For one WordPress installation."
|
854 |
msgstr "За една инсталация на WordPress."
|
855 |
|
856 |
-
#: dashboard/adrotatepro.php:
|
857 |
-
#: dashboard/info.php:
|
858 |
msgid "Duo License"
|
859 |
msgstr "Duo лиценз"
|
860 |
|
861 |
-
#: dashboard/adrotatepro.php:
|
862 |
msgid "For two WordPress installations."
|
863 |
msgstr "За две Wordpress инсталации."
|
864 |
|
865 |
-
#: dashboard/adrotatepro.php:
|
866 |
-
#: dashboard/info.php:
|
867 |
msgid "Multi License"
|
868 |
msgstr "Multi лиценз"
|
869 |
|
870 |
-
#: dashboard/adrotatepro.php:
|
871 |
msgid " For up to five WordPress installations."
|
872 |
msgstr " За до 5 Wordpress инсталации."
|
873 |
|
874 |
-
#: dashboard/adrotatepro.php:
|
875 |
-
#: dashboard/info.php:
|
876 |
msgid "Developer License"
|
877 |
msgstr "Developer лиценз"
|
878 |
|
879 |
-
#: dashboard/adrotatepro.php:
|
880 |
msgid "Unlimited WordPress installations and/or networks."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: dashboard/adrotatepro.php:
|
884 |
-
#: dashboard/info.php:
|
885 |
msgid "Compare licenses"
|
886 |
msgstr "Сравнение на лицензи"
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
msgid "Not sure which license is for you? Compare them..."
|
890 |
msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
|
891 |
|
892 |
-
#: dashboard/adrotatepro.php:
|
893 |
msgid "All Licenses"
|
894 |
msgstr "Всички лицензи"
|
895 |
|
896 |
-
#: dashboard/adrotatepro.php:
|
897 |
msgid "Lifetime License"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: dashboard/adrotatepro.php:
|
901 |
msgid "Single installation."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: dashboard/adrotatepro.php:
|
905 |
msgid "Up to 2 installations."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: dashboard/adrotatepro.php:
|
909 |
msgid "Up to 10 installations."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: dashboard/adrotatepro.php:
|
913 |
msgid "Up to 25 installations or multisite networks."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: dashboard/adrotatepro.php:
|
917 |
msgid ""
|
918 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: dashboard/adrotatepro.php:
|
922 |
msgid "Not sure which license is for you?"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: dashboard/adrotatepro.php:
|
926 |
msgid "Compare Licenses"
|
927 |
msgstr ""
|
928 |
|
@@ -938,7 +910,8 @@ msgstr "Вие имате"
|
|
938 |
msgid "Adverts that need you"
|
939 |
msgstr "Реклами, които изискват вниманието Ви"
|
940 |
|
941 |
-
#: dashboard/info.php:37
|
|
|
942 |
msgid "Adverts"
|
943 |
msgstr "Реклами"
|
944 |
|
@@ -960,19 +933,22 @@ msgstr "Подкрепете AdRotate"
|
|
960 |
|
961 |
#: dashboard/info.php:55
|
962 |
msgid ""
|
963 |
-
"
|
964 |
-
"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: dashboard/info.php:81
|
968 |
-
msgid "AdRotate News and Developer Blog"
|
969 |
-
msgstr "AdRotate блог за новини и разработка"
|
970 |
-
|
971 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
msgid "Get more features with AdRotate Pro"
|
973 |
msgstr "Получете по-голяма функционалност с AdRotate Pro"
|
974 |
|
975 |
-
#: dashboard/info.php:
|
976 |
msgid ""
|
977 |
"Benefit from extra features to reinforce your income with advertising "
|
978 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
@@ -982,21 +958,25 @@ msgstr ""
|
|
982 |
"подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
|
983 |
"функции, които предлага AdRotate Pro спрямо безплатната версия."
|
984 |
|
985 |
-
#: dashboard/info.php:
|
986 |
msgid "Want to know more about"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: dashboard/info.php:
|
990 |
msgid "Visit the"
|
991 |
msgstr "Посетете"
|
992 |
|
993 |
-
#: dashboard/info.php:
|
994 |
msgid "website"
|
995 |
msgstr "уебсайт"
|
996 |
|
|
|
|
|
|
|
|
|
997 |
#: dashboard/publisher/adverts-disabled.php:15
|
998 |
-
msgid "Disabled
|
999 |
-
msgstr "
|
1000 |
|
1001 |
#: dashboard/publisher/adverts-disabled.php:21
|
1002 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1031,17 +1011,21 @@ msgstr "Показана"
|
|
1031 |
|
1032 |
#: dashboard/publisher/adverts-disabled.php:39
|
1033 |
#: dashboard/publisher/adverts-main.php:46
|
1034 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1035 |
#: dashboard/publisher/groups-edit.php:334
|
1036 |
#: dashboard/publisher/groups-main.php:38
|
1037 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1038 |
msgid "Clicks"
|
1039 |
msgstr "Кликове"
|
1040 |
|
1041 |
#: dashboard/publisher/adverts-disabled.php:40
|
1042 |
#: dashboard/publisher/adverts-main.php:48
|
1043 |
-
#: dashboard/publisher/adverts-report.php:
|
1044 |
-
#: dashboard/publisher/
|
|
|
|
|
1045 |
msgid "CTR"
|
1046 |
msgstr "CTR"
|
1047 |
|
@@ -1411,8 +1395,8 @@ msgid ""
|
|
1411 |
msgstr ""
|
1412 |
|
1413 |
#: dashboard/publisher/adverts-edit.php:312
|
1414 |
-
#: dashboard/publisher/adverts-report.php:
|
1415 |
-
#: dashboard/publisher/groups-report.php:
|
1416 |
msgid "Note:"
|
1417 |
msgstr "Забележка:"
|
1418 |
|
@@ -1538,8 +1522,8 @@ msgid "Mode"
|
|
1538 |
msgstr "Режим"
|
1539 |
|
1540 |
#: dashboard/publisher/adverts-error.php:12
|
1541 |
-
msgid "
|
1542 |
-
msgstr "
|
1543 |
|
1544 |
#: dashboard/publisher/adverts-error.php:20
|
1545 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1577,8 +1561,8 @@ msgid "Configuration errors."
|
|
1577 |
msgstr "Грешки при конфигурирането."
|
1578 |
|
1579 |
#: dashboard/publisher/adverts-main.php:12
|
1580 |
-
msgid "Active
|
1581 |
-
msgstr "
|
1582 |
|
1583 |
#: dashboard/publisher/adverts-main.php:24
|
1584 |
msgid "Export to XML"
|
@@ -1597,35 +1581,37 @@ msgid "Today"
|
|
1597 |
msgstr "Днес"
|
1598 |
|
1599 |
#: dashboard/publisher/adverts-main.php:109
|
1600 |
-
msgid "No
|
1601 |
-
msgstr "
|
1602 |
|
1603 |
-
#: dashboard/publisher/adverts-report.php:
|
1604 |
msgid "Statistics for advert"
|
1605 |
msgstr "Статистика за реклами"
|
1606 |
|
1607 |
-
#: dashboard/publisher/adverts-report.php:
|
1608 |
-
#: dashboard/publisher/
|
|
|
|
|
1609 |
msgid "Impressions"
|
1610 |
msgstr "Импресии"
|
1611 |
|
1612 |
-
#: dashboard/publisher/adverts-report.php:
|
1613 |
-
#: dashboard/publisher/groups-report.php:
|
1614 |
msgid "Impressions today"
|
1615 |
msgstr "Импресии днес"
|
1616 |
|
1617 |
-
#: dashboard/publisher/adverts-report.php:
|
1618 |
-
#: dashboard/publisher/groups-report.php:
|
1619 |
msgid "Clicks today"
|
1620 |
msgstr "Кликове днес"
|
1621 |
|
1622 |
-
#: dashboard/publisher/adverts-report.php:
|
1623 |
-
#: dashboard/publisher/groups-report.php:
|
1624 |
msgid "Monthly overview of clicks and impressions"
|
1625 |
msgstr "Месечен преглед на кликовете и импресиите"
|
1626 |
|
1627 |
-
#: dashboard/publisher/adverts-report.php:
|
1628 |
-
#: dashboard/publisher/groups-report.php:
|
1629 |
msgid ""
|
1630 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1631 |
"counted by other parties."
|
@@ -1651,8 +1637,8 @@ msgstr ""
|
|
1651 |
"Динамичен Режим - показва се различна реклама на определен брой секунди"
|
1652 |
|
1653 |
#: dashboard/publisher/groups-edit.php:66
|
1654 |
-
msgid "Block Mode - Show a block of
|
1655 |
-
msgstr "
|
1656 |
|
1657 |
#: dashboard/publisher/groups-edit.php:70
|
1658 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
@@ -1703,11 +1689,9 @@ msgstr "пиксела височина."
|
|
1703 |
|
1704 |
#: dashboard/publisher/groups-edit.php:104
|
1705 |
msgid ""
|
1706 |
-
"Define the maximum size of the
|
1707 |
"recommended). Default: 125/125."
|
1708 |
msgstr ""
|
1709 |
-
"Задайте максималния размер на рекламите в пиксели. Размера не може да е "
|
1710 |
-
"'auto' (Не е препоръчително). По подразбиране: 125/125."
|
1711 |
|
1712 |
#: dashboard/publisher/groups-edit.php:108
|
1713 |
msgid "Automated refresh"
|
@@ -1731,8 +1715,8 @@ msgstr ""
|
|
1731 |
#: dashboard/publisher/groups-edit.php:141
|
1732 |
#: dashboard/publisher/groups-edit.php:288
|
1733 |
msgid ""
|
1734 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1735 |
-
"\" and enter ID"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1950,16 +1934,16 @@ msgid "Visible until"
|
|
1950 |
msgstr "Да се вижда до"
|
1951 |
|
1952 |
#: dashboard/publisher/groups-edit.php:379
|
1953 |
-
msgid "No
|
1954 |
-
msgstr "
|
1955 |
|
1956 |
#: dashboard/publisher/groups-main.php:21
|
1957 |
msgid "Delete Group"
|
1958 |
msgstr "Изтриване на група"
|
1959 |
|
1960 |
#: dashboard/publisher/groups-main.php:22
|
1961 |
-
msgid "Delete Group including
|
1962 |
-
msgstr "
|
1963 |
|
1964 |
#: dashboard/publisher/groups-main.php:24
|
1965 |
msgid "You are about to delete a group"
|
@@ -1978,7 +1962,7 @@ msgstr "ОК, за да продължите, ОТКАЗ за стоп."
|
|
1978 |
msgid "No groups created!"
|
1979 |
msgstr "Няма създадени групи!"
|
1980 |
|
1981 |
-
#: dashboard/publisher/groups-report.php:
|
1982 |
msgid "Statistics for group"
|
1983 |
msgstr "Статистика за групи"
|
1984 |
|
@@ -2444,15 +2428,27 @@ msgid "Unknown"
|
|
2444 |
msgstr ""
|
2445 |
|
2446 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2447 |
#, fuzzy
|
2448 |
msgid "Ad evaluation next run:"
|
2449 |
msgstr "Оценка на рекламата:"
|
2450 |
|
2451 |
-
#: dashboard/settings/maintenance.php:
|
2452 |
msgid "Not scheduled!"
|
2453 |
msgstr "Не е планирано!"
|
2454 |
|
2455 |
-
#: dashboard/settings/maintenance.php:
|
2456 |
#, fuzzy
|
2457 |
msgid "Clean Trackerdata next run:"
|
2458 |
msgstr "Изчистване на Trackerdata при следващо стартиране:"
|
@@ -2574,35 +2570,19 @@ msgstr ""
|
|
2574 |
"Изпращане на тестово известие. Преди да кликнете тест, запазете настройките!"
|
2575 |
|
2576 |
#: dashboard/settings/notifications.php:31
|
2577 |
-
msgid "Dashboard Notifications"
|
2578 |
-
msgstr "Известия на таблото"
|
2579 |
-
|
2580 |
-
#: dashboard/settings/notifications.php:32
|
2581 |
-
msgid "These show to every administrator who can edit adverts."
|
2582 |
-
msgstr ""
|
2583 |
-
|
2584 |
-
#: dashboard/settings/notifications.php:35
|
2585 |
-
msgid "Notification banners"
|
2586 |
-
msgstr ""
|
2587 |
-
|
2588 |
-
#: dashboard/settings/notifications.php:36
|
2589 |
-
msgid "Disable dashboard notifications."
|
2590 |
-
msgstr ""
|
2591 |
-
|
2592 |
-
#: dashboard/settings/notifications.php:40
|
2593 |
msgid "Email Notifications"
|
2594 |
msgstr "Email Известия"
|
2595 |
|
2596 |
-
#: dashboard/settings/notifications.php:
|
2597 |
msgid "Set up who gets notification emails."
|
2598 |
msgstr "Задайте кой да получава известия по email."
|
2599 |
|
2600 |
-
#: dashboard/settings/notifications.php:
|
2601 |
-
#: dashboard/settings/notifications.php:
|
2602 |
msgid "Publishers"
|
2603 |
msgstr "Издатели"
|
2604 |
|
2605 |
-
#: dashboard/settings/notifications.php:
|
2606 |
msgid ""
|
2607 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2608 |
"list to a minimum!"
|
@@ -2610,7 +2590,7 @@ msgstr ""
|
|
2610 |
"За разделител използвайте запетая. Максимум 5 адреса. Използвайте възможно "
|
2611 |
"най-малко адреси в този списък!"
|
2612 |
|
2613 |
-
#: dashboard/settings/notifications.php:
|
2614 |
msgid ""
|
2615 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2616 |
"email notifications will be send."
|
@@ -2618,11 +2598,11 @@ msgstr ""
|
|
2618 |
"Съобщенията се изпращат когато е необходимо, но не по-често от веднъж на 24 "
|
2619 |
"часа. Ако полето е празно няма да се изпращат известия по email."
|
2620 |
|
2621 |
-
#: dashboard/settings/notifications.php:
|
2622 |
msgid "Advertisers"
|
2623 |
msgstr "Рекламодатели"
|
2624 |
|
2625 |
-
#: dashboard/settings/notifications.php:
|
2626 |
msgid ""
|
2627 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2628 |
"This field may not be empty!"
|
@@ -2630,11 +2610,11 @@ msgstr ""
|
|
2630 |
"Кой да получава email съобщения от рекламодатели. Максимум 2 адреса, "
|
2631 |
"разделени със запетая. Полето не може да бъде празно!"
|
2632 |
|
2633 |
-
#: dashboard/settings/notifications.php:
|
2634 |
msgid "Push Notifications"
|
2635 |
msgstr "Push известия"
|
2636 |
|
2637 |
-
#: dashboard/settings/notifications.php:
|
2638 |
msgid ""
|
2639 |
"Receive information about what is happening with your AdRotate setup on your "
|
2640 |
"smartphone via Pushover."
|
@@ -2642,28 +2622,28 @@ msgstr ""
|
|
2642 |
"Получавайте информация относно случващото се с вашата AdRotate инсталация "
|
2643 |
"директно на смартфона си чрез Pushover."
|
2644 |
|
2645 |
-
#: dashboard/settings/notifications.php:
|
2646 |
msgid "When you are running out of Geo Targeting Lookups."
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: dashboard/settings/notifications.php:
|
2650 |
msgid "Daily digest of any advert status other than normal."
|
2651 |
msgstr ""
|
2652 |
"Изпращане на дневен отчет с обявите, чийто статус е различен от нормален."
|
2653 |
|
2654 |
-
#: dashboard/settings/notifications.php:
|
2655 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2656 |
msgstr "Всеки рекламодател, записващ реклама в опашката за одобрение."
|
2657 |
|
2658 |
-
#: dashboard/settings/notifications.php:
|
2659 |
msgid "A moderator approved an advert from the moderation queue."
|
2660 |
msgstr "Модератора е одобрил реклама от опашката за одобрение."
|
2661 |
|
2662 |
-
#: dashboard/settings/notifications.php:
|
2663 |
msgid "A moderator rejected an advert from the moderation queue."
|
2664 |
msgstr "Модератора е отхвърлил реклама от опашката за одобрение."
|
2665 |
|
2666 |
-
#: dashboard/settings/notifications.php:
|
2667 |
msgid ""
|
2668 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2669 |
"you may get a lot of messages!"
|
@@ -2671,32 +2651,32 @@ msgstr ""
|
|
2671 |
"Ако имате множество дейности с много рекламодатели, които добавят/променят "
|
2672 |
"реклами, то ще получавате много съобщения!"
|
2673 |
|
2674 |
-
#: dashboard/settings/notifications.php:
|
2675 |
msgid "User Key"
|
2676 |
msgstr "Потребителски ключ"
|
2677 |
|
2678 |
-
#: dashboard/settings/notifications.php:
|
2679 |
msgid "Get your user token"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: dashboard/settings/notifications.php:
|
2683 |
-
#: dashboard/settings/notifications.php:
|
2684 |
msgid "here"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: dashboard/settings/notifications.php:
|
2688 |
msgid "Api Token"
|
2689 |
msgstr "Api Token"
|
2690 |
|
2691 |
-
#: dashboard/settings/notifications.php:
|
2692 |
msgid "Create your"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: dashboard/settings/notifications.php:
|
2696 |
msgid "App"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: dashboard/settings/notifications.php:
|
2700 |
msgid "and get your API token"
|
2701 |
msgstr ""
|
2702 |
|
@@ -2849,6 +2829,82 @@ msgstr ""
|
|
2849 |
"Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
|
2850 |
"(24 часа)."
|
2851 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2852 |
#~ msgid ""
|
2853 |
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2854 |
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:58+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:58+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:844
|
21 |
msgid "No files found"
|
22 |
msgstr "Няма намерени файлове"
|
23 |
|
24 |
+
#: adrotate-functions.php:847
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Папката не е намерена или не е достъпна"
|
27 |
|
28 |
+
#: adrotate-functions.php:896
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:900
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:904
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Успешно изтриване"
|
39 |
|
40 |
+
#: adrotate-functions.php:908
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Групата е изтрита"
|
43 |
|
44 |
+
#: adrotate-functions.php:912
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Статистиката е нулирана"
|
47 |
|
48 |
+
#: adrotate-functions.php:916
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Успешно подновяване"
|
51 |
|
52 |
+
#: adrotate-functions.php:920
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Успешно деактивиране"
|
55 |
|
56 |
+
#: adrotate-functions.php:924
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Успешно активиране"
|
59 |
|
60 |
+
#: adrotate-functions.php:928
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Групата и съдържащите се в нея реклами са изтрити"
|
63 |
|
64 |
+
#: adrotate-functions.php:932
|
65 |
msgid "Export created"
|
66 |
msgstr "Експорта е завършен"
|
67 |
|
68 |
+
#: adrotate-functions.php:937
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Настройките са запазени"
|
71 |
|
72 |
+
#: adrotate-functions.php:941
|
73 |
msgid "Database optimized"
|
74 |
msgstr "Базата данни е оптимизирана"
|
75 |
|
76 |
+
#: adrotate-functions.php:945
|
77 |
msgid "Database repaired"
|
78 |
msgstr "Базата данни е поправена"
|
79 |
|
80 |
+
#: adrotate-functions.php:949
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
|
83 |
|
84 |
+
#: adrotate-functions.php:953
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr "Празните записи в базата данни са премахнати"
|
87 |
|
88 |
+
#: adrotate-functions.php:958
|
89 |
msgid "Action prohibited"
|
90 |
msgstr "Забранено действие"
|
91 |
|
92 |
+
#: adrotate-functions.php:962
|
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:966
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr "Не е намерена информация за избрания период"
|
101 |
|
102 |
+
#: adrotate-functions.php:970
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
|
105 |
|
106 |
+
#: adrotate-functions.php:974
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: adrotate-functions.php:978
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:982
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-manage-publisher.php:702
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-output.php:607
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr "О не! Нещо се случи!"
|
125 |
|
126 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
142 |
msgid "Contact support if the issue persists:"
|
143 |
msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
|
144 |
|
145 |
+
#: adrotate-output.php:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
168 |
msgid "Error, no Ad ID set! Check your syntax!"
|
169 |
msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
|
170 |
|
171 |
+
#: adrotate-output.php:651
|
172 |
msgid "Error, no group ID set! Check your syntax!"
|
173 |
msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
|
174 |
|
175 |
+
#: adrotate-output.php:656
|
176 |
msgid "Error, group does not exist! Check your syntax!"
|
177 |
msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
|
178 |
|
179 |
+
#: adrotate-output.php:662
|
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:662
|
188 |
msgid "If this does not solve the issue please seek support at"
|
189 |
msgstr "Ако това не решава проблема, моля потърсете помощ на"
|
190 |
|
191 |
+
#: adrotate-output.php:668
|
192 |
msgid "An unknown error occured."
|
193 |
msgstr "Възникна неизвестна грешка."
|
194 |
|
195 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
196 |
+
msgid "Check adverts"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: adrotate-output.php:698
|
200 |
+
msgid ""
|
201 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
202 |
+
"site!"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: adrotate-output.php:701
|
206 |
+
msgid ""
|
207 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
208 |
+
"not set."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: adrotate-output.php:706
|
212 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
216 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
217 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
218 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
219 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
220 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
221 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
#: dashboard/settings/geotargeting.php:26
|
223 |
msgid "Buy now"
|
224 |
msgstr "Купи сега"
|
225 |
|
226 |
+
#: adrotate-output.php:747
|
227 |
msgid ""
|
228 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
229 |
"to the <strong>PRO</strong> version"
|
231 |
"Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
|
232 |
"до <strong>PRO</strong> версията"
|
233 |
|
234 |
+
#: adrotate-output.php:747
|
235 |
#, php-format
|
236 |
msgid ""
|
237 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: adrotate-output.php:747
|
241 |
msgid "Thank you for your purchase!"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: adrotate-output.php:791
|
245 |
msgid ""
|
246 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
247 |
"this menu. Check out the"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: adrotate-output.php:791
|
251 |
msgid "manuals"
|
252 |
msgstr "ръководства"
|
253 |
|
254 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
255 |
msgid "and"
|
256 |
msgstr "и"
|
257 |
|
258 |
+
#: adrotate-output.php:791
|
259 |
msgid "forums"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: adrotate-output.php:824
|
263 |
msgid "Useful Links"
|
264 |
msgstr "Полезни връзки"
|
265 |
|
266 |
+
#: adrotate-output.php:825
|
267 |
msgid "Useful links to learn more about AdRotate"
|
268 |
msgstr "Полезни връзки, за да получите повече информация за AdRotate"
|
269 |
|
270 |
+
#: adrotate-output.php:827
|
271 |
msgid "AdRotate website"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: adrotate-output.php:828
|
275 |
msgid "Getting Started With AdRotate"
|
276 |
msgstr "Започнете от нулата с AdRotate Pro"
|
277 |
|
278 |
+
#: adrotate-output.php:829
|
279 |
msgid "AdRotate manuals"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: adrotate-output.php:830
|
283 |
msgid "AdRotate Support Forum"
|
284 |
msgstr "Форум за поддръжка на AdRotate"
|
285 |
|
286 |
+
#: adrotate-output.php:856
|
287 |
msgid "Help AdRotate Grow"
|
288 |
msgstr "Помогнете за развитието на AdRotate"
|
289 |
|
290 |
+
#: adrotate-output.php:857
|
291 |
+
msgid "Follow Arnan on Facebook"
|
292 |
+
msgstr ""
|
293 |
|
294 |
+
#: adrotate-output.php:864
|
295 |
msgid ""
|
296 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
297 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
300 |
"се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
|
301 |
"това да остане незабелязано."
|
302 |
|
303 |
+
#: adrotate-output.php:864
|
304 |
msgid "If you find AdRotate useful please leave your honest"
|
305 |
msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
|
306 |
|
307 |
+
#: adrotate-output.php:864
|
308 |
msgid "rating"
|
309 |
msgstr "оценка"
|
310 |
|
311 |
+
#: adrotate-output.php:864
|
312 |
msgid "review"
|
313 |
msgstr "мнение"
|
314 |
|
315 |
+
#: adrotate-output.php:864
|
316 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
317 |
msgstr "на WordPress.org, за да се развива AdRotate"
|
318 |
|
319 |
+
#: adrotate-output.php:903
|
320 |
msgid "Available in AdRotate Pro"
|
321 |
msgstr "Налично в AdRotate Pro"
|
322 |
|
323 |
+
#: adrotate-output.php:903
|
324 |
msgid "More information..."
|
325 |
msgstr "Повече информация..."
|
326 |
|
327 |
+
#: adrotate-output.php:904
|
328 |
msgid "This feature is available in AdRotate Pro"
|
329 |
msgstr "Тази функционалност е налична в AdRotate Pro"
|
330 |
|
331 |
+
#: adrotate-output.php:904
|
332 |
msgid "Learn more"
|
333 |
msgstr "Повече информация"
|
334 |
|
408 |
msgid "No data to show!"
|
409 |
msgstr "Няма информация!"
|
410 |
|
411 |
+
#: adrotate-widget.php:116
|
412 |
msgid "Title (optional):"
|
413 |
msgstr "Заглавие (не е задължително):"
|
414 |
|
415 |
+
#: adrotate-widget.php:119
|
416 |
msgid "HTML will be stripped out."
|
417 |
msgstr "HTML тагове не се поддържат."
|
418 |
|
419 |
+
#: adrotate-widget.php:122
|
420 |
msgid "Description (optional):"
|
421 |
msgstr "Описание (не е задължително):"
|
422 |
|
423 |
+
#: adrotate-widget.php:125
|
424 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
425 |
msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
|
426 |
|
427 |
+
#: adrotate-widget.php:128
|
428 |
msgid "Type:"
|
429 |
msgstr "Тип:"
|
430 |
|
431 |
+
#: adrotate-widget.php:130
|
432 |
+
msgid "Advert - Use Advert ID"
|
433 |
+
msgstr ""
|
434 |
|
435 |
+
#: adrotate-widget.php:131
|
436 |
+
msgid "Group - Use group ID"
|
437 |
+
msgstr ""
|
438 |
|
439 |
+
#: adrotate-widget.php:134
|
440 |
msgid "Choose what you want to use this widget for"
|
441 |
msgstr "Изберете за какво иската да използвате тази джаджа"
|
442 |
|
443 |
+
#: adrotate-widget.php:137
|
444 |
msgid "ID:"
|
445 |
msgstr "ID:"
|
446 |
|
447 |
+
#: adrotate-widget.php:140
|
448 |
msgid "Fill in the ID of the type you want to display!"
|
449 |
msgstr "Попълнете ID-то на типа, който искате да се показва!"
|
450 |
|
451 |
+
#: adrotate.php:105
|
452 |
msgid "General Info"
|
453 |
msgstr "Обща информация"
|
454 |
|
455 |
+
#: adrotate.php:106
|
456 |
msgid "AdRotate Pro"
|
457 |
msgstr "AdRotate Pro"
|
458 |
|
459 |
+
#: adrotate.php:107
|
460 |
+
msgid "Manage Adverts"
|
461 |
+
msgstr ""
|
462 |
|
463 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
464 |
msgid "Manage Groups"
|
465 |
msgstr "Управление на групи"
|
466 |
|
467 |
+
#: adrotate.php:109 adrotate.php:407
|
468 |
msgid "Manage Schedules"
|
469 |
msgstr "Управление на графици"
|
470 |
|
471 |
+
#: adrotate.php:110
|
472 |
msgid "Manage Media"
|
473 |
msgstr "Управление на Медия"
|
474 |
|
475 |
+
#: adrotate.php:111
|
476 |
msgid "Settings"
|
477 |
msgstr "Настройки"
|
478 |
|
479 |
+
#: adrotate.php:134
|
480 |
msgid "AdRotate Info"
|
481 |
msgstr "AdRotate Info"
|
482 |
|
483 |
+
#: adrotate.php:155
|
484 |
msgid "AdRotate Professional"
|
485 |
msgstr "AdRotate Professional"
|
486 |
|
487 |
+
#: adrotate.php:198
|
488 |
+
msgid "Advert Management"
|
489 |
+
msgstr ""
|
490 |
|
491 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
492 |
msgid "Manage"
|
493 |
msgstr "Управление"
|
494 |
|
495 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
496 |
msgid "Add New"
|
497 |
msgstr "Добавяне"
|
498 |
|
499 |
+
#: adrotate.php:336
|
500 |
msgid "Group Management"
|
501 |
msgstr "Управление на групи"
|
502 |
|
503 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
504 |
#: dashboard/publisher/groups-main.php:70
|
505 |
msgid "Report"
|
506 |
msgstr "Доклад"
|
507 |
|
508 |
+
#: adrotate.php:398
|
509 |
msgid "Schedule Management available in AdRotate Pro"
|
510 |
msgstr "Управление с графици е налично в AdRotate Pro"
|
511 |
|
512 |
+
#: adrotate.php:408
|
513 |
msgid ""
|
514 |
"Schedule management and multiple schedules per advert is available in "
|
515 |
"AdRotate Pro."
|
517 |
"Управлението на графици и множество графици за една реклама са налични в "
|
518 |
"AdRotate Pro."
|
519 |
|
520 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
521 |
#: dashboard/publisher/adverts-main.php:114
|
522 |
#: dashboard/publisher/groups-edit.php:75
|
523 |
#: dashboard/publisher/groups-main.php:89
|
524 |
msgid "More information"
|
525 |
msgstr "Повече информация"
|
526 |
|
527 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
528 |
#: dashboard/publisher/adverts-error.php:19
|
529 |
#: dashboard/publisher/adverts-main.php:20
|
530 |
#: dashboard/publisher/groups-main.php:20
|
531 |
msgid "Bulk Actions"
|
532 |
msgstr "Масови действия"
|
533 |
|
534 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
535 |
#: dashboard/publisher/adverts-error.php:29
|
536 |
#: dashboard/publisher/adverts-main.php:30
|
537 |
#: dashboard/publisher/groups-main.php:24
|
538 |
msgid "Go"
|
539 |
msgstr "Напред"
|
540 |
|
541 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
542 |
#: dashboard/publisher/adverts-error.php:39
|
543 |
#: dashboard/publisher/adverts-main.php:39
|
544 |
#: dashboard/publisher/groups-edit.php:51
|
546 |
msgid "ID"
|
547 |
msgstr "ID"
|
548 |
|
549 |
+
#: adrotate.php:426
|
550 |
msgid "Start"
|
551 |
msgstr "Начало"
|
552 |
|
553 |
+
#: adrotate.php:426
|
554 |
msgid "End"
|
555 |
msgstr "Край"
|
556 |
|
557 |
+
#: adrotate.php:427
|
|
|
558 |
msgid "Ads"
|
559 |
msgstr "Реклами"
|
560 |
|
561 |
+
#: adrotate.php:429
|
562 |
msgid "Max Impressions"
|
563 |
msgstr "Максимум импресии"
|
564 |
|
565 |
+
#: adrotate.php:430
|
566 |
msgid "Max Clicks"
|
567 |
msgstr "Максимум кликове"
|
568 |
|
569 |
+
#: adrotate.php:460
|
570 |
msgid "No schedules created yet!"
|
571 |
msgstr "Все още няма създадени графици!"
|
572 |
|
573 |
+
#: adrotate.php:465
|
574 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
575 |
msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
|
576 |
|
577 |
+
#: adrotate.php:465 adrotate.php:531
|
578 |
msgid "Upgrade today!"
|
579 |
msgstr "Надградете днес!"
|
580 |
|
581 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
582 |
#: dashboard/publisher/groups-edit.php:387
|
583 |
msgid "Expires soon."
|
584 |
msgstr "Изтича скоро."
|
585 |
|
586 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
587 |
#: dashboard/publisher/groups-edit.php:388
|
588 |
msgid "Has expired."
|
589 |
msgstr "Изтекла."
|
590 |
|
591 |
+
#: adrotate.php:493
|
592 |
msgid "Media Management available in AdRotate Pro"
|
593 |
msgstr "Управление на медия е налично в AdRotate Pro"
|
594 |
|
595 |
+
#: adrotate.php:495
|
596 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: adrotate.php:495
|
600 |
msgid ""
|
601 |
"This is useful if you use responsive adverts with multiple images or have "
|
602 |
"HTML5 adverts containing multiple files."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: adrotate.php:495
|
606 |
msgid "Media uploading and management is available in AdRotate Pro."
|
607 |
msgstr "Управлението и качването на медия са налични в AdRotate Pro."
|
608 |
|
609 |
+
#: adrotate.php:497
|
610 |
msgid "Upload new file"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: adrotate.php:498
|
614 |
msgid "Accepted files:"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: adrotate.php:498
|
618 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: adrotate.php:498
|
622 |
msgid "Maximum size is 512Kb."
|
623 |
msgstr "Максималния размер е 512Kb."
|
624 |
|
625 |
+
#: adrotate.php:498
|
626 |
msgid "Important:"
|
627 |
msgstr "Важно:"
|
628 |
|
629 |
+
#: adrotate.php:498
|
630 |
msgid ""
|
631 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
632 |
"spaces with a - or _."
|
634 |
"Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
|
635 |
"интервалите с - или _."
|
636 |
|
637 |
+
#: adrotate.php:498
|
638 |
msgid ""
|
639 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
640 |
"file so it knows about the changed name. For example for the javascript file."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: adrotate.php:501
|
644 |
msgid ""
|
645 |
"For responsive adverts make sure the filename is in the following format; "
|
646 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
649 |
"формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
|
650 |
"е строго препоръчителен."
|
651 |
|
652 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
653 |
msgid ""
|
654 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
655 |
"filename instead of \".full\" for the various viewports."
|
658 |
"използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
|
659 |
"файловете, вместо \".full\"."
|
660 |
|
661 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
662 |
#: dashboard/publisher/groups-edit.php:320
|
663 |
msgid "Example:"
|
664 |
msgstr "Пример:"
|
665 |
|
666 |
+
#: adrotate.php:503
|
667 |
msgid ""
|
668 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
669 |
"for different viewports."
|
671 |
"image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
|
672 |
"реклама в различни резолюции на екрана."
|
673 |
|
674 |
+
#: adrotate.php:507
|
675 |
msgid "Upload file"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: adrotate.php:507
|
679 |
msgid "Click only once per file!"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: adrotate.php:510
|
683 |
msgid "Available files in"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
687 |
#: dashboard/publisher/groups-main.php:33
|
688 |
msgid "Name"
|
689 |
msgstr "Име"
|
690 |
|
691 |
+
#: adrotate.php:516
|
692 |
msgid "Actions"
|
693 |
msgstr "Действия"
|
694 |
|
695 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
696 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
697 |
#: dashboard/publisher/adverts-disabled.php:22
|
698 |
#: dashboard/publisher/adverts-error.php:21
|
699 |
#: dashboard/publisher/adverts-main.php:22
|
700 |
msgid "Delete"
|
701 |
msgstr "Изтриване"
|
702 |
|
703 |
+
#: adrotate.php:531
|
704 |
msgid ""
|
705 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
706 |
msgstr ""
|
707 |
"Уверете се, че картинките за банери не се използват от реклами, преди да ги "
|
708 |
"изтриете!"
|
709 |
|
710 |
+
#: adrotate.php:531
|
711 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
712 |
msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
|
713 |
|
714 |
+
#: adrotate.php:560
|
715 |
msgid "AdRotate Settings"
|
716 |
msgstr "AdRotate Настройки"
|
717 |
|
718 |
+
#: adrotate.php:631
|
719 |
msgid "Update Options"
|
720 |
msgstr "Опции за обновяване"
|
721 |
|
771 |
"forum. Get a solution (usually) within a day."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
775 |
msgid "AdRotate is brought to you by"
|
776 |
msgstr "AdRotate достига до Вас, благодарение на"
|
777 |
|
778 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgid "Schedule all campaigns with ease"
|
780 |
msgstr "Планиране на всички кампании с лекота"
|
781 |
|
782 |
+
#: dashboard/adrotatepro.php:77
|
783 |
msgid ""
|
784 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
785 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
787 |
"much more easy. You can set one or many schedules for adverts."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: dashboard/adrotatepro.php:81
|
791 |
msgid "Avoid adblockers"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: dashboard/adrotatepro.php:84
|
795 |
msgid ""
|
796 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
797 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
799 |
"adverts smartly so these features reach their full potential!"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: dashboard/adrotatepro.php:88
|
803 |
msgid "Stay up-to-date with notifications"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: dashboard/adrotatepro.php:91
|
807 |
msgid ""
|
808 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
809 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
812 |
"miss an expiration date again."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
816 |
+
#: dashboard/info.php:78
|
817 |
msgid "Buy AdRotate Professional"
|
818 |
msgstr "Купете AdRotate Professional"
|
819 |
|
820 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
821 |
msgid "Single License"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
825 |
msgid "For one WordPress installation."
|
826 |
msgstr "За една инсталация на WordPress."
|
827 |
|
828 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
829 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
830 |
msgid "Duo License"
|
831 |
msgstr "Duo лиценз"
|
832 |
|
833 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
834 |
msgid "For two WordPress installations."
|
835 |
msgstr "За две Wordpress инсталации."
|
836 |
|
837 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
838 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
839 |
msgid "Multi License"
|
840 |
msgstr "Multi лиценз"
|
841 |
|
842 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
843 |
msgid " For up to five WordPress installations."
|
844 |
msgstr " За до 5 Wordpress инсталации."
|
845 |
|
846 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
847 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
848 |
msgid "Developer License"
|
849 |
msgstr "Developer лиценз"
|
850 |
|
851 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
852 |
msgid "Unlimited WordPress installations and/or networks."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
856 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
857 |
msgid "Compare licenses"
|
858 |
msgstr "Сравнение на лицензи"
|
859 |
|
860 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
861 |
msgid "Not sure which license is for you? Compare them..."
|
862 |
msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
|
863 |
|
864 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
865 |
msgid "All Licenses"
|
866 |
msgstr "Всички лицензи"
|
867 |
|
868 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
869 |
msgid "Lifetime License"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
873 |
msgid "Single installation."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
877 |
msgid "Up to 2 installations."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
881 |
msgid "Up to 10 installations."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
885 |
msgid "Up to 25 installations or multisite networks."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
889 |
msgid ""
|
890 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
894 |
msgid "Not sure which license is for you?"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
898 |
msgid "Compare Licenses"
|
899 |
msgstr ""
|
900 |
|
910 |
msgid "Adverts that need you"
|
911 |
msgstr "Реклами, които изискват вниманието Ви"
|
912 |
|
913 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
914 |
+
#: dashboard/publisher/groups-main.php:34
|
915 |
msgid "Adverts"
|
916 |
msgstr "Реклами"
|
917 |
|
933 |
|
934 |
#: dashboard/info.php:55
|
935 |
msgid ""
|
936 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
937 |
+
"for updates about me and my plugins. Thank you!"
|
938 |
msgstr ""
|
939 |
|
|
|
|
|
|
|
|
|
940 |
#: dashboard/info.php:103
|
941 |
+
msgid ""
|
942 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
943 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
944 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: dashboard/info.php:113
|
948 |
msgid "Get more features with AdRotate Pro"
|
949 |
msgstr "Получете по-голяма функционалност с AdRotate Pro"
|
950 |
|
951 |
+
#: dashboard/info.php:116
|
952 |
msgid ""
|
953 |
"Benefit from extra features to reinforce your income with advertising "
|
954 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
958 |
"подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
|
959 |
"функции, които предлага AdRotate Pro спрямо безплатната версия."
|
960 |
|
961 |
+
#: dashboard/info.php:116
|
962 |
msgid "Want to know more about"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: dashboard/info.php:116
|
966 |
msgid "Visit the"
|
967 |
msgstr "Посетете"
|
968 |
|
969 |
+
#: dashboard/info.php:116
|
970 |
msgid "website"
|
971 |
msgstr "уебсайт"
|
972 |
|
973 |
+
#: dashboard/info.php:120
|
974 |
+
msgid "AdRotate News and Developer Blog"
|
975 |
+
msgstr "AdRotate блог за новини и разработка"
|
976 |
+
|
977 |
#: dashboard/publisher/adverts-disabled.php:15
|
978 |
+
msgid "Disabled Adverts"
|
979 |
+
msgstr ""
|
980 |
|
981 |
#: dashboard/publisher/adverts-disabled.php:21
|
982 |
#: dashboard/publisher/adverts-edit.php:176
|
1011 |
|
1012 |
#: dashboard/publisher/adverts-disabled.php:39
|
1013 |
#: dashboard/publisher/adverts-main.php:46
|
1014 |
+
#: dashboard/publisher/adverts-report.php:36
|
1015 |
+
#: dashboard/publisher/adverts-report.php:57
|
1016 |
#: dashboard/publisher/groups-edit.php:334
|
1017 |
#: dashboard/publisher/groups-main.php:38
|
1018 |
+
#: dashboard/publisher/groups-report.php:37
|
1019 |
+
#: dashboard/publisher/groups-report.php:58
|
1020 |
msgid "Clicks"
|
1021 |
msgstr "Кликове"
|
1022 |
|
1023 |
#: dashboard/publisher/adverts-disabled.php:40
|
1024 |
#: dashboard/publisher/adverts-main.php:48
|
1025 |
+
#: dashboard/publisher/adverts-report.php:39
|
1026 |
+
#: dashboard/publisher/adverts-report.php:58
|
1027 |
+
#: dashboard/publisher/groups-report.php:40
|
1028 |
+
#: dashboard/publisher/groups-report.php:59
|
1029 |
msgid "CTR"
|
1030 |
msgstr "CTR"
|
1031 |
|
1395 |
msgstr ""
|
1396 |
|
1397 |
#: dashboard/publisher/adverts-edit.php:312
|
1398 |
+
#: dashboard/publisher/adverts-report.php:64
|
1399 |
+
#: dashboard/publisher/groups-report.php:65
|
1400 |
msgid "Note:"
|
1401 |
msgstr "Забележка:"
|
1402 |
|
1522 |
msgstr "Режим"
|
1523 |
|
1524 |
#: dashboard/publisher/adverts-error.php:12
|
1525 |
+
msgid "Adverts that need attention"
|
1526 |
+
msgstr ""
|
1527 |
|
1528 |
#: dashboard/publisher/adverts-error.php:20
|
1529 |
#: dashboard/publisher/adverts-main.php:21
|
1561 |
msgstr "Грешки при конфигурирането."
|
1562 |
|
1563 |
#: dashboard/publisher/adverts-main.php:12
|
1564 |
+
msgid "Active Adverts"
|
1565 |
+
msgstr ""
|
1566 |
|
1567 |
#: dashboard/publisher/adverts-main.php:24
|
1568 |
msgid "Export to XML"
|
1581 |
msgstr "Днес"
|
1582 |
|
1583 |
#: dashboard/publisher/adverts-main.php:109
|
1584 |
+
msgid "No adverts created yet!"
|
1585 |
+
msgstr ""
|
1586 |
|
1587 |
+
#: dashboard/publisher/adverts-report.php:30
|
1588 |
msgid "Statistics for advert"
|
1589 |
msgstr "Статистика за реклами"
|
1590 |
|
1591 |
+
#: dashboard/publisher/adverts-report.php:35
|
1592 |
+
#: dashboard/publisher/adverts-report.php:56
|
1593 |
+
#: dashboard/publisher/groups-report.php:36
|
1594 |
+
#: dashboard/publisher/groups-report.php:57
|
1595 |
msgid "Impressions"
|
1596 |
msgstr "Импресии"
|
1597 |
|
1598 |
+
#: dashboard/publisher/adverts-report.php:37
|
1599 |
+
#: dashboard/publisher/groups-report.php:38
|
1600 |
msgid "Impressions today"
|
1601 |
msgstr "Импресии днес"
|
1602 |
|
1603 |
+
#: dashboard/publisher/adverts-report.php:38
|
1604 |
+
#: dashboard/publisher/groups-report.php:39
|
1605 |
msgid "Clicks today"
|
1606 |
msgstr "Кликове днес"
|
1607 |
|
1608 |
+
#: dashboard/publisher/adverts-report.php:45
|
1609 |
+
#: dashboard/publisher/groups-report.php:46
|
1610 |
msgid "Monthly overview of clicks and impressions"
|
1611 |
msgstr "Месечен преглед на кликовете и импресиите"
|
1612 |
|
1613 |
+
#: dashboard/publisher/adverts-report.php:64
|
1614 |
+
#: dashboard/publisher/groups-report.php:65
|
1615 |
msgid ""
|
1616 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1617 |
"counted by other parties."
|
1637 |
"Динамичен Режим - показва се различна реклама на определен брой секунди"
|
1638 |
|
1639 |
#: dashboard/publisher/groups-edit.php:66
|
1640 |
+
msgid "Block Mode - Show a block of adverts"
|
1641 |
+
msgstr ""
|
1642 |
|
1643 |
#: dashboard/publisher/groups-edit.php:70
|
1644 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1689 |
|
1690 |
#: dashboard/publisher/groups-edit.php:104
|
1691 |
msgid ""
|
1692 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1693 |
"recommended). Default: 125/125."
|
1694 |
msgstr ""
|
|
|
|
|
1695 |
|
1696 |
#: dashboard/publisher/groups-edit.php:108
|
1697 |
msgid "Automated refresh"
|
1715 |
#: dashboard/publisher/groups-edit.php:141
|
1716 |
#: dashboard/publisher/groups-edit.php:288
|
1717 |
msgid ""
|
1718 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1719 |
+
"Adverts\" and enter ID"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
#: dashboard/publisher/groups-edit.php:153
|
1934 |
msgstr "Да се вижда до"
|
1935 |
|
1936 |
#: dashboard/publisher/groups-edit.php:379
|
1937 |
+
msgid "No adverts created!"
|
1938 |
+
msgstr ""
|
1939 |
|
1940 |
#: dashboard/publisher/groups-main.php:21
|
1941 |
msgid "Delete Group"
|
1942 |
msgstr "Изтриване на група"
|
1943 |
|
1944 |
#: dashboard/publisher/groups-main.php:22
|
1945 |
+
msgid "Delete Group including adverts"
|
1946 |
+
msgstr ""
|
1947 |
|
1948 |
#: dashboard/publisher/groups-main.php:24
|
1949 |
msgid "You are about to delete a group"
|
1962 |
msgid "No groups created!"
|
1963 |
msgstr "Няма създадени групи!"
|
1964 |
|
1965 |
+
#: dashboard/publisher/groups-report.php:31
|
1966 |
msgid "Statistics for group"
|
1967 |
msgstr "Статистика за групи"
|
1968 |
|
2428 |
msgstr ""
|
2429 |
|
2430 |
#: dashboard/settings/maintenance.php:70
|
2431 |
+
msgid "Banners/assets Folder"
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: dashboard/settings/maintenance.php:72
|
2435 |
+
msgid "Exists and appears writable"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: dashboard/settings/maintenance.php:72
|
2439 |
+
msgid "Not writable or does not exist"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: dashboard/settings/maintenance.php:76
|
2443 |
#, fuzzy
|
2444 |
msgid "Ad evaluation next run:"
|
2445 |
msgstr "Оценка на рекламата:"
|
2446 |
|
2447 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2448 |
msgid "Not scheduled!"
|
2449 |
msgstr "Не е планирано!"
|
2450 |
|
2451 |
+
#: dashboard/settings/maintenance.php:80
|
2452 |
#, fuzzy
|
2453 |
msgid "Clean Trackerdata next run:"
|
2454 |
msgstr "Изчистване на Trackerdata при следващо стартиране:"
|
2570 |
"Изпращане на тестово известие. Преди да кликнете тест, запазете настройките!"
|
2571 |
|
2572 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2573 |
msgid "Email Notifications"
|
2574 |
msgstr "Email Известия"
|
2575 |
|
2576 |
+
#: dashboard/settings/notifications.php:32
|
2577 |
msgid "Set up who gets notification emails."
|
2578 |
msgstr "Задайте кой да получава известия по email."
|
2579 |
|
2580 |
+
#: dashboard/settings/notifications.php:35
|
2581 |
+
#: dashboard/settings/notifications.php:55
|
2582 |
msgid "Publishers"
|
2583 |
msgstr "Издатели"
|
2584 |
|
2585 |
+
#: dashboard/settings/notifications.php:38
|
2586 |
msgid ""
|
2587 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2588 |
"list to a minimum!"
|
2590 |
"За разделител използвайте запетая. Максимум 5 адреса. Използвайте възможно "
|
2591 |
"най-малко адреси в този списък!"
|
2592 |
|
2593 |
+
#: dashboard/settings/notifications.php:39
|
2594 |
msgid ""
|
2595 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2596 |
"email notifications will be send."
|
2598 |
"Съобщенията се изпращат когато е необходимо, но не по-често от веднъж на 24 "
|
2599 |
"часа. Ако полето е празно няма да се изпращат известия по email."
|
2600 |
|
2601 |
+
#: dashboard/settings/notifications.php:43
|
2602 |
msgid "Advertisers"
|
2603 |
msgstr "Рекламодатели"
|
2604 |
|
2605 |
+
#: dashboard/settings/notifications.php:46
|
2606 |
msgid ""
|
2607 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2608 |
"This field may not be empty!"
|
2610 |
"Кой да получава email съобщения от рекламодатели. Максимум 2 адреса, "
|
2611 |
"разделени със запетая. Полето не може да бъде празно!"
|
2612 |
|
2613 |
+
#: dashboard/settings/notifications.php:51
|
2614 |
msgid "Push Notifications"
|
2615 |
msgstr "Push известия"
|
2616 |
|
2617 |
+
#: dashboard/settings/notifications.php:52
|
2618 |
msgid ""
|
2619 |
"Receive information about what is happening with your AdRotate setup on your "
|
2620 |
"smartphone via Pushover."
|
2622 |
"Получавайте информация относно случващото се с вашата AdRotate инсталация "
|
2623 |
"директно на смартфона си чрез Pushover."
|
2624 |
|
2625 |
+
#: dashboard/settings/notifications.php:57
|
2626 |
msgid "When you are running out of Geo Targeting Lookups."
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: dashboard/settings/notifications.php:58
|
2630 |
msgid "Daily digest of any advert status other than normal."
|
2631 |
msgstr ""
|
2632 |
"Изпращане на дневен отчет с обявите, чийто статус е различен от нормален."
|
2633 |
|
2634 |
+
#: dashboard/settings/notifications.php:59
|
2635 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2636 |
msgstr "Всеки рекламодател, записващ реклама в опашката за одобрение."
|
2637 |
|
2638 |
+
#: dashboard/settings/notifications.php:60
|
2639 |
msgid "A moderator approved an advert from the moderation queue."
|
2640 |
msgstr "Модератора е одобрил реклама от опашката за одобрение."
|
2641 |
|
2642 |
+
#: dashboard/settings/notifications.php:61
|
2643 |
msgid "A moderator rejected an advert from the moderation queue."
|
2644 |
msgstr "Модератора е отхвърлил реклама от опашката за одобрение."
|
2645 |
|
2646 |
+
#: dashboard/settings/notifications.php:61
|
2647 |
msgid ""
|
2648 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2649 |
"you may get a lot of messages!"
|
2651 |
"Ако имате множество дейности с много рекламодатели, които добавят/променят "
|
2652 |
"реклами, то ще получавате много съобщения!"
|
2653 |
|
2654 |
+
#: dashboard/settings/notifications.php:66
|
2655 |
msgid "User Key"
|
2656 |
msgstr "Потребителски ключ"
|
2657 |
|
2658 |
+
#: dashboard/settings/notifications.php:68
|
2659 |
msgid "Get your user token"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: dashboard/settings/notifications.php:68
|
2663 |
+
#: dashboard/settings/notifications.php:74
|
2664 |
msgid "here"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: dashboard/settings/notifications.php:72
|
2668 |
msgid "Api Token"
|
2669 |
msgstr "Api Token"
|
2670 |
|
2671 |
+
#: dashboard/settings/notifications.php:74
|
2672 |
msgid "Create your"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: dashboard/settings/notifications.php:74
|
2676 |
msgid "App"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: dashboard/settings/notifications.php:74
|
2680 |
msgid "and get your API token"
|
2681 |
msgstr ""
|
2682 |
|
2829 |
"Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
|
2830 |
"(24 часа)."
|
2831 |
|
2832 |
+
#~ msgid "active ad(s) expired."
|
2833 |
+
#~ msgstr "изтекла/и активна/и реклама/и."
|
2834 |
+
|
2835 |
+
#~ msgid "Take action now"
|
2836 |
+
#~ msgstr "Предприемане на действия"
|
2837 |
+
|
2838 |
+
#~ msgid "active ad(s) are about to expire."
|
2839 |
+
#~ msgstr "изтичаща/и активна/и реклама/и."
|
2840 |
+
|
2841 |
+
#~ msgid "Check it out"
|
2842 |
+
#~ msgstr "Проверете го"
|
2843 |
+
|
2844 |
+
#~ msgid "active ad(s) with configuration errors."
|
2845 |
+
#~ msgstr "активна(и) реклама(и) с грешни настройки."
|
2846 |
+
|
2847 |
+
#~ msgid "Solve this"
|
2848 |
+
#~ msgstr "Разреши това"
|
2849 |
+
|
2850 |
+
#~ msgid "ad(s) expired."
|
2851 |
+
#~ msgstr "изтекла/и реклама/и."
|
2852 |
+
|
2853 |
+
#~ msgid "ad(s) are about to expire."
|
2854 |
+
#~ msgstr "реклама/и изтича(т)."
|
2855 |
+
|
2856 |
+
#~ msgid "ad(s) with configuration errors."
|
2857 |
+
#~ msgstr "реклама/и с грешни настройки."
|
2858 |
+
|
2859 |
+
#~ msgid "Fix this as soon as possible"
|
2860 |
+
#~ msgstr "Поправка възможно най-скоро"
|
2861 |
+
|
2862 |
+
#~ msgid "Brought to you by"
|
2863 |
+
#~ msgstr "Достига до Вас благодарение на"
|
2864 |
+
|
2865 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2866 |
+
#~ msgstr "Единична реклама - Използване на ID на рекламата"
|
2867 |
+
|
2868 |
+
#~ msgid "Group of Ads - Use group ID"
|
2869 |
+
#~ msgstr "Група реклами - Използване на ID на групата"
|
2870 |
+
|
2871 |
+
#~ msgid "Manage Ads"
|
2872 |
+
#~ msgstr "Управление на реклами"
|
2873 |
+
|
2874 |
+
#~ msgid "Ad Management"
|
2875 |
+
#~ msgstr "Управление на реклами"
|
2876 |
+
|
2877 |
+
#~ msgid "Disabled Ads"
|
2878 |
+
#~ msgstr "Деактивиране на реклами"
|
2879 |
+
|
2880 |
+
#~ msgid "Ads that need immediate attention"
|
2881 |
+
#~ msgstr "Реклами, които се нуждаят от незабавно внимание"
|
2882 |
+
|
2883 |
+
#~ msgid "Active Ads"
|
2884 |
+
#~ msgstr "Активиране на рекламите"
|
2885 |
+
|
2886 |
+
#~ msgid "No ads created yet!"
|
2887 |
+
#~ msgstr "Все още няма създадени реклами!"
|
2888 |
+
|
2889 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2890 |
+
#~ msgstr "Блоков режим - показва се блок от реклами"
|
2891 |
+
|
2892 |
+
#~ msgid ""
|
2893 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
2894 |
+
#~ "recommended). Default: 125/125."
|
2895 |
+
#~ msgstr ""
|
2896 |
+
#~ "Задайте максималния размер на рекламите в пиксели. Размера не може да е "
|
2897 |
+
#~ "'auto' (Не е препоръчително). По подразбиране: 125/125."
|
2898 |
+
|
2899 |
+
#~ msgid "No ads created!"
|
2900 |
+
#~ msgstr "Няма създадени реклами!"
|
2901 |
+
|
2902 |
+
#~ msgid "Delete Group including ads"
|
2903 |
+
#~ msgstr "Изтриване на група заедно с рекламите"
|
2904 |
+
|
2905 |
+
#~ msgid "Dashboard Notifications"
|
2906 |
+
#~ msgstr "Известия на таблото"
|
2907 |
+
|
2908 |
#~ msgid ""
|
2909 |
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2910 |
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
@@ -18,118 +18,118 @@ msgstr ""
|
|
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,174 +196,154 @@ 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 "
|
209 |
-
msgstr "
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
-
msgid "
|
213 |
-
|
|
|
|
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
-
msgid "
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
#:
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
#:
|
232 |
-
msgid "ad(s) expired."
|
233 |
-
msgstr "διαφήμιση(εις) έληξε(αν)"
|
234 |
-
|
235 |
-
#: adrotate-output.php:729
|
236 |
-
msgid "ad(s) are about to expire."
|
237 |
-
msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
238 |
-
|
239 |
-
#: adrotate-output.php:729
|
240 |
-
msgid "ad(s) with configuration errors."
|
241 |
-
msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
242 |
-
|
243 |
-
#: adrotate-output.php:729
|
244 |
-
msgid "Fix this as soon as possible"
|
245 |
-
msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
246 |
-
|
247 |
-
#: adrotate-output.php:741 dashboard/adrotatepro.php:106
|
248 |
-
#: dashboard/adrotatepro.php:107 dashboard/adrotatepro.php:108
|
249 |
-
#: dashboard/adrotatepro.php:109 dashboard/adrotatepro.php:118
|
250 |
-
#: dashboard/adrotatepro.php:119 dashboard/adrotatepro.php:120
|
251 |
-
#: dashboard/adrotatepro.php:121 dashboard/info.php:114 dashboard/info.php:115
|
252 |
-
#: dashboard/info.php:116 dashboard/info.php:117 dashboard/info.php:126
|
253 |
-
#: dashboard/info.php:127 dashboard/info.php:128 dashboard/info.php:129
|
254 |
#: dashboard/settings/geotargeting.php:26
|
255 |
#, fuzzy
|
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 |
msgid "AdRotate website"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
#, fuzzy
|
308 |
msgid "Getting Started With AdRotate"
|
309 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
310 |
|
311 |
-
#: adrotate-output.php:
|
312 |
#, fuzzy
|
313 |
msgid "AdRotate manuals"
|
314 |
msgstr "Πληροφορίες του AdRotate"
|
315 |
|
316 |
-
#: adrotate-output.php:
|
317 |
#, fuzzy
|
318 |
msgid "AdRotate Support Forum"
|
319 |
msgstr "Κατάστημα του AdRotate"
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
#, fuzzy
|
323 |
msgid "Help AdRotate Grow"
|
324 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
-
msgid "
|
328 |
-
msgstr "
|
329 |
|
330 |
-
#: adrotate-output.php:
|
331 |
msgid ""
|
332 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
333 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: adrotate-output.php:
|
337 |
msgid "If you find AdRotate useful please leave your honest"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
msgid "rating"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: adrotate-output.php:
|
345 |
#, fuzzy
|
346 |
msgid "review"
|
347 |
msgstr "Αξιολογήστε και σχολιάστε"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "Available in AdRotate Pro"
|
355 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
#, fuzzy
|
359 |
msgid "More information..."
|
360 |
msgstr "Περισσότερες πληροφορίες"
|
361 |
|
362 |
-
#: adrotate-output.php:
|
363 |
msgid "This feature is available in AdRotate Pro"
|
364 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
365 |
|
366 |
-
#: adrotate-output.php:
|
367 |
#, fuzzy
|
368 |
msgid "Learn more"
|
369 |
msgstr "Μάθετε περισσότερα σχετικά"
|
@@ -444,121 +424,121 @@ msgstr "Επόμενο"
|
|
444 |
msgid "No data to show!"
|
445 |
msgstr "Δεν υπάρχουν δεδομένα."
|
446 |
|
447 |
-
#: adrotate-widget.php:
|
448 |
msgid "Title (optional):"
|
449 |
msgstr "Τίτλος (προαιρετικό):"
|
450 |
|
451 |
-
#: adrotate-widget.php:
|
452 |
msgid "HTML will be stripped out."
|
453 |
msgstr "Το HTML θα αφαιρεθεί."
|
454 |
|
455 |
-
#: adrotate-widget.php:
|
456 |
msgid "Description (optional):"
|
457 |
msgstr "Περιγραφή (προαιρετικό):"
|
458 |
|
459 |
-
#: adrotate-widget.php:
|
460 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
461 |
msgstr ""
|
462 |
"Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
|
463 |
"αφαιρεθεί.)"
|
464 |
|
465 |
-
#: adrotate-widget.php:
|
466 |
msgid "Type:"
|
467 |
msgstr "Τύπος:"
|
468 |
|
469 |
-
#: adrotate-widget.php:
|
470 |
-
msgid "
|
471 |
-
msgstr "
|
472 |
|
473 |
-
#: adrotate-widget.php:
|
474 |
-
msgid "Group
|
475 |
-
msgstr "
|
476 |
|
477 |
-
#: adrotate-widget.php:
|
478 |
msgid "Choose what you want to use this widget for"
|
479 |
msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
|
480 |
|
481 |
-
#: adrotate-widget.php:
|
482 |
msgid "ID:"
|
483 |
msgstr "Κωδ:"
|
484 |
|
485 |
-
#: adrotate-widget.php:
|
486 |
msgid "Fill in the ID of the type you want to display!"
|
487 |
msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
|
488 |
|
489 |
-
#: adrotate.php:
|
490 |
msgid "General Info"
|
491 |
msgstr "Γενικές Πληροφορίες"
|
492 |
|
493 |
-
#: adrotate.php:
|
494 |
msgid "AdRotate Pro"
|
495 |
msgstr "AdRotate Pro"
|
496 |
|
497 |
-
#: adrotate.php:
|
498 |
-
msgid "Manage
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#: adrotate.php:
|
502 |
msgid "Manage Groups"
|
503 |
msgstr "Διαχείριση Ομάδων"
|
504 |
|
505 |
-
#: adrotate.php:
|
506 |
#, fuzzy
|
507 |
msgid "Manage Schedules"
|
508 |
msgstr "Διαχείριση"
|
509 |
|
510 |
-
#: adrotate.php:
|
511 |
#, fuzzy
|
512 |
msgid "Manage Media"
|
513 |
msgstr "Media:"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
msgid "Settings"
|
517 |
msgstr "Ρυθμίσεις"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "AdRotate Info"
|
521 |
msgstr "Πληροφορίες του AdRotate"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
#, fuzzy
|
525 |
msgid "AdRotate Professional"
|
526 |
msgstr "AdRotate Pro"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
-
msgid "
|
530 |
-
msgstr "
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
msgid "Manage"
|
534 |
msgstr "Διαχείριση"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
msgid "Add New"
|
538 |
msgstr "Προσθήκη Νέας"
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
msgid "Group Management"
|
542 |
msgstr "Διαχείριση Ομάδας"
|
543 |
|
544 |
-
#: adrotate.php:
|
545 |
#: dashboard/publisher/groups-main.php:70
|
546 |
msgid "Report"
|
547 |
msgstr "Αναφορά"
|
548 |
|
549 |
-
#: adrotate.php:
|
550 |
#, fuzzy
|
551 |
msgid "Schedule Management available in AdRotate Pro"
|
552 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
553 |
|
554 |
-
#: adrotate.php:
|
555 |
#, fuzzy
|
556 |
msgid ""
|
557 |
"Schedule management and multiple schedules per advert is available in "
|
558 |
"AdRotate Pro."
|
559 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
#: dashboard/publisher/adverts-main.php:114
|
563 |
#: dashboard/publisher/groups-edit.php:75
|
564 |
#: dashboard/publisher/groups-main.php:89
|
@@ -566,21 +546,21 @@ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο
|
|
566 |
msgid "More information"
|
567 |
msgstr "Περισσότερες πληροφορίες"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
#: dashboard/publisher/adverts-error.php:19
|
571 |
#: dashboard/publisher/adverts-main.php:20
|
572 |
#: dashboard/publisher/groups-main.php:20
|
573 |
msgid "Bulk Actions"
|
574 |
msgstr "Μαζικές Ενέργειες"
|
575 |
|
576 |
-
#: adrotate.php:
|
577 |
#: dashboard/publisher/adverts-error.php:29
|
578 |
#: dashboard/publisher/adverts-main.php:30
|
579 |
#: dashboard/publisher/groups-main.php:24
|
580 |
msgid "Go"
|
581 |
msgstr "Go"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#: dashboard/publisher/adverts-error.php:39
|
585 |
#: dashboard/publisher/adverts-main.php:39
|
586 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -588,174 +568,173 @@ msgstr "Go"
|
|
588 |
msgid "ID"
|
589 |
msgstr "Κωδ."
|
590 |
|
591 |
-
#: adrotate.php:
|
592 |
#, fuzzy
|
593 |
msgid "Start"
|
594 |
msgstr "Ώρα έναρξης (ωω: λλ):"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
#, fuzzy
|
598 |
msgid "End"
|
599 |
msgstr "Ώρα λήξης (ωω: λλ):"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
-
#: dashboard/publisher/groups-main.php:34
|
603 |
msgid "Ads"
|
604 |
msgstr "Διαφημίσεις"
|
605 |
|
606 |
-
#: adrotate.php:
|
607 |
msgid "Max Impressions"
|
608 |
msgstr "Max Impressions"
|
609 |
|
610 |
-
#: adrotate.php:
|
611 |
msgid "Max Clicks"
|
612 |
msgstr "Max Clicks"
|
613 |
|
614 |
-
#: adrotate.php:
|
615 |
#, fuzzy
|
616 |
msgid "No schedules created yet!"
|
617 |
msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
#, fuzzy
|
621 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
622 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
623 |
|
624 |
-
#: adrotate.php:
|
625 |
#, fuzzy
|
626 |
msgid "Upgrade today!"
|
627 |
msgstr "Σήμερα"
|
628 |
|
629 |
-
#: adrotate.php:
|
630 |
#: dashboard/publisher/groups-edit.php:387
|
631 |
msgid "Expires soon."
|
632 |
msgstr "Λήγει σύντομα."
|
633 |
|
634 |
-
#: adrotate.php:
|
635 |
#: dashboard/publisher/groups-edit.php:388
|
636 |
msgid "Has expired."
|
637 |
msgstr "Έχει λήξει."
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
#, fuzzy
|
641 |
msgid "Media Management available in AdRotate Pro"
|
642 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
643 |
|
644 |
-
#: adrotate.php:
|
645 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: adrotate.php:
|
649 |
msgid ""
|
650 |
"This is useful if you use responsive adverts with multiple images or have "
|
651 |
"HTML5 adverts containing multiple files."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: adrotate.php:
|
655 |
#, fuzzy
|
656 |
msgid "Media uploading and management is available in AdRotate Pro."
|
657 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "Upload new file"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "Accepted files:"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid "Maximum size is 512Kb."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid "Important:"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
msgid ""
|
681 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
682 |
"spaces with a - or _."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: adrotate.php:
|
686 |
msgid ""
|
687 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
688 |
"file so it knows about the changed name. For example for the javascript file."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: adrotate.php:
|
692 |
msgid ""
|
693 |
"For responsive adverts make sure the filename is in the following format; "
|
694 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: adrotate.php:
|
698 |
msgid ""
|
699 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
700 |
"filename instead of \".full\" for the various viewports."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
#: dashboard/publisher/groups-edit.php:320
|
705 |
msgid "Example:"
|
706 |
msgstr "Παράδειγμα:"
|
707 |
|
708 |
-
#: adrotate.php:
|
709 |
msgid ""
|
710 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
711 |
"for different viewports."
|
712 |
msgstr ""
|
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 "Όνομα"
|
730 |
|
731 |
-
#: adrotate.php:
|
732 |
#, fuzzy
|
733 |
msgid "Actions"
|
734 |
msgstr "Μαζικές Ενέργειες"
|
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 "Διαγραφή"
|
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 "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
msgid "AdRotate Settings"
|
756 |
msgstr "Ρυθμίσεις AdRotate"
|
757 |
|
758 |
-
#: adrotate.php:
|
759 |
msgid "Update Options"
|
760 |
msgstr "Επιλογές Ανανέωσης"
|
761 |
|
@@ -808,22 +787,15 @@ msgid ""
|
|
808 |
"forum. Get a solution (usually) within a day."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
812 |
msgid "AdRotate is brought to you by"
|
813 |
msgstr "Το AdRotate έρχεται από την "
|
814 |
|
815 |
-
#: dashboard/adrotatepro.php:
|
816 |
-
msgid ""
|
817 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
818 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
819 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: dashboard/adrotatepro.php:81
|
823 |
msgid "Schedule all campaigns with ease"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: dashboard/adrotatepro.php:
|
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,11 +803,11 @@ msgid ""
|
|
831 |
"much more easy. You can set one or many schedules for adverts."
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: dashboard/adrotatepro.php:
|
835 |
msgid "Avoid adblockers"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: dashboard/adrotatepro.php:
|
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 "
|
@@ -843,11 +815,11 @@ msgid ""
|
|
843 |
"adverts smartly so these features reach their full potential!"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: dashboard/adrotatepro.php:
|
847 |
msgid "Stay up-to-date with notifications"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: dashboard/adrotatepro.php:
|
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,91 +828,91 @@ msgid ""
|
|
856 |
"miss an expiration date again."
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: dashboard/adrotatepro.php:
|
860 |
-
#: dashboard/info.php:
|
861 |
#, fuzzy
|
862 |
msgid "Buy AdRotate Professional"
|
863 |
msgstr "AdRotate Pro"
|
864 |
|
865 |
-
#: dashboard/adrotatepro.php:
|
866 |
msgid "Single License"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: dashboard/adrotatepro.php:
|
870 |
msgid "For one WordPress installation."
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: dashboard/adrotatepro.php:
|
874 |
-
#: dashboard/info.php:
|
875 |
msgid "Duo License"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: dashboard/adrotatepro.php:
|
879 |
msgid "For two WordPress installations."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: dashboard/adrotatepro.php:
|
883 |
-
#: dashboard/info.php:
|
884 |
msgid "Multi License"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: dashboard/adrotatepro.php:
|
888 |
msgid " For up to five WordPress installations."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: dashboard/adrotatepro.php:
|
892 |
-
#: dashboard/info.php:
|
893 |
#, fuzzy
|
894 |
msgid "Developer License"
|
895 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
896 |
|
897 |
-
#: dashboard/adrotatepro.php:
|
898 |
msgid "Unlimited WordPress installations and/or networks."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: dashboard/adrotatepro.php:
|
902 |
-
#: dashboard/info.php:
|
903 |
msgid "Compare licenses"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: dashboard/adrotatepro.php:
|
907 |
msgid "Not sure which license is for you? Compare them..."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: dashboard/adrotatepro.php:
|
911 |
msgid "All Licenses"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: dashboard/adrotatepro.php:
|
915 |
msgid "Lifetime License"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: dashboard/adrotatepro.php:
|
919 |
msgid "Single installation."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: dashboard/adrotatepro.php:
|
923 |
msgid "Up to 2 installations."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: dashboard/adrotatepro.php:
|
927 |
msgid "Up to 10 installations."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: dashboard/adrotatepro.php:
|
931 |
msgid "Up to 25 installations or multisite networks."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: dashboard/adrotatepro.php:
|
935 |
msgid ""
|
936 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: dashboard/adrotatepro.php:
|
940 |
msgid "Not sure which license is for you?"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: dashboard/adrotatepro.php:
|
944 |
msgid "Compare Licenses"
|
945 |
msgstr ""
|
946 |
|
@@ -956,7 +928,8 @@ msgstr "Η εγκατάστασή σας"
|
|
956 |
msgid "Adverts that need you"
|
957 |
msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
|
958 |
|
959 |
-
#: dashboard/info.php:37
|
|
|
960 |
msgid "Adverts"
|
961 |
msgstr "Διαφημίσεις"
|
962 |
|
@@ -978,41 +951,48 @@ msgstr "Υποστηρίξτε το AdRotate"
|
|
978 |
|
979 |
#: dashboard/info.php:55
|
980 |
msgid ""
|
981 |
-
"
|
982 |
-
"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: dashboard/info.php:81
|
986 |
-
msgid "AdRotate News and Developer Blog"
|
987 |
-
msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
|
988 |
-
|
989 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
990 |
#, fuzzy
|
991 |
msgid "Get more features with AdRotate Pro"
|
992 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
993 |
|
994 |
-
#: dashboard/info.php:
|
995 |
msgid ""
|
996 |
"Benefit from extra features to reinforce your income with advertising "
|
997 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
998 |
"Pro offers on top of the trusted features included in the free version."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: dashboard/info.php:
|
1002 |
msgid "Want to know more about"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: dashboard/info.php:
|
1006 |
msgid "Visit the"
|
1007 |
msgstr "Επισκεφθείτε το"
|
1008 |
|
1009 |
-
#: dashboard/info.php:
|
1010 |
msgid "website"
|
1011 |
msgstr "ιστοσελίδα"
|
1012 |
|
|
|
|
|
|
|
|
|
1013 |
#: dashboard/publisher/adverts-disabled.php:15
|
1014 |
-
msgid "Disabled
|
1015 |
-
msgstr "
|
1016 |
|
1017 |
#: dashboard/publisher/adverts-disabled.php:21
|
1018 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1052,17 +1032,21 @@ msgstr "Εμφανίζονται"
|
|
1052 |
|
1053 |
#: dashboard/publisher/adverts-disabled.php:39
|
1054 |
#: dashboard/publisher/adverts-main.php:46
|
1055 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1056 |
#: dashboard/publisher/groups-edit.php:334
|
1057 |
#: dashboard/publisher/groups-main.php:38
|
1058 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1059 |
msgid "Clicks"
|
1060 |
msgstr "Clicks"
|
1061 |
|
1062 |
#: dashboard/publisher/adverts-disabled.php:40
|
1063 |
#: dashboard/publisher/adverts-main.php:48
|
1064 |
-
#: dashboard/publisher/adverts-report.php:
|
1065 |
-
#: dashboard/publisher/
|
|
|
|
|
1066 |
msgid "CTR"
|
1067 |
msgstr "CTR"
|
1068 |
|
@@ -1439,8 +1423,8 @@ msgid ""
|
|
1439 |
msgstr ""
|
1440 |
|
1441 |
#: dashboard/publisher/adverts-edit.php:312
|
1442 |
-
#: dashboard/publisher/adverts-report.php:
|
1443 |
-
#: dashboard/publisher/groups-report.php:
|
1444 |
msgid "Note:"
|
1445 |
msgstr "Σημείωση:"
|
1446 |
|
@@ -1571,8 +1555,8 @@ msgid "Mode"
|
|
1571 |
msgstr "Λειτουργία"
|
1572 |
|
1573 |
#: dashboard/publisher/adverts-error.php:12
|
1574 |
-
msgid "
|
1575 |
-
msgstr "
|
1576 |
|
1577 |
#: dashboard/publisher/adverts-error.php:20
|
1578 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1610,8 +1594,8 @@ msgid "Configuration errors."
|
|
1610 |
msgstr "Σφάλματα Διαμόρφωσης."
|
1611 |
|
1612 |
#: dashboard/publisher/adverts-main.php:12
|
1613 |
-
msgid "Active
|
1614 |
-
msgstr "
|
1615 |
|
1616 |
#: dashboard/publisher/adverts-main.php:24
|
1617 |
#, fuzzy
|
@@ -1631,35 +1615,37 @@ msgid "Today"
|
|
1631 |
msgstr "Σήμερα"
|
1632 |
|
1633 |
#: dashboard/publisher/adverts-main.php:109
|
1634 |
-
msgid "No
|
1635 |
-
msgstr "
|
1636 |
|
1637 |
-
#: dashboard/publisher/adverts-report.php:
|
1638 |
msgid "Statistics for advert"
|
1639 |
msgstr "Στατιστικά στοιχεία για τη διαφήμιση"
|
1640 |
|
1641 |
-
#: dashboard/publisher/adverts-report.php:
|
1642 |
-
#: dashboard/publisher/
|
|
|
|
|
1643 |
msgid "Impressions"
|
1644 |
msgstr "Εμφανίσεις"
|
1645 |
|
1646 |
-
#: dashboard/publisher/adverts-report.php:
|
1647 |
-
#: dashboard/publisher/groups-report.php:
|
1648 |
msgid "Impressions today"
|
1649 |
msgstr "Εμφανίσεις σήμερα"
|
1650 |
|
1651 |
-
#: dashboard/publisher/adverts-report.php:
|
1652 |
-
#: dashboard/publisher/groups-report.php:
|
1653 |
msgid "Clicks today"
|
1654 |
msgstr "Clicks σήμερα"
|
1655 |
|
1656 |
-
#: dashboard/publisher/adverts-report.php:
|
1657 |
-
#: dashboard/publisher/groups-report.php:
|
1658 |
msgid "Monthly overview of clicks and impressions"
|
1659 |
msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
|
1660 |
|
1661 |
-
#: dashboard/publisher/adverts-report.php:
|
1662 |
-
#: dashboard/publisher/groups-report.php:
|
1663 |
msgid ""
|
1664 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1665 |
"counted by other parties."
|
@@ -1685,8 +1671,8 @@ msgstr ""
|
|
1685 |
"Δυναμική Λειτουργία - Εμφάνισε διαφορετική διαφήμιση κάθε λίγα δευτερόλεπτα"
|
1686 |
|
1687 |
#: dashboard/publisher/groups-edit.php:66
|
1688 |
-
msgid "Block Mode - Show a block of
|
1689 |
-
msgstr "
|
1690 |
|
1691 |
#: dashboard/publisher/groups-edit.php:70
|
1692 |
#, fuzzy
|
@@ -1738,13 +1724,10 @@ msgid "pixel(s) high."
|
|
1738 |
msgstr "ύψος εικονοστοιχείου(ων)."
|
1739 |
|
1740 |
#: dashboard/publisher/groups-edit.php:104
|
1741 |
-
#, fuzzy
|
1742 |
msgid ""
|
1743 |
-
"Define the maximum size of the
|
1744 |
"recommended). Default: 125/125."
|
1745 |
msgstr ""
|
1746 |
-
"Καθορίστε το μέγιστο μέγεθος των διαφημίσεων σε pixels πλυν περιθωρίου. Το "
|
1747 |
-
"μέγεθος μπορεί να είναι «αυτόματο» (Δεν συνίσταται). Προεπιλογή: 125/125."
|
1748 |
|
1749 |
#: dashboard/publisher/groups-edit.php:108
|
1750 |
msgid "Automated refresh"
|
@@ -1768,8 +1751,8 @@ msgstr ""
|
|
1768 |
#: dashboard/publisher/groups-edit.php:141
|
1769 |
#: dashboard/publisher/groups-edit.php:288
|
1770 |
msgid ""
|
1771 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1772 |
-
"\" and enter ID"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -2003,16 +1986,16 @@ msgid "Visible until"
|
|
2003 |
msgstr "Ορατό μέχρι"
|
2004 |
|
2005 |
#: dashboard/publisher/groups-edit.php:379
|
2006 |
-
msgid "No
|
2007 |
-
msgstr "
|
2008 |
|
2009 |
#: dashboard/publisher/groups-main.php:21
|
2010 |
msgid "Delete Group"
|
2011 |
msgstr "Διαγραφή ομάδας"
|
2012 |
|
2013 |
#: dashboard/publisher/groups-main.php:22
|
2014 |
-
msgid "Delete Group including
|
2015 |
-
msgstr "
|
2016 |
|
2017 |
#: dashboard/publisher/groups-main.php:24
|
2018 |
msgid "You are about to delete a group"
|
@@ -2031,7 +2014,7 @@ msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να στα
|
|
2031 |
msgid "No groups created!"
|
2032 |
msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
|
2033 |
|
2034 |
-
#: dashboard/publisher/groups-report.php:
|
2035 |
msgid "Statistics for group"
|
2036 |
msgstr "Στατιστικά για την ομάδα"
|
2037 |
|
@@ -2505,15 +2488,27 @@ msgid "Unknown"
|
|
2505 |
msgstr ""
|
2506 |
|
2507 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2508 |
#, fuzzy
|
2509 |
msgid "Ad evaluation next run:"
|
2510 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
2511 |
|
2512 |
-
#: dashboard/settings/maintenance.php:
|
2513 |
msgid "Not scheduled!"
|
2514 |
msgstr "Δεν έχει προγραμματιστεί!"
|
2515 |
|
2516 |
-
#: dashboard/settings/maintenance.php:
|
2517 |
msgid "Clean Trackerdata next run:"
|
2518 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
2519 |
|
@@ -2631,36 +2626,19 @@ msgstr ""
|
|
2631 |
"παράδειγμα, με μια νέα διεύθυνση email. Αποθηκεύστε πρώτα τις επιλογές!"
|
2632 |
|
2633 |
#: dashboard/settings/notifications.php:31
|
2634 |
-
#, fuzzy
|
2635 |
-
msgid "Dashboard Notifications"
|
2636 |
-
msgstr "Ειδοποιήσεις"
|
2637 |
-
|
2638 |
-
#: dashboard/settings/notifications.php:32
|
2639 |
-
msgid "These show to every administrator who can edit adverts."
|
2640 |
-
msgstr ""
|
2641 |
-
|
2642 |
-
#: dashboard/settings/notifications.php:35
|
2643 |
-
msgid "Notification banners"
|
2644 |
-
msgstr ""
|
2645 |
-
|
2646 |
-
#: dashboard/settings/notifications.php:36
|
2647 |
-
msgid "Disable dashboard notifications."
|
2648 |
-
msgstr ""
|
2649 |
-
|
2650 |
-
#: dashboard/settings/notifications.php:40
|
2651 |
msgid "Email Notifications"
|
2652 |
msgstr "Ειδοποιήσεις Email"
|
2653 |
|
2654 |
-
#: dashboard/settings/notifications.php:
|
2655 |
msgid "Set up who gets notification emails."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: dashboard/settings/notifications.php:
|
2659 |
-
#: dashboard/settings/notifications.php:
|
2660 |
msgid "Publishers"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: dashboard/settings/notifications.php:
|
2664 |
msgid ""
|
2665 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2666 |
"list to a minimum!"
|
@@ -2668,7 +2646,7 @@ msgstr ""
|
|
2668 |
"Ένας κατάλογος email διαχωρισμένων με κόματα. Μέγιστο όριο 5 διευθύνσεων. "
|
2669 |
"Διατηρήστε τον στο ελάχιστο!"
|
2670 |
|
2671 |
-
#: dashboard/settings/notifications.php:
|
2672 |
#, fuzzy
|
2673 |
msgid ""
|
2674 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
@@ -2677,11 +2655,11 @@ msgstr ""
|
|
2677 |
"Μηνύματα στέλνονται κάθε 24 ώρες όταν είναι ανάγκη. Αν αυτό το πεδίο είναι "
|
2678 |
"κενό η λειτουργία θα απενεργοποιηθεί."
|
2679 |
|
2680 |
-
#: dashboard/settings/notifications.php:
|
2681 |
msgid "Advertisers"
|
2682 |
msgstr "Διαφημιζόμενοι"
|
2683 |
|
2684 |
-
#: dashboard/settings/notifications.php:
|
2685 |
#, fuzzy
|
2686 |
msgid ""
|
2687 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
@@ -2690,72 +2668,72 @@ msgstr ""
|
|
2690 |
"Μέγιστο 2 διευθύνσεων. Διαχωρισμός με κόματα. Αυτό το πεδίο δεν μπορεί να "
|
2691 |
"είναι κενό!"
|
2692 |
|
2693 |
-
#: dashboard/settings/notifications.php:
|
2694 |
#, fuzzy
|
2695 |
msgid "Push Notifications"
|
2696 |
msgstr "Ειδοποιήσεις"
|
2697 |
|
2698 |
-
#: dashboard/settings/notifications.php:
|
2699 |
msgid ""
|
2700 |
"Receive information about what is happening with your AdRotate setup on your "
|
2701 |
"smartphone via Pushover."
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: dashboard/settings/notifications.php:
|
2705 |
msgid "When you are running out of Geo Targeting Lookups."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: dashboard/settings/notifications.php:
|
2709 |
msgid "Daily digest of any advert status other than normal."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: dashboard/settings/notifications.php:
|
2713 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: dashboard/settings/notifications.php:
|
2717 |
#, fuzzy
|
2718 |
msgid "A moderator approved an advert from the moderation queue."
|
2719 |
msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
|
2720 |
|
2721 |
-
#: dashboard/settings/notifications.php:
|
2722 |
#, fuzzy
|
2723 |
msgid "A moderator rejected an advert from the moderation queue."
|
2724 |
msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
|
2725 |
|
2726 |
-
#: dashboard/settings/notifications.php:
|
2727 |
msgid ""
|
2728 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2729 |
"you may get a lot of messages!"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: dashboard/settings/notifications.php:
|
2733 |
#, fuzzy
|
2734 |
msgid "User Key"
|
2735 |
msgstr "πρόγραμμα περιήγησης"
|
2736 |
|
2737 |
-
#: dashboard/settings/notifications.php:
|
2738 |
msgid "Get your user token"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: dashboard/settings/notifications.php:
|
2742 |
-
#: dashboard/settings/notifications.php:
|
2743 |
msgid "here"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: dashboard/settings/notifications.php:
|
2747 |
msgid "Api Token"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: dashboard/settings/notifications.php:
|
2751 |
msgid "Create your"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: dashboard/settings/notifications.php:
|
2755 |
msgid "App"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: dashboard/settings/notifications.php:
|
2759 |
msgid "and get your API token"
|
2760 |
msgstr ""
|
2761 |
|
@@ -2915,6 +2893,85 @@ msgstr ""
|
|
2915 |
"Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
|
2916 |
"ώρα)."
|
2917 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2918 |
#, fuzzy
|
2919 |
#~ msgid "AdRotate Page"
|
2920 |
#~ msgstr "AdRotate Pro"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:58+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:58+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"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: adrotate-functions.php:844
|
22 |
msgid "No files found"
|
23 |
msgstr "Δεν βρέθηκαν αρχεία"
|
24 |
|
25 |
+
#: adrotate-functions.php:847
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
|
28 |
|
29 |
+
#: adrotate-functions.php:896
|
30 |
msgid "Ad saved"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: adrotate-functions.php:900
|
34 |
msgid "Group saved"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: adrotate-functions.php:904
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
|
40 |
|
41 |
+
#: adrotate-functions.php:908
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Η Ομάδα διαγράφηκε"
|
44 |
|
45 |
+
#: adrotate-functions.php:912
|
46 |
msgid "Ad(s) statistics reset"
|
47 |
msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
|
48 |
|
49 |
+
#: adrotate-functions.php:916
|
50 |
msgid "Ad(s) renewed"
|
51 |
msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
|
52 |
|
53 |
+
#: adrotate-functions.php:920
|
54 |
msgid "Ad(s) deactivated"
|
55 |
msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
|
56 |
|
57 |
+
#: adrotate-functions.php:924
|
58 |
msgid "Ad(s) activated"
|
59 |
msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
|
60 |
|
61 |
+
#: adrotate-functions.php:928
|
62 |
msgid "Group including it's Ads deleted"
|
63 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
64 |
|
65 |
+
#: adrotate-functions.php:932
|
66 |
#, fuzzy
|
67 |
msgid "Export created"
|
68 |
msgstr "Επιλογές εξαγωγής"
|
69 |
|
70 |
+
#: adrotate-functions.php:937
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
|
73 |
|
74 |
+
#: adrotate-functions.php:941
|
75 |
msgid "Database optimized"
|
76 |
msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
|
77 |
|
78 |
+
#: adrotate-functions.php:945
|
79 |
msgid "Database repaired"
|
80 |
msgstr "Η βάση δεδομένων επιδιορθώθηκε"
|
81 |
|
82 |
+
#: adrotate-functions.php:949
|
83 |
msgid "Ads evaluated and statuses have been corrected where required"
|
84 |
msgstr ""
|
85 |
"Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
|
86 |
"χρειάστηκε"
|
87 |
|
88 |
+
#: adrotate-functions.php:953
|
89 |
msgid "Empty database records removed"
|
90 |
msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
|
91 |
|
92 |
+
#: adrotate-functions.php:958
|
93 |
msgid "Action prohibited"
|
94 |
msgstr "Η ενέργεια απαγορεύεται"
|
95 |
|
96 |
+
#: adrotate-functions.php:962
|
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:966
|
103 |
msgid "No data found in selected time period"
|
104 |
msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
|
105 |
|
106 |
+
#: adrotate-functions.php:970
|
107 |
msgid "Database can only be optimized or cleaned once every hour"
|
108 |
msgstr ""
|
109 |
"Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
|
110 |
"ώρα"
|
111 |
|
112 |
+
#: adrotate-functions.php:974
|
113 |
msgid "Form can not be (partially) empty!"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: adrotate-functions.php:978
|
117 |
msgid "No ads found."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: adrotate-functions.php:982
|
121 |
msgid "Unexpected error"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: adrotate-manage-publisher.php:702
|
125 |
msgid "AdRotate Advertiser"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: adrotate-output.php:607
|
129 |
msgid "Oh no! Something went wrong!"
|
130 |
msgstr "Παρουσιάστηκε κάποιο σφάλμα."
|
131 |
|
132 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
150 |
msgid "Contact support if the issue persists:"
|
151 |
msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
|
152 |
|
153 |
+
#: adrotate-output.php:628
|
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:630
|
162 |
msgid ""
|
163 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
164 |
"restrictions!"
|
166 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
167 |
"χρονικών περιορισμών."
|
168 |
|
169 |
+
#: adrotate-output.php:637 adrotate-output.php:639
|
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:645
|
178 |
msgid "Error, no Ad ID set! Check your syntax!"
|
179 |
msgstr ""
|
180 |
"Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
|
181 |
|
182 |
+
#: adrotate-output.php:651
|
183 |
msgid "Error, no group ID set! Check your syntax!"
|
184 |
msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
|
185 |
|
186 |
+
#: adrotate-output.php:656
|
187 |
msgid "Error, group does not exist! Check your syntax!"
|
188 |
msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
|
189 |
|
190 |
+
#: adrotate-output.php:662
|
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:662
|
200 |
msgid "If this does not solve the issue please seek support at"
|
201 |
msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
|
202 |
|
203 |
+
#: adrotate-output.php:668
|
204 |
msgid "An unknown error occured."
|
205 |
msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
|
206 |
|
207 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
208 |
+
msgid "Check adverts"
|
209 |
+
msgstr ""
|
210 |
|
211 |
+
#: adrotate-output.php:698
|
212 |
+
msgid ""
|
213 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
214 |
+
"site!"
|
215 |
+
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:701
|
218 |
+
msgid ""
|
219 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
220 |
+
"not set."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: adrotate-output.php:706
|
224 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
228 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
229 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
230 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
231 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
232 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
233 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
#: dashboard/settings/geotargeting.php:26
|
235 |
#, fuzzy
|
236 |
msgid "Buy now"
|
237 |
msgstr "Λάβετε μέτρα τώρα"
|
238 |
|
239 |
+
#: adrotate-output.php:747
|
240 |
msgid ""
|
241 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
242 |
"to the <strong>PRO</strong> version"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: adrotate-output.php:747
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: adrotate-output.php:747
|
252 |
msgid "Thank you for your purchase!"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: adrotate-output.php:791
|
256 |
msgid ""
|
257 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
258 |
"this menu. Check out the"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:791
|
262 |
msgid "manuals"
|
263 |
msgstr "εγχειρίδια"
|
264 |
|
265 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
266 |
msgid "and"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: adrotate-output.php:791
|
270 |
msgid "forums"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:824
|
274 |
#, fuzzy
|
275 |
msgid "Useful Links"
|
276 |
msgstr "Χρήσιμοι σύνδεσμοι"
|
277 |
|
278 |
+
#: adrotate-output.php:825
|
279 |
msgid "Useful links to learn more about AdRotate"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: adrotate-output.php:827
|
283 |
msgid "AdRotate website"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: adrotate-output.php:828
|
287 |
#, fuzzy
|
288 |
msgid "Getting Started With AdRotate"
|
289 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
290 |
|
291 |
+
#: adrotate-output.php:829
|
292 |
#, fuzzy
|
293 |
msgid "AdRotate manuals"
|
294 |
msgstr "Πληροφορίες του AdRotate"
|
295 |
|
296 |
+
#: adrotate-output.php:830
|
297 |
#, fuzzy
|
298 |
msgid "AdRotate Support Forum"
|
299 |
msgstr "Κατάστημα του AdRotate"
|
300 |
|
301 |
+
#: adrotate-output.php:856
|
302 |
#, fuzzy
|
303 |
msgid "Help AdRotate Grow"
|
304 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
305 |
|
306 |
+
#: adrotate-output.php:857
|
307 |
+
msgid "Follow Arnan on Facebook"
|
308 |
+
msgstr ""
|
309 |
|
310 |
+
#: adrotate-output.php:864
|
311 |
msgid ""
|
312 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
313 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: adrotate-output.php:864
|
317 |
msgid "If you find AdRotate useful please leave your honest"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: adrotate-output.php:864
|
321 |
msgid "rating"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: adrotate-output.php:864
|
325 |
#, fuzzy
|
326 |
msgid "review"
|
327 |
msgstr "Αξιολογήστε και σχολιάστε"
|
328 |
|
329 |
+
#: adrotate-output.php:864
|
330 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:903
|
334 |
msgid "Available in AdRotate Pro"
|
335 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
336 |
|
337 |
+
#: adrotate-output.php:903
|
338 |
#, fuzzy
|
339 |
msgid "More information..."
|
340 |
msgstr "Περισσότερες πληροφορίες"
|
341 |
|
342 |
+
#: adrotate-output.php:904
|
343 |
msgid "This feature is available in AdRotate Pro"
|
344 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
345 |
|
346 |
+
#: adrotate-output.php:904
|
347 |
#, fuzzy
|
348 |
msgid "Learn more"
|
349 |
msgstr "Μάθετε περισσότερα σχετικά"
|
424 |
msgid "No data to show!"
|
425 |
msgstr "Δεν υπάρχουν δεδομένα."
|
426 |
|
427 |
+
#: adrotate-widget.php:116
|
428 |
msgid "Title (optional):"
|
429 |
msgstr "Τίτλος (προαιρετικό):"
|
430 |
|
431 |
+
#: adrotate-widget.php:119
|
432 |
msgid "HTML will be stripped out."
|
433 |
msgstr "Το HTML θα αφαιρεθεί."
|
434 |
|
435 |
+
#: adrotate-widget.php:122
|
436 |
msgid "Description (optional):"
|
437 |
msgstr "Περιγραφή (προαιρετικό):"
|
438 |
|
439 |
+
#: adrotate-widget.php:125
|
440 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
441 |
msgstr ""
|
442 |
"Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
|
443 |
"αφαιρεθεί.)"
|
444 |
|
445 |
+
#: adrotate-widget.php:128
|
446 |
msgid "Type:"
|
447 |
msgstr "Τύπος:"
|
448 |
|
449 |
+
#: adrotate-widget.php:130
|
450 |
+
msgid "Advert - Use Advert ID"
|
451 |
+
msgstr ""
|
452 |
|
453 |
+
#: adrotate-widget.php:131
|
454 |
+
msgid "Group - Use group ID"
|
455 |
+
msgstr ""
|
456 |
|
457 |
+
#: adrotate-widget.php:134
|
458 |
msgid "Choose what you want to use this widget for"
|
459 |
msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
|
460 |
|
461 |
+
#: adrotate-widget.php:137
|
462 |
msgid "ID:"
|
463 |
msgstr "Κωδ:"
|
464 |
|
465 |
+
#: adrotate-widget.php:140
|
466 |
msgid "Fill in the ID of the type you want to display!"
|
467 |
msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
|
468 |
|
469 |
+
#: adrotate.php:105
|
470 |
msgid "General Info"
|
471 |
msgstr "Γενικές Πληροφορίες"
|
472 |
|
473 |
+
#: adrotate.php:106
|
474 |
msgid "AdRotate Pro"
|
475 |
msgstr "AdRotate Pro"
|
476 |
|
477 |
+
#: adrotate.php:107
|
478 |
+
msgid "Manage Adverts"
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
482 |
msgid "Manage Groups"
|
483 |
msgstr "Διαχείριση Ομάδων"
|
484 |
|
485 |
+
#: adrotate.php:109 adrotate.php:407
|
486 |
#, fuzzy
|
487 |
msgid "Manage Schedules"
|
488 |
msgstr "Διαχείριση"
|
489 |
|
490 |
+
#: adrotate.php:110
|
491 |
#, fuzzy
|
492 |
msgid "Manage Media"
|
493 |
msgstr "Media:"
|
494 |
|
495 |
+
#: adrotate.php:111
|
496 |
msgid "Settings"
|
497 |
msgstr "Ρυθμίσεις"
|
498 |
|
499 |
+
#: adrotate.php:134
|
500 |
msgid "AdRotate Info"
|
501 |
msgstr "Πληροφορίες του AdRotate"
|
502 |
|
503 |
+
#: adrotate.php:155
|
504 |
#, fuzzy
|
505 |
msgid "AdRotate Professional"
|
506 |
msgstr "AdRotate Pro"
|
507 |
|
508 |
+
#: adrotate.php:198
|
509 |
+
msgid "Advert Management"
|
510 |
+
msgstr ""
|
511 |
|
512 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
513 |
msgid "Manage"
|
514 |
msgstr "Διαχείριση"
|
515 |
|
516 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
517 |
msgid "Add New"
|
518 |
msgstr "Προσθήκη Νέας"
|
519 |
|
520 |
+
#: adrotate.php:336
|
521 |
msgid "Group Management"
|
522 |
msgstr "Διαχείριση Ομάδας"
|
523 |
|
524 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
525 |
#: dashboard/publisher/groups-main.php:70
|
526 |
msgid "Report"
|
527 |
msgstr "Αναφορά"
|
528 |
|
529 |
+
#: adrotate.php:398
|
530 |
#, fuzzy
|
531 |
msgid "Schedule Management available in AdRotate Pro"
|
532 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
533 |
|
534 |
+
#: adrotate.php:408
|
535 |
#, fuzzy
|
536 |
msgid ""
|
537 |
"Schedule management and multiple schedules per advert is available in "
|
538 |
"AdRotate Pro."
|
539 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
540 |
|
541 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
542 |
#: dashboard/publisher/adverts-main.php:114
|
543 |
#: dashboard/publisher/groups-edit.php:75
|
544 |
#: dashboard/publisher/groups-main.php:89
|
546 |
msgid "More information"
|
547 |
msgstr "Περισσότερες πληροφορίες"
|
548 |
|
549 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
550 |
#: dashboard/publisher/adverts-error.php:19
|
551 |
#: dashboard/publisher/adverts-main.php:20
|
552 |
#: dashboard/publisher/groups-main.php:20
|
553 |
msgid "Bulk Actions"
|
554 |
msgstr "Μαζικές Ενέργειες"
|
555 |
|
556 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
557 |
#: dashboard/publisher/adverts-error.php:29
|
558 |
#: dashboard/publisher/adverts-main.php:30
|
559 |
#: dashboard/publisher/groups-main.php:24
|
560 |
msgid "Go"
|
561 |
msgstr "Go"
|
562 |
|
563 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
564 |
#: dashboard/publisher/adverts-error.php:39
|
565 |
#: dashboard/publisher/adverts-main.php:39
|
566 |
#: dashboard/publisher/groups-edit.php:51
|
568 |
msgid "ID"
|
569 |
msgstr "Κωδ."
|
570 |
|
571 |
+
#: adrotate.php:426
|
572 |
#, fuzzy
|
573 |
msgid "Start"
|
574 |
msgstr "Ώρα έναρξης (ωω: λλ):"
|
575 |
|
576 |
+
#: adrotate.php:426
|
577 |
#, fuzzy
|
578 |
msgid "End"
|
579 |
msgstr "Ώρα λήξης (ωω: λλ):"
|
580 |
|
581 |
+
#: adrotate.php:427
|
|
|
582 |
msgid "Ads"
|
583 |
msgstr "Διαφημίσεις"
|
584 |
|
585 |
+
#: adrotate.php:429
|
586 |
msgid "Max Impressions"
|
587 |
msgstr "Max Impressions"
|
588 |
|
589 |
+
#: adrotate.php:430
|
590 |
msgid "Max Clicks"
|
591 |
msgstr "Max Clicks"
|
592 |
|
593 |
+
#: adrotate.php:460
|
594 |
#, fuzzy
|
595 |
msgid "No schedules created yet!"
|
596 |
msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
|
597 |
|
598 |
+
#: adrotate.php:465
|
599 |
#, fuzzy
|
600 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
601 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
602 |
|
603 |
+
#: adrotate.php:465 adrotate.php:531
|
604 |
#, fuzzy
|
605 |
msgid "Upgrade today!"
|
606 |
msgstr "Σήμερα"
|
607 |
|
608 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
609 |
#: dashboard/publisher/groups-edit.php:387
|
610 |
msgid "Expires soon."
|
611 |
msgstr "Λήγει σύντομα."
|
612 |
|
613 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
614 |
#: dashboard/publisher/groups-edit.php:388
|
615 |
msgid "Has expired."
|
616 |
msgstr "Έχει λήξει."
|
617 |
|
618 |
+
#: adrotate.php:493
|
619 |
#, fuzzy
|
620 |
msgid "Media Management available in AdRotate Pro"
|
621 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
622 |
|
623 |
+
#: adrotate.php:495
|
624 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: adrotate.php:495
|
628 |
msgid ""
|
629 |
"This is useful if you use responsive adverts with multiple images or have "
|
630 |
"HTML5 adverts containing multiple files."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: adrotate.php:495
|
634 |
#, fuzzy
|
635 |
msgid "Media uploading and management is available in AdRotate Pro."
|
636 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
637 |
|
638 |
+
#: adrotate.php:497
|
639 |
msgid "Upload new file"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: adrotate.php:498
|
643 |
msgid "Accepted files:"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:498
|
647 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: adrotate.php:498
|
651 |
msgid "Maximum size is 512Kb."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: adrotate.php:498
|
655 |
msgid "Important:"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: adrotate.php:498
|
659 |
msgid ""
|
660 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
661 |
"spaces with a - or _."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: adrotate.php:498
|
665 |
msgid ""
|
666 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
667 |
"file so it knows about the changed name. For example for the javascript file."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: adrotate.php:501
|
671 |
msgid ""
|
672 |
"For responsive adverts make sure the filename is in the following format; "
|
673 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
677 |
msgid ""
|
678 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
679 |
"filename instead of \".full\" for the various viewports."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
683 |
#: dashboard/publisher/groups-edit.php:320
|
684 |
msgid "Example:"
|
685 |
msgstr "Παράδειγμα:"
|
686 |
|
687 |
+
#: adrotate.php:503
|
688 |
msgid ""
|
689 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
690 |
"for different viewports."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: adrotate.php:507
|
694 |
msgid "Upload file"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: adrotate.php:507
|
698 |
msgid "Click only once per file!"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: adrotate.php:510
|
702 |
msgid "Available files in"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
706 |
#: dashboard/publisher/groups-main.php:33
|
707 |
msgid "Name"
|
708 |
msgstr "Όνομα"
|
709 |
|
710 |
+
#: adrotate.php:516
|
711 |
#, fuzzy
|
712 |
msgid "Actions"
|
713 |
msgstr "Μαζικές Ενέργειες"
|
714 |
|
715 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
716 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
717 |
#: dashboard/publisher/adverts-disabled.php:22
|
718 |
#: dashboard/publisher/adverts-error.php:21
|
719 |
#: dashboard/publisher/adverts-main.php:22
|
720 |
msgid "Delete"
|
721 |
msgstr "Διαγραφή"
|
722 |
|
723 |
+
#: adrotate.php:531
|
724 |
msgid ""
|
725 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: adrotate.php:531
|
729 |
#, fuzzy
|
730 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
731 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
732 |
|
733 |
+
#: adrotate.php:560
|
734 |
msgid "AdRotate Settings"
|
735 |
msgstr "Ρυθμίσεις AdRotate"
|
736 |
|
737 |
+
#: adrotate.php:631
|
738 |
msgid "Update Options"
|
739 |
msgstr "Επιλογές Ανανέωσης"
|
740 |
|
787 |
"forum. Get a solution (usually) within a day."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
791 |
msgid "AdRotate is brought to you by"
|
792 |
msgstr "Το AdRotate έρχεται από την "
|
793 |
|
794 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
795 |
msgid "Schedule all campaigns with ease"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: dashboard/adrotatepro.php:77
|
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 |
"much more easy. You can set one or many schedules for adverts."
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: dashboard/adrotatepro.php:81
|
807 |
msgid "Avoid adblockers"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: dashboard/adrotatepro.php:84
|
811 |
msgid ""
|
812 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
813 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
815 |
"adverts smartly so these features reach their full potential!"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: dashboard/adrotatepro.php:88
|
819 |
msgid "Stay up-to-date with notifications"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: dashboard/adrotatepro.php:91
|
823 |
msgid ""
|
824 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
825 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
828 |
"miss an expiration date again."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
832 |
+
#: dashboard/info.php:78
|
833 |
#, fuzzy
|
834 |
msgid "Buy AdRotate Professional"
|
835 |
msgstr "AdRotate Pro"
|
836 |
|
837 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
838 |
msgid "Single License"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
842 |
msgid "For one WordPress installation."
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
846 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
847 |
msgid "Duo License"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
851 |
msgid "For two WordPress installations."
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
855 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
856 |
msgid "Multi License"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
860 |
msgid " For up to five WordPress installations."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
864 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
865 |
#, fuzzy
|
866 |
msgid "Developer License"
|
867 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
868 |
|
869 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
870 |
msgid "Unlimited WordPress installations and/or networks."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
874 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
875 |
msgid "Compare licenses"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
879 |
msgid "Not sure which license is for you? Compare them..."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
883 |
msgid "All Licenses"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
887 |
msgid "Lifetime License"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
891 |
msgid "Single installation."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
895 |
msgid "Up to 2 installations."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
899 |
msgid "Up to 10 installations."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
903 |
msgid "Up to 25 installations or multisite networks."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
907 |
msgid ""
|
908 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
912 |
msgid "Not sure which license is for you?"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
916 |
msgid "Compare Licenses"
|
917 |
msgstr ""
|
918 |
|
928 |
msgid "Adverts that need you"
|
929 |
msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
|
930 |
|
931 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
932 |
+
#: dashboard/publisher/groups-main.php:34
|
933 |
msgid "Adverts"
|
934 |
msgstr "Διαφημίσεις"
|
935 |
|
951 |
|
952 |
#: dashboard/info.php:55
|
953 |
msgid ""
|
954 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
955 |
+
"for updates about me and my plugins. Thank you!"
|
956 |
msgstr ""
|
957 |
|
|
|
|
|
|
|
|
|
958 |
#: dashboard/info.php:103
|
959 |
+
msgid ""
|
960 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
961 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
962 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: dashboard/info.php:113
|
966 |
#, fuzzy
|
967 |
msgid "Get more features with AdRotate Pro"
|
968 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
969 |
|
970 |
+
#: dashboard/info.php:116
|
971 |
msgid ""
|
972 |
"Benefit from extra features to reinforce your income with advertising "
|
973 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
974 |
"Pro offers on top of the trusted features included in the free version."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: dashboard/info.php:116
|
978 |
msgid "Want to know more about"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: dashboard/info.php:116
|
982 |
msgid "Visit the"
|
983 |
msgstr "Επισκεφθείτε το"
|
984 |
|
985 |
+
#: dashboard/info.php:116
|
986 |
msgid "website"
|
987 |
msgstr "ιστοσελίδα"
|
988 |
|
989 |
+
#: dashboard/info.php:120
|
990 |
+
msgid "AdRotate News and Developer Blog"
|
991 |
+
msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
|
992 |
+
|
993 |
#: dashboard/publisher/adverts-disabled.php:15
|
994 |
+
msgid "Disabled Adverts"
|
995 |
+
msgstr ""
|
996 |
|
997 |
#: dashboard/publisher/adverts-disabled.php:21
|
998 |
#: dashboard/publisher/adverts-edit.php:176
|
1032 |
|
1033 |
#: dashboard/publisher/adverts-disabled.php:39
|
1034 |
#: dashboard/publisher/adverts-main.php:46
|
1035 |
+
#: dashboard/publisher/adverts-report.php:36
|
1036 |
+
#: dashboard/publisher/adverts-report.php:57
|
1037 |
#: dashboard/publisher/groups-edit.php:334
|
1038 |
#: dashboard/publisher/groups-main.php:38
|
1039 |
+
#: dashboard/publisher/groups-report.php:37
|
1040 |
+
#: dashboard/publisher/groups-report.php:58
|
1041 |
msgid "Clicks"
|
1042 |
msgstr "Clicks"
|
1043 |
|
1044 |
#: dashboard/publisher/adverts-disabled.php:40
|
1045 |
#: dashboard/publisher/adverts-main.php:48
|
1046 |
+
#: dashboard/publisher/adverts-report.php:39
|
1047 |
+
#: dashboard/publisher/adverts-report.php:58
|
1048 |
+
#: dashboard/publisher/groups-report.php:40
|
1049 |
+
#: dashboard/publisher/groups-report.php:59
|
1050 |
msgid "CTR"
|
1051 |
msgstr "CTR"
|
1052 |
|
1423 |
msgstr ""
|
1424 |
|
1425 |
#: dashboard/publisher/adverts-edit.php:312
|
1426 |
+
#: dashboard/publisher/adverts-report.php:64
|
1427 |
+
#: dashboard/publisher/groups-report.php:65
|
1428 |
msgid "Note:"
|
1429 |
msgstr "Σημείωση:"
|
1430 |
|
1555 |
msgstr "Λειτουργία"
|
1556 |
|
1557 |
#: dashboard/publisher/adverts-error.php:12
|
1558 |
+
msgid "Adverts that need attention"
|
1559 |
+
msgstr ""
|
1560 |
|
1561 |
#: dashboard/publisher/adverts-error.php:20
|
1562 |
#: dashboard/publisher/adverts-main.php:21
|
1594 |
msgstr "Σφάλματα Διαμόρφωσης."
|
1595 |
|
1596 |
#: dashboard/publisher/adverts-main.php:12
|
1597 |
+
msgid "Active Adverts"
|
1598 |
+
msgstr ""
|
1599 |
|
1600 |
#: dashboard/publisher/adverts-main.php:24
|
1601 |
#, fuzzy
|
1615 |
msgstr "Σήμερα"
|
1616 |
|
1617 |
#: dashboard/publisher/adverts-main.php:109
|
1618 |
+
msgid "No adverts created yet!"
|
1619 |
+
msgstr ""
|
1620 |
|
1621 |
+
#: dashboard/publisher/adverts-report.php:30
|
1622 |
msgid "Statistics for advert"
|
1623 |
msgstr "Στατιστικά στοιχεία για τη διαφήμιση"
|
1624 |
|
1625 |
+
#: dashboard/publisher/adverts-report.php:35
|
1626 |
+
#: dashboard/publisher/adverts-report.php:56
|
1627 |
+
#: dashboard/publisher/groups-report.php:36
|
1628 |
+
#: dashboard/publisher/groups-report.php:57
|
1629 |
msgid "Impressions"
|
1630 |
msgstr "Εμφανίσεις"
|
1631 |
|
1632 |
+
#: dashboard/publisher/adverts-report.php:37
|
1633 |
+
#: dashboard/publisher/groups-report.php:38
|
1634 |
msgid "Impressions today"
|
1635 |
msgstr "Εμφανίσεις σήμερα"
|
1636 |
|
1637 |
+
#: dashboard/publisher/adverts-report.php:38
|
1638 |
+
#: dashboard/publisher/groups-report.php:39
|
1639 |
msgid "Clicks today"
|
1640 |
msgstr "Clicks σήμερα"
|
1641 |
|
1642 |
+
#: dashboard/publisher/adverts-report.php:45
|
1643 |
+
#: dashboard/publisher/groups-report.php:46
|
1644 |
msgid "Monthly overview of clicks and impressions"
|
1645 |
msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
|
1646 |
|
1647 |
+
#: dashboard/publisher/adverts-report.php:64
|
1648 |
+
#: dashboard/publisher/groups-report.php:65
|
1649 |
msgid ""
|
1650 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1651 |
"counted by other parties."
|
1671 |
"Δυναμική Λειτουργία - Εμφάνισε διαφορετική διαφήμιση κάθε λίγα δευτερόλεπτα"
|
1672 |
|
1673 |
#: dashboard/publisher/groups-edit.php:66
|
1674 |
+
msgid "Block Mode - Show a block of adverts"
|
1675 |
+
msgstr ""
|
1676 |
|
1677 |
#: dashboard/publisher/groups-edit.php:70
|
1678 |
#, fuzzy
|
1724 |
msgstr "ύψος εικονοστοιχείου(ων)."
|
1725 |
|
1726 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1727 |
msgid ""
|
1728 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1729 |
"recommended). Default: 125/125."
|
1730 |
msgstr ""
|
|
|
|
|
1731 |
|
1732 |
#: dashboard/publisher/groups-edit.php:108
|
1733 |
msgid "Automated refresh"
|
1751 |
#: dashboard/publisher/groups-edit.php:141
|
1752 |
#: dashboard/publisher/groups-edit.php:288
|
1753 |
msgid ""
|
1754 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1755 |
+
"Adverts\" and enter ID"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
#: dashboard/publisher/groups-edit.php:153
|
1986 |
msgstr "Ορατό μέχρι"
|
1987 |
|
1988 |
#: dashboard/publisher/groups-edit.php:379
|
1989 |
+
msgid "No adverts created!"
|
1990 |
+
msgstr ""
|
1991 |
|
1992 |
#: dashboard/publisher/groups-main.php:21
|
1993 |
msgid "Delete Group"
|
1994 |
msgstr "Διαγραφή ομάδας"
|
1995 |
|
1996 |
#: dashboard/publisher/groups-main.php:22
|
1997 |
+
msgid "Delete Group including adverts"
|
1998 |
+
msgstr ""
|
1999 |
|
2000 |
#: dashboard/publisher/groups-main.php:24
|
2001 |
msgid "You are about to delete a group"
|
2014 |
msgid "No groups created!"
|
2015 |
msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
|
2016 |
|
2017 |
+
#: dashboard/publisher/groups-report.php:31
|
2018 |
msgid "Statistics for group"
|
2019 |
msgstr "Στατιστικά για την ομάδα"
|
2020 |
|
2488 |
msgstr ""
|
2489 |
|
2490 |
#: dashboard/settings/maintenance.php:70
|
2491 |
+
msgid "Banners/assets Folder"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: dashboard/settings/maintenance.php:72
|
2495 |
+
msgid "Exists and appears writable"
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: dashboard/settings/maintenance.php:72
|
2499 |
+
msgid "Not writable or does not exist"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: dashboard/settings/maintenance.php:76
|
2503 |
#, fuzzy
|
2504 |
msgid "Ad evaluation next run:"
|
2505 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
2506 |
|
2507 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2508 |
msgid "Not scheduled!"
|
2509 |
msgstr "Δεν έχει προγραμματιστεί!"
|
2510 |
|
2511 |
+
#: dashboard/settings/maintenance.php:80
|
2512 |
msgid "Clean Trackerdata next run:"
|
2513 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
2514 |
|
2626 |
"παράδειγμα, με μια νέα διεύθυνση email. Αποθηκεύστε πρώτα τις επιλογές!"
|
2627 |
|
2628 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2629 |
msgid "Email Notifications"
|
2630 |
msgstr "Ειδοποιήσεις Email"
|
2631 |
|
2632 |
+
#: dashboard/settings/notifications.php:32
|
2633 |
msgid "Set up who gets notification emails."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: dashboard/settings/notifications.php:35
|
2637 |
+
#: dashboard/settings/notifications.php:55
|
2638 |
msgid "Publishers"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: dashboard/settings/notifications.php:38
|
2642 |
msgid ""
|
2643 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2644 |
"list to a minimum!"
|
2646 |
"Ένας κατάλογος email διαχωρισμένων με κόματα. Μέγιστο όριο 5 διευθύνσεων. "
|
2647 |
"Διατηρήστε τον στο ελάχιστο!"
|
2648 |
|
2649 |
+
#: dashboard/settings/notifications.php:39
|
2650 |
#, fuzzy
|
2651 |
msgid ""
|
2652 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2655 |
"Μηνύματα στέλνονται κάθε 24 ώρες όταν είναι ανάγκη. Αν αυτό το πεδίο είναι "
|
2656 |
"κενό η λειτουργία θα απενεργοποιηθεί."
|
2657 |
|
2658 |
+
#: dashboard/settings/notifications.php:43
|
2659 |
msgid "Advertisers"
|
2660 |
msgstr "Διαφημιζόμενοι"
|
2661 |
|
2662 |
+
#: dashboard/settings/notifications.php:46
|
2663 |
#, fuzzy
|
2664 |
msgid ""
|
2665 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2668 |
"Μέγιστο 2 διευθύνσεων. Διαχωρισμός με κόματα. Αυτό το πεδίο δεν μπορεί να "
|
2669 |
"είναι κενό!"
|
2670 |
|
2671 |
+
#: dashboard/settings/notifications.php:51
|
2672 |
#, fuzzy
|
2673 |
msgid "Push Notifications"
|
2674 |
msgstr "Ειδοποιήσεις"
|
2675 |
|
2676 |
+
#: dashboard/settings/notifications.php:52
|
2677 |
msgid ""
|
2678 |
"Receive information about what is happening with your AdRotate setup on your "
|
2679 |
"smartphone via Pushover."
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: dashboard/settings/notifications.php:57
|
2683 |
msgid "When you are running out of Geo Targeting Lookups."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: dashboard/settings/notifications.php:58
|
2687 |
msgid "Daily digest of any advert status other than normal."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: dashboard/settings/notifications.php:59
|
2691 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: dashboard/settings/notifications.php:60
|
2695 |
#, fuzzy
|
2696 |
msgid "A moderator approved an advert from the moderation queue."
|
2697 |
msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
|
2698 |
|
2699 |
+
#: dashboard/settings/notifications.php:61
|
2700 |
#, fuzzy
|
2701 |
msgid "A moderator rejected an advert from the moderation queue."
|
2702 |
msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
|
2703 |
|
2704 |
+
#: dashboard/settings/notifications.php:61
|
2705 |
msgid ""
|
2706 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2707 |
"you may get a lot of messages!"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: dashboard/settings/notifications.php:66
|
2711 |
#, fuzzy
|
2712 |
msgid "User Key"
|
2713 |
msgstr "πρόγραμμα περιήγησης"
|
2714 |
|
2715 |
+
#: dashboard/settings/notifications.php:68
|
2716 |
msgid "Get your user token"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: dashboard/settings/notifications.php:68
|
2720 |
+
#: dashboard/settings/notifications.php:74
|
2721 |
msgid "here"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: dashboard/settings/notifications.php:72
|
2725 |
msgid "Api Token"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: dashboard/settings/notifications.php:74
|
2729 |
msgid "Create your"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: dashboard/settings/notifications.php:74
|
2733 |
msgid "App"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: dashboard/settings/notifications.php:74
|
2737 |
msgid "and get your API token"
|
2738 |
msgstr ""
|
2739 |
|
2893 |
"Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
|
2894 |
"ώρα)."
|
2895 |
|
2896 |
+
#~ msgid "active ad(s) expired."
|
2897 |
+
#~ msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
|
2898 |
+
|
2899 |
+
#~ msgid "Take action now"
|
2900 |
+
#~ msgstr "Λάβετε μέτρα τώρα"
|
2901 |
+
|
2902 |
+
#~ msgid "active ad(s) are about to expire."
|
2903 |
+
#~ msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
|
2904 |
+
|
2905 |
+
#~ msgid "Check it out"
|
2906 |
+
#~ msgstr "Ελέγξτε το"
|
2907 |
+
|
2908 |
+
#~ msgid "active ad(s) with configuration errors."
|
2909 |
+
#~ msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
|
2910 |
+
|
2911 |
+
#~ msgid "Solve this"
|
2912 |
+
#~ msgstr "Λύστε το"
|
2913 |
+
|
2914 |
+
#~ msgid "ad(s) expired."
|
2915 |
+
#~ msgstr "διαφήμιση(εις) έληξε(αν)"
|
2916 |
+
|
2917 |
+
#~ msgid "ad(s) are about to expire."
|
2918 |
+
#~ msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
2919 |
+
|
2920 |
+
#~ msgid "ad(s) with configuration errors."
|
2921 |
+
#~ msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
2922 |
+
|
2923 |
+
#~ msgid "Fix this as soon as possible"
|
2924 |
+
#~ msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
2925 |
+
|
2926 |
+
#~ msgid "Brought to you by"
|
2927 |
+
#~ msgstr "Σας προσφέρεται από"
|
2928 |
+
|
2929 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2930 |
+
#~ msgstr "Μονή Διαφήμιση - Δώστε Κωδ. Διαφ."
|
2931 |
+
|
2932 |
+
#~ msgid "Group of Ads - Use group ID"
|
2933 |
+
#~ msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
|
2934 |
+
|
2935 |
+
#~ msgid "Manage Ads"
|
2936 |
+
#~ msgstr "Διαχείριση Διαφημίσεων"
|
2937 |
+
|
2938 |
+
#~ msgid "Ad Management"
|
2939 |
+
#~ msgstr "Διαχείριση Διαφημίσεων"
|
2940 |
+
|
2941 |
+
#~ msgid "Disabled Ads"
|
2942 |
+
#~ msgstr "Απενεργοποιημένες διαφημίσεις"
|
2943 |
+
|
2944 |
+
#~ msgid "Ads that need immediate attention"
|
2945 |
+
#~ msgstr "Διαφημίσεις που χρειάζονται άμεση προσοχή"
|
2946 |
+
|
2947 |
+
#~ msgid "Active Ads"
|
2948 |
+
#~ msgstr "Ενεργές Διαφημίσεις"
|
2949 |
+
|
2950 |
+
#~ msgid "No ads created yet!"
|
2951 |
+
#~ msgstr "Δεν έχουν δημιουργηθεί διαφημίσεις ακόμα!"
|
2952 |
+
|
2953 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2954 |
+
#~ msgstr "Λειτουργία Πεδίου - Εμφάνισε ένα μπλοκ διαφημίσεων"
|
2955 |
+
|
2956 |
+
#, fuzzy
|
2957 |
+
#~ msgid ""
|
2958 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
2959 |
+
#~ "recommended). Default: 125/125."
|
2960 |
+
#~ msgstr ""
|
2961 |
+
#~ "Καθορίστε το μέγιστο μέγεθος των διαφημίσεων σε pixels πλυν περιθωρίου. "
|
2962 |
+
#~ "Το μέγεθος μπορεί να είναι «αυτόματο» (Δεν συνίσταται). Προεπιλογή: "
|
2963 |
+
#~ "125/125."
|
2964 |
+
|
2965 |
+
#~ msgid "No ads created!"
|
2966 |
+
#~ msgstr "Δεν δημιουργήθηκαν διαφημίσεις!"
|
2967 |
+
|
2968 |
+
#~ msgid "Delete Group including ads"
|
2969 |
+
#~ msgstr "Διαγραφή Ομάδας, συμπεριλαμβανομένων των διαφημίσεων"
|
2970 |
+
|
2971 |
+
#, fuzzy
|
2972 |
+
#~ msgid "Dashboard Notifications"
|
2973 |
+
#~ msgstr "Ειδοποιήσεις"
|
2974 |
+
|
2975 |
#, fuzzy
|
2976 |
#~ msgid "AdRotate Page"
|
2977 |
#~ msgstr "AdRotate Pro"
|
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:
|
6 |
-
"PO-Revision-Date:
|
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"
|
@@ -17,324 +17,304 @@ msgstr ""
|
|
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."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: adrotate-output.php:
|
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:
|
139 |
msgid "Contact support if the issue persists:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: adrotate-output.php:
|
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:
|
149 |
msgid ""
|
150 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
151 |
"restrictions!"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: adrotate-output.php:
|
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:
|
161 |
msgid "Error, no Ad ID set! Check your syntax!"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: adrotate-output.php:
|
165 |
msgid "Error, no group ID set! Check your syntax!"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: adrotate-output.php:
|
169 |
msgid "Error, group does not exist! Check your syntax!"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: adrotate-output.php:
|
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:
|
179 |
msgid "If this does not solve the issue please seek support at"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: adrotate-output.php:
|
183 |
msgid "An unknown error occured."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: adrotate-output.php:
|
187 |
-
msgid "
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: adrotate-output.php:723
|
191 |
-
msgid "Take action now"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: adrotate-output.php:725
|
195 |
-
msgid "active ad(s) are about to expire."
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: adrotate-output.php:725
|
199 |
-
msgid "Check it out"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: adrotate-output.php:727
|
203 |
-
msgid "active ad(s) with configuration errors."
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: adrotate-output.php:727
|
207 |
-
msgid "Solve this"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: adrotate-output.php:
|
211 |
-
msgid "
|
212 |
-
|
213 |
-
|
214 |
-
#: adrotate-output.php:729
|
215 |
-
msgid "ad(s) are about to expire."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: adrotate-output.php:
|
219 |
-
msgid "
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
-
#: dashboard/adrotatepro.php:
|
228 |
-
#: dashboard/adrotatepro.php:
|
229 |
-
#: dashboard/adrotatepro.php:
|
230 |
-
#: dashboard/adrotatepro.php:
|
231 |
-
#: dashboard/info.php:
|
232 |
-
#: dashboard/info.php:
|
233 |
#: dashboard/settings/geotargeting.php:26
|
234 |
msgid "Buy now"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: adrotate-output.php:
|
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:
|
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:
|
250 |
msgid "Thank you for your purchase!"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: adrotate-output.php:
|
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:
|
260 |
msgid "manuals"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: adrotate-output.php:
|
264 |
msgid "and"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid "forums"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid "Useful Links"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: adrotate-output.php:
|
276 |
msgid "Useful links to learn more about AdRotate"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: adrotate-output.php:
|
280 |
msgid "AdRotate website"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid "Getting Started With AdRotate"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid "AdRotate manuals"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "AdRotate Support Forum"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
msgid "Help AdRotate Grow"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
-
msgid "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: adrotate-output.php:
|
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:
|
310 |
msgid "If you find AdRotate useful please leave your honest"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
msgid "rating"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
msgid "review"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
msgid "Available in AdRotate Pro"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: adrotate-output.php:
|
330 |
msgid "More information..."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "This feature is available in AdRotate Pro"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "Learn more"
|
339 |
msgstr ""
|
340 |
|
@@ -414,135 +394,135 @@ msgstr ""
|
|
414 |
msgid "No data to show!"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: adrotate-widget.php:
|
418 |
msgid "Title (optional):"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: adrotate-widget.php:
|
422 |
msgid "HTML will be stripped out."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: adrotate-widget.php:
|
426 |
msgid "Description (optional):"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: adrotate-widget.php:
|
430 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: adrotate-widget.php:
|
434 |
msgid "Type:"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: adrotate-widget.php:
|
438 |
-
msgid "
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: adrotate-widget.php:
|
442 |
-
msgid "Group
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: adrotate-widget.php:
|
446 |
msgid "Choose what you want to use this widget for"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: adrotate-widget.php:
|
450 |
msgid "ID:"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: adrotate-widget.php:
|
454 |
msgid "Fill in the ID of the type you want to display!"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: adrotate.php:
|
458 |
msgid "General Info"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: adrotate.php:
|
462 |
msgid "AdRotate Pro"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: adrotate.php:
|
466 |
-
msgid "Manage
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: adrotate.php:
|
470 |
msgid "Manage Groups"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: adrotate.php:
|
474 |
msgid "Manage Schedules"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: adrotate.php:
|
478 |
msgid "Manage Media"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: adrotate.php:
|
482 |
msgid "Settings"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: adrotate.php:
|
486 |
msgid "AdRotate Info"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: adrotate.php:
|
490 |
msgid "AdRotate Professional"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: adrotate.php:
|
494 |
-
msgid "
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: adrotate.php:
|
498 |
msgid "Manage"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: adrotate.php:
|
502 |
msgid "Add New"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: adrotate.php:
|
506 |
msgid "Group Management"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: adrotate.php:
|
510 |
#: dashboard/publisher/groups-main.php:70
|
511 |
msgid "Report"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: adrotate.php:
|
515 |
msgid "Schedule Management available in AdRotate Pro"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: adrotate.php:
|
519 |
msgid ""
|
520 |
"Schedule management and multiple schedules per advert is available in "
|
521 |
"AdRotate Pro."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: adrotate.php:
|
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:
|
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:
|
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:
|
546 |
#: dashboard/publisher/adverts-error.php:39
|
547 |
#: dashboard/publisher/adverts-main.php:39
|
548 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -550,165 +530,164 @@ msgstr ""
|
|
550 |
msgid "ID"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
msgid "Start"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: adrotate.php:
|
558 |
msgid "End"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
-
#: dashboard/publisher/groups-main.php:34
|
563 |
msgid "Ads"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: adrotate.php:
|
567 |
msgid "Max Impressions"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: adrotate.php:
|
571 |
msgid "Max Clicks"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
msgid "No schedules created yet!"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: adrotate.php:
|
583 |
msgid "Upgrade today!"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: adrotate.php:
|
587 |
#: dashboard/publisher/groups-edit.php:387
|
588 |
msgid "Expires soon."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: adrotate.php:
|
592 |
#: dashboard/publisher/groups-edit.php:388
|
593 |
msgid "Has expired."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
msgid "Media Management available in AdRotate Pro"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: adrotate.php:
|
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:
|
611 |
msgid "Media uploading and management is available in AdRotate Pro."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: adrotate.php:
|
615 |
msgid "Upload new file"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: adrotate.php:
|
619 |
msgid "Accepted files:"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
msgid "Maximum size is 512Kb."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
msgid "Important:"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: adrotate.php:
|
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:
|
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:
|
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:
|
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:
|
659 |
#: dashboard/publisher/groups-edit.php:320
|
660 |
msgid "Example:"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: adrotate.php:
|
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:
|
670 |
msgid "Upload file"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
msgid "Click only once per file!"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: adrotate.php:
|
678 |
msgid "Available files in"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: adrotate.php:
|
682 |
#: dashboard/publisher/groups-main.php:33
|
683 |
msgid "Name"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: adrotate.php:
|
687 |
msgid "Actions"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: adrotate.php:
|
691 |
-
#: adrotate.php:
|
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:
|
699 |
msgid ""
|
700 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
msgid "AdRotate Settings"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: adrotate.php:
|
712 |
msgid "Update Options"
|
713 |
msgstr ""
|
714 |
|
@@ -760,22 +739,15 @@ msgid ""
|
|
760 |
"forum. Get a solution (usually) within a day."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
764 |
msgid "AdRotate is brought to you by"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: dashboard/adrotatepro.php:
|
768 |
-
msgid ""
|
769 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
770 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
771 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: dashboard/adrotatepro.php:81
|
775 |
msgid "Schedule all campaigns with ease"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: dashboard/adrotatepro.php:
|
779 |
msgid ""
|
780 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
781 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -783,11 +755,11 @@ msgid ""
|
|
783 |
"much more easy. You can set one or many schedules for adverts."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: dashboard/adrotatepro.php:
|
787 |
msgid "Avoid adblockers"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: dashboard/adrotatepro.php:
|
791 |
msgid ""
|
792 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
793 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
@@ -795,11 +767,11 @@ msgid ""
|
|
795 |
"adverts smartly so these features reach their full potential!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: dashboard/adrotatepro.php:
|
799 |
msgid "Stay up-to-date with notifications"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: dashboard/adrotatepro.php:
|
803 |
msgid ""
|
804 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
805 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -808,89 +780,89 @@ msgid ""
|
|
808 |
"miss an expiration date again."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: dashboard/adrotatepro.php:
|
812 |
-
#: dashboard/info.php:
|
813 |
msgid "Buy AdRotate Professional"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: dashboard/adrotatepro.php:
|
817 |
msgid "Single License"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: dashboard/adrotatepro.php:
|
821 |
msgid "For one WordPress installation."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: dashboard/adrotatepro.php:
|
825 |
-
#: dashboard/info.php:
|
826 |
msgid "Duo License"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: dashboard/adrotatepro.php:
|
830 |
msgid "For two WordPress installations."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: dashboard/adrotatepro.php:
|
834 |
-
#: dashboard/info.php:
|
835 |
msgid "Multi License"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: dashboard/adrotatepro.php:
|
839 |
msgid " For up to five WordPress installations."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: dashboard/adrotatepro.php:
|
843 |
-
#: dashboard/info.php:
|
844 |
msgid "Developer License"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: dashboard/adrotatepro.php:
|
848 |
msgid "Unlimited WordPress installations and/or networks."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: dashboard/adrotatepro.php:
|
852 |
-
#: dashboard/info.php:
|
853 |
msgid "Compare licenses"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: dashboard/adrotatepro.php:
|
857 |
msgid "Not sure which license is for you? Compare them..."
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: dashboard/adrotatepro.php:
|
861 |
msgid "All Licenses"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: dashboard/adrotatepro.php:
|
865 |
msgid "Lifetime License"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: dashboard/adrotatepro.php:
|
869 |
msgid "Single installation."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: dashboard/adrotatepro.php:
|
873 |
msgid "Up to 2 installations."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: dashboard/adrotatepro.php:
|
877 |
msgid "Up to 10 installations."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
msgid "Up to 25 installations or multisite networks."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
msgid ""
|
886 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: dashboard/adrotatepro.php:
|
890 |
msgid "Not sure which license is for you?"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: dashboard/adrotatepro.php:
|
894 |
msgid "Compare Licenses"
|
895 |
msgstr ""
|
896 |
|
@@ -906,7 +878,8 @@ msgstr ""
|
|
906 |
msgid "Adverts that need you"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: dashboard/info.php:37
|
|
|
910 |
msgid "Adverts"
|
911 |
msgstr ""
|
912 |
|
@@ -928,39 +901,46 @@ msgstr ""
|
|
928 |
|
929 |
#: dashboard/info.php:55
|
930 |
msgid ""
|
931 |
-
"
|
932 |
-
"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: dashboard/info.php:
|
936 |
-
msgid "
|
|
|
|
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: dashboard/info.php:
|
940 |
msgid "Get more features with AdRotate Pro"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: dashboard/info.php:
|
944 |
msgid ""
|
945 |
"Benefit from extra features to reinforce your income with advertising "
|
946 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
947 |
"Pro offers on top of the trusted features included in the free version."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: dashboard/info.php:
|
951 |
msgid "Want to know more about"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: dashboard/info.php:
|
955 |
msgid "Visit the"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: dashboard/info.php:
|
959 |
msgid "website"
|
960 |
msgstr ""
|
961 |
|
|
|
|
|
|
|
|
|
962 |
#: dashboard/publisher/adverts-disabled.php:15
|
963 |
-
msgid "Disabled
|
964 |
msgstr ""
|
965 |
|
966 |
#: dashboard/publisher/adverts-disabled.php:21
|
@@ -996,17 +976,21 @@ msgstr ""
|
|
996 |
|
997 |
#: dashboard/publisher/adverts-disabled.php:39
|
998 |
#: dashboard/publisher/adverts-main.php:46
|
999 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1000 |
#: dashboard/publisher/groups-edit.php:334
|
1001 |
#: dashboard/publisher/groups-main.php:38
|
1002 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1003 |
msgid "Clicks"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
#: dashboard/publisher/adverts-disabled.php:40
|
1007 |
#: dashboard/publisher/adverts-main.php:48
|
1008 |
-
#: dashboard/publisher/adverts-report.php:
|
1009 |
-
#: dashboard/publisher/
|
|
|
|
|
1010 |
msgid "CTR"
|
1011 |
msgstr ""
|
1012 |
|
@@ -1369,8 +1353,8 @@ msgid ""
|
|
1369 |
msgstr ""
|
1370 |
|
1371 |
#: dashboard/publisher/adverts-edit.php:312
|
1372 |
-
#: dashboard/publisher/adverts-report.php:
|
1373 |
-
#: dashboard/publisher/groups-report.php:
|
1374 |
msgid "Note:"
|
1375 |
msgstr ""
|
1376 |
|
@@ -1492,7 +1476,7 @@ msgid "Mode"
|
|
1492 |
msgstr ""
|
1493 |
|
1494 |
#: dashboard/publisher/adverts-error.php:12
|
1495 |
-
msgid "
|
1496 |
msgstr ""
|
1497 |
|
1498 |
#: dashboard/publisher/adverts-error.php:20
|
@@ -1531,7 +1515,7 @@ msgid "Configuration errors."
|
|
1531 |
msgstr ""
|
1532 |
|
1533 |
#: dashboard/publisher/adverts-main.php:12
|
1534 |
-
msgid "Active
|
1535 |
msgstr ""
|
1536 |
|
1537 |
#: dashboard/publisher/adverts-main.php:24
|
@@ -1551,35 +1535,37 @@ msgid "Today"
|
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: dashboard/publisher/adverts-main.php:109
|
1554 |
-
msgid "No
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: dashboard/publisher/adverts-report.php:
|
1558 |
msgid "Statistics for advert"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: dashboard/publisher/adverts-report.php:
|
1562 |
-
#: dashboard/publisher/
|
|
|
|
|
1563 |
msgid "Impressions"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: dashboard/publisher/adverts-report.php:
|
1567 |
-
#: dashboard/publisher/groups-report.php:
|
1568 |
msgid "Impressions today"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: dashboard/publisher/adverts-report.php:
|
1572 |
-
#: dashboard/publisher/groups-report.php:
|
1573 |
msgid "Clicks today"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: dashboard/publisher/adverts-report.php:
|
1577 |
-
#: dashboard/publisher/groups-report.php:
|
1578 |
msgid "Monthly overview of clicks and impressions"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: dashboard/publisher/adverts-report.php:
|
1582 |
-
#: dashboard/publisher/groups-report.php:
|
1583 |
msgid ""
|
1584 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1585 |
"counted by other parties."
|
@@ -1602,7 +1588,7 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1602 |
msgstr ""
|
1603 |
|
1604 |
#: dashboard/publisher/groups-edit.php:66
|
1605 |
-
msgid "Block Mode - Show a block of
|
1606 |
msgstr ""
|
1607 |
|
1608 |
#: dashboard/publisher/groups-edit.php:70
|
@@ -1652,7 +1638,7 @@ msgstr ""
|
|
1652 |
|
1653 |
#: dashboard/publisher/groups-edit.php:104
|
1654 |
msgid ""
|
1655 |
-
"Define the maximum size of the
|
1656 |
"recommended). Default: 125/125."
|
1657 |
msgstr ""
|
1658 |
|
@@ -1676,8 +1662,8 @@ msgstr ""
|
|
1676 |
#: dashboard/publisher/groups-edit.php:141
|
1677 |
#: dashboard/publisher/groups-edit.php:288
|
1678 |
msgid ""
|
1679 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1680 |
-
"\" and enter ID"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1893,7 +1879,7 @@ msgid "Visible until"
|
|
1893 |
msgstr ""
|
1894 |
|
1895 |
#: dashboard/publisher/groups-edit.php:379
|
1896 |
-
msgid "No
|
1897 |
msgstr ""
|
1898 |
|
1899 |
#: dashboard/publisher/groups-main.php:21
|
@@ -1901,7 +1887,7 @@ msgid "Delete Group"
|
|
1901 |
msgstr ""
|
1902 |
|
1903 |
#: dashboard/publisher/groups-main.php:22
|
1904 |
-
msgid "Delete Group including
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: dashboard/publisher/groups-main.php:24
|
@@ -1921,7 +1907,7 @@ msgstr ""
|
|
1921 |
msgid "No groups created!"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: dashboard/publisher/groups-report.php:
|
1925 |
msgid "Statistics for group"
|
1926 |
msgstr ""
|
1927 |
|
@@ -2368,14 +2354,26 @@ msgid "Unknown"
|
|
2368 |
msgstr ""
|
2369 |
|
2370 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2371 |
msgid "Ad evaluation next run:"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: dashboard/settings/maintenance.php:
|
2375 |
msgid "Not scheduled!"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: dashboard/settings/maintenance.php:
|
2379 |
msgid "Clean Trackerdata next run:"
|
2380 |
msgstr ""
|
2381 |
|
@@ -2477,118 +2475,102 @@ msgid ""
|
|
2477 |
msgstr ""
|
2478 |
|
2479 |
#: dashboard/settings/notifications.php:31
|
2480 |
-
msgid "Dashboard Notifications"
|
2481 |
-
msgstr ""
|
2482 |
-
|
2483 |
-
#: dashboard/settings/notifications.php:32
|
2484 |
-
msgid "These show to every administrator who can edit adverts."
|
2485 |
-
msgstr ""
|
2486 |
-
|
2487 |
-
#: dashboard/settings/notifications.php:35
|
2488 |
-
msgid "Notification banners"
|
2489 |
-
msgstr ""
|
2490 |
-
|
2491 |
-
#: dashboard/settings/notifications.php:36
|
2492 |
-
msgid "Disable dashboard notifications."
|
2493 |
-
msgstr ""
|
2494 |
-
|
2495 |
-
#: dashboard/settings/notifications.php:40
|
2496 |
msgid "Email Notifications"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: dashboard/settings/notifications.php:
|
2500 |
msgid "Set up who gets notification emails."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: dashboard/settings/notifications.php:
|
2504 |
-
#: dashboard/settings/notifications.php:
|
2505 |
msgid "Publishers"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: dashboard/settings/notifications.php:
|
2509 |
msgid ""
|
2510 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2511 |
"list to a minimum!"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: dashboard/settings/notifications.php:
|
2515 |
msgid ""
|
2516 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2517 |
"email notifications will be send."
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: dashboard/settings/notifications.php:
|
2521 |
msgid "Advertisers"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: dashboard/settings/notifications.php:
|
2525 |
msgid ""
|
2526 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2527 |
"This field may not be empty!"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: dashboard/settings/notifications.php:
|
2531 |
msgid "Push Notifications"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: dashboard/settings/notifications.php:
|
2535 |
msgid ""
|
2536 |
"Receive information about what is happening with your AdRotate setup on your "
|
2537 |
"smartphone via Pushover."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: dashboard/settings/notifications.php:
|
2541 |
msgid "When you are running out of Geo Targeting Lookups."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: dashboard/settings/notifications.php:
|
2545 |
msgid "Daily digest of any advert status other than normal."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: dashboard/settings/notifications.php:
|
2549 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: dashboard/settings/notifications.php:
|
2553 |
msgid "A moderator approved an advert from the moderation queue."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: dashboard/settings/notifications.php:
|
2557 |
msgid "A moderator rejected an advert from the moderation queue."
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: dashboard/settings/notifications.php:
|
2561 |
msgid ""
|
2562 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2563 |
"you may get a lot of messages!"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: dashboard/settings/notifications.php:
|
2567 |
msgid "User Key"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: dashboard/settings/notifications.php:
|
2571 |
msgid "Get your user token"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: dashboard/settings/notifications.php:
|
2575 |
-
#: dashboard/settings/notifications.php:
|
2576 |
msgid "here"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: dashboard/settings/notifications.php:
|
2580 |
msgid "Api Token"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: dashboard/settings/notifications.php:
|
2584 |
msgid "Create your"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: dashboard/settings/notifications.php:
|
2588 |
msgid "App"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: dashboard/settings/notifications.php:
|
2592 |
msgid "and get your API token"
|
2593 |
msgstr ""
|
2594 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:58+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:58+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:844
|
21 |
msgid "No files found"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: adrotate-functions.php:847
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: adrotate-functions.php:896
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:900
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:904
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: adrotate-functions.php:908
|
41 |
msgid "Group deleted"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: adrotate-functions.php:912
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: adrotate-functions.php:916
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: adrotate-functions.php:920
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: adrotate-functions.php:924
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: adrotate-functions.php:928
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: adrotate-functions.php:932
|
65 |
msgid "Export created"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: adrotate-functions.php:937
|
69 |
msgid "Settings saved"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: adrotate-functions.php:941
|
73 |
msgid "Database optimized"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: adrotate-functions.php:945
|
77 |
msgid "Database repaired"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: adrotate-functions.php:949
|
81 |
msgid "Ads evaluated and statuses have been corrected where required"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: adrotate-functions.php:953
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: adrotate-functions.php:958
|
89 |
msgid "Action prohibited"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: adrotate-functions.php:962
|
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:966
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: adrotate-functions.php:970
|
103 |
msgid "Database can only be optimized or cleaned once every hour"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: adrotate-functions.php:974
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: adrotate-functions.php:978
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:982
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-manage-publisher.php:702
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-output.php:607
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
139 |
msgid "Contact support if the issue persists:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: adrotate-output.php:628
|
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:630
|
149 |
msgid ""
|
150 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
151 |
"restrictions!"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: adrotate-output.php:637 adrotate-output.php:639
|
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:645
|
161 |
msgid "Error, no Ad ID set! Check your syntax!"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: adrotate-output.php:651
|
165 |
msgid "Error, no group ID set! Check your syntax!"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: adrotate-output.php:656
|
169 |
msgid "Error, group does not exist! Check your syntax!"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: adrotate-output.php:662
|
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:662
|
179 |
msgid "If this does not solve the issue please seek support at"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: adrotate-output.php:668
|
183 |
msgid "An unknown error occured."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
187 |
+
msgid "Check adverts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: adrotate-output.php:698
|
191 |
+
msgid ""
|
192 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
193 |
+
"site!"
|
|
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:701
|
197 |
+
msgid ""
|
198 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
199 |
+
"not set."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: adrotate-output.php:706
|
203 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
207 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
208 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
209 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
210 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
211 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
212 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
213 |
#: dashboard/settings/geotargeting.php:26
|
214 |
msgid "Buy now"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:747
|
218 |
msgid ""
|
219 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
220 |
"to the <strong>PRO</strong> version"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: adrotate-output.php:747
|
224 |
#, php-format
|
225 |
msgid ""
|
226 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: adrotate-output.php:747
|
230 |
msgid "Thank you for your purchase!"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: adrotate-output.php:791
|
234 |
msgid ""
|
235 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
236 |
"this menu. Check out the"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:791
|
240 |
msgid "manuals"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
244 |
msgid "and"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: adrotate-output.php:791
|
248 |
msgid "forums"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: adrotate-output.php:824
|
252 |
msgid "Useful Links"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: adrotate-output.php:825
|
256 |
msgid "Useful links to learn more about AdRotate"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: adrotate-output.php:827
|
260 |
msgid "AdRotate website"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: adrotate-output.php:828
|
264 |
msgid "Getting Started With AdRotate"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: adrotate-output.php:829
|
268 |
msgid "AdRotate manuals"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: adrotate-output.php:830
|
272 |
msgid "AdRotate Support Forum"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: adrotate-output.php:856
|
276 |
msgid "Help AdRotate Grow"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: adrotate-output.php:857
|
280 |
+
msgid "Follow Arnan on Facebook"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: adrotate-output.php:864
|
284 |
msgid ""
|
285 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
286 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: adrotate-output.php:864
|
290 |
msgid "If you find AdRotate useful please leave your honest"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: adrotate-output.php:864
|
294 |
msgid "rating"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: adrotate-output.php:864
|
298 |
msgid "review"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: adrotate-output.php:864
|
302 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: adrotate-output.php:903
|
306 |
msgid "Available in AdRotate Pro"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: adrotate-output.php:903
|
310 |
msgid "More information..."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: adrotate-output.php:904
|
314 |
msgid "This feature is available in AdRotate Pro"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: adrotate-output.php:904
|
318 |
msgid "Learn more"
|
319 |
msgstr ""
|
320 |
|
394 |
msgid "No data to show!"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: adrotate-widget.php:116
|
398 |
msgid "Title (optional):"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: adrotate-widget.php:119
|
402 |
msgid "HTML will be stripped out."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: adrotate-widget.php:122
|
406 |
msgid "Description (optional):"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: adrotate-widget.php:125
|
410 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: adrotate-widget.php:128
|
414 |
msgid "Type:"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: adrotate-widget.php:130
|
418 |
+
msgid "Advert - Use Advert ID"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: adrotate-widget.php:131
|
422 |
+
msgid "Group - Use group ID"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: adrotate-widget.php:134
|
426 |
msgid "Choose what you want to use this widget for"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: adrotate-widget.php:137
|
430 |
msgid "ID:"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: adrotate-widget.php:140
|
434 |
msgid "Fill in the ID of the type you want to display!"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: adrotate.php:105
|
438 |
msgid "General Info"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: adrotate.php:106
|
442 |
msgid "AdRotate Pro"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: adrotate.php:107
|
446 |
+
msgid "Manage Adverts"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
450 |
msgid "Manage Groups"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: adrotate.php:109 adrotate.php:407
|
454 |
msgid "Manage Schedules"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: adrotate.php:110
|
458 |
msgid "Manage Media"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: adrotate.php:111
|
462 |
msgid "Settings"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: adrotate.php:134
|
466 |
msgid "AdRotate Info"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: adrotate.php:155
|
470 |
msgid "AdRotate Professional"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: adrotate.php:198
|
474 |
+
msgid "Advert Management"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
478 |
msgid "Manage"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
482 |
msgid "Add New"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: adrotate.php:336
|
486 |
msgid "Group Management"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
490 |
#: dashboard/publisher/groups-main.php:70
|
491 |
msgid "Report"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: adrotate.php:398
|
495 |
msgid "Schedule Management available in AdRotate Pro"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: adrotate.php:408
|
499 |
msgid ""
|
500 |
"Schedule management and multiple schedules per advert is available in "
|
501 |
"AdRotate Pro."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
505 |
#: dashboard/publisher/adverts-main.php:114
|
506 |
#: dashboard/publisher/groups-edit.php:75
|
507 |
#: dashboard/publisher/groups-main.php:89
|
508 |
msgid "More information"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
512 |
#: dashboard/publisher/adverts-error.php:19
|
513 |
#: dashboard/publisher/adverts-main.php:20
|
514 |
#: dashboard/publisher/groups-main.php:20
|
515 |
msgid "Bulk Actions"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
519 |
#: dashboard/publisher/adverts-error.php:29
|
520 |
#: dashboard/publisher/adverts-main.php:30
|
521 |
#: dashboard/publisher/groups-main.php:24
|
522 |
msgid "Go"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
526 |
#: dashboard/publisher/adverts-error.php:39
|
527 |
#: dashboard/publisher/adverts-main.php:39
|
528 |
#: dashboard/publisher/groups-edit.php:51
|
530 |
msgid "ID"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: adrotate.php:426
|
534 |
msgid "Start"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: adrotate.php:426
|
538 |
msgid "End"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: adrotate.php:427
|
|
|
542 |
msgid "Ads"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: adrotate.php:429
|
546 |
msgid "Max Impressions"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: adrotate.php:430
|
550 |
msgid "Max Clicks"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: adrotate.php:460
|
554 |
msgid "No schedules created yet!"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: adrotate.php:465
|
558 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: adrotate.php:465 adrotate.php:531
|
562 |
msgid "Upgrade today!"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
566 |
#: dashboard/publisher/groups-edit.php:387
|
567 |
msgid "Expires soon."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
571 |
#: dashboard/publisher/groups-edit.php:388
|
572 |
msgid "Has expired."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: adrotate.php:493
|
576 |
msgid "Media Management available in AdRotate Pro"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: adrotate.php:495
|
580 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: adrotate.php:495
|
584 |
msgid ""
|
585 |
"This is useful if you use responsive adverts with multiple images or have "
|
586 |
"HTML5 adverts containing multiple files."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: adrotate.php:495
|
590 |
msgid "Media uploading and management is available in AdRotate Pro."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: adrotate.php:497
|
594 |
msgid "Upload new file"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: adrotate.php:498
|
598 |
msgid "Accepted files:"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: adrotate.php:498
|
602 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: adrotate.php:498
|
606 |
msgid "Maximum size is 512Kb."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: adrotate.php:498
|
610 |
msgid "Important:"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: adrotate.php:498
|
614 |
msgid ""
|
615 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
616 |
"spaces with a - or _."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: adrotate.php:498
|
620 |
msgid ""
|
621 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
622 |
"file so it knows about the changed name. For example for the javascript file."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: adrotate.php:501
|
626 |
msgid ""
|
627 |
"For responsive adverts make sure the filename is in the following format; "
|
628 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
632 |
msgid ""
|
633 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
634 |
"filename instead of \".full\" for the various viewports."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
638 |
#: dashboard/publisher/groups-edit.php:320
|
639 |
msgid "Example:"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: adrotate.php:503
|
643 |
msgid ""
|
644 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
645 |
"for different viewports."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: adrotate.php:507
|
649 |
msgid "Upload file"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: adrotate.php:507
|
653 |
msgid "Click only once per file!"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: adrotate.php:510
|
657 |
msgid "Available files in"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
661 |
#: dashboard/publisher/groups-main.php:33
|
662 |
msgid "Name"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: adrotate.php:516
|
666 |
msgid "Actions"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
670 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
671 |
#: dashboard/publisher/adverts-disabled.php:22
|
672 |
#: dashboard/publisher/adverts-error.php:21
|
673 |
#: dashboard/publisher/adverts-main.php:22
|
674 |
msgid "Delete"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: adrotate.php:531
|
678 |
msgid ""
|
679 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: adrotate.php:531
|
683 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: adrotate.php:560
|
687 |
msgid "AdRotate Settings"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: adrotate.php:631
|
691 |
msgid "Update Options"
|
692 |
msgstr ""
|
693 |
|
739 |
"forum. Get a solution (usually) within a day."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
743 |
msgid "AdRotate is brought to you by"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
747 |
msgid "Schedule all campaigns with ease"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: dashboard/adrotatepro.php:77
|
751 |
msgid ""
|
752 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
753 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
755 |
"much more easy. You can set one or many schedules for adverts."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: dashboard/adrotatepro.php:81
|
759 |
msgid "Avoid adblockers"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: dashboard/adrotatepro.php:84
|
763 |
msgid ""
|
764 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
765 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
767 |
"adverts smartly so these features reach their full potential!"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: dashboard/adrotatepro.php:88
|
771 |
msgid "Stay up-to-date with notifications"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: dashboard/adrotatepro.php:91
|
775 |
msgid ""
|
776 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
777 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
780 |
"miss an expiration date again."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
784 |
+
#: dashboard/info.php:78
|
785 |
msgid "Buy AdRotate Professional"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
789 |
msgid "Single License"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
793 |
msgid "For one WordPress installation."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
797 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
798 |
msgid "Duo License"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
802 |
msgid "For two WordPress installations."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
806 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
807 |
msgid "Multi License"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
811 |
msgid " For up to five WordPress installations."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
815 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
816 |
msgid "Developer License"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
820 |
msgid "Unlimited WordPress installations and/or networks."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
824 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
825 |
msgid "Compare licenses"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
829 |
msgid "Not sure which license is for you? Compare them..."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
833 |
msgid "All Licenses"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
837 |
msgid "Lifetime License"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
841 |
msgid "Single installation."
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
845 |
msgid "Up to 2 installations."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
849 |
msgid "Up to 10 installations."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
853 |
msgid "Up to 25 installations or multisite networks."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
857 |
msgid ""
|
858 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
862 |
msgid "Not sure which license is for you?"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
866 |
msgid "Compare Licenses"
|
867 |
msgstr ""
|
868 |
|
878 |
msgid "Adverts that need you"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
882 |
+
#: dashboard/publisher/groups-main.php:34
|
883 |
msgid "Adverts"
|
884 |
msgstr ""
|
885 |
|
901 |
|
902 |
#: dashboard/info.php:55
|
903 |
msgid ""
|
904 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
905 |
+
"for updates about me and my plugins. Thank you!"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: dashboard/info.php:103
|
909 |
+
msgid ""
|
910 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
911 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
912 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: dashboard/info.php:113
|
916 |
msgid "Get more features with AdRotate Pro"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: dashboard/info.php:116
|
920 |
msgid ""
|
921 |
"Benefit from extra features to reinforce your income with advertising "
|
922 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
923 |
"Pro offers on top of the trusted features included in the free version."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: dashboard/info.php:116
|
927 |
msgid "Want to know more about"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: dashboard/info.php:116
|
931 |
msgid "Visit the"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: dashboard/info.php:116
|
935 |
msgid "website"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: dashboard/info.php:120
|
939 |
+
msgid "AdRotate News and Developer Blog"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
#: dashboard/publisher/adverts-disabled.php:15
|
943 |
+
msgid "Disabled Adverts"
|
944 |
msgstr ""
|
945 |
|
946 |
#: dashboard/publisher/adverts-disabled.php:21
|
976 |
|
977 |
#: dashboard/publisher/adverts-disabled.php:39
|
978 |
#: dashboard/publisher/adverts-main.php:46
|
979 |
+
#: dashboard/publisher/adverts-report.php:36
|
980 |
+
#: dashboard/publisher/adverts-report.php:57
|
981 |
#: dashboard/publisher/groups-edit.php:334
|
982 |
#: dashboard/publisher/groups-main.php:38
|
983 |
+
#: dashboard/publisher/groups-report.php:37
|
984 |
+
#: dashboard/publisher/groups-report.php:58
|
985 |
msgid "Clicks"
|
986 |
msgstr ""
|
987 |
|
988 |
#: dashboard/publisher/adverts-disabled.php:40
|
989 |
#: dashboard/publisher/adverts-main.php:48
|
990 |
+
#: dashboard/publisher/adverts-report.php:39
|
991 |
+
#: dashboard/publisher/adverts-report.php:58
|
992 |
+
#: dashboard/publisher/groups-report.php:40
|
993 |
+
#: dashboard/publisher/groups-report.php:59
|
994 |
msgid "CTR"
|
995 |
msgstr ""
|
996 |
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: dashboard/publisher/adverts-edit.php:312
|
1356 |
+
#: dashboard/publisher/adverts-report.php:64
|
1357 |
+
#: dashboard/publisher/groups-report.php:65
|
1358 |
msgid "Note:"
|
1359 |
msgstr ""
|
1360 |
|
1476 |
msgstr ""
|
1477 |
|
1478 |
#: dashboard/publisher/adverts-error.php:12
|
1479 |
+
msgid "Adverts that need attention"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: dashboard/publisher/adverts-error.php:20
|
1515 |
msgstr ""
|
1516 |
|
1517 |
#: dashboard/publisher/adverts-main.php:12
|
1518 |
+
msgid "Active Adverts"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
#: dashboard/publisher/adverts-main.php:24
|
1535 |
msgstr ""
|
1536 |
|
1537 |
#: dashboard/publisher/adverts-main.php:109
|
1538 |
+
msgid "No adverts created yet!"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: dashboard/publisher/adverts-report.php:30
|
1542 |
msgid "Statistics for advert"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: dashboard/publisher/adverts-report.php:35
|
1546 |
+
#: dashboard/publisher/adverts-report.php:56
|
1547 |
+
#: dashboard/publisher/groups-report.php:36
|
1548 |
+
#: dashboard/publisher/groups-report.php:57
|
1549 |
msgid "Impressions"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: dashboard/publisher/adverts-report.php:37
|
1553 |
+
#: dashboard/publisher/groups-report.php:38
|
1554 |
msgid "Impressions today"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: dashboard/publisher/adverts-report.php:38
|
1558 |
+
#: dashboard/publisher/groups-report.php:39
|
1559 |
msgid "Clicks today"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: dashboard/publisher/adverts-report.php:45
|
1563 |
+
#: dashboard/publisher/groups-report.php:46
|
1564 |
msgid "Monthly overview of clicks and impressions"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: dashboard/publisher/adverts-report.php:64
|
1568 |
+
#: dashboard/publisher/groups-report.php:65
|
1569 |
msgid ""
|
1570 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1571 |
"counted by other parties."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#: dashboard/publisher/groups-edit.php:66
|
1591 |
+
msgid "Block Mode - Show a block of adverts"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
#: dashboard/publisher/groups-edit.php:70
|
1638 |
|
1639 |
#: dashboard/publisher/groups-edit.php:104
|
1640 |
msgid ""
|
1641 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1642 |
"recommended). Default: 125/125."
|
1643 |
msgstr ""
|
1644 |
|
1662 |
#: dashboard/publisher/groups-edit.php:141
|
1663 |
#: dashboard/publisher/groups-edit.php:288
|
1664 |
msgid ""
|
1665 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1666 |
+
"Adverts\" and enter ID"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: dashboard/publisher/groups-edit.php:153
|
1879 |
msgstr ""
|
1880 |
|
1881 |
#: dashboard/publisher/groups-edit.php:379
|
1882 |
+
msgid "No adverts created!"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: dashboard/publisher/groups-main.php:21
|
1887 |
msgstr ""
|
1888 |
|
1889 |
#: dashboard/publisher/groups-main.php:22
|
1890 |
+
msgid "Delete Group including adverts"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
#: dashboard/publisher/groups-main.php:24
|
1907 |
msgid "No groups created!"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: dashboard/publisher/groups-report.php:31
|
1911 |
msgid "Statistics for group"
|
1912 |
msgstr ""
|
1913 |
|
2354 |
msgstr ""
|
2355 |
|
2356 |
#: dashboard/settings/maintenance.php:70
|
2357 |
+
msgid "Banners/assets Folder"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: dashboard/settings/maintenance.php:72
|
2361 |
+
msgid "Exists and appears writable"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: dashboard/settings/maintenance.php:72
|
2365 |
+
msgid "Not writable or does not exist"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: dashboard/settings/maintenance.php:76
|
2369 |
msgid "Ad evaluation next run:"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2373 |
msgid "Not scheduled!"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: dashboard/settings/maintenance.php:80
|
2377 |
msgid "Clean Trackerdata next run:"
|
2378 |
msgstr ""
|
2379 |
|
2475 |
msgstr ""
|
2476 |
|
2477 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2478 |
msgid "Email Notifications"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: dashboard/settings/notifications.php:32
|
2482 |
msgid "Set up who gets notification emails."
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: dashboard/settings/notifications.php:35
|
2486 |
+
#: dashboard/settings/notifications.php:55
|
2487 |
msgid "Publishers"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: dashboard/settings/notifications.php:38
|
2491 |
msgid ""
|
2492 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2493 |
"list to a minimum!"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: dashboard/settings/notifications.php:39
|
2497 |
msgid ""
|
2498 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2499 |
"email notifications will be send."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: dashboard/settings/notifications.php:43
|
2503 |
msgid "Advertisers"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: dashboard/settings/notifications.php:46
|
2507 |
msgid ""
|
2508 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2509 |
"This field may not be empty!"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: dashboard/settings/notifications.php:51
|
2513 |
msgid "Push Notifications"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: dashboard/settings/notifications.php:52
|
2517 |
msgid ""
|
2518 |
"Receive information about what is happening with your AdRotate setup on your "
|
2519 |
"smartphone via Pushover."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: dashboard/settings/notifications.php:57
|
2523 |
msgid "When you are running out of Geo Targeting Lookups."
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: dashboard/settings/notifications.php:58
|
2527 |
msgid "Daily digest of any advert status other than normal."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: dashboard/settings/notifications.php:59
|
2531 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: dashboard/settings/notifications.php:60
|
2535 |
msgid "A moderator approved an advert from the moderation queue."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: dashboard/settings/notifications.php:61
|
2539 |
msgid "A moderator rejected an advert from the moderation queue."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: dashboard/settings/notifications.php:61
|
2543 |
msgid ""
|
2544 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2545 |
"you may get a lot of messages!"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: dashboard/settings/notifications.php:66
|
2549 |
msgid "User Key"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: dashboard/settings/notifications.php:68
|
2553 |
msgid "Get your user token"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: dashboard/settings/notifications.php:68
|
2557 |
+
#: dashboard/settings/notifications.php:74
|
2558 |
msgid "here"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: dashboard/settings/notifications.php:72
|
2562 |
msgid "Api Token"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: dashboard/settings/notifications.php:74
|
2566 |
msgid "Create your"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: dashboard/settings/notifications.php:74
|
2570 |
msgid "App"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: dashboard/settings/notifications.php:74
|
2574 |
msgid "and get your API token"
|
2575 |
msgstr ""
|
2576 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
@@ -17,114 +17,114 @@ msgstr ""
|
|
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,173 +188,153 @@ 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 "
|
201 |
-
msgstr "
|
202 |
-
|
203 |
-
#: adrotate-output.php:
|
204 |
-
msgid "
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
msgstr "
|
214 |
-
|
215 |
-
#: adrotate-output.php:
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
-
|
219 |
-
#: adrotate-output.php:
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
#:
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
#: adrotate-output.php:729
|
228 |
-
msgid "ad(s) are about to expire."
|
229 |
-
msgstr "anuncio(s) están a punto de caducar."
|
230 |
-
|
231 |
-
#: adrotate-output.php:729
|
232 |
-
msgid "ad(s) with configuration errors."
|
233 |
-
msgstr "anuncio(s) con errores de configuración."
|
234 |
-
|
235 |
-
#: adrotate-output.php:729
|
236 |
-
msgid "Fix this as soon as possible"
|
237 |
-
msgstr "Solucionar esto en cuanto sea posible"
|
238 |
-
|
239 |
-
#: adrotate-output.php:741 dashboard/adrotatepro.php:106
|
240 |
-
#: dashboard/adrotatepro.php:107 dashboard/adrotatepro.php:108
|
241 |
-
#: dashboard/adrotatepro.php:109 dashboard/adrotatepro.php:118
|
242 |
-
#: dashboard/adrotatepro.php:119 dashboard/adrotatepro.php:120
|
243 |
-
#: dashboard/adrotatepro.php:121 dashboard/info.php:114 dashboard/info.php:115
|
244 |
-
#: dashboard/info.php:116 dashboard/info.php:117 dashboard/info.php:126
|
245 |
-
#: dashboard/info.php:127 dashboard/info.php:128 dashboard/info.php:129
|
246 |
#: dashboard/settings/geotargeting.php:26
|
247 |
#, fuzzy
|
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 |
msgid "AdRotate website"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
#, fuzzy
|
300 |
msgid "Getting Started With AdRotate"
|
301 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
302 |
|
303 |
-
#: adrotate-output.php:
|
304 |
#, fuzzy
|
305 |
msgid "AdRotate manuals"
|
306 |
msgstr "Información de AdRotate"
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
#, fuzzy
|
310 |
msgid "AdRotate Support Forum"
|
311 |
msgstr "Tienda AdRotate"
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
#, fuzzy
|
315 |
msgid "Help AdRotate Grow"
|
316 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
msgid ""
|
324 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
325 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: adrotate-output.php:
|
329 |
msgid "If you find AdRotate useful please leave your honest"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: adrotate-output.php:
|
333 |
msgid "rating"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: adrotate-output.php:
|
337 |
#, fuzzy
|
338 |
msgid "review"
|
339 |
msgstr "Revise el anuncio aquí:"
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "Available in AdRotate Pro"
|
347 |
msgstr "Disponible en AdRotate Pro"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "More information..."
|
351 |
msgstr "Más información..."
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "This feature is available in AdRotate Pro"
|
355 |
msgstr "Esta función está disponible en AdRotate Pro"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid "Learn more"
|
359 |
msgstr "Aprender más"
|
360 |
|
@@ -434,118 +414,118 @@ msgstr "Siguiente"
|
|
434 |
msgid "No data to show!"
|
435 |
msgstr "No hay datos para mostrar!"
|
436 |
|
437 |
-
#: adrotate-widget.php:
|
438 |
msgid "Title (optional):"
|
439 |
msgstr "Título (opcional):"
|
440 |
|
441 |
-
#: adrotate-widget.php:
|
442 |
msgid "HTML will be stripped out."
|
443 |
msgstr "El HTML será eliminado"
|
444 |
|
445 |
-
#: adrotate-widget.php:
|
446 |
msgid "Description (optional):"
|
447 |
msgstr "Descripción (opcional):"
|
448 |
|
449 |
-
#: adrotate-widget.php:
|
450 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
451 |
msgstr ""
|
452 |
"¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
|
453 |
|
454 |
-
#: adrotate-widget.php:
|
455 |
msgid "Type:"
|
456 |
msgstr "Tipo:"
|
457 |
|
458 |
-
#: adrotate-widget.php:
|
459 |
-
msgid "
|
460 |
-
msgstr "
|
461 |
|
462 |
-
#: adrotate-widget.php:
|
463 |
-
msgid "Group
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: adrotate-widget.php:
|
467 |
msgid "Choose what you want to use this widget for"
|
468 |
msgstr "Elija lo que desea utilizar en este widget para"
|
469 |
|
470 |
-
#: adrotate-widget.php:
|
471 |
msgid "ID:"
|
472 |
msgstr "ID:"
|
473 |
|
474 |
-
#: adrotate-widget.php:
|
475 |
msgid "Fill in the ID of the type you want to display!"
|
476 |
msgstr "Rellene con el ID del tipo que desea mostrar!"
|
477 |
|
478 |
-
#: adrotate.php:
|
479 |
msgid "General Info"
|
480 |
msgstr "Información General"
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
msgid "AdRotate Pro"
|
484 |
msgstr "AdRotate Pro"
|
485 |
|
486 |
-
#: adrotate.php:
|
487 |
-
msgid "Manage
|
488 |
-
msgstr "
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
msgid "Manage Groups"
|
492 |
msgstr "Gestionar Grupos"
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
#, fuzzy
|
496 |
msgid "Manage Schedules"
|
497 |
msgstr "Gestionar Programas"
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
#, fuzzy
|
501 |
msgid "Manage Media"
|
502 |
msgstr "Gestionar Medios"
|
503 |
|
504 |
-
#: adrotate.php:
|
505 |
msgid "Settings"
|
506 |
msgstr "Ajustes"
|
507 |
|
508 |
-
#: adrotate.php:
|
509 |
msgid "AdRotate Info"
|
510 |
msgstr "Información de AdRotate"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "AdRotate Professional"
|
514 |
msgstr "AdRotate Profesional"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
-
msgid "
|
518 |
-
msgstr "
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "Manage"
|
522 |
msgstr "Gestionar"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Add New"
|
526 |
msgstr "Añadir Nuevo"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Group Management"
|
530 |
msgstr "Administración de Grupos"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
#: dashboard/publisher/groups-main.php:70
|
534 |
msgid "Report"
|
535 |
msgstr "Informe"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
#, fuzzy
|
539 |
msgid "Schedule Management available in AdRotate Pro"
|
540 |
msgstr "Disponible en AdRotate Pro"
|
541 |
|
542 |
-
#: adrotate.php:
|
543 |
msgid ""
|
544 |
"Schedule management and multiple schedules per advert is available in "
|
545 |
"AdRotate Pro."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: adrotate.php:
|
549 |
#: dashboard/publisher/adverts-main.php:114
|
550 |
#: dashboard/publisher/groups-edit.php:75
|
551 |
#: dashboard/publisher/groups-main.php:89
|
@@ -553,21 +533,21 @@ msgstr ""
|
|
553 |
msgid "More information"
|
554 |
msgstr "Más información..."
|
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 "Acciones en Lote"
|
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 "Aplicar"
|
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,97 +555,96 @@ msgstr "Aplicar"
|
|
575 |
msgid "ID"
|
576 |
msgstr "ID"
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
#, fuzzy
|
580 |
msgid "Start"
|
581 |
msgstr "Iniciar"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#, fuzzy
|
585 |
msgid "End"
|
586 |
msgstr "Finalizar"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
-
#: dashboard/publisher/groups-main.php:34
|
590 |
msgid "Ads"
|
591 |
msgstr "Anuncios"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
msgid "Max Impressions"
|
595 |
msgstr "Número máximo de Impresiones"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Max Clicks"
|
599 |
msgstr "Número máximo de Clics"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
#, fuzzy
|
603 |
msgid "No schedules created yet!"
|
604 |
msgstr "Todavia no se han creado programas!"
|
605 |
|
606 |
-
#: adrotate.php:
|
607 |
#, fuzzy
|
608 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
609 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
#, fuzzy
|
613 |
msgid "Upgrade today!"
|
614 |
msgstr "Hoy"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#: dashboard/publisher/groups-edit.php:387
|
618 |
msgid "Expires soon."
|
619 |
msgstr "Caduca pronto."
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#: dashboard/publisher/groups-edit.php:388
|
623 |
msgid "Has expired."
|
624 |
msgstr "Ha expirado."
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#, fuzzy
|
628 |
msgid "Media Management available in AdRotate Pro"
|
629 |
msgstr "Esta función está disponible en AdRotate Pro"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid ""
|
637 |
"This is useful if you use responsive adverts with multiple images or have "
|
638 |
"HTML5 adverts containing multiple files."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: adrotate.php:
|
642 |
#, fuzzy
|
643 |
msgid "Media uploading and management is available in AdRotate Pro."
|
644 |
msgstr "Esta función está disponible en AdRotate Pro"
|
645 |
|
646 |
-
#: adrotate.php:
|
647 |
msgid "Upload new file"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
msgid "Accepted files:"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: adrotate.php:
|
655 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
#, fuzzy
|
660 |
msgid "Maximum size is 512Kb."
|
661 |
msgstr "El tamaño máximo es 512Kb."
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
#, fuzzy
|
665 |
msgid "Important:"
|
666 |
msgstr "Importante:"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
#, fuzzy
|
670 |
msgid ""
|
671 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
@@ -674,13 +653,13 @@ msgstr ""
|
|
674 |
"Asegúrese de que en el nombre de su archivo no contiene espacios ni "
|
675 |
"caracteres especiales. Reemplace los espacios con un - o _."
|
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 +669,7 @@ msgstr ""
|
|
690 |
"siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
|
691 |
"de imágenes del mismo tamaño."
|
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."
|
@@ -699,12 +678,12 @@ msgstr ""
|
|
699 |
"\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
|
700 |
"diferentes visores."
|
701 |
|
702 |
-
#: adrotate.php:
|
703 |
#: dashboard/publisher/groups-edit.php:320
|
704 |
msgid "Example:"
|
705 |
msgstr "Ejemplo:"
|
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,37 +692,37 @@ msgstr ""
|
|
713 |
"image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
|
714 |
"distintas ventanas gráficas. Se necesita 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 "Nombre"
|
732 |
|
733 |
-
#: adrotate.php:
|
734 |
#, fuzzy
|
735 |
msgid "Actions"
|
736 |
msgstr "Acciones"
|
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 "Borrar"
|
745 |
|
746 |
-
#: adrotate.php:
|
747 |
#, fuzzy
|
748 |
msgid ""
|
749 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
@@ -751,16 +730,16 @@ msgstr ""
|
|
751 |
"¡Asegúrese de que las imágenes de banner no se están utilizando en los "
|
752 |
"anuncios cuando las elimine!"
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
#, fuzzy
|
756 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
757 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
758 |
|
759 |
-
#: adrotate.php:
|
760 |
msgid "AdRotate Settings"
|
761 |
msgstr "Ajustes AdRotate"
|
762 |
|
763 |
-
#: adrotate.php:
|
764 |
msgid "Update Options"
|
765 |
msgstr "Actualizar Opciones"
|
766 |
|
@@ -816,22 +795,15 @@ msgid ""
|
|
816 |
"forum. Get a solution (usually) within a day."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
820 |
msgid "AdRotate is brought to you by"
|
821 |
msgstr "AdRotate es ofrecido por"
|
822 |
|
823 |
-
#: dashboard/adrotatepro.php:
|
824 |
-
msgid ""
|
825 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
826 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
827 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#: dashboard/adrotatepro.php:81
|
831 |
msgid "Schedule all campaigns with ease"
|
832 |
msgstr "Programe todas las campañas con facilidad"
|
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 +811,11 @@ msgid ""
|
|
839 |
"much more easy. You can set one or many schedules for adverts."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: dashboard/adrotatepro.php:
|
843 |
msgid "Avoid adblockers"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: dashboard/adrotatepro.php:
|
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 "
|
@@ -851,11 +823,11 @@ msgid ""
|
|
851 |
"adverts smartly so these features reach their full potential!"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: dashboard/adrotatepro.php:
|
855 |
msgid "Stay up-to-date with notifications"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: dashboard/adrotatepro.php:
|
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,89 +836,89 @@ msgid ""
|
|
864 |
"miss an expiration date again."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: dashboard/adrotatepro.php:
|
868 |
-
#: dashboard/info.php:
|
869 |
msgid "Buy AdRotate Professional"
|
870 |
msgstr "Comprar AdRotate Profesional"
|
871 |
|
872 |
-
#: dashboard/adrotatepro.php:
|
873 |
msgid "Single License"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: dashboard/adrotatepro.php:
|
877 |
msgid "For one WordPress installation."
|
878 |
msgstr "Para una instalación de WordPress."
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
-
#: dashboard/info.php:
|
882 |
msgid "Duo License"
|
883 |
msgstr "Duo Licencia"
|
884 |
|
885 |
-
#: dashboard/adrotatepro.php:
|
886 |
msgid "For two WordPress installations."
|
887 |
msgstr "Para dos instalaciónes de WordPress."
|
888 |
|
889 |
-
#: dashboard/adrotatepro.php:
|
890 |
-
#: dashboard/info.php:
|
891 |
msgid "Multi License"
|
892 |
msgstr "Multi Licencia"
|
893 |
|
894 |
-
#: dashboard/adrotatepro.php:
|
895 |
msgid " For up to five WordPress installations."
|
896 |
msgstr "Para un máximo de cinco instalaciones de WordPress."
|
897 |
|
898 |
-
#: dashboard/adrotatepro.php:
|
899 |
-
#: dashboard/info.php:
|
900 |
msgid "Developer License"
|
901 |
msgstr "Developer Licencia"
|
902 |
|
903 |
-
#: dashboard/adrotatepro.php:
|
904 |
msgid "Unlimited WordPress installations and/or networks."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: dashboard/adrotatepro.php:
|
908 |
-
#: dashboard/info.php:
|
909 |
msgid "Compare licenses"
|
910 |
msgstr "Comparar licencias"
|
911 |
|
912 |
-
#: dashboard/adrotatepro.php:
|
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:
|
917 |
msgid "All Licenses"
|
918 |
msgstr "Todas las licencias"
|
919 |
|
920 |
-
#: dashboard/adrotatepro.php:
|
921 |
msgid "Lifetime License"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: dashboard/adrotatepro.php:
|
925 |
msgid "Single installation."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: dashboard/adrotatepro.php:
|
929 |
msgid "Up to 2 installations."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: dashboard/adrotatepro.php:
|
933 |
msgid "Up to 10 installations."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: dashboard/adrotatepro.php:
|
937 |
msgid "Up to 25 installations or multisite networks."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: dashboard/adrotatepro.php:
|
941 |
msgid ""
|
942 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: dashboard/adrotatepro.php:
|
946 |
msgid "Not sure which license is for you?"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: dashboard/adrotatepro.php:
|
950 |
msgid "Compare Licenses"
|
951 |
msgstr ""
|
952 |
|
@@ -962,7 +934,8 @@ msgstr "Su configuración"
|
|
962 |
msgid "Adverts that need you"
|
963 |
msgstr "Estos Anuncios"
|
964 |
|
965 |
-
#: dashboard/info.php:37
|
|
|
966 |
msgid "Adverts"
|
967 |
msgstr "Anuncios"
|
968 |
|
@@ -984,19 +957,22 @@ msgstr "Apoye a AdRotate"
|
|
984 |
|
985 |
#: dashboard/info.php:55
|
986 |
msgid ""
|
987 |
-
"
|
988 |
-
"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: dashboard/info.php:81
|
992 |
-
msgid "AdRotate News and Developer Blog"
|
993 |
-
msgstr "Noticias y Blog del Desarrollador de AdRotate "
|
994 |
-
|
995 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
996 |
msgid "Get more features with AdRotate Pro"
|
997 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
998 |
|
999 |
-
#: dashboard/info.php:
|
1000 |
msgid ""
|
1001 |
"Benefit from extra features to reinforce your income with advertising "
|
1002 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
@@ -1007,21 +983,25 @@ msgstr ""
|
|
1007 |
"las potentes herramientas que AdRotate Pro le ofrece, además de las "
|
1008 |
"funcionalidades más que fiables incluidas en la versión gratuita."
|
1009 |
|
1010 |
-
#: dashboard/info.php:
|
1011 |
msgid "Want to know more about"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: dashboard/info.php:
|
1015 |
msgid "Visit the"
|
1016 |
msgstr "Visite la"
|
1017 |
|
1018 |
-
#: dashboard/info.php:
|
1019 |
msgid "website"
|
1020 |
msgstr "página web"
|
1021 |
|
|
|
|
|
|
|
|
|
1022 |
#: dashboard/publisher/adverts-disabled.php:15
|
1023 |
-
msgid "Disabled
|
1024 |
-
msgstr "
|
1025 |
|
1026 |
#: dashboard/publisher/adverts-disabled.php:21
|
1027 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1056,17 +1036,21 @@ msgstr "Mostrado"
|
|
1056 |
|
1057 |
#: dashboard/publisher/adverts-disabled.php:39
|
1058 |
#: dashboard/publisher/adverts-main.php:46
|
1059 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1060 |
#: dashboard/publisher/groups-edit.php:334
|
1061 |
#: dashboard/publisher/groups-main.php:38
|
1062 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1063 |
msgid "Clicks"
|
1064 |
msgstr "Clics"
|
1065 |
|
1066 |
#: dashboard/publisher/adverts-disabled.php:40
|
1067 |
#: dashboard/publisher/adverts-main.php:48
|
1068 |
-
#: dashboard/publisher/adverts-report.php:
|
1069 |
-
#: dashboard/publisher/
|
|
|
|
|
1070 |
msgid "CTR"
|
1071 |
msgstr "CTR"
|
1072 |
|
@@ -1440,8 +1424,8 @@ msgid ""
|
|
1440 |
msgstr ""
|
1441 |
|
1442 |
#: dashboard/publisher/adverts-edit.php:312
|
1443 |
-
#: dashboard/publisher/adverts-report.php:
|
1444 |
-
#: dashboard/publisher/groups-report.php:
|
1445 |
msgid "Note:"
|
1446 |
msgstr "Nota:"
|
1447 |
|
@@ -1566,8 +1550,8 @@ msgid "Mode"
|
|
1566 |
msgstr "Modalidad"
|
1567 |
|
1568 |
#: dashboard/publisher/adverts-error.php:12
|
1569 |
-
msgid "
|
1570 |
-
msgstr "
|
1571 |
|
1572 |
#: dashboard/publisher/adverts-error.php:20
|
1573 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1605,8 +1589,8 @@ msgid "Configuration errors."
|
|
1605 |
msgstr "Errores de configuración."
|
1606 |
|
1607 |
#: dashboard/publisher/adverts-main.php:12
|
1608 |
-
msgid "Active
|
1609 |
-
msgstr "
|
1610 |
|
1611 |
#: dashboard/publisher/adverts-main.php:24
|
1612 |
#, fuzzy
|
@@ -1626,35 +1610,37 @@ msgid "Today"
|
|
1626 |
msgstr "Hoy"
|
1627 |
|
1628 |
#: dashboard/publisher/adverts-main.php:109
|
1629 |
-
msgid "No
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
-
#: dashboard/publisher/adverts-report.php:
|
1633 |
msgid "Statistics for advert"
|
1634 |
msgstr "Estadísticas del anuncio"
|
1635 |
|
1636 |
-
#: dashboard/publisher/adverts-report.php:
|
1637 |
-
#: dashboard/publisher/
|
|
|
|
|
1638 |
msgid "Impressions"
|
1639 |
msgstr "Impresiones"
|
1640 |
|
1641 |
-
#: dashboard/publisher/adverts-report.php:
|
1642 |
-
#: dashboard/publisher/groups-report.php:
|
1643 |
msgid "Impressions today"
|
1644 |
msgstr "Impresiones hoy"
|
1645 |
|
1646 |
-
#: dashboard/publisher/adverts-report.php:
|
1647 |
-
#: dashboard/publisher/groups-report.php:
|
1648 |
msgid "Clicks today"
|
1649 |
msgstr "Clics hoy"
|
1650 |
|
1651 |
-
#: dashboard/publisher/adverts-report.php:
|
1652 |
-
#: dashboard/publisher/groups-report.php:
|
1653 |
msgid "Monthly overview of clicks and impressions"
|
1654 |
msgstr "Resumen mensual de clics e impresiones"
|
1655 |
|
1656 |
-
#: dashboard/publisher/adverts-report.php:
|
1657 |
-
#: dashboard/publisher/groups-report.php:
|
1658 |
msgid ""
|
1659 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1660 |
"counted by other parties."
|
@@ -1679,8 +1665,8 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1679 |
msgstr "Modo Dinámico - Mostrar un anuncio diferente cada pocos segundos"
|
1680 |
|
1681 |
#: dashboard/publisher/groups-edit.php:66
|
1682 |
-
msgid "Block Mode - Show a block of
|
1683 |
-
msgstr "
|
1684 |
|
1685 |
#: dashboard/publisher/groups-edit.php:70
|
1686 |
#, fuzzy
|
@@ -1732,13 +1718,10 @@ msgid "pixel(s) high."
|
|
1732 |
msgstr "alto pixel(s)"
|
1733 |
|
1734 |
#: dashboard/publisher/groups-edit.php:104
|
1735 |
-
#, fuzzy
|
1736 |
msgid ""
|
1737 |
-
"Define the maximum size of the
|
1738 |
"recommended). Default: 125/125."
|
1739 |
msgstr ""
|
1740 |
-
"Definir el tamaño máximo de los anuncios en píxeles menos el del margen. El "
|
1741 |
-
"tamaño puede ser 'auto' (No recomendado). Predeterminado: 125/125."
|
1742 |
|
1743 |
#: dashboard/publisher/groups-edit.php:108
|
1744 |
msgid "Automated refresh"
|
@@ -1762,8 +1745,8 @@ msgstr ""
|
|
1762 |
#: dashboard/publisher/groups-edit.php:141
|
1763 |
#: dashboard/publisher/groups-edit.php:288
|
1764 |
msgid ""
|
1765 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1766 |
-
"\" and enter ID"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1985,16 +1968,16 @@ msgid "Visible until"
|
|
1985 |
msgstr "Visible hasta"
|
1986 |
|
1987 |
#: dashboard/publisher/groups-edit.php:379
|
1988 |
-
msgid "No
|
1989 |
-
msgstr "
|
1990 |
|
1991 |
#: dashboard/publisher/groups-main.php:21
|
1992 |
msgid "Delete Group"
|
1993 |
msgstr "Eliminar Grupo"
|
1994 |
|
1995 |
#: dashboard/publisher/groups-main.php:22
|
1996 |
-
msgid "Delete Group including
|
1997 |
-
msgstr "
|
1998 |
|
1999 |
#: dashboard/publisher/groups-main.php:24
|
2000 |
msgid "You are about to delete a group"
|
@@ -2013,7 +1996,7 @@ msgstr "OK para continuar, CANCELAR para detenerlo."
|
|
2013 |
msgid "No groups created!"
|
2014 |
msgstr "No hay grupos creados!"
|
2015 |
|
2016 |
-
#: dashboard/publisher/groups-report.php:
|
2017 |
msgid "Statistics for group"
|
2018 |
msgstr "Estadisticas por Grupo"
|
2019 |
|
@@ -2480,15 +2463,27 @@ msgid "Unknown"
|
|
2480 |
msgstr ""
|
2481 |
|
2482 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2483 |
#, fuzzy
|
2484 |
msgid "Ad evaluation next run:"
|
2485 |
msgstr "Evaluación de Anuncios en la siguiente ejecución:"
|
2486 |
|
2487 |
-
#: dashboard/settings/maintenance.php:
|
2488 |
msgid "Not scheduled!"
|
2489 |
msgstr "No Programada!"
|
2490 |
|
2491 |
-
#: dashboard/settings/maintenance.php:
|
2492 |
msgid "Clean Trackerdata next run:"
|
2493 |
msgstr "Ultima ejecución de la limpieza de la base de datos:"
|
2494 |
|
@@ -2610,35 +2605,19 @@ msgid ""
|
|
2610 |
msgstr ""
|
2611 |
|
2612 |
#: dashboard/settings/notifications.php:31
|
2613 |
-
msgid "Dashboard Notifications"
|
2614 |
-
msgstr "Notificaciones en el Escritorio"
|
2615 |
-
|
2616 |
-
#: dashboard/settings/notifications.php:32
|
2617 |
-
msgid "These show to every administrator who can edit adverts."
|
2618 |
-
msgstr ""
|
2619 |
-
|
2620 |
-
#: dashboard/settings/notifications.php:35
|
2621 |
-
msgid "Notification banners"
|
2622 |
-
msgstr ""
|
2623 |
-
|
2624 |
-
#: dashboard/settings/notifications.php:36
|
2625 |
-
msgid "Disable dashboard notifications."
|
2626 |
-
msgstr ""
|
2627 |
-
|
2628 |
-
#: dashboard/settings/notifications.php:40
|
2629 |
msgid "Email Notifications"
|
2630 |
msgstr "Notificaciones por correo electrónico"
|
2631 |
|
2632 |
-
#: dashboard/settings/notifications.php:
|
2633 |
msgid "Set up who gets notification emails."
|
2634 |
msgstr "Establecer lo que se recibe en los mensajes de notificación."
|
2635 |
|
2636 |
-
#: dashboard/settings/notifications.php:
|
2637 |
-
#: dashboard/settings/notifications.php:
|
2638 |
msgid "Publishers"
|
2639 |
msgstr "Editores"
|
2640 |
|
2641 |
-
#: dashboard/settings/notifications.php:
|
2642 |
msgid ""
|
2643 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2644 |
"list to a minimum!"
|
@@ -2646,7 +2625,7 @@ msgstr ""
|
|
2646 |
"Una lista de direcciones de correo electrónico separada por comas. Un máximo "
|
2647 |
"de 5 direcciones. Mantenga esta lista al mínimo!"
|
2648 |
|
2649 |
-
#: dashboard/settings/notifications.php:
|
2650 |
msgid ""
|
2651 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2652 |
"email notifications will be send."
|
@@ -2654,11 +2633,11 @@ msgstr ""
|
|
2654 |
"Los mensajes se envían cuando sea necesario una vez cada 24 horas. Si este "
|
2655 |
"campo está vacío, no será envíada ninguna notificación de correo electrónico."
|
2656 |
|
2657 |
-
#: dashboard/settings/notifications.php:
|
2658 |
msgid "Advertisers"
|
2659 |
msgstr "Anunciantes"
|
2660 |
|
2661 |
-
#: dashboard/settings/notifications.php:
|
2662 |
msgid ""
|
2663 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2664 |
"This field may not be empty!"
|
@@ -2666,11 +2645,11 @@ msgstr ""
|
|
2666 |
"¿Quién recibe correo electrónico de los anunciantes. Un máximo de 2 "
|
2667 |
"direcciones separadas por comas. Este campo no puede estar vacío!"
|
2668 |
|
2669 |
-
#: dashboard/settings/notifications.php:
|
2670 |
msgid "Push Notifications"
|
2671 |
msgstr "Notificaciones Push"
|
2672 |
|
2673 |
-
#: dashboard/settings/notifications.php:
|
2674 |
msgid ""
|
2675 |
"Receive information about what is happening with your AdRotate setup on your "
|
2676 |
"smartphone via Pushover."
|
@@ -2678,28 +2657,28 @@ msgstr ""
|
|
2678 |
"Recibir información acerca de lo que está sucediendo con su configuración "
|
2679 |
"AdRotate en su smartphone a través de Pushover."
|
2680 |
|
2681 |
-
#: dashboard/settings/notifications.php:
|
2682 |
msgid "When you are running out of Geo Targeting Lookups."
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: dashboard/settings/notifications.php:
|
2686 |
msgid "Daily digest of any advert status other than normal."
|
2687 |
msgstr "Resumen diario de cualquier estado de anuncio que no sea normal."
|
2688 |
|
2689 |
-
#: dashboard/settings/notifications.php:
|
2690 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2691 |
msgstr ""
|
2692 |
"Cualquier anunciante puede guardar un anuncio en su cola de moderación."
|
2693 |
|
2694 |
-
#: dashboard/settings/notifications.php:
|
2695 |
msgid "A moderator approved an advert from the moderation queue."
|
2696 |
msgstr "Un moderador aprobó un anuncio de la cola de moderación."
|
2697 |
|
2698 |
-
#: dashboard/settings/notifications.php:
|
2699 |
msgid "A moderator rejected an advert from the moderation queue."
|
2700 |
msgstr "Un moderador rechazó un anuncio de la cola de moderación."
|
2701 |
|
2702 |
-
#: dashboard/settings/notifications.php:
|
2703 |
msgid ""
|
2704 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2705 |
"you may get a lot of messages!"
|
@@ -2707,32 +2686,32 @@ msgstr ""
|
|
2707 |
"Si tiene una gran cantidad de actividad con muchos anunciantes que agregan o "
|
2708 |
"cambian los anuncios usted puede recibir una gran cantidad de mensajes!"
|
2709 |
|
2710 |
-
#: dashboard/settings/notifications.php:
|
2711 |
msgid "User Key"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: dashboard/settings/notifications.php:
|
2715 |
msgid "Get your user token"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: dashboard/settings/notifications.php:
|
2719 |
-
#: dashboard/settings/notifications.php:
|
2720 |
msgid "here"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: dashboard/settings/notifications.php:
|
2724 |
msgid "Api Token"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: dashboard/settings/notifications.php:
|
2728 |
msgid "Create your"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: dashboard/settings/notifications.php:
|
2732 |
msgid "App"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: dashboard/settings/notifications.php:
|
2736 |
msgid "and get your API token"
|
2737 |
msgstr ""
|
2738 |
|
@@ -2889,6 +2868,83 @@ msgid ""
|
|
2889 |
msgstr ""
|
2890 |
"Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
|
2891 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2892 |
#, fuzzy
|
2893 |
#~ msgid "AdRotate Page"
|
2894 |
#~ msgstr "AdRotate Pro"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:58+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:58+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:844
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
+
#: adrotate-functions.php:847
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
+
#: adrotate-functions.php:896
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:900
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:904
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Anuncio(s) eliminado"
|
39 |
|
40 |
+
#: adrotate-functions.php:908
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Grupo borrado"
|
43 |
|
44 |
+
#: adrotate-functions.php:912
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Estadisticas del Anuncio(s) restablecidas"
|
47 |
|
48 |
+
#: adrotate-functions.php:916
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Anuncio(s) renovado"
|
51 |
|
52 |
+
#: adrotate-functions.php:920
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Anuncio(s) desactivado"
|
55 |
|
56 |
+
#: adrotate-functions.php:924
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Anuncio(s) activado"
|
59 |
|
60 |
+
#: adrotate-functions.php:928
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
63 |
|
64 |
+
#: adrotate-functions.php:932
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "Exportación Creada"
|
68 |
|
69 |
+
#: adrotate-functions.php:937
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Ajustes guardados"
|
72 |
|
73 |
+
#: adrotate-functions.php:941
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Base de Datos optimizada"
|
76 |
|
77 |
+
#: adrotate-functions.php:945
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Base de Datos reparada"
|
80 |
|
81 |
+
#: adrotate-functions.php:949
|
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:953
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "Se han eliminado los registros vacios de la base de datos"
|
88 |
|
89 |
+
#: adrotate-functions.php:958
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "Acción prohibida"
|
92 |
|
93 |
+
#: adrotate-functions.php:962
|
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:966
|
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:970
|
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:974
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: adrotate-functions.php:978
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: adrotate-functions.php:982
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: adrotate-manage-publisher.php:702
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: adrotate-output.php:607
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr "¡Oh, no! Algo salió mal!"
|
126 |
|
127 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
144 |
msgid "Contact support if the issue persists:"
|
145 |
msgstr "Si el problema persiste, contacte con el soporte:"
|
146 |
|
147 |
+
#: adrotate-output.php:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
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:651
|
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:656
|
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:662
|
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:662
|
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:668
|
196 |
msgid "An unknown error occured."
|
197 |
msgstr "Ha ocurrido un error desconocido."
|
198 |
|
199 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
200 |
+
msgid "Check adverts"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: adrotate-output.php:698
|
204 |
+
msgid ""
|
205 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
206 |
+
"site!"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: adrotate-output.php:701
|
210 |
+
msgid ""
|
211 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
212 |
+
"not set."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: adrotate-output.php:706
|
216 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
220 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
221 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
222 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
223 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
224 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
225 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
#: dashboard/settings/geotargeting.php:26
|
227 |
#, fuzzy
|
228 |
msgid "Buy now"
|
229 |
msgstr "Comprar"
|
230 |
|
231 |
+
#: adrotate-output.php:747
|
232 |
msgid ""
|
233 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
234 |
"to the <strong>PRO</strong> version"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:747
|
238 |
#, php-format
|
239 |
msgid ""
|
240 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: adrotate-output.php:747
|
244 |
msgid "Thank you for your purchase!"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: adrotate-output.php:791
|
248 |
msgid ""
|
249 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
250 |
"this menu. Check out the"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:791
|
254 |
msgid "manuals"
|
255 |
msgstr "manuales"
|
256 |
|
257 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
258 |
msgid "and"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:791
|
262 |
msgid "forums"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:824
|
266 |
#, fuzzy
|
267 |
msgid "Useful Links"
|
268 |
msgstr "Enlaces de interés"
|
269 |
|
270 |
+
#: adrotate-output.php:825
|
271 |
msgid "Useful links to learn more about AdRotate"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: adrotate-output.php:827
|
275 |
msgid "AdRotate website"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: adrotate-output.php:828
|
279 |
#, fuzzy
|
280 |
msgid "Getting Started With AdRotate"
|
281 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
282 |
|
283 |
+
#: adrotate-output.php:829
|
284 |
#, fuzzy
|
285 |
msgid "AdRotate manuals"
|
286 |
msgstr "Información de AdRotate"
|
287 |
|
288 |
+
#: adrotate-output.php:830
|
289 |
#, fuzzy
|
290 |
msgid "AdRotate Support Forum"
|
291 |
msgstr "Tienda AdRotate"
|
292 |
|
293 |
+
#: adrotate-output.php:856
|
294 |
#, fuzzy
|
295 |
msgid "Help AdRotate Grow"
|
296 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
297 |
|
298 |
+
#: adrotate-output.php:857
|
299 |
+
msgid "Follow Arnan on Facebook"
|
300 |
+
msgstr ""
|
301 |
|
302 |
+
#: adrotate-output.php:864
|
303 |
msgid ""
|
304 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
305 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: adrotate-output.php:864
|
309 |
msgid "If you find AdRotate useful please leave your honest"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: adrotate-output.php:864
|
313 |
msgid "rating"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: adrotate-output.php:864
|
317 |
#, fuzzy
|
318 |
msgid "review"
|
319 |
msgstr "Revise el anuncio aquí:"
|
320 |
|
321 |
+
#: adrotate-output.php:864
|
322 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:903
|
326 |
msgid "Available in AdRotate Pro"
|
327 |
msgstr "Disponible en AdRotate Pro"
|
328 |
|
329 |
+
#: adrotate-output.php:903
|
330 |
msgid "More information..."
|
331 |
msgstr "Más información..."
|
332 |
|
333 |
+
#: adrotate-output.php:904
|
334 |
msgid "This feature is available in AdRotate Pro"
|
335 |
msgstr "Esta función está disponible en AdRotate Pro"
|
336 |
|
337 |
+
#: adrotate-output.php:904
|
338 |
msgid "Learn more"
|
339 |
msgstr "Aprender más"
|
340 |
|
414 |
msgid "No data to show!"
|
415 |
msgstr "No hay datos para mostrar!"
|
416 |
|
417 |
+
#: adrotate-widget.php:116
|
418 |
msgid "Title (optional):"
|
419 |
msgstr "Título (opcional):"
|
420 |
|
421 |
+
#: adrotate-widget.php:119
|
422 |
msgid "HTML will be stripped out."
|
423 |
msgstr "El HTML será eliminado"
|
424 |
|
425 |
+
#: adrotate-widget.php:122
|
426 |
msgid "Description (optional):"
|
427 |
msgstr "Descripción (opcional):"
|
428 |
|
429 |
+
#: adrotate-widget.php:125
|
430 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
431 |
msgstr ""
|
432 |
"¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
|
433 |
|
434 |
+
#: adrotate-widget.php:128
|
435 |
msgid "Type:"
|
436 |
msgstr "Tipo:"
|
437 |
|
438 |
+
#: adrotate-widget.php:130
|
439 |
+
msgid "Advert - Use Advert ID"
|
440 |
+
msgstr ""
|
441 |
|
442 |
+
#: adrotate-widget.php:131
|
443 |
+
msgid "Group - Use group ID"
|
444 |
+
msgstr ""
|
445 |
|
446 |
+
#: adrotate-widget.php:134
|
447 |
msgid "Choose what you want to use this widget for"
|
448 |
msgstr "Elija lo que desea utilizar en este widget para"
|
449 |
|
450 |
+
#: adrotate-widget.php:137
|
451 |
msgid "ID:"
|
452 |
msgstr "ID:"
|
453 |
|
454 |
+
#: adrotate-widget.php:140
|
455 |
msgid "Fill in the ID of the type you want to display!"
|
456 |
msgstr "Rellene con el ID del tipo que desea mostrar!"
|
457 |
|
458 |
+
#: adrotate.php:105
|
459 |
msgid "General Info"
|
460 |
msgstr "Información General"
|
461 |
|
462 |
+
#: adrotate.php:106
|
463 |
msgid "AdRotate Pro"
|
464 |
msgstr "AdRotate Pro"
|
465 |
|
466 |
+
#: adrotate.php:107
|
467 |
+
msgid "Manage Adverts"
|
468 |
+
msgstr ""
|
469 |
|
470 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
471 |
msgid "Manage Groups"
|
472 |
msgstr "Gestionar Grupos"
|
473 |
|
474 |
+
#: adrotate.php:109 adrotate.php:407
|
475 |
#, fuzzy
|
476 |
msgid "Manage Schedules"
|
477 |
msgstr "Gestionar Programas"
|
478 |
|
479 |
+
#: adrotate.php:110
|
480 |
#, fuzzy
|
481 |
msgid "Manage Media"
|
482 |
msgstr "Gestionar Medios"
|
483 |
|
484 |
+
#: adrotate.php:111
|
485 |
msgid "Settings"
|
486 |
msgstr "Ajustes"
|
487 |
|
488 |
+
#: adrotate.php:134
|
489 |
msgid "AdRotate Info"
|
490 |
msgstr "Información de AdRotate"
|
491 |
|
492 |
+
#: adrotate.php:155
|
493 |
msgid "AdRotate Professional"
|
494 |
msgstr "AdRotate Profesional"
|
495 |
|
496 |
+
#: adrotate.php:198
|
497 |
+
msgid "Advert Management"
|
498 |
+
msgstr ""
|
499 |
|
500 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
501 |
msgid "Manage"
|
502 |
msgstr "Gestionar"
|
503 |
|
504 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
505 |
msgid "Add New"
|
506 |
msgstr "Añadir Nuevo"
|
507 |
|
508 |
+
#: adrotate.php:336
|
509 |
msgid "Group Management"
|
510 |
msgstr "Administración de Grupos"
|
511 |
|
512 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
513 |
#: dashboard/publisher/groups-main.php:70
|
514 |
msgid "Report"
|
515 |
msgstr "Informe"
|
516 |
|
517 |
+
#: adrotate.php:398
|
518 |
#, fuzzy
|
519 |
msgid "Schedule Management available in AdRotate Pro"
|
520 |
msgstr "Disponible en AdRotate Pro"
|
521 |
|
522 |
+
#: adrotate.php:408
|
523 |
msgid ""
|
524 |
"Schedule management and multiple schedules per advert is available in "
|
525 |
"AdRotate Pro."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
529 |
#: dashboard/publisher/adverts-main.php:114
|
530 |
#: dashboard/publisher/groups-edit.php:75
|
531 |
#: dashboard/publisher/groups-main.php:89
|
533 |
msgid "More information"
|
534 |
msgstr "Más información..."
|
535 |
|
536 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
537 |
#: dashboard/publisher/adverts-error.php:19
|
538 |
#: dashboard/publisher/adverts-main.php:20
|
539 |
#: dashboard/publisher/groups-main.php:20
|
540 |
msgid "Bulk Actions"
|
541 |
msgstr "Acciones en Lote"
|
542 |
|
543 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
544 |
#: dashboard/publisher/adverts-error.php:29
|
545 |
#: dashboard/publisher/adverts-main.php:30
|
546 |
#: dashboard/publisher/groups-main.php:24
|
547 |
msgid "Go"
|
548 |
msgstr "Aplicar"
|
549 |
|
550 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
551 |
#: dashboard/publisher/adverts-error.php:39
|
552 |
#: dashboard/publisher/adverts-main.php:39
|
553 |
#: dashboard/publisher/groups-edit.php:51
|
555 |
msgid "ID"
|
556 |
msgstr "ID"
|
557 |
|
558 |
+
#: adrotate.php:426
|
559 |
#, fuzzy
|
560 |
msgid "Start"
|
561 |
msgstr "Iniciar"
|
562 |
|
563 |
+
#: adrotate.php:426
|
564 |
#, fuzzy
|
565 |
msgid "End"
|
566 |
msgstr "Finalizar"
|
567 |
|
568 |
+
#: adrotate.php:427
|
|
|
569 |
msgid "Ads"
|
570 |
msgstr "Anuncios"
|
571 |
|
572 |
+
#: adrotate.php:429
|
573 |
msgid "Max Impressions"
|
574 |
msgstr "Número máximo de Impresiones"
|
575 |
|
576 |
+
#: adrotate.php:430
|
577 |
msgid "Max Clicks"
|
578 |
msgstr "Número máximo de Clics"
|
579 |
|
580 |
+
#: adrotate.php:460
|
581 |
#, fuzzy
|
582 |
msgid "No schedules created yet!"
|
583 |
msgstr "Todavia no se han creado programas!"
|
584 |
|
585 |
+
#: adrotate.php:465
|
586 |
#, fuzzy
|
587 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
588 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
589 |
|
590 |
+
#: adrotate.php:465 adrotate.php:531
|
591 |
#, fuzzy
|
592 |
msgid "Upgrade today!"
|
593 |
msgstr "Hoy"
|
594 |
|
595 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
596 |
#: dashboard/publisher/groups-edit.php:387
|
597 |
msgid "Expires soon."
|
598 |
msgstr "Caduca pronto."
|
599 |
|
600 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
601 |
#: dashboard/publisher/groups-edit.php:388
|
602 |
msgid "Has expired."
|
603 |
msgstr "Ha expirado."
|
604 |
|
605 |
+
#: adrotate.php:493
|
606 |
#, fuzzy
|
607 |
msgid "Media Management available in AdRotate Pro"
|
608 |
msgstr "Esta función está disponible en AdRotate Pro"
|
609 |
|
610 |
+
#: adrotate.php:495
|
611 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: adrotate.php:495
|
615 |
msgid ""
|
616 |
"This is useful if you use responsive adverts with multiple images or have "
|
617 |
"HTML5 adverts containing multiple files."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: adrotate.php:495
|
621 |
#, fuzzy
|
622 |
msgid "Media uploading and management is available in AdRotate Pro."
|
623 |
msgstr "Esta función está disponible en AdRotate Pro"
|
624 |
|
625 |
+
#: adrotate.php:497
|
626 |
msgid "Upload new file"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: adrotate.php:498
|
630 |
msgid "Accepted files:"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: adrotate.php:498
|
634 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: adrotate.php:498
|
638 |
#, fuzzy
|
639 |
msgid "Maximum size is 512Kb."
|
640 |
msgstr "El tamaño máximo es 512Kb."
|
641 |
|
642 |
+
#: adrotate.php:498
|
643 |
#, fuzzy
|
644 |
msgid "Important:"
|
645 |
msgstr "Importante:"
|
646 |
|
647 |
+
#: adrotate.php:498
|
648 |
#, fuzzy
|
649 |
msgid ""
|
650 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
653 |
"Asegúrese de que en el nombre de su archivo no contiene espacios ni "
|
654 |
"caracteres especiales. Reemplace los espacios con un - o _."
|
655 |
|
656 |
+
#: adrotate.php:498
|
657 |
msgid ""
|
658 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
659 |
"file so it knows about the changed name. For example for the javascript file."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: adrotate.php:501
|
663 |
#, fuzzy
|
664 |
msgid ""
|
665 |
"For responsive adverts make sure the filename is in the following format; "
|
669 |
"siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
|
670 |
"de imágenes del mismo tamaño."
|
671 |
|
672 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
673 |
msgid ""
|
674 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
675 |
"filename instead of \".full\" for the various viewports."
|
678 |
"\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
|
679 |
"diferentes visores."
|
680 |
|
681 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
682 |
#: dashboard/publisher/groups-edit.php:320
|
683 |
msgid "Example:"
|
684 |
msgstr "Ejemplo:"
|
685 |
|
686 |
+
#: adrotate.php:503
|
687 |
#, fuzzy
|
688 |
msgid ""
|
689 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
692 |
"image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
|
693 |
"distintas ventanas gráficas. Se necesita jQuery."
|
694 |
|
695 |
+
#: adrotate.php:507
|
696 |
msgid "Upload file"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: adrotate.php:507
|
700 |
msgid "Click only once per file!"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: adrotate.php:510
|
704 |
msgid "Available files in"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
708 |
#: dashboard/publisher/groups-main.php:33
|
709 |
msgid "Name"
|
710 |
msgstr "Nombre"
|
711 |
|
712 |
+
#: adrotate.php:516
|
713 |
#, fuzzy
|
714 |
msgid "Actions"
|
715 |
msgstr "Acciones"
|
716 |
|
717 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
718 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
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 "Borrar"
|
724 |
|
725 |
+
#: adrotate.php:531
|
726 |
#, fuzzy
|
727 |
msgid ""
|
728 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
730 |
"¡Asegúrese de que las imágenes de banner no se están utilizando en los "
|
731 |
"anuncios cuando las elimine!"
|
732 |
|
733 |
+
#: adrotate.php:531
|
734 |
#, fuzzy
|
735 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
736 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
737 |
|
738 |
+
#: adrotate.php:560
|
739 |
msgid "AdRotate Settings"
|
740 |
msgstr "Ajustes AdRotate"
|
741 |
|
742 |
+
#: adrotate.php:631
|
743 |
msgid "Update Options"
|
744 |
msgstr "Actualizar Opciones"
|
745 |
|
795 |
"forum. Get a solution (usually) within a day."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
799 |
msgid "AdRotate is brought to you by"
|
800 |
msgstr "AdRotate es ofrecido por"
|
801 |
|
802 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
msgid "Schedule all campaigns with ease"
|
804 |
msgstr "Programe todas las campañas con facilidad"
|
805 |
|
806 |
+
#: dashboard/adrotatepro.php:77
|
807 |
msgid ""
|
808 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
809 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
811 |
"much more easy. You can set one or many schedules for adverts."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: dashboard/adrotatepro.php:81
|
815 |
msgid "Avoid adblockers"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: dashboard/adrotatepro.php:84
|
819 |
msgid ""
|
820 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
821 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
823 |
"adverts smartly so these features reach their full potential!"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: dashboard/adrotatepro.php:88
|
827 |
msgid "Stay up-to-date with notifications"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: dashboard/adrotatepro.php:91
|
831 |
msgid ""
|
832 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
833 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
836 |
"miss an expiration date again."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
840 |
+
#: dashboard/info.php:78
|
841 |
msgid "Buy AdRotate Professional"
|
842 |
msgstr "Comprar AdRotate Profesional"
|
843 |
|
844 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
845 |
msgid "Single License"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
849 |
msgid "For one WordPress installation."
|
850 |
msgstr "Para una instalación de WordPress."
|
851 |
|
852 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
853 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
854 |
msgid "Duo License"
|
855 |
msgstr "Duo Licencia"
|
856 |
|
857 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
858 |
msgid "For two WordPress installations."
|
859 |
msgstr "Para dos instalaciónes de WordPress."
|
860 |
|
861 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
862 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
863 |
msgid "Multi License"
|
864 |
msgstr "Multi Licencia"
|
865 |
|
866 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
867 |
msgid " For up to five WordPress installations."
|
868 |
msgstr "Para un máximo de cinco instalaciones de WordPress."
|
869 |
|
870 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
871 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
872 |
msgid "Developer License"
|
873 |
msgstr "Developer Licencia"
|
874 |
|
875 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
876 |
msgid "Unlimited WordPress installations and/or networks."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
880 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
881 |
msgid "Compare licenses"
|
882 |
msgstr "Comparar licencias"
|
883 |
|
884 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
885 |
msgid "Not sure which license is for you? Compare them..."
|
886 |
msgstr "No está seguro de que licencia es para usted? Comparelas..."
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
889 |
msgid "All Licenses"
|
890 |
msgstr "Todas las licencias"
|
891 |
|
892 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
893 |
msgid "Lifetime License"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
897 |
msgid "Single installation."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
901 |
msgid "Up to 2 installations."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
905 |
msgid "Up to 10 installations."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
909 |
msgid "Up to 25 installations or multisite networks."
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
913 |
msgid ""
|
914 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
918 |
msgid "Not sure which license is for you?"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
922 |
msgid "Compare Licenses"
|
923 |
msgstr ""
|
924 |
|
934 |
msgid "Adverts that need you"
|
935 |
msgstr "Estos Anuncios"
|
936 |
|
937 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
938 |
+
#: dashboard/publisher/groups-main.php:34
|
939 |
msgid "Adverts"
|
940 |
msgstr "Anuncios"
|
941 |
|
957 |
|
958 |
#: dashboard/info.php:55
|
959 |
msgid ""
|
960 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
961 |
+
"for updates about me and my plugins. Thank you!"
|
962 |
msgstr ""
|
963 |
|
|
|
|
|
|
|
|
|
964 |
#: dashboard/info.php:103
|
965 |
+
msgid ""
|
966 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
967 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
968 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: dashboard/info.php:113
|
972 |
msgid "Get more features with AdRotate Pro"
|
973 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
974 |
|
975 |
+
#: dashboard/info.php:116
|
976 |
msgid ""
|
977 |
"Benefit from extra features to reinforce your income with advertising "
|
978 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
983 |
"las potentes herramientas que AdRotate Pro le ofrece, además de las "
|
984 |
"funcionalidades más que fiables incluidas en la versión gratuita."
|
985 |
|
986 |
+
#: dashboard/info.php:116
|
987 |
msgid "Want to know more about"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: dashboard/info.php:116
|
991 |
msgid "Visit the"
|
992 |
msgstr "Visite la"
|
993 |
|
994 |
+
#: dashboard/info.php:116
|
995 |
msgid "website"
|
996 |
msgstr "página web"
|
997 |
|
998 |
+
#: dashboard/info.php:120
|
999 |
+
msgid "AdRotate News and Developer Blog"
|
1000 |
+
msgstr "Noticias y Blog del Desarrollador de AdRotate "
|
1001 |
+
|
1002 |
#: dashboard/publisher/adverts-disabled.php:15
|
1003 |
+
msgid "Disabled Adverts"
|
1004 |
+
msgstr ""
|
1005 |
|
1006 |
#: dashboard/publisher/adverts-disabled.php:21
|
1007 |
#: dashboard/publisher/adverts-edit.php:176
|
1036 |
|
1037 |
#: dashboard/publisher/adverts-disabled.php:39
|
1038 |
#: dashboard/publisher/adverts-main.php:46
|
1039 |
+
#: dashboard/publisher/adverts-report.php:36
|
1040 |
+
#: dashboard/publisher/adverts-report.php:57
|
1041 |
#: dashboard/publisher/groups-edit.php:334
|
1042 |
#: dashboard/publisher/groups-main.php:38
|
1043 |
+
#: dashboard/publisher/groups-report.php:37
|
1044 |
+
#: dashboard/publisher/groups-report.php:58
|
1045 |
msgid "Clicks"
|
1046 |
msgstr "Clics"
|
1047 |
|
1048 |
#: dashboard/publisher/adverts-disabled.php:40
|
1049 |
#: dashboard/publisher/adverts-main.php:48
|
1050 |
+
#: dashboard/publisher/adverts-report.php:39
|
1051 |
+
#: dashboard/publisher/adverts-report.php:58
|
1052 |
+
#: dashboard/publisher/groups-report.php:40
|
1053 |
+
#: dashboard/publisher/groups-report.php:59
|
1054 |
msgid "CTR"
|
1055 |
msgstr "CTR"
|
1056 |
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: dashboard/publisher/adverts-edit.php:312
|
1427 |
+
#: dashboard/publisher/adverts-report.php:64
|
1428 |
+
#: dashboard/publisher/groups-report.php:65
|
1429 |
msgid "Note:"
|
1430 |
msgstr "Nota:"
|
1431 |
|
1550 |
msgstr "Modalidad"
|
1551 |
|
1552 |
#: dashboard/publisher/adverts-error.php:12
|
1553 |
+
msgid "Adverts that need attention"
|
1554 |
+
msgstr ""
|
1555 |
|
1556 |
#: dashboard/publisher/adverts-error.php:20
|
1557 |
#: dashboard/publisher/adverts-main.php:21
|
1589 |
msgstr "Errores de configuración."
|
1590 |
|
1591 |
#: dashboard/publisher/adverts-main.php:12
|
1592 |
+
msgid "Active Adverts"
|
1593 |
+
msgstr ""
|
1594 |
|
1595 |
#: dashboard/publisher/adverts-main.php:24
|
1596 |
#, fuzzy
|
1610 |
msgstr "Hoy"
|
1611 |
|
1612 |
#: dashboard/publisher/adverts-main.php:109
|
1613 |
+
msgid "No adverts created yet!"
|
1614 |
+
msgstr ""
|
1615 |
|
1616 |
+
#: dashboard/publisher/adverts-report.php:30
|
1617 |
msgid "Statistics for advert"
|
1618 |
msgstr "Estadísticas del anuncio"
|
1619 |
|
1620 |
+
#: dashboard/publisher/adverts-report.php:35
|
1621 |
+
#: dashboard/publisher/adverts-report.php:56
|
1622 |
+
#: dashboard/publisher/groups-report.php:36
|
1623 |
+
#: dashboard/publisher/groups-report.php:57
|
1624 |
msgid "Impressions"
|
1625 |
msgstr "Impresiones"
|
1626 |
|
1627 |
+
#: dashboard/publisher/adverts-report.php:37
|
1628 |
+
#: dashboard/publisher/groups-report.php:38
|
1629 |
msgid "Impressions today"
|
1630 |
msgstr "Impresiones hoy"
|
1631 |
|
1632 |
+
#: dashboard/publisher/adverts-report.php:38
|
1633 |
+
#: dashboard/publisher/groups-report.php:39
|
1634 |
msgid "Clicks today"
|
1635 |
msgstr "Clics hoy"
|
1636 |
|
1637 |
+
#: dashboard/publisher/adverts-report.php:45
|
1638 |
+
#: dashboard/publisher/groups-report.php:46
|
1639 |
msgid "Monthly overview of clicks and impressions"
|
1640 |
msgstr "Resumen mensual de clics e impresiones"
|
1641 |
|
1642 |
+
#: dashboard/publisher/adverts-report.php:64
|
1643 |
+
#: dashboard/publisher/groups-report.php:65
|
1644 |
msgid ""
|
1645 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1646 |
"counted by other parties."
|
1665 |
msgstr "Modo Dinámico - Mostrar un anuncio diferente cada pocos segundos"
|
1666 |
|
1667 |
#: dashboard/publisher/groups-edit.php:66
|
1668 |
+
msgid "Block Mode - Show a block of adverts"
|
1669 |
+
msgstr ""
|
1670 |
|
1671 |
#: dashboard/publisher/groups-edit.php:70
|
1672 |
#, fuzzy
|
1718 |
msgstr "alto pixel(s)"
|
1719 |
|
1720 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1721 |
msgid ""
|
1722 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1723 |
"recommended). Default: 125/125."
|
1724 |
msgstr ""
|
|
|
|
|
1725 |
|
1726 |
#: dashboard/publisher/groups-edit.php:108
|
1727 |
msgid "Automated refresh"
|
1745 |
#: dashboard/publisher/groups-edit.php:141
|
1746 |
#: dashboard/publisher/groups-edit.php:288
|
1747 |
msgid ""
|
1748 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1749 |
+
"Adverts\" and enter ID"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
#: dashboard/publisher/groups-edit.php:153
|
1968 |
msgstr "Visible hasta"
|
1969 |
|
1970 |
#: dashboard/publisher/groups-edit.php:379
|
1971 |
+
msgid "No adverts created!"
|
1972 |
+
msgstr ""
|
1973 |
|
1974 |
#: dashboard/publisher/groups-main.php:21
|
1975 |
msgid "Delete Group"
|
1976 |
msgstr "Eliminar Grupo"
|
1977 |
|
1978 |
#: dashboard/publisher/groups-main.php:22
|
1979 |
+
msgid "Delete Group including adverts"
|
1980 |
+
msgstr ""
|
1981 |
|
1982 |
#: dashboard/publisher/groups-main.php:24
|
1983 |
msgid "You are about to delete a group"
|
1996 |
msgid "No groups created!"
|
1997 |
msgstr "No hay grupos creados!"
|
1998 |
|
1999 |
+
#: dashboard/publisher/groups-report.php:31
|
2000 |
msgid "Statistics for group"
|
2001 |
msgstr "Estadisticas por Grupo"
|
2002 |
|
2463 |
msgstr ""
|
2464 |
|
2465 |
#: dashboard/settings/maintenance.php:70
|
2466 |
+
msgid "Banners/assets Folder"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: dashboard/settings/maintenance.php:72
|
2470 |
+
msgid "Exists and appears writable"
|
2471 |
+
msgstr ""
|
2472 |
+
|
2473 |
+
#: dashboard/settings/maintenance.php:72
|
2474 |
+
msgid "Not writable or does not exist"
|
2475 |
+
msgstr ""
|
2476 |
+
|
2477 |
+
#: dashboard/settings/maintenance.php:76
|
2478 |
#, fuzzy
|
2479 |
msgid "Ad evaluation next run:"
|
2480 |
msgstr "Evaluación de Anuncios en la siguiente ejecución:"
|
2481 |
|
2482 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2483 |
msgid "Not scheduled!"
|
2484 |
msgstr "No Programada!"
|
2485 |
|
2486 |
+
#: dashboard/settings/maintenance.php:80
|
2487 |
msgid "Clean Trackerdata next run:"
|
2488 |
msgstr "Ultima ejecución de la limpieza de la base de datos:"
|
2489 |
|
2605 |
msgstr ""
|
2606 |
|
2607 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2608 |
msgid "Email Notifications"
|
2609 |
msgstr "Notificaciones por correo electrónico"
|
2610 |
|
2611 |
+
#: dashboard/settings/notifications.php:32
|
2612 |
msgid "Set up who gets notification emails."
|
2613 |
msgstr "Establecer lo que se recibe en los mensajes de notificación."
|
2614 |
|
2615 |
+
#: dashboard/settings/notifications.php:35
|
2616 |
+
#: dashboard/settings/notifications.php:55
|
2617 |
msgid "Publishers"
|
2618 |
msgstr "Editores"
|
2619 |
|
2620 |
+
#: dashboard/settings/notifications.php:38
|
2621 |
msgid ""
|
2622 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2623 |
"list to a minimum!"
|
2625 |
"Una lista de direcciones de correo electrónico separada por comas. Un máximo "
|
2626 |
"de 5 direcciones. Mantenga esta lista al mínimo!"
|
2627 |
|
2628 |
+
#: dashboard/settings/notifications.php:39
|
2629 |
msgid ""
|
2630 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2631 |
"email notifications will be send."
|
2633 |
"Los mensajes se envían cuando sea necesario una vez cada 24 horas. Si este "
|
2634 |
"campo está vacío, no será envíada ninguna notificación de correo electrónico."
|
2635 |
|
2636 |
+
#: dashboard/settings/notifications.php:43
|
2637 |
msgid "Advertisers"
|
2638 |
msgstr "Anunciantes"
|
2639 |
|
2640 |
+
#: dashboard/settings/notifications.php:46
|
2641 |
msgid ""
|
2642 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2643 |
"This field may not be empty!"
|
2645 |
"¿Quién recibe correo electrónico de los anunciantes. Un máximo de 2 "
|
2646 |
"direcciones separadas por comas. Este campo no puede estar vacío!"
|
2647 |
|
2648 |
+
#: dashboard/settings/notifications.php:51
|
2649 |
msgid "Push Notifications"
|
2650 |
msgstr "Notificaciones Push"
|
2651 |
|
2652 |
+
#: dashboard/settings/notifications.php:52
|
2653 |
msgid ""
|
2654 |
"Receive information about what is happening with your AdRotate setup on your "
|
2655 |
"smartphone via Pushover."
|
2657 |
"Recibir información acerca de lo que está sucediendo con su configuración "
|
2658 |
"AdRotate en su smartphone a través de Pushover."
|
2659 |
|
2660 |
+
#: dashboard/settings/notifications.php:57
|
2661 |
msgid "When you are running out of Geo Targeting Lookups."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: dashboard/settings/notifications.php:58
|
2665 |
msgid "Daily digest of any advert status other than normal."
|
2666 |
msgstr "Resumen diario de cualquier estado de anuncio que no sea normal."
|
2667 |
|
2668 |
+
#: dashboard/settings/notifications.php:59
|
2669 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2670 |
msgstr ""
|
2671 |
"Cualquier anunciante puede guardar un anuncio en su cola de moderación."
|
2672 |
|
2673 |
+
#: dashboard/settings/notifications.php:60
|
2674 |
msgid "A moderator approved an advert from the moderation queue."
|
2675 |
msgstr "Un moderador aprobó un anuncio de la cola de moderación."
|
2676 |
|
2677 |
+
#: dashboard/settings/notifications.php:61
|
2678 |
msgid "A moderator rejected an advert from the moderation queue."
|
2679 |
msgstr "Un moderador rechazó un anuncio de la cola de moderación."
|
2680 |
|
2681 |
+
#: dashboard/settings/notifications.php:61
|
2682 |
msgid ""
|
2683 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2684 |
"you may get a lot of messages!"
|
2686 |
"Si tiene una gran cantidad de actividad con muchos anunciantes que agregan o "
|
2687 |
"cambian los anuncios usted puede recibir una gran cantidad de mensajes!"
|
2688 |
|
2689 |
+
#: dashboard/settings/notifications.php:66
|
2690 |
msgid "User Key"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: dashboard/settings/notifications.php:68
|
2694 |
msgid "Get your user token"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: dashboard/settings/notifications.php:68
|
2698 |
+
#: dashboard/settings/notifications.php:74
|
2699 |
msgid "here"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: dashboard/settings/notifications.php:72
|
2703 |
msgid "Api Token"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: dashboard/settings/notifications.php:74
|
2707 |
msgid "Create your"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: dashboard/settings/notifications.php:74
|
2711 |
msgid "App"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: dashboard/settings/notifications.php:74
|
2715 |
msgid "and get your API token"
|
2716 |
msgstr ""
|
2717 |
|
2868 |
msgstr ""
|
2869 |
"Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
|
2870 |
|
2871 |
+
#~ msgid "active ad(s) expired."
|
2872 |
+
#~ msgstr "anuncio(s) activo(s) caducó."
|
2873 |
+
|
2874 |
+
#~ msgid "Take action now"
|
2875 |
+
#~ msgstr "Tomar medidas ahora"
|
2876 |
+
|
2877 |
+
#~ msgid "active ad(s) are about to expire."
|
2878 |
+
#~ msgstr "anuncio(s) activo(s) están a punto de caducar."
|
2879 |
+
|
2880 |
+
#~ msgid "Check it out"
|
2881 |
+
#~ msgstr "Compruébelo"
|
2882 |
+
|
2883 |
+
#~ msgid "active ad(s) with configuration errors."
|
2884 |
+
#~ msgstr "anuncio(s) activo(s) con errores de configuración."
|
2885 |
+
|
2886 |
+
#~ msgid "Solve this"
|
2887 |
+
#~ msgstr "Solucione este"
|
2888 |
+
|
2889 |
+
#~ msgid "ad(s) expired."
|
2890 |
+
#~ msgstr "anuncio(s) caducado."
|
2891 |
+
|
2892 |
+
#~ msgid "ad(s) are about to expire."
|
2893 |
+
#~ msgstr "anuncio(s) están a punto de caducar."
|
2894 |
+
|
2895 |
+
#~ msgid "ad(s) with configuration errors."
|
2896 |
+
#~ msgstr "anuncio(s) con errores de configuración."
|
2897 |
+
|
2898 |
+
#~ msgid "Fix this as soon as possible"
|
2899 |
+
#~ msgstr "Solucionar esto en cuanto sea posible"
|
2900 |
+
|
2901 |
+
#~ msgid "Brought to you by"
|
2902 |
+
#~ msgstr "Presentado por"
|
2903 |
+
|
2904 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2905 |
+
#~ msgstr "Anuncio Individual - Utilizar ID de Anuncio"
|
2906 |
+
|
2907 |
+
#~ msgid "Group of Ads - Use group ID"
|
2908 |
+
#~ msgstr "Grupo de Anuncios - Utilizar ID de grupo"
|
2909 |
+
|
2910 |
+
#~ msgid "Manage Ads"
|
2911 |
+
#~ msgstr "Gestionar Anuncios"
|
2912 |
+
|
2913 |
+
#~ msgid "Ad Management"
|
2914 |
+
#~ msgstr "Administración de Anuncios"
|
2915 |
+
|
2916 |
+
#~ msgid "Disabled Ads"
|
2917 |
+
#~ msgstr "Desactivar Anuncios"
|
2918 |
+
|
2919 |
+
#~ msgid "Ads that need immediate attention"
|
2920 |
+
#~ msgstr "Anuncios que requieren atención inmediata"
|
2921 |
+
|
2922 |
+
#~ msgid "Active Ads"
|
2923 |
+
#~ msgstr "Anuncios Activos"
|
2924 |
+
|
2925 |
+
#~ msgid "No ads created yet!"
|
2926 |
+
#~ msgstr "Todavia no se han creado anuncios!"
|
2927 |
+
|
2928 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2929 |
+
#~ msgstr "Modo Block - Mostrar un bloque de anuncios"
|
2930 |
+
|
2931 |
+
#, fuzzy
|
2932 |
+
#~ msgid ""
|
2933 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
2934 |
+
#~ "recommended). Default: 125/125."
|
2935 |
+
#~ msgstr ""
|
2936 |
+
#~ "Definir el tamaño máximo de los anuncios en píxeles menos el del margen. "
|
2937 |
+
#~ "El tamaño puede ser 'auto' (No recomendado). Predeterminado: 125/125."
|
2938 |
+
|
2939 |
+
#~ msgid "No ads created!"
|
2940 |
+
#~ msgstr "No hay anuncios creados!"
|
2941 |
+
|
2942 |
+
#~ msgid "Delete Group including ads"
|
2943 |
+
#~ msgstr "Eliminar Grupo incluyendo anuncios"
|
2944 |
+
|
2945 |
+
#~ msgid "Dashboard Notifications"
|
2946 |
+
#~ msgstr "Notificaciones en el Escritorio"
|
2947 |
+
|
2948 |
#, fuzzy
|
2949 |
#~ msgid "AdRotate Page"
|
2950 |
#~ msgstr "AdRotate Pro"
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
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"
|
@@ -17,116 +17,116 @@ msgstr ""
|
|
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,150 @@ 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 "
|
205 |
-
msgstr "
|
206 |
-
|
207 |
-
#: adrotate-output.php:
|
208 |
-
msgid "
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
msgstr "
|
218 |
-
|
219 |
-
#: adrotate-output.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
-
|
223 |
-
#: adrotate-output.php:
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
#:
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
#: adrotate-output.php:729
|
232 |
-
msgid "ad(s) are about to expire."
|
233 |
-
msgstr "publicité(s) sont sur le point d'expirer"
|
234 |
-
|
235 |
-
#: adrotate-output.php:729
|
236 |
-
msgid "ad(s) with configuration errors."
|
237 |
-
msgstr "publicité(s) avec des erreurs de configuration."
|
238 |
-
|
239 |
-
#: adrotate-output.php:729
|
240 |
-
msgid "Fix this as soon as possible"
|
241 |
-
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
242 |
-
|
243 |
-
#: adrotate-output.php:741 dashboard/adrotatepro.php:106
|
244 |
-
#: dashboard/adrotatepro.php:107 dashboard/adrotatepro.php:108
|
245 |
-
#: dashboard/adrotatepro.php:109 dashboard/adrotatepro.php:118
|
246 |
-
#: dashboard/adrotatepro.php:119 dashboard/adrotatepro.php:120
|
247 |
-
#: dashboard/adrotatepro.php:121 dashboard/info.php:114 dashboard/info.php:115
|
248 |
-
#: dashboard/info.php:116 dashboard/info.php:117 dashboard/info.php:126
|
249 |
-
#: dashboard/info.php:127 dashboard/info.php:128 dashboard/info.php:129
|
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 website"
|
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 "
|
319 |
-
msgstr "
|
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 |
|
@@ -433,141 +413,141 @@ msgstr "Prochain"
|
|
433 |
msgid "No data to show!"
|
434 |
msgstr "Aucune donnée à montrer!"
|
435 |
|
436 |
-
#: adrotate-widget.php:
|
437 |
msgid "Title (optional):"
|
438 |
msgstr "Titre (optionel) :"
|
439 |
|
440 |
-
#: adrotate-widget.php:
|
441 |
msgid "HTML will be stripped out."
|
442 |
msgstr "Le code HTML sera retiré."
|
443 |
|
444 |
-
#: adrotate-widget.php:
|
445 |
msgid "Description (optional):"
|
446 |
msgstr "Description (optionelle) :"
|
447 |
|
448 |
-
#: adrotate-widget.php:
|
449 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
450 |
msgstr ""
|
451 |
"Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
|
452 |
"dépouillé.)"
|
453 |
|
454 |
-
#: adrotate-widget.php:
|
455 |
msgid "Type:"
|
456 |
msgstr "Type :"
|
457 |
|
458 |
-
#: adrotate-widget.php:
|
459 |
-
msgid "
|
460 |
-
msgstr "
|
461 |
|
462 |
-
#: adrotate-widget.php:
|
463 |
-
msgid "Group
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: adrotate-widget.php:
|
467 |
msgid "Choose what you want to use this widget for"
|
468 |
msgstr "Choisissez le fonction de ce widget"
|
469 |
|
470 |
-
#: adrotate-widget.php:
|
471 |
msgid "ID:"
|
472 |
msgstr "ID :"
|
473 |
|
474 |
-
#: adrotate-widget.php:
|
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
|
488 |
-
msgstr "
|
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 "
|
518 |
-
msgstr "
|
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 +555,107 @@ 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 +666,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,12 +675,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:320
|
701 |
msgid "Example:"
|
702 |
msgstr "Exemple :"
|
703 |
|
704 |
-
#: adrotate.php:
|
705 |
#, fuzzy
|
706 |
msgid ""
|
707 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -710,51 +689,51 @@ msgstr ""
|
|
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:
|
714 |
msgid "Upload file"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: adrotate.php:
|
718 |
msgid "Click only once per file!"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: adrotate.php:
|
722 |
msgid "Available files in"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
#: dashboard/publisher/groups-main.php:33
|
727 |
msgid "Name"
|
728 |
msgstr "Nom"
|
729 |
|
730 |
-
#: adrotate.php:
|
731 |
#, fuzzy
|
732 |
msgid "Actions"
|
733 |
msgstr "Actions en vrac"
|
734 |
|
735 |
-
#: adrotate.php:
|
736 |
-
#: adrotate.php:
|
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:
|
744 |
msgid ""
|
745 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: adrotate.php:
|
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:
|
754 |
msgid "AdRotate Settings"
|
755 |
msgstr "Paramètres de AdRotate"
|
756 |
|
757 |
-
#: adrotate.php:
|
758 |
msgid "Update Options"
|
759 |
msgstr "Mettre à jour les options"
|
760 |
|
@@ -811,22 +790,15 @@ msgid ""
|
|
811 |
"forum. Get a solution (usually) within a day."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
815 |
msgid "AdRotate is brought to you by"
|
816 |
msgstr "AdRotate est offert par"
|
817 |
|
818 |
-
#: dashboard/adrotatepro.php:
|
819 |
-
msgid ""
|
820 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
821 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
822 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
#: dashboard/adrotatepro.php:81
|
826 |
msgid "Schedule all campaigns with ease"
|
827 |
msgstr "Planifier toutes vos campagnes en toute simplicité"
|
828 |
|
829 |
-
#: dashboard/adrotatepro.php:
|
830 |
msgid ""
|
831 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
832 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
@@ -834,11 +806,11 @@ msgid ""
|
|
834 |
"much more easy. You can set one or many schedules for adverts."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: dashboard/adrotatepro.php:
|
838 |
msgid "Avoid adblockers"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: dashboard/adrotatepro.php:
|
842 |
msgid ""
|
843 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
844 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
@@ -846,11 +818,11 @@ msgid ""
|
|
846 |
"adverts smartly so these features reach their full potential!"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: dashboard/adrotatepro.php:
|
850 |
msgid "Stay up-to-date with notifications"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: dashboard/adrotatepro.php:
|
854 |
msgid ""
|
855 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
856 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
@@ -859,90 +831,90 @@ msgid ""
|
|
859 |
"miss an expiration date again."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: dashboard/adrotatepro.php:
|
863 |
-
#: dashboard/info.php:
|
864 |
msgid "Buy AdRotate Professional"
|
865 |
msgstr "Achetez AdRotate Professionel"
|
866 |
|
867 |
-
#: dashboard/adrotatepro.php:
|
868 |
msgid "Single License"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: dashboard/adrotatepro.php:
|
872 |
msgid "For one WordPress installation."
|
873 |
msgstr "Pour une installation Wordpress."
|
874 |
|
875 |
-
#: dashboard/adrotatepro.php:
|
876 |
-
#: dashboard/info.php:
|
877 |
msgid "Duo License"
|
878 |
msgstr "Licence Duo"
|
879 |
|
880 |
-
#: dashboard/adrotatepro.php:
|
881 |
msgid "For two WordPress installations."
|
882 |
msgstr "Pour deux installations Wordpress."
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
-
#: dashboard/info.php:
|
886 |
msgid "Multi License"
|
887 |
msgstr "Licence Multiple"
|
888 |
|
889 |
-
#: dashboard/adrotatepro.php:
|
890 |
msgid " For up to five WordPress installations."
|
891 |
msgstr "Pour un max de cinq installation Wordpress."
|
892 |
|
893 |
-
#: dashboard/adrotatepro.php:
|
894 |
-
#: dashboard/info.php:
|
895 |
msgid "Developer License"
|
896 |
msgstr "Licence de Developpeur"
|
897 |
|
898 |
-
#: dashboard/adrotatepro.php:
|
899 |
msgid "Unlimited WordPress installations and/or networks."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: dashboard/adrotatepro.php:
|
903 |
-
#: dashboard/info.php:
|
904 |
msgid "Compare licenses"
|
905 |
msgstr "Comparer les licences"
|
906 |
|
907 |
-
#: dashboard/adrotatepro.php:
|
908 |
msgid "Not sure which license is for you? Compare them..."
|
909 |
msgstr ""
|
910 |
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
911 |
|
912 |
-
#: dashboard/adrotatepro.php:
|
913 |
msgid "All Licenses"
|
914 |
msgstr "Toutes les licences"
|
915 |
|
916 |
-
#: dashboard/adrotatepro.php:
|
917 |
msgid "Lifetime License"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: dashboard/adrotatepro.php:
|
921 |
msgid "Single installation."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: dashboard/adrotatepro.php:
|
925 |
msgid "Up to 2 installations."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: dashboard/adrotatepro.php:
|
929 |
msgid "Up to 10 installations."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: dashboard/adrotatepro.php:
|
933 |
msgid "Up to 25 installations or multisite networks."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: dashboard/adrotatepro.php:
|
937 |
msgid ""
|
938 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: dashboard/adrotatepro.php:
|
942 |
msgid "Not sure which license is for you?"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: dashboard/adrotatepro.php:
|
946 |
msgid "Compare Licenses"
|
947 |
msgstr ""
|
948 |
|
@@ -958,7 +930,8 @@ msgstr "Votre configuration"
|
|
958 |
msgid "Adverts that need you"
|
959 |
msgstr "Publicités qui ont besoin de votre attention"
|
960 |
|
961 |
-
#: dashboard/info.php:37
|
|
|
962 |
msgid "Adverts"
|
963 |
msgstr "Publicités"
|
964 |
|
@@ -980,19 +953,22 @@ msgstr "Soutenez AdRotate"
|
|
980 |
|
981 |
#: dashboard/info.php:55
|
982 |
msgid ""
|
983 |
-
"
|
984 |
-
"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: dashboard/info.php:81
|
988 |
-
msgid "AdRotate News and Developer Blog"
|
989 |
-
msgstr "Actus AdRotate et blog du développeur"
|
990 |
-
|
991 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
msgid "Get more features with AdRotate Pro"
|
993 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
994 |
|
995 |
-
#: dashboard/info.php:
|
996 |
msgid ""
|
997 |
"Benefit from extra features to reinforce your income with advertising "
|
998 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
@@ -1003,21 +979,25 @@ msgstr ""
|
|
1003 |
"outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
|
1004 |
"la version gratuite."
|
1005 |
|
1006 |
-
#: dashboard/info.php:
|
1007 |
msgid "Want to know more about"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: dashboard/info.php:
|
1011 |
msgid "Visit the"
|
1012 |
msgstr "Visitez le"
|
1013 |
|
1014 |
-
#: dashboard/info.php:
|
1015 |
msgid "website"
|
1016 |
msgstr "site"
|
1017 |
|
|
|
|
|
|
|
|
|
1018 |
#: dashboard/publisher/adverts-disabled.php:15
|
1019 |
-
msgid "Disabled
|
1020 |
-
msgstr "
|
1021 |
|
1022 |
#: dashboard/publisher/adverts-disabled.php:21
|
1023 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1052,17 +1032,21 @@ msgstr "Montré"
|
|
1052 |
|
1053 |
#: dashboard/publisher/adverts-disabled.php:39
|
1054 |
#: dashboard/publisher/adverts-main.php:46
|
1055 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1056 |
#: dashboard/publisher/groups-edit.php:334
|
1057 |
#: dashboard/publisher/groups-main.php:38
|
1058 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1059 |
msgid "Clicks"
|
1060 |
msgstr "Clicks"
|
1061 |
|
1062 |
#: dashboard/publisher/adverts-disabled.php:40
|
1063 |
#: dashboard/publisher/adverts-main.php:48
|
1064 |
-
#: dashboard/publisher/adverts-report.php:
|
1065 |
-
#: dashboard/publisher/
|
|
|
|
|
1066 |
msgid "CTR"
|
1067 |
msgstr "CTR"
|
1068 |
|
@@ -1435,8 +1419,8 @@ msgid ""
|
|
1435 |
msgstr ""
|
1436 |
|
1437 |
#: dashboard/publisher/adverts-edit.php:312
|
1438 |
-
#: dashboard/publisher/adverts-report.php:
|
1439 |
-
#: dashboard/publisher/groups-report.php:
|
1440 |
msgid "Note:"
|
1441 |
msgstr "Note :"
|
1442 |
|
@@ -1561,8 +1545,8 @@ msgid "Mode"
|
|
1561 |
msgstr "Mode"
|
1562 |
|
1563 |
#: dashboard/publisher/adverts-error.php:12
|
1564 |
-
msgid "
|
1565 |
-
msgstr "
|
1566 |
|
1567 |
#: dashboard/publisher/adverts-error.php:20
|
1568 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1600,8 +1584,8 @@ msgid "Configuration errors."
|
|
1600 |
msgstr "Erreurs de configuration."
|
1601 |
|
1602 |
#: dashboard/publisher/adverts-main.php:12
|
1603 |
-
msgid "Active
|
1604 |
-
msgstr "
|
1605 |
|
1606 |
#: dashboard/publisher/adverts-main.php:24
|
1607 |
msgid "Export to XML"
|
@@ -1620,35 +1604,37 @@ msgid "Today"
|
|
1620 |
msgstr "Aujourd'hui"
|
1621 |
|
1622 |
#: dashboard/publisher/adverts-main.php:109
|
1623 |
-
msgid "No
|
1624 |
-
msgstr "
|
1625 |
|
1626 |
-
#: dashboard/publisher/adverts-report.php:
|
1627 |
msgid "Statistics for advert"
|
1628 |
msgstr "Statistiques pour la pub"
|
1629 |
|
1630 |
-
#: dashboard/publisher/adverts-report.php:
|
1631 |
-
#: dashboard/publisher/
|
|
|
|
|
1632 |
msgid "Impressions"
|
1633 |
msgstr "Vues"
|
1634 |
|
1635 |
-
#: dashboard/publisher/adverts-report.php:
|
1636 |
-
#: dashboard/publisher/groups-report.php:
|
1637 |
msgid "Impressions today"
|
1638 |
msgstr "Vues aujourd'hui"
|
1639 |
|
1640 |
-
#: dashboard/publisher/adverts-report.php:
|
1641 |
-
#: dashboard/publisher/groups-report.php:
|
1642 |
msgid "Clicks today"
|
1643 |
msgstr "Clicks aujourd'hui"
|
1644 |
|
1645 |
-
#: dashboard/publisher/adverts-report.php:
|
1646 |
-
#: dashboard/publisher/groups-report.php:
|
1647 |
msgid "Monthly overview of clicks and impressions"
|
1648 |
msgstr "Synthèse mensuelle de clics et d'impressions"
|
1649 |
|
1650 |
-
#: dashboard/publisher/adverts-report.php:
|
1651 |
-
#: dashboard/publisher/groups-report.php:
|
1652 |
msgid ""
|
1653 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1654 |
"counted by other parties."
|
@@ -1673,8 +1659,8 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1673 |
msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
|
1674 |
|
1675 |
#: dashboard/publisher/groups-edit.php:66
|
1676 |
-
msgid "Block Mode - Show a block of
|
1677 |
-
msgstr "
|
1678 |
|
1679 |
#: dashboard/publisher/groups-edit.php:70
|
1680 |
#, fuzzy
|
@@ -1726,7 +1712,7 @@ msgstr "hauteur en pixels"
|
|
1726 |
|
1727 |
#: dashboard/publisher/groups-edit.php:104
|
1728 |
msgid ""
|
1729 |
-
"Define the maximum size of the
|
1730 |
"recommended). Default: 125/125."
|
1731 |
msgstr ""
|
1732 |
|
@@ -1752,8 +1738,8 @@ msgstr ""
|
|
1752 |
#: dashboard/publisher/groups-edit.php:141
|
1753 |
#: dashboard/publisher/groups-edit.php:288
|
1754 |
msgid ""
|
1755 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1756 |
-
"\" and enter ID"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1975,16 +1961,16 @@ msgid "Visible until"
|
|
1975 |
msgstr "Visible jusqu'à"
|
1976 |
|
1977 |
#: dashboard/publisher/groups-edit.php:379
|
1978 |
-
msgid "No
|
1979 |
-
msgstr "
|
1980 |
|
1981 |
#: dashboard/publisher/groups-main.php:21
|
1982 |
msgid "Delete Group"
|
1983 |
msgstr "Supprimer le groupe"
|
1984 |
|
1985 |
#: dashboard/publisher/groups-main.php:22
|
1986 |
-
msgid "Delete Group including
|
1987 |
-
msgstr "
|
1988 |
|
1989 |
#: dashboard/publisher/groups-main.php:24
|
1990 |
msgid "You are about to delete a group"
|
@@ -2003,7 +1989,7 @@ msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
|
2003 |
msgid "No groups created!"
|
2004 |
msgstr "Aucun groupe n'a été créé!"
|
2005 |
|
2006 |
-
#: dashboard/publisher/groups-report.php:
|
2007 |
msgid "Statistics for group"
|
2008 |
msgstr "Statistiques pour le groupe"
|
2009 |
|
@@ -2466,14 +2452,26 @@ msgid "Unknown"
|
|
2466 |
msgstr ""
|
2467 |
|
2468 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2469 |
msgid "Ad evaluation next run:"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: dashboard/settings/maintenance.php:
|
2473 |
msgid "Not scheduled!"
|
2474 |
msgstr "Pas planifié!"
|
2475 |
|
2476 |
-
#: dashboard/settings/maintenance.php:
|
2477 |
msgid "Clean Trackerdata next run:"
|
2478 |
msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
|
2479 |
|
@@ -2590,118 +2588,102 @@ msgid ""
|
|
2590 |
msgstr ""
|
2591 |
|
2592 |
#: dashboard/settings/notifications.php:31
|
2593 |
-
msgid "Dashboard Notifications"
|
2594 |
-
msgstr ""
|
2595 |
-
|
2596 |
-
#: dashboard/settings/notifications.php:32
|
2597 |
-
msgid "These show to every administrator who can edit adverts."
|
2598 |
-
msgstr ""
|
2599 |
-
|
2600 |
-
#: dashboard/settings/notifications.php:35
|
2601 |
-
msgid "Notification banners"
|
2602 |
-
msgstr ""
|
2603 |
-
|
2604 |
-
#: dashboard/settings/notifications.php:36
|
2605 |
-
msgid "Disable dashboard notifications."
|
2606 |
-
msgstr ""
|
2607 |
-
|
2608 |
-
#: dashboard/settings/notifications.php:40
|
2609 |
msgid "Email Notifications"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: dashboard/settings/notifications.php:
|
2613 |
msgid "Set up who gets notification emails."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: dashboard/settings/notifications.php:
|
2617 |
-
#: dashboard/settings/notifications.php:
|
2618 |
msgid "Publishers"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: dashboard/settings/notifications.php:
|
2622 |
msgid ""
|
2623 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2624 |
"list to a minimum!"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: dashboard/settings/notifications.php:
|
2628 |
msgid ""
|
2629 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2630 |
"email notifications will be send."
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: dashboard/settings/notifications.php:
|
2634 |
msgid "Advertisers"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: dashboard/settings/notifications.php:
|
2638 |
msgid ""
|
2639 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2640 |
"This field may not be empty!"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: dashboard/settings/notifications.php:
|
2644 |
msgid "Push Notifications"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: dashboard/settings/notifications.php:
|
2648 |
msgid ""
|
2649 |
"Receive information about what is happening with your AdRotate setup on your "
|
2650 |
"smartphone via Pushover."
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: dashboard/settings/notifications.php:
|
2654 |
msgid "When you are running out of Geo Targeting Lookups."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: dashboard/settings/notifications.php:
|
2658 |
msgid "Daily digest of any advert status other than normal."
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: dashboard/settings/notifications.php:
|
2662 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: dashboard/settings/notifications.php:
|
2666 |
msgid "A moderator approved an advert from the moderation queue."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: dashboard/settings/notifications.php:
|
2670 |
msgid "A moderator rejected an advert from the moderation queue."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: dashboard/settings/notifications.php:
|
2674 |
msgid ""
|
2675 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2676 |
"you may get a lot of messages!"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: dashboard/settings/notifications.php:
|
2680 |
msgid "User Key"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: dashboard/settings/notifications.php:
|
2684 |
msgid "Get your user token"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: dashboard/settings/notifications.php:
|
2688 |
-
#: dashboard/settings/notifications.php:
|
2689 |
msgid "here"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: dashboard/settings/notifications.php:
|
2693 |
msgid "Api Token"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: dashboard/settings/notifications.php:
|
2697 |
msgid "Create your"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: dashboard/settings/notifications.php:
|
2701 |
msgid "App"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: dashboard/settings/notifications.php:
|
2705 |
msgid "and get your API token"
|
2706 |
msgstr ""
|
2707 |
|
@@ -2852,6 +2834,72 @@ msgid ""
|
|
2852 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2853 |
msgstr ""
|
2854 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2855 |
#~ msgid ""
|
2856 |
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2857 |
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:58+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:58+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:844
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
+
#: adrotate-functions.php:847
|
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:896
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:900
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:904
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Publicité(s) supprimée(s)"
|
39 |
|
40 |
+
#: adrotate-functions.php:908
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groupe supprimé"
|
43 |
|
44 |
+
#: adrotate-functions.php:912
|
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:916
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "publicité(s) renouvellée(s)"
|
51 |
|
52 |
+
#: adrotate-functions.php:920
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Publicité(s) désactivée(s)"
|
55 |
|
56 |
+
#: adrotate-functions.php:924
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Publicité(s) activée(s)"
|
59 |
|
60 |
+
#: adrotate-functions.php:928
|
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:932
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "Publicité créée"
|
68 |
|
69 |
+
#: adrotate-functions.php:937
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Paramètres sauvegardés"
|
72 |
|
73 |
+
#: adrotate-functions.php:941
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Base de données optimisée"
|
76 |
|
77 |
+
#: adrotate-functions.php:945
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Base de données réparée"
|
80 |
|
81 |
+
#: adrotate-functions.php:949
|
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:953
|
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:958
|
91 |
msgid "Action prohibited"
|
92 |
msgstr "Action interdite"
|
93 |
|
94 |
+
#: adrotate-functions.php:962
|
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:966
|
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:970
|
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:974
|
110 |
msgid "Form can not be (partially) empty!"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: adrotate-functions.php:978
|
114 |
msgid "No ads found."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: adrotate-functions.php:982
|
118 |
msgid "Unexpected error"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: adrotate-manage-publisher.php:702
|
122 |
msgid "AdRotate Advertiser"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: adrotate-output.php:607
|
126 |
msgid "Oh no! Something went wrong!"
|
127 |
msgstr "Oh no! Un problème est survenu!"
|
128 |
|
129 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
145 |
msgid "Contact support if the issue persists:"
|
146 |
msgstr "Contactez le support si le soucis persiste :"
|
147 |
|
148 |
+
#: adrotate-output.php:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
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:651
|
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:656
|
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:662
|
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:662
|
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:668
|
200 |
msgid "An unknown error occured."
|
201 |
msgstr "Une erreur inconnue s'est produite."
|
202 |
|
203 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
204 |
+
msgid "Check adverts"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: adrotate-output.php:698
|
208 |
+
msgid ""
|
209 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
210 |
+
"site!"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: adrotate-output.php:701
|
214 |
+
msgid ""
|
215 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
216 |
+
"not set."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: adrotate-output.php:706
|
220 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
224 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
225 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
226 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
227 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
228 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
229 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
#: dashboard/settings/geotargeting.php:26
|
231 |
msgid "Buy now"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: adrotate-output.php:747
|
235 |
msgid ""
|
236 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
237 |
"to the <strong>PRO</strong> version"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: adrotate-output.php:747
|
241 |
#, php-format
|
242 |
msgid ""
|
243 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: adrotate-output.php:747
|
247 |
msgid "Thank you for your purchase!"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: adrotate-output.php:791
|
251 |
msgid ""
|
252 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
253 |
"this menu. Check out the"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: adrotate-output.php:791
|
257 |
msgid "manuals"
|
258 |
msgstr "manuels"
|
259 |
|
260 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
261 |
msgid "and"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: adrotate-output.php:791
|
265 |
msgid "forums"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: adrotate-output.php:824
|
269 |
msgid "Useful Links"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: adrotate-output.php:825
|
273 |
msgid "Useful links to learn more about AdRotate"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: adrotate-output.php:827
|
277 |
msgid "AdRotate website"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: adrotate-output.php:828
|
281 |
msgid "Getting Started With AdRotate"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: adrotate-output.php:829
|
285 |
msgid "AdRotate manuals"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: adrotate-output.php:830
|
289 |
msgid "AdRotate Support Forum"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: adrotate-output.php:856
|
293 |
#, fuzzy
|
294 |
msgid "Help AdRotate Grow"
|
295 |
msgstr "AdRotate Pro"
|
296 |
|
297 |
+
#: adrotate-output.php:857
|
298 |
+
msgid "Follow Arnan on Facebook"
|
299 |
+
msgstr ""
|
300 |
|
301 |
+
#: adrotate-output.php:864
|
302 |
msgid ""
|
303 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
304 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: adrotate-output.php:864
|
308 |
msgid "If you find AdRotate useful please leave your honest"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: adrotate-output.php:864
|
312 |
msgid "rating"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: adrotate-output.php:864
|
316 |
#, fuzzy
|
317 |
msgid "review"
|
318 |
msgstr "En avant-première"
|
319 |
|
320 |
+
#: adrotate-output.php:864
|
321 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: adrotate-output.php:903
|
325 |
msgid "Available in AdRotate Pro"
|
326 |
msgstr "Disponible dans Adrotate Pro"
|
327 |
|
328 |
+
#: adrotate-output.php:903
|
329 |
msgid "More information..."
|
330 |
msgstr "Plus d'informations..."
|
331 |
|
332 |
+
#: adrotate-output.php:904
|
333 |
msgid "This feature is available in AdRotate Pro"
|
334 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
335 |
|
336 |
+
#: adrotate-output.php:904
|
337 |
msgid "Learn more"
|
338 |
msgstr "En savoir plus"
|
339 |
|
413 |
msgid "No data to show!"
|
414 |
msgstr "Aucune donnée à montrer!"
|
415 |
|
416 |
+
#: adrotate-widget.php:116
|
417 |
msgid "Title (optional):"
|
418 |
msgstr "Titre (optionel) :"
|
419 |
|
420 |
+
#: adrotate-widget.php:119
|
421 |
msgid "HTML will be stripped out."
|
422 |
msgstr "Le code HTML sera retiré."
|
423 |
|
424 |
+
#: adrotate-widget.php:122
|
425 |
msgid "Description (optional):"
|
426 |
msgstr "Description (optionelle) :"
|
427 |
|
428 |
+
#: adrotate-widget.php:125
|
429 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
430 |
msgstr ""
|
431 |
"Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
|
432 |
"dépouillé.)"
|
433 |
|
434 |
+
#: adrotate-widget.php:128
|
435 |
msgid "Type:"
|
436 |
msgstr "Type :"
|
437 |
|
438 |
+
#: adrotate-widget.php:130
|
439 |
+
msgid "Advert - Use Advert ID"
|
440 |
+
msgstr ""
|
441 |
|
442 |
+
#: adrotate-widget.php:131
|
443 |
+
msgid "Group - Use group ID"
|
444 |
+
msgstr ""
|
445 |
|
446 |
+
#: adrotate-widget.php:134
|
447 |
msgid "Choose what you want to use this widget for"
|
448 |
msgstr "Choisissez le fonction de ce widget"
|
449 |
|
450 |
+
#: adrotate-widget.php:137
|
451 |
msgid "ID:"
|
452 |
msgstr "ID :"
|
453 |
|
454 |
+
#: adrotate-widget.php:140
|
455 |
msgid "Fill in the ID of the type you want to display!"
|
456 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
457 |
|
458 |
+
#: adrotate.php:105
|
459 |
msgid "General Info"
|
460 |
msgstr "Informations générales"
|
461 |
|
462 |
+
#: adrotate.php:106
|
463 |
msgid "AdRotate Pro"
|
464 |
msgstr "AdRotate Pro"
|
465 |
|
466 |
+
#: adrotate.php:107
|
467 |
+
msgid "Manage Adverts"
|
468 |
+
msgstr ""
|
469 |
|
470 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
471 |
msgid "Manage Groups"
|
472 |
msgstr "Gérer les groupes"
|
473 |
|
474 |
+
#: adrotate.php:109 adrotate.php:407
|
475 |
#, fuzzy
|
476 |
msgid "Manage Schedules"
|
477 |
msgstr "Gérer les pubs"
|
478 |
|
479 |
+
#: adrotate.php:110
|
480 |
#, fuzzy
|
481 |
msgid "Manage Media"
|
482 |
msgstr "Gérer les pubs"
|
483 |
|
484 |
+
#: adrotate.php:111
|
485 |
msgid "Settings"
|
486 |
msgstr "Paramètres"
|
487 |
|
488 |
+
#: adrotate.php:134
|
489 |
msgid "AdRotate Info"
|
490 |
msgstr "Informations sur Adrotate"
|
491 |
|
492 |
+
#: adrotate.php:155
|
493 |
msgid "AdRotate Professional"
|
494 |
msgstr "AdRotate professionel"
|
495 |
|
496 |
+
#: adrotate.php:198
|
497 |
+
msgid "Advert Management"
|
498 |
+
msgstr ""
|
499 |
|
500 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
501 |
msgid "Manage"
|
502 |
msgstr "Gérer"
|
503 |
|
504 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
505 |
msgid "Add New"
|
506 |
msgstr "Ajouter"
|
507 |
|
508 |
+
#: adrotate.php:336
|
509 |
msgid "Group Management"
|
510 |
msgstr "Gérer les groupes"
|
511 |
|
512 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
513 |
#: dashboard/publisher/groups-main.php:70
|
514 |
msgid "Report"
|
515 |
msgstr "Rapport"
|
516 |
|
517 |
+
#: adrotate.php:398
|
518 |
#, fuzzy
|
519 |
msgid "Schedule Management available in AdRotate Pro"
|
520 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
521 |
|
522 |
+
#: adrotate.php:408
|
523 |
#, fuzzy
|
524 |
msgid ""
|
525 |
"Schedule management and multiple schedules per advert is available in "
|
526 |
"AdRotate Pro."
|
527 |
msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
528 |
|
529 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
530 |
#: dashboard/publisher/adverts-main.php:114
|
531 |
#: dashboard/publisher/groups-edit.php:75
|
532 |
#: dashboard/publisher/groups-main.php:89
|
533 |
msgid "More information"
|
534 |
msgstr "Plus d'information"
|
535 |
|
536 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
537 |
#: dashboard/publisher/adverts-error.php:19
|
538 |
#: dashboard/publisher/adverts-main.php:20
|
539 |
#: dashboard/publisher/groups-main.php:20
|
540 |
msgid "Bulk Actions"
|
541 |
msgstr "Actions en vrac"
|
542 |
|
543 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
544 |
#: dashboard/publisher/adverts-error.php:29
|
545 |
#: dashboard/publisher/adverts-main.php:30
|
546 |
#: dashboard/publisher/groups-main.php:24
|
547 |
msgid "Go"
|
548 |
msgstr "Aller"
|
549 |
|
550 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
551 |
#: dashboard/publisher/adverts-error.php:39
|
552 |
#: dashboard/publisher/adverts-main.php:39
|
553 |
#: dashboard/publisher/groups-edit.php:51
|
555 |
msgid "ID"
|
556 |
msgstr "ID"
|
557 |
|
558 |
+
#: adrotate.php:426
|
559 |
#, fuzzy
|
560 |
msgid "Start"
|
561 |
msgstr "Début / Fin"
|
562 |
|
563 |
+
#: adrotate.php:426
|
564 |
msgid "End"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: adrotate.php:427
|
|
|
568 |
msgid "Ads"
|
569 |
msgstr "Pubs"
|
570 |
|
571 |
+
#: adrotate.php:429
|
572 |
#, fuzzy
|
573 |
msgid "Max Impressions"
|
574 |
msgstr "Nombre max de vues :"
|
575 |
|
576 |
+
#: adrotate.php:430
|
577 |
#, fuzzy
|
578 |
msgid "Max Clicks"
|
579 |
msgstr "Nombre de clicks max :"
|
580 |
|
581 |
+
#: adrotate.php:460
|
582 |
#, fuzzy
|
583 |
msgid "No schedules created yet!"
|
584 |
msgstr "Aucune pub n'a encore été créé!"
|
585 |
|
586 |
+
#: adrotate.php:465
|
587 |
#, fuzzy
|
588 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
589 |
msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
590 |
|
591 |
+
#: adrotate.php:465 adrotate.php:531
|
592 |
#, fuzzy
|
593 |
msgid "Upgrade today!"
|
594 |
msgstr "Mettre à jour aujourd'hui"
|
595 |
|
596 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
597 |
#: dashboard/publisher/groups-edit.php:387
|
598 |
msgid "Expires soon."
|
599 |
msgstr "Expire bientôt."
|
600 |
|
601 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
602 |
#: dashboard/publisher/groups-edit.php:388
|
603 |
msgid "Has expired."
|
604 |
msgstr "A expiré."
|
605 |
|
606 |
+
#: adrotate.php:493
|
607 |
#, fuzzy
|
608 |
msgid "Media Management available in AdRotate Pro"
|
609 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
610 |
|
611 |
+
#: adrotate.php:495
|
612 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: adrotate.php:495
|
616 |
msgid ""
|
617 |
"This is useful if you use responsive adverts with multiple images or have "
|
618 |
"HTML5 adverts containing multiple files."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: adrotate.php:495
|
622 |
#, fuzzy
|
623 |
msgid "Media uploading and management is available in AdRotate Pro."
|
624 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
625 |
|
626 |
+
#: adrotate.php:497
|
627 |
msgid "Upload new file"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: adrotate.php:498
|
631 |
msgid "Accepted files:"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: adrotate.php:498
|
635 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: adrotate.php:498
|
639 |
msgid "Maximum size is 512Kb."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: adrotate.php:498
|
643 |
msgid "Important:"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:498
|
647 |
msgid ""
|
648 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
649 |
"spaces with a - or _."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: adrotate.php:498
|
653 |
msgid ""
|
654 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
655 |
"file so it knows about the changed name. For example for the javascript file."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: adrotate.php:501
|
659 |
#, fuzzy
|
660 |
msgid ""
|
661 |
"For responsive adverts make sure the filename is in the following format; "
|
666 |
"complet d'images de tailles différentes est recommendé si vous avez un site "
|
667 |
"fluide."
|
668 |
|
669 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
670 |
msgid ""
|
671 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
672 |
"filename instead of \".full\" for the various viewports."
|
675 |
"\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
|
676 |
"tailles d'écran."
|
677 |
|
678 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
679 |
#: dashboard/publisher/groups-edit.php:320
|
680 |
msgid "Example:"
|
681 |
msgstr "Exemple :"
|
682 |
|
683 |
+
#: adrotate.php:503
|
684 |
#, fuzzy
|
685 |
msgid ""
|
686 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
689 |
"image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
|
690 |
"pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
|
691 |
|
692 |
+
#: adrotate.php:507
|
693 |
msgid "Upload file"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: adrotate.php:507
|
697 |
msgid "Click only once per file!"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: adrotate.php:510
|
701 |
msgid "Available files in"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
705 |
#: dashboard/publisher/groups-main.php:33
|
706 |
msgid "Name"
|
707 |
msgstr "Nom"
|
708 |
|
709 |
+
#: adrotate.php:516
|
710 |
#, fuzzy
|
711 |
msgid "Actions"
|
712 |
msgstr "Actions en vrac"
|
713 |
|
714 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
715 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
716 |
#: dashboard/publisher/adverts-disabled.php:22
|
717 |
#: dashboard/publisher/adverts-error.php:21
|
718 |
#: dashboard/publisher/adverts-main.php:22
|
719 |
msgid "Delete"
|
720 |
msgstr "Effacer"
|
721 |
|
722 |
+
#: adrotate.php:531
|
723 |
msgid ""
|
724 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: adrotate.php:531
|
728 |
#, fuzzy
|
729 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
730 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
731 |
|
732 |
+
#: adrotate.php:560
|
733 |
msgid "AdRotate Settings"
|
734 |
msgstr "Paramètres de AdRotate"
|
735 |
|
736 |
+
#: adrotate.php:631
|
737 |
msgid "Update Options"
|
738 |
msgstr "Mettre à jour les options"
|
739 |
|
790 |
"forum. Get a solution (usually) within a day."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
794 |
msgid "AdRotate is brought to you by"
|
795 |
msgstr "AdRotate est offert par"
|
796 |
|
797 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
798 |
msgid "Schedule all campaigns with ease"
|
799 |
msgstr "Planifier toutes vos campagnes en toute simplicité"
|
800 |
|
801 |
+
#: dashboard/adrotatepro.php:77
|
802 |
msgid ""
|
803 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
804 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
806 |
"much more easy. You can set one or many schedules for adverts."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: dashboard/adrotatepro.php:81
|
810 |
msgid "Avoid adblockers"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: dashboard/adrotatepro.php:84
|
814 |
msgid ""
|
815 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
816 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
818 |
"adverts smartly so these features reach their full potential!"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: dashboard/adrotatepro.php:88
|
822 |
msgid "Stay up-to-date with notifications"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: dashboard/adrotatepro.php:91
|
826 |
msgid ""
|
827 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
828 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
831 |
"miss an expiration date again."
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
835 |
+
#: dashboard/info.php:78
|
836 |
msgid "Buy AdRotate Professional"
|
837 |
msgstr "Achetez AdRotate Professionel"
|
838 |
|
839 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
840 |
msgid "Single License"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
844 |
msgid "For one WordPress installation."
|
845 |
msgstr "Pour une installation Wordpress."
|
846 |
|
847 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
848 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
849 |
msgid "Duo License"
|
850 |
msgstr "Licence Duo"
|
851 |
|
852 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
853 |
msgid "For two WordPress installations."
|
854 |
msgstr "Pour deux installations Wordpress."
|
855 |
|
856 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
857 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
858 |
msgid "Multi License"
|
859 |
msgstr "Licence Multiple"
|
860 |
|
861 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
862 |
msgid " For up to five WordPress installations."
|
863 |
msgstr "Pour un max de cinq installation Wordpress."
|
864 |
|
865 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
866 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
867 |
msgid "Developer License"
|
868 |
msgstr "Licence de Developpeur"
|
869 |
|
870 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
871 |
msgid "Unlimited WordPress installations and/or networks."
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
875 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
876 |
msgid "Compare licenses"
|
877 |
msgstr "Comparer les licences"
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
880 |
msgid "Not sure which license is for you? Compare them..."
|
881 |
msgstr ""
|
882 |
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
883 |
|
884 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
885 |
msgid "All Licenses"
|
886 |
msgstr "Toutes les licences"
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
889 |
msgid "Lifetime License"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
893 |
msgid "Single installation."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
897 |
msgid "Up to 2 installations."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
901 |
msgid "Up to 10 installations."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
905 |
msgid "Up to 25 installations or multisite networks."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
909 |
msgid ""
|
910 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
914 |
msgid "Not sure which license is for you?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
918 |
msgid "Compare Licenses"
|
919 |
msgstr ""
|
920 |
|
930 |
msgid "Adverts that need you"
|
931 |
msgstr "Publicités qui ont besoin de votre attention"
|
932 |
|
933 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
934 |
+
#: dashboard/publisher/groups-main.php:34
|
935 |
msgid "Adverts"
|
936 |
msgstr "Publicités"
|
937 |
|
953 |
|
954 |
#: dashboard/info.php:55
|
955 |
msgid ""
|
956 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
957 |
+
"for updates about me and my plugins. Thank you!"
|
958 |
msgstr ""
|
959 |
|
|
|
|
|
|
|
|
|
960 |
#: dashboard/info.php:103
|
961 |
+
msgid ""
|
962 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
963 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
964 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: dashboard/info.php:113
|
968 |
msgid "Get more features with AdRotate Pro"
|
969 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
970 |
|
971 |
+
#: dashboard/info.php:116
|
972 |
msgid ""
|
973 |
"Benefit from extra features to reinforce your income with advertising "
|
974 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
979 |
"outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
|
980 |
"la version gratuite."
|
981 |
|
982 |
+
#: dashboard/info.php:116
|
983 |
msgid "Want to know more about"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: dashboard/info.php:116
|
987 |
msgid "Visit the"
|
988 |
msgstr "Visitez le"
|
989 |
|
990 |
+
#: dashboard/info.php:116
|
991 |
msgid "website"
|
992 |
msgstr "site"
|
993 |
|
994 |
+
#: dashboard/info.php:120
|
995 |
+
msgid "AdRotate News and Developer Blog"
|
996 |
+
msgstr "Actus AdRotate et blog du développeur"
|
997 |
+
|
998 |
#: dashboard/publisher/adverts-disabled.php:15
|
999 |
+
msgid "Disabled Adverts"
|
1000 |
+
msgstr ""
|
1001 |
|
1002 |
#: dashboard/publisher/adverts-disabled.php:21
|
1003 |
#: dashboard/publisher/adverts-edit.php:176
|
1032 |
|
1033 |
#: dashboard/publisher/adverts-disabled.php:39
|
1034 |
#: dashboard/publisher/adverts-main.php:46
|
1035 |
+
#: dashboard/publisher/adverts-report.php:36
|
1036 |
+
#: dashboard/publisher/adverts-report.php:57
|
1037 |
#: dashboard/publisher/groups-edit.php:334
|
1038 |
#: dashboard/publisher/groups-main.php:38
|
1039 |
+
#: dashboard/publisher/groups-report.php:37
|
1040 |
+
#: dashboard/publisher/groups-report.php:58
|
1041 |
msgid "Clicks"
|
1042 |
msgstr "Clicks"
|
1043 |
|
1044 |
#: dashboard/publisher/adverts-disabled.php:40
|
1045 |
#: dashboard/publisher/adverts-main.php:48
|
1046 |
+
#: dashboard/publisher/adverts-report.php:39
|
1047 |
+
#: dashboard/publisher/adverts-report.php:58
|
1048 |
+
#: dashboard/publisher/groups-report.php:40
|
1049 |
+
#: dashboard/publisher/groups-report.php:59
|
1050 |
msgid "CTR"
|
1051 |
msgstr "CTR"
|
1052 |
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: dashboard/publisher/adverts-edit.php:312
|
1422 |
+
#: dashboard/publisher/adverts-report.php:64
|
1423 |
+
#: dashboard/publisher/groups-report.php:65
|
1424 |
msgid "Note:"
|
1425 |
msgstr "Note :"
|
1426 |
|
1545 |
msgstr "Mode"
|
1546 |
|
1547 |
#: dashboard/publisher/adverts-error.php:12
|
1548 |
+
msgid "Adverts that need attention"
|
1549 |
+
msgstr ""
|
1550 |
|
1551 |
#: dashboard/publisher/adverts-error.php:20
|
1552 |
#: dashboard/publisher/adverts-main.php:21
|
1584 |
msgstr "Erreurs de configuration."
|
1585 |
|
1586 |
#: dashboard/publisher/adverts-main.php:12
|
1587 |
+
msgid "Active Adverts"
|
1588 |
+
msgstr ""
|
1589 |
|
1590 |
#: dashboard/publisher/adverts-main.php:24
|
1591 |
msgid "Export to XML"
|
1604 |
msgstr "Aujourd'hui"
|
1605 |
|
1606 |
#: dashboard/publisher/adverts-main.php:109
|
1607 |
+
msgid "No adverts created yet!"
|
1608 |
+
msgstr ""
|
1609 |
|
1610 |
+
#: dashboard/publisher/adverts-report.php:30
|
1611 |
msgid "Statistics for advert"
|
1612 |
msgstr "Statistiques pour la pub"
|
1613 |
|
1614 |
+
#: dashboard/publisher/adverts-report.php:35
|
1615 |
+
#: dashboard/publisher/adverts-report.php:56
|
1616 |
+
#: dashboard/publisher/groups-report.php:36
|
1617 |
+
#: dashboard/publisher/groups-report.php:57
|
1618 |
msgid "Impressions"
|
1619 |
msgstr "Vues"
|
1620 |
|
1621 |
+
#: dashboard/publisher/adverts-report.php:37
|
1622 |
+
#: dashboard/publisher/groups-report.php:38
|
1623 |
msgid "Impressions today"
|
1624 |
msgstr "Vues aujourd'hui"
|
1625 |
|
1626 |
+
#: dashboard/publisher/adverts-report.php:38
|
1627 |
+
#: dashboard/publisher/groups-report.php:39
|
1628 |
msgid "Clicks today"
|
1629 |
msgstr "Clicks aujourd'hui"
|
1630 |
|
1631 |
+
#: dashboard/publisher/adverts-report.php:45
|
1632 |
+
#: dashboard/publisher/groups-report.php:46
|
1633 |
msgid "Monthly overview of clicks and impressions"
|
1634 |
msgstr "Synthèse mensuelle de clics et d'impressions"
|
1635 |
|
1636 |
+
#: dashboard/publisher/adverts-report.php:64
|
1637 |
+
#: dashboard/publisher/groups-report.php:65
|
1638 |
msgid ""
|
1639 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1640 |
"counted by other parties."
|
1659 |
msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
|
1660 |
|
1661 |
#: dashboard/publisher/groups-edit.php:66
|
1662 |
+
msgid "Block Mode - Show a block of adverts"
|
1663 |
+
msgstr ""
|
1664 |
|
1665 |
#: dashboard/publisher/groups-edit.php:70
|
1666 |
#, fuzzy
|
1712 |
|
1713 |
#: dashboard/publisher/groups-edit.php:104
|
1714 |
msgid ""
|
1715 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1716 |
"recommended). Default: 125/125."
|
1717 |
msgstr ""
|
1718 |
|
1738 |
#: dashboard/publisher/groups-edit.php:141
|
1739 |
#: dashboard/publisher/groups-edit.php:288
|
1740 |
msgid ""
|
1741 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1742 |
+
"Adverts\" and enter ID"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
#: dashboard/publisher/groups-edit.php:153
|
1961 |
msgstr "Visible jusqu'à"
|
1962 |
|
1963 |
#: dashboard/publisher/groups-edit.php:379
|
1964 |
+
msgid "No adverts created!"
|
1965 |
+
msgstr ""
|
1966 |
|
1967 |
#: dashboard/publisher/groups-main.php:21
|
1968 |
msgid "Delete Group"
|
1969 |
msgstr "Supprimer le groupe"
|
1970 |
|
1971 |
#: dashboard/publisher/groups-main.php:22
|
1972 |
+
msgid "Delete Group including adverts"
|
1973 |
+
msgstr ""
|
1974 |
|
1975 |
#: dashboard/publisher/groups-main.php:24
|
1976 |
msgid "You are about to delete a group"
|
1989 |
msgid "No groups created!"
|
1990 |
msgstr "Aucun groupe n'a été créé!"
|
1991 |
|
1992 |
+
#: dashboard/publisher/groups-report.php:31
|
1993 |
msgid "Statistics for group"
|
1994 |
msgstr "Statistiques pour le groupe"
|
1995 |
|
2452 |
msgstr ""
|
2453 |
|
2454 |
#: dashboard/settings/maintenance.php:70
|
2455 |
+
msgid "Banners/assets Folder"
|
2456 |
+
msgstr ""
|
2457 |
+
|
2458 |
+
#: dashboard/settings/maintenance.php:72
|
2459 |
+
msgid "Exists and appears writable"
|
2460 |
+
msgstr ""
|
2461 |
+
|
2462 |
+
#: dashboard/settings/maintenance.php:72
|
2463 |
+
msgid "Not writable or does not exist"
|
2464 |
+
msgstr ""
|
2465 |
+
|
2466 |
+
#: dashboard/settings/maintenance.php:76
|
2467 |
msgid "Ad evaluation next run:"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2471 |
msgid "Not scheduled!"
|
2472 |
msgstr "Pas planifié!"
|
2473 |
|
2474 |
+
#: dashboard/settings/maintenance.php:80
|
2475 |
msgid "Clean Trackerdata next run:"
|
2476 |
msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
|
2477 |
|
2588 |
msgstr ""
|
2589 |
|
2590 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2591 |
msgid "Email Notifications"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: dashboard/settings/notifications.php:32
|
2595 |
msgid "Set up who gets notification emails."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: dashboard/settings/notifications.php:35
|
2599 |
+
#: dashboard/settings/notifications.php:55
|
2600 |
msgid "Publishers"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: dashboard/settings/notifications.php:38
|
2604 |
msgid ""
|
2605 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2606 |
"list to a minimum!"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: dashboard/settings/notifications.php:39
|
2610 |
msgid ""
|
2611 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2612 |
"email notifications will be send."
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: dashboard/settings/notifications.php:43
|
2616 |
msgid "Advertisers"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: dashboard/settings/notifications.php:46
|
2620 |
msgid ""
|
2621 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2622 |
"This field may not be empty!"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: dashboard/settings/notifications.php:51
|
2626 |
msgid "Push Notifications"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: dashboard/settings/notifications.php:52
|
2630 |
msgid ""
|
2631 |
"Receive information about what is happening with your AdRotate setup on your "
|
2632 |
"smartphone via Pushover."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: dashboard/settings/notifications.php:57
|
2636 |
msgid "When you are running out of Geo Targeting Lookups."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: dashboard/settings/notifications.php:58
|
2640 |
msgid "Daily digest of any advert status other than normal."
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: dashboard/settings/notifications.php:59
|
2644 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: dashboard/settings/notifications.php:60
|
2648 |
msgid "A moderator approved an advert from the moderation queue."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: dashboard/settings/notifications.php:61
|
2652 |
msgid "A moderator rejected an advert from the moderation queue."
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: dashboard/settings/notifications.php:61
|
2656 |
msgid ""
|
2657 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2658 |
"you may get a lot of messages!"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: dashboard/settings/notifications.php:66
|
2662 |
msgid "User Key"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: dashboard/settings/notifications.php:68
|
2666 |
msgid "Get your user token"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: dashboard/settings/notifications.php:68
|
2670 |
+
#: dashboard/settings/notifications.php:74
|
2671 |
msgid "here"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: dashboard/settings/notifications.php:72
|
2675 |
msgid "Api Token"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: dashboard/settings/notifications.php:74
|
2679 |
msgid "Create your"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: dashboard/settings/notifications.php:74
|
2683 |
msgid "App"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: dashboard/settings/notifications.php:74
|
2687 |
msgid "and get your API token"
|
2688 |
msgstr ""
|
2689 |
|
2834 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#~ msgid "active ad(s) expired."
|
2838 |
+
#~ msgstr "publicité(s) active(s) ont expirée(s)."
|
2839 |
+
|
2840 |
+
#~ msgid "Take action now"
|
2841 |
+
#~ msgstr "Agir maintenant"
|
2842 |
+
|
2843 |
+
#~ msgid "active ad(s) are about to expire."
|
2844 |
+
#~ msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
2845 |
+
|
2846 |
+
#~ msgid "Check it out"
|
2847 |
+
#~ msgstr "Vérifier-le"
|
2848 |
+
|
2849 |
+
#~ msgid "active ad(s) with configuration errors."
|
2850 |
+
#~ msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
2851 |
+
|
2852 |
+
#~ msgid "Solve this"
|
2853 |
+
#~ msgstr "Résoudre"
|
2854 |
+
|
2855 |
+
#~ msgid "ad(s) expired."
|
2856 |
+
#~ msgstr "publicité(s) expirée(s)"
|
2857 |
+
|
2858 |
+
#~ msgid "ad(s) are about to expire."
|
2859 |
+
#~ msgstr "publicité(s) sont sur le point d'expirer"
|
2860 |
+
|
2861 |
+
#~ msgid "ad(s) with configuration errors."
|
2862 |
+
#~ msgstr "publicité(s) avec des erreurs de configuration."
|
2863 |
+
|
2864 |
+
#~ msgid "Fix this as soon as possible"
|
2865 |
+
#~ msgstr "Résoudre ce soucis dans les meilleurs délais"
|
2866 |
+
|
2867 |
+
#~ msgid "Brought to you by"
|
2868 |
+
#~ msgstr "Présenté par"
|
2869 |
+
|
2870 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2871 |
+
#~ msgstr "Ad Unique - Mettre l'identifiant de la publicité"
|
2872 |
+
|
2873 |
+
#~ msgid "Group of Ads - Use group ID"
|
2874 |
+
#~ msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
|
2875 |
+
|
2876 |
+
#~ msgid "Manage Ads"
|
2877 |
+
#~ msgstr "Gérer les pubs"
|
2878 |
+
|
2879 |
+
#~ msgid "Ad Management"
|
2880 |
+
#~ msgstr "Gestion des pubs"
|
2881 |
+
|
2882 |
+
#~ msgid "Disabled Ads"
|
2883 |
+
#~ msgstr "Pubs inactives"
|
2884 |
+
|
2885 |
+
#~ msgid "Ads that need immediate attention"
|
2886 |
+
#~ msgstr "Publicités qui ont besoin de votre attention immédiate"
|
2887 |
+
|
2888 |
+
#~ msgid "Active Ads"
|
2889 |
+
#~ msgstr "Pubs Activées"
|
2890 |
+
|
2891 |
+
#~ msgid "No ads created yet!"
|
2892 |
+
#~ msgstr "Aucune pub n'a encore été créé!"
|
2893 |
+
|
2894 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2895 |
+
#~ msgstr "Mode en Bloc - Montrer un bloc de pubs"
|
2896 |
+
|
2897 |
+
#~ msgid "No ads created!"
|
2898 |
+
#~ msgstr "Aucune pub créée!"
|
2899 |
+
|
2900 |
+
#~ msgid "Delete Group including ads"
|
2901 |
+
#~ msgstr "Supprimer le groupe avec les pubs"
|
2902 |
+
|
2903 |
#~ msgid ""
|
2904 |
#~ "Upload your images to the banner folder and make sure the filename is in "
|
2905 |
#~ "the following format; \"imagename.full.ext\". A full set of sized images "
|
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:
|
6 |
-
"PO-Revision-Date:
|
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"
|
@@ -16,115 +16,115 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.8.6\n"
|
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,181 +195,161 @@ 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 "
|
210 |
-
msgstr "
|
211 |
-
|
212 |
-
#: adrotate-output.php:723
|
213 |
-
msgid "Take action now"
|
214 |
-
msgstr "継続する場合は対応して下さい。"
|
215 |
-
|
216 |
-
#: adrotate-output.php:725
|
217 |
-
msgid "active ad(s) are about to expire."
|
218 |
-
msgstr "個の広告がまもなく期限切れです。"
|
219 |
-
|
220 |
-
#: adrotate-output.php:725
|
221 |
-
msgid "Check it out"
|
222 |
-
msgstr "チェックして下さい。"
|
223 |
-
|
224 |
-
#: adrotate-output.php:727
|
225 |
-
msgid "active ad(s) with configuration errors."
|
226 |
-
msgstr "個の広告が設定エラーになっています。"
|
227 |
-
|
228 |
-
#: adrotate-output.php:727
|
229 |
-
msgid "Solve this"
|
230 |
-
msgstr "これを解決して下さい。"
|
231 |
-
|
232 |
-
#: adrotate-output.php:729
|
233 |
-
msgid "ad(s) expired."
|
234 |
-
msgstr "個の広告が期限切れです。"
|
235 |
|
236 |
-
#: adrotate-output.php:
|
237 |
-
msgid "
|
238 |
-
|
|
|
|
|
239 |
|
240 |
-
#: adrotate-output.php:
|
241 |
-
msgid "
|
242 |
-
|
|
|
|
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
-
msgid "
|
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:
|
254 |
-
#: dashboard/info.php:
|
255 |
#: dashboard/settings/geotargeting.php:26
|
256 |
#, fuzzy
|
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 |
msgid "AdRotate website"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
#, fuzzy
|
310 |
msgid "Getting Started With AdRotate"
|
311 |
msgstr ""
|
312 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
313 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
314 |
|
315 |
-
#: adrotate-output.php:
|
316 |
#, fuzzy
|
317 |
msgid "AdRotate manuals"
|
318 |
msgstr "AdRotate Blog"
|
319 |
|
320 |
-
#: adrotate-output.php:
|
321 |
#, fuzzy
|
322 |
msgid "AdRotate Support Forum"
|
323 |
msgstr "AdRotate Blog"
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
#, fuzzy
|
327 |
msgid "Help AdRotate Grow"
|
328 |
msgstr "AdRotate Blog"
|
329 |
|
330 |
-
#: adrotate-output.php:
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
|
334 |
-
#: adrotate-output.php:
|
335 |
msgid ""
|
336 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
337 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
msgid "If you find AdRotate useful please leave your honest"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: adrotate-output.php:
|
345 |
msgid "rating"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: adrotate-output.php:
|
349 |
#, fuzzy
|
350 |
msgid "review"
|
351 |
msgstr "全般レポートを見れる権限"
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
#, fuzzy
|
359 |
msgid "Available in AdRotate Pro"
|
360 |
msgstr "AdRotate Blog"
|
361 |
|
362 |
-
#: adrotate-output.php:
|
363 |
#, fuzzy
|
364 |
msgid "More information..."
|
365 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
366 |
|
367 |
-
#: adrotate-output.php:
|
368 |
#, fuzzy
|
369 |
msgid "This feature is available in AdRotate Pro"
|
370 |
msgstr "この機能は使いません。"
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
#, fuzzy
|
374 |
msgid "Learn more"
|
375 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
@@ -451,125 +431,125 @@ msgstr ""
|
|
451 |
msgid "No data to show!"
|
452 |
msgstr "表示できるデータがありません。"
|
453 |
|
454 |
-
#: adrotate-widget.php:
|
455 |
msgid "Title (optional):"
|
456 |
msgstr "タイトル(オプション):"
|
457 |
|
458 |
-
#: adrotate-widget.php:
|
459 |
msgid "HTML will be stripped out."
|
460 |
msgstr "HTMLタグは取り除かれます。"
|
461 |
|
462 |
-
#: adrotate-widget.php:
|
463 |
#, fuzzy
|
464 |
msgid "Description (optional):"
|
465 |
msgstr "タイトル(オプション):"
|
466 |
|
467 |
-
#: adrotate-widget.php:
|
468 |
#, fuzzy
|
469 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
470 |
msgstr "HTMLタグは取り除かれます。"
|
471 |
|
472 |
-
#: adrotate-widget.php:
|
473 |
msgid "Type:"
|
474 |
msgstr "タイプ:"
|
475 |
|
476 |
-
#: adrotate-widget.php:
|
477 |
-
msgid "
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#: adrotate-widget.php:
|
481 |
-
msgid "Group
|
482 |
-
msgstr "
|
483 |
|
484 |
-
#: adrotate-widget.php:
|
485 |
msgid "Choose what you want to use this widget for"
|
486 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
487 |
|
488 |
-
#: adrotate-widget.php:
|
489 |
#, fuzzy
|
490 |
msgid "ID:"
|
491 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
492 |
|
493 |
-
#: adrotate-widget.php:
|
494 |
msgid "Fill in the ID of the type you want to display!"
|
495 |
msgstr "表示したいタイプのIDを入力してください!"
|
496 |
|
497 |
-
#: adrotate.php:
|
498 |
#, fuzzy
|
499 |
msgid "General Info"
|
500 |
msgstr "一般設定"
|
501 |
|
502 |
-
#: adrotate.php:
|
503 |
#, fuzzy
|
504 |
msgid "AdRotate Pro"
|
505 |
msgstr "AdRotate Blog"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
-
msgid "Manage
|
509 |
-
msgstr "
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "Manage Groups"
|
513 |
msgstr "グループの管理"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
#, fuzzy
|
517 |
msgid "Manage Schedules"
|
518 |
msgstr "管理"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
#, fuzzy
|
522 |
msgid "Manage Media"
|
523 |
msgstr "画像リンク先URL:"
|
524 |
|
525 |
-
#: adrotate.php:
|
526 |
msgid "Settings"
|
527 |
msgstr "設定"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
#, fuzzy
|
531 |
msgid "AdRotate Info"
|
532 |
msgstr "AdRotate Blog"
|
533 |
|
534 |
-
#: adrotate.php:
|
535 |
#, fuzzy
|
536 |
msgid "AdRotate Professional"
|
537 |
msgstr "AdRotate Blog"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
-
msgid "
|
541 |
-
msgstr "
|
542 |
|
543 |
-
#: adrotate.php:
|
544 |
msgid "Manage"
|
545 |
msgstr "管理"
|
546 |
|
547 |
-
#: adrotate.php:
|
548 |
msgid "Add New"
|
549 |
msgstr "新規追加"
|
550 |
|
551 |
-
#: adrotate.php:
|
552 |
msgid "Group Management"
|
553 |
msgstr "グループの管理"
|
554 |
|
555 |
-
#: adrotate.php:
|
556 |
#: dashboard/publisher/groups-main.php:70
|
557 |
msgid "Report"
|
558 |
msgstr "レポート"
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
#, fuzzy
|
562 |
msgid "Schedule Management available in AdRotate Pro"
|
563 |
msgstr "この機能は使いません。"
|
564 |
|
565 |
-
#: adrotate.php:
|
566 |
#, fuzzy
|
567 |
msgid ""
|
568 |
"Schedule management and multiple schedules per advert is available in "
|
569 |
"AdRotate Pro."
|
570 |
msgstr "この機能は使いません。"
|
571 |
|
572 |
-
#: adrotate.php:
|
573 |
#: dashboard/publisher/adverts-main.php:114
|
574 |
#: dashboard/publisher/groups-edit.php:75
|
575 |
#: dashboard/publisher/groups-main.php:89
|
@@ -577,21 +557,21 @@ msgstr "この機能は使いません。"
|
|
577 |
msgid "More information"
|
578 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
579 |
|
580 |
-
#: adrotate.php:
|
581 |
#: dashboard/publisher/adverts-error.php:19
|
582 |
#: dashboard/publisher/adverts-main.php:20
|
583 |
#: dashboard/publisher/groups-main.php:20
|
584 |
msgid "Bulk Actions"
|
585 |
msgstr "一括操作"
|
586 |
|
587 |
-
#: adrotate.php:
|
588 |
#: dashboard/publisher/adverts-error.php:29
|
589 |
#: dashboard/publisher/adverts-main.php:30
|
590 |
#: dashboard/publisher/groups-main.php:24
|
591 |
msgid "Go"
|
592 |
msgstr "実行"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
#: dashboard/publisher/adverts-error.php:39
|
596 |
#: dashboard/publisher/adverts-main.php:39
|
597 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -600,180 +580,179 @@ msgstr "実行"
|
|
600 |
msgid "ID"
|
601 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
msgid "Start"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
msgid "End"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
-
#: dashboard/publisher/groups-main.php:34
|
613 |
msgid "Ads"
|
614 |
msgstr "広告"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#, fuzzy
|
618 |
msgid "Max Impressions"
|
619 |
msgstr "表示数"
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#, fuzzy
|
623 |
msgid "Max Clicks"
|
624 |
msgstr "クリック"
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#, fuzzy
|
628 |
msgid "No schedules created yet!"
|
629 |
msgstr "まだブロックが作られていません。"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
#, fuzzy
|
633 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
634 |
msgstr ""
|
635 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
636 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
#, fuzzy
|
640 |
msgid "Upgrade today!"
|
641 |
msgstr "本日"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
#: dashboard/publisher/groups-edit.php:387
|
645 |
#, fuzzy
|
646 |
msgid "Expires soon."
|
647 |
msgstr "これは出来る限り早く修正して下さい。"
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
#: dashboard/publisher/groups-edit.php:388
|
651 |
#, fuzzy
|
652 |
msgid "Has expired."
|
653 |
msgstr "個の広告が期限切れです。"
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
#, fuzzy
|
657 |
msgid "Media Management available in AdRotate Pro"
|
658 |
msgstr "この機能は使いません。"
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid ""
|
666 |
"This is useful if you use responsive adverts with multiple images or have "
|
667 |
"HTML5 adverts containing multiple files."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: adrotate.php:
|
671 |
#, fuzzy
|
672 |
msgid "Media uploading and management is available in AdRotate Pro."
|
673 |
msgstr "この機能は使いません。"
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid "Upload new file"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
msgid "Accepted files:"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: adrotate.php:
|
688 |
msgid "Maximum size is 512Kb."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: adrotate.php:
|
692 |
msgid "Important:"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: adrotate.php:
|
696 |
msgid ""
|
697 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
698 |
"spaces with a - or _."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: adrotate.php:
|
702 |
msgid ""
|
703 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
704 |
"file so it knows about the changed name. For example for the javascript file."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
msgid ""
|
709 |
"For responsive adverts make sure the filename is in the following format; "
|
710 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: adrotate.php:
|
714 |
msgid ""
|
715 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
716 |
"filename instead of \".full\" for the various viewports."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: adrotate.php:
|
720 |
#: dashboard/publisher/groups-edit.php:320
|
721 |
msgid "Example:"
|
722 |
msgstr "例:"
|
723 |
|
724 |
-
#: adrotate.php:
|
725 |
msgid ""
|
726 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
727 |
"for different viewports."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: adrotate.php:
|
731 |
msgid "Upload file"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: adrotate.php:
|
735 |
msgid "Click only once per file!"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: adrotate.php:
|
739 |
msgid "Available files in"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: adrotate.php:
|
743 |
#: dashboard/publisher/groups-main.php:33
|
744 |
msgid "Name"
|
745 |
msgstr "名前"
|
746 |
|
747 |
-
#: adrotate.php:
|
748 |
#, fuzzy
|
749 |
msgid "Actions"
|
750 |
msgstr "一括操作"
|
751 |
|
752 |
-
#: adrotate.php:
|
753 |
-
#: adrotate.php:
|
754 |
#: dashboard/publisher/adverts-disabled.php:22
|
755 |
#: dashboard/publisher/adverts-error.php:21
|
756 |
#: dashboard/publisher/adverts-main.php:22
|
757 |
msgid "Delete"
|
758 |
msgstr "削除"
|
759 |
|
760 |
-
#: adrotate.php:
|
761 |
msgid ""
|
762 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: adrotate.php:
|
766 |
#, fuzzy
|
767 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
768 |
msgstr ""
|
769 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
770 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
771 |
|
772 |
-
#: adrotate.php:
|
773 |
msgid "AdRotate Settings"
|
774 |
msgstr "AdRotate 設定"
|
775 |
|
776 |
-
#: adrotate.php:
|
777 |
msgid "Update Options"
|
778 |
msgstr "設定の更新"
|
779 |
|
@@ -826,23 +805,16 @@ msgid ""
|
|
826 |
"forum. Get a solution (usually) within a day."
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
830 |
#, fuzzy
|
831 |
msgid "AdRotate is brought to you by"
|
832 |
msgstr "サービス紹介"
|
833 |
|
834 |
-
#: dashboard/adrotatepro.php:
|
835 |
-
msgid ""
|
836 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
837 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
838 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
839 |
-
msgstr ""
|
840 |
-
|
841 |
-
#: dashboard/adrotatepro.php:81
|
842 |
msgid "Schedule all campaigns with ease"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: dashboard/adrotatepro.php:
|
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,11 +822,11 @@ msgid ""
|
|
850 |
"much more easy. You can set one or many schedules for adverts."
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: dashboard/adrotatepro.php:
|
854 |
msgid "Avoid adblockers"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: dashboard/adrotatepro.php:
|
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 "
|
@@ -862,11 +834,11 @@ msgid ""
|
|
862 |
"adverts smartly so these features reach their full potential!"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: dashboard/adrotatepro.php:
|
866 |
msgid "Stay up-to-date with notifications"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: dashboard/adrotatepro.php:
|
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,92 +847,92 @@ msgid ""
|
|
875 |
"miss an expiration date again."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: dashboard/adrotatepro.php:
|
879 |
-
#: dashboard/info.php:
|
880 |
#, fuzzy
|
881 |
msgid "Buy AdRotate Professional"
|
882 |
msgstr "AdRotate Blog"
|
883 |
|
884 |
-
#: dashboard/adrotatepro.php:
|
885 |
msgid "Single License"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
msgid "For one WordPress installation."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: dashboard/adrotatepro.php:
|
893 |
-
#: dashboard/info.php:
|
894 |
msgid "Duo License"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: dashboard/adrotatepro.php:
|
898 |
msgid "For two WordPress installations."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: dashboard/adrotatepro.php:
|
902 |
-
#: dashboard/info.php:
|
903 |
msgid "Multi License"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: dashboard/adrotatepro.php:
|
907 |
msgid " For up to five WordPress installations."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: dashboard/adrotatepro.php:
|
911 |
-
#: dashboard/info.php:
|
912 |
#, fuzzy
|
913 |
msgid "Developer License"
|
914 |
msgstr "開発者向けデバッグ"
|
915 |
|
916 |
-
#: dashboard/adrotatepro.php:
|
917 |
msgid "Unlimited WordPress installations and/or networks."
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: dashboard/adrotatepro.php:
|
921 |
-
#: dashboard/info.php:
|
922 |
msgid "Compare licenses"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: dashboard/adrotatepro.php:
|
926 |
msgid "Not sure which license is for you? Compare them..."
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: dashboard/adrotatepro.php:
|
930 |
#, fuzzy
|
931 |
msgid "All Licenses"
|
932 |
msgstr "すべての広告の再評価"
|
933 |
|
934 |
-
#: dashboard/adrotatepro.php:
|
935 |
msgid "Lifetime License"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: dashboard/adrotatepro.php:
|
939 |
msgid "Single installation."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: dashboard/adrotatepro.php:
|
943 |
msgid "Up to 2 installations."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: dashboard/adrotatepro.php:
|
947 |
msgid "Up to 10 installations."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: dashboard/adrotatepro.php:
|
951 |
msgid "Up to 25 installations or multisite networks."
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: dashboard/adrotatepro.php:
|
955 |
msgid ""
|
956 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: dashboard/adrotatepro.php:
|
960 |
msgid "Not sure which license is for you?"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: dashboard/adrotatepro.php:
|
964 |
msgid "Compare Licenses"
|
965 |
msgstr ""
|
966 |
|
@@ -982,7 +954,8 @@ msgstr ""
|
|
982 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
983 |
"さい。英語ですが。"
|
984 |
|
985 |
-
#: dashboard/info.php:37
|
|
|
986 |
#, fuzzy
|
987 |
msgid "Adverts"
|
988 |
msgstr "新しい広告の承認"
|
@@ -1008,34 +981,36 @@ msgstr "AdRotate Blog"
|
|
1008 |
|
1009 |
#: dashboard/info.php:55
|
1010 |
msgid ""
|
1011 |
-
"
|
1012 |
-
"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: dashboard/info.php:81
|
1016 |
-
#, fuzzy
|
1017 |
-
msgid "AdRotate News and Developer Blog"
|
1018 |
-
msgstr "AdRotate Blog"
|
1019 |
-
|
1020 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1021 |
#, fuzzy
|
1022 |
msgid "Get more features with AdRotate Pro"
|
1023 |
msgstr ""
|
1024 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
1025 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
1026 |
|
1027 |
-
#: dashboard/info.php:
|
1028 |
msgid ""
|
1029 |
"Benefit from extra features to reinforce your income with advertising "
|
1030 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1031 |
"Pro offers on top of the trusted features included in the free version."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: dashboard/info.php:
|
1035 |
msgid "Want to know more about"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: dashboard/info.php:
|
1039 |
#, fuzzy
|
1040 |
msgid "Visit the"
|
1041 |
msgstr ""
|
@@ -1043,14 +1018,19 @@ msgstr ""
|
|
1043 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
1044 |
"さい。英語ですが。"
|
1045 |
|
1046 |
-
#: dashboard/info.php:
|
1047 |
#, fuzzy
|
1048 |
msgid "website"
|
1049 |
msgstr "開発者のWEBサイトは以下です。"
|
1050 |
|
|
|
|
|
|
|
|
|
|
|
1051 |
#: dashboard/publisher/adverts-disabled.php:15
|
1052 |
-
msgid "Disabled
|
1053 |
-
msgstr "
|
1054 |
|
1055 |
#: dashboard/publisher/adverts-disabled.php:21
|
1056 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1086,17 +1066,21 @@ msgstr "この広告は期限切れで現在サイトに表示されていませ
|
|
1086 |
|
1087 |
#: dashboard/publisher/adverts-disabled.php:39
|
1088 |
#: dashboard/publisher/adverts-main.php:46
|
1089 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1090 |
#: dashboard/publisher/groups-edit.php:334
|
1091 |
#: dashboard/publisher/groups-main.php:38
|
1092 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1093 |
msgid "Clicks"
|
1094 |
msgstr "クリック"
|
1095 |
|
1096 |
#: dashboard/publisher/adverts-disabled.php:40
|
1097 |
#: dashboard/publisher/adverts-main.php:48
|
1098 |
-
#: dashboard/publisher/adverts-report.php:
|
1099 |
-
#: dashboard/publisher/
|
|
|
|
|
1100 |
msgid "CTR"
|
1101 |
msgstr ""
|
1102 |
|
@@ -1481,8 +1465,8 @@ msgid ""
|
|
1481 |
msgstr ""
|
1482 |
|
1483 |
#: dashboard/publisher/adverts-edit.php:312
|
1484 |
-
#: dashboard/publisher/adverts-report.php:
|
1485 |
-
#: dashboard/publisher/groups-report.php:
|
1486 |
msgid "Note:"
|
1487 |
msgstr "注意:"
|
1488 |
|
@@ -1614,8 +1598,8 @@ msgid "Mode"
|
|
1614 |
msgstr "承認待ち"
|
1615 |
|
1616 |
#: dashboard/publisher/adverts-error.php:12
|
1617 |
-
msgid "
|
1618 |
-
msgstr "
|
1619 |
|
1620 |
#: dashboard/publisher/adverts-error.php:20
|
1621 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1654,8 +1638,8 @@ msgid "Configuration errors."
|
|
1654 |
msgstr "個の広告が設定エラーになっています。"
|
1655 |
|
1656 |
#: dashboard/publisher/adverts-main.php:12
|
1657 |
-
msgid "Active
|
1658 |
-
msgstr "
|
1659 |
|
1660 |
#: dashboard/publisher/adverts-main.php:24
|
1661 |
#, fuzzy
|
@@ -1675,37 +1659,39 @@ msgid "Today"
|
|
1675 |
msgstr "本日"
|
1676 |
|
1677 |
#: dashboard/publisher/adverts-main.php:109
|
1678 |
-
msgid "No
|
1679 |
-
msgstr "
|
1680 |
|
1681 |
-
#: dashboard/publisher/adverts-report.php:
|
1682 |
#, fuzzy
|
1683 |
msgid "Statistics for advert"
|
1684 |
msgstr "統計 "
|
1685 |
|
1686 |
-
#: dashboard/publisher/adverts-report.php:
|
1687 |
-
#: dashboard/publisher/
|
|
|
|
|
1688 |
msgid "Impressions"
|
1689 |
msgstr "表示数"
|
1690 |
|
1691 |
-
#: dashboard/publisher/adverts-report.php:
|
1692 |
-
#: dashboard/publisher/groups-report.php:
|
1693 |
msgid "Impressions today"
|
1694 |
msgstr "今日の表示数"
|
1695 |
|
1696 |
-
#: dashboard/publisher/adverts-report.php:
|
1697 |
-
#: dashboard/publisher/groups-report.php:
|
1698 |
msgid "Clicks today"
|
1699 |
msgstr "今日のクリック数"
|
1700 |
|
1701 |
-
#: dashboard/publisher/adverts-report.php:
|
1702 |
-
#: dashboard/publisher/groups-report.php:
|
1703 |
#, fuzzy
|
1704 |
msgid "Monthly overview of clicks and impressions"
|
1705 |
msgstr "クリック"
|
1706 |
|
1707 |
-
#: dashboard/publisher/adverts-report.php:
|
1708 |
-
#: dashboard/publisher/groups-report.php:
|
1709 |
msgid ""
|
1710 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1711 |
"counted by other parties."
|
@@ -1733,9 +1719,8 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1733 |
msgstr "秒"
|
1734 |
|
1735 |
#: dashboard/publisher/groups-edit.php:66
|
1736 |
-
|
1737 |
-
|
1738 |
-
msgstr "広告ブロック - ブロックIDを使ってください。"
|
1739 |
|
1740 |
#: dashboard/publisher/groups-edit.php:70
|
1741 |
#, fuzzy
|
@@ -1789,12 +1774,10 @@ msgid "pixel(s) high."
|
|
1789 |
msgstr "ピクセル(高さ)"
|
1790 |
|
1791 |
#: dashboard/publisher/groups-edit.php:104
|
1792 |
-
#, fuzzy
|
1793 |
msgid ""
|
1794 |
-
"Define the maximum size of the
|
1795 |
"recommended). Default: 125/125."
|
1796 |
msgstr ""
|
1797 |
-
"ピクセル単位で広告の最大サイズを定義します。高さは 'auto'を指定できます。"
|
1798 |
|
1799 |
#: dashboard/publisher/groups-edit.php:108
|
1800 |
msgid "Automated refresh"
|
@@ -1818,8 +1801,8 @@ msgstr "新規追加"
|
|
1818 |
#: dashboard/publisher/groups-edit.php:141
|
1819 |
#: dashboard/publisher/groups-edit.php:288
|
1820 |
msgid ""
|
1821 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1822 |
-
"\" and enter ID"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -2053,16 +2036,16 @@ msgid "Visible until"
|
|
2053 |
msgstr "掲載期限"
|
2054 |
|
2055 |
#: dashboard/publisher/groups-edit.php:379
|
2056 |
-
msgid "No
|
2057 |
-
msgstr "
|
2058 |
|
2059 |
#: dashboard/publisher/groups-main.php:21
|
2060 |
msgid "Delete Group"
|
2061 |
msgstr "グループ削除"
|
2062 |
|
2063 |
#: dashboard/publisher/groups-main.php:22
|
2064 |
-
msgid "Delete Group including
|
2065 |
-
msgstr "
|
2066 |
|
2067 |
#: dashboard/publisher/groups-main.php:24
|
2068 |
msgid "You are about to delete a group"
|
@@ -2081,7 +2064,7 @@ msgstr "よろしければ、OKを、止める場合はCANCELを押して下さ
|
|
2081 |
msgid "No groups created!"
|
2082 |
msgstr "グループがまだ作られていません。"
|
2083 |
|
2084 |
-
#: dashboard/publisher/groups-report.php:
|
2085 |
#, fuzzy
|
2086 |
msgid "Statistics for group"
|
2087 |
msgstr "統計 "
|
@@ -2568,16 +2551,28 @@ msgid "Unknown"
|
|
2568 |
msgstr ""
|
2569 |
|
2570 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2571 |
#, fuzzy
|
2572 |
msgid "Ad evaluation next run:"
|
2573 |
msgstr "通知先"
|
2574 |
|
2575 |
-
#: dashboard/settings/maintenance.php:
|
2576 |
#, fuzzy
|
2577 |
msgid "Not scheduled!"
|
2578 |
msgstr "掲載期間"
|
2579 |
|
2580 |
-
#: dashboard/settings/maintenance.php:
|
2581 |
#, fuzzy
|
2582 |
msgid "Clean Trackerdata next run:"
|
2583 |
msgstr "データベースのクリーンアップ"
|
@@ -2699,37 +2694,20 @@ msgstr ""
|
|
2699 |
"ションを保存してから、テストして下さい。"
|
2700 |
|
2701 |
#: dashboard/settings/notifications.php:31
|
2702 |
-
#, fuzzy
|
2703 |
-
msgid "Dashboard Notifications"
|
2704 |
-
msgstr "通知先"
|
2705 |
-
|
2706 |
-
#: dashboard/settings/notifications.php:32
|
2707 |
-
msgid "These show to every administrator who can edit adverts."
|
2708 |
-
msgstr ""
|
2709 |
-
|
2710 |
-
#: dashboard/settings/notifications.php:35
|
2711 |
-
msgid "Notification banners"
|
2712 |
-
msgstr ""
|
2713 |
-
|
2714 |
-
#: dashboard/settings/notifications.php:36
|
2715 |
-
msgid "Disable dashboard notifications."
|
2716 |
-
msgstr ""
|
2717 |
-
|
2718 |
-
#: dashboard/settings/notifications.php:40
|
2719 |
msgid "Email Notifications"
|
2720 |
msgstr "メール問い合わせ先"
|
2721 |
|
2722 |
-
#: dashboard/settings/notifications.php:
|
2723 |
#, fuzzy
|
2724 |
msgid "Set up who gets notification emails."
|
2725 |
msgstr "すぐに注意を必要とする広告"
|
2726 |
|
2727 |
-
#: dashboard/settings/notifications.php:
|
2728 |
-
#: dashboard/settings/notifications.php:
|
2729 |
msgid "Publishers"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: dashboard/settings/notifications.php:
|
2733 |
msgid ""
|
2734 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2735 |
"list to a minimum!"
|
@@ -2737,7 +2715,7 @@ msgstr ""
|
|
2737 |
"コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
|
2738 |
"抑えて下さい。"
|
2739 |
|
2740 |
-
#: dashboard/settings/notifications.php:
|
2741 |
#, fuzzy
|
2742 |
msgid ""
|
2743 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
@@ -2746,12 +2724,12 @@ msgstr ""
|
|
2746 |
"必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
|
2747 |
"合、メール通知は無効になります。"
|
2748 |
|
2749 |
-
#: dashboard/settings/notifications.php:
|
2750 |
#, fuzzy
|
2751 |
msgid "Advertisers"
|
2752 |
msgstr "広告主から提出された広告を承認する権限"
|
2753 |
|
2754 |
-
#: dashboard/settings/notifications.php:
|
2755 |
#, fuzzy
|
2756 |
msgid ""
|
2757 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
@@ -2760,72 +2738,72 @@ msgstr ""
|
|
2760 |
"最大2個のメールアドレスがコンマ区切りで登録できます。ここは空欄では利用できま"
|
2761 |
"せん。"
|
2762 |
|
2763 |
-
#: dashboard/settings/notifications.php:
|
2764 |
#, fuzzy
|
2765 |
msgid "Push Notifications"
|
2766 |
msgstr "通知先"
|
2767 |
|
2768 |
-
#: dashboard/settings/notifications.php:
|
2769 |
msgid ""
|
2770 |
"Receive information about what is happening with your AdRotate setup on your "
|
2771 |
"smartphone via Pushover."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: dashboard/settings/notifications.php:
|
2775 |
msgid "When you are running out of Geo Targeting Lookups."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: dashboard/settings/notifications.php:
|
2779 |
msgid "Daily digest of any advert status other than normal."
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: dashboard/settings/notifications.php:
|
2783 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: dashboard/settings/notifications.php:
|
2787 |
#, fuzzy
|
2788 |
msgid "A moderator approved an advert from the moderation queue."
|
2789 |
msgstr "承認待ち広告の承認/拒否"
|
2790 |
|
2791 |
-
#: dashboard/settings/notifications.php:
|
2792 |
#, fuzzy
|
2793 |
msgid "A moderator rejected an advert from the moderation queue."
|
2794 |
msgstr "承認待ち広告の承認/拒否"
|
2795 |
|
2796 |
-
#: dashboard/settings/notifications.php:
|
2797 |
msgid ""
|
2798 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2799 |
"you may get a lot of messages!"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: dashboard/settings/notifications.php:
|
2803 |
#, fuzzy
|
2804 |
msgid "User Key"
|
2805 |
msgstr "ユーザーエージェント[英語]"
|
2806 |
|
2807 |
-
#: dashboard/settings/notifications.php:
|
2808 |
msgid "Get your user token"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: dashboard/settings/notifications.php:
|
2812 |
-
#: dashboard/settings/notifications.php:
|
2813 |
msgid "here"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: dashboard/settings/notifications.php:
|
2817 |
msgid "Api Token"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: dashboard/settings/notifications.php:
|
2821 |
msgid "Create your"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: dashboard/settings/notifications.php:
|
2825 |
msgid "App"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: dashboard/settings/notifications.php:
|
2829 |
msgid "and get your API token"
|
2830 |
msgstr ""
|
2831 |
|
@@ -2983,6 +2961,84 @@ msgid ""
|
|
2983 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2984 |
msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
2985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2986 |
#, fuzzy
|
2987 |
#~ msgid "AdRotate Page"
|
2988 |
#~ msgstr "AdRotate Blog"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:58+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:58+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"
|
16 |
"X-Generator: Poedit 1.8.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:844
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
+
#: adrotate-functions.php:847
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
+
#: adrotate-functions.php:896
|
28 |
msgid "Ad saved"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: adrotate-functions.php:900
|
32 |
msgid "Group saved"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: adrotate-functions.php:904
|
36 |
msgid "Ad(s) deleted"
|
37 |
msgstr "広告削除"
|
38 |
|
39 |
+
#: adrotate-functions.php:908
|
40 |
msgid "Group deleted"
|
41 |
msgstr "グループの削除"
|
42 |
|
43 |
+
#: adrotate-functions.php:912
|
44 |
msgid "Ad(s) statistics reset"
|
45 |
msgstr "広告の統計情報初期化"
|
46 |
|
47 |
+
#: adrotate-functions.php:916
|
48 |
msgid "Ad(s) renewed"
|
49 |
msgstr "広告の更新"
|
50 |
|
51 |
+
#: adrotate-functions.php:920
|
52 |
msgid "Ad(s) deactivated"
|
53 |
msgstr "広告の利用停止"
|
54 |
|
55 |
+
#: adrotate-functions.php:924
|
56 |
msgid "Ad(s) activated"
|
57 |
msgstr "広告の利用可能化"
|
58 |
|
59 |
+
#: adrotate-functions.php:928
|
60 |
msgid "Group including it's Ads deleted"
|
61 |
msgstr "削除された広告がグループに含まれています。"
|
62 |
|
63 |
+
#: adrotate-functions.php:932
|
64 |
#, fuzzy
|
65 |
msgid "Export created"
|
66 |
msgstr "エクスポートオプション"
|
67 |
|
68 |
+
#: adrotate-functions.php:937
|
69 |
msgid "Settings saved"
|
70 |
msgstr "設定を保存します。"
|
71 |
|
72 |
+
#: adrotate-functions.php:941
|
73 |
msgid "Database optimized"
|
74 |
msgstr "データベースの最適化"
|
75 |
|
76 |
+
#: adrotate-functions.php:945
|
77 |
msgid "Database repaired"
|
78 |
msgstr "データベースの修復"
|
79 |
|
80 |
+
#: adrotate-functions.php:949
|
81 |
#, fuzzy
|
82 |
msgid "Ads evaluated and statuses have been corrected where required"
|
83 |
msgstr "広告"
|
84 |
|
85 |
+
#: adrotate-functions.php:953
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "空のデータベースは削除されました。"
|
88 |
|
89 |
+
#: adrotate-functions.php:958
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "今の操作は禁止されました。"
|
92 |
|
93 |
+
#: adrotate-functions.php:962
|
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:966
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "選ばれた期間が見つかりません。"
|
102 |
|
103 |
+
#: adrotate-functions.php:970
|
104 |
msgid "Database can only be optimized or cleaned once every hour"
|
105 |
msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
|
106 |
|
107 |
+
#: adrotate-functions.php:974
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: adrotate-functions.php:978
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: adrotate-functions.php:982
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: adrotate-manage-publisher.php:702
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: adrotate-output.php:607
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
145 |
#, fuzzy
|
146 |
msgid "Contact support if the issue persists:"
|
147 |
msgstr ""
|
148 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
149 |
"さい。"
|
150 |
|
151 |
+
#: adrotate-output.php:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
174 |
#, fuzzy
|
175 |
msgid "Error, no Ad ID set! Check your syntax!"
|
176 |
msgstr "広告 - 広告IDを使ってください。"
|
177 |
|
178 |
+
#: adrotate-output.php:651
|
179 |
#, fuzzy
|
180 |
msgid "Error, no group ID set! Check your syntax!"
|
181 |
msgstr "広告グループ - グループIDを使ってください。"
|
182 |
|
183 |
+
#: adrotate-output.php:656
|
184 |
#, fuzzy
|
185 |
msgid "Error, group does not exist! Check your syntax!"
|
186 |
msgstr ""
|
187 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
188 |
"クスをオンにします。"
|
189 |
|
190 |
+
#: adrotate-output.php:662
|
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:662
|
199 |
msgid "If this does not solve the issue please seek support at"
|
200 |
msgstr ""
|
201 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
202 |
"さい。"
|
203 |
|
204 |
+
#: adrotate-output.php:668
|
205 |
msgid "An unknown error occured."
|
206 |
msgstr "理解できないエラーが起こっています。"
|
207 |
|
208 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
209 |
+
msgid "Check adverts"
|
210 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
|
212 |
+
#: adrotate-output.php:698
|
213 |
+
msgid ""
|
214 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
215 |
+
"site!"
|
216 |
+
msgstr ""
|
217 |
|
218 |
+
#: adrotate-output.php:701
|
219 |
+
msgid ""
|
220 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
221 |
+
"not set."
|
222 |
+
msgstr ""
|
223 |
|
224 |
+
#: adrotate-output.php:706
|
225 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
226 |
+
msgstr ""
|
227 |
|
228 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
229 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
230 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
231 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
232 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
233 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
234 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
235 |
#: dashboard/settings/geotargeting.php:26
|
236 |
#, fuzzy
|
237 |
msgid "Buy now"
|
238 |
msgstr "継続する場合は対応して下さい。"
|
239 |
|
240 |
+
#: adrotate-output.php:747
|
241 |
msgid ""
|
242 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
243 |
"to the <strong>PRO</strong> version"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: adrotate-output.php:747
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: adrotate-output.php:747
|
253 |
msgid "Thank you for your purchase!"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: adrotate-output.php:791
|
257 |
msgid ""
|
258 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
259 |
"this menu. Check out the"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: adrotate-output.php:791
|
263 |
msgid "manuals"
|
264 |
msgstr "マニュアル(英語サイト)"
|
265 |
|
266 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
267 |
msgid "and"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: adrotate-output.php:791
|
271 |
#, fuzzy
|
272 |
msgid "forums"
|
273 |
msgstr "フォーラム"
|
274 |
|
275 |
+
#: adrotate-output.php:824
|
276 |
#, fuzzy
|
277 |
msgid "Useful Links"
|
278 |
msgstr "役に立つ情報"
|
279 |
|
280 |
+
#: adrotate-output.php:825
|
281 |
msgid "Useful links to learn more about AdRotate"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: adrotate-output.php:827
|
285 |
msgid "AdRotate website"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: adrotate-output.php:828
|
289 |
#, fuzzy
|
290 |
msgid "Getting Started With AdRotate"
|
291 |
msgstr ""
|
292 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
293 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
294 |
|
295 |
+
#: adrotate-output.php:829
|
296 |
#, fuzzy
|
297 |
msgid "AdRotate manuals"
|
298 |
msgstr "AdRotate Blog"
|
299 |
|
300 |
+
#: adrotate-output.php:830
|
301 |
#, fuzzy
|
302 |
msgid "AdRotate Support Forum"
|
303 |
msgstr "AdRotate Blog"
|
304 |
|
305 |
+
#: adrotate-output.php:856
|
306 |
#, fuzzy
|
307 |
msgid "Help AdRotate Grow"
|
308 |
msgstr "AdRotate Blog"
|
309 |
|
310 |
+
#: adrotate-output.php:857
|
311 |
+
msgid "Follow Arnan on Facebook"
|
312 |
+
msgstr ""
|
313 |
|
314 |
+
#: adrotate-output.php:864
|
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."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: adrotate-output.php:864
|
321 |
msgid "If you find AdRotate useful please leave your honest"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: adrotate-output.php:864
|
325 |
msgid "rating"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: adrotate-output.php:864
|
329 |
#, fuzzy
|
330 |
msgid "review"
|
331 |
msgstr "全般レポートを見れる権限"
|
332 |
|
333 |
+
#: adrotate-output.php:864
|
334 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:903
|
338 |
#, fuzzy
|
339 |
msgid "Available in AdRotate Pro"
|
340 |
msgstr "AdRotate Blog"
|
341 |
|
342 |
+
#: adrotate-output.php:903
|
343 |
#, fuzzy
|
344 |
msgid "More information..."
|
345 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
346 |
|
347 |
+
#: adrotate-output.php:904
|
348 |
#, fuzzy
|
349 |
msgid "This feature is available in AdRotate Pro"
|
350 |
msgstr "この機能は使いません。"
|
351 |
|
352 |
+
#: adrotate-output.php:904
|
353 |
#, fuzzy
|
354 |
msgid "Learn more"
|
355 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
431 |
msgid "No data to show!"
|
432 |
msgstr "表示できるデータがありません。"
|
433 |
|
434 |
+
#: adrotate-widget.php:116
|
435 |
msgid "Title (optional):"
|
436 |
msgstr "タイトル(オプション):"
|
437 |
|
438 |
+
#: adrotate-widget.php:119
|
439 |
msgid "HTML will be stripped out."
|
440 |
msgstr "HTMLタグは取り除かれます。"
|
441 |
|
442 |
+
#: adrotate-widget.php:122
|
443 |
#, fuzzy
|
444 |
msgid "Description (optional):"
|
445 |
msgstr "タイトル(オプション):"
|
446 |
|
447 |
+
#: adrotate-widget.php:125
|
448 |
#, fuzzy
|
449 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
450 |
msgstr "HTMLタグは取り除かれます。"
|
451 |
|
452 |
+
#: adrotate-widget.php:128
|
453 |
msgid "Type:"
|
454 |
msgstr "タイプ:"
|
455 |
|
456 |
+
#: adrotate-widget.php:130
|
457 |
+
msgid "Advert - Use Advert ID"
|
458 |
+
msgstr ""
|
459 |
|
460 |
+
#: adrotate-widget.php:131
|
461 |
+
msgid "Group - Use group ID"
|
462 |
+
msgstr ""
|
463 |
|
464 |
+
#: adrotate-widget.php:134
|
465 |
msgid "Choose what you want to use this widget for"
|
466 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
467 |
|
468 |
+
#: adrotate-widget.php:137
|
469 |
#, fuzzy
|
470 |
msgid "ID:"
|
471 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
472 |
|
473 |
+
#: adrotate-widget.php:140
|
474 |
msgid "Fill in the ID of the type you want to display!"
|
475 |
msgstr "表示したいタイプのIDを入力してください!"
|
476 |
|
477 |
+
#: adrotate.php:105
|
478 |
#, fuzzy
|
479 |
msgid "General Info"
|
480 |
msgstr "一般設定"
|
481 |
|
482 |
+
#: adrotate.php:106
|
483 |
#, fuzzy
|
484 |
msgid "AdRotate Pro"
|
485 |
msgstr "AdRotate Blog"
|
486 |
|
487 |
+
#: adrotate.php:107
|
488 |
+
msgid "Manage Adverts"
|
489 |
+
msgstr ""
|
490 |
|
491 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
492 |
msgid "Manage Groups"
|
493 |
msgstr "グループの管理"
|
494 |
|
495 |
+
#: adrotate.php:109 adrotate.php:407
|
496 |
#, fuzzy
|
497 |
msgid "Manage Schedules"
|
498 |
msgstr "管理"
|
499 |
|
500 |
+
#: adrotate.php:110
|
501 |
#, fuzzy
|
502 |
msgid "Manage Media"
|
503 |
msgstr "画像リンク先URL:"
|
504 |
|
505 |
+
#: adrotate.php:111
|
506 |
msgid "Settings"
|
507 |
msgstr "設定"
|
508 |
|
509 |
+
#: adrotate.php:134
|
510 |
#, fuzzy
|
511 |
msgid "AdRotate Info"
|
512 |
msgstr "AdRotate Blog"
|
513 |
|
514 |
+
#: adrotate.php:155
|
515 |
#, fuzzy
|
516 |
msgid "AdRotate Professional"
|
517 |
msgstr "AdRotate Blog"
|
518 |
|
519 |
+
#: adrotate.php:198
|
520 |
+
msgid "Advert Management"
|
521 |
+
msgstr ""
|
522 |
|
523 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
524 |
msgid "Manage"
|
525 |
msgstr "管理"
|
526 |
|
527 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
528 |
msgid "Add New"
|
529 |
msgstr "新規追加"
|
530 |
|
531 |
+
#: adrotate.php:336
|
532 |
msgid "Group Management"
|
533 |
msgstr "グループの管理"
|
534 |
|
535 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
536 |
#: dashboard/publisher/groups-main.php:70
|
537 |
msgid "Report"
|
538 |
msgstr "レポート"
|
539 |
|
540 |
+
#: adrotate.php:398
|
541 |
#, fuzzy
|
542 |
msgid "Schedule Management available in AdRotate Pro"
|
543 |
msgstr "この機能は使いません。"
|
544 |
|
545 |
+
#: adrotate.php:408
|
546 |
#, fuzzy
|
547 |
msgid ""
|
548 |
"Schedule management and multiple schedules per advert is available in "
|
549 |
"AdRotate Pro."
|
550 |
msgstr "この機能は使いません。"
|
551 |
|
552 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
553 |
#: dashboard/publisher/adverts-main.php:114
|
554 |
#: dashboard/publisher/groups-edit.php:75
|
555 |
#: dashboard/publisher/groups-main.php:89
|
557 |
msgid "More information"
|
558 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
559 |
|
560 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
561 |
#: dashboard/publisher/adverts-error.php:19
|
562 |
#: dashboard/publisher/adverts-main.php:20
|
563 |
#: dashboard/publisher/groups-main.php:20
|
564 |
msgid "Bulk Actions"
|
565 |
msgstr "一括操作"
|
566 |
|
567 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
568 |
#: dashboard/publisher/adverts-error.php:29
|
569 |
#: dashboard/publisher/adverts-main.php:30
|
570 |
#: dashboard/publisher/groups-main.php:24
|
571 |
msgid "Go"
|
572 |
msgstr "実行"
|
573 |
|
574 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
575 |
#: dashboard/publisher/adverts-error.php:39
|
576 |
#: dashboard/publisher/adverts-main.php:39
|
577 |
#: dashboard/publisher/groups-edit.php:51
|
580 |
msgid "ID"
|
581 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
582 |
|
583 |
+
#: adrotate.php:426
|
584 |
msgid "Start"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: adrotate.php:426
|
588 |
msgid "End"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: adrotate.php:427
|
|
|
592 |
msgid "Ads"
|
593 |
msgstr "広告"
|
594 |
|
595 |
+
#: adrotate.php:429
|
596 |
#, fuzzy
|
597 |
msgid "Max Impressions"
|
598 |
msgstr "表示数"
|
599 |
|
600 |
+
#: adrotate.php:430
|
601 |
#, fuzzy
|
602 |
msgid "Max Clicks"
|
603 |
msgstr "クリック"
|
604 |
|
605 |
+
#: adrotate.php:460
|
606 |
#, fuzzy
|
607 |
msgid "No schedules created yet!"
|
608 |
msgstr "まだブロックが作られていません。"
|
609 |
|
610 |
+
#: adrotate.php:465
|
611 |
#, fuzzy
|
612 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
613 |
msgstr ""
|
614 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
615 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
616 |
|
617 |
+
#: adrotate.php:465 adrotate.php:531
|
618 |
#, fuzzy
|
619 |
msgid "Upgrade today!"
|
620 |
msgstr "本日"
|
621 |
|
622 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
623 |
#: dashboard/publisher/groups-edit.php:387
|
624 |
#, fuzzy
|
625 |
msgid "Expires soon."
|
626 |
msgstr "これは出来る限り早く修正して下さい。"
|
627 |
|
628 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
629 |
#: dashboard/publisher/groups-edit.php:388
|
630 |
#, fuzzy
|
631 |
msgid "Has expired."
|
632 |
msgstr "個の広告が期限切れです。"
|
633 |
|
634 |
+
#: adrotate.php:493
|
635 |
#, fuzzy
|
636 |
msgid "Media Management available in AdRotate Pro"
|
637 |
msgstr "この機能は使いません。"
|
638 |
|
639 |
+
#: adrotate.php:495
|
640 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: adrotate.php:495
|
644 |
msgid ""
|
645 |
"This is useful if you use responsive adverts with multiple images or have "
|
646 |
"HTML5 adverts containing multiple files."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: adrotate.php:495
|
650 |
#, fuzzy
|
651 |
msgid "Media uploading and management is available in AdRotate Pro."
|
652 |
msgstr "この機能は使いません。"
|
653 |
|
654 |
+
#: adrotate.php:497
|
655 |
msgid "Upload new file"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: adrotate.php:498
|
659 |
msgid "Accepted files:"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: adrotate.php:498
|
663 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: adrotate.php:498
|
667 |
msgid "Maximum size is 512Kb."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: adrotate.php:498
|
671 |
msgid "Important:"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: adrotate.php:498
|
675 |
msgid ""
|
676 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
677 |
"spaces with a - or _."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: adrotate.php:498
|
681 |
msgid ""
|
682 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
683 |
"file so it knows about the changed name. For example for the javascript file."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: adrotate.php:501
|
687 |
msgid ""
|
688 |
"For responsive adverts make sure the filename is in the following format; "
|
689 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
693 |
msgid ""
|
694 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
695 |
"filename instead of \".full\" for the various viewports."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
699 |
#: dashboard/publisher/groups-edit.php:320
|
700 |
msgid "Example:"
|
701 |
msgstr "例:"
|
702 |
|
703 |
+
#: adrotate.php:503
|
704 |
msgid ""
|
705 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
706 |
"for different viewports."
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: adrotate.php:507
|
710 |
msgid "Upload file"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: adrotate.php:507
|
714 |
msgid "Click only once per file!"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: adrotate.php:510
|
718 |
msgid "Available files in"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
722 |
#: dashboard/publisher/groups-main.php:33
|
723 |
msgid "Name"
|
724 |
msgstr "名前"
|
725 |
|
726 |
+
#: adrotate.php:516
|
727 |
#, fuzzy
|
728 |
msgid "Actions"
|
729 |
msgstr "一括操作"
|
730 |
|
731 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
732 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
733 |
#: dashboard/publisher/adverts-disabled.php:22
|
734 |
#: dashboard/publisher/adverts-error.php:21
|
735 |
#: dashboard/publisher/adverts-main.php:22
|
736 |
msgid "Delete"
|
737 |
msgstr "削除"
|
738 |
|
739 |
+
#: adrotate.php:531
|
740 |
msgid ""
|
741 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: adrotate.php:531
|
745 |
#, fuzzy
|
746 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
747 |
msgstr ""
|
748 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
749 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
750 |
|
751 |
+
#: adrotate.php:560
|
752 |
msgid "AdRotate Settings"
|
753 |
msgstr "AdRotate 設定"
|
754 |
|
755 |
+
#: adrotate.php:631
|
756 |
msgid "Update Options"
|
757 |
msgstr "設定の更新"
|
758 |
|
805 |
"forum. Get a solution (usually) within a day."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
809 |
#, fuzzy
|
810 |
msgid "AdRotate is brought to you by"
|
811 |
msgstr "サービス紹介"
|
812 |
|
813 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
msgid "Schedule all campaigns with ease"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: dashboard/adrotatepro.php:77
|
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 |
"much more easy. You can set one or many schedules for adverts."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: dashboard/adrotatepro.php:81
|
826 |
msgid "Avoid adblockers"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: dashboard/adrotatepro.php:84
|
830 |
msgid ""
|
831 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
832 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
834 |
"adverts smartly so these features reach their full potential!"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: dashboard/adrotatepro.php:88
|
838 |
msgid "Stay up-to-date with notifications"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: dashboard/adrotatepro.php:91
|
842 |
msgid ""
|
843 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
844 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
847 |
"miss an expiration date again."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
851 |
+
#: dashboard/info.php:78
|
852 |
#, fuzzy
|
853 |
msgid "Buy AdRotate Professional"
|
854 |
msgstr "AdRotate Blog"
|
855 |
|
856 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
857 |
msgid "Single License"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
861 |
msgid "For one WordPress installation."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
865 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
866 |
msgid "Duo License"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
870 |
msgid "For two WordPress installations."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
874 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
875 |
msgid "Multi License"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
879 |
msgid " For up to five WordPress installations."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
883 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
884 |
#, fuzzy
|
885 |
msgid "Developer License"
|
886 |
msgstr "開発者向けデバッグ"
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
889 |
msgid "Unlimited WordPress installations and/or networks."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
893 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
894 |
msgid "Compare licenses"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
898 |
msgid "Not sure which license is for you? Compare them..."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
902 |
#, fuzzy
|
903 |
msgid "All Licenses"
|
904 |
msgstr "すべての広告の再評価"
|
905 |
|
906 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
907 |
msgid "Lifetime License"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
911 |
msgid "Single installation."
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
915 |
msgid "Up to 2 installations."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
919 |
msgid "Up to 10 installations."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
923 |
msgid "Up to 25 installations or multisite networks."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
927 |
msgid ""
|
928 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
932 |
msgid "Not sure which license is for you?"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
936 |
msgid "Compare Licenses"
|
937 |
msgstr ""
|
938 |
|
954 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
955 |
"さい。英語ですが。"
|
956 |
|
957 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
958 |
+
#: dashboard/publisher/groups-main.php:34
|
959 |
#, fuzzy
|
960 |
msgid "Adverts"
|
961 |
msgstr "新しい広告の承認"
|
981 |
|
982 |
#: dashboard/info.php:55
|
983 |
msgid ""
|
984 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
985 |
+
"for updates about me and my plugins. Thank you!"
|
986 |
msgstr ""
|
987 |
|
|
|
|
|
|
|
|
|
|
|
988 |
#: dashboard/info.php:103
|
989 |
+
msgid ""
|
990 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
991 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
992 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: dashboard/info.php:113
|
996 |
#, fuzzy
|
997 |
msgid "Get more features with AdRotate Pro"
|
998 |
msgstr ""
|
999 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
1000 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
1001 |
|
1002 |
+
#: dashboard/info.php:116
|
1003 |
msgid ""
|
1004 |
"Benefit from extra features to reinforce your income with advertising "
|
1005 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1006 |
"Pro offers on top of the trusted features included in the free version."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: dashboard/info.php:116
|
1010 |
msgid "Want to know more about"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: dashboard/info.php:116
|
1014 |
#, fuzzy
|
1015 |
msgid "Visit the"
|
1016 |
msgstr ""
|
1018 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
1019 |
"さい。英語ですが。"
|
1020 |
|
1021 |
+
#: dashboard/info.php:116
|
1022 |
#, fuzzy
|
1023 |
msgid "website"
|
1024 |
msgstr "開発者のWEBサイトは以下です。"
|
1025 |
|
1026 |
+
#: dashboard/info.php:120
|
1027 |
+
#, fuzzy
|
1028 |
+
msgid "AdRotate News and Developer Blog"
|
1029 |
+
msgstr "AdRotate Blog"
|
1030 |
+
|
1031 |
#: dashboard/publisher/adverts-disabled.php:15
|
1032 |
+
msgid "Disabled Adverts"
|
1033 |
+
msgstr ""
|
1034 |
|
1035 |
#: dashboard/publisher/adverts-disabled.php:21
|
1036 |
#: dashboard/publisher/adverts-edit.php:176
|
1066 |
|
1067 |
#: dashboard/publisher/adverts-disabled.php:39
|
1068 |
#: dashboard/publisher/adverts-main.php:46
|
1069 |
+
#: dashboard/publisher/adverts-report.php:36
|
1070 |
+
#: dashboard/publisher/adverts-report.php:57
|
1071 |
#: dashboard/publisher/groups-edit.php:334
|
1072 |
#: dashboard/publisher/groups-main.php:38
|
1073 |
+
#: dashboard/publisher/groups-report.php:37
|
1074 |
+
#: dashboard/publisher/groups-report.php:58
|
1075 |
msgid "Clicks"
|
1076 |
msgstr "クリック"
|
1077 |
|
1078 |
#: dashboard/publisher/adverts-disabled.php:40
|
1079 |
#: dashboard/publisher/adverts-main.php:48
|
1080 |
+
#: dashboard/publisher/adverts-report.php:39
|
1081 |
+
#: dashboard/publisher/adverts-report.php:58
|
1082 |
+
#: dashboard/publisher/groups-report.php:40
|
1083 |
+
#: dashboard/publisher/groups-report.php:59
|
1084 |
msgid "CTR"
|
1085 |
msgstr ""
|
1086 |
|
1465 |
msgstr ""
|
1466 |
|
1467 |
#: dashboard/publisher/adverts-edit.php:312
|
1468 |
+
#: dashboard/publisher/adverts-report.php:64
|
1469 |
+
#: dashboard/publisher/groups-report.php:65
|
1470 |
msgid "Note:"
|
1471 |
msgstr "注意:"
|
1472 |
|
1598 |
msgstr "承認待ち"
|
1599 |
|
1600 |
#: dashboard/publisher/adverts-error.php:12
|
1601 |
+
msgid "Adverts that need attention"
|
1602 |
+
msgstr ""
|
1603 |
|
1604 |
#: dashboard/publisher/adverts-error.php:20
|
1605 |
#: dashboard/publisher/adverts-main.php:21
|
1638 |
msgstr "個の広告が設定エラーになっています。"
|
1639 |
|
1640 |
#: dashboard/publisher/adverts-main.php:12
|
1641 |
+
msgid "Active Adverts"
|
1642 |
+
msgstr ""
|
1643 |
|
1644 |
#: dashboard/publisher/adverts-main.php:24
|
1645 |
#, fuzzy
|
1659 |
msgstr "本日"
|
1660 |
|
1661 |
#: dashboard/publisher/adverts-main.php:109
|
1662 |
+
msgid "No adverts created yet!"
|
1663 |
+
msgstr ""
|
1664 |
|
1665 |
+
#: dashboard/publisher/adverts-report.php:30
|
1666 |
#, fuzzy
|
1667 |
msgid "Statistics for advert"
|
1668 |
msgstr "統計 "
|
1669 |
|
1670 |
+
#: dashboard/publisher/adverts-report.php:35
|
1671 |
+
#: dashboard/publisher/adverts-report.php:56
|
1672 |
+
#: dashboard/publisher/groups-report.php:36
|
1673 |
+
#: dashboard/publisher/groups-report.php:57
|
1674 |
msgid "Impressions"
|
1675 |
msgstr "表示数"
|
1676 |
|
1677 |
+
#: dashboard/publisher/adverts-report.php:37
|
1678 |
+
#: dashboard/publisher/groups-report.php:38
|
1679 |
msgid "Impressions today"
|
1680 |
msgstr "今日の表示数"
|
1681 |
|
1682 |
+
#: dashboard/publisher/adverts-report.php:38
|
1683 |
+
#: dashboard/publisher/groups-report.php:39
|
1684 |
msgid "Clicks today"
|
1685 |
msgstr "今日のクリック数"
|
1686 |
|
1687 |
+
#: dashboard/publisher/adverts-report.php:45
|
1688 |
+
#: dashboard/publisher/groups-report.php:46
|
1689 |
#, fuzzy
|
1690 |
msgid "Monthly overview of clicks and impressions"
|
1691 |
msgstr "クリック"
|
1692 |
|
1693 |
+
#: dashboard/publisher/adverts-report.php:64
|
1694 |
+
#: dashboard/publisher/groups-report.php:65
|
1695 |
msgid ""
|
1696 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1697 |
"counted by other parties."
|
1719 |
msgstr "秒"
|
1720 |
|
1721 |
#: dashboard/publisher/groups-edit.php:66
|
1722 |
+
msgid "Block Mode - Show a block of adverts"
|
1723 |
+
msgstr ""
|
|
|
1724 |
|
1725 |
#: dashboard/publisher/groups-edit.php:70
|
1726 |
#, fuzzy
|
1774 |
msgstr "ピクセル(高さ)"
|
1775 |
|
1776 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1777 |
msgid ""
|
1778 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1779 |
"recommended). Default: 125/125."
|
1780 |
msgstr ""
|
|
|
1781 |
|
1782 |
#: dashboard/publisher/groups-edit.php:108
|
1783 |
msgid "Automated refresh"
|
1801 |
#: dashboard/publisher/groups-edit.php:141
|
1802 |
#: dashboard/publisher/groups-edit.php:288
|
1803 |
msgid ""
|
1804 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1805 |
+
"Adverts\" and enter ID"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: dashboard/publisher/groups-edit.php:153
|
2036 |
msgstr "掲載期限"
|
2037 |
|
2038 |
#: dashboard/publisher/groups-edit.php:379
|
2039 |
+
msgid "No adverts created!"
|
2040 |
+
msgstr ""
|
2041 |
|
2042 |
#: dashboard/publisher/groups-main.php:21
|
2043 |
msgid "Delete Group"
|
2044 |
msgstr "グループ削除"
|
2045 |
|
2046 |
#: dashboard/publisher/groups-main.php:22
|
2047 |
+
msgid "Delete Group including adverts"
|
2048 |
+
msgstr ""
|
2049 |
|
2050 |
#: dashboard/publisher/groups-main.php:24
|
2051 |
msgid "You are about to delete a group"
|
2064 |
msgid "No groups created!"
|
2065 |
msgstr "グループがまだ作られていません。"
|
2066 |
|
2067 |
+
#: dashboard/publisher/groups-report.php:31
|
2068 |
#, fuzzy
|
2069 |
msgid "Statistics for group"
|
2070 |
msgstr "統計 "
|
2551 |
msgstr ""
|
2552 |
|
2553 |
#: dashboard/settings/maintenance.php:70
|
2554 |
+
msgid "Banners/assets Folder"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: dashboard/settings/maintenance.php:72
|
2558 |
+
msgid "Exists and appears writable"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: dashboard/settings/maintenance.php:72
|
2562 |
+
msgid "Not writable or does not exist"
|
2563 |
+
msgstr ""
|
2564 |
+
|
2565 |
+
#: dashboard/settings/maintenance.php:76
|
2566 |
#, fuzzy
|
2567 |
msgid "Ad evaluation next run:"
|
2568 |
msgstr "通知先"
|
2569 |
|
2570 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2571 |
#, fuzzy
|
2572 |
msgid "Not scheduled!"
|
2573 |
msgstr "掲載期間"
|
2574 |
|
2575 |
+
#: dashboard/settings/maintenance.php:80
|
2576 |
#, fuzzy
|
2577 |
msgid "Clean Trackerdata next run:"
|
2578 |
msgstr "データベースのクリーンアップ"
|
2694 |
"ションを保存してから、テストして下さい。"
|
2695 |
|
2696 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2697 |
msgid "Email Notifications"
|
2698 |
msgstr "メール問い合わせ先"
|
2699 |
|
2700 |
+
#: dashboard/settings/notifications.php:32
|
2701 |
#, fuzzy
|
2702 |
msgid "Set up who gets notification emails."
|
2703 |
msgstr "すぐに注意を必要とする広告"
|
2704 |
|
2705 |
+
#: dashboard/settings/notifications.php:35
|
2706 |
+
#: dashboard/settings/notifications.php:55
|
2707 |
msgid "Publishers"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: dashboard/settings/notifications.php:38
|
2711 |
msgid ""
|
2712 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2713 |
"list to a minimum!"
|
2715 |
"コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
|
2716 |
"抑えて下さい。"
|
2717 |
|
2718 |
+
#: dashboard/settings/notifications.php:39
|
2719 |
#, fuzzy
|
2720 |
msgid ""
|
2721 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2724 |
"必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
|
2725 |
"合、メール通知は無効になります。"
|
2726 |
|
2727 |
+
#: dashboard/settings/notifications.php:43
|
2728 |
#, fuzzy
|
2729 |
msgid "Advertisers"
|
2730 |
msgstr "広告主から提出された広告を承認する権限"
|
2731 |
|
2732 |
+
#: dashboard/settings/notifications.php:46
|
2733 |
#, fuzzy
|
2734 |
msgid ""
|
2735 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2738 |
"最大2個のメールアドレスがコンマ区切りで登録できます。ここは空欄では利用できま"
|
2739 |
"せん。"
|
2740 |
|
2741 |
+
#: dashboard/settings/notifications.php:51
|
2742 |
#, fuzzy
|
2743 |
msgid "Push Notifications"
|
2744 |
msgstr "通知先"
|
2745 |
|
2746 |
+
#: dashboard/settings/notifications.php:52
|
2747 |
msgid ""
|
2748 |
"Receive information about what is happening with your AdRotate setup on your "
|
2749 |
"smartphone via Pushover."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: dashboard/settings/notifications.php:57
|
2753 |
msgid "When you are running out of Geo Targeting Lookups."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: dashboard/settings/notifications.php:58
|
2757 |
msgid "Daily digest of any advert status other than normal."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: dashboard/settings/notifications.php:59
|
2761 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: dashboard/settings/notifications.php:60
|
2765 |
#, fuzzy
|
2766 |
msgid "A moderator approved an advert from the moderation queue."
|
2767 |
msgstr "承認待ち広告の承認/拒否"
|
2768 |
|
2769 |
+
#: dashboard/settings/notifications.php:61
|
2770 |
#, fuzzy
|
2771 |
msgid "A moderator rejected an advert from the moderation queue."
|
2772 |
msgstr "承認待ち広告の承認/拒否"
|
2773 |
|
2774 |
+
#: dashboard/settings/notifications.php:61
|
2775 |
msgid ""
|
2776 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2777 |
"you may get a lot of messages!"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: dashboard/settings/notifications.php:66
|
2781 |
#, fuzzy
|
2782 |
msgid "User Key"
|
2783 |
msgstr "ユーザーエージェント[英語]"
|
2784 |
|
2785 |
+
#: dashboard/settings/notifications.php:68
|
2786 |
msgid "Get your user token"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: dashboard/settings/notifications.php:68
|
2790 |
+
#: dashboard/settings/notifications.php:74
|
2791 |
msgid "here"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: dashboard/settings/notifications.php:72
|
2795 |
msgid "Api Token"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: dashboard/settings/notifications.php:74
|
2799 |
msgid "Create your"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: dashboard/settings/notifications.php:74
|
2803 |
msgid "App"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: dashboard/settings/notifications.php:74
|
2807 |
msgid "and get your API token"
|
2808 |
msgstr ""
|
2809 |
|
2961 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2962 |
msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
2963 |
|
2964 |
+
#~ msgid "active ad(s) expired."
|
2965 |
+
#~ msgstr "個の広告が期限切れです。"
|
2966 |
+
|
2967 |
+
#~ msgid "Take action now"
|
2968 |
+
#~ msgstr "継続する場合は対応して下さい。"
|
2969 |
+
|
2970 |
+
#~ msgid "active ad(s) are about to expire."
|
2971 |
+
#~ msgstr "個の広告がまもなく期限切れです。"
|
2972 |
+
|
2973 |
+
#~ msgid "Check it out"
|
2974 |
+
#~ msgstr "チェックして下さい。"
|
2975 |
+
|
2976 |
+
#~ msgid "active ad(s) with configuration errors."
|
2977 |
+
#~ msgstr "個の広告が設定エラーになっています。"
|
2978 |
+
|
2979 |
+
#~ msgid "Solve this"
|
2980 |
+
#~ msgstr "これを解決して下さい。"
|
2981 |
+
|
2982 |
+
#~ msgid "ad(s) expired."
|
2983 |
+
#~ msgstr "個の広告が期限切れです。"
|
2984 |
+
|
2985 |
+
#~ msgid "ad(s) are about to expire."
|
2986 |
+
#~ msgstr "個の広告がまもなく期限切れです。"
|
2987 |
+
|
2988 |
+
#~ msgid "ad(s) with configuration errors."
|
2989 |
+
#~ msgstr "個の広告が設定エラーになっています。"
|
2990 |
+
|
2991 |
+
#~ msgid "Fix this as soon as possible"
|
2992 |
+
#~ msgstr "これは出来る限り早く修正して下さい。"
|
2993 |
+
|
2994 |
+
#~ msgid "Brought to you by"
|
2995 |
+
#~ msgstr "サービス紹介"
|
2996 |
+
|
2997 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2998 |
+
#~ msgstr "広告 - 広告IDを使ってください。"
|
2999 |
+
|
3000 |
+
#~ msgid "Group of Ads - Use group ID"
|
3001 |
+
#~ msgstr "広告グループ - グループIDを使ってください。"
|
3002 |
+
|
3003 |
+
#~ msgid "Manage Ads"
|
3004 |
+
#~ msgstr "広告管理"
|
3005 |
+
|
3006 |
+
#~ msgid "Ad Management"
|
3007 |
+
#~ msgstr "広告管理"
|
3008 |
+
|
3009 |
+
#~ msgid "Disabled Ads"
|
3010 |
+
#~ msgstr "掲載不可広告"
|
3011 |
+
|
3012 |
+
#~ msgid "Ads that need immediate attention"
|
3013 |
+
#~ msgstr "すぐに注意を必要とする広告"
|
3014 |
+
|
3015 |
+
#~ msgid "Active Ads"
|
3016 |
+
#~ msgstr "利用可能な広告"
|
3017 |
+
|
3018 |
+
#~ msgid "No ads created yet!"
|
3019 |
+
#~ msgstr "まだ広告が1つも作られていません。"
|
3020 |
+
|
3021 |
+
#, fuzzy
|
3022 |
+
#~ msgid "Block Mode - Show a block of ads"
|
3023 |
+
#~ msgstr "広告ブロック - ブロックIDを使ってください。"
|
3024 |
+
|
3025 |
+
#, fuzzy
|
3026 |
+
#~ msgid ""
|
3027 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
3028 |
+
#~ "recommended). Default: 125/125."
|
3029 |
+
#~ msgstr ""
|
3030 |
+
#~ "ピクセル単位で広告の最大サイズを定義します。高さは 'auto'を指定できます。"
|
3031 |
+
|
3032 |
+
#~ msgid "No ads created!"
|
3033 |
+
#~ msgstr "広告が作成されていません!"
|
3034 |
+
|
3035 |
+
#~ msgid "Delete Group including ads"
|
3036 |
+
#~ msgstr "広告が含まれるグループを削除します。"
|
3037 |
+
|
3038 |
+
#, fuzzy
|
3039 |
+
#~ msgid "Dashboard Notifications"
|
3040 |
+
#~ msgstr "通知先"
|
3041 |
+
|
3042 |
#, fuzzy
|
3043 |
#~ msgid "AdRotate Page"
|
3044 |
#~ msgstr "AdRotate Blog"
|
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:
|
6 |
-
"PO-Revision-Date:
|
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"
|
@@ -20,114 +20,114 @@ msgstr ""
|
|
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,175 +191,186 @@ 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 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
msgstr "
|
210 |
-
|
211 |
-
#: adrotate-output.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
-
|
215 |
-
#: adrotate-output.php:
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
msgstr "
|
222 |
-
|
223 |
-
#: adrotate-output.php:
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
msgstr "
|
230 |
-
|
231 |
-
#: adrotate-output.php:
|
232 |
-
msgid "
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
msgstr "
|
242 |
-
|
243 |
-
#: adrotate-output.php:
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#:
|
248 |
-
|
249 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
#: dashboard/settings/geotargeting.php:26
|
251 |
#, fuzzy
|
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 |
msgid "AdRotate website"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: adrotate-output.php:
|
303 |
#, fuzzy
|
304 |
msgid "Getting Started With AdRotate"
|
305 |
msgstr "Więcej ustawień z AdRotate Pro"
|
306 |
|
307 |
-
#: adrotate-output.php:
|
308 |
#, fuzzy
|
309 |
msgid "AdRotate manuals"
|
310 |
msgstr "Informacja AdRotate "
|
311 |
|
312 |
-
#: adrotate-output.php:
|
313 |
#, fuzzy
|
314 |
msgid "AdRotate Support Forum"
|
315 |
msgstr "Sklep AdRotate"
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
#, fuzzy
|
319 |
msgid "Help AdRotate Grow"
|
320 |
msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
-
msgid "
|
324 |
-
msgstr "
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid ""
|
328 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
329 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: adrotate-output.php:
|
333 |
msgid "If you find AdRotate useful please leave your honest"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: adrotate-output.php:
|
337 |
msgid "rating"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
#, fuzzy
|
342 |
msgid "review"
|
343 |
msgstr ""
|
344 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "Available in AdRotate Pro"
|
352 |
msgstr "Dostępne w wersji AdRotate Pro"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "More information..."
|
356 |
msgstr "Więcej informacji"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
msgid "This feature is available in AdRotate Pro"
|
360 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
361 |
|
362 |
-
#: adrotate-output.php:
|
363 |
msgid "Learn more"
|
364 |
msgstr "Dowiedź się więcej"
|
365 |
|
@@ -439,117 +450,117 @@ msgstr "Następny"
|
|
439 |
msgid "No data to show!"
|
440 |
msgstr "Brak danych !"
|
441 |
|
442 |
-
#: adrotate-widget.php:
|
443 |
msgid "Title (optional):"
|
444 |
msgstr "Tytuł (opcjonalnie):"
|
445 |
|
446 |
-
#: adrotate-widget.php:
|
447 |
msgid "HTML will be stripped out."
|
448 |
msgstr "Znaczniki HTML będą wyrzucane."
|
449 |
|
450 |
-
#: adrotate-widget.php:
|
451 |
msgid "Description (optional):"
|
452 |
msgstr "Opis (opcjonalny):"
|
453 |
|
454 |
-
#: adrotate-widget.php:
|
455 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
456 |
msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
|
457 |
|
458 |
-
#: adrotate-widget.php:
|
459 |
msgid "Type:"
|
460 |
msgstr "Typ:"
|
461 |
|
462 |
-
#: adrotate-widget.php:
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: adrotate-widget.php:
|
467 |
-
msgid "Group
|
468 |
-
msgstr "
|
469 |
|
470 |
-
#: adrotate-widget.php:
|
471 |
msgid "Choose what you want to use this widget for"
|
472 |
msgstr "Wybierz do czego chcesz użyć tego widżetu"
|
473 |
|
474 |
-
#: adrotate-widget.php:
|
475 |
msgid "ID:"
|
476 |
msgstr "ID:"
|
477 |
|
478 |
-
#: adrotate-widget.php:
|
479 |
msgid "Fill in the ID of the type you want to display!"
|
480 |
msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
msgid "General Info"
|
484 |
msgstr "Informacje główne"
|
485 |
|
486 |
-
#: adrotate.php:
|
487 |
msgid "AdRotate Pro"
|
488 |
msgstr "AdRotate Pro"
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
-
msgid "Manage
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
msgid "Manage Groups"
|
496 |
msgstr "Zarządzaj grupami"
|
497 |
|
498 |
-
#: adrotate.php:
|
499 |
#, fuzzy
|
500 |
msgid "Manage Schedules"
|
501 |
msgstr "Zarządzaj"
|
502 |
|
503 |
-
#: adrotate.php:
|
504 |
#, fuzzy
|
505 |
msgid "Manage Media"
|
506 |
msgstr "Media:"
|
507 |
|
508 |
-
#: adrotate.php:
|
509 |
msgid "Settings"
|
510 |
msgstr "Ustawienia"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "AdRotate Info"
|
514 |
msgstr "Informacja AdRotate "
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "AdRotate Professional"
|
518 |
msgstr "AdRotate Professional"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
-
msgid "
|
522 |
-
msgstr "
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Manage"
|
526 |
msgstr "Zarządzaj"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Add New"
|
530 |
msgstr "Dodaj nową"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
msgid "Group Management"
|
534 |
msgstr "Zarządzanie grupą reklam"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
#: dashboard/publisher/groups-main.php:70
|
538 |
msgid "Report"
|
539 |
msgstr "Raport"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
#, fuzzy
|
543 |
msgid "Schedule Management available in AdRotate Pro"
|
544 |
msgstr "Dostępne w wersji AdRotate Pro"
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
msgid ""
|
548 |
"Schedule management and multiple schedules per advert is available in "
|
549 |
"AdRotate Pro."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: adrotate.php:
|
553 |
#: dashboard/publisher/adverts-main.php:114
|
554 |
#: dashboard/publisher/groups-edit.php:75
|
555 |
#: dashboard/publisher/groups-main.php:89
|
@@ -557,21 +568,21 @@ msgstr ""
|
|
557 |
msgid "More information"
|
558 |
msgstr "Więcej informacji"
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
#: dashboard/publisher/adverts-error.php:19
|
562 |
#: dashboard/publisher/adverts-main.php:20
|
563 |
#: dashboard/publisher/groups-main.php:20
|
564 |
msgid "Bulk Actions"
|
565 |
msgstr "Działania masowe"
|
566 |
|
567 |
-
#: adrotate.php:
|
568 |
#: dashboard/publisher/adverts-error.php:29
|
569 |
#: dashboard/publisher/adverts-main.php:30
|
570 |
#: dashboard/publisher/groups-main.php:24
|
571 |
msgid "Go"
|
572 |
msgstr "Idź"
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
#: dashboard/publisher/adverts-error.php:39
|
576 |
#: dashboard/publisher/adverts-main.php:39
|
577 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -579,107 +590,106 @@ msgstr "Idź"
|
|
579 |
msgid "ID"
|
580 |
msgstr "ID"
|
581 |
|
582 |
-
#: adrotate.php:
|
583 |
#, fuzzy
|
584 |
msgid "Start"
|
585 |
msgstr "Start / Koniec"
|
586 |
|
587 |
-
#: adrotate.php:
|
588 |
#, fuzzy
|
589 |
msgid "End"
|
590 |
msgstr "Start / Koniec"
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
-
#: dashboard/publisher/groups-main.php:34
|
594 |
msgid "Ads"
|
595 |
msgstr "Reklamy"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Max Impressions"
|
599 |
msgstr "Maksymalna liczba wyświetleń"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
msgid "Max Clicks"
|
603 |
msgstr "Maksymalna liczna kliknięć"
|
604 |
|
605 |
-
#: adrotate.php:
|
606 |
#, fuzzy
|
607 |
msgid "No schedules created yet!"
|
608 |
msgstr "Nie utworzono jeszcze żadnych reklam!"
|
609 |
|
610 |
-
#: adrotate.php:
|
611 |
#, fuzzy
|
612 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
613 |
msgstr "Więcej ustawień z AdRotate Pro"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
#, fuzzy
|
617 |
msgid "Upgrade today!"
|
618 |
msgstr "Dziś"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
#: dashboard/publisher/groups-edit.php:387
|
622 |
msgid "Expires soon."
|
623 |
msgstr "Wygasa wkrótce."
|
624 |
|
625 |
-
#: adrotate.php:
|
626 |
#: dashboard/publisher/groups-edit.php:388
|
627 |
msgid "Has expired."
|
628 |
msgstr "Wygasła."
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
#, fuzzy
|
632 |
msgid "Media Management available in AdRotate Pro"
|
633 |
msgstr "Dostępne w wersji AdRotate Pro"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid ""
|
641 |
"This is useful if you use responsive adverts with multiple images or have "
|
642 |
"HTML5 adverts containing multiple files."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
#, fuzzy
|
647 |
msgid "Media uploading and management is available in AdRotate Pro."
|
648 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
msgid "Upload new file"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: adrotate.php:
|
655 |
msgid "Accepted files:"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: adrotate.php:
|
663 |
msgid "Maximum size is 512Kb."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: adrotate.php:
|
667 |
msgid "Important:"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: adrotate.php:
|
671 |
msgid ""
|
672 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
673 |
"spaces with a - or _."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid ""
|
678 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
679 |
"file so it knows about the changed name. For example for the javascript file."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: adrotate.php:
|
683 |
#, fuzzy
|
684 |
msgid ""
|
685 |
"For responsive adverts make sure the filename is in the following format; "
|
@@ -689,7 +699,7 @@ msgstr ""
|
|
689 |
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
690 |
"pełnego wachlarza rozmiarów.'"
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
msgid ""
|
694 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
695 |
"filename instead of \".full\" for the various viewports."
|
@@ -697,12 +707,12 @@ msgstr ""
|
|
697 |
"Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
|
698 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
699 |
|
700 |
-
#: adrotate.php:
|
701 |
#: dashboard/publisher/groups-edit.php:320
|
702 |
msgid "Example:"
|
703 |
msgstr "Przykład:"
|
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 +721,51 @@ msgstr ""
|
|
711 |
"image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
|
712 |
"różnych widokach. Wymaga 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 "Nazwa"
|
730 |
|
731 |
-
#: adrotate.php:
|
732 |
#, fuzzy
|
733 |
msgid "Actions"
|
734 |
msgstr "Działania masowe"
|
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 "Usuń"
|
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 "Więcej ustawień z AdRotate Pro"
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
msgid "AdRotate Settings"
|
756 |
msgstr "Ustawienia AdRotate"
|
757 |
|
758 |
-
#: adrotate.php:
|
759 |
msgid "Update Options"
|
760 |
msgstr "Zapisz opcje"
|
761 |
|
@@ -812,22 +822,15 @@ msgid ""
|
|
812 |
"forum. Get a solution (usually) within a day."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
816 |
msgid "AdRotate is brought to you by"
|
817 |
msgstr "Możesz koszystać z AdRotate dzięki"
|
818 |
|
819 |
-
#: dashboard/adrotatepro.php:
|
820 |
-
msgid ""
|
821 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
822 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
823 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
824 |
-
msgstr ""
|
825 |
-
|
826 |
-
#: dashboard/adrotatepro.php:81
|
827 |
msgid "Schedule all campaigns with ease"
|
828 |
msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
|
829 |
|
830 |
-
#: dashboard/adrotatepro.php:
|
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,11 +838,11 @@ msgid ""
|
|
835 |
"much more easy. You can set one or many schedules for adverts."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: dashboard/adrotatepro.php:
|
839 |
msgid "Avoid adblockers"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: dashboard/adrotatepro.php:
|
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 "
|
@@ -847,11 +850,11 @@ msgid ""
|
|
847 |
"adverts smartly so these features reach their full potential!"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: dashboard/adrotatepro.php:
|
851 |
msgid "Stay up-to-date with notifications"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: dashboard/adrotatepro.php:
|
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,89 +863,89 @@ msgid ""
|
|
860 |
"miss an expiration date again."
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: dashboard/adrotatepro.php:
|
864 |
-
#: dashboard/info.php:
|
865 |
msgid "Buy AdRotate Professional"
|
866 |
msgstr "Kup AdRotate Pro"
|
867 |
|
868 |
-
#: dashboard/adrotatepro.php:
|
869 |
msgid "Single License"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: dashboard/adrotatepro.php:
|
873 |
msgid "For one WordPress installation."
|
874 |
msgstr "dla jednej instalcji Wordpressa"
|
875 |
|
876 |
-
#: dashboard/adrotatepro.php:
|
877 |
-
#: dashboard/info.php:
|
878 |
msgid "Duo License"
|
879 |
msgstr "Podwójna licencja"
|
880 |
|
881 |
-
#: dashboard/adrotatepro.php:
|
882 |
msgid "For two WordPress installations."
|
883 |
msgstr "dla dwóch instalcji Wordpressa"
|
884 |
|
885 |
-
#: dashboard/adrotatepro.php:
|
886 |
-
#: dashboard/info.php:
|
887 |
msgid "Multi License"
|
888 |
msgstr "Multi licencja"
|
889 |
|
890 |
-
#: dashboard/adrotatepro.php:
|
891 |
msgid " For up to five WordPress installations."
|
892 |
msgstr "dla 5 instalacji Wordpessa."
|
893 |
|
894 |
-
#: dashboard/adrotatepro.php:
|
895 |
-
#: dashboard/info.php:
|
896 |
msgid "Developer License"
|
897 |
msgstr "Licencja Programisty"
|
898 |
|
899 |
-
#: dashboard/adrotatepro.php:
|
900 |
msgid "Unlimited WordPress installations and/or networks."
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: dashboard/adrotatepro.php:
|
904 |
-
#: dashboard/info.php:
|
905 |
msgid "Compare licenses"
|
906 |
msgstr "Porównaj licencje."
|
907 |
|
908 |
-
#: dashboard/adrotatepro.php:
|
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:
|
913 |
msgid "All Licenses"
|
914 |
msgstr "Wszystkie licencje"
|
915 |
|
916 |
-
#: dashboard/adrotatepro.php:
|
917 |
msgid "Lifetime License"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: dashboard/adrotatepro.php:
|
921 |
msgid "Single installation."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: dashboard/adrotatepro.php:
|
925 |
msgid "Up to 2 installations."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: dashboard/adrotatepro.php:
|
929 |
msgid "Up to 10 installations."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: dashboard/adrotatepro.php:
|
933 |
msgid "Up to 25 installations or multisite networks."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: dashboard/adrotatepro.php:
|
937 |
msgid ""
|
938 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: dashboard/adrotatepro.php:
|
942 |
msgid "Not sure which license is for you?"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: dashboard/adrotatepro.php:
|
946 |
msgid "Compare Licenses"
|
947 |
msgstr ""
|
948 |
|
@@ -958,7 +961,8 @@ msgstr "Twoje ustawienia"
|
|
958 |
msgid "Adverts that need you"
|
959 |
msgstr "Reklamy wymagające uwagi"
|
960 |
|
961 |
-
#: dashboard/info.php:37
|
|
|
962 |
msgid "Adverts"
|
963 |
msgstr "Reklamy"
|
964 |
|
@@ -980,19 +984,22 @@ msgstr "Wesprzyj AdRotate"
|
|
980 |
|
981 |
#: dashboard/info.php:55
|
982 |
msgid ""
|
983 |
-
"
|
984 |
-
"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: dashboard/info.php:81
|
988 |
-
msgid "AdRotate News and Developer Blog"
|
989 |
-
msgstr "AdRotere Wiadomości i Blog "
|
990 |
-
|
991 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
msgid "Get more features with AdRotate Pro"
|
993 |
msgstr "Więcej ustawień z AdRotate Pro"
|
994 |
|
995 |
-
#: dashboard/info.php:
|
996 |
msgid ""
|
997 |
"Benefit from extra features to reinforce your income with advertising "
|
998 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
@@ -1002,21 +1009,25 @@ msgstr ""
|
|
1002 |
"Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
|
1003 |
"funkcjom."
|
1004 |
|
1005 |
-
#: dashboard/info.php:
|
1006 |
msgid "Want to know more about"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: dashboard/info.php:
|
1010 |
msgid "Visit the"
|
1011 |
msgstr "Odwiedź"
|
1012 |
|
1013 |
-
#: dashboard/info.php:
|
1014 |
msgid "website"
|
1015 |
msgstr "strone internetową"
|
1016 |
|
|
|
|
|
|
|
|
|
1017 |
#: dashboard/publisher/adverts-disabled.php:15
|
1018 |
-
msgid "Disabled
|
1019 |
-
msgstr "
|
1020 |
|
1021 |
#: dashboard/publisher/adverts-disabled.php:21
|
1022 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1051,17 +1062,21 @@ msgstr "Wyświetlane"
|
|
1051 |
|
1052 |
#: dashboard/publisher/adverts-disabled.php:39
|
1053 |
#: dashboard/publisher/adverts-main.php:46
|
1054 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1055 |
#: dashboard/publisher/groups-edit.php:334
|
1056 |
#: dashboard/publisher/groups-main.php:38
|
1057 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1058 |
msgid "Clicks"
|
1059 |
msgstr "Kliknięcia"
|
1060 |
|
1061 |
#: dashboard/publisher/adverts-disabled.php:40
|
1062 |
#: dashboard/publisher/adverts-main.php:48
|
1063 |
-
#: dashboard/publisher/adverts-report.php:
|
1064 |
-
#: dashboard/publisher/
|
|
|
|
|
1065 |
msgid "CTR"
|
1066 |
msgstr "CTR"
|
1067 |
|
@@ -1435,8 +1450,8 @@ msgid ""
|
|
1435 |
msgstr ""
|
1436 |
|
1437 |
#: dashboard/publisher/adverts-edit.php:312
|
1438 |
-
#: dashboard/publisher/adverts-report.php:
|
1439 |
-
#: dashboard/publisher/groups-report.php:
|
1440 |
msgid "Note:"
|
1441 |
msgstr "Notatka:"
|
1442 |
|
@@ -1559,8 +1574,8 @@ msgid "Mode"
|
|
1559 |
msgstr "Tryb"
|
1560 |
|
1561 |
#: dashboard/publisher/adverts-error.php:12
|
1562 |
-
msgid "
|
1563 |
-
msgstr "
|
1564 |
|
1565 |
#: dashboard/publisher/adverts-error.php:20
|
1566 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1598,8 +1613,8 @@ msgid "Configuration errors."
|
|
1598 |
msgstr "Błedy konfiguracji."
|
1599 |
|
1600 |
#: dashboard/publisher/adverts-main.php:12
|
1601 |
-
msgid "Active
|
1602 |
-
msgstr "
|
1603 |
|
1604 |
#: dashboard/publisher/adverts-main.php:24
|
1605 |
#, fuzzy
|
@@ -1619,35 +1634,37 @@ msgid "Today"
|
|
1619 |
msgstr "Dziś"
|
1620 |
|
1621 |
#: dashboard/publisher/adverts-main.php:109
|
1622 |
-
msgid "No
|
1623 |
-
msgstr "
|
1624 |
|
1625 |
-
#: dashboard/publisher/adverts-report.php:
|
1626 |
msgid "Statistics for advert"
|
1627 |
msgstr "Statystyki dla reklamy"
|
1628 |
|
1629 |
-
#: dashboard/publisher/adverts-report.php:
|
1630 |
-
#: dashboard/publisher/
|
|
|
|
|
1631 |
msgid "Impressions"
|
1632 |
msgstr "Wyświetlenia"
|
1633 |
|
1634 |
-
#: dashboard/publisher/adverts-report.php:
|
1635 |
-
#: dashboard/publisher/groups-report.php:
|
1636 |
msgid "Impressions today"
|
1637 |
msgstr "Dzisiejsze wyświetlenia"
|
1638 |
|
1639 |
-
#: dashboard/publisher/adverts-report.php:
|
1640 |
-
#: dashboard/publisher/groups-report.php:
|
1641 |
msgid "Clicks today"
|
1642 |
msgstr "Dzisiejsze kliknięcia "
|
1643 |
|
1644 |
-
#: dashboard/publisher/adverts-report.php:
|
1645 |
-
#: dashboard/publisher/groups-report.php:
|
1646 |
msgid "Monthly overview of clicks and impressions"
|
1647 |
msgstr "Miesięczne zestawienie kliknięć i wyświetleń"
|
1648 |
|
1649 |
-
#: dashboard/publisher/adverts-report.php:
|
1650 |
-
#: dashboard/publisher/groups-report.php:
|
1651 |
msgid ""
|
1652 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1653 |
"counted by other parties."
|
@@ -1672,8 +1689,8 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1672 |
msgstr "Tryb dynamiczny - Zmieniaj reklamy co kilka sekund"
|
1673 |
|
1674 |
#: dashboard/publisher/groups-edit.php:66
|
1675 |
-
msgid "Block Mode - Show a block of
|
1676 |
-
msgstr "
|
1677 |
|
1678 |
#: dashboard/publisher/groups-edit.php:70
|
1679 |
#, fuzzy
|
@@ -1725,13 +1742,10 @@ msgid "pixel(s) high."
|
|
1725 |
msgstr "wysokość w pikselach"
|
1726 |
|
1727 |
#: dashboard/publisher/groups-edit.php:104
|
1728 |
-
#, fuzzy
|
1729 |
msgid ""
|
1730 |
-
"Define the maximum size of the
|
1731 |
"recommended). Default: 125/125."
|
1732 |
msgstr ""
|
1733 |
-
"Ustal maksymalny rozmiar reklam w pikselach po uwzględnieniu marginesu. "
|
1734 |
-
"Rozmiar może być ustawiony na 'auto' (Nie zalecane). Domyślnie: 125/125."
|
1735 |
|
1736 |
#: dashboard/publisher/groups-edit.php:108
|
1737 |
msgid "Automated refresh"
|
@@ -1755,8 +1769,8 @@ msgstr ""
|
|
1755 |
#: dashboard/publisher/groups-edit.php:141
|
1756 |
#: dashboard/publisher/groups-edit.php:288
|
1757 |
msgid ""
|
1758 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1759 |
-
"\" and enter ID"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1980,16 +1994,16 @@ msgid "Visible until"
|
|
1980 |
msgstr "Widoczne do"
|
1981 |
|
1982 |
#: dashboard/publisher/groups-edit.php:379
|
1983 |
-
msgid "No
|
1984 |
-
msgstr "
|
1985 |
|
1986 |
#: dashboard/publisher/groups-main.php:21
|
1987 |
msgid "Delete Group"
|
1988 |
msgstr "Usuń grupę"
|
1989 |
|
1990 |
#: dashboard/publisher/groups-main.php:22
|
1991 |
-
msgid "Delete Group including
|
1992 |
-
msgstr "
|
1993 |
|
1994 |
#: dashboard/publisher/groups-main.php:24
|
1995 |
msgid "You are about to delete a group"
|
@@ -2008,7 +2022,7 @@ msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
|
|
2008 |
msgid "No groups created!"
|
2009 |
msgstr "Nie utworzono grupy!"
|
2010 |
|
2011 |
-
#: dashboard/publisher/groups-report.php:
|
2012 |
msgid "Statistics for group"
|
2013 |
msgstr "Statystyki dla grupy"
|
2014 |
|
@@ -2473,15 +2487,27 @@ msgid "Unknown"
|
|
2473 |
msgstr ""
|
2474 |
|
2475 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2476 |
#, fuzzy
|
2477 |
msgid "Ad evaluation next run:"
|
2478 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
2479 |
|
2480 |
-
#: dashboard/settings/maintenance.php:
|
2481 |
msgid "Not scheduled!"
|
2482 |
msgstr "Nie ustalono harmnogramu!"
|
2483 |
|
2484 |
-
#: dashboard/settings/maintenance.php:
|
2485 |
msgid "Clean Trackerdata next run:"
|
2486 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
2487 |
|
@@ -2604,35 +2630,19 @@ msgid ""
|
|
2604 |
msgstr ""
|
2605 |
|
2606 |
#: dashboard/settings/notifications.php:31
|
2607 |
-
msgid "Dashboard Notifications"
|
2608 |
-
msgstr "Powiadomienia panelu administracyjnego"
|
2609 |
-
|
2610 |
-
#: dashboard/settings/notifications.php:32
|
2611 |
-
msgid "These show to every administrator who can edit adverts."
|
2612 |
-
msgstr ""
|
2613 |
-
|
2614 |
-
#: dashboard/settings/notifications.php:35
|
2615 |
-
msgid "Notification banners"
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#: dashboard/settings/notifications.php:36
|
2619 |
-
msgid "Disable dashboard notifications."
|
2620 |
-
msgstr ""
|
2621 |
-
|
2622 |
-
#: dashboard/settings/notifications.php:40
|
2623 |
msgid "Email Notifications"
|
2624 |
msgstr "Powiadomienie na email"
|
2625 |
|
2626 |
-
#: dashboard/settings/notifications.php:
|
2627 |
msgid "Set up who gets notification emails."
|
2628 |
msgstr "Ustal kto otrzymuje powiadomienia na email."
|
2629 |
|
2630 |
-
#: dashboard/settings/notifications.php:
|
2631 |
-
#: dashboard/settings/notifications.php:
|
2632 |
msgid "Publishers"
|
2633 |
msgstr "Ogłoszeniodawcy"
|
2634 |
|
2635 |
-
#: dashboard/settings/notifications.php:
|
2636 |
msgid ""
|
2637 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2638 |
"list to a minimum!"
|
@@ -2641,7 +2651,7 @@ msgstr ""
|
|
2641 |
"adresów. Postaraj się by ta lista była jak najmniejsza! Gdyż może to zbytnio "
|
2642 |
"obciążać system."
|
2643 |
|
2644 |
-
#: dashboard/settings/notifications.php:
|
2645 |
msgid ""
|
2646 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2647 |
"email notifications will be send."
|
@@ -2649,11 +2659,11 @@ msgstr ""
|
|
2649 |
"Wiadomości są wysyłane raz na 24 godziny jeśli jest to faktycznie potrzebne. "
|
2650 |
"Jeśli pozostawisz te pole puste, żadne wiadomości mailowe nie bądą wysyłane."
|
2651 |
|
2652 |
-
#: dashboard/settings/notifications.php:
|
2653 |
msgid "Advertisers"
|
2654 |
msgstr "Reklamodawcy"
|
2655 |
|
2656 |
-
#: dashboard/settings/notifications.php:
|
2657 |
msgid ""
|
2658 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2659 |
"This field may not be empty!"
|
@@ -2661,11 +2671,11 @@ msgstr ""
|
|
2661 |
"Kto otrzymuje maile od reklamodawców. Maksymalnie 2 adresy odzielone "
|
2662 |
"średnikiem. Te pole nie możę być puste!."
|
2663 |
|
2664 |
-
#: dashboard/settings/notifications.php:
|
2665 |
msgid "Push Notifications"
|
2666 |
msgstr "Powiadomienia typu PUSH"
|
2667 |
|
2668 |
-
#: dashboard/settings/notifications.php:
|
2669 |
msgid ""
|
2670 |
"Receive information about what is happening with your AdRotate setup on your "
|
2671 |
"smartphone via Pushover."
|
@@ -2673,29 +2683,29 @@ msgstr ""
|
|
2673 |
"Możesz otrzymywać wiadomości na smartphona o tym co dzieje się z Twoją "
|
2674 |
"aplikacją AdRotate. Możliwe jest to dzięki aplikacjio Pushover."
|
2675 |
|
2676 |
-
#: dashboard/settings/notifications.php:
|
2677 |
msgid "When you are running out of Geo Targeting Lookups."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: dashboard/settings/notifications.php:
|
2681 |
msgid "Daily digest of any advert status other than normal."
|
2682 |
msgstr "Dzienne podsumowania reklam inne niż normalne."
|
2683 |
|
2684 |
-
#: dashboard/settings/notifications.php:
|
2685 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2686 |
msgstr ""
|
2687 |
"Każdy reklamodawca zapisuje swoje reklamy w Twojej kolejce moderacyjnej."
|
2688 |
|
2689 |
-
#: dashboard/settings/notifications.php:
|
2690 |
msgid "A moderator approved an advert from the moderation queue."
|
2691 |
msgstr ""
|
2692 |
"Moderator zatwierdza reklamy umieszczone wcześniej w kolejce moderacyjnej."
|
2693 |
|
2694 |
-
#: dashboard/settings/notifications.php:
|
2695 |
msgid "A moderator rejected an advert from the moderation queue."
|
2696 |
msgstr "Moderator wyrzuca reklamuy z kolejki moderacyjnej."
|
2697 |
|
2698 |
-
#: dashboard/settings/notifications.php:
|
2699 |
msgid ""
|
2700 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2701 |
"you may get a lot of messages!"
|
@@ -2703,32 +2713,32 @@ msgstr ""
|
|
2703 |
"Jeśli odnotowujesz dużą aktwywność reklamodawców dodających i zmieniających "
|
2704 |
"reklamy możesz otrzymywać duża ilość wiadomości!"
|
2705 |
|
2706 |
-
#: dashboard/settings/notifications.php:
|
2707 |
msgid "User Key"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: dashboard/settings/notifications.php:
|
2711 |
msgid "Get your user token"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: dashboard/settings/notifications.php:
|
2715 |
-
#: dashboard/settings/notifications.php:
|
2716 |
msgid "here"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: dashboard/settings/notifications.php:
|
2720 |
msgid "Api Token"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: dashboard/settings/notifications.php:
|
2724 |
msgid "Create your"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: dashboard/settings/notifications.php:
|
2728 |
msgid "App"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: dashboard/settings/notifications.php:
|
2732 |
msgid "and get your API token"
|
2733 |
msgstr ""
|
2734 |
|
@@ -2884,6 +2894,83 @@ msgid ""
|
|
2884 |
msgstr ""
|
2885 |
"Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
|
2886 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2887 |
#, fuzzy
|
2888 |
#~ msgid "AdRotate Page"
|
2889 |
#~ msgstr "AdRotate Pro"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:57+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:57+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"
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
+
#: adrotate-functions.php:844
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
+
#: adrotate-functions.php:847
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
+
#: adrotate-functions.php:896
|
32 |
msgid "Ad saved"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: adrotate-functions.php:900
|
36 |
msgid "Group saved"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: adrotate-functions.php:904
|
40 |
msgid "Ad(s) deleted"
|
41 |
msgstr "Reklama usunięta"
|
42 |
|
43 |
+
#: adrotate-functions.php:908
|
44 |
msgid "Group deleted"
|
45 |
msgstr "Grupa usunięta"
|
46 |
|
47 |
+
#: adrotate-functions.php:912
|
48 |
msgid "Ad(s) statistics reset"
|
49 |
msgstr "Resetuj statystyki reklamy"
|
50 |
|
51 |
+
#: adrotate-functions.php:916
|
52 |
msgid "Ad(s) renewed"
|
53 |
msgstr "Odnów reklamę"
|
54 |
|
55 |
+
#: adrotate-functions.php:920
|
56 |
msgid "Ad(s) deactivated"
|
57 |
msgstr "Reklama wyłączona"
|
58 |
|
59 |
+
#: adrotate-functions.php:924
|
60 |
msgid "Ad(s) activated"
|
61 |
msgstr "Reklama włączona"
|
62 |
|
63 |
+
#: adrotate-functions.php:928
|
64 |
msgid "Group including it's Ads deleted"
|
65 |
msgstr "Grupa wraz z reklamami usunięta"
|
66 |
|
67 |
+
#: adrotate-functions.php:932
|
68 |
#, fuzzy
|
69 |
msgid "Export created"
|
70 |
msgstr "Reklama utworzona"
|
71 |
|
72 |
+
#: adrotate-functions.php:937
|
73 |
msgid "Settings saved"
|
74 |
msgstr "Ustawienia zapisane"
|
75 |
|
76 |
+
#: adrotate-functions.php:941
|
77 |
msgid "Database optimized"
|
78 |
msgstr "Baza danych zoptymalizowana"
|
79 |
|
80 |
+
#: adrotate-functions.php:945
|
81 |
msgid "Database repaired"
|
82 |
msgstr "Baza danych naprawiona"
|
83 |
|
84 |
+
#: adrotate-functions.php:949
|
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:953
|
89 |
msgid "Empty database records removed"
|
90 |
msgstr "Usunięto puste rekordy bazy danych"
|
91 |
|
92 |
+
#: adrotate-functions.php:958
|
93 |
msgid "Action prohibited"
|
94 |
msgstr "Czynność zabroniona."
|
95 |
|
96 |
+
#: adrotate-functions.php:962
|
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:966
|
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:970
|
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:974
|
111 |
msgid "Form can not be (partially) empty!"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:978
|
115 |
msgid "No ads found."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-functions.php:982
|
119 |
msgid "Unexpected error"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-manage-publisher.php:702
|
123 |
msgid "AdRotate Advertiser"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: adrotate-output.php:607
|
127 |
msgid "Oh no! Something went wrong!"
|
128 |
msgstr "Uwaga ! Coś poszło nie tak !"
|
129 |
|
130 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
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:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
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:651
|
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:656
|
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:662
|
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:662
|
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:668
|
200 |
msgid "An unknown error occured."
|
201 |
msgstr "Pojawił się nieznany błąd."
|
202 |
|
203 |
+
#: adrotate-output.php:687
|
204 |
+
#, php-format
|
205 |
+
msgid "One advert is expired."
|
206 |
+
msgid_plural "%1$s adverts expired!"
|
207 |
+
msgstr[0] ""
|
208 |
+
msgstr[1] ""
|
209 |
+
msgstr[2] ""
|
210 |
+
|
211 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
212 |
+
msgid "Check adverts"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: adrotate-output.php:690
|
216 |
+
#, php-format
|
217 |
+
msgid "One advert expires soon."
|
218 |
+
msgid_plural "%1$s adverts are almost expiring!"
|
219 |
+
msgstr[0] ""
|
220 |
+
msgstr[1] ""
|
221 |
+
msgstr[2] ""
|
222 |
+
|
223 |
+
#: adrotate-output.php:693
|
224 |
+
#, php-format
|
225 |
+
msgid "One advert with configuration errors."
|
226 |
+
msgid_plural "%1$s adverts have configuration errors!"
|
227 |
+
msgstr[0] ""
|
228 |
+
msgstr[1] ""
|
229 |
+
msgstr[2] ""
|
230 |
+
|
231 |
+
#: adrotate-output.php:698
|
232 |
+
msgid ""
|
233 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
234 |
+
"site!"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: adrotate-output.php:701
|
238 |
+
msgid ""
|
239 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
240 |
+
"not set."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: adrotate-output.php:706
|
244 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: adrotate-output.php:728
|
248 |
+
msgid "one issue that requires"
|
249 |
+
msgid_plural "several issues that require"
|
250 |
+
msgstr[0] ""
|
251 |
+
msgstr[1] ""
|
252 |
+
msgstr[2] ""
|
253 |
+
|
254 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
255 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
256 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
257 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
258 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
259 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
260 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
261 |
#: dashboard/settings/geotargeting.php:26
|
262 |
#, fuzzy
|
263 |
msgid "Buy now"
|
264 |
msgstr "Kup"
|
265 |
|
266 |
+
#: adrotate-output.php:747
|
267 |
msgid ""
|
268 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
269 |
"to the <strong>PRO</strong> version"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: adrotate-output.php:747
|
273 |
#, php-format
|
274 |
msgid ""
|
275 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: adrotate-output.php:747
|
279 |
msgid "Thank you for your purchase!"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: adrotate-output.php:791
|
283 |
msgid ""
|
284 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
285 |
"this menu. Check out the"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: adrotate-output.php:791
|
289 |
msgid "manuals"
|
290 |
msgstr "instrukcje"
|
291 |
|
292 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
293 |
msgid "and"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: adrotate-output.php:791
|
297 |
msgid "forums"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: adrotate-output.php:824
|
301 |
#, fuzzy
|
302 |
msgid "Useful Links"
|
303 |
msgstr "Użyteczne odnośniki."
|
304 |
|
305 |
+
#: adrotate-output.php:825
|
306 |
msgid "Useful links to learn more about AdRotate"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: adrotate-output.php:827
|
310 |
msgid "AdRotate website"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: adrotate-output.php:828
|
314 |
#, fuzzy
|
315 |
msgid "Getting Started With AdRotate"
|
316 |
msgstr "Więcej ustawień z AdRotate Pro"
|
317 |
|
318 |
+
#: adrotate-output.php:829
|
319 |
#, fuzzy
|
320 |
msgid "AdRotate manuals"
|
321 |
msgstr "Informacja AdRotate "
|
322 |
|
323 |
+
#: adrotate-output.php:830
|
324 |
#, fuzzy
|
325 |
msgid "AdRotate Support Forum"
|
326 |
msgstr "Sklep AdRotate"
|
327 |
|
328 |
+
#: adrotate-output.php:856
|
329 |
#, fuzzy
|
330 |
msgid "Help AdRotate Grow"
|
331 |
msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
332 |
|
333 |
+
#: adrotate-output.php:857
|
334 |
+
msgid "Follow Arnan on Facebook"
|
335 |
+
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:864
|
338 |
msgid ""
|
339 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
340 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: adrotate-output.php:864
|
344 |
msgid "If you find AdRotate useful please leave your honest"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: adrotate-output.php:864
|
348 |
msgid "rating"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: adrotate-output.php:864
|
352 |
#, fuzzy
|
353 |
msgid "review"
|
354 |
msgstr ""
|
355 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
356 |
|
357 |
+
#: adrotate-output.php:864
|
358 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: adrotate-output.php:903
|
362 |
msgid "Available in AdRotate Pro"
|
363 |
msgstr "Dostępne w wersji AdRotate Pro"
|
364 |
|
365 |
+
#: adrotate-output.php:903
|
366 |
msgid "More information..."
|
367 |
msgstr "Więcej informacji"
|
368 |
|
369 |
+
#: adrotate-output.php:904
|
370 |
msgid "This feature is available in AdRotate Pro"
|
371 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
372 |
|
373 |
+
#: adrotate-output.php:904
|
374 |
msgid "Learn more"
|
375 |
msgstr "Dowiedź się więcej"
|
376 |
|
450 |
msgid "No data to show!"
|
451 |
msgstr "Brak danych !"
|
452 |
|
453 |
+
#: adrotate-widget.php:116
|
454 |
msgid "Title (optional):"
|
455 |
msgstr "Tytuł (opcjonalnie):"
|
456 |
|
457 |
+
#: adrotate-widget.php:119
|
458 |
msgid "HTML will be stripped out."
|
459 |
msgstr "Znaczniki HTML będą wyrzucane."
|
460 |
|
461 |
+
#: adrotate-widget.php:122
|
462 |
msgid "Description (optional):"
|
463 |
msgstr "Opis (opcjonalny):"
|
464 |
|
465 |
+
#: adrotate-widget.php:125
|
466 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
467 |
msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
|
468 |
|
469 |
+
#: adrotate-widget.php:128
|
470 |
msgid "Type:"
|
471 |
msgstr "Typ:"
|
472 |
|
473 |
+
#: adrotate-widget.php:130
|
474 |
+
msgid "Advert - Use Advert ID"
|
475 |
+
msgstr ""
|
476 |
|
477 |
+
#: adrotate-widget.php:131
|
478 |
+
msgid "Group - Use group ID"
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: adrotate-widget.php:134
|
482 |
msgid "Choose what you want to use this widget for"
|
483 |
msgstr "Wybierz do czego chcesz użyć tego widżetu"
|
484 |
|
485 |
+
#: adrotate-widget.php:137
|
486 |
msgid "ID:"
|
487 |
msgstr "ID:"
|
488 |
|
489 |
+
#: adrotate-widget.php:140
|
490 |
msgid "Fill in the ID of the type you want to display!"
|
491 |
msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
|
492 |
|
493 |
+
#: adrotate.php:105
|
494 |
msgid "General Info"
|
495 |
msgstr "Informacje główne"
|
496 |
|
497 |
+
#: adrotate.php:106
|
498 |
msgid "AdRotate Pro"
|
499 |
msgstr "AdRotate Pro"
|
500 |
|
501 |
+
#: adrotate.php:107
|
502 |
+
msgid "Manage Adverts"
|
503 |
+
msgstr ""
|
504 |
|
505 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
506 |
msgid "Manage Groups"
|
507 |
msgstr "Zarządzaj grupami"
|
508 |
|
509 |
+
#: adrotate.php:109 adrotate.php:407
|
510 |
#, fuzzy
|
511 |
msgid "Manage Schedules"
|
512 |
msgstr "Zarządzaj"
|
513 |
|
514 |
+
#: adrotate.php:110
|
515 |
#, fuzzy
|
516 |
msgid "Manage Media"
|
517 |
msgstr "Media:"
|
518 |
|
519 |
+
#: adrotate.php:111
|
520 |
msgid "Settings"
|
521 |
msgstr "Ustawienia"
|
522 |
|
523 |
+
#: adrotate.php:134
|
524 |
msgid "AdRotate Info"
|
525 |
msgstr "Informacja AdRotate "
|
526 |
|
527 |
+
#: adrotate.php:155
|
528 |
msgid "AdRotate Professional"
|
529 |
msgstr "AdRotate Professional"
|
530 |
|
531 |
+
#: adrotate.php:198
|
532 |
+
msgid "Advert Management"
|
533 |
+
msgstr ""
|
534 |
|
535 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
536 |
msgid "Manage"
|
537 |
msgstr "Zarządzaj"
|
538 |
|
539 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
540 |
msgid "Add New"
|
541 |
msgstr "Dodaj nową"
|
542 |
|
543 |
+
#: adrotate.php:336
|
544 |
msgid "Group Management"
|
545 |
msgstr "Zarządzanie grupą reklam"
|
546 |
|
547 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
548 |
#: dashboard/publisher/groups-main.php:70
|
549 |
msgid "Report"
|
550 |
msgstr "Raport"
|
551 |
|
552 |
+
#: adrotate.php:398
|
553 |
#, fuzzy
|
554 |
msgid "Schedule Management available in AdRotate Pro"
|
555 |
msgstr "Dostępne w wersji AdRotate Pro"
|
556 |
|
557 |
+
#: adrotate.php:408
|
558 |
msgid ""
|
559 |
"Schedule management and multiple schedules per advert is available in "
|
560 |
"AdRotate Pro."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
564 |
#: dashboard/publisher/adverts-main.php:114
|
565 |
#: dashboard/publisher/groups-edit.php:75
|
566 |
#: dashboard/publisher/groups-main.php:89
|
568 |
msgid "More information"
|
569 |
msgstr "Więcej informacji"
|
570 |
|
571 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
572 |
#: dashboard/publisher/adverts-error.php:19
|
573 |
#: dashboard/publisher/adverts-main.php:20
|
574 |
#: dashboard/publisher/groups-main.php:20
|
575 |
msgid "Bulk Actions"
|
576 |
msgstr "Działania masowe"
|
577 |
|
578 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
579 |
#: dashboard/publisher/adverts-error.php:29
|
580 |
#: dashboard/publisher/adverts-main.php:30
|
581 |
#: dashboard/publisher/groups-main.php:24
|
582 |
msgid "Go"
|
583 |
msgstr "Idź"
|
584 |
|
585 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
586 |
#: dashboard/publisher/adverts-error.php:39
|
587 |
#: dashboard/publisher/adverts-main.php:39
|
588 |
#: dashboard/publisher/groups-edit.php:51
|
590 |
msgid "ID"
|
591 |
msgstr "ID"
|
592 |
|
593 |
+
#: adrotate.php:426
|
594 |
#, fuzzy
|
595 |
msgid "Start"
|
596 |
msgstr "Start / Koniec"
|
597 |
|
598 |
+
#: adrotate.php:426
|
599 |
#, fuzzy
|
600 |
msgid "End"
|
601 |
msgstr "Start / Koniec"
|
602 |
|
603 |
+
#: adrotate.php:427
|
|
|
604 |
msgid "Ads"
|
605 |
msgstr "Reklamy"
|
606 |
|
607 |
+
#: adrotate.php:429
|
608 |
msgid "Max Impressions"
|
609 |
msgstr "Maksymalna liczba wyświetleń"
|
610 |
|
611 |
+
#: adrotate.php:430
|
612 |
msgid "Max Clicks"
|
613 |
msgstr "Maksymalna liczna kliknięć"
|
614 |
|
615 |
+
#: adrotate.php:460
|
616 |
#, fuzzy
|
617 |
msgid "No schedules created yet!"
|
618 |
msgstr "Nie utworzono jeszcze żadnych reklam!"
|
619 |
|
620 |
+
#: adrotate.php:465
|
621 |
#, fuzzy
|
622 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
623 |
msgstr "Więcej ustawień z AdRotate Pro"
|
624 |
|
625 |
+
#: adrotate.php:465 adrotate.php:531
|
626 |
#, fuzzy
|
627 |
msgid "Upgrade today!"
|
628 |
msgstr "Dziś"
|
629 |
|
630 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
631 |
#: dashboard/publisher/groups-edit.php:387
|
632 |
msgid "Expires soon."
|
633 |
msgstr "Wygasa wkrótce."
|
634 |
|
635 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
636 |
#: dashboard/publisher/groups-edit.php:388
|
637 |
msgid "Has expired."
|
638 |
msgstr "Wygasła."
|
639 |
|
640 |
+
#: adrotate.php:493
|
641 |
#, fuzzy
|
642 |
msgid "Media Management available in AdRotate Pro"
|
643 |
msgstr "Dostępne w wersji AdRotate Pro"
|
644 |
|
645 |
+
#: adrotate.php:495
|
646 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: adrotate.php:495
|
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:495
|
656 |
#, fuzzy
|
657 |
msgid "Media uploading and management is available in AdRotate Pro."
|
658 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
659 |
|
660 |
+
#: adrotate.php:497
|
661 |
msgid "Upload new file"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: adrotate.php:498
|
665 |
msgid "Accepted files:"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: adrotate.php:498
|
669 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: adrotate.php:498
|
673 |
msgid "Maximum size is 512Kb."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: adrotate.php:498
|
677 |
msgid "Important:"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: adrotate.php:498
|
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:498
|
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:501
|
693 |
#, fuzzy
|
694 |
msgid ""
|
695 |
"For responsive adverts make sure the filename is in the following format; "
|
699 |
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
700 |
"pełnego wachlarza rozmiarów.'"
|
701 |
|
702 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
703 |
msgid ""
|
704 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
705 |
"filename instead of \".full\" for the various viewports."
|
707 |
"Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
|
708 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
709 |
|
710 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
711 |
#: dashboard/publisher/groups-edit.php:320
|
712 |
msgid "Example:"
|
713 |
msgstr "Przykład:"
|
714 |
|
715 |
+
#: adrotate.php:503
|
716 |
#, fuzzy
|
717 |
msgid ""
|
718 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
721 |
"image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
|
722 |
"różnych widokach. Wymaga jQuery."
|
723 |
|
724 |
+
#: adrotate.php:507
|
725 |
msgid "Upload file"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: adrotate.php:507
|
729 |
msgid "Click only once per file!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: adrotate.php:510
|
733 |
msgid "Available files in"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
737 |
#: dashboard/publisher/groups-main.php:33
|
738 |
msgid "Name"
|
739 |
msgstr "Nazwa"
|
740 |
|
741 |
+
#: adrotate.php:516
|
742 |
#, fuzzy
|
743 |
msgid "Actions"
|
744 |
msgstr "Działania masowe"
|
745 |
|
746 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
747 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
748 |
#: dashboard/publisher/adverts-disabled.php:22
|
749 |
#: dashboard/publisher/adverts-error.php:21
|
750 |
#: dashboard/publisher/adverts-main.php:22
|
751 |
msgid "Delete"
|
752 |
msgstr "Usuń"
|
753 |
|
754 |
+
#: adrotate.php:531
|
755 |
msgid ""
|
756 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: adrotate.php:531
|
760 |
#, fuzzy
|
761 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
762 |
msgstr "Więcej ustawień z AdRotate Pro"
|
763 |
|
764 |
+
#: adrotate.php:560
|
765 |
msgid "AdRotate Settings"
|
766 |
msgstr "Ustawienia AdRotate"
|
767 |
|
768 |
+
#: adrotate.php:631
|
769 |
msgid "Update Options"
|
770 |
msgstr "Zapisz opcje"
|
771 |
|
822 |
"forum. Get a solution (usually) within a day."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
826 |
msgid "AdRotate is brought to you by"
|
827 |
msgstr "Możesz koszystać z AdRotate dzięki"
|
828 |
|
829 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
msgid "Schedule all campaigns with ease"
|
831 |
msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
|
832 |
|
833 |
+
#: dashboard/adrotatepro.php:77
|
834 |
msgid ""
|
835 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
836 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
838 |
"much more easy. You can set one or many schedules for adverts."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: dashboard/adrotatepro.php:81
|
842 |
msgid "Avoid adblockers"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: dashboard/adrotatepro.php:84
|
846 |
msgid ""
|
847 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
848 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
850 |
"adverts smartly so these features reach their full potential!"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: dashboard/adrotatepro.php:88
|
854 |
msgid "Stay up-to-date with notifications"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: dashboard/adrotatepro.php:91
|
858 |
msgid ""
|
859 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
860 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
863 |
"miss an expiration date again."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
867 |
+
#: dashboard/info.php:78
|
868 |
msgid "Buy AdRotate Professional"
|
869 |
msgstr "Kup AdRotate Pro"
|
870 |
|
871 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
872 |
msgid "Single License"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
876 |
msgid "For one WordPress installation."
|
877 |
msgstr "dla jednej instalcji Wordpressa"
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
880 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
881 |
msgid "Duo License"
|
882 |
msgstr "Podwójna licencja"
|
883 |
|
884 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
885 |
msgid "For two WordPress installations."
|
886 |
msgstr "dla dwóch instalcji Wordpressa"
|
887 |
|
888 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
889 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
890 |
msgid "Multi License"
|
891 |
msgstr "Multi licencja"
|
892 |
|
893 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
894 |
msgid " For up to five WordPress installations."
|
895 |
msgstr "dla 5 instalacji Wordpessa."
|
896 |
|
897 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
898 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
899 |
msgid "Developer License"
|
900 |
msgstr "Licencja Programisty"
|
901 |
|
902 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
903 |
msgid "Unlimited WordPress installations and/or networks."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
907 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
908 |
msgid "Compare licenses"
|
909 |
msgstr "Porównaj licencje."
|
910 |
|
911 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
912 |
msgid "Not sure which license is for you? Compare them..."
|
913 |
msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
|
914 |
|
915 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
916 |
msgid "All Licenses"
|
917 |
msgstr "Wszystkie licencje"
|
918 |
|
919 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
920 |
msgid "Lifetime License"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
924 |
msgid "Single installation."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
928 |
msgid "Up to 2 installations."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
932 |
msgid "Up to 10 installations."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
936 |
msgid "Up to 25 installations or multisite networks."
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
940 |
msgid ""
|
941 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
945 |
msgid "Not sure which license is for you?"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
949 |
msgid "Compare Licenses"
|
950 |
msgstr ""
|
951 |
|
961 |
msgid "Adverts that need you"
|
962 |
msgstr "Reklamy wymagające uwagi"
|
963 |
|
964 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
965 |
+
#: dashboard/publisher/groups-main.php:34
|
966 |
msgid "Adverts"
|
967 |
msgstr "Reklamy"
|
968 |
|
984 |
|
985 |
#: dashboard/info.php:55
|
986 |
msgid ""
|
987 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
988 |
+
"for updates about me and my plugins. Thank you!"
|
989 |
msgstr ""
|
990 |
|
|
|
|
|
|
|
|
|
991 |
#: dashboard/info.php:103
|
992 |
+
msgid ""
|
993 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
994 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
995 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: dashboard/info.php:113
|
999 |
msgid "Get more features with AdRotate Pro"
|
1000 |
msgstr "Więcej ustawień z AdRotate Pro"
|
1001 |
|
1002 |
+
#: dashboard/info.php:116
|
1003 |
msgid ""
|
1004 |
"Benefit from extra features to reinforce your income with advertising "
|
1005 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1009 |
"Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
|
1010 |
"funkcjom."
|
1011 |
|
1012 |
+
#: dashboard/info.php:116
|
1013 |
msgid "Want to know more about"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: dashboard/info.php:116
|
1017 |
msgid "Visit the"
|
1018 |
msgstr "Odwiedź"
|
1019 |
|
1020 |
+
#: dashboard/info.php:116
|
1021 |
msgid "website"
|
1022 |
msgstr "strone internetową"
|
1023 |
|
1024 |
+
#: dashboard/info.php:120
|
1025 |
+
msgid "AdRotate News and Developer Blog"
|
1026 |
+
msgstr "AdRotere Wiadomości i Blog "
|
1027 |
+
|
1028 |
#: dashboard/publisher/adverts-disabled.php:15
|
1029 |
+
msgid "Disabled Adverts"
|
1030 |
+
msgstr ""
|
1031 |
|
1032 |
#: dashboard/publisher/adverts-disabled.php:21
|
1033 |
#: dashboard/publisher/adverts-edit.php:176
|
1062 |
|
1063 |
#: dashboard/publisher/adverts-disabled.php:39
|
1064 |
#: dashboard/publisher/adverts-main.php:46
|
1065 |
+
#: dashboard/publisher/adverts-report.php:36
|
1066 |
+
#: dashboard/publisher/adverts-report.php:57
|
1067 |
#: dashboard/publisher/groups-edit.php:334
|
1068 |
#: dashboard/publisher/groups-main.php:38
|
1069 |
+
#: dashboard/publisher/groups-report.php:37
|
1070 |
+
#: dashboard/publisher/groups-report.php:58
|
1071 |
msgid "Clicks"
|
1072 |
msgstr "Kliknięcia"
|
1073 |
|
1074 |
#: dashboard/publisher/adverts-disabled.php:40
|
1075 |
#: dashboard/publisher/adverts-main.php:48
|
1076 |
+
#: dashboard/publisher/adverts-report.php:39
|
1077 |
+
#: dashboard/publisher/adverts-report.php:58
|
1078 |
+
#: dashboard/publisher/groups-report.php:40
|
1079 |
+
#: dashboard/publisher/groups-report.php:59
|
1080 |
msgid "CTR"
|
1081 |
msgstr "CTR"
|
1082 |
|
1450 |
msgstr ""
|
1451 |
|
1452 |
#: dashboard/publisher/adverts-edit.php:312
|
1453 |
+
#: dashboard/publisher/adverts-report.php:64
|
1454 |
+
#: dashboard/publisher/groups-report.php:65
|
1455 |
msgid "Note:"
|
1456 |
msgstr "Notatka:"
|
1457 |
|
1574 |
msgstr "Tryb"
|
1575 |
|
1576 |
#: dashboard/publisher/adverts-error.php:12
|
1577 |
+
msgid "Adverts that need attention"
|
1578 |
+
msgstr ""
|
1579 |
|
1580 |
#: dashboard/publisher/adverts-error.php:20
|
1581 |
#: dashboard/publisher/adverts-main.php:21
|
1613 |
msgstr "Błedy konfiguracji."
|
1614 |
|
1615 |
#: dashboard/publisher/adverts-main.php:12
|
1616 |
+
msgid "Active Adverts"
|
1617 |
+
msgstr ""
|
1618 |
|
1619 |
#: dashboard/publisher/adverts-main.php:24
|
1620 |
#, fuzzy
|
1634 |
msgstr "Dziś"
|
1635 |
|
1636 |
#: dashboard/publisher/adverts-main.php:109
|
1637 |
+
msgid "No adverts created yet!"
|
1638 |
+
msgstr ""
|
1639 |
|
1640 |
+
#: dashboard/publisher/adverts-report.php:30
|
1641 |
msgid "Statistics for advert"
|
1642 |
msgstr "Statystyki dla reklamy"
|
1643 |
|
1644 |
+
#: dashboard/publisher/adverts-report.php:35
|
1645 |
+
#: dashboard/publisher/adverts-report.php:56
|
1646 |
+
#: dashboard/publisher/groups-report.php:36
|
1647 |
+
#: dashboard/publisher/groups-report.php:57
|
1648 |
msgid "Impressions"
|
1649 |
msgstr "Wyświetlenia"
|
1650 |
|
1651 |
+
#: dashboard/publisher/adverts-report.php:37
|
1652 |
+
#: dashboard/publisher/groups-report.php:38
|
1653 |
msgid "Impressions today"
|
1654 |
msgstr "Dzisiejsze wyświetlenia"
|
1655 |
|
1656 |
+
#: dashboard/publisher/adverts-report.php:38
|
1657 |
+
#: dashboard/publisher/groups-report.php:39
|
1658 |
msgid "Clicks today"
|
1659 |
msgstr "Dzisiejsze kliknięcia "
|
1660 |
|
1661 |
+
#: dashboard/publisher/adverts-report.php:45
|
1662 |
+
#: dashboard/publisher/groups-report.php:46
|
1663 |
msgid "Monthly overview of clicks and impressions"
|
1664 |
msgstr "Miesięczne zestawienie kliknięć i wyświetleń"
|
1665 |
|
1666 |
+
#: dashboard/publisher/adverts-report.php:64
|
1667 |
+
#: dashboard/publisher/groups-report.php:65
|
1668 |
msgid ""
|
1669 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1670 |
"counted by other parties."
|
1689 |
msgstr "Tryb dynamiczny - Zmieniaj reklamy co kilka sekund"
|
1690 |
|
1691 |
#: dashboard/publisher/groups-edit.php:66
|
1692 |
+
msgid "Block Mode - Show a block of adverts"
|
1693 |
+
msgstr ""
|
1694 |
|
1695 |
#: dashboard/publisher/groups-edit.php:70
|
1696 |
#, fuzzy
|
1742 |
msgstr "wysokość w pikselach"
|
1743 |
|
1744 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1745 |
msgid ""
|
1746 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1747 |
"recommended). Default: 125/125."
|
1748 |
msgstr ""
|
|
|
|
|
1749 |
|
1750 |
#: dashboard/publisher/groups-edit.php:108
|
1751 |
msgid "Automated refresh"
|
1769 |
#: dashboard/publisher/groups-edit.php:141
|
1770 |
#: dashboard/publisher/groups-edit.php:288
|
1771 |
msgid ""
|
1772 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1773 |
+
"Adverts\" and enter ID"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
#: dashboard/publisher/groups-edit.php:153
|
1994 |
msgstr "Widoczne do"
|
1995 |
|
1996 |
#: dashboard/publisher/groups-edit.php:379
|
1997 |
+
msgid "No adverts created!"
|
1998 |
+
msgstr ""
|
1999 |
|
2000 |
#: dashboard/publisher/groups-main.php:21
|
2001 |
msgid "Delete Group"
|
2002 |
msgstr "Usuń grupę"
|
2003 |
|
2004 |
#: dashboard/publisher/groups-main.php:22
|
2005 |
+
msgid "Delete Group including adverts"
|
2006 |
+
msgstr ""
|
2007 |
|
2008 |
#: dashboard/publisher/groups-main.php:24
|
2009 |
msgid "You are about to delete a group"
|
2022 |
msgid "No groups created!"
|
2023 |
msgstr "Nie utworzono grupy!"
|
2024 |
|
2025 |
+
#: dashboard/publisher/groups-report.php:31
|
2026 |
msgid "Statistics for group"
|
2027 |
msgstr "Statystyki dla grupy"
|
2028 |
|
2487 |
msgstr ""
|
2488 |
|
2489 |
#: dashboard/settings/maintenance.php:70
|
2490 |
+
msgid "Banners/assets Folder"
|
2491 |
+
msgstr ""
|
2492 |
+
|
2493 |
+
#: dashboard/settings/maintenance.php:72
|
2494 |
+
msgid "Exists and appears writable"
|
2495 |
+
msgstr ""
|
2496 |
+
|
2497 |
+
#: dashboard/settings/maintenance.php:72
|
2498 |
+
msgid "Not writable or does not exist"
|
2499 |
+
msgstr ""
|
2500 |
+
|
2501 |
+
#: dashboard/settings/maintenance.php:76
|
2502 |
#, fuzzy
|
2503 |
msgid "Ad evaluation next run:"
|
2504 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
2505 |
|
2506 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2507 |
msgid "Not scheduled!"
|
2508 |
msgstr "Nie ustalono harmnogramu!"
|
2509 |
|
2510 |
+
#: dashboard/settings/maintenance.php:80
|
2511 |
msgid "Clean Trackerdata next run:"
|
2512 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
2513 |
|
2630 |
msgstr ""
|
2631 |
|
2632 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2633 |
msgid "Email Notifications"
|
2634 |
msgstr "Powiadomienie na email"
|
2635 |
|
2636 |
+
#: dashboard/settings/notifications.php:32
|
2637 |
msgid "Set up who gets notification emails."
|
2638 |
msgstr "Ustal kto otrzymuje powiadomienia na email."
|
2639 |
|
2640 |
+
#: dashboard/settings/notifications.php:35
|
2641 |
+
#: dashboard/settings/notifications.php:55
|
2642 |
msgid "Publishers"
|
2643 |
msgstr "Ogłoszeniodawcy"
|
2644 |
|
2645 |
+
#: dashboard/settings/notifications.php:38
|
2646 |
msgid ""
|
2647 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2648 |
"list to a minimum!"
|
2651 |
"adresów. Postaraj się by ta lista była jak najmniejsza! Gdyż może to zbytnio "
|
2652 |
"obciążać system."
|
2653 |
|
2654 |
+
#: dashboard/settings/notifications.php:39
|
2655 |
msgid ""
|
2656 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2657 |
"email notifications will be send."
|
2659 |
"Wiadomości są wysyłane raz na 24 godziny jeśli jest to faktycznie potrzebne. "
|
2660 |
"Jeśli pozostawisz te pole puste, żadne wiadomości mailowe nie bądą wysyłane."
|
2661 |
|
2662 |
+
#: dashboard/settings/notifications.php:43
|
2663 |
msgid "Advertisers"
|
2664 |
msgstr "Reklamodawcy"
|
2665 |
|
2666 |
+
#: dashboard/settings/notifications.php:46
|
2667 |
msgid ""
|
2668 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2669 |
"This field may not be empty!"
|
2671 |
"Kto otrzymuje maile od reklamodawców. Maksymalnie 2 adresy odzielone "
|
2672 |
"średnikiem. Te pole nie możę być puste!."
|
2673 |
|
2674 |
+
#: dashboard/settings/notifications.php:51
|
2675 |
msgid "Push Notifications"
|
2676 |
msgstr "Powiadomienia typu PUSH"
|
2677 |
|
2678 |
+
#: dashboard/settings/notifications.php:52
|
2679 |
msgid ""
|
2680 |
"Receive information about what is happening with your AdRotate setup on your "
|
2681 |
"smartphone via Pushover."
|
2683 |
"Możesz otrzymywać wiadomości na smartphona o tym co dzieje się z Twoją "
|
2684 |
"aplikacją AdRotate. Możliwe jest to dzięki aplikacjio Pushover."
|
2685 |
|
2686 |
+
#: dashboard/settings/notifications.php:57
|
2687 |
msgid "When you are running out of Geo Targeting Lookups."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: dashboard/settings/notifications.php:58
|
2691 |
msgid "Daily digest of any advert status other than normal."
|
2692 |
msgstr "Dzienne podsumowania reklam inne niż normalne."
|
2693 |
|
2694 |
+
#: dashboard/settings/notifications.php:59
|
2695 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2696 |
msgstr ""
|
2697 |
"Każdy reklamodawca zapisuje swoje reklamy w Twojej kolejce moderacyjnej."
|
2698 |
|
2699 |
+
#: dashboard/settings/notifications.php:60
|
2700 |
msgid "A moderator approved an advert from the moderation queue."
|
2701 |
msgstr ""
|
2702 |
"Moderator zatwierdza reklamy umieszczone wcześniej w kolejce moderacyjnej."
|
2703 |
|
2704 |
+
#: dashboard/settings/notifications.php:61
|
2705 |
msgid "A moderator rejected an advert from the moderation queue."
|
2706 |
msgstr "Moderator wyrzuca reklamuy z kolejki moderacyjnej."
|
2707 |
|
2708 |
+
#: dashboard/settings/notifications.php:61
|
2709 |
msgid ""
|
2710 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2711 |
"you may get a lot of messages!"
|
2713 |
"Jeśli odnotowujesz dużą aktwywność reklamodawców dodających i zmieniających "
|
2714 |
"reklamy możesz otrzymywać duża ilość wiadomości!"
|
2715 |
|
2716 |
+
#: dashboard/settings/notifications.php:66
|
2717 |
msgid "User Key"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: dashboard/settings/notifications.php:68
|
2721 |
msgid "Get your user token"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: dashboard/settings/notifications.php:68
|
2725 |
+
#: dashboard/settings/notifications.php:74
|
2726 |
msgid "here"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: dashboard/settings/notifications.php:72
|
2730 |
msgid "Api Token"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: dashboard/settings/notifications.php:74
|
2734 |
msgid "Create your"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: dashboard/settings/notifications.php:74
|
2738 |
msgid "App"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: dashboard/settings/notifications.php:74
|
2742 |
msgid "and get your API token"
|
2743 |
msgstr ""
|
2744 |
|
2894 |
msgstr ""
|
2895 |
"Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
|
2896 |
|
2897 |
+
#~ msgid "active ad(s) expired."
|
2898 |
+
#~ msgstr "Aktywne reklamy wygasły."
|
2899 |
+
|
2900 |
+
#~ msgid "Take action now"
|
2901 |
+
#~ msgstr "Uruchom natymiastowo."
|
2902 |
+
|
2903 |
+
#~ msgid "active ad(s) are about to expire."
|
2904 |
+
#~ msgstr "Aktywne reklamy niedługo wygasną."
|
2905 |
+
|
2906 |
+
#~ msgid "Check it out"
|
2907 |
+
#~ msgstr "Sprawdz to"
|
2908 |
+
|
2909 |
+
#~ msgid "active ad(s) with configuration errors."
|
2910 |
+
#~ msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
|
2911 |
+
|
2912 |
+
#~ msgid "Solve this"
|
2913 |
+
#~ msgstr "Napraw to"
|
2914 |
+
|
2915 |
+
#~ msgid "ad(s) expired."
|
2916 |
+
#~ msgstr "Reklama wygasła."
|
2917 |
+
|
2918 |
+
#~ msgid "ad(s) are about to expire."
|
2919 |
+
#~ msgstr "Reklama które wygasną."
|
2920 |
+
|
2921 |
+
#~ msgid "ad(s) with configuration errors."
|
2922 |
+
#~ msgstr "Reklamy z błędami konfuguracyjnymi."
|
2923 |
+
|
2924 |
+
#~ msgid "Fix this as soon as possible"
|
2925 |
+
#~ msgstr "Napraw to tak szybko jak to możliwe"
|
2926 |
+
|
2927 |
+
#~ msgid "Brought to you by"
|
2928 |
+
#~ msgstr "Dostarczone przez "
|
2929 |
+
|
2930 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2931 |
+
#~ msgstr "Pojedyńcza Reklama - Użyj ID (numeru identyfikacyjnego) reklamy"
|
2932 |
+
|
2933 |
+
#~ msgid "Group of Ads - Use group ID"
|
2934 |
+
#~ msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
|
2935 |
+
|
2936 |
+
#~ msgid "Manage Ads"
|
2937 |
+
#~ msgstr "Zarządzaj reklamami"
|
2938 |
+
|
2939 |
+
#~ msgid "Ad Management"
|
2940 |
+
#~ msgstr "Zarządzanie Reklamami"
|
2941 |
+
|
2942 |
+
#~ msgid "Disabled Ads"
|
2943 |
+
#~ msgstr "Wyłączone reklamy"
|
2944 |
+
|
2945 |
+
#~ msgid "Ads that need immediate attention"
|
2946 |
+
#~ msgstr "Reklamy wymagające natychmiastowej uwagi"
|
2947 |
+
|
2948 |
+
#~ msgid "Active Ads"
|
2949 |
+
#~ msgstr "Aktywne reklamy"
|
2950 |
+
|
2951 |
+
#~ msgid "No ads created yet!"
|
2952 |
+
#~ msgstr "Nie utworzono jeszcze żadnych reklam!"
|
2953 |
+
|
2954 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2955 |
+
#~ msgstr "Trym bloku - pokazuj reklamy w bloku"
|
2956 |
+
|
2957 |
+
#, fuzzy
|
2958 |
+
#~ msgid ""
|
2959 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
2960 |
+
#~ "recommended). Default: 125/125."
|
2961 |
+
#~ msgstr ""
|
2962 |
+
#~ "Ustal maksymalny rozmiar reklam w pikselach po uwzględnieniu marginesu. "
|
2963 |
+
#~ "Rozmiar może być ustawiony na 'auto' (Nie zalecane). Domyślnie: 125/125."
|
2964 |
+
|
2965 |
+
#~ msgid "No ads created!"
|
2966 |
+
#~ msgstr "Nie utworzono reklam!"
|
2967 |
+
|
2968 |
+
#~ msgid "Delete Group including ads"
|
2969 |
+
#~ msgstr "Usuńgrupy zawierające reklamy"
|
2970 |
+
|
2971 |
+
#~ msgid "Dashboard Notifications"
|
2972 |
+
#~ msgstr "Powiadomienia panelu administracyjnego"
|
2973 |
+
|
2974 |
#, fuzzy
|
2975 |
#~ msgid "AdRotate Page"
|
2976 |
#~ msgstr "AdRotate Pro"
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
@@ -16,114 +16,114 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.8.6\n"
|
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,174 +184,154 @@ 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 "
|
197 |
-
msgstr "
|
198 |
-
|
199 |
-
#: adrotate-output.php:
|
200 |
-
msgid "
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
msgstr "
|
210 |
-
|
211 |
-
#: adrotate-output.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
-
|
215 |
-
#: adrotate-output.php:
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
#:
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
#: adrotate-output.php:729
|
224 |
-
msgid "ad(s) are about to expire."
|
225 |
-
msgstr "ad-ovi će uskoro da isteknu."
|
226 |
-
|
227 |
-
#: adrotate-output.php:729
|
228 |
-
msgid "ad(s) with configuration errors."
|
229 |
-
msgstr "ad-ovi sa konfiguracionim greškama."
|
230 |
-
|
231 |
-
#: adrotate-output.php:729
|
232 |
-
msgid "Fix this as soon as possible"
|
233 |
-
msgstr "Popravi ovo što pre je moguće"
|
234 |
-
|
235 |
-
#: adrotate-output.php:741 dashboard/adrotatepro.php:106
|
236 |
-
#: dashboard/adrotatepro.php:107 dashboard/adrotatepro.php:108
|
237 |
-
#: dashboard/adrotatepro.php:109 dashboard/adrotatepro.php:118
|
238 |
-
#: dashboard/adrotatepro.php:119 dashboard/adrotatepro.php:120
|
239 |
-
#: dashboard/adrotatepro.php:121 dashboard/info.php:114 dashboard/info.php:115
|
240 |
-
#: dashboard/info.php:116 dashboard/info.php:117 dashboard/info.php:126
|
241 |
-
#: dashboard/info.php:127 dashboard/info.php:128 dashboard/info.php:129
|
242 |
#: dashboard/settings/geotargeting.php:26
|
243 |
#, fuzzy
|
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 |
msgid "AdRotate website"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
#, fuzzy
|
296 |
msgid "Getting Started With AdRotate"
|
297 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
#, fuzzy
|
301 |
msgid "AdRotate manuals"
|
302 |
msgstr "AdRotate informacije"
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
#, fuzzy
|
306 |
msgid "AdRotate Support Forum"
|
307 |
msgstr "AdRotate prodavnica"
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
#, fuzzy
|
311 |
msgid "Help AdRotate Grow"
|
312 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
-
msgid "
|
316 |
-
msgstr "
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
msgid ""
|
320 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
321 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: adrotate-output.php:
|
325 |
msgid "If you find AdRotate useful please leave your honest"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: adrotate-output.php:
|
329 |
msgid "rating"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: adrotate-output.php:
|
333 |
#, fuzzy
|
334 |
msgid "review"
|
335 |
msgstr "Dajte ocenu i komentar"
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "Available in AdRotate Pro"
|
343 |
msgstr "Dostupno u AdRotate Pro"
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
#, fuzzy
|
347 |
msgid "More information..."
|
348 |
msgstr "Saznajte više"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "This feature is available in AdRotate Pro"
|
352 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "Learn more"
|
356 |
msgstr "Saznajte više"
|
357 |
|
@@ -431,121 +411,121 @@ msgstr "Sledeći"
|
|
431 |
msgid "No data to show!"
|
432 |
msgstr "Nema podataka za prikaz!"
|
433 |
|
434 |
-
#: adrotate-widget.php:
|
435 |
msgid "Title (optional):"
|
436 |
msgstr "Naslov (opcionalno):"
|
437 |
|
438 |
-
#: adrotate-widget.php:
|
439 |
msgid "HTML will be stripped out."
|
440 |
msgstr "HTML će biti skinut."
|
441 |
|
442 |
-
#: adrotate-widget.php:
|
443 |
#, fuzzy
|
444 |
msgid "Description (optional):"
|
445 |
msgstr "Naslov (opcionalno):"
|
446 |
|
447 |
-
#: adrotate-widget.php:
|
448 |
#, fuzzy
|
449 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
450 |
msgstr "HTML će biti skinut."
|
451 |
|
452 |
-
#: adrotate-widget.php:
|
453 |
msgid "Type:"
|
454 |
msgstr "Tip:"
|
455 |
|
456 |
-
#: adrotate-widget.php:
|
457 |
-
msgid "
|
458 |
-
msgstr "
|
459 |
|
460 |
-
#: adrotate-widget.php:
|
461 |
-
msgid "Group
|
462 |
-
msgstr "
|
463 |
|
464 |
-
#: adrotate-widget.php:
|
465 |
msgid "Choose what you want to use this widget for"
|
466 |
msgstr "Izaberite za šta želite da koristite ovaj widget "
|
467 |
|
468 |
-
#: adrotate-widget.php:
|
469 |
msgid "ID:"
|
470 |
msgstr "ID:"
|
471 |
|
472 |
-
#: adrotate-widget.php:
|
473 |
msgid "Fill in the ID of the type you want to display!"
|
474 |
msgstr "Popunite ID tipa koji želite da prikažete!"
|
475 |
|
476 |
-
#: adrotate.php:
|
477 |
msgid "General Info"
|
478 |
msgstr "Opšte informacije"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "AdRotate Pro"
|
482 |
msgstr "AdRotate Pro"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
-
msgid "Manage
|
486 |
-
msgstr "
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Manage Groups"
|
490 |
msgstr "Upravljajte grupama"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
#, fuzzy
|
494 |
msgid "Manage Schedules"
|
495 |
msgstr "Upravljati"
|
496 |
|
497 |
-
#: adrotate.php:
|
498 |
#, fuzzy
|
499 |
msgid "Manage Media"
|
500 |
msgstr "Media:"
|
501 |
|
502 |
-
#: adrotate.php:
|
503 |
msgid "Settings"
|
504 |
msgstr "Postavke"
|
505 |
|
506 |
-
#: adrotate.php:
|
507 |
msgid "AdRotate Info"
|
508 |
msgstr "AdRotate informacije"
|
509 |
|
510 |
-
#: adrotate.php:
|
511 |
#, fuzzy
|
512 |
msgid "AdRotate Professional"
|
513 |
msgstr "AdRotate promocije"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
-
msgid "
|
517 |
-
msgstr "
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "Manage"
|
521 |
msgstr "Upravljati"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
msgid "Add New"
|
525 |
msgstr "Dodati novi"
|
526 |
|
527 |
-
#: adrotate.php:
|
528 |
msgid "Group Management"
|
529 |
msgstr "Menadžment grupe"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
#: dashboard/publisher/groups-main.php:70
|
533 |
msgid "Report"
|
534 |
msgstr "Izveštaj"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
#, fuzzy
|
538 |
msgid "Schedule Management available in AdRotate Pro"
|
539 |
msgstr "Dostupno u AdRotate Pro"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
#, fuzzy
|
543 |
msgid ""
|
544 |
"Schedule management and multiple schedules per advert is available in "
|
545 |
"AdRotate Pro."
|
546 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
547 |
|
548 |
-
#: adrotate.php:
|
549 |
#: dashboard/publisher/adverts-main.php:114
|
550 |
#: dashboard/publisher/groups-edit.php:75
|
551 |
#: dashboard/publisher/groups-main.php:89
|
@@ -553,21 +533,21 @@ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
|
553 |
msgid "More information"
|
554 |
msgstr "Saznajte više"
|
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 "Delo bulk-ovanja"
|
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 "Kreni"
|
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,176 +555,175 @@ msgstr "Kreni"
|
|
575 |
msgid "ID"
|
576 |
msgstr "ID"
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
#, fuzzy
|
580 |
msgid "Start"
|
581 |
msgstr "Početno vreme (hh:mm):"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#, fuzzy
|
585 |
msgid "End"
|
586 |
msgstr "Završno vreme (hh:mm):"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
-
#: dashboard/publisher/groups-main.php:34
|
590 |
msgid "Ads"
|
591 |
msgstr "Oglasi"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
#, fuzzy
|
595 |
msgid "Max Impressions"
|
596 |
msgstr "Utisci"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
#, fuzzy
|
600 |
msgid "Max Clicks"
|
601 |
msgstr "Klikovi"
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
#, fuzzy
|
605 |
msgid "No schedules created yet!"
|
606 |
msgstr "Nijedan blok nije stvoren još uvek!"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
#, fuzzy
|
610 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
611 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
612 |
|
613 |
-
#: adrotate.php:
|
614 |
#, fuzzy
|
615 |
msgid "Upgrade today!"
|
616 |
msgstr "Danas"
|
617 |
|
618 |
-
#: adrotate.php:
|
619 |
#: dashboard/publisher/groups-edit.php:387
|
620 |
msgid "Expires soon."
|
621 |
msgstr "Ističe uskoro."
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
#: dashboard/publisher/groups-edit.php:388
|
625 |
msgid "Has expired."
|
626 |
msgstr "Isteklo je."
|
627 |
|
628 |
-
#: adrotate.php:
|
629 |
#, fuzzy
|
630 |
msgid "Media Management available in AdRotate Pro"
|
631 |
msgstr "Dostupno u AdRotate Pro"
|
632 |
|
633 |
-
#: adrotate.php:
|
634 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
msgid ""
|
639 |
"This is useful if you use responsive adverts with multiple images or have "
|
640 |
"HTML5 adverts containing multiple files."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
#, fuzzy
|
645 |
msgid "Media uploading and management is available in AdRotate Pro."
|
646 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
647 |
|
648 |
-
#: adrotate.php:
|
649 |
msgid "Upload new file"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: adrotate.php:
|
653 |
msgid "Accepted files:"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: adrotate.php:
|
657 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "Maximum size is 512Kb."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "Important:"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid ""
|
670 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
671 |
"spaces with a - or _."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: adrotate.php:
|
675 |
msgid ""
|
676 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
677 |
"file so it knows about the changed name. For example for the javascript file."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid ""
|
682 |
"For responsive adverts make sure the filename is in the following format; "
|
683 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: adrotate.php:
|
687 |
msgid ""
|
688 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
689 |
"filename instead of \".full\" for the various viewports."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
#: dashboard/publisher/groups-edit.php:320
|
694 |
msgid "Example:"
|
695 |
msgstr "Primer"
|
696 |
|
697 |
-
#: adrotate.php:
|
698 |
msgid ""
|
699 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
700 |
"for different viewports."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
msgid "Upload file"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
msgid "Click only once per file!"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: adrotate.php:
|
712 |
msgid "Available files in"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: adrotate.php:
|
716 |
#: dashboard/publisher/groups-main.php:33
|
717 |
msgid "Name"
|
718 |
msgstr "Ime"
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
#, fuzzy
|
722 |
msgid "Actions"
|
723 |
msgstr "Delo bulk-ovanja"
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
-
#: adrotate.php:
|
727 |
#: dashboard/publisher/adverts-disabled.php:22
|
728 |
#: dashboard/publisher/adverts-error.php:21
|
729 |
#: dashboard/publisher/adverts-main.php:22
|
730 |
msgid "Delete"
|
731 |
msgstr "Obrisati"
|
732 |
|
733 |
-
#: adrotate.php:
|
734 |
msgid ""
|
735 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: adrotate.php:
|
739 |
#, fuzzy
|
740 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
741 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
742 |
|
743 |
-
#: adrotate.php:
|
744 |
msgid "AdRotate Settings"
|
745 |
msgstr "AdRotate postavke"
|
746 |
|
747 |
-
#: adrotate.php:
|
748 |
msgid "Update Options"
|
749 |
msgstr "Update opcije"
|
750 |
|
@@ -797,22 +776,15 @@ msgid ""
|
|
797 |
"forum. Get a solution (usually) within a day."
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
801 |
msgid "AdRotate is brought to you by"
|
802 |
msgstr "AdRotate vam je omogućio"
|
803 |
|
804 |
-
#: dashboard/adrotatepro.php:
|
805 |
-
msgid ""
|
806 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
807 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
808 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: dashboard/adrotatepro.php:81
|
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 +792,11 @@ msgid ""
|
|
820 |
"much more easy. You can set one or many schedules for adverts."
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: dashboard/adrotatepro.php:
|
824 |
msgid "Avoid adblockers"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: dashboard/adrotatepro.php:
|
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 "
|
@@ -832,11 +804,11 @@ msgid ""
|
|
832 |
"adverts smartly so these features reach their full potential!"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: dashboard/adrotatepro.php:
|
836 |
msgid "Stay up-to-date with notifications"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: dashboard/adrotatepro.php:
|
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,95 +817,95 @@ msgid ""
|
|
845 |
"miss an expiration date again."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: dashboard/adrotatepro.php:
|
849 |
-
#: dashboard/info.php:
|
850 |
#, fuzzy
|
851 |
msgid "Buy AdRotate Professional"
|
852 |
msgstr "Kupite odmah"
|
853 |
|
854 |
-
#: dashboard/adrotatepro.php:
|
855 |
msgid "Single License"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: dashboard/adrotatepro.php:
|
859 |
#, fuzzy
|
860 |
msgid "For one WordPress installation."
|
861 |
msgstr "Instalacije"
|
862 |
|
863 |
-
#: dashboard/adrotatepro.php:
|
864 |
-
#: dashboard/info.php:
|
865 |
msgid "Duo License"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: dashboard/adrotatepro.php:
|
869 |
#, fuzzy
|
870 |
msgid "For two WordPress installations."
|
871 |
msgstr "Instalacije"
|
872 |
|
873 |
-
#: dashboard/adrotatepro.php:
|
874 |
-
#: dashboard/info.php:
|
875 |
msgid "Multi License"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: dashboard/adrotatepro.php:
|
879 |
#, fuzzy
|
880 |
msgid " For up to five WordPress installations."
|
881 |
msgstr "Instalacije"
|
882 |
|
883 |
-
#: dashboard/adrotatepro.php:
|
884 |
-
#: dashboard/info.php:
|
885 |
#, fuzzy
|
886 |
msgid "Developer License"
|
887 |
msgstr "Debug za programera"
|
888 |
|
889 |
-
#: dashboard/adrotatepro.php:
|
890 |
msgid "Unlimited WordPress installations and/or networks."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: dashboard/adrotatepro.php:
|
894 |
-
#: dashboard/info.php:
|
895 |
msgid "Compare licenses"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: dashboard/adrotatepro.php:
|
899 |
msgid "Not sure which license is for you? Compare them..."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: dashboard/adrotatepro.php:
|
903 |
#, fuzzy
|
904 |
msgid "All Licenses"
|
905 |
msgstr "Ponovo ocenite sve oglase"
|
906 |
|
907 |
-
#: dashboard/adrotatepro.php:
|
908 |
msgid "Lifetime License"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: dashboard/adrotatepro.php:
|
912 |
msgid "Single installation."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: dashboard/adrotatepro.php:
|
916 |
msgid "Up to 2 installations."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: dashboard/adrotatepro.php:
|
920 |
msgid "Up to 10 installations."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: dashboard/adrotatepro.php:
|
924 |
msgid "Up to 25 installations or multisite networks."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: dashboard/adrotatepro.php:
|
928 |
msgid ""
|
929 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: dashboard/adrotatepro.php:
|
933 |
msgid "Not sure which license is for you?"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: dashboard/adrotatepro.php:
|
937 |
msgid "Compare Licenses"
|
938 |
msgstr ""
|
939 |
|
@@ -949,7 +921,8 @@ msgstr "Vaš pristup"
|
|
949 |
msgid "Adverts that need you"
|
950 |
msgstr "Oglasi koji su vam potrebni"
|
951 |
|
952 |
-
#: dashboard/info.php:37
|
|
|
953 |
msgid "Adverts"
|
954 |
msgstr "Oglasi"
|
955 |
|
@@ -971,41 +944,48 @@ msgstr "AdRotate podrška"
|
|
971 |
|
972 |
#: dashboard/info.php:55
|
973 |
msgid ""
|
974 |
-
"
|
975 |
-
"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: dashboard/info.php:81
|
979 |
-
msgid "AdRotate News and Developer Blog"
|
980 |
-
msgstr "AdRotate novosti i blog za programere"
|
981 |
-
|
982 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
983 |
#, fuzzy
|
984 |
msgid "Get more features with AdRotate Pro"
|
985 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
986 |
|
987 |
-
#: dashboard/info.php:
|
988 |
msgid ""
|
989 |
"Benefit from extra features to reinforce your income with advertising "
|
990 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
991 |
"Pro offers on top of the trusted features included in the free version."
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: dashboard/info.php:
|
995 |
msgid "Want to know more about"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: dashboard/info.php:
|
999 |
msgid "Visit the"
|
1000 |
msgstr "Posetite"
|
1001 |
|
1002 |
-
#: dashboard/info.php:
|
1003 |
msgid "website"
|
1004 |
msgstr "websajt"
|
1005 |
|
|
|
|
|
|
|
|
|
1006 |
#: dashboard/publisher/adverts-disabled.php:15
|
1007 |
-
msgid "Disabled
|
1008 |
-
msgstr "
|
1009 |
|
1010 |
#: dashboard/publisher/adverts-disabled.php:21
|
1011 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1045,17 +1025,21 @@ msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
|
|
1045 |
|
1046 |
#: dashboard/publisher/adverts-disabled.php:39
|
1047 |
#: dashboard/publisher/adverts-main.php:46
|
1048 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1049 |
#: dashboard/publisher/groups-edit.php:334
|
1050 |
#: dashboard/publisher/groups-main.php:38
|
1051 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1052 |
msgid "Clicks"
|
1053 |
msgstr "Klikovi"
|
1054 |
|
1055 |
#: dashboard/publisher/adverts-disabled.php:40
|
1056 |
#: dashboard/publisher/adverts-main.php:48
|
1057 |
-
#: dashboard/publisher/adverts-report.php:
|
1058 |
-
#: dashboard/publisher/
|
|
|
|
|
1059 |
msgid "CTR"
|
1060 |
msgstr "CTR"
|
1061 |
|
@@ -1434,8 +1418,8 @@ msgid ""
|
|
1434 |
msgstr ""
|
1435 |
|
1436 |
#: dashboard/publisher/adverts-edit.php:312
|
1437 |
-
#: dashboard/publisher/adverts-report.php:
|
1438 |
-
#: dashboard/publisher/groups-report.php:
|
1439 |
msgid "Note:"
|
1440 |
msgstr "Beleška:"
|
1441 |
|
@@ -1567,8 +1551,8 @@ msgid "Mode"
|
|
1567 |
msgstr "Mod"
|
1568 |
|
1569 |
#: dashboard/publisher/adverts-error.php:12
|
1570 |
-
msgid "
|
1571 |
-
msgstr "
|
1572 |
|
1573 |
#: dashboard/publisher/adverts-error.php:20
|
1574 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1606,8 +1590,8 @@ msgid "Configuration errors."
|
|
1606 |
msgstr "Konfiguracione greške."
|
1607 |
|
1608 |
#: dashboard/publisher/adverts-main.php:12
|
1609 |
-
msgid "Active
|
1610 |
-
msgstr "
|
1611 |
|
1612 |
#: dashboard/publisher/adverts-main.php:24
|
1613 |
#, fuzzy
|
@@ -1627,36 +1611,38 @@ msgid "Today"
|
|
1627 |
msgstr "Danas"
|
1628 |
|
1629 |
#: dashboard/publisher/adverts-main.php:109
|
1630 |
-
msgid "No
|
1631 |
-
msgstr "
|
1632 |
|
1633 |
-
#: dashboard/publisher/adverts-report.php:
|
1634 |
#, fuzzy
|
1635 |
msgid "Statistics for advert"
|
1636 |
msgstr "Sttistike za"
|
1637 |
|
1638 |
-
#: dashboard/publisher/adverts-report.php:
|
1639 |
-
#: dashboard/publisher/
|
|
|
|
|
1640 |
msgid "Impressions"
|
1641 |
msgstr "Utisci"
|
1642 |
|
1643 |
-
#: dashboard/publisher/adverts-report.php:
|
1644 |
-
#: dashboard/publisher/groups-report.php:
|
1645 |
msgid "Impressions today"
|
1646 |
msgstr "Današnji utisci"
|
1647 |
|
1648 |
-
#: dashboard/publisher/adverts-report.php:
|
1649 |
-
#: dashboard/publisher/groups-report.php:
|
1650 |
msgid "Clicks today"
|
1651 |
msgstr "Klik danas"
|
1652 |
|
1653 |
-
#: dashboard/publisher/adverts-report.php:
|
1654 |
-
#: dashboard/publisher/groups-report.php:
|
1655 |
msgid "Monthly overview of clicks and impressions"
|
1656 |
msgstr "Mesečni pregled klikova i utisaka"
|
1657 |
|
1658 |
-
#: dashboard/publisher/adverts-report.php:
|
1659 |
-
#: dashboard/publisher/groups-report.php:
|
1660 |
msgid ""
|
1661 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1662 |
"counted by other parties."
|
@@ -1682,8 +1668,8 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1682 |
msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
|
1683 |
|
1684 |
#: dashboard/publisher/groups-edit.php:66
|
1685 |
-
msgid "Block Mode - Show a block of
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
#: dashboard/publisher/groups-edit.php:70
|
1689 |
#, fuzzy
|
@@ -1735,13 +1721,10 @@ msgid "pixel(s) high."
|
|
1735 |
msgstr "visina piksela"
|
1736 |
|
1737 |
#: dashboard/publisher/groups-edit.php:104
|
1738 |
-
#, fuzzy
|
1739 |
msgid ""
|
1740 |
-
"Define the maximum size of the
|
1741 |
"recommended). Default: 125/125."
|
1742 |
msgstr ""
|
1743 |
-
"Definišite maksimalnu veličinu oglasa u pikselima minus margine . Veličina "
|
1744 |
-
"može biti 'auto' ( ne preporučuje se) . Default: 125/125."
|
1745 |
|
1746 |
#: dashboard/publisher/groups-edit.php:108
|
1747 |
#, fuzzy
|
@@ -1769,8 +1752,8 @@ msgstr ""
|
|
1769 |
#: dashboard/publisher/groups-edit.php:141
|
1770 |
#: dashboard/publisher/groups-edit.php:288
|
1771 |
msgid ""
|
1772 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1773 |
-
"\" and enter ID"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1999,16 +1982,16 @@ msgid "Visible until"
|
|
1999 |
msgstr "Vidljivo do"
|
2000 |
|
2001 |
#: dashboard/publisher/groups-edit.php:379
|
2002 |
-
msgid "No
|
2003 |
-
msgstr "
|
2004 |
|
2005 |
#: dashboard/publisher/groups-main.php:21
|
2006 |
msgid "Delete Group"
|
2007 |
msgstr "Brisanje grupe"
|
2008 |
|
2009 |
#: dashboard/publisher/groups-main.php:22
|
2010 |
-
msgid "Delete Group including
|
2011 |
-
msgstr "
|
2012 |
|
2013 |
#: dashboard/publisher/groups-main.php:24
|
2014 |
msgid "You are about to delete a group"
|
@@ -2027,7 +2010,7 @@ msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
|
|
2027 |
msgid "No groups created!"
|
2028 |
msgstr "Grupa nije napravljena!"
|
2029 |
|
2030 |
-
#: dashboard/publisher/groups-report.php:
|
2031 |
#, fuzzy
|
2032 |
msgid "Statistics for group"
|
2033 |
msgstr "Sttistike za"
|
@@ -2515,15 +2498,27 @@ msgid "Unknown"
|
|
2515 |
msgstr ""
|
2516 |
|
2517 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2518 |
#, fuzzy
|
2519 |
msgid "Ad evaluation next run:"
|
2520 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
2521 |
|
2522 |
-
#: dashboard/settings/maintenance.php:
|
2523 |
msgid "Not scheduled!"
|
2524 |
msgstr "Nije planirano:"
|
2525 |
|
2526 |
-
#: dashboard/settings/maintenance.php:
|
2527 |
msgid "Clean Trackerdata next run:"
|
2528 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
2529 |
|
@@ -2646,40 +2641,23 @@ msgstr ""
|
|
2646 |
"email adresu. Sačuvajte prvi opcije !"
|
2647 |
|
2648 |
#: dashboard/settings/notifications.php:31
|
2649 |
-
#, fuzzy
|
2650 |
-
msgid "Dashboard Notifications"
|
2651 |
-
msgstr "Notifikacije"
|
2652 |
-
|
2653 |
-
#: dashboard/settings/notifications.php:32
|
2654 |
-
msgid "These show to every administrator who can edit adverts."
|
2655 |
-
msgstr ""
|
2656 |
-
|
2657 |
-
#: dashboard/settings/notifications.php:35
|
2658 |
-
msgid "Notification banners"
|
2659 |
-
msgstr ""
|
2660 |
-
|
2661 |
-
#: dashboard/settings/notifications.php:36
|
2662 |
-
msgid "Disable dashboard notifications."
|
2663 |
-
msgstr ""
|
2664 |
-
|
2665 |
-
#: dashboard/settings/notifications.php:40
|
2666 |
msgid "Email Notifications"
|
2667 |
msgstr "Email Obaveštenja"
|
2668 |
|
2669 |
-
#: dashboard/settings/notifications.php:
|
2670 |
#, fuzzy
|
2671 |
msgid "Set up who gets notification emails."
|
2672 |
msgstr "Oglasi koje treba neposrednu pažnju"
|
2673 |
|
2674 |
-
#: dashboard/settings/notifications.php:
|
2675 |
-
#: dashboard/settings/notifications.php:
|
2676 |
#, fuzzy
|
2677 |
msgid "Publishers"
|
2678 |
msgstr ""
|
2679 |
"Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
|
2680 |
"samo izdavačima ."
|
2681 |
|
2682 |
-
#: dashboard/settings/notifications.php:
|
2683 |
msgid ""
|
2684 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2685 |
"list to a minimum!"
|
@@ -2687,7 +2665,7 @@ msgstr ""
|
|
2687 |
"Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
|
2688 |
"ovu listu na minimum !"
|
2689 |
|
2690 |
-
#: dashboard/settings/notifications.php:
|
2691 |
#, fuzzy
|
2692 |
msgid ""
|
2693 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
@@ -2696,11 +2674,11 @@ msgstr ""
|
|
2696 |
"Poruke se šalju jednom u 24 sata kada je to potrebno . Ako ovo polje je "
|
2697 |
"praznofunkcija će biti onemogućena "
|
2698 |
|
2699 |
-
#: dashboard/settings/notifications.php:
|
2700 |
msgid "Advertisers"
|
2701 |
msgstr "Oglašivači"
|
2702 |
|
2703 |
-
#: dashboard/settings/notifications.php:
|
2704 |
#, fuzzy
|
2705 |
msgid ""
|
2706 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
@@ -2708,72 +2686,72 @@ msgid ""
|
|
2708 |
msgstr ""
|
2709 |
"Maksimalno 2 adrese. Odvojenu zarezima. Ovo polje ne može biti prazno !"
|
2710 |
|
2711 |
-
#: dashboard/settings/notifications.php:
|
2712 |
#, fuzzy
|
2713 |
msgid "Push Notifications"
|
2714 |
msgstr "Notifikacije"
|
2715 |
|
2716 |
-
#: dashboard/settings/notifications.php:
|
2717 |
msgid ""
|
2718 |
"Receive information about what is happening with your AdRotate setup on your "
|
2719 |
"smartphone via Pushover."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: dashboard/settings/notifications.php:
|
2723 |
msgid "When you are running out of Geo Targeting Lookups."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: dashboard/settings/notifications.php:
|
2727 |
msgid "Daily digest of any advert status other than normal."
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: dashboard/settings/notifications.php:
|
2731 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: dashboard/settings/notifications.php:
|
2735 |
#, fuzzy
|
2736 |
msgid "A moderator approved an advert from the moderation queue."
|
2737 |
msgstr "Odobri / odbaci reklame u red za uređivanje"
|
2738 |
|
2739 |
-
#: dashboard/settings/notifications.php:
|
2740 |
#, fuzzy
|
2741 |
msgid "A moderator rejected an advert from the moderation queue."
|
2742 |
msgstr "Odobri / odbaci reklame u red za uređivanje"
|
2743 |
|
2744 |
-
#: dashboard/settings/notifications.php:
|
2745 |
msgid ""
|
2746 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2747 |
"you may get a lot of messages!"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: dashboard/settings/notifications.php:
|
2751 |
#, fuzzy
|
2752 |
msgid "User Key"
|
2753 |
msgstr "korisnici-agenti"
|
2754 |
|
2755 |
-
#: dashboard/settings/notifications.php:
|
2756 |
msgid "Get your user token"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: dashboard/settings/notifications.php:
|
2760 |
-
#: dashboard/settings/notifications.php:
|
2761 |
msgid "here"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: dashboard/settings/notifications.php:
|
2765 |
msgid "Api Token"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: dashboard/settings/notifications.php:
|
2769 |
msgid "Create your"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: dashboard/settings/notifications.php:
|
2773 |
msgid "App"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: dashboard/settings/notifications.php:
|
2777 |
msgid "and get your API token"
|
2778 |
msgstr ""
|
2779 |
|
@@ -2932,6 +2910,84 @@ msgid ""
|
|
2932 |
msgstr ""
|
2933 |
"Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
|
2934 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2935 |
#, fuzzy
|
2936 |
#~ msgid "AdRotate Page"
|
2937 |
#~ msgstr "AdRotate Pro"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:57+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:57+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"
|
16 |
"X-Generator: Poedit 1.8.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:844
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
+
#: adrotate-functions.php:847
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
+
#: adrotate-functions.php:896
|
28 |
msgid "Ad saved"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: adrotate-functions.php:900
|
32 |
msgid "Group saved"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: adrotate-functions.php:904
|
36 |
msgid "Ad(s) deleted"
|
37 |
msgstr "Izbrisani oglasu"
|
38 |
|
39 |
+
#: adrotate-functions.php:908
|
40 |
msgid "Group deleted"
|
41 |
msgstr "Izbrisana grupa"
|
42 |
|
43 |
+
#: adrotate-functions.php:912
|
44 |
msgid "Ad(s) statistics reset"
|
45 |
msgstr "Statistički resestovani oglasi"
|
46 |
|
47 |
+
#: adrotate-functions.php:916
|
48 |
msgid "Ad(s) renewed"
|
49 |
msgstr "Ponovo obnovljeni oglasi"
|
50 |
|
51 |
+
#: adrotate-functions.php:920
|
52 |
msgid "Ad(s) deactivated"
|
53 |
msgstr "Deaktivirani oglasi"
|
54 |
|
55 |
+
#: adrotate-functions.php:924
|
56 |
msgid "Ad(s) activated"
|
57 |
msgstr "Aktivirani oglasi"
|
58 |
|
59 |
+
#: adrotate-functions.php:928
|
60 |
msgid "Group including it's Ads deleted"
|
61 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
62 |
|
63 |
+
#: adrotate-functions.php:932
|
64 |
#, fuzzy
|
65 |
msgid "Export created"
|
66 |
msgstr "Izlazne opcije za"
|
67 |
|
68 |
+
#: adrotate-functions.php:937
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Postavke sačuvane"
|
71 |
|
72 |
+
#: adrotate-functions.php:941
|
73 |
msgid "Database optimized"
|
74 |
msgstr "Baza podataka optimizirana"
|
75 |
|
76 |
+
#: adrotate-functions.php:945
|
77 |
msgid "Database repaired"
|
78 |
msgstr "Baza podataka popravljena"
|
79 |
|
80 |
+
#: adrotate-functions.php:949
|
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:953
|
85 |
msgid "Empty database records removed"
|
86 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
87 |
|
88 |
+
#: adrotate-functions.php:958
|
89 |
msgid "Action prohibited"
|
90 |
msgstr "Zabranjeno delo"
|
91 |
|
92 |
+
#: adrotate-functions.php:962
|
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:966
|
99 |
msgid "No data found in selected time period"
|
100 |
msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
|
101 |
|
102 |
+
#: adrotate-functions.php:970
|
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:974
|
107 |
msgid "Form can not be (partially) empty!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: adrotate-functions.php:978
|
111 |
msgid "No ads found."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: adrotate-functions.php:982
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: adrotate-manage-publisher.php:702
|
119 |
msgid "AdRotate Advertiser"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: adrotate-output.php:607
|
123 |
msgid "Oh no! Something went wrong!"
|
124 |
msgstr "O ne! Nešto nije kako treba!"
|
125 |
|
126 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
142 |
msgid "Contact support if the issue persists:"
|
143 |
msgstr "Kontaktirajte podršku ako se problem nastavi:"
|
144 |
|
145 |
+
#: adrotate-output.php:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
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:651
|
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:656
|
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:662
|
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:662
|
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:668
|
192 |
msgid "An unknown error occured."
|
193 |
msgstr "Nepoznati error se ukazao."
|
194 |
|
195 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
196 |
+
msgid "Check adverts"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: adrotate-output.php:698
|
200 |
+
msgid ""
|
201 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
202 |
+
"site!"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: adrotate-output.php:701
|
206 |
+
msgid ""
|
207 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
208 |
+
"not set."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: adrotate-output.php:706
|
212 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
216 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
217 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
218 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
219 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
220 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
221 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
#: dashboard/settings/geotargeting.php:26
|
223 |
#, fuzzy
|
224 |
msgid "Buy now"
|
225 |
msgstr "Kupite odmah"
|
226 |
|
227 |
+
#: adrotate-output.php:747
|
228 |
msgid ""
|
229 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
230 |
"to the <strong>PRO</strong> version"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: adrotate-output.php:747
|
234 |
#, php-format
|
235 |
msgid ""
|
236 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:747
|
240 |
msgid "Thank you for your purchase!"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: adrotate-output.php:791
|
244 |
msgid ""
|
245 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
246 |
"this menu. Check out the"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: adrotate-output.php:791
|
250 |
msgid "manuals"
|
251 |
msgstr "priručnici"
|
252 |
|
253 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
254 |
msgid "and"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:791
|
258 |
msgid "forums"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:824
|
262 |
#, fuzzy
|
263 |
msgid "Useful Links"
|
264 |
msgstr "Korisni linkovi"
|
265 |
|
266 |
+
#: adrotate-output.php:825
|
267 |
msgid "Useful links to learn more about AdRotate"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: adrotate-output.php:827
|
271 |
msgid "AdRotate website"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: adrotate-output.php:828
|
275 |
#, fuzzy
|
276 |
msgid "Getting Started With AdRotate"
|
277 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
278 |
|
279 |
+
#: adrotate-output.php:829
|
280 |
#, fuzzy
|
281 |
msgid "AdRotate manuals"
|
282 |
msgstr "AdRotate informacije"
|
283 |
|
284 |
+
#: adrotate-output.php:830
|
285 |
#, fuzzy
|
286 |
msgid "AdRotate Support Forum"
|
287 |
msgstr "AdRotate prodavnica"
|
288 |
|
289 |
+
#: adrotate-output.php:856
|
290 |
#, fuzzy
|
291 |
msgid "Help AdRotate Grow"
|
292 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
293 |
|
294 |
+
#: adrotate-output.php:857
|
295 |
+
msgid "Follow Arnan on Facebook"
|
296 |
+
msgstr ""
|
297 |
|
298 |
+
#: adrotate-output.php:864
|
299 |
msgid ""
|
300 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
301 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: adrotate-output.php:864
|
305 |
msgid "If you find AdRotate useful please leave your honest"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: adrotate-output.php:864
|
309 |
msgid "rating"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: adrotate-output.php:864
|
313 |
#, fuzzy
|
314 |
msgid "review"
|
315 |
msgstr "Dajte ocenu i komentar"
|
316 |
|
317 |
+
#: adrotate-output.php:864
|
318 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: adrotate-output.php:903
|
322 |
msgid "Available in AdRotate Pro"
|
323 |
msgstr "Dostupno u AdRotate Pro"
|
324 |
|
325 |
+
#: adrotate-output.php:903
|
326 |
#, fuzzy
|
327 |
msgid "More information..."
|
328 |
msgstr "Saznajte više"
|
329 |
|
330 |
+
#: adrotate-output.php:904
|
331 |
msgid "This feature is available in AdRotate Pro"
|
332 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
333 |
|
334 |
+
#: adrotate-output.php:904
|
335 |
msgid "Learn more"
|
336 |
msgstr "Saznajte više"
|
337 |
|
411 |
msgid "No data to show!"
|
412 |
msgstr "Nema podataka za prikaz!"
|
413 |
|
414 |
+
#: adrotate-widget.php:116
|
415 |
msgid "Title (optional):"
|
416 |
msgstr "Naslov (opcionalno):"
|
417 |
|
418 |
+
#: adrotate-widget.php:119
|
419 |
msgid "HTML will be stripped out."
|
420 |
msgstr "HTML će biti skinut."
|
421 |
|
422 |
+
#: adrotate-widget.php:122
|
423 |
#, fuzzy
|
424 |
msgid "Description (optional):"
|
425 |
msgstr "Naslov (opcionalno):"
|
426 |
|
427 |
+
#: adrotate-widget.php:125
|
428 |
#, fuzzy
|
429 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
430 |
msgstr "HTML će biti skinut."
|
431 |
|
432 |
+
#: adrotate-widget.php:128
|
433 |
msgid "Type:"
|
434 |
msgstr "Tip:"
|
435 |
|
436 |
+
#: adrotate-widget.php:130
|
437 |
+
msgid "Advert - Use Advert ID"
|
438 |
+
msgstr ""
|
439 |
|
440 |
+
#: adrotate-widget.php:131
|
441 |
+
msgid "Group - Use group ID"
|
442 |
+
msgstr ""
|
443 |
|
444 |
+
#: adrotate-widget.php:134
|
445 |
msgid "Choose what you want to use this widget for"
|
446 |
msgstr "Izaberite za šta želite da koristite ovaj widget "
|
447 |
|
448 |
+
#: adrotate-widget.php:137
|
449 |
msgid "ID:"
|
450 |
msgstr "ID:"
|
451 |
|
452 |
+
#: adrotate-widget.php:140
|
453 |
msgid "Fill in the ID of the type you want to display!"
|
454 |
msgstr "Popunite ID tipa koji želite da prikažete!"
|
455 |
|
456 |
+
#: adrotate.php:105
|
457 |
msgid "General Info"
|
458 |
msgstr "Opšte informacije"
|
459 |
|
460 |
+
#: adrotate.php:106
|
461 |
msgid "AdRotate Pro"
|
462 |
msgstr "AdRotate Pro"
|
463 |
|
464 |
+
#: adrotate.php:107
|
465 |
+
msgid "Manage Adverts"
|
466 |
+
msgstr ""
|
467 |
|
468 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
469 |
msgid "Manage Groups"
|
470 |
msgstr "Upravljajte grupama"
|
471 |
|
472 |
+
#: adrotate.php:109 adrotate.php:407
|
473 |
#, fuzzy
|
474 |
msgid "Manage Schedules"
|
475 |
msgstr "Upravljati"
|
476 |
|
477 |
+
#: adrotate.php:110
|
478 |
#, fuzzy
|
479 |
msgid "Manage Media"
|
480 |
msgstr "Media:"
|
481 |
|
482 |
+
#: adrotate.php:111
|
483 |
msgid "Settings"
|
484 |
msgstr "Postavke"
|
485 |
|
486 |
+
#: adrotate.php:134
|
487 |
msgid "AdRotate Info"
|
488 |
msgstr "AdRotate informacije"
|
489 |
|
490 |
+
#: adrotate.php:155
|
491 |
#, fuzzy
|
492 |
msgid "AdRotate Professional"
|
493 |
msgstr "AdRotate promocije"
|
494 |
|
495 |
+
#: adrotate.php:198
|
496 |
+
msgid "Advert Management"
|
497 |
+
msgstr ""
|
498 |
|
499 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
500 |
msgid "Manage"
|
501 |
msgstr "Upravljati"
|
502 |
|
503 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
504 |
msgid "Add New"
|
505 |
msgstr "Dodati novi"
|
506 |
|
507 |
+
#: adrotate.php:336
|
508 |
msgid "Group Management"
|
509 |
msgstr "Menadžment grupe"
|
510 |
|
511 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
512 |
#: dashboard/publisher/groups-main.php:70
|
513 |
msgid "Report"
|
514 |
msgstr "Izveštaj"
|
515 |
|
516 |
+
#: adrotate.php:398
|
517 |
#, fuzzy
|
518 |
msgid "Schedule Management available in AdRotate Pro"
|
519 |
msgstr "Dostupno u AdRotate Pro"
|
520 |
|
521 |
+
#: adrotate.php:408
|
522 |
#, fuzzy
|
523 |
msgid ""
|
524 |
"Schedule management and multiple schedules per advert is available in "
|
525 |
"AdRotate Pro."
|
526 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
527 |
|
528 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
529 |
#: dashboard/publisher/adverts-main.php:114
|
530 |
#: dashboard/publisher/groups-edit.php:75
|
531 |
#: dashboard/publisher/groups-main.php:89
|
533 |
msgid "More information"
|
534 |
msgstr "Saznajte više"
|
535 |
|
536 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
537 |
#: dashboard/publisher/adverts-error.php:19
|
538 |
#: dashboard/publisher/adverts-main.php:20
|
539 |
#: dashboard/publisher/groups-main.php:20
|
540 |
msgid "Bulk Actions"
|
541 |
msgstr "Delo bulk-ovanja"
|
542 |
|
543 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
544 |
#: dashboard/publisher/adverts-error.php:29
|
545 |
#: dashboard/publisher/adverts-main.php:30
|
546 |
#: dashboard/publisher/groups-main.php:24
|
547 |
msgid "Go"
|
548 |
msgstr "Kreni"
|
549 |
|
550 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
551 |
#: dashboard/publisher/adverts-error.php:39
|
552 |
#: dashboard/publisher/adverts-main.php:39
|
553 |
#: dashboard/publisher/groups-edit.php:51
|
555 |
msgid "ID"
|
556 |
msgstr "ID"
|
557 |
|
558 |
+
#: adrotate.php:426
|
559 |
#, fuzzy
|
560 |
msgid "Start"
|
561 |
msgstr "Početno vreme (hh:mm):"
|
562 |
|
563 |
+
#: adrotate.php:426
|
564 |
#, fuzzy
|
565 |
msgid "End"
|
566 |
msgstr "Završno vreme (hh:mm):"
|
567 |
|
568 |
+
#: adrotate.php:427
|
|
|
569 |
msgid "Ads"
|
570 |
msgstr "Oglasi"
|
571 |
|
572 |
+
#: adrotate.php:429
|
573 |
#, fuzzy
|
574 |
msgid "Max Impressions"
|
575 |
msgstr "Utisci"
|
576 |
|
577 |
+
#: adrotate.php:430
|
578 |
#, fuzzy
|
579 |
msgid "Max Clicks"
|
580 |
msgstr "Klikovi"
|
581 |
|
582 |
+
#: adrotate.php:460
|
583 |
#, fuzzy
|
584 |
msgid "No schedules created yet!"
|
585 |
msgstr "Nijedan blok nije stvoren još uvek!"
|
586 |
|
587 |
+
#: adrotate.php:465
|
588 |
#, fuzzy
|
589 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
590 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
591 |
|
592 |
+
#: adrotate.php:465 adrotate.php:531
|
593 |
#, fuzzy
|
594 |
msgid "Upgrade today!"
|
595 |
msgstr "Danas"
|
596 |
|
597 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
598 |
#: dashboard/publisher/groups-edit.php:387
|
599 |
msgid "Expires soon."
|
600 |
msgstr "Ističe uskoro."
|
601 |
|
602 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
603 |
#: dashboard/publisher/groups-edit.php:388
|
604 |
msgid "Has expired."
|
605 |
msgstr "Isteklo je."
|
606 |
|
607 |
+
#: adrotate.php:493
|
608 |
#, fuzzy
|
609 |
msgid "Media Management available in AdRotate Pro"
|
610 |
msgstr "Dostupno u AdRotate Pro"
|
611 |
|
612 |
+
#: adrotate.php:495
|
613 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: adrotate.php:495
|
617 |
msgid ""
|
618 |
"This is useful if you use responsive adverts with multiple images or have "
|
619 |
"HTML5 adverts containing multiple files."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: adrotate.php:495
|
623 |
#, fuzzy
|
624 |
msgid "Media uploading and management is available in AdRotate Pro."
|
625 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
626 |
|
627 |
+
#: adrotate.php:497
|
628 |
msgid "Upload new file"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: adrotate.php:498
|
632 |
msgid "Accepted files:"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: adrotate.php:498
|
636 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: adrotate.php:498
|
640 |
msgid "Maximum size is 512Kb."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: adrotate.php:498
|
644 |
msgid "Important:"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: adrotate.php:498
|
648 |
msgid ""
|
649 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
650 |
"spaces with a - or _."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: adrotate.php:498
|
654 |
msgid ""
|
655 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
656 |
"file so it knows about the changed name. For example for the javascript file."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: adrotate.php:501
|
660 |
msgid ""
|
661 |
"For responsive adverts make sure the filename is in the following format; "
|
662 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
666 |
msgid ""
|
667 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
668 |
"filename instead of \".full\" for the various viewports."
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
672 |
#: dashboard/publisher/groups-edit.php:320
|
673 |
msgid "Example:"
|
674 |
msgstr "Primer"
|
675 |
|
676 |
+
#: adrotate.php:503
|
677 |
msgid ""
|
678 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
679 |
"for different viewports."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: adrotate.php:507
|
683 |
msgid "Upload file"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: adrotate.php:507
|
687 |
msgid "Click only once per file!"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: adrotate.php:510
|
691 |
msgid "Available files in"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
695 |
#: dashboard/publisher/groups-main.php:33
|
696 |
msgid "Name"
|
697 |
msgstr "Ime"
|
698 |
|
699 |
+
#: adrotate.php:516
|
700 |
#, fuzzy
|
701 |
msgid "Actions"
|
702 |
msgstr "Delo bulk-ovanja"
|
703 |
|
704 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
705 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
706 |
#: dashboard/publisher/adverts-disabled.php:22
|
707 |
#: dashboard/publisher/adverts-error.php:21
|
708 |
#: dashboard/publisher/adverts-main.php:22
|
709 |
msgid "Delete"
|
710 |
msgstr "Obrisati"
|
711 |
|
712 |
+
#: adrotate.php:531
|
713 |
msgid ""
|
714 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: adrotate.php:531
|
718 |
#, fuzzy
|
719 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
720 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
721 |
|
722 |
+
#: adrotate.php:560
|
723 |
msgid "AdRotate Settings"
|
724 |
msgstr "AdRotate postavke"
|
725 |
|
726 |
+
#: adrotate.php:631
|
727 |
msgid "Update Options"
|
728 |
msgstr "Update opcije"
|
729 |
|
776 |
"forum. Get a solution (usually) within a day."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
780 |
msgid "AdRotate is brought to you by"
|
781 |
msgstr "AdRotate vam je omogućio"
|
782 |
|
783 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "Schedule all campaigns with ease"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: dashboard/adrotatepro.php:77
|
788 |
msgid ""
|
789 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
790 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
792 |
"much more easy. You can set one or many schedules for adverts."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: dashboard/adrotatepro.php:81
|
796 |
msgid "Avoid adblockers"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: dashboard/adrotatepro.php:84
|
800 |
msgid ""
|
801 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
802 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
804 |
"adverts smartly so these features reach their full potential!"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: dashboard/adrotatepro.php:88
|
808 |
msgid "Stay up-to-date with notifications"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: dashboard/adrotatepro.php:91
|
812 |
msgid ""
|
813 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
814 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
817 |
"miss an expiration date again."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
821 |
+
#: dashboard/info.php:78
|
822 |
#, fuzzy
|
823 |
msgid "Buy AdRotate Professional"
|
824 |
msgstr "Kupite odmah"
|
825 |
|
826 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
827 |
msgid "Single License"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
831 |
#, fuzzy
|
832 |
msgid "For one WordPress installation."
|
833 |
msgstr "Instalacije"
|
834 |
|
835 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
836 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
837 |
msgid "Duo License"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
841 |
#, fuzzy
|
842 |
msgid "For two WordPress installations."
|
843 |
msgstr "Instalacije"
|
844 |
|
845 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
846 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
847 |
msgid "Multi License"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
851 |
#, fuzzy
|
852 |
msgid " For up to five WordPress installations."
|
853 |
msgstr "Instalacije"
|
854 |
|
855 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
856 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
857 |
#, fuzzy
|
858 |
msgid "Developer License"
|
859 |
msgstr "Debug za programera"
|
860 |
|
861 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
862 |
msgid "Unlimited WordPress installations and/or networks."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
866 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
867 |
msgid "Compare licenses"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
871 |
msgid "Not sure which license is for you? Compare them..."
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
875 |
#, fuzzy
|
876 |
msgid "All Licenses"
|
877 |
msgstr "Ponovo ocenite sve oglase"
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
880 |
msgid "Lifetime License"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
884 |
msgid "Single installation."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
888 |
msgid "Up to 2 installations."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
892 |
msgid "Up to 10 installations."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
896 |
msgid "Up to 25 installations or multisite networks."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
900 |
msgid ""
|
901 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
905 |
msgid "Not sure which license is for you?"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
909 |
msgid "Compare Licenses"
|
910 |
msgstr ""
|
911 |
|
921 |
msgid "Adverts that need you"
|
922 |
msgstr "Oglasi koji su vam potrebni"
|
923 |
|
924 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
925 |
+
#: dashboard/publisher/groups-main.php:34
|
926 |
msgid "Adverts"
|
927 |
msgstr "Oglasi"
|
928 |
|
944 |
|
945 |
#: dashboard/info.php:55
|
946 |
msgid ""
|
947 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
948 |
+
"for updates about me and my plugins. Thank you!"
|
949 |
msgstr ""
|
950 |
|
|
|
|
|
|
|
|
|
951 |
#: dashboard/info.php:103
|
952 |
+
msgid ""
|
953 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
954 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
955 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: dashboard/info.php:113
|
959 |
#, fuzzy
|
960 |
msgid "Get more features with AdRotate Pro"
|
961 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
962 |
|
963 |
+
#: dashboard/info.php:116
|
964 |
msgid ""
|
965 |
"Benefit from extra features to reinforce your income with advertising "
|
966 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
967 |
"Pro offers on top of the trusted features included in the free version."
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: dashboard/info.php:116
|
971 |
msgid "Want to know more about"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: dashboard/info.php:116
|
975 |
msgid "Visit the"
|
976 |
msgstr "Posetite"
|
977 |
|
978 |
+
#: dashboard/info.php:116
|
979 |
msgid "website"
|
980 |
msgstr "websajt"
|
981 |
|
982 |
+
#: dashboard/info.php:120
|
983 |
+
msgid "AdRotate News and Developer Blog"
|
984 |
+
msgstr "AdRotate novosti i blog za programere"
|
985 |
+
|
986 |
#: dashboard/publisher/adverts-disabled.php:15
|
987 |
+
msgid "Disabled Adverts"
|
988 |
+
msgstr ""
|
989 |
|
990 |
#: dashboard/publisher/adverts-disabled.php:21
|
991 |
#: dashboard/publisher/adverts-edit.php:176
|
1025 |
|
1026 |
#: dashboard/publisher/adverts-disabled.php:39
|
1027 |
#: dashboard/publisher/adverts-main.php:46
|
1028 |
+
#: dashboard/publisher/adverts-report.php:36
|
1029 |
+
#: dashboard/publisher/adverts-report.php:57
|
1030 |
#: dashboard/publisher/groups-edit.php:334
|
1031 |
#: dashboard/publisher/groups-main.php:38
|
1032 |
+
#: dashboard/publisher/groups-report.php:37
|
1033 |
+
#: dashboard/publisher/groups-report.php:58
|
1034 |
msgid "Clicks"
|
1035 |
msgstr "Klikovi"
|
1036 |
|
1037 |
#: dashboard/publisher/adverts-disabled.php:40
|
1038 |
#: dashboard/publisher/adverts-main.php:48
|
1039 |
+
#: dashboard/publisher/adverts-report.php:39
|
1040 |
+
#: dashboard/publisher/adverts-report.php:58
|
1041 |
+
#: dashboard/publisher/groups-report.php:40
|
1042 |
+
#: dashboard/publisher/groups-report.php:59
|
1043 |
msgid "CTR"
|
1044 |
msgstr "CTR"
|
1045 |
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: dashboard/publisher/adverts-edit.php:312
|
1421 |
+
#: dashboard/publisher/adverts-report.php:64
|
1422 |
+
#: dashboard/publisher/groups-report.php:65
|
1423 |
msgid "Note:"
|
1424 |
msgstr "Beleška:"
|
1425 |
|
1551 |
msgstr "Mod"
|
1552 |
|
1553 |
#: dashboard/publisher/adverts-error.php:12
|
1554 |
+
msgid "Adverts that need attention"
|
1555 |
+
msgstr ""
|
1556 |
|
1557 |
#: dashboard/publisher/adverts-error.php:20
|
1558 |
#: dashboard/publisher/adverts-main.php:21
|
1590 |
msgstr "Konfiguracione greške."
|
1591 |
|
1592 |
#: dashboard/publisher/adverts-main.php:12
|
1593 |
+
msgid "Active Adverts"
|
1594 |
+
msgstr ""
|
1595 |
|
1596 |
#: dashboard/publisher/adverts-main.php:24
|
1597 |
#, fuzzy
|
1611 |
msgstr "Danas"
|
1612 |
|
1613 |
#: dashboard/publisher/adverts-main.php:109
|
1614 |
+
msgid "No adverts created yet!"
|
1615 |
+
msgstr ""
|
1616 |
|
1617 |
+
#: dashboard/publisher/adverts-report.php:30
|
1618 |
#, fuzzy
|
1619 |
msgid "Statistics for advert"
|
1620 |
msgstr "Sttistike za"
|
1621 |
|
1622 |
+
#: dashboard/publisher/adverts-report.php:35
|
1623 |
+
#: dashboard/publisher/adverts-report.php:56
|
1624 |
+
#: dashboard/publisher/groups-report.php:36
|
1625 |
+
#: dashboard/publisher/groups-report.php:57
|
1626 |
msgid "Impressions"
|
1627 |
msgstr "Utisci"
|
1628 |
|
1629 |
+
#: dashboard/publisher/adverts-report.php:37
|
1630 |
+
#: dashboard/publisher/groups-report.php:38
|
1631 |
msgid "Impressions today"
|
1632 |
msgstr "Današnji utisci"
|
1633 |
|
1634 |
+
#: dashboard/publisher/adverts-report.php:38
|
1635 |
+
#: dashboard/publisher/groups-report.php:39
|
1636 |
msgid "Clicks today"
|
1637 |
msgstr "Klik danas"
|
1638 |
|
1639 |
+
#: dashboard/publisher/adverts-report.php:45
|
1640 |
+
#: dashboard/publisher/groups-report.php:46
|
1641 |
msgid "Monthly overview of clicks and impressions"
|
1642 |
msgstr "Mesečni pregled klikova i utisaka"
|
1643 |
|
1644 |
+
#: dashboard/publisher/adverts-report.php:64
|
1645 |
+
#: dashboard/publisher/groups-report.php:65
|
1646 |
msgid ""
|
1647 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1648 |
"counted by other parties."
|
1668 |
msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
|
1669 |
|
1670 |
#: dashboard/publisher/groups-edit.php:66
|
1671 |
+
msgid "Block Mode - Show a block of adverts"
|
1672 |
+
msgstr ""
|
1673 |
|
1674 |
#: dashboard/publisher/groups-edit.php:70
|
1675 |
#, fuzzy
|
1721 |
msgstr "visina piksela"
|
1722 |
|
1723 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1724 |
msgid ""
|
1725 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1726 |
"recommended). Default: 125/125."
|
1727 |
msgstr ""
|
|
|
|
|
1728 |
|
1729 |
#: dashboard/publisher/groups-edit.php:108
|
1730 |
#, fuzzy
|
1752 |
#: dashboard/publisher/groups-edit.php:141
|
1753 |
#: dashboard/publisher/groups-edit.php:288
|
1754 |
msgid ""
|
1755 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1756 |
+
"Adverts\" and enter ID"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: dashboard/publisher/groups-edit.php:153
|
1982 |
msgstr "Vidljivo do"
|
1983 |
|
1984 |
#: dashboard/publisher/groups-edit.php:379
|
1985 |
+
msgid "No adverts created!"
|
1986 |
+
msgstr ""
|
1987 |
|
1988 |
#: dashboard/publisher/groups-main.php:21
|
1989 |
msgid "Delete Group"
|
1990 |
msgstr "Brisanje grupe"
|
1991 |
|
1992 |
#: dashboard/publisher/groups-main.php:22
|
1993 |
+
msgid "Delete Group including adverts"
|
1994 |
+
msgstr ""
|
1995 |
|
1996 |
#: dashboard/publisher/groups-main.php:24
|
1997 |
msgid "You are about to delete a group"
|
2010 |
msgid "No groups created!"
|
2011 |
msgstr "Grupa nije napravljena!"
|
2012 |
|
2013 |
+
#: dashboard/publisher/groups-report.php:31
|
2014 |
#, fuzzy
|
2015 |
msgid "Statistics for group"
|
2016 |
msgstr "Sttistike za"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
#: dashboard/settings/maintenance.php:70
|
2501 |
+
msgid "Banners/assets Folder"
|
2502 |
+
msgstr ""
|
2503 |
+
|
2504 |
+
#: dashboard/settings/maintenance.php:72
|
2505 |
+
msgid "Exists and appears writable"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: dashboard/settings/maintenance.php:72
|
2509 |
+
msgid "Not writable or does not exist"
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#: dashboard/settings/maintenance.php:76
|
2513 |
#, fuzzy
|
2514 |
msgid "Ad evaluation next run:"
|
2515 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
2516 |
|
2517 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2518 |
msgid "Not scheduled!"
|
2519 |
msgstr "Nije planirano:"
|
2520 |
|
2521 |
+
#: dashboard/settings/maintenance.php:80
|
2522 |
msgid "Clean Trackerdata next run:"
|
2523 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
2524 |
|
2641 |
"email adresu. Sačuvajte prvi opcije !"
|
2642 |
|
2643 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2644 |
msgid "Email Notifications"
|
2645 |
msgstr "Email Obaveštenja"
|
2646 |
|
2647 |
+
#: dashboard/settings/notifications.php:32
|
2648 |
#, fuzzy
|
2649 |
msgid "Set up who gets notification emails."
|
2650 |
msgstr "Oglasi koje treba neposrednu pažnju"
|
2651 |
|
2652 |
+
#: dashboard/settings/notifications.php:35
|
2653 |
+
#: dashboard/settings/notifications.php:55
|
2654 |
#, fuzzy
|
2655 |
msgid "Publishers"
|
2656 |
msgstr ""
|
2657 |
"Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
|
2658 |
"samo izdavačima ."
|
2659 |
|
2660 |
+
#: dashboard/settings/notifications.php:38
|
2661 |
msgid ""
|
2662 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2663 |
"list to a minimum!"
|
2665 |
"Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
|
2666 |
"ovu listu na minimum !"
|
2667 |
|
2668 |
+
#: dashboard/settings/notifications.php:39
|
2669 |
#, fuzzy
|
2670 |
msgid ""
|
2671 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2674 |
"Poruke se šalju jednom u 24 sata kada je to potrebno . Ako ovo polje je "
|
2675 |
"praznofunkcija će biti onemogućena "
|
2676 |
|
2677 |
+
#: dashboard/settings/notifications.php:43
|
2678 |
msgid "Advertisers"
|
2679 |
msgstr "Oglašivači"
|
2680 |
|
2681 |
+
#: dashboard/settings/notifications.php:46
|
2682 |
#, fuzzy
|
2683 |
msgid ""
|
2684 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2686 |
msgstr ""
|
2687 |
"Maksimalno 2 adrese. Odvojenu zarezima. Ovo polje ne može biti prazno !"
|
2688 |
|
2689 |
+
#: dashboard/settings/notifications.php:51
|
2690 |
#, fuzzy
|
2691 |
msgid "Push Notifications"
|
2692 |
msgstr "Notifikacije"
|
2693 |
|
2694 |
+
#: dashboard/settings/notifications.php:52
|
2695 |
msgid ""
|
2696 |
"Receive information about what is happening with your AdRotate setup on your "
|
2697 |
"smartphone via Pushover."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: dashboard/settings/notifications.php:57
|
2701 |
msgid "When you are running out of Geo Targeting Lookups."
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: dashboard/settings/notifications.php:58
|
2705 |
msgid "Daily digest of any advert status other than normal."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: dashboard/settings/notifications.php:59
|
2709 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: dashboard/settings/notifications.php:60
|
2713 |
#, fuzzy
|
2714 |
msgid "A moderator approved an advert from the moderation queue."
|
2715 |
msgstr "Odobri / odbaci reklame u red za uređivanje"
|
2716 |
|
2717 |
+
#: dashboard/settings/notifications.php:61
|
2718 |
#, fuzzy
|
2719 |
msgid "A moderator rejected an advert from the moderation queue."
|
2720 |
msgstr "Odobri / odbaci reklame u red za uređivanje"
|
2721 |
|
2722 |
+
#: dashboard/settings/notifications.php:61
|
2723 |
msgid ""
|
2724 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2725 |
"you may get a lot of messages!"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: dashboard/settings/notifications.php:66
|
2729 |
#, fuzzy
|
2730 |
msgid "User Key"
|
2731 |
msgstr "korisnici-agenti"
|
2732 |
|
2733 |
+
#: dashboard/settings/notifications.php:68
|
2734 |
msgid "Get your user token"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: dashboard/settings/notifications.php:68
|
2738 |
+
#: dashboard/settings/notifications.php:74
|
2739 |
msgid "here"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: dashboard/settings/notifications.php:72
|
2743 |
msgid "Api Token"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: dashboard/settings/notifications.php:74
|
2747 |
msgid "Create your"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: dashboard/settings/notifications.php:74
|
2751 |
msgid "App"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: dashboard/settings/notifications.php:74
|
2755 |
msgid "and get your API token"
|
2756 |
msgstr ""
|
2757 |
|
2910 |
msgstr ""
|
2911 |
"Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
|
2912 |
|
2913 |
+
#~ msgid "active ad(s) expired."
|
2914 |
+
#~ msgstr "aktivni ad-ovi su istekli."
|
2915 |
+
|
2916 |
+
#~ msgid "Take action now"
|
2917 |
+
#~ msgstr "Reagujte odmah"
|
2918 |
+
|
2919 |
+
#~ msgid "active ad(s) are about to expire."
|
2920 |
+
#~ msgstr "aktivni ad-ovi će uskoro da isteknu."
|
2921 |
+
|
2922 |
+
#~ msgid "Check it out"
|
2923 |
+
#~ msgstr "Pogledajte ovde"
|
2924 |
+
|
2925 |
+
#~ msgid "active ad(s) with configuration errors."
|
2926 |
+
#~ msgstr "aktivni ad-ovi sa konfiguracionim greškama."
|
2927 |
+
|
2928 |
+
#~ msgid "Solve this"
|
2929 |
+
#~ msgstr "Reši ovo"
|
2930 |
+
|
2931 |
+
#~ msgid "ad(s) expired."
|
2932 |
+
#~ msgstr "ad-ovi su istekli."
|
2933 |
+
|
2934 |
+
#~ msgid "ad(s) are about to expire."
|
2935 |
+
#~ msgstr "ad-ovi će uskoro da isteknu."
|
2936 |
+
|
2937 |
+
#~ msgid "ad(s) with configuration errors."
|
2938 |
+
#~ msgstr "ad-ovi sa konfiguracionim greškama."
|
2939 |
+
|
2940 |
+
#~ msgid "Fix this as soon as possible"
|
2941 |
+
#~ msgstr "Popravi ovo što pre je moguće"
|
2942 |
+
|
2943 |
+
#~ msgid "Brought to you by"
|
2944 |
+
#~ msgstr "Za tebe od"
|
2945 |
+
|
2946 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2947 |
+
#~ msgstr "Single oglas- koristi Ad ID"
|
2948 |
+
|
2949 |
+
#~ msgid "Group of Ads - Use group ID"
|
2950 |
+
#~ msgstr "Gupni oglasi - Koristite grupni ID"
|
2951 |
+
|
2952 |
+
#~ msgid "Manage Ads"
|
2953 |
+
#~ msgstr "Upravljajte oglasima"
|
2954 |
+
|
2955 |
+
#~ msgid "Ad Management"
|
2956 |
+
#~ msgstr "Menadžment oglasa"
|
2957 |
+
|
2958 |
+
#~ msgid "Disabled Ads"
|
2959 |
+
#~ msgstr "Onemogući odgovore"
|
2960 |
+
|
2961 |
+
#~ msgid "Ads that need immediate attention"
|
2962 |
+
#~ msgstr "Oglasi koje treba neposrednu pažnju"
|
2963 |
+
|
2964 |
+
#~ msgid "Active Ads"
|
2965 |
+
#~ msgstr "Aktivni oglasi"
|
2966 |
+
|
2967 |
+
#~ msgid "No ads created yet!"
|
2968 |
+
#~ msgstr "Nijedan oglas još nje stvoren!"
|
2969 |
+
|
2970 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2971 |
+
#~ msgstr "Blok mod - Prikaži blokove oglasa"
|
2972 |
+
|
2973 |
+
#, fuzzy
|
2974 |
+
#~ msgid ""
|
2975 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
2976 |
+
#~ "recommended). Default: 125/125."
|
2977 |
+
#~ msgstr ""
|
2978 |
+
#~ "Definišite maksimalnu veličinu oglasa u pikselima minus margine . "
|
2979 |
+
#~ "Veličina može biti 'auto' ( ne preporučuje se) . Default: 125/125."
|
2980 |
+
|
2981 |
+
#~ msgid "No ads created!"
|
2982 |
+
#~ msgstr "Nema oglasa stvorio!"
|
2983 |
+
|
2984 |
+
#~ msgid "Delete Group including ads"
|
2985 |
+
#~ msgstr "Brisanje grupe, uključujući i oglase"
|
2986 |
+
|
2987 |
+
#, fuzzy
|
2988 |
+
#~ msgid "Dashboard Notifications"
|
2989 |
+
#~ msgstr "Notifikacije"
|
2990 |
+
|
2991 |
#, fuzzy
|
2992 |
#~ msgid "AdRotate Page"
|
2993 |
#~ msgstr "AdRotate Pro"
|
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:
|
6 |
-
"PO-Revision-Date:
|
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"
|
@@ -17,114 +17,114 @@ msgstr ""
|
|
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,174 +188,154 @@ 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 "
|
201 |
-
msgstr "
|
202 |
-
|
203 |
-
#: adrotate-output.php:
|
204 |
-
msgid "
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
msgstr "
|
214 |
-
|
215 |
-
#: adrotate-output.php:
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
-
|
219 |
-
#: adrotate-output.php:
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
#:
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
#: adrotate-output.php:729
|
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:729
|
232 |
-
msgid "ad(s) with configuration errors."
|
233 |
-
msgstr "annons (er) med konfigurationsfel."
|
234 |
-
|
235 |
-
#: adrotate-output.php:729
|
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:741 dashboard/adrotatepro.php:106
|
240 |
-
#: dashboard/adrotatepro.php:107 dashboard/adrotatepro.php:108
|
241 |
-
#: dashboard/adrotatepro.php:109 dashboard/adrotatepro.php:118
|
242 |
-
#: dashboard/adrotatepro.php:119 dashboard/adrotatepro.php:120
|
243 |
-
#: dashboard/adrotatepro.php:121 dashboard/info.php:114 dashboard/info.php:115
|
244 |
-
#: dashboard/info.php:116 dashboard/info.php:117 dashboard/info.php:126
|
245 |
-
#: dashboard/info.php:127 dashboard/info.php:128 dashboard/info.php:129
|
246 |
#: dashboard/settings/geotargeting.php:26
|
247 |
#, fuzzy
|
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 |
msgid "AdRotate website"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
#, fuzzy
|
300 |
msgid "Getting Started With AdRotate"
|
301 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
302 |
|
303 |
-
#: adrotate-output.php:
|
304 |
#, fuzzy
|
305 |
msgid "AdRotate manuals"
|
306 |
msgstr "AdRotate Information"
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
#, fuzzy
|
310 |
msgid "AdRotate Support Forum"
|
311 |
msgstr "AdRotate butik"
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
#, fuzzy
|
315 |
msgid "Help AdRotate Grow"
|
316 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
msgid ""
|
324 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
325 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: adrotate-output.php:
|
329 |
msgid "If you find AdRotate useful please leave your honest"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: adrotate-output.php:
|
333 |
msgid "rating"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: adrotate-output.php:
|
337 |
#, fuzzy
|
338 |
msgid "review"
|
339 |
msgstr "Betygsätt och omdöme"
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "Available in AdRotate Pro"
|
347 |
msgstr "Tillgänglig i AdRotate Pro"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
#, fuzzy
|
351 |
msgid "More information..."
|
352 |
msgstr "Mer info"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "This feature is available in AdRotate Pro"
|
356 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
#, fuzzy
|
360 |
msgid "Learn more"
|
361 |
msgstr "Läs mer om"
|
@@ -436,120 +416,120 @@ msgstr "Nästa"
|
|
436 |
msgid "No data to show!"
|
437 |
msgstr "Inga data att visa!"
|
438 |
|
439 |
-
#: adrotate-widget.php:
|
440 |
msgid "Title (optional):"
|
441 |
msgstr "Titel (valfritt):"
|
442 |
|
443 |
-
#: adrotate-widget.php:
|
444 |
msgid "HTML will be stripped out."
|
445 |
msgstr "HTML kommer att demonteras ut."
|
446 |
|
447 |
-
#: adrotate-widget.php:
|
448 |
msgid "Description (optional):"
|
449 |
msgstr "Beskrivning (valfritt):"
|
450 |
|
451 |
-
#: adrotate-widget.php:
|
452 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
453 |
msgstr ""
|
454 |
"Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
|
455 |
|
456 |
-
#: adrotate-widget.php:
|
457 |
msgid "Type:"
|
458 |
msgstr "Typ:"
|
459 |
|
460 |
-
#: adrotate-widget.php:
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
|
464 |
-
#: adrotate-widget.php:
|
465 |
-
msgid "Group
|
466 |
-
msgstr "
|
467 |
|
468 |
-
#: adrotate-widget.php:
|
469 |
msgid "Choose what you want to use this widget for"
|
470 |
msgstr "Välj vad du vill använda denna widget för"
|
471 |
|
472 |
-
#: adrotate-widget.php:
|
473 |
msgid "ID:"
|
474 |
msgstr "ID:"
|
475 |
|
476 |
-
#: adrotate-widget.php:
|
477 |
msgid "Fill in the ID of the type you want to display!"
|
478 |
msgstr "Fyll i ID för den typ som du vill visa!"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "General Info"
|
482 |
msgstr "Allmän info"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
msgid "AdRotate Pro"
|
486 |
msgstr "AdRotate Pro"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
-
msgid "Manage
|
490 |
-
msgstr "
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
msgid "Manage Groups"
|
494 |
msgstr "Hantera Grupper"
|
495 |
|
496 |
-
#: adrotate.php:
|
497 |
#, fuzzy
|
498 |
msgid "Manage Schedules"
|
499 |
msgstr "Hantera"
|
500 |
|
501 |
-
#: adrotate.php:
|
502 |
#, fuzzy
|
503 |
msgid "Manage Media"
|
504 |
msgstr "Media:"
|
505 |
|
506 |
-
#: adrotate.php:
|
507 |
msgid "Settings"
|
508 |
msgstr "Inställningar"
|
509 |
|
510 |
-
#: adrotate.php:
|
511 |
msgid "AdRotate Info"
|
512 |
msgstr "AdRotate Information"
|
513 |
|
514 |
-
#: adrotate.php:
|
515 |
#, fuzzy
|
516 |
msgid "AdRotate Professional"
|
517 |
msgstr "AdRotate"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
-
msgid "
|
521 |
-
msgstr "
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
msgid "Manage"
|
525 |
msgstr "Hantera"
|
526 |
|
527 |
-
#: adrotate.php:
|
528 |
msgid "Add New"
|
529 |
msgstr "Lägg till ny"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
msgid "Group Management"
|
533 |
msgstr "Grupp Hantering"
|
534 |
|
535 |
-
#: adrotate.php:
|
536 |
#: dashboard/publisher/groups-main.php:70
|
537 |
msgid "Report"
|
538 |
msgstr "Rapport"
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
#, fuzzy
|
542 |
msgid "Schedule Management available in AdRotate Pro"
|
543 |
msgstr "Tillgänglig i AdRotate Pro"
|
544 |
|
545 |
-
#: adrotate.php:
|
546 |
#, fuzzy
|
547 |
msgid ""
|
548 |
"Schedule management and multiple schedules per advert is available in "
|
549 |
"AdRotate Pro."
|
550 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
551 |
|
552 |
-
#: adrotate.php:
|
553 |
#: dashboard/publisher/adverts-main.php:114
|
554 |
#: dashboard/publisher/groups-edit.php:75
|
555 |
#: dashboard/publisher/groups-main.php:89
|
@@ -557,21 +537,21 @@ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
|
557 |
msgid "More information"
|
558 |
msgstr "Mer info"
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
#: dashboard/publisher/adverts-error.php:19
|
562 |
#: dashboard/publisher/adverts-main.php:20
|
563 |
#: dashboard/publisher/groups-main.php:20
|
564 |
msgid "Bulk Actions"
|
565 |
msgstr "Massåtgärder"
|
566 |
|
567 |
-
#: adrotate.php:
|
568 |
#: dashboard/publisher/adverts-error.php:29
|
569 |
#: dashboard/publisher/adverts-main.php:30
|
570 |
#: dashboard/publisher/groups-main.php:24
|
571 |
msgid "Go"
|
572 |
msgstr "Gå"
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
#: dashboard/publisher/adverts-error.php:39
|
576 |
#: dashboard/publisher/adverts-main.php:39
|
577 |
#: dashboard/publisher/groups-edit.php:51
|
@@ -579,175 +559,174 @@ msgstr "Gå"
|
|
579 |
msgid "ID"
|
580 |
msgstr "ID"
|
581 |
|
582 |
-
#: adrotate.php:
|
583 |
#, fuzzy
|
584 |
msgid "Start"
|
585 |
msgstr "Starttid (hh: mm):"
|
586 |
|
587 |
-
#: adrotate.php:
|
588 |
#, fuzzy
|
589 |
msgid "End"
|
590 |
msgstr "Avsluta tid (hh: mm):"
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
-
#: dashboard/publisher/groups-main.php:34
|
594 |
msgid "Ads"
|
595 |
msgstr "Annonser"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Max Impressions"
|
599 |
msgstr "Max Intryck"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
msgid "Max Clicks"
|
603 |
msgstr "Max Klick"
|
604 |
|
605 |
-
#: adrotate.php:
|
606 |
#, fuzzy
|
607 |
msgid "No schedules created yet!"
|
608 |
msgstr "Inga block har skapats än!"
|
609 |
|
610 |
-
#: adrotate.php:
|
611 |
#, fuzzy
|
612 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
613 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
#, fuzzy
|
617 |
msgid "Upgrade today!"
|
618 |
msgstr "i dag"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
#: dashboard/publisher/groups-edit.php:387
|
622 |
msgid "Expires soon."
|
623 |
msgstr "Utgår inom kort."
|
624 |
|
625 |
-
#: adrotate.php:
|
626 |
#: dashboard/publisher/groups-edit.php:388
|
627 |
msgid "Has expired."
|
628 |
msgstr "Har gått ut."
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
#, fuzzy
|
632 |
msgid "Media Management available in AdRotate Pro"
|
633 |
msgstr "Tillgänglig i AdRotate Pro"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid ""
|
641 |
"This is useful if you use responsive adverts with multiple images or have "
|
642 |
"HTML5 adverts containing multiple files."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
#, fuzzy
|
647 |
msgid "Media uploading and management is available in AdRotate Pro."
|
648 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
msgid "Upload new file"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: adrotate.php:
|
655 |
msgid "Accepted files:"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: adrotate.php:
|
663 |
#, fuzzy
|
664 |
msgid "Maximum size is 512Kb."
|
665 |
msgstr "Maximal storlek är 512Kb."
|
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 |
msgid ""
|
685 |
"For responsive adverts make sure the filename is in the following format; "
|
686 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: adrotate.php:
|
690 |
msgid ""
|
691 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
692 |
"filename instead of \".full\" for the various viewports."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: adrotate.php:
|
696 |
#: dashboard/publisher/groups-edit.php:320
|
697 |
msgid "Example:"
|
698 |
msgstr "Exempel:"
|
699 |
|
700 |
-
#: adrotate.php:
|
701 |
msgid ""
|
702 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
703 |
"for different viewports."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: adrotate.php:
|
707 |
msgid "Upload file"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: adrotate.php:
|
711 |
msgid "Click only once per file!"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: adrotate.php:
|
715 |
msgid "Available files in"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: adrotate.php:
|
719 |
#: dashboard/publisher/groups-main.php:33
|
720 |
msgid "Name"
|
721 |
msgstr "Namn"
|
722 |
|
723 |
-
#: adrotate.php:
|
724 |
#, fuzzy
|
725 |
msgid "Actions"
|
726 |
msgstr "Massåtgärder"
|
727 |
|
728 |
-
#: adrotate.php:
|
729 |
-
#: adrotate.php:
|
730 |
#: dashboard/publisher/adverts-disabled.php:22
|
731 |
#: dashboard/publisher/adverts-error.php:21
|
732 |
#: dashboard/publisher/adverts-main.php:22
|
733 |
msgid "Delete"
|
734 |
msgstr "Radera"
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
msgid ""
|
738 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: adrotate.php:
|
742 |
#, fuzzy
|
743 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
744 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
745 |
|
746 |
-
#: adrotate.php:
|
747 |
msgid "AdRotate Settings"
|
748 |
msgstr "AdRotate Inställningar"
|
749 |
|
750 |
-
#: adrotate.php:
|
751 |
msgid "Update Options"
|
752 |
msgstr "Update Options"
|
753 |
|
@@ -800,22 +779,15 @@ msgid ""
|
|
800 |
"forum. Get a solution (usually) within a day."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: dashboard/adrotatepro.php:48 dashboard/info.php:
|
804 |
msgid "AdRotate is brought to you by"
|
805 |
msgstr "AdRotate kommer till dig genom"
|
806 |
|
807 |
-
#: dashboard/adrotatepro.php:
|
808 |
-
msgid ""
|
809 |
-
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
810 |
-
"digital nomad in the Philippines. Click on my name to find out more about me "
|
811 |
-
"and what I am doing. Thanks for your support and for using my plugins!"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: dashboard/adrotatepro.php:81
|
815 |
msgid "Schedule all campaigns with ease"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: dashboard/adrotatepro.php:
|
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,11 +795,11 @@ msgid ""
|
|
823 |
"much more easy. You can set one or many schedules for adverts."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: dashboard/adrotatepro.php:
|
827 |
msgid "Avoid adblockers"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: dashboard/adrotatepro.php:
|
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 "
|
@@ -835,11 +807,11 @@ msgid ""
|
|
835 |
"adverts smartly so these features reach their full potential!"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: dashboard/adrotatepro.php:
|
839 |
msgid "Stay up-to-date with notifications"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: dashboard/adrotatepro.php:
|
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,96 +820,96 @@ msgid ""
|
|
848 |
"miss an expiration date again."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: dashboard/adrotatepro.php:
|
852 |
-
#: dashboard/info.php:
|
853 |
#, fuzzy
|
854 |
msgid "Buy AdRotate Professional"
|
855 |
msgstr "Köp nu"
|
856 |
|
857 |
-
#: dashboard/adrotatepro.php:
|
858 |
msgid "Single License"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: dashboard/adrotatepro.php:
|
862 |
#, fuzzy
|
863 |
msgid "For one WordPress installation."
|
864 |
msgstr "Installation"
|
865 |
|
866 |
-
#: dashboard/adrotatepro.php:
|
867 |
-
#: dashboard/info.php:
|
868 |
#, fuzzy
|
869 |
msgid "Duo License"
|
870 |
msgstr "AdRotate Licens"
|
871 |
|
872 |
-
#: dashboard/adrotatepro.php:
|
873 |
#, fuzzy
|
874 |
msgid "For two WordPress installations."
|
875 |
msgstr "Installation"
|
876 |
|
877 |
-
#: dashboard/adrotatepro.php:
|
878 |
-
#: dashboard/info.php:
|
879 |
#, fuzzy
|
880 |
msgid "Multi License"
|
881 |
msgstr "AdRotate Licens"
|
882 |
|
883 |
-
#: dashboard/adrotatepro.php:
|
884 |
#, fuzzy
|
885 |
msgid " For up to five WordPress installations."
|
886 |
msgstr "Installation"
|
887 |
|
888 |
-
#: dashboard/adrotatepro.php:
|
889 |
-
#: dashboard/info.php:
|
890 |
#, fuzzy
|
891 |
msgid "Developer License"
|
892 |
msgstr "Utvecklar Debug"
|
893 |
|
894 |
-
#: dashboard/adrotatepro.php:
|
895 |
msgid "Unlimited WordPress installations and/or networks."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: dashboard/adrotatepro.php:
|
899 |
-
#: dashboard/info.php:
|
900 |
msgid "Compare licenses"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: dashboard/adrotatepro.php:
|
904 |
msgid "Not sure which license is for you? Compare them..."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: dashboard/adrotatepro.php:
|
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 |
|
@@ -953,7 +925,8 @@ msgstr "Din installation"
|
|
953 |
msgid "Adverts that need you"
|
954 |
msgstr "Annonser som behöver dig"
|
955 |
|
956 |
-
#: dashboard/info.php:37
|
|
|
957 |
msgid "Adverts"
|
958 |
msgstr "Annonser"
|
959 |
|
@@ -975,41 +948,48 @@ msgstr "Support AdRotate"
|
|
975 |
|
976 |
#: dashboard/info.php:55
|
977 |
msgid ""
|
978 |
-
"
|
979 |
-
"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: dashboard/info.php:81
|
983 |
-
msgid "AdRotate News and Developer Blog"
|
984 |
-
msgstr "AdRotate Nyheter och Utvecklar Blog"
|
985 |
-
|
986 |
#: dashboard/info.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
987 |
#, fuzzy
|
988 |
msgid "Get more features with AdRotate Pro"
|
989 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
990 |
|
991 |
-
#: dashboard/info.php:
|
992 |
msgid ""
|
993 |
"Benefit from extra features to reinforce your income with advertising "
|
994 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
995 |
"Pro offers on top of the trusted features included in the free version."
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: dashboard/info.php:
|
999 |
msgid "Want to know more about"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: dashboard/info.php:
|
1003 |
msgid "Visit the"
|
1004 |
msgstr "Besök"
|
1005 |
|
1006 |
-
#: dashboard/info.php:
|
1007 |
msgid "website"
|
1008 |
msgstr "hemsida"
|
1009 |
|
|
|
|
|
|
|
|
|
1010 |
#: dashboard/publisher/adverts-disabled.php:15
|
1011 |
-
msgid "Disabled
|
1012 |
-
msgstr "
|
1013 |
|
1014 |
#: dashboard/publisher/adverts-disabled.php:21
|
1015 |
#: dashboard/publisher/adverts-edit.php:176
|
@@ -1048,17 +1028,21 @@ msgstr "Visa"
|
|
1048 |
|
1049 |
#: dashboard/publisher/adverts-disabled.php:39
|
1050 |
#: dashboard/publisher/adverts-main.php:46
|
1051 |
-
#: dashboard/publisher/adverts-report.php:
|
|
|
1052 |
#: dashboard/publisher/groups-edit.php:334
|
1053 |
#: dashboard/publisher/groups-main.php:38
|
1054 |
-
#: dashboard/publisher/groups-report.php:
|
|
|
1055 |
msgid "Clicks"
|
1056 |
msgstr "Klick"
|
1057 |
|
1058 |
#: dashboard/publisher/adverts-disabled.php:40
|
1059 |
#: dashboard/publisher/adverts-main.php:48
|
1060 |
-
#: dashboard/publisher/adverts-report.php:
|
1061 |
-
#: dashboard/publisher/
|
|
|
|
|
1062 |
msgid "CTR"
|
1063 |
msgstr "CTR"
|
1064 |
|
@@ -1433,8 +1417,8 @@ msgid ""
|
|
1433 |
msgstr ""
|
1434 |
|
1435 |
#: dashboard/publisher/adverts-edit.php:312
|
1436 |
-
#: dashboard/publisher/adverts-report.php:
|
1437 |
-
#: dashboard/publisher/groups-report.php:
|
1438 |
msgid "Note:"
|
1439 |
msgstr "Notera:"
|
1440 |
|
@@ -1566,8 +1550,8 @@ msgid "Mode"
|
|
1566 |
msgstr "läge"
|
1567 |
|
1568 |
#: dashboard/publisher/adverts-error.php:12
|
1569 |
-
msgid "
|
1570 |
-
msgstr "
|
1571 |
|
1572 |
#: dashboard/publisher/adverts-error.php:20
|
1573 |
#: dashboard/publisher/adverts-main.php:21
|
@@ -1605,8 +1589,8 @@ msgid "Configuration errors."
|
|
1605 |
msgstr "Konfigurations fel."
|
1606 |
|
1607 |
#: dashboard/publisher/adverts-main.php:12
|
1608 |
-
msgid "Active
|
1609 |
-
msgstr "
|
1610 |
|
1611 |
#: dashboard/publisher/adverts-main.php:24
|
1612 |
#, fuzzy
|
@@ -1626,35 +1610,37 @@ msgid "Today"
|
|
1626 |
msgstr "i dag"
|
1627 |
|
1628 |
#: dashboard/publisher/adverts-main.php:109
|
1629 |
-
msgid "No
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
-
#: dashboard/publisher/adverts-report.php:
|
1633 |
msgid "Statistics for advert"
|
1634 |
msgstr "Statistik för annons"
|
1635 |
|
1636 |
-
#: dashboard/publisher/adverts-report.php:
|
1637 |
-
#: dashboard/publisher/
|
|
|
|
|
1638 |
msgid "Impressions"
|
1639 |
msgstr "Intryck"
|
1640 |
|
1641 |
-
#: dashboard/publisher/adverts-report.php:
|
1642 |
-
#: dashboard/publisher/groups-report.php:
|
1643 |
msgid "Impressions today"
|
1644 |
msgstr "Intryck idag"
|
1645 |
|
1646 |
-
#: dashboard/publisher/adverts-report.php:
|
1647 |
-
#: dashboard/publisher/groups-report.php:
|
1648 |
msgid "Clicks today"
|
1649 |
msgstr "Klick idag"
|
1650 |
|
1651 |
-
#: dashboard/publisher/adverts-report.php:
|
1652 |
-
#: dashboard/publisher/groups-report.php:
|
1653 |
msgid "Monthly overview of clicks and impressions"
|
1654 |
msgstr "Månads översikt av klick och visningar"
|
1655 |
|
1656 |
-
#: dashboard/publisher/adverts-report.php:
|
1657 |
-
#: dashboard/publisher/groups-report.php:
|
1658 |
msgid ""
|
1659 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1660 |
"counted by other parties."
|
@@ -1679,8 +1665,8 @@ msgid "Dynamic Mode - Show a different ad every few seconds"
|
|
1679 |
msgstr "Dynamiskt läge - Visa en annan annons med några sekunders"
|
1680 |
|
1681 |
#: dashboard/publisher/groups-edit.php:66
|
1682 |
-
msgid "Block Mode - Show a block of
|
1683 |
-
msgstr "
|
1684 |
|
1685 |
#: dashboard/publisher/groups-edit.php:70
|
1686 |
#, fuzzy
|
@@ -1731,13 +1717,10 @@ msgid "pixel(s) high."
|
|
1731 |
msgstr "bildpunkter (er) hög."
|
1732 |
|
1733 |
#: dashboard/publisher/groups-edit.php:104
|
1734 |
-
#, fuzzy
|
1735 |
msgid ""
|
1736 |
-
"Define the maximum size of the
|
1737 |
"recommended). Default: 125/125."
|
1738 |
msgstr ""
|
1739 |
-
"Ange den maximala storleken på annonserna i pixlar minus marginal. Storlek "
|
1740 |
-
"kan vara 'auto' (Rekommenderas ej). Standard: 125/125."
|
1741 |
|
1742 |
#: dashboard/publisher/groups-edit.php:108
|
1743 |
msgid "Automated refresh"
|
@@ -1760,8 +1743,8 @@ msgstr ""
|
|
1760 |
#: dashboard/publisher/groups-edit.php:141
|
1761 |
#: dashboard/publisher/groups-edit.php:288
|
1762 |
msgid ""
|
1763 |
-
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of
|
1764 |
-
"\" and enter ID"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
#: dashboard/publisher/groups-edit.php:153
|
@@ -1988,16 +1971,16 @@ msgid "Visible until"
|
|
1988 |
msgstr "Synlig tills"
|
1989 |
|
1990 |
#: dashboard/publisher/groups-edit.php:379
|
1991 |
-
msgid "No
|
1992 |
-
msgstr "
|
1993 |
|
1994 |
#: dashboard/publisher/groups-main.php:21
|
1995 |
msgid "Delete Group"
|
1996 |
msgstr "Ta bort grupp"
|
1997 |
|
1998 |
#: dashboard/publisher/groups-main.php:22
|
1999 |
-
msgid "Delete Group including
|
2000 |
-
msgstr "
|
2001 |
|
2002 |
#: dashboard/publisher/groups-main.php:24
|
2003 |
msgid "You are about to delete a group"
|
@@ -2016,7 +1999,7 @@ msgstr "OK för att fortsätta, CANCEL för att avbryta."
|
|
2016 |
msgid "No groups created!"
|
2017 |
msgstr "Inga grupper skapas!"
|
2018 |
|
2019 |
-
#: dashboard/publisher/groups-report.php:
|
2020 |
msgid "Statistics for group"
|
2021 |
msgstr "Statistik för grupp"
|
2022 |
|
@@ -2496,15 +2479,27 @@ msgid "Unknown"
|
|
2496 |
msgstr ""
|
2497 |
|
2498 |
#: dashboard/settings/maintenance.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2499 |
#, fuzzy
|
2500 |
msgid "Ad evaluation next run:"
|
2501 |
msgstr "Annons Meddelanden nästa körning:"
|
2502 |
|
2503 |
-
#: dashboard/settings/maintenance.php:
|
2504 |
msgid "Not scheduled!"
|
2505 |
msgstr "Inte planerat!"
|
2506 |
|
2507 |
-
#: dashboard/settings/maintenance.php:
|
2508 |
msgid "Clean Trackerdata next run:"
|
2509 |
msgstr "Rensa Trackerdata nästa körning:"
|
2510 |
|
@@ -2621,42 +2616,23 @@ msgstr ""
|
|
2621 |
"postadress. Spara alternativen först!"
|
2622 |
|
2623 |
#: dashboard/settings/notifications.php:31
|
2624 |
-
#, fuzzy
|
2625 |
-
msgid "Dashboard Notifications"
|
2626 |
-
msgstr ""
|
2627 |
-
"Registrera ditt exemplar av AdRotate. Detta kommer att göra det möjligt för "
|
2628 |
-
"ticket och uppdatera underrättelser direkt från din dashboard."
|
2629 |
-
|
2630 |
-
#: dashboard/settings/notifications.php:32
|
2631 |
-
msgid "These show to every administrator who can edit adverts."
|
2632 |
-
msgstr ""
|
2633 |
-
|
2634 |
-
#: dashboard/settings/notifications.php:35
|
2635 |
-
msgid "Notification banners"
|
2636 |
-
msgstr ""
|
2637 |
-
|
2638 |
-
#: dashboard/settings/notifications.php:36
|
2639 |
-
msgid "Disable dashboard notifications."
|
2640 |
-
msgstr ""
|
2641 |
-
|
2642 |
-
#: dashboard/settings/notifications.php:40
|
2643 |
msgid "Email Notifications"
|
2644 |
msgstr "E-postmeddelanden"
|
2645 |
|
2646 |
-
#: dashboard/settings/notifications.php:
|
2647 |
#, fuzzy
|
2648 |
msgid "Set up who gets notification emails."
|
2649 |
msgstr "Annonser som behöver uppmärksammas"
|
2650 |
|
2651 |
-
#: dashboard/settings/notifications.php:
|
2652 |
-
#: dashboard/settings/notifications.php:
|
2653 |
#, fuzzy
|
2654 |
msgid "Publishers"
|
2655 |
msgstr ""
|
2656 |
"Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
|
2657 |
"endast till förlag."
|
2658 |
|
2659 |
-
#: dashboard/settings/notifications.php:
|
2660 |
msgid ""
|
2661 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2662 |
"list to a minimum!"
|
@@ -2664,7 +2640,7 @@ msgstr ""
|
|
2664 |
"En kommaseparerad lista med e-postadresser. Maximalt av 5 adresser. Spara "
|
2665 |
"denna lista till ett minimum!"
|
2666 |
|
2667 |
-
#: dashboard/settings/notifications.php:
|
2668 |
#, fuzzy
|
2669 |
msgid ""
|
2670 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
@@ -2673,83 +2649,83 @@ msgstr ""
|
|
2673 |
"Meddelanden skickas en gång per 24 timmar när det behövs. Om detta fält är "
|
2674 |
"tomt funktionen avaktiveras."
|
2675 |
|
2676 |
-
#: dashboard/settings/notifications.php:
|
2677 |
msgid "Advertisers"
|
2678 |
msgstr "Annonsörer"
|
2679 |
|
2680 |
-
#: dashboard/settings/notifications.php:
|
2681 |
#, fuzzy
|
2682 |
msgid ""
|
2683 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2684 |
"This field may not be empty!"
|
2685 |
msgstr "Max 2 adresser. Kommaseparerad. Detta fält kan inte vara tomt!"
|
2686 |
|
2687 |
-
#: dashboard/settings/notifications.php:
|
2688 |
#, fuzzy
|
2689 |
msgid "Push Notifications"
|
2690 |
msgstr "Meddelanden"
|
2691 |
|
2692 |
-
#: dashboard/settings/notifications.php:
|
2693 |
msgid ""
|
2694 |
"Receive information about what is happening with your AdRotate setup on your "
|
2695 |
"smartphone via Pushover."
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: dashboard/settings/notifications.php:
|
2699 |
msgid "When you are running out of Geo Targeting Lookups."
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: dashboard/settings/notifications.php:
|
2703 |
msgid "Daily digest of any advert status other than normal."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: dashboard/settings/notifications.php:
|
2707 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: dashboard/settings/notifications.php:
|
2711 |
#, fuzzy
|
2712 |
msgid "A moderator approved an advert from the moderation queue."
|
2713 |
msgstr "Godkänn / avvisa annonser i moderation Queue"
|
2714 |
|
2715 |
-
#: dashboard/settings/notifications.php:
|
2716 |
#, fuzzy
|
2717 |
msgid "A moderator rejected an advert from the moderation queue."
|
2718 |
msgstr "Godkänn / avvisa annonser i moderation Queue"
|
2719 |
|
2720 |
-
#: dashboard/settings/notifications.php:
|
2721 |
msgid ""
|
2722 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2723 |
"you may get a lot of messages!"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: dashboard/settings/notifications.php:
|
2727 |
#, fuzzy
|
2728 |
msgid "User Key"
|
2729 |
msgstr "Licensnyckel"
|
2730 |
|
2731 |
-
#: dashboard/settings/notifications.php:
|
2732 |
msgid "Get your user token"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: dashboard/settings/notifications.php:
|
2736 |
-
#: dashboard/settings/notifications.php:
|
2737 |
msgid "here"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: dashboard/settings/notifications.php:
|
2741 |
msgid "Api Token"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: dashboard/settings/notifications.php:
|
2745 |
msgid "Create your"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: dashboard/settings/notifications.php:
|
2749 |
msgid "App"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: dashboard/settings/notifications.php:
|
2753 |
msgid "and get your API token"
|
2754 |
msgstr ""
|
2755 |
|
@@ -2908,6 +2884,86 @@ msgid ""
|
|
2908 |
msgstr ""
|
2909 |
"Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
|
2910 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2911 |
#, fuzzy
|
2912 |
#~ msgid "AdRotate Page"
|
2913 |
#~ msgstr "AdRotate Pro"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-08 20:57+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-02-08 20:57+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:844
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
+
#: adrotate-functions.php:847
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
+
#: adrotate-functions.php:896
|
29 |
msgid "Ad saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:900
|
33 |
msgid "Group saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:904
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annons(er) raderas"
|
39 |
|
40 |
+
#: adrotate-functions.php:908
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Grupp raderad"
|
43 |
|
44 |
+
#: adrotate-functions.php:912
|
45 |
msgid "Ad(s) statistics reset"
|
46 |
msgstr "Annons(er) statistik återställning"
|
47 |
|
48 |
+
#: adrotate-functions.php:916
|
49 |
msgid "Ad(s) renewed"
|
50 |
msgstr "Annons(er) förnyas"
|
51 |
|
52 |
+
#: adrotate-functions.php:920
|
53 |
msgid "Ad(s) deactivated"
|
54 |
msgstr "Annons(er) avaktiveras"
|
55 |
|
56 |
+
#: adrotate-functions.php:924
|
57 |
msgid "Ad(s) activated"
|
58 |
msgstr "Annons(er) aktiveras"
|
59 |
|
60 |
+
#: adrotate-functions.php:928
|
61 |
msgid "Group including it's Ads deleted"
|
62 |
msgstr "Grupp inklusive dess annonser raderade"
|
63 |
|
64 |
+
#: adrotate-functions.php:932
|
65 |
#, fuzzy
|
66 |
msgid "Export created"
|
67 |
msgstr "export skapad"
|
68 |
|
69 |
+
#: adrotate-functions.php:937
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Inställningar sparas"
|
72 |
|
73 |
+
#: adrotate-functions.php:941
|
74 |
msgid "Database optimized"
|
75 |
msgstr "Databas optimerad"
|
76 |
|
77 |
+
#: adrotate-functions.php:945
|
78 |
msgid "Database repaired"
|
79 |
msgstr "Databas reparation"
|
80 |
|
81 |
+
#: adrotate-functions.php:949
|
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:953
|
86 |
msgid "Empty database records removed"
|
87 |
msgstr "Tomma databasposter tas bort"
|
88 |
|
89 |
+
#: adrotate-functions.php:958
|
90 |
msgid "Action prohibited"
|
91 |
msgstr "Åtgärden förbjuden"
|
92 |
|
93 |
+
#: adrotate-functions.php:962
|
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:966
|
100 |
msgid "No data found in selected time period"
|
101 |
msgstr "Inga data finns i vald tidsperiod"
|
102 |
|
103 |
+
#: adrotate-functions.php:970
|
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:974
|
108 |
msgid "Form can not be (partially) empty!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: adrotate-functions.php:978
|
112 |
msgid "No ads found."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: adrotate-functions.php:982
|
116 |
msgid "Unexpected error"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: adrotate-manage-publisher.php:702
|
120 |
msgid "AdRotate Advertiser"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: adrotate-output.php:607
|
124 |
msgid "Oh no! Something went wrong!"
|
125 |
msgstr "Åh nej! Något gick fel!"
|
126 |
|
127 |
+
#: adrotate-output.php:608
|
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:609
|
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:610
|
144 |
msgid "Contact support if the issue persists:"
|
145 |
msgstr "Kontakta support om problemet kvarstår:"
|
146 |
|
147 |
+
#: adrotate-output.php:628
|
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:630
|
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:637 adrotate-output.php:639
|
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:645
|
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:651
|
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:656
|
180 |
msgid "Error, group does not exist! Check your syntax!"
|
181 |
msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
|
182 |
|
183 |
+
#: adrotate-output.php:662
|
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:662
|
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:668
|
196 |
msgid "An unknown error occured."
|
197 |
msgstr "Ett okänt fel uppstod."
|
198 |
|
199 |
+
#: adrotate-output.php:687 adrotate-output.php:690 adrotate-output.php:693
|
200 |
+
msgid "Check adverts"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: adrotate-output.php:698
|
204 |
+
msgid ""
|
205 |
+
"You have enable caching support but W3 Total Cache is not active on your "
|
206 |
+
"site!"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: adrotate-output.php:701
|
210 |
+
msgid ""
|
211 |
+
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
212 |
+
"not set."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: adrotate-output.php:706
|
216 |
+
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: adrotate-output.php:746 dashboard/adrotatepro.php:99
|
220 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
|
221 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
|
222 |
+
#: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
|
223 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
|
224 |
+
#: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
|
225 |
+
#: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
#: dashboard/settings/geotargeting.php:26
|
227 |
#, fuzzy
|
228 |
msgid "Buy now"
|
229 |
msgstr "Köp nu"
|
230 |
|
231 |
+
#: adrotate-output.php:747
|
232 |
msgid ""
|
233 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
234 |
"to the <strong>PRO</strong> version"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:747
|
238 |
#, php-format
|
239 |
msgid ""
|
240 |
"Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: adrotate-output.php:747
|
244 |
msgid "Thank you for your purchase!"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: adrotate-output.php:791
|
248 |
msgid ""
|
249 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
250 |
"this menu. Check out the"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:791
|
254 |
msgid "manuals"
|
255 |
msgstr "manual"
|
256 |
|
257 |
+
#: adrotate-output.php:791 adrotate-output.php:864
|
258 |
msgid "and"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:791
|
262 |
msgid "forums"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:824
|
266 |
#, fuzzy
|
267 |
msgid "Useful Links"
|
268 |
msgstr "Nyttiga länkar"
|
269 |
|
270 |
+
#: adrotate-output.php:825
|
271 |
msgid "Useful links to learn more about AdRotate"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: adrotate-output.php:827
|
275 |
msgid "AdRotate website"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: adrotate-output.php:828
|
279 |
#, fuzzy
|
280 |
msgid "Getting Started With AdRotate"
|
281 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
282 |
|
283 |
+
#: adrotate-output.php:829
|
284 |
#, fuzzy
|
285 |
msgid "AdRotate manuals"
|
286 |
msgstr "AdRotate Information"
|
287 |
|
288 |
+
#: adrotate-output.php:830
|
289 |
#, fuzzy
|
290 |
msgid "AdRotate Support Forum"
|
291 |
msgstr "AdRotate butik"
|
292 |
|
293 |
+
#: adrotate-output.php:856
|
294 |
#, fuzzy
|
295 |
msgid "Help AdRotate Grow"
|
296 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
297 |
|
298 |
+
#: adrotate-output.php:857
|
299 |
+
msgid "Follow Arnan on Facebook"
|
300 |
+
msgstr ""
|
301 |
|
302 |
+
#: adrotate-output.php:864
|
303 |
msgid ""
|
304 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
305 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: adrotate-output.php:864
|
309 |
msgid "If you find AdRotate useful please leave your honest"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: adrotate-output.php:864
|
313 |
msgid "rating"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: adrotate-output.php:864
|
317 |
#, fuzzy
|
318 |
msgid "review"
|
319 |
msgstr "Betygsätt och omdöme"
|
320 |
|
321 |
+
#: adrotate-output.php:864
|
322 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:903
|
326 |
msgid "Available in AdRotate Pro"
|
327 |
msgstr "Tillgänglig i AdRotate Pro"
|
328 |
|
329 |
+
#: adrotate-output.php:903
|
330 |
#, fuzzy
|
331 |
msgid "More information..."
|
332 |
msgstr "Mer info"
|
333 |
|
334 |
+
#: adrotate-output.php:904
|
335 |
msgid "This feature is available in AdRotate Pro"
|
336 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
337 |
|
338 |
+
#: adrotate-output.php:904
|
339 |
#, fuzzy
|
340 |
msgid "Learn more"
|
341 |
msgstr "Läs mer om"
|
416 |
msgid "No data to show!"
|
417 |
msgstr "Inga data att visa!"
|
418 |
|
419 |
+
#: adrotate-widget.php:116
|
420 |
msgid "Title (optional):"
|
421 |
msgstr "Titel (valfritt):"
|
422 |
|
423 |
+
#: adrotate-widget.php:119
|
424 |
msgid "HTML will be stripped out."
|
425 |
msgstr "HTML kommer att demonteras ut."
|
426 |
|
427 |
+
#: adrotate-widget.php:122
|
428 |
msgid "Description (optional):"
|
429 |
msgstr "Beskrivning (valfritt):"
|
430 |
|
431 |
+
#: adrotate-widget.php:125
|
432 |
msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
|
433 |
msgstr ""
|
434 |
"Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
|
435 |
|
436 |
+
#: adrotate-widget.php:128
|
437 |
msgid "Type:"
|
438 |
msgstr "Typ:"
|
439 |
|
440 |
+
#: adrotate-widget.php:130
|
441 |
+
msgid "Advert - Use Advert ID"
|
442 |
+
msgstr ""
|
443 |
|
444 |
+
#: adrotate-widget.php:131
|
445 |
+
msgid "Group - Use group ID"
|
446 |
+
msgstr ""
|
447 |
|
448 |
+
#: adrotate-widget.php:134
|
449 |
msgid "Choose what you want to use this widget for"
|
450 |
msgstr "Välj vad du vill använda denna widget för"
|
451 |
|
452 |
+
#: adrotate-widget.php:137
|
453 |
msgid "ID:"
|
454 |
msgstr "ID:"
|
455 |
|
456 |
+
#: adrotate-widget.php:140
|
457 |
msgid "Fill in the ID of the type you want to display!"
|
458 |
msgstr "Fyll i ID för den typ som du vill visa!"
|
459 |
|
460 |
+
#: adrotate.php:105
|
461 |
msgid "General Info"
|
462 |
msgstr "Allmän info"
|
463 |
|
464 |
+
#: adrotate.php:106
|
465 |
msgid "AdRotate Pro"
|
466 |
msgstr "AdRotate Pro"
|
467 |
|
468 |
+
#: adrotate.php:107
|
469 |
+
msgid "Manage Adverts"
|
470 |
+
msgstr ""
|
471 |
|
472 |
+
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
473 |
msgid "Manage Groups"
|
474 |
msgstr "Hantera Grupper"
|
475 |
|
476 |
+
#: adrotate.php:109 adrotate.php:407
|
477 |
#, fuzzy
|
478 |
msgid "Manage Schedules"
|
479 |
msgstr "Hantera"
|
480 |
|
481 |
+
#: adrotate.php:110
|
482 |
#, fuzzy
|
483 |
msgid "Manage Media"
|
484 |
msgstr "Media:"
|
485 |
|
486 |
+
#: adrotate.php:111
|
487 |
msgid "Settings"
|
488 |
msgstr "Inställningar"
|
489 |
|
490 |
+
#: adrotate.php:134
|
491 |
msgid "AdRotate Info"
|
492 |
msgstr "AdRotate Information"
|
493 |
|
494 |
+
#: adrotate.php:155
|
495 |
#, fuzzy
|
496 |
msgid "AdRotate Professional"
|
497 |
msgstr "AdRotate"
|
498 |
|
499 |
+
#: adrotate.php:198
|
500 |
+
msgid "Advert Management"
|
501 |
+
msgstr ""
|
502 |
|
503 |
+
#: adrotate.php:257 adrotate.php:343 adrotate.php:402
|
504 |
msgid "Manage"
|
505 |
msgstr "Hantera"
|
506 |
|
507 |
+
#: adrotate.php:258 adrotate.php:344 adrotate.php:403
|
508 |
msgid "Add New"
|
509 |
msgstr "Lägg till ny"
|
510 |
|
511 |
+
#: adrotate.php:336
|
512 |
msgid "Group Management"
|
513 |
msgstr "Grupp Hantering"
|
514 |
|
515 |
+
#: adrotate.php:346 dashboard/publisher/adverts-main.php:87
|
516 |
#: dashboard/publisher/groups-main.php:70
|
517 |
msgid "Report"
|
518 |
msgstr "Rapport"
|
519 |
|
520 |
+
#: adrotate.php:398
|
521 |
#, fuzzy
|
522 |
msgid "Schedule Management available in AdRotate Pro"
|
523 |
msgstr "Tillgänglig i AdRotate Pro"
|
524 |
|
525 |
+
#: adrotate.php:408
|
526 |
#, fuzzy
|
527 |
msgid ""
|
528 |
"Schedule management and multiple schedules per advert is available in "
|
529 |
"AdRotate Pro."
|
530 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
531 |
|
532 |
+
#: adrotate.php:408 adrotate.php:495 dashboard/publisher/adverts-edit.php:188
|
533 |
#: dashboard/publisher/adverts-main.php:114
|
534 |
#: dashboard/publisher/groups-edit.php:75
|
535 |
#: dashboard/publisher/groups-main.php:89
|
537 |
msgid "More information"
|
538 |
msgstr "Mer info"
|
539 |
|
540 |
+
#: adrotate.php:415 dashboard/publisher/adverts-disabled.php:20
|
541 |
#: dashboard/publisher/adverts-error.php:19
|
542 |
#: dashboard/publisher/adverts-main.php:20
|
543 |
#: dashboard/publisher/groups-main.php:20
|
544 |
msgid "Bulk Actions"
|
545 |
msgstr "Massåtgärder"
|
546 |
|
547 |
+
#: adrotate.php:416 dashboard/publisher/adverts-disabled.php:25
|
548 |
#: dashboard/publisher/adverts-error.php:29
|
549 |
#: dashboard/publisher/adverts-main.php:30
|
550 |
#: dashboard/publisher/groups-main.php:24
|
551 |
msgid "Go"
|
552 |
msgstr "Gå"
|
553 |
|
554 |
+
#: adrotate.php:425 dashboard/publisher/adverts-disabled.php:35
|
555 |
#: dashboard/publisher/adverts-error.php:39
|
556 |
#: dashboard/publisher/adverts-main.php:39
|
557 |
#: dashboard/publisher/groups-edit.php:51
|
559 |
msgid "ID"
|
560 |
msgstr "ID"
|
561 |
|
562 |
+
#: adrotate.php:426
|
563 |
#, fuzzy
|
564 |
msgid "Start"
|
565 |
msgstr "Starttid (hh: mm):"
|
566 |
|
567 |
+
#: adrotate.php:426
|
568 |
#, fuzzy
|
569 |
msgid "End"
|
570 |
msgstr "Avsluta tid (hh: mm):"
|
571 |
|
572 |
+
#: adrotate.php:427
|
|
|
573 |
msgid "Ads"
|
574 |
msgstr "Annonser"
|
575 |
|
576 |
+
#: adrotate.php:429
|
577 |
msgid "Max Impressions"
|
578 |
msgstr "Max Intryck"
|
579 |
|
580 |
+
#: adrotate.php:430
|
581 |
msgid "Max Clicks"
|
582 |
msgstr "Max Klick"
|
583 |
|
584 |
+
#: adrotate.php:460
|
585 |
#, fuzzy
|
586 |
msgid "No schedules created yet!"
|
587 |
msgstr "Inga block har skapats än!"
|
588 |
|
589 |
+
#: adrotate.php:465
|
590 |
#, fuzzy
|
591 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
592 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
593 |
|
594 |
+
#: adrotate.php:465 adrotate.php:531
|
595 |
#, fuzzy
|
596 |
msgid "Upgrade today!"
|
597 |
msgstr "i dag"
|
598 |
|
599 |
+
#: adrotate.php:468 dashboard/publisher/adverts-error.php:72
|
600 |
#: dashboard/publisher/groups-edit.php:387
|
601 |
msgid "Expires soon."
|
602 |
msgstr "Utgår inom kort."
|
603 |
|
604 |
+
#: adrotate.php:469 dashboard/publisher/adverts-error.php:73
|
605 |
#: dashboard/publisher/groups-edit.php:388
|
606 |
msgid "Has expired."
|
607 |
msgstr "Har gått ut."
|
608 |
|
609 |
+
#: adrotate.php:493
|
610 |
#, fuzzy
|
611 |
msgid "Media Management available in AdRotate Pro"
|
612 |
msgstr "Tillgänglig i AdRotate Pro"
|
613 |
|
614 |
+
#: adrotate.php:495
|
615 |
msgid "Upload images to the AdRotate Pro banners folder from here."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: adrotate.php:495
|
619 |
msgid ""
|
620 |
"This is useful if you use responsive adverts with multiple images or have "
|
621 |
"HTML5 adverts containing multiple files."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: adrotate.php:495
|
625 |
#, fuzzy
|
626 |
msgid "Media uploading and management is available in AdRotate Pro."
|
627 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
628 |
|
629 |
+
#: adrotate.php:497
|
630 |
msgid "Upload new file"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: adrotate.php:498
|
634 |
msgid "Accepted files:"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: adrotate.php:498
|
638 |
msgid "For HTML5 ads you can also upload html and javascript files."
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: adrotate.php:498
|
642 |
#, fuzzy
|
643 |
msgid "Maximum size is 512Kb."
|
644 |
msgstr "Maximal storlek är 512Kb."
|
645 |
|
646 |
+
#: adrotate.php:498
|
647 |
msgid "Important:"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: adrotate.php:498
|
651 |
msgid ""
|
652 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
653 |
"spaces with a - or _."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: adrotate.php:498
|
657 |
msgid ""
|
658 |
"If you remove spaces from filenames for HTML5 adverts also edit the html "
|
659 |
"file so it knows about the changed name. For example for the javascript file."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: adrotate.php:501
|
663 |
msgid ""
|
664 |
"For responsive adverts make sure the filename is in the following format; "
|
665 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: adrotate.php:502 dashboard/publisher/adverts-edit.php:311
|
669 |
msgid ""
|
670 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
671 |
"filename instead of \".full\" for the various viewports."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: adrotate.php:503 dashboard/publisher/groups-edit.php:312
|
675 |
#: dashboard/publisher/groups-edit.php:320
|
676 |
msgid "Example:"
|
677 |
msgstr "Exempel:"
|
678 |
|
679 |
+
#: adrotate.php:503
|
680 |
msgid ""
|
681 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
682 |
"for different viewports."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: adrotate.php:507
|
686 |
msgid "Upload file"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: adrotate.php:507
|
690 |
msgid "Click only once per file!"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: adrotate.php:510
|
694 |
msgid "Available files in"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: adrotate.php:515 dashboard/publisher/groups-edit.php:55
|
698 |
#: dashboard/publisher/groups-main.php:33
|
699 |
msgid "Name"
|
700 |
msgstr "Namn"
|
701 |
|
702 |
+
#: adrotate.php:516
|
703 |
#, fuzzy
|
704 |
msgid "Actions"
|
705 |
msgstr "Massåtgärder"
|
706 |
|
707 |
+
#: adrotate.php:521 adrotate.php:522 adrotate.php:523 adrotate.php:524
|
708 |
+
#: adrotate.php:525 adrotate.php:526 adrotate.php:527
|
709 |
#: dashboard/publisher/adverts-disabled.php:22
|
710 |
#: dashboard/publisher/adverts-error.php:21
|
711 |
#: dashboard/publisher/adverts-main.php:22
|
712 |
msgid "Delete"
|
713 |
msgstr "Radera"
|
714 |
|
715 |
+
#: adrotate.php:531
|
716 |
msgid ""
|
717 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: adrotate.php:531
|
721 |
#, fuzzy
|
722 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
723 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
724 |
|
725 |
+
#: adrotate.php:560
|
726 |
msgid "AdRotate Settings"
|
727 |
msgstr "AdRotate Inställningar"
|
728 |
|
729 |
+
#: adrotate.php:631
|
730 |
msgid "Update Options"
|
731 |
msgstr "Update Options"
|
732 |
|
779 |
"forum. Get a solution (usually) within a day."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: dashboard/adrotatepro.php:48 dashboard/info.php:99
|
783 |
msgid "AdRotate is brought to you by"
|
784 |
msgstr "AdRotate kommer till dig genom"
|
785 |
|
786 |
+
#: dashboard/adrotatepro.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
msgid "Schedule all campaigns with ease"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: dashboard/adrotatepro.php:77
|
791 |
msgid ""
|
792 |
"Schedule your adverts and set up advertising campaigns based on dates you or "
|
793 |
"your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
|
795 |
"much more easy. You can set one or many schedules for adverts."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: dashboard/adrotatepro.php:81
|
799 |
msgid "Avoid adblockers"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: dashboard/adrotatepro.php:84
|
803 |
msgid ""
|
804 |
"Try and avoid adblockers so you adverts get the exposure you want them to "
|
805 |
"have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
|
807 |
"adverts smartly so these features reach their full potential!"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: dashboard/adrotatepro.php:88
|
811 |
msgid "Stay up-to-date with notifications"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: dashboard/adrotatepro.php:91
|
815 |
msgid ""
|
816 |
"Stay in touch with Email notifications. Have AdRotate send you an alert when "
|
817 |
"adverts expire or need your attention. Additionally, you can have AdRotate "
|
820 |
"miss an expiration date again."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
|
824 |
+
#: dashboard/info.php:78
|
825 |
#, fuzzy
|
826 |
msgid "Buy AdRotate Professional"
|
827 |
msgstr "Köp nu"
|
828 |
|
829 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
830 |
msgid "Single License"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: dashboard/adrotatepro.php:99 dashboard/info.php:82
|
834 |
#, fuzzy
|
835 |
msgid "For one WordPress installation."
|
836 |
msgstr "Installation"
|
837 |
|
838 |
+
#: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
|
839 |
+
#: dashboard/info.php:83 dashboard/info.php:90
|
840 |
#, fuzzy
|
841 |
msgid "Duo License"
|
842 |
msgstr "AdRotate Licens"
|
843 |
|
844 |
+
#: dashboard/adrotatepro.php:100 dashboard/info.php:83
|
845 |
#, fuzzy
|
846 |
msgid "For two WordPress installations."
|
847 |
msgstr "Installation"
|
848 |
|
849 |
+
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
|
850 |
+
#: dashboard/info.php:84 dashboard/info.php:91
|
851 |
#, fuzzy
|
852 |
msgid "Multi License"
|
853 |
msgstr "AdRotate Licens"
|
854 |
|
855 |
+
#: dashboard/adrotatepro.php:101 dashboard/info.php:84
|
856 |
#, fuzzy
|
857 |
msgid " For up to five WordPress installations."
|
858 |
msgstr "Installation"
|
859 |
|
860 |
+
#: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
|
861 |
+
#: dashboard/info.php:85 dashboard/info.php:92
|
862 |
#, fuzzy
|
863 |
msgid "Developer License"
|
864 |
msgstr "Utvecklar Debug"
|
865 |
|
866 |
+
#: dashboard/adrotatepro.php:102 dashboard/info.php:85
|
867 |
msgid "Unlimited WordPress installations and/or networks."
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
|
871 |
+
#: dashboard/info.php:86 dashboard/info.php:94
|
872 |
msgid "Compare licenses"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
876 |
msgid "Not sure which license is for you? Compare them..."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: dashboard/adrotatepro.php:103 dashboard/info.php:86
|
880 |
msgid "All Licenses"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
884 |
msgid "Lifetime License"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: dashboard/adrotatepro.php:111 dashboard/info.php:89
|
888 |
msgid "Single installation."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: dashboard/adrotatepro.php:112 dashboard/info.php:90
|
892 |
msgid "Up to 2 installations."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: dashboard/adrotatepro.php:113 dashboard/info.php:91
|
896 |
msgid "Up to 10 installations."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: dashboard/adrotatepro.php:114 dashboard/info.php:92
|
900 |
msgid "Up to 25 installations or multisite networks."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: dashboard/adrotatepro.php:115 dashboard/info.php:93
|
904 |
msgid ""
|
905 |
"Subscriptions get 1 year access to updates, email support & AdRotate Geo."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
909 |
msgid "Not sure which license is for you?"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: dashboard/adrotatepro.php:116 dashboard/info.php:94
|
913 |
msgid "Compare Licenses"
|
914 |
msgstr ""
|
915 |
|
925 |
msgid "Adverts that need you"
|
926 |
msgstr "Annonser som behöver dig"
|
927 |
|
928 |
+
#: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
|
929 |
+
#: dashboard/publisher/groups-main.php:34
|
930 |
msgid "Adverts"
|
931 |
msgstr "Annonser"
|
932 |
|
948 |
|
949 |
#: dashboard/info.php:55
|
950 |
msgid ""
|
951 |
+
"Consider writing a review if you like AdRotate. Also follow my Facebook page "
|
952 |
+
"for updates about me and my plugins. Thank you!"
|
953 |
msgstr ""
|
954 |
|
|
|
|
|
|
|
|
|
955 |
#: dashboard/info.php:103
|
956 |
+
msgid ""
|
957 |
+
"Premium plugins, support and services for WordPress and WooCommerce! I am a "
|
958 |
+
"digital nomad in the Philippines. Click on my name to find out more about me "
|
959 |
+
"and what I am doing. Thanks for your support and for using my plugins!"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: dashboard/info.php:113
|
963 |
#, fuzzy
|
964 |
msgid "Get more features with AdRotate Pro"
|
965 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
966 |
|
967 |
+
#: dashboard/info.php:116
|
968 |
msgid ""
|
969 |
"Benefit from extra features to reinforce your income with advertising "
|
970 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
971 |
"Pro offers on top of the trusted features included in the free version."
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: dashboard/info.php:116
|
975 |
msgid "Want to know more about"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: dashboard/info.php:116
|
979 |
msgid "Visit the"
|
980 |
msgstr "Besök"
|
981 |
|
982 |
+
#: dashboard/info.php:116
|
983 |
msgid "website"
|
984 |
msgstr "hemsida"
|
985 |
|
986 |
+
#: dashboard/info.php:120
|
987 |
+
msgid "AdRotate News and Developer Blog"
|
988 |
+
msgstr "AdRotate Nyheter och Utvecklar Blog"
|
989 |
+
|
990 |
#: dashboard/publisher/adverts-disabled.php:15
|
991 |
+
msgid "Disabled Adverts"
|
992 |
+
msgstr ""
|
993 |
|
994 |
#: dashboard/publisher/adverts-disabled.php:21
|
995 |
#: dashboard/publisher/adverts-edit.php:176
|
1028 |
|
1029 |
#: dashboard/publisher/adverts-disabled.php:39
|
1030 |
#: dashboard/publisher/adverts-main.php:46
|
1031 |
+
#: dashboard/publisher/adverts-report.php:36
|
1032 |
+
#: dashboard/publisher/adverts-report.php:57
|
1033 |
#: dashboard/publisher/groups-edit.php:334
|
1034 |
#: dashboard/publisher/groups-main.php:38
|
1035 |
+
#: dashboard/publisher/groups-report.php:37
|
1036 |
+
#: dashboard/publisher/groups-report.php:58
|
1037 |
msgid "Clicks"
|
1038 |
msgstr "Klick"
|
1039 |
|
1040 |
#: dashboard/publisher/adverts-disabled.php:40
|
1041 |
#: dashboard/publisher/adverts-main.php:48
|
1042 |
+
#: dashboard/publisher/adverts-report.php:39
|
1043 |
+
#: dashboard/publisher/adverts-report.php:58
|
1044 |
+
#: dashboard/publisher/groups-report.php:40
|
1045 |
+
#: dashboard/publisher/groups-report.php:59
|
1046 |
msgid "CTR"
|
1047 |
msgstr "CTR"
|
1048 |
|
1417 |
msgstr ""
|
1418 |
|
1419 |
#: dashboard/publisher/adverts-edit.php:312
|
1420 |
+
#: dashboard/publisher/adverts-report.php:64
|
1421 |
+
#: dashboard/publisher/groups-report.php:65
|
1422 |
msgid "Note:"
|
1423 |
msgstr "Notera:"
|
1424 |
|
1550 |
msgstr "läge"
|
1551 |
|
1552 |
#: dashboard/publisher/adverts-error.php:12
|
1553 |
+
msgid "Adverts that need attention"
|
1554 |
+
msgstr ""
|
1555 |
|
1556 |
#: dashboard/publisher/adverts-error.php:20
|
1557 |
#: dashboard/publisher/adverts-main.php:21
|
1589 |
msgstr "Konfigurations fel."
|
1590 |
|
1591 |
#: dashboard/publisher/adverts-main.php:12
|
1592 |
+
msgid "Active Adverts"
|
1593 |
+
msgstr ""
|
1594 |
|
1595 |
#: dashboard/publisher/adverts-main.php:24
|
1596 |
#, fuzzy
|
1610 |
msgstr "i dag"
|
1611 |
|
1612 |
#: dashboard/publisher/adverts-main.php:109
|
1613 |
+
msgid "No adverts created yet!"
|
1614 |
+
msgstr ""
|
1615 |
|
1616 |
+
#: dashboard/publisher/adverts-report.php:30
|
1617 |
msgid "Statistics for advert"
|
1618 |
msgstr "Statistik för annons"
|
1619 |
|
1620 |
+
#: dashboard/publisher/adverts-report.php:35
|
1621 |
+
#: dashboard/publisher/adverts-report.php:56
|
1622 |
+
#: dashboard/publisher/groups-report.php:36
|
1623 |
+
#: dashboard/publisher/groups-report.php:57
|
1624 |
msgid "Impressions"
|
1625 |
msgstr "Intryck"
|
1626 |
|
1627 |
+
#: dashboard/publisher/adverts-report.php:37
|
1628 |
+
#: dashboard/publisher/groups-report.php:38
|
1629 |
msgid "Impressions today"
|
1630 |
msgstr "Intryck idag"
|
1631 |
|
1632 |
+
#: dashboard/publisher/adverts-report.php:38
|
1633 |
+
#: dashboard/publisher/groups-report.php:39
|
1634 |
msgid "Clicks today"
|
1635 |
msgstr "Klick idag"
|
1636 |
|
1637 |
+
#: dashboard/publisher/adverts-report.php:45
|
1638 |
+
#: dashboard/publisher/groups-report.php:46
|
1639 |
msgid "Monthly overview of clicks and impressions"
|
1640 |
msgstr "Månads översikt av klick och visningar"
|
1641 |
|
1642 |
+
#: dashboard/publisher/adverts-report.php:64
|
1643 |
+
#: dashboard/publisher/groups-report.php:65
|
1644 |
msgid ""
|
1645 |
"All statistics are indicative. They do not nessesarily reflect results "
|
1646 |
"counted by other parties."
|
1665 |
msgstr "Dynamiskt läge - Visa en annan annons med några sekunders"
|
1666 |
|
1667 |
#: dashboard/publisher/groups-edit.php:66
|
1668 |
+
msgid "Block Mode - Show a block of adverts"
|
1669 |
+
msgstr ""
|
1670 |
|
1671 |
#: dashboard/publisher/groups-edit.php:70
|
1672 |
#, fuzzy
|
1717 |
msgstr "bildpunkter (er) hög."
|
1718 |
|
1719 |
#: dashboard/publisher/groups-edit.php:104
|
|
|
1720 |
msgid ""
|
1721 |
+
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1722 |
"recommended). Default: 125/125."
|
1723 |
msgstr ""
|
|
|
|
|
1724 |
|
1725 |
#: dashboard/publisher/groups-edit.php:108
|
1726 |
msgid "Automated refresh"
|
1743 |
#: dashboard/publisher/groups-edit.php:141
|
1744 |
#: dashboard/publisher/groups-edit.php:288
|
1745 |
msgid ""
|
1746 |
+
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1747 |
+
"Adverts\" and enter ID"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
#: dashboard/publisher/groups-edit.php:153
|
1971 |
msgstr "Synlig tills"
|
1972 |
|
1973 |
#: dashboard/publisher/groups-edit.php:379
|
1974 |
+
msgid "No adverts created!"
|
1975 |
+
msgstr ""
|
1976 |
|
1977 |
#: dashboard/publisher/groups-main.php:21
|
1978 |
msgid "Delete Group"
|
1979 |
msgstr "Ta bort grupp"
|
1980 |
|
1981 |
#: dashboard/publisher/groups-main.php:22
|
1982 |
+
msgid "Delete Group including adverts"
|
1983 |
+
msgstr ""
|
1984 |
|
1985 |
#: dashboard/publisher/groups-main.php:24
|
1986 |
msgid "You are about to delete a group"
|
1999 |
msgid "No groups created!"
|
2000 |
msgstr "Inga grupper skapas!"
|
2001 |
|
2002 |
+
#: dashboard/publisher/groups-report.php:31
|
2003 |
msgid "Statistics for group"
|
2004 |
msgstr "Statistik för grupp"
|
2005 |
|
2479 |
msgstr ""
|
2480 |
|
2481 |
#: dashboard/settings/maintenance.php:70
|
2482 |
+
msgid "Banners/assets Folder"
|
2483 |
+
msgstr ""
|
2484 |
+
|
2485 |
+
#: dashboard/settings/maintenance.php:72
|
2486 |
+
msgid "Exists and appears writable"
|
2487 |
+
msgstr ""
|
2488 |
+
|
2489 |
+
#: dashboard/settings/maintenance.php:72
|
2490 |
+
msgid "Not writable or does not exist"
|
2491 |
+
msgstr ""
|
2492 |
+
|
2493 |
+
#: dashboard/settings/maintenance.php:76
|
2494 |
#, fuzzy
|
2495 |
msgid "Ad evaluation next run:"
|
2496 |
msgstr "Annons Meddelanden nästa körning:"
|
2497 |
|
2498 |
+
#: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
|
2499 |
msgid "Not scheduled!"
|
2500 |
msgstr "Inte planerat!"
|
2501 |
|
2502 |
+
#: dashboard/settings/maintenance.php:80
|
2503 |
msgid "Clean Trackerdata next run:"
|
2504 |
msgstr "Rensa Trackerdata nästa körning:"
|
2505 |
|
2616 |
"postadress. Spara alternativen först!"
|
2617 |
|
2618 |
#: dashboard/settings/notifications.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2619 |
msgid "Email Notifications"
|
2620 |
msgstr "E-postmeddelanden"
|
2621 |
|
2622 |
+
#: dashboard/settings/notifications.php:32
|
2623 |
#, fuzzy
|
2624 |
msgid "Set up who gets notification emails."
|
2625 |
msgstr "Annonser som behöver uppmärksammas"
|
2626 |
|
2627 |
+
#: dashboard/settings/notifications.php:35
|
2628 |
+
#: dashboard/settings/notifications.php:55
|
2629 |
#, fuzzy
|
2630 |
msgid "Publishers"
|
2631 |
msgstr ""
|
2632 |
"Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
|
2633 |
"endast till förlag."
|
2634 |
|
2635 |
+
#: dashboard/settings/notifications.php:38
|
2636 |
msgid ""
|
2637 |
"A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
|
2638 |
"list to a minimum!"
|
2640 |
"En kommaseparerad lista med e-postadresser. Maximalt av 5 adresser. Spara "
|
2641 |
"denna lista till ett minimum!"
|
2642 |
|
2643 |
+
#: dashboard/settings/notifications.php:39
|
2644 |
#, fuzzy
|
2645 |
msgid ""
|
2646 |
"Messages are sent once every 24 hours when needed. If this field is empty no "
|
2649 |
"Meddelanden skickas en gång per 24 timmar när det behövs. Om detta fält är "
|
2650 |
"tomt funktionen avaktiveras."
|
2651 |
|
2652 |
+
#: dashboard/settings/notifications.php:43
|
2653 |
msgid "Advertisers"
|
2654 |
msgstr "Annonsörer"
|
2655 |
|
2656 |
+
#: dashboard/settings/notifications.php:46
|
2657 |
#, fuzzy
|
2658 |
msgid ""
|
2659 |
"Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
|
2660 |
"This field may not be empty!"
|
2661 |
msgstr "Max 2 adresser. Kommaseparerad. Detta fält kan inte vara tomt!"
|
2662 |
|
2663 |
+
#: dashboard/settings/notifications.php:51
|
2664 |
#, fuzzy
|
2665 |
msgid "Push Notifications"
|
2666 |
msgstr "Meddelanden"
|
2667 |
|
2668 |
+
#: dashboard/settings/notifications.php:52
|
2669 |
msgid ""
|
2670 |
"Receive information about what is happening with your AdRotate setup on your "
|
2671 |
"smartphone via Pushover."
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: dashboard/settings/notifications.php:57
|
2675 |
msgid "When you are running out of Geo Targeting Lookups."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: dashboard/settings/notifications.php:58
|
2679 |
msgid "Daily digest of any advert status other than normal."
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: dashboard/settings/notifications.php:59
|
2683 |
msgid "Any advertiser saving an advert in your moderation queue."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: dashboard/settings/notifications.php:60
|
2687 |
#, fuzzy
|
2688 |
msgid "A moderator approved an advert from the moderation queue."
|
2689 |
msgstr "Godkänn / avvisa annonser i moderation Queue"
|
2690 |
|
2691 |
+
#: dashboard/settings/notifications.php:61
|
2692 |
#, fuzzy
|
2693 |
msgid "A moderator rejected an advert from the moderation queue."
|
2694 |
msgstr "Godkänn / avvisa annonser i moderation Queue"
|
2695 |
|
2696 |
+
#: dashboard/settings/notifications.php:61
|
2697 |
msgid ""
|
2698 |
"If you have a lot of activity with many advertisers adding/changing adverts "
|
2699 |
"you may get a lot of messages!"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: dashboard/settings/notifications.php:66
|
2703 |
#, fuzzy
|
2704 |
msgid "User Key"
|
2705 |
msgstr "Licensnyckel"
|
2706 |
|
2707 |
+
#: dashboard/settings/notifications.php:68
|
2708 |
msgid "Get your user token"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: dashboard/settings/notifications.php:68
|
2712 |
+
#: dashboard/settings/notifications.php:74
|
2713 |
msgid "here"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: dashboard/settings/notifications.php:72
|
2717 |
msgid "Api Token"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: dashboard/settings/notifications.php:74
|
2721 |
msgid "Create your"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: dashboard/settings/notifications.php:74
|
2725 |
msgid "App"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: dashboard/settings/notifications.php:74
|
2729 |
msgid "and get your API token"
|
2730 |
msgstr ""
|
2731 |
|
2884 |
msgstr ""
|
2885 |
"Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
|
2886 |
|
2887 |
+
#~ msgid "active ad(s) expired."
|
2888 |
+
#~ msgstr "aktiv annons (er) gått ut."
|
2889 |
+
|
2890 |
+
#~ msgid "Take action now"
|
2891 |
+
#~ msgstr "Agera nu"
|
2892 |
+
|
2893 |
+
#~ msgid "active ad(s) are about to expire."
|
2894 |
+
#~ msgstr "aktiv annons(er) är på väg att löpa ut."
|
2895 |
+
|
2896 |
+
#~ msgid "Check it out"
|
2897 |
+
#~ msgstr "Kolla in det"
|
2898 |
+
|
2899 |
+
#~ msgid "active ad(s) with configuration errors."
|
2900 |
+
#~ msgstr "aktiv annons(er) med konfigurationsfel."
|
2901 |
+
|
2902 |
+
#~ msgid "Solve this"
|
2903 |
+
#~ msgstr "Lös det här"
|
2904 |
+
|
2905 |
+
#~ msgid "ad(s) expired."
|
2906 |
+
#~ msgstr "annons(er) gått ut."
|
2907 |
+
|
2908 |
+
#~ msgid "ad(s) are about to expire."
|
2909 |
+
#~ msgstr "annons(er) är på väg att löpa ut."
|
2910 |
+
|
2911 |
+
#~ msgid "ad(s) with configuration errors."
|
2912 |
+
#~ msgstr "annons (er) med konfigurationsfel."
|
2913 |
+
|
2914 |
+
#~ msgid "Fix this as soon as possible"
|
2915 |
+
#~ msgstr "Lös det här så fort som möjligt"
|
2916 |
+
|
2917 |
+
#~ msgid "Brought to you by"
|
2918 |
+
#~ msgstr "Presenteras av"
|
2919 |
+
|
2920 |
+
#~ msgid "Single Ad - Use Ad ID"
|
2921 |
+
#~ msgstr "Singel annons - Användare och ID"
|
2922 |
+
|
2923 |
+
#~ msgid "Group of Ads - Use group ID"
|
2924 |
+
#~ msgstr "Grupp av annonser - Använd grupp-ID"
|
2925 |
+
|
2926 |
+
#~ msgid "Manage Ads"
|
2927 |
+
#~ msgstr "Hantera Annonser"
|
2928 |
+
|
2929 |
+
#~ msgid "Ad Management"
|
2930 |
+
#~ msgstr "Annonshantering"
|
2931 |
+
|
2932 |
+
#~ msgid "Disabled Ads"
|
2933 |
+
#~ msgstr "Inaktivera annonser"
|
2934 |
+
|
2935 |
+
#~ msgid "Ads that need immediate attention"
|
2936 |
+
#~ msgstr "Annonser som behöver omedelbar uppmärksamhet"
|
2937 |
+
|
2938 |
+
#~ msgid "Active Ads"
|
2939 |
+
#~ msgstr "aktiva annonser"
|
2940 |
+
|
2941 |
+
#~ msgid "No ads created yet!"
|
2942 |
+
#~ msgstr "Inga annonser skapats ännu!"
|
2943 |
+
|
2944 |
+
#~ msgid "Block Mode - Show a block of ads"
|
2945 |
+
#~ msgstr "Blockläge - Visa ett block av annonser"
|
2946 |
+
|
2947 |
+
#, fuzzy
|
2948 |
+
#~ msgid ""
|
2949 |
+
#~ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
|
2950 |
+
#~ "recommended). Default: 125/125."
|
2951 |
+
#~ msgstr ""
|
2952 |
+
#~ "Ange den maximala storleken på annonserna i pixlar minus marginal. "
|
2953 |
+
#~ "Storlek kan vara 'auto' (Rekommenderas ej). Standard: 125/125."
|
2954 |
+
|
2955 |
+
#~ msgid "No ads created!"
|
2956 |
+
#~ msgstr "Inga annonser skapat!"
|
2957 |
+
|
2958 |
+
#~ msgid "Delete Group including ads"
|
2959 |
+
#~ msgstr "Ta bort grupp inklusive annonser"
|
2960 |
+
|
2961 |
+
#, fuzzy
|
2962 |
+
#~ msgid "Dashboard Notifications"
|
2963 |
+
#~ msgstr ""
|
2964 |
+
#~ "Registrera ditt exemplar av AdRotate. Detta kommer att göra det möjligt "
|
2965 |
+
#~ "för ticket och uppdatera underrättelser direkt från din dashboard."
|
2966 |
+
|
2967 |
#, fuzzy
|
2968 |
#~ msgid "AdRotate Page"
|
2969 |
#~ msgstr "AdRotate Pro"
|
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.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,26 +91,26 @@ 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 |
-
* [
|
98 |
-
|
99 |
-
|
100 |
-
* [
|
101 |
-
|
102 |
-
|
103 |
-
* [new]
|
104 |
-
* [new] AdRotate
|
105 |
-
* [
|
106 |
-
* [change]
|
107 |
-
* [
|
108 |
-
* [
|
109 |
-
* [
|
110 |
-
* [
|
111 |
-
* [fix]
|
112 |
-
* [fix]
|
113 |
-
* [fix]
|
114 |
|
115 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
116 |
|
@@ -118,10 +118,13 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
|
|
118 |
|
119 |
== Upgrade Notice ==
|
120 |
|
121 |
-
= 3.
|
122 |
-
* [
|
123 |
-
* [
|
124 |
-
* [
|
|
|
|
|
|
|
125 |
|
126 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
127 |
|
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.2
|
7 |
+
Stable tag: 3.15
|
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.15 FREE =
|
95 |
+
* [new] AdRotate error detection and status notifications
|
96 |
+
* [new] Stats display for graphs now shows totals and CTR
|
97 |
+
* [change] Updated bot filter keywords
|
98 |
+
* [change] Reports display tweaks
|
99 |
+
* [change] Impressions always tracked when using internal tracker
|
100 |
+
* [fix] Advert evaluation cache not always accurate
|
101 |
+
|
102 |
+
= 3.20 PRO =
|
103 |
+
* [new] Archive function for adverts
|
104 |
+
* [new] AdRotate error detection and status notifications
|
105 |
+
* [new] Stats display for graphs now shows totals and CTR
|
106 |
+
* [change] Regression: 30k free lookups via AdRotate Geo
|
107 |
+
* [change] Updated bot filter keywords
|
108 |
+
* [change] Removed “Adblock detection” feature
|
109 |
+
* [change] Reports display tweaks
|
110 |
+
* [change] Impressions always tracked when using internal tracker
|
111 |
+
* [fix] Javascripts not always loaded in dashboard
|
112 |
+
* [fix] Translations not always working
|
113 |
+
* [fix] Advert evaluation cache not always accurate
|
114 |
|
115 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
116 |
|
118 |
|
119 |
== Upgrade Notice ==
|
120 |
|
121 |
+
= 3.15 FREE =
|
122 |
+
* [new] AdRotate error detection and status notifications
|
123 |
+
* [new] Stats display for graphs now shows totals and CTR
|
124 |
+
* [change] Updated bot filter keywords
|
125 |
+
* [change] Reports display tweaks
|
126 |
+
* [change] Impressions always tracked when using internal tracker
|
127 |
+
* [fix] Advert evaluation cache not always accurate
|
128 |
|
129 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
|
130 |
|