Version Description
FREE = * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save' * [tweak] Load max. 10 ads for a dynamic group * [tweak] Dynamic groups now hide all ads but one on page load * [change] Removed obsolete AdRotate Server code * [i18n] New and obsolete strings in translation files
NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to AdRotate PRO.
Download this release
Release Info
Developer | adegans |
Plugin | ![]() |
Version | 3.11.1 |
Comparing to | |
See all releases |
Code changes from version 3.11 to 3.11.1
- adrotate-functions.php +12 -7
- adrotate-manage-publisher.php +1 -1
- adrotate-output.php +6 -3
- adrotate-setup.php +13 -18
- adrotate.php +6 -108
- dashboard/adrotate-info.php +1 -5
- dashboard/server/adrotate-active.php +0 -78
- dashboard/server/adrotate-error.php +0 -80
- dashboard/server/adrotate-settings.php +0 -67
- dashboard/server/index.php +0 -3
- language/adrotate-el.mo +0 -0
- language/adrotate-el.po +278 -385
- language/adrotate-en_US.mo +0 -0
- language/adrotate-en_US.po +349 -391
- language/adrotate-es_ES.mo +0 -0
- language/adrotate-es_ES.po +346 -387
- language/adrotate-ja.mo +0 -0
- language/adrotate-ja.po +282 -386
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +343 -384
- language/adrotate-sr_RS.mo +0 -0
- language/adrotate-sr_RS.po +282 -386
- language/adrotate-sv_SV.mo +0 -0
- language/adrotate-sv_SV.po +290 -382
- library/jquery.adrotate.dyngroup.js +6 -8
- readme.txt +16 -32
adrotate-functions.php
CHANGED
@@ -333,18 +333,23 @@ function adrotate_rand($length = 8) {
|
|
333 |
/*-------------------------------------------------------------
|
334 |
Name: adrotate_shuffle
|
335 |
|
336 |
-
Purpose: Randomize an array but keep keys intact
|
337 |
-
Receive: $
|
338 |
-
Return: $
|
339 |
Since: 3.8.8.3
|
340 |
-------------------------------------------------------------*/
|
341 |
-
function adrotate_shuffle($array) {
|
342 |
if(!is_array($array)) return $array;
|
343 |
$keys = array_keys($array);
|
344 |
-
shuffle($keys);
|
|
|
|
|
|
|
|
|
|
|
345 |
$shuffle = array();
|
346 |
-
foreach($keys as $key) {
|
347 |
-
$shuffle[$key] = $array[$key];
|
348 |
}
|
349 |
return $shuffle;
|
350 |
}
|
333 |
/*-------------------------------------------------------------
|
334 |
Name: adrotate_shuffle
|
335 |
|
336 |
+
Purpose: Randomize and slice an array but keep keys intact
|
337 |
+
Receive: $array, $amount
|
338 |
+
Return: $shuffle
|
339 |
Since: 3.8.8.3
|
340 |
-------------------------------------------------------------*/
|
341 |
+
function adrotate_shuffle($array, $amount = 0) {
|
342 |
if(!is_array($array)) return $array;
|
343 |
$keys = array_keys($array);
|
344 |
+
shuffle($keys);
|
345 |
+
|
346 |
+
$count = count($keys);
|
347 |
+
if($amount == 0 OR $amount > $count) $amount = $count;
|
348 |
+
$keys = array_slice($keys, 0, $amount, 1);
|
349 |
+
|
350 |
$shuffle = array();
|
351 |
+
foreach($keys as $key) {
|
352 |
+
$shuffle[$key] = $array[$key];
|
353 |
}
|
354 |
return $shuffle;
|
355 |
}
|
adrotate-manage-publisher.php
CHANGED
@@ -594,7 +594,7 @@ function adrotate_options_submit() {
|
|
594 |
else $config['enable_stats'] = 'N';
|
595 |
|
596 |
// Set the banner folder, reset if empty
|
597 |
-
$config['banner_folder'] =
|
598 |
|
599 |
// Turn option off.
|
600 |
$config['notification_email_switch'] = 'N';
|
594 |
else $config['enable_stats'] = 'N';
|
595 |
|
596 |
// Set the banner folder, reset if empty
|
597 |
+
$config['banner_folder'] = "wp-content/banners/";
|
598 |
|
599 |
// Turn option off.
|
600 |
$config['notification_email_switch'] = 'N';
|
adrotate-output.php
CHANGED
@@ -161,7 +161,11 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
|
161 |
|
162 |
if($group->modus == 1) { // Dynamic ads
|
163 |
$i = 1;
|
164 |
-
|
|
|
|
|
|
|
|
|
165 |
foreach($selected as $key => $banner) {
|
166 |
$image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
|
167 |
|
@@ -279,8 +283,7 @@ function adrotate_inject_pages($post_content) {
|
|
279 |
|
280 |
if($adrotate_debug['general'] == true) {
|
281 |
echo "<p><strong>[DEBUG][adrotate_inject_posts()] Choices</strong><pre>";
|
282 |
-
echo "
|
283 |
-
echo "<br />Group count: ".$group_count."</br>";
|
284 |
print_r($group_choice);
|
285 |
echo "</pre></p>";
|
286 |
}
|
161 |
|
162 |
if($group->modus == 1) { // Dynamic ads
|
163 |
$i = 1;
|
164 |
+
|
165 |
+
// Determine the amount of ads to show for the group
|
166 |
+
$amount = ($group->adspeed >= 10000) ? 5 : 10;
|
167 |
+
$selected = adrotate_shuffle($selected, $amount);
|
168 |
+
|
169 |
foreach($selected as $key => $banner) {
|
170 |
$image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
|
171 |
|
283 |
|
284 |
if($adrotate_debug['general'] == true) {
|
285 |
echo "<p><strong>[DEBUG][adrotate_inject_posts()] Choices</strong><pre>";
|
286 |
+
echo "Group count: ".$group_count."</br>";
|
|
|
287 |
print_r($group_choice);
|
288 |
echo "</pre></p>";
|
289 |
}
|
adrotate-setup.php
CHANGED
@@ -73,10 +73,6 @@ function adrotate_activate_setup() {
|
|
73 |
add_option('adrotate_dynamic_required', 0);
|
74 |
add_option('adrotate_hide_banner', adrotate_now());
|
75 |
|
76 |
-
// AdRotate Server
|
77 |
-
add_option('adrotate_server', array('status' => 0, 'instance' => '', 'account' => '', 'url' => '', 'puppet' => 0, 'activated' => false, 'deactivated' => false));
|
78 |
-
add_option('adrotate_server_hide', 'N');
|
79 |
-
|
80 |
adrotate_check_config();
|
81 |
|
82 |
// Set the capabilities for the administrator
|
@@ -106,8 +102,8 @@ function adrotate_activate_setup() {
|
|
106 |
}
|
107 |
|
108 |
// Attempt to make the some folders
|
109 |
-
if(!is_dir(ABSPATH
|
110 |
-
if(!is_dir(ABSPATH
|
111 |
}
|
112 |
}
|
113 |
|
@@ -205,8 +201,8 @@ function adrotate_uninstall_setup() {
|
|
205 |
delete_option('adrotate_responsive_required');
|
206 |
delete_option('adrotate_dynamic_required');
|
207 |
delete_option('adrotate_roles');
|
208 |
-
delete_option('adrotate_server');
|
209 |
-
delete_option('adrotate_server_hide');
|
210 |
delete_option('adrotate_version');
|
211 |
delete_site_option('adrotate_multisite'); // Obsolete in 3.10.18
|
212 |
|
@@ -275,7 +271,7 @@ function adrotate_check_upgrade() {
|
|
275 |
$in84days = $now + 7257600;
|
276 |
|
277 |
// Demo ad 1
|
278 |
-
$wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '<a href=\"https:\/\/ajdg.solutions\"><img src=\"http://
|
279 |
$ad_id = $wpdb->insert_id;
|
280 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
281 |
$schedule_id = $wpdb->insert_id;
|
@@ -283,7 +279,7 @@ function adrotate_check_upgrade() {
|
|
283 |
unset($ad_id, $schedule_id);
|
284 |
|
285 |
// Demo ad 2
|
286 |
-
$wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '<a href=\"http:\/\/ajdg.solutions\"><img src=\"http://
|
287 |
$ad_id = $wpdb->insert_id;
|
288 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
289 |
$schedule_id = $wpdb->insert_id;
|
@@ -291,7 +287,7 @@ function adrotate_check_upgrade() {
|
|
291 |
unset($ad_id, $schedule_id);
|
292 |
|
293 |
// Demo ad 3 (FLoating Coconut)
|
294 |
-
$wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Visit floatingcoconut.net', 'bannercode' => '<a href=\"http:\/\/www.floatingcoconut.net\"><img src=\"http://
|
295 |
$ad_id = $wpdb->insert_id;
|
296 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
297 |
$schedule_id = $wpdb->insert_id;
|
@@ -823,13 +819,6 @@ function adrotate_core_upgrade() {
|
|
823 |
if(!wp_next_scheduled('adrotate_evaluate_ads')) wp_schedule_event($firstrun + 3600, 'twicedaily', 'adrotate_evaluate_ads');
|
824 |
}
|
825 |
|
826 |
-
// 3.9.14
|
827 |
-
if($adrotate_version['current'] < 372) {
|
828 |
-
// AdRotate Server
|
829 |
-
add_option('adrotate_server', array('status' => 0, 'instance' => '', 'account' => '', 'url' => '', 'puppet' => 0, 'activated' => false, 'deactivated' => false));
|
830 |
-
add_option('adrotate_server_hide', 'N');
|
831 |
-
}
|
832 |
-
|
833 |
// 3.10
|
834 |
if($adrotate_version['current'] < 373) {
|
835 |
add_option('adrotate_responsive_required', 0);
|
@@ -850,6 +839,12 @@ function adrotate_core_upgrade() {
|
|
850 |
adrotate_check_config();
|
851 |
}
|
852 |
|
|
|
|
|
|
|
|
|
|
|
|
|
853 |
update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
|
854 |
}
|
855 |
|
73 |
add_option('adrotate_dynamic_required', 0);
|
74 |
add_option('adrotate_hide_banner', adrotate_now());
|
75 |
|
|
|
|
|
|
|
|
|
76 |
adrotate_check_config();
|
77 |
|
78 |
// Set the capabilities for the administrator
|
102 |
}
|
103 |
|
104 |
// Attempt to make the some folders
|
105 |
+
if(!is_dir(ABSPATH.'wp-content/banners')) mkdir(ABSPATH.'/wp-content/banners', 0755);
|
106 |
+
if(!is_dir(ABSPATH.'wp-content/reports')) mkdir(ABSPATH.'/wp-content/reports', 0755);
|
107 |
}
|
108 |
}
|
109 |
|
201 |
delete_option('adrotate_responsive_required');
|
202 |
delete_option('adrotate_dynamic_required');
|
203 |
delete_option('adrotate_roles');
|
204 |
+
delete_option('adrotate_server'); // Obsolete in 3.11.1
|
205 |
+
delete_option('adrotate_server_hide'); // Obsolete in 3.11.1
|
206 |
delete_option('adrotate_version');
|
207 |
delete_site_option('adrotate_multisite'); // Obsolete in 3.10.18
|
208 |
|
271 |
$in84days = $now + 7257600;
|
272 |
|
273 |
// Demo ad 1
|
274 |
+
$wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '<a href=\"https:\/\/ajdg.solutions\"><img src=\"http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
275 |
$ad_id = $wpdb->insert_id;
|
276 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
277 |
$schedule_id = $wpdb->insert_id;
|
279 |
unset($ad_id, $schedule_id);
|
280 |
|
281 |
// Demo ad 2
|
282 |
+
$wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '<a href=\"http:\/\/ajdg.solutions\"><img src=\"http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
283 |
$ad_id = $wpdb->insert_id;
|
284 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
285 |
$schedule_id = $wpdb->insert_id;
|
287 |
unset($ad_id, $schedule_id);
|
288 |
|
289 |
// Demo ad 3 (FLoating Coconut)
|
290 |
+
$wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Visit floatingcoconut.net', 'bannercode' => '<a href=\"http:\/\/www.floatingcoconut.net\"><img src=\"http://ajdg.solutions/assets/banners/floatingcoconut-horizontal.jpg\" /></a>', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
291 |
$ad_id = $wpdb->insert_id;
|
292 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
|
293 |
$schedule_id = $wpdb->insert_id;
|
819 |
if(!wp_next_scheduled('adrotate_evaluate_ads')) wp_schedule_event($firstrun + 3600, 'twicedaily', 'adrotate_evaluate_ads');
|
820 |
}
|
821 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
// 3.10
|
823 |
if($adrotate_version['current'] < 373) {
|
824 |
add_option('adrotate_responsive_required', 0);
|
839 |
adrotate_check_config();
|
840 |
}
|
841 |
|
842 |
+
// 3.11.1
|
843 |
+
if($adrotate_version['current'] < 377) {
|
844 |
+
delete_option('adrotate_server');
|
845 |
+
delete_option('adrotate_server_hide');
|
846 |
+
}
|
847 |
+
|
848 |
update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
|
849 |
}
|
850 |
|
adrotate.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
Plugin Name: AdRotate
|
4 |
Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/
|
5 |
-
Description: The very best and most convenient way to publish your ads.
|
6 |
Author: Arnan de Gans of AJdG Solutions
|
7 |
-
Version: 3.11
|
8 |
Author URI: http://ajdg.solutions/
|
|
|
|
|
9 |
License: GPLv3
|
10 |
*/
|
11 |
|
@@ -20,8 +20,8 @@ License: GPLv3
|
|
20 |
------------------------------------------------------------------------------------ */
|
21 |
|
22 |
/*--- AdRotate values ---------------------------------------*/
|
23 |
-
define("ADROTATE_DISPLAY", '3.11');
|
24 |
-
define("ADROTATE_VERSION",
|
25 |
define("ADROTATE_DB_VERSION", 47);
|
26 |
define("ADROTATE_FOLDER", 'adrotate');
|
27 |
/*-----------------------------------------------------------*/
|
@@ -107,15 +107,10 @@ function adrotate_dashboard() {
|
|
107 |
$adrotate_page = add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon.png', __FILE__), '25.8');
|
108 |
$adrotate_page = add_submenu_page('adrotate', 'AdRotate > '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
|
109 |
$adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
|
110 |
-
// if($adrotate_server['adrotate_server_puppet'] == 0) {
|
111 |
$adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
|
112 |
-
// }
|
113 |
$adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
|
114 |
-
|
115 |
-
|
116 |
-
$adrotate_media = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
|
117 |
-
// }
|
118 |
-
// add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Server', 'adrotate'), __('AdRotate Server', 'adrotate'), 'manage_options', 'adrotate-server', 'adrotate_server');
|
119 |
$adrotate_settings = add_submenu_page('adrotate', 'AdRotate > '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
|
120 |
|
121 |
// Add help tabs
|
@@ -577,103 +572,6 @@ function adrotate_manage_media() {
|
|
577 |
<?php
|
578 |
}
|
579 |
|
580 |
-
/*-------------------------------------------------------------
|
581 |
-
Name: adrotate_server
|
582 |
-
|
583 |
-
Purpose: Connect and manage AdRotate server
|
584 |
-
Receive: -none-
|
585 |
-
Return: -none-
|
586 |
-
-------------------------------------------------------------*/
|
587 |
-
function adrotate_server() {
|
588 |
-
global $wpdb, $current_user, $userdata, $blog_id, $adrotate_config, $adrotate_debug;
|
589 |
-
|
590 |
-
$status = $file = $view = '';
|
591 |
-
if(isset($_GET['status'])) $status = esc_attr($_GET['status']);
|
592 |
-
if(isset($_GET['file'])) $file = esc_attr($_GET['file']);
|
593 |
-
if(isset($_GET['view'])) $view = esc_attr($_GET['view']);
|
594 |
-
$now = adrotate_now();
|
595 |
-
$today = adrotate_date_start('day');
|
596 |
-
$in2days = $now + 172800;
|
597 |
-
$in7days = $now + 604800;
|
598 |
-
?>
|
599 |
-
<div class="wrap">
|
600 |
-
<h2><?php _e('AdRotate Server', 'adrotate'); ?> (BETA)</h2>
|
601 |
-
|
602 |
-
<?php if($status > 0) adrotate_status($status, array('file' => $file)); ?>
|
603 |
-
|
604 |
-
<?php if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_groups';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_schedule';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_linkmeta';")) { ?>
|
605 |
-
|
606 |
-
<?php if($status > 0) adrotate_status($status); ?>
|
607 |
-
|
608 |
-
<p style="color:#f00;">NOTICE: <?php _e('AdRotate server is currently in development and these menus are not functional yet.', 'adrotate'); ?></p>
|
609 |
-
|
610 |
-
<div class="tablenav">
|
611 |
-
<div class="alignleft actions">
|
612 |
-
<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-server&view=overview');?>"><?php _e('Overview', 'adrotate'); ?></a> |
|
613 |
-
<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-server&view=settings');?>"><?php _e('Settings', 'adrotate'); ?></a>
|
614 |
-
</div>
|
615 |
-
</div>
|
616 |
-
|
617 |
-
<?php
|
618 |
-
if ($view == "" OR $view == "overview") {
|
619 |
-
$allbanners = $wpdb->get_results("SELECT `id`, `title`, `thetime`, `updated`, `type`, `weight`, `cbudget`, `ibudget`, `crate`, `irate` FROM `".$wpdb->prefix."adrotate` WHERE `type` = 's_active' OR `type` = 's_error' OR `type` = 's_expired' OR `type` = 's_2days' OR `type` = 's_7days' ORDER BY `sortorder` ASC, `id` ASC;");
|
620 |
-
|
621 |
-
$activebanners = $errorbanners = false;
|
622 |
-
foreach($allbanners as $singlebanner) {
|
623 |
-
$starttime = $stoptime = 0;
|
624 |
-
$starttime = $wpdb->get_var("SELECT `starttime` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$singlebanner->id."' AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `starttime` ASC LIMIT 1;");
|
625 |
-
$stoptime = $wpdb->get_var("SELECT `stoptime` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$singlebanner->id."' AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
|
626 |
-
|
627 |
-
$type = $singlebanner->type;
|
628 |
-
if($type == 's_active' AND $stoptime <= $now) $type = 's_expired';
|
629 |
-
if($type == 's_active' AND $stoptime <= $in2days) $type = 's_2days';
|
630 |
-
if($type == 's_active' AND $stoptime <= $in7days) $type = 's_7days';
|
631 |
-
if(($singlebanner->crate > 0 AND $singlebanner->cbudget < 1) OR ($singlebanner->irate > 0 AND $singlebanner->ibudget < 1)) $type = 's_expired';
|
632 |
-
|
633 |
-
if($type == 's_active' OR $type == 's_7days') {
|
634 |
-
$activebanners[$singlebanner->id] = array(
|
635 |
-
'id' => $singlebanner->id,
|
636 |
-
'title' => $singlebanner->title,
|
637 |
-
'type' => $type,
|
638 |
-
'weight' => $singlebanner->weight,
|
639 |
-
'added' => $singlebanner->thetime,
|
640 |
-
'updated' => $singlebanner->updated,
|
641 |
-
'firstactive' => $starttime,
|
642 |
-
'lastactive' => $stoptime
|
643 |
-
);
|
644 |
-
}
|
645 |
-
|
646 |
-
if($type == 's_error' OR $type == 's_expired' OR $type == 's_2days') {
|
647 |
-
$errorbanners[$singlebanner->id] = array(
|
648 |
-
'id' => $singlebanner->id,
|
649 |
-
'title' => $singlebanner->title,
|
650 |
-
'type' => $type,
|
651 |
-
'weight' => $singlebanner->weight,
|
652 |
-
'updated' => $singlebanner->updated,
|
653 |
-
'firstactive' => $starttime,
|
654 |
-
'lastactive' => $stoptime
|
655 |
-
);
|
656 |
-
}
|
657 |
-
}
|
658 |
-
|
659 |
-
include("dashboard/server/adrotate-active.php");
|
660 |
-
if ($errorbanners) {
|
661 |
-
include("dashboard/server/adrotate-error.php");
|
662 |
-
}
|
663 |
-
} else if($view == "settings") {
|
664 |
-
include("dashboard/server/adrotate-settings.php");
|
665 |
-
}
|
666 |
-
} else {
|
667 |
-
echo adrotate_error('db_error');
|
668 |
-
}
|
669 |
-
?>
|
670 |
-
<br class="clear" />
|
671 |
-
|
672 |
-
<?php adrotate_credits(); ?>
|
673 |
-
</div>
|
674 |
-
<?php
|
675 |
-
}
|
676 |
-
|
677 |
/*-------------------------------------------------------------
|
678 |
Name: adrotate_options
|
679 |
|
2 |
/*
|
3 |
Plugin Name: AdRotate
|
4 |
Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/
|
|
|
5 |
Author: Arnan de Gans of AJdG Solutions
|
|
|
6 |
Author URI: http://ajdg.solutions/
|
7 |
+
Description: The very best and most convenient way to publish your ads.
|
8 |
+
Version: 3.11.1
|
9 |
License: GPLv3
|
10 |
*/
|
11 |
|
20 |
------------------------------------------------------------------------------------ */
|
21 |
|
22 |
/*--- AdRotate values ---------------------------------------*/
|
23 |
+
define("ADROTATE_DISPLAY", '3.11.1');
|
24 |
+
define("ADROTATE_VERSION", 377);
|
25 |
define("ADROTATE_DB_VERSION", 47);
|
26 |
define("ADROTATE_FOLDER", 'adrotate');
|
27 |
/*-----------------------------------------------------------*/
|
107 |
$adrotate_page = add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon.png', __FILE__), '25.8');
|
108 |
$adrotate_page = add_submenu_page('adrotate', 'AdRotate > '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
|
109 |
$adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
|
|
|
110 |
$adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
|
|
|
111 |
$adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
|
112 |
+
$adrotate_schedules = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_schedule_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
|
113 |
+
$adrotate_media = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
|
|
|
|
|
|
|
114 |
$adrotate_settings = add_submenu_page('adrotate', 'AdRotate > '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
|
115 |
|
116 |
// Add help tabs
|
572 |
<?php
|
573 |
}
|
574 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
/*-------------------------------------------------------------
|
576 |
Name: adrotate_options
|
577 |
|
dashboard/adrotate-info.php
CHANGED
@@ -139,11 +139,7 @@ $data = get_option("adrotate_advert_status");
|
|
139 |
<div class="postbox-adrotate">
|
140 |
<div class="inside">
|
141 |
<?php wp_widget_rss_output(array(
|
142 |
-
'url' => array
|
143 |
-
'http://feeds.feedburner.com/AdrotatePluginForWordPress',
|
144 |
-
'http://feeds.feedburner.com/meandmymacnet',
|
145 |
-
'http://ajdg.solutions/news/feed/'
|
146 |
-
),
|
147 |
'title' => 'AdRotate Development News',
|
148 |
'items' => 4,
|
149 |
'show_summary' => 1,
|
139 |
<div class="postbox-adrotate">
|
140 |
<div class="inside">
|
141 |
<?php wp_widget_rss_output(array(
|
142 |
+
'url' => array('http://feeds.feedburner.com/meandmymacnet', 'http://ajdg.solutions/feed/'),
|
|
|
|
|
|
|
|
|
143 |
'title' => 'AdRotate Development News',
|
144 |
'items' => 4,
|
145 |
'show_summary' => 1,
|
dashboard/server/adrotate-active.php
DELETED
@@ -1,78 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/* ------------------------------------------------------------------------------------
|
3 |
-
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-2015 AJdG Solutions (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.
|
8 |
-
* By using this code you agree to indemnify Arnan de Gans from any
|
9 |
-
* liability that might arise from it's use.
|
10 |
-
------------------------------------------------------------------------------------ */
|
11 |
-
?>
|
12 |
-
<h3><?php _e('Adverts received from server', 'adrotate'); ?></h3>
|
13 |
-
<p><?php _e('These adverts are circulating in the pool of active adverts, served from AdRotate server.', 'adrotate'); ?></p>
|
14 |
-
|
15 |
-
<table class="widefat" style="margin-top: .5em">
|
16 |
-
<thead>
|
17 |
-
<tr>
|
18 |
-
<th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
|
19 |
-
<th width="13%"><?php _e('Added / Updated', 'adrotate'); ?></th>
|
20 |
-
<th width="13%"><?php _e('Start / End', 'adrotate'); ?></th>
|
21 |
-
<th><?php _e('Title', 'adrotate'); ?></th>
|
22 |
-
<th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
|
23 |
-
<th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
|
24 |
-
<th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
|
25 |
-
<th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
|
26 |
-
<th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
|
27 |
-
<th width="7%"><center><?php _e('CTR', 'adrotate'); ?></center></th>
|
28 |
-
</tr>
|
29 |
-
</thead>
|
30 |
-
<tbody>
|
31 |
-
<?php
|
32 |
-
if ($activebanners) {
|
33 |
-
$class = '';
|
34 |
-
foreach($activebanners as $banner) {
|
35 |
-
$stats = adrotate_stats($banner['id']);
|
36 |
-
$stats_today = adrotate_stats($banner['id'], $today);
|
37 |
-
$grouplist = adrotate_ad_is_in_groups($banner['id']);
|
38 |
-
|
39 |
-
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
40 |
-
|
41 |
-
if($adrotate_debug['dashboard'] == true) {
|
42 |
-
echo "<tr><td> </td><td><strong>[DEBUG]</strong></td><td colspan='10'><pre>";
|
43 |
-
echo "Ad Specs: <pre>";
|
44 |
-
print_r($banner);
|
45 |
-
echo "</pre></td></tr>";
|
46 |
-
}
|
47 |
-
|
48 |
-
if($class != 'alternate') {
|
49 |
-
$class = 'alternate';
|
50 |
-
} else {
|
51 |
-
$class = '';
|
52 |
-
}
|
53 |
-
|
54 |
-
?>
|
55 |
-
<tr id='adrotateindex' class='<?php echo $class; ?>'>
|
56 |
-
<td><center><?php echo $banner['id'];?></center></td>
|
57 |
-
<td><?php echo date_i18n("F d, Y", $banner['added']);?><br /><?php echo date_i18n("F d, Y", $banner['updated']);?></td>
|
58 |
-
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
59 |
-
<td>
|
60 |
-
<strong><?php echo stripslashes(html_entity_decode($banner['title']));?></strong>
|
61 |
-
<span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">Groups:</span> '.$grouplist; ?></span>
|
62 |
-
</td>
|
63 |
-
<td><center><?php echo $banner['weight']; ?></center></td>
|
64 |
-
<td><center><?php echo $stats['impressions']; ?></center></td>
|
65 |
-
<td><center><?php echo $stats_today['impressions']; ?></center></td>
|
66 |
-
<td><center><?php echo $stats['clicks']; ?></center></td>
|
67 |
-
<td><center><?php echo $stats_today['clicks']; ?></center></td>
|
68 |
-
<td><center><?php echo $ctr; ?> %</center></td>
|
69 |
-
</tr>
|
70 |
-
<?php } ?>
|
71 |
-
<?php } else { ?>
|
72 |
-
<tr id='no-groups'>
|
73 |
-
<th class="check-column"> </th>
|
74 |
-
<td colspan="10"><em><?php _e('No ads received yet!', 'adrotate'); ?></em></td>
|
75 |
-
</tr>
|
76 |
-
<?php } ?>
|
77 |
-
</tbody>
|
78 |
-
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dashboard/server/adrotate-error.php
DELETED
@@ -1,80 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/* ------------------------------------------------------------------------------------
|
3 |
-
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-2015 AJdG Solutions (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.
|
8 |
-
* By using this code you agree to indemnify Arnan de Gans from any
|
9 |
-
* liability that might arise from it's use.
|
10 |
-
------------------------------------------------------------------------------------ */
|
11 |
-
?>
|
12 |
-
<h3><?php _e('Erroneous ads from server', 'adrotate'); ?></h3>
|
13 |
-
<p><?php _e('Adverts served from AdRotate server but having some issues.', 'adrotate'); ?></p>
|
14 |
-
|
15 |
-
<table class="widefat" style="margin-top: .5em">
|
16 |
-
<thead>
|
17 |
-
<tr>
|
18 |
-
<th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
|
19 |
-
<th width="12%"><?php _e('Updated', 'adrotate'); ?></th>
|
20 |
-
<th width="12%"><?php _e('Show from', 'adrotate'); ?></th>
|
21 |
-
<th width="12%"><?php _e('Show until', 'adrotate'); ?></th>
|
22 |
-
<th><?php _e('Title', 'adrotate'); ?></th>
|
23 |
-
<th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
|
24 |
-
<th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
|
25 |
-
<th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
|
26 |
-
<th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
|
27 |
-
<th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
|
28 |
-
<th width="7%"><center><?php _e('CTR', 'adrotate'); ?></center></th>
|
29 |
-
</tr>
|
30 |
-
</thead>
|
31 |
-
<tbody>
|
32 |
-
<?php
|
33 |
-
if ($activebanners) {
|
34 |
-
$class = '';
|
35 |
-
foreach($activebanners as $banner) {
|
36 |
-
$stats = adrotate_stats($banner['id']);
|
37 |
-
$stats_today = adrotate_stats($banner['id'], $today);
|
38 |
-
$grouplist = adrotate_ad_is_in_groups($banner['id']);
|
39 |
-
|
40 |
-
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
41 |
-
|
42 |
-
if($adrotate_debug['dashboard'] == true) {
|
43 |
-
echo "<tr><td> </td><td><strong>[DEBUG]</strong></td><td colspan='10'><pre>";
|
44 |
-
echo "Ad Specs: <pre>";
|
45 |
-
print_r($banner);
|
46 |
-
echo "</pre></td></tr>";
|
47 |
-
}
|
48 |
-
|
49 |
-
if($class != 'alternate') {
|
50 |
-
$class = 'alternate';
|
51 |
-
} else {
|
52 |
-
$class = '';
|
53 |
-
}
|
54 |
-
|
55 |
-
?>
|
56 |
-
<tr id='adrotateindex' class='<?php echo $class; ?>'>
|
57 |
-
<td><center><?php echo $banner['id'];?></center></td>
|
58 |
-
<td><?php echo date_i18n("F d, Y", $banner['updated']);?></td>
|
59 |
-
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?></td>
|
60 |
-
<td><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
61 |
-
<td>
|
62 |
-
<strong><?php echo stripslashes(html_entity_decode($banner['title']));?></strong>
|
63 |
-
<span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">Groups:</span> '.$grouplist; ?></span>
|
64 |
-
</td>
|
65 |
-
<td><center><?php echo $banner['weight']; ?></center></td>
|
66 |
-
<td><center><?php echo $stats['impressions']; ?></center></td>
|
67 |
-
<td><center><?php echo $stats_today['impressions']; ?></center></td>
|
68 |
-
<td><center><?php echo $stats['clicks']; ?></center></td>
|
69 |
-
<td><center><?php echo $stats_today['clicks']; ?></center></td>
|
70 |
-
<td><center><?php echo $ctr; ?> %</center></td>
|
71 |
-
</tr>
|
72 |
-
<?php } ?>
|
73 |
-
<?php } else { ?>
|
74 |
-
<tr id='no-groups'>
|
75 |
-
<th class="check-column"> </th>
|
76 |
-
<td colspan="10"><em><?php _e('No ads received yet!', 'adrotate'); ?></em></td>
|
77 |
-
</tr>
|
78 |
-
<?php } ?>
|
79 |
-
</tbody>
|
80 |
-
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dashboard/server/adrotate-settings.php
DELETED
@@ -1,67 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/* ------------------------------------------------------------------------------------
|
3 |
-
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-2015 AJdG Solutions (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.
|
8 |
-
* By using this code you agree to indemnify Arnan de Gans from any
|
9 |
-
* liability that might arise from it's use.
|
10 |
-
------------------------------------------------------------------------------------ */
|
11 |
-
|
12 |
-
$adrotate_server = get_option('adrotate_server');
|
13 |
-
$adrotate_server_hide = get_option('adrotate_server_hide');
|
14 |
-
?>
|
15 |
-
<h3><?php _e('AdRotate Server Settings', 'adrotate'); ?></h3>
|
16 |
-
|
17 |
-
<form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings">
|
18 |
-
|
19 |
-
<?php wp_nonce_field('adrotate_server','adrotate_nonce_server'); ?>
|
20 |
-
|
21 |
-
<span class="description"><?php _e('Link this website to an AdRotate server so your adverts and stats are synchronised regularly.', 'adrotate'); ?></span>
|
22 |
-
<table class="form-table">
|
23 |
-
<tr>
|
24 |
-
<th valign="top"><?php _e('Status', 'adrotate'); ?></th>
|
25 |
-
<td>
|
26 |
-
<?php
|
27 |
-
echo ($adrotate_server['status'] == 1) ? __('Linked - Adverts can be synced.', 'adrotate') : __('Not linked - No adverts will be synced.', 'adrotate');
|
28 |
-
if($adrotate_server_hide == 'N') {
|
29 |
-
echo ($adrotate_server['activated'] != '') ? '<br />'.$adrotate_server['activated'] : '';
|
30 |
-
echo ($adrotate_server['url'] != '') ? '<br />'.$adrotate_server['url'] : '';
|
31 |
-
echo ($adrotate_server['account'] != '') ? '<br />'.$adrotate_server['account'] : '';
|
32 |
-
echo ($adrotate_server['puppet'] != '') ? '<br />'.$adrotate_server['puppet'] : '';
|
33 |
-
}
|
34 |
-
?>
|
35 |
-
|
36 |
-
</td>
|
37 |
-
</tr>
|
38 |
-
<?php if($adrotate_server['status'] == 0) { ?>
|
39 |
-
<tr>
|
40 |
-
<th valign="top"><?php _e('Server Key', 'adrotate'); ?></th>
|
41 |
-
<td><textarea name="adrotate_server_key" cols="80" rows="4" autocomplete="off" disabled></textarea><br /><span class="description"><?php _e('You can get your server key from your AdRotate Server installation or the AdRollr website.', 'adrotate'); ?></span><br /><span class="description"><?php _e('You should not share your key with anyone you do not trust. Treat this key as a password!', 'adrotate'); ?></span></td>
|
42 |
-
</tr>
|
43 |
-
<tr>
|
44 |
-
<th valign="top"><?php _e('Make this site a puppet', 'adrotate'); ?></th>
|
45 |
-
<td>
|
46 |
-
<input type="checkbox" name="adrotate_server_puppet" disabled /> <span class="description"><?php _e('Have AdRotate use AdRotate Server adverts exclusively.', 'adrotate'); ?><br /><?php _e('Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this installation of AdRotate a puppet for your AdRotate Server.', 'adrotate'); ?></span>
|
47 |
-
</td>
|
48 |
-
</tr>
|
49 |
-
<tr>
|
50 |
-
<th valign="top"><?php _e('Hide Server Details', 'adrotate'); ?></th>
|
51 |
-
<td>
|
52 |
-
<input type="checkbox" name="adrotate_server_hide" disabled /> <span class="description"><?php _e('If you have installed AdRotate Pro for a client or in a Multisite network and want to hide the server details from your users or client.', 'adrotate'); ?></span>
|
53 |
-
</td>
|
54 |
-
</tr>
|
55 |
-
<?php } ?>
|
56 |
-
<tr>
|
57 |
-
<th valign="top"> </th>
|
58 |
-
<td>
|
59 |
-
<?php if($adrotate_server['status'] == 0) { ?>
|
60 |
-
<input type="submit" id="post-role-submit" name="adrotate_server_save" value="<?php _e('Link to server', 'adrotate'); ?>" class="button-primary" disabled />
|
61 |
-
<?php } else { ?>
|
62 |
-
<input type="submit" id="post-role-submit" name="adrotate_server_save" value="<?php _e('Unlink from server', 'adrotate'); ?>" class="button-secondary" disabled />
|
63 |
-
<?php } ?>
|
64 |
-
</td>
|
65 |
-
</tr>
|
66 |
-
</table>
|
67 |
-
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dashboard/server/index.php
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Nope.
|
3 |
-
?>
|
|
|
|
|
|
language/adrotate-el.mo
CHANGED
Binary file
|
language/adrotate-el.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
@@ -14,23 +14,23 @@ msgstr ""
|
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Generator: Poedit 1.
|
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-output.php:
|
30 |
msgid "Oh no! Something went wrong!"
|
31 |
msgstr "Παρουσιάστηκε κάποιο σφάλμα."
|
32 |
|
33 |
-
#: adrotate-output.php:
|
34 |
msgid ""
|
35 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
36 |
"Verify if the url used is valid or log in via your browser."
|
@@ -39,7 +39,7 @@ msgstr ""
|
|
39 |
"που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
|
40 |
"browser σας."
|
41 |
|
42 |
-
#: adrotate-output.php:
|
43 |
msgid ""
|
44 |
"If you have received the url you want to visit via email, you are being "
|
45 |
"tricked!"
|
@@ -47,11 +47,11 @@ msgstr ""
|
|
47 |
"Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
|
48 |
"ξεγέλασαν!"
|
49 |
|
50 |
-
#: adrotate-output.php:
|
51 |
msgid "Contact support if the issue persists:"
|
52 |
msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
|
53 |
|
54 |
-
#: adrotate-output.php:
|
55 |
msgid ""
|
56 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
57 |
"restrictions or does not exist!"
|
@@ -59,7 +59,7 @@ msgstr ""
|
|
59 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
60 |
"χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
|
61 |
|
62 |
-
#: adrotate-output.php:
|
63 |
msgid ""
|
64 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
65 |
"restrictions!"
|
@@ -67,7 +67,7 @@ msgstr ""
|
|
67 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
68 |
"χρονικών περιορισμών."
|
69 |
|
70 |
-
#: adrotate-output.php:
|
71 |
msgid ""
|
72 |
"Either there are no banners, they are disabled or none qualified for this "
|
73 |
"location!"
|
@@ -75,20 +75,20 @@ msgstr ""
|
|
75 |
"Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
|
76 |
"πληρεί τις προϋποθέσεις της τοποθεσίας!"
|
77 |
|
78 |
-
#: adrotate-output.php:
|
79 |
msgid "Error, no Ad ID set! Check your syntax!"
|
80 |
msgstr ""
|
81 |
"Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
|
82 |
|
83 |
-
#: adrotate-output.php:
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
|
86 |
|
87 |
-
#: adrotate-output.php:
|
88 |
msgid "Error, group does not exist! Check your syntax!"
|
89 |
msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
|
90 |
|
91 |
-
#: adrotate-output.php:
|
92 |
msgid ""
|
93 |
"There was an error locating the database tables for AdRotate. Please "
|
94 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -97,182 +97,182 @@ msgstr ""
|
|
97 |
"Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
|
98 |
"προσθέτων!!"
|
99 |
|
100 |
-
#: adrotate-output.php:
|
101 |
msgid "If this does not solve the issue please seek support at"
|
102 |
msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
|
103 |
|
104 |
-
#: adrotate-output.php:
|
105 |
msgid "An unknown error occured."
|
106 |
msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
msgid "active ad(s) expired."
|
110 |
msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
|
111 |
|
112 |
-
#: adrotate-output.php:
|
113 |
msgid "Take action now"
|
114 |
msgstr "Λάβετε μέτρα τώρα"
|
115 |
|
116 |
-
#: adrotate-output.php:
|
117 |
msgid "active ad(s) are about to expire."
|
118 |
msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
msgid "Check it out"
|
122 |
msgstr "Ελέγξτε το"
|
123 |
|
124 |
-
#: adrotate-output.php:
|
125 |
msgid "active ad(s) with configuration errors."
|
126 |
msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "Solve this"
|
130 |
msgstr "Λύστε το"
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid "ad(s) expired."
|
134 |
msgstr "διαφήμιση(εις) έληξε(αν)"
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid "ad(s) are about to expire."
|
138 |
msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
msgid "ad(s) with configuration errors."
|
142 |
msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
msgid "Fix this as soon as possible"
|
146 |
msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
147 |
|
148 |
-
#: adrotate-output.php:
|
149 |
#, fuzzy
|
150 |
msgid "Learn More"
|
151 |
msgstr "Μάθετε περισσότερα σχετικά"
|
152 |
|
153 |
-
#: adrotate-output.php:
|
154 |
msgid ""
|
155 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
156 |
"to the <strong>PRO</strong> version"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: adrotate-output.php:
|
160 |
msgid "Get more features to even better run your advertising campaigns."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: adrotate-output.php:
|
164 |
#, fuzzy
|
165 |
msgid "Thank you for your consideration!"
|
166 |
msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
|
167 |
|
168 |
-
#: adrotate-output.php:
|
169 |
msgid ""
|
170 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
171 |
"Pro is in this menu. Check out the"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: adrotate-output.php:
|
175 |
msgid "manuals"
|
176 |
msgstr "εγχειρίδια"
|
177 |
|
178 |
-
#: adrotate-output.php:
|
179 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
180 |
msgid "and"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
msgid "forums"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: adrotate-output.php:
|
188 |
#, fuzzy
|
189 |
msgid "Useful Links"
|
190 |
msgstr "Χρήσιμοι σύνδεσμοι"
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
msgid "Useful links to learn more about AdRotate"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: adrotate-output.php:
|
197 |
#, fuzzy
|
198 |
msgid "AdRotate Page"
|
199 |
msgstr "AdRotate Pro"
|
200 |
|
201 |
-
#: adrotate-output.php:
|
202 |
#, fuzzy
|
203 |
msgid "Getting Started With AdRotate"
|
204 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
205 |
|
206 |
-
#: adrotate-output.php:
|
207 |
#, fuzzy
|
208 |
msgid "AdRotate manuals"
|
209 |
msgstr "Πληροφορίες του AdRotate"
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Support Forum"
|
214 |
msgstr "Κατάστημα του AdRotate"
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
msgid "WordPress.org Forum"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: adrotate-output.php:
|
221 |
#, fuzzy
|
222 |
msgid "AdRotate Website."
|
223 |
msgstr "Κατάστημα του AdRotate"
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
#, fuzzy
|
227 |
msgid "AdRotate Getting Started."
|
228 |
msgstr "Ρυθμίσεις AdRotate"
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
msgid "AdRotate Knoweledge base and manuals."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: adrotate-output.php:
|
235 |
#, fuzzy
|
236 |
msgid "AdRotate Website Forum."
|
237 |
msgstr "Κατάστημα του AdRotate"
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
msgid "WordPress.org Forum."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: adrotate-output.php:
|
244 |
#, fuzzy
|
245 |
msgid "Help AdRotate Grow"
|
246 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
msgid "Brought to you by"
|
250 |
msgstr "Σας προσφέρεται από"
|
251 |
|
252 |
-
#: adrotate-output.php:
|
253 |
msgid ""
|
254 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
255 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
msgid "If you find AdRotate useful please leave your honest"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
msgid "rating"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
#, fuzzy
|
268 |
msgid "review"
|
269 |
msgstr "Αξιολογήστε και σχολιάστε"
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: adrotate-output.php:
|
276 |
msgid ""
|
277 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
278 |
"out more about what I can do for you!"
|
@@ -280,28 +280,28 @@ msgstr ""
|
|
280 |
"Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
|
281 |
"Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid "Visit the"
|
285 |
msgstr "Επισκεφθείτε το"
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid "website"
|
289 |
msgstr "ιστοσελίδα"
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "Available in AdRotate Pro"
|
293 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
#, fuzzy
|
297 |
msgid "More information..."
|
298 |
msgstr "Περισσότερες πληροφορίες"
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
msgid "This feature is available in AdRotate Pro"
|
302 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
#, fuzzy
|
306 |
msgid "Learn more"
|
307 |
msgstr "Μάθετε περισσότερα σχετικά"
|
@@ -432,71 +432,71 @@ msgstr "Γενικές Πληροφορίες"
|
|
432 |
msgid "AdRotate Pro"
|
433 |
msgstr "AdRotate Pro"
|
434 |
|
435 |
-
#: adrotate.php:
|
436 |
msgid "Manage Ads"
|
437 |
msgstr "Διαχείριση Διαφημίσεων"
|
438 |
|
439 |
-
#: adrotate.php:
|
440 |
msgid "Manage Groups"
|
441 |
msgstr "Διαχείριση Ομάδων"
|
442 |
|
443 |
-
#: adrotate.php:
|
444 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
445 |
#, fuzzy
|
446 |
msgid "Manage Schedules"
|
447 |
msgstr "Διαχείριση"
|
448 |
|
449 |
-
#: adrotate.php:
|
450 |
#, fuzzy
|
451 |
msgid "Manage Media"
|
452 |
msgstr "Media:"
|
453 |
|
454 |
-
#: adrotate.php:
|
455 |
msgid "Settings"
|
456 |
msgstr "Ρυθμίσεις"
|
457 |
|
458 |
-
#: adrotate.php:
|
459 |
msgid "AdRotate Info"
|
460 |
msgstr "Πληροφορίες του AdRotate"
|
461 |
|
462 |
-
#: adrotate.php:
|
463 |
#, fuzzy
|
464 |
msgid "AdRotate Professional"
|
465 |
msgstr "AdRotate Pro"
|
466 |
|
467 |
-
#: adrotate.php:
|
468 |
msgid "Ad Management"
|
469 |
msgstr "Διαχείριση Διαφημίσεων"
|
470 |
|
471 |
-
#: adrotate.php:
|
472 |
msgid "Ad created"
|
473 |
msgstr "Η διαφήμιση δημιουργήθηκε"
|
474 |
|
475 |
-
#: adrotate.php:
|
476 |
msgid "Ad updated"
|
477 |
msgstr "Η διαφήμιση ανανεώθηκε"
|
478 |
|
479 |
-
#: adrotate.php:
|
480 |
msgid "Ad(s) deleted"
|
481 |
msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "Ad(s) statistics reset"
|
485 |
msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "Ad(s) renewed"
|
489 |
msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid "Ad(s) deactivated"
|
493 |
msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
msgid "Ad(s) activated"
|
497 |
msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
msgid ""
|
501 |
"The ad was saved but has an issue which might prevent it from working "
|
502 |
"properly. Review the yellow marked ad."
|
@@ -504,60 +504,60 @@ msgstr ""
|
|
504 |
"Η διαφήμιση αποθηκεύτηκε αλλά υπάρχει ένα θέμα που πιθανώς δεν θα επιτρέψει "
|
505 |
"τη λειτουγία της. Εξετάστε την υπογραμμισμένη με κίτρινο διαφήμιση."
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
#, fuzzy
|
509 |
msgid "Export created"
|
510 |
msgstr "Επιλογές εξαγωγής"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "Action prohibited"
|
514 |
msgstr "Η ενέργεια απαγορεύεται"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "No data found in selected time period"
|
518 |
msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "Manage"
|
522 |
msgstr "Διαχείριση"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Add New"
|
526 |
msgstr "Προσθήκη Νέας"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Group Management"
|
530 |
msgstr "Διαχείριση Ομάδας"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
msgid "Group created"
|
534 |
msgstr "Η Ομάδα δημιουργήθηκε"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
msgid "Group updated"
|
538 |
msgstr "Η Ομάδα ανανεώθηκε"
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
msgid "Group deleted"
|
542 |
msgstr "Η Ομάδα διαγράφηκε"
|
543 |
|
544 |
-
#: adrotate.php:
|
545 |
msgid "Group including it's Ads deleted"
|
546 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
547 |
|
548 |
-
#: adrotate.php:
|
549 |
#, fuzzy
|
550 |
msgid "Schedule Management available in AdRotate Pro"
|
551 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
#, fuzzy
|
555 |
msgid ""
|
556 |
"Schedule management and multiple schedules per advert is available in "
|
557 |
"AdRotate Pro."
|
558 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
562 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
563 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -566,322 +566,304 @@ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο
|
|
566 |
msgid "More information"
|
567 |
msgstr "Περισσότερες πληροφορίες"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
571 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
572 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
573 |
msgid "Bulk Actions"
|
574 |
msgstr "Μαζικές Ενέργειες"
|
575 |
|
576 |
-
#: adrotate.php:
|
577 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
578 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
579 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
580 |
msgid "Go"
|
581 |
msgstr "Go"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
585 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
586 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
587 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
588 |
-
#: dashboard/server/adrotate-active.php:18
|
589 |
-
#: dashboard/server/adrotate-error.php:18
|
590 |
msgid "ID"
|
591 |
msgstr "Κωδ."
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
#, fuzzy
|
595 |
msgid "Start"
|
596 |
msgstr "Ώρα έναρξης (ωω: λλ):"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
#, fuzzy
|
600 |
msgid "End"
|
601 |
msgstr "Ώρα λήξης (ωω: λλ):"
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
605 |
msgid "Ads"
|
606 |
msgstr "Διαφημίσεις"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
msgid "Max Clicks"
|
610 |
msgstr "Max Clicks"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
msgid "Max Impressions"
|
614 |
msgstr "Max Impressions"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#, fuzzy
|
618 |
msgid "No schedules created yet!"
|
619 |
msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#, fuzzy
|
623 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
624 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#, fuzzy
|
628 |
msgid "Upgrade today!"
|
629 |
msgstr "Σήμερα"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
633 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
634 |
msgid "Expires soon."
|
635 |
msgstr "Λήγει σύντομα."
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
639 |
msgid "Has expired."
|
640 |
msgstr "Έχει λήξει."
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
#, fuzzy
|
644 |
msgid "Media Management available in AdRotate Pro"
|
645 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid ""
|
649 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
650 |
"especially useful if you use responsive adverts with multiple images."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
#, fuzzy
|
655 |
msgid "Media uploading and management is available in AdRotate Pro."
|
656 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
#, fuzzy
|
660 |
msgid "Upload new banner image"
|
661 |
msgstr "Εικόνα Banner:"
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
#, fuzzy
|
665 |
msgid "Accepted files are:"
|
666 |
msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "Maximum size is 512Kb."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "Important:"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid ""
|
678 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
679 |
"spaces with a - or _."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: adrotate.php:
|
683 |
msgid ""
|
684 |
"For responsive adverts make sure the filename is in the following format; "
|
685 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid ""
|
690 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
691 |
"filename instead of \".full\" for the various viewports."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: adrotate.php:
|
695 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
696 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
697 |
msgid "Example:"
|
698 |
msgstr "Παράδειγμα:"
|
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 |
#, fuzzy
|
708 |
msgid "Upload image"
|
709 |
msgstr "Εικόνα Banner:"
|
710 |
|
711 |
-
#: adrotate.php:
|
712 |
msgid "Available banner images in"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: adrotate.php:
|
716 |
msgid "Name"
|
717 |
msgstr "Όνομα"
|
718 |
|
719 |
-
#: adrotate.php:
|
720 |
#, fuzzy
|
721 |
msgid "Actions"
|
722 |
msgstr "Μαζικές Ενέργειες"
|
723 |
|
724 |
-
#: adrotate.php:
|
725 |
-
#: adrotate.php:
|
726 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
727 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
728 |
msgid "Delete"
|
729 |
msgstr "Διαγραφή"
|
730 |
|
731 |
-
#: adrotate.php:
|
732 |
msgid ""
|
733 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
#, fuzzy
|
738 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
739 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
740 |
|
741 |
-
#: adrotate.php:
|
742 |
-
#, fuzzy
|
743 |
-
msgid "AdRotate Server"
|
744 |
-
msgstr "AdRotate Pro"
|
745 |
-
|
746 |
-
#: adrotate.php:608
|
747 |
-
msgid ""
|
748 |
-
"AdRotate server is currently in development and these menus are not "
|
749 |
-
"functional yet."
|
750 |
-
msgstr ""
|
751 |
-
|
752 |
-
#: adrotate.php:612
|
753 |
-
#, fuzzy
|
754 |
-
msgid "Overview"
|
755 |
-
msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
|
756 |
-
|
757 |
-
#: adrotate.php:708
|
758 |
msgid "AdRotate Settings"
|
759 |
msgstr "Ρυθμίσεις AdRotate"
|
760 |
|
761 |
-
#: adrotate.php:
|
762 |
msgid "Settings saved"
|
763 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
|
764 |
|
765 |
-
#: adrotate.php:
|
766 |
msgid "Database optimized"
|
767 |
msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
|
768 |
|
769 |
-
#: adrotate.php:
|
770 |
msgid "Database repaired"
|
771 |
msgstr "Η βάση δεδομένων επιδιορθώθηκε"
|
772 |
|
773 |
-
#: adrotate.php:
|
774 |
msgid "Ads evaluated and statuses have been corrected where required"
|
775 |
msgstr ""
|
776 |
"Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
|
777 |
"χρειάστηκε"
|
778 |
|
779 |
-
#: adrotate.php:
|
780 |
msgid "Empty database records removed"
|
781 |
msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
|
782 |
|
783 |
-
#: adrotate.php:
|
784 |
msgid "Database can only be optimized or cleaned once every hour"
|
785 |
msgstr ""
|
786 |
"Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
|
787 |
"ώρα"
|
788 |
|
789 |
-
#: adrotate.php:
|
790 |
msgid "Access Rights"
|
791 |
msgstr "Δικαιώματα Πρόσβασης"
|
792 |
|
793 |
-
#: adrotate.php:
|
794 |
msgid "Who has access to what?"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: adrotate.php:
|
798 |
msgid "Manage/Add/Edit adverts"
|
799 |
msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
|
800 |
|
801 |
-
#: adrotate.php:
|
802 |
msgid "Role to see and add/edit ads."
|
803 |
msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
|
804 |
|
805 |
-
#: adrotate.php:
|
806 |
msgid "Delete/Reset adverts"
|
807 |
msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
|
808 |
|
809 |
-
#: adrotate.php:
|
810 |
msgid "Role to delete ads and reset stats."
|
811 |
msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
|
812 |
|
813 |
-
#: adrotate.php:
|
814 |
msgid "Manage/Add/Edit groups"
|
815 |
msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
|
816 |
|
817 |
-
#: adrotate.php:
|
818 |
msgid "Role to see and add/edit groups."
|
819 |
msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
|
820 |
|
821 |
-
#: adrotate.php:
|
822 |
msgid "Delete groups"
|
823 |
msgstr "Διαγραφή ομάδων"
|
824 |
|
825 |
-
#: adrotate.php:
|
826 |
msgid "Role to delete groups."
|
827 |
msgstr "Ρόλος για τη διαγραφή ομάδων."
|
828 |
|
829 |
-
#: adrotate.php:
|
830 |
-
#: adrotate.php:
|
831 |
msgid "Update Options"
|
832 |
msgstr "Επιλογές Ανανέωσης"
|
833 |
|
834 |
-
#: adrotate.php:
|
835 |
msgid "Statistics"
|
836 |
msgstr "Στατιστικά"
|
837 |
|
838 |
-
#: adrotate.php:
|
839 |
#, fuzzy
|
840 |
msgid "Enable stats"
|
841 |
msgstr "Στατιστικά"
|
842 |
|
843 |
-
#: adrotate.php:
|
844 |
msgid "Track clicks and impressions."
|
845 |
msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
|
846 |
|
847 |
-
#: adrotate.php:
|
848 |
#, fuzzy
|
849 |
msgid "Disabling this also disables click and impression limits on schedules."
|
850 |
msgstr ""
|
851 |
"Η απενεργοποίηση του χαρακτηριστικού απενεργοποιεί επίσης τα όρια των κλικ "
|
852 |
"και εμφανίσεων στα προγράμματα και απενεργοποιεί τα χρονοδιαγράμματα."
|
853 |
|
854 |
-
#: adrotate.php:
|
855 |
msgid "Impressions timer"
|
856 |
msgstr "Χρονομετρητής εμφανίσεων"
|
857 |
|
858 |
-
#: adrotate.php:
|
859 |
msgid "Seconds."
|
860 |
msgstr "Δευτερόλεπτα."
|
861 |
|
862 |
-
#: adrotate.php:
|
863 |
#, fuzzy
|
864 |
msgid "Default: 60."
|
865 |
msgstr "Προεπιλογή"
|
866 |
|
867 |
-
#: adrotate.php:
|
868 |
#, fuzzy
|
869 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
870 |
msgstr ""
|
871 |
"Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
|
872 |
"ώρα)."
|
873 |
|
874 |
-
#: adrotate.php:
|
875 |
#, fuzzy
|
876 |
msgid "Clicks timer"
|
877 |
msgstr "Χρονομετρητής εμφανίσεων"
|
878 |
|
879 |
-
#: adrotate.php:
|
880 |
#, fuzzy
|
881 |
msgid "Default: 86400."
|
882 |
msgstr "Προεπιλογή"
|
883 |
|
884 |
-
#: adrotate.php:
|
885 |
#, fuzzy
|
886 |
msgid ""
|
887 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
@@ -889,16 +871,16 @@ msgstr ""
|
|
889 |
"Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
|
890 |
"ώρα)."
|
891 |
|
892 |
-
#: adrotate.php:
|
893 |
#, fuzzy
|
894 |
msgid "Bot filter"
|
895 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
896 |
|
897 |
-
#: adrotate.php:
|
898 |
msgid "User-Agent Filter"
|
899 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
900 |
|
901 |
-
#: adrotate.php:
|
902 |
msgid ""
|
903 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
904 |
"prevent impressions and clicks counted on them."
|
@@ -907,7 +889,7 @@ msgstr ""
|
|
907 |
"μηχανές περιήγησης για να αποτρέπει την καταγραφή εμφανίσεων και κλικ από "
|
908 |
"αυτές."
|
909 |
|
910 |
-
#: adrotate.php:
|
911 |
msgid ""
|
912 |
"Keep in mind that this might give false positives. The word 'google' also "
|
913 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
@@ -915,11 +897,11 @@ msgstr ""
|
|
915 |
"Να θυμάστε ότι αυτό μπορεί να δώσει λανθασμένα αποτελέσματα. Η λέξη 'google' "
|
916 |
"περιέχεται στην λέξη 'googlebot', αλλά όχι το αντίθετο. Προσοχή!"
|
917 |
|
918 |
-
#: adrotate.php:
|
919 |
msgid "Keep your list up-to-date"
|
920 |
msgstr "Διατηρήστε τον κατάλογο ενημερωμένο"
|
921 |
|
922 |
-
#: adrotate.php:
|
923 |
msgid ""
|
924 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
925 |
"other characters are stripped out."
|
@@ -927,7 +909,7 @@ msgstr ""
|
|
927 |
"Χρησιμοποιήστε λέξεις μόνο με αλφαριθμητικούς χαρακτήρες. Τα [ - _ ] είναι "
|
928 |
"επίσης επιτρεπτά. Όλοι οι άλλοι χαρακτήρες αφαιρούνται."
|
929 |
|
930 |
-
#: adrotate.php:
|
931 |
msgid ""
|
932 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
933 |
"well."
|
@@ -935,23 +917,23 @@ msgstr ""
|
|
935 |
"Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
|
936 |
"απορίπτονται επίσης."
|
937 |
|
938 |
-
#: adrotate.php:
|
939 |
msgid "Learn more about"
|
940 |
msgstr "Μάθετε περισσότερα σχετικά"
|
941 |
|
942 |
-
#: adrotate.php:
|
943 |
msgid "user-agents"
|
944 |
msgstr "πρόγραμμα περιήγησης"
|
945 |
|
946 |
-
#: adrotate.php:
|
947 |
msgid "Miscellaneous"
|
948 |
msgstr "Διάφορα"
|
949 |
|
950 |
-
#: adrotate.php:
|
951 |
msgid "Widget alignment"
|
952 |
msgstr "Ευθυγράμμιση μονάδας"
|
953 |
|
954 |
-
#: adrotate.php:
|
955 |
msgid ""
|
956 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
957 |
"not always help!)"
|
@@ -959,11 +941,11 @@ msgstr ""
|
|
959 |
"Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
|
960 |
"πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
|
961 |
|
962 |
-
#: adrotate.php:
|
963 |
msgid "Widget padding"
|
964 |
msgstr "Κενά περιθώρια μονάδων"
|
965 |
|
966 |
-
#: adrotate.php:
|
967 |
msgid ""
|
968 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
969 |
"not always work!)"
|
@@ -971,11 +953,11 @@ msgstr ""
|
|
971 |
"Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
|
972 |
"διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
|
973 |
|
974 |
-
#: adrotate.php:
|
975 |
msgid "NOTICE:"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: adrotate.php:
|
979 |
msgid ""
|
980 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
981 |
"You need to add the following line to your wp-config.php near the bottom or "
|
@@ -983,34 +965,34 @@ msgid ""
|
|
983 |
"needs to be enabled in W3 Total Cache as well too."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: adrotate.php:
|
987 |
msgid "W3 Total Caching"
|
988 |
msgstr "W3 Total Caching"
|
989 |
|
990 |
-
#: adrotate.php:
|
991 |
msgid "Check this box if you use W3 Total Caching on your site."
|
992 |
msgstr ""
|
993 |
"Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
|
994 |
"σας."
|
995 |
|
996 |
-
#: adrotate.php:
|
997 |
msgid ""
|
998 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
999 |
"this function will not work. WP Super Cache has discontinued support for "
|
1000 |
"dynamic content."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: adrotate.php:
|
1004 |
msgid "WP Super Cache"
|
1005 |
msgstr "WP Super Cache"
|
1006 |
|
1007 |
-
#: adrotate.php:
|
1008 |
msgid "Check this box if you use WP Super Cache on your site."
|
1009 |
msgstr ""
|
1010 |
"Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην ιστοσελίδα "
|
1011 |
"σας."
|
1012 |
|
1013 |
-
#: adrotate.php:
|
1014 |
msgid ""
|
1015 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1016 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -1019,7 +1001,7 @@ msgstr ""
|
|
1019 |
"πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
|
1020 |
"πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
|
1021 |
|
1022 |
-
#: adrotate.php:
|
1023 |
msgid ""
|
1024 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1025 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -1028,16 +1010,16 @@ msgstr ""
|
|
1028 |
"μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
|
1029 |
"μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
|
1030 |
|
1031 |
-
#: adrotate.php:
|
1032 |
-
msgid "Javascript
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: adrotate.php:
|
1036 |
#, fuzzy
|
1037 |
msgid "Load jQuery"
|
1038 |
msgstr "Να περιληφθεί η jQuery"
|
1039 |
|
1040 |
-
#: adrotate.php:
|
1041 |
#, fuzzy
|
1042 |
msgid ""
|
1043 |
"jQuery is required for all Javascript features below. Enable this if your "
|
@@ -1046,21 +1028,21 @@ msgstr ""
|
|
1046 |
"Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
|
1047 |
"επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
|
1048 |
|
1049 |
-
#: adrotate.php:
|
1050 |
msgid "Load in footer?"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: adrotate.php:
|
1054 |
msgid ""
|
1055 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1056 |
"needs to call wp_footer() for this to work."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: adrotate.php:
|
1060 |
msgid "Maintenance"
|
1061 |
msgstr "Συντήρηση"
|
1062 |
|
1063 |
-
#: adrotate.php:
|
1064 |
#, fuzzy
|
1065 |
msgid ""
|
1066 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
@@ -1076,19 +1058,19 @@ msgstr ""
|
|
1076 |
"χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
|
1077 |
"ανταποκρίνεται καλά."
|
1078 |
|
1079 |
-
#: adrotate.php:
|
1080 |
msgid "Optimize Database"
|
1081 |
msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
|
1082 |
|
1083 |
-
#: adrotate.php:
|
1084 |
msgid "You are about to optimize the AdRotate database."
|
1085 |
msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
|
1086 |
|
1087 |
-
#: adrotate.php:
|
1088 |
msgid "Did you make a backup of your database?"
|
1089 |
msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
|
1090 |
|
1091 |
-
#: adrotate.php:
|
1092 |
msgid ""
|
1093 |
"This may take a moment and may cause your website to respond slow "
|
1094 |
"temporarily!"
|
@@ -1096,16 +1078,16 @@ msgstr ""
|
|
1096 |
"Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
|
1097 |
"σας να είναι προσωρινά αργή!"
|
1098 |
|
1099 |
-
#: adrotate.php:
|
1100 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1101 |
msgid "OK to continue, CANCEL to stop."
|
1102 |
msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
|
1103 |
|
1104 |
-
#: adrotate.php:
|
1105 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1106 |
msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
|
1107 |
|
1108 |
-
#: adrotate.php:
|
1109 |
msgid ""
|
1110 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1111 |
"made. This can vary from nothing to hundreds of KiB of data."
|
@@ -1114,11 +1096,11 @@ msgstr ""
|
|
1114 |
"τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
|
1115 |
"μέχρι εκατοντάδες kilobytes δεδομένων."
|
1116 |
|
1117 |
-
#: adrotate.php:
|
1118 |
msgid "Clean-up Database"
|
1119 |
msgstr "Εκκαθάριση Βάσης Δεδομένων"
|
1120 |
|
1121 |
-
#: adrotate.php:
|
1122 |
msgid ""
|
1123 |
"You are about to clean up your database. This may delete expired schedules "
|
1124 |
"and older statistics."
|
@@ -1126,19 +1108,19 @@ msgstr ""
|
|
1126 |
"Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
|
1127 |
"ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
|
1128 |
|
1129 |
-
#: adrotate.php:
|
1130 |
msgid "Are you sure you want to continue?"
|
1131 |
msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
|
1132 |
|
1133 |
-
#: adrotate.php:
|
1134 |
msgid "This might take a while and may slow down your site during this action!"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: adrotate.php:
|
1138 |
msgid "Delete stats older than 356 days (Optional)."
|
1139 |
msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
|
1140 |
|
1141 |
-
#: adrotate.php:
|
1142 |
#, fuzzy
|
1143 |
msgid ""
|
1144 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
@@ -1148,7 +1130,7 @@ msgstr ""
|
|
1148 |
"διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
|
1149 |
"λανθασμένες."
|
1150 |
|
1151 |
-
#: adrotate.php:
|
1152 |
msgid ""
|
1153 |
"If you made an ad or group that does not save when you make it use this "
|
1154 |
"button to delete those empty records."
|
@@ -1156,7 +1138,7 @@ msgstr ""
|
|
1156 |
"Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
|
1157 |
"αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
|
1158 |
|
1159 |
-
#: adrotate.php:
|
1160 |
msgid ""
|
1161 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1162 |
"your site."
|
@@ -1164,27 +1146,27 @@ msgstr ""
|
|
1164 |
"Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
|
1165 |
"ταχύτητα της ιστοσελίδας σας."
|
1166 |
|
1167 |
-
#: adrotate.php:
|
1168 |
#, fuzzy
|
1169 |
msgid "Re-evaluate Ads"
|
1170 |
msgstr "Διαφημίσεις"
|
1171 |
|
1172 |
-
#: adrotate.php:
|
1173 |
msgid "Re-evaluate all ads"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: adrotate.php:
|
1177 |
#, fuzzy
|
1178 |
msgid "You are about to check all ads for errors."
|
1179 |
msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
|
1180 |
|
1181 |
-
#: adrotate.php:
|
1182 |
msgid ""
|
1183 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1184 |
"in. Normally you should not need this feature."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: adrotate.php:
|
1188 |
msgid ""
|
1189 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1190 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
@@ -1201,64 +1183,64 @@ msgstr ""
|
|
1201 |
"ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
|
1202 |
"καμμία περίπτωση. "
|
1203 |
|
1204 |
-
#: adrotate.php:
|
1205 |
msgid "Troubleshooting"
|
1206 |
msgstr "Αντιμετώπιση προβλημάτων"
|
1207 |
|
1208 |
-
#: adrotate.php:
|
1209 |
msgid "Current version:"
|
1210 |
msgstr "Τρέχουσα έκδοση:"
|
1211 |
|
1212 |
-
#: adrotate.php:
|
1213 |
msgid "Previous version:"
|
1214 |
msgstr "Προηγούμενη έκδοση:"
|
1215 |
|
1216 |
-
#: adrotate.php:
|
1217 |
msgid "Current database version:"
|
1218 |
msgstr "Τρέχουσα έκδοση βάσης:"
|
1219 |
|
1220 |
-
#: adrotate.php:
|
1221 |
msgid "Previous database version:"
|
1222 |
msgstr "Προηγούμενη έκδοση βάσης:"
|
1223 |
|
1224 |
-
#: adrotate.php:
|
1225 |
#, fuzzy
|
1226 |
msgid "Ad evaluation next run:"
|
1227 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
1228 |
|
1229 |
-
#: adrotate.php:
|
1230 |
msgid "Not scheduled!"
|
1231 |
msgstr "Δεν έχει προγραμματιστεί!"
|
1232 |
|
1233 |
-
#: adrotate.php:
|
1234 |
msgid "Clean Trackerdata next run:"
|
1235 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
1236 |
|
1237 |
-
#: adrotate.php:
|
1238 |
msgid "Current status of adverts"
|
1239 |
msgstr "Τρέχουσα κατάσταση διαφημίσεων"
|
1240 |
|
1241 |
-
#: adrotate.php:
|
1242 |
msgid "Normal"
|
1243 |
msgstr "Φυσιολογική"
|
1244 |
|
1245 |
-
#: adrotate.php:
|
1246 |
msgid "Error"
|
1247 |
msgstr "Σφάλμα"
|
1248 |
|
1249 |
-
#: adrotate.php:
|
1250 |
msgid "Expired"
|
1251 |
msgstr "Έληξε"
|
1252 |
|
1253 |
-
#: adrotate.php:
|
1254 |
msgid "Expires Soon"
|
1255 |
msgstr "Λήγει Σύντομα"
|
1256 |
|
1257 |
-
#: adrotate.php:
|
1258 |
msgid "Unknown Status"
|
1259 |
msgstr "Άγνωστη Κατάσταση"
|
1260 |
|
1261 |
-
#: adrotate.php:
|
1262 |
msgid ""
|
1263 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1264 |
"developers to review saved settings or how ads are selected. These can be "
|
@@ -1272,46 +1254,46 @@ msgstr ""
|
|
1272 |
"σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
|
1273 |
"ΕΠΙΛΕΓΜΕΝΕΣ!! "
|
1274 |
|
1275 |
-
#: adrotate.php:
|
1276 |
msgid "Developer Debug"
|
1277 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
1278 |
|
1279 |
-
#: adrotate.php:
|
1280 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1281 |
msgstr ""
|
1282 |
"Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
|
1283 |
"έξοδο στην ιστοσελίδα δίνουν."
|
1284 |
|
1285 |
-
#: adrotate.php:
|
1286 |
msgid "Show all settings, dashboard routines and related values."
|
1287 |
msgstr ""
|
1288 |
"Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
|
1289 |
"τιμών."
|
1290 |
|
1291 |
-
#: adrotate.php:
|
1292 |
msgid "Show array of all userroles and capabilities."
|
1293 |
msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
|
1294 |
|
1295 |
-
#: adrotate.php:
|
1296 |
msgid "Review saved advertisers! Visible to advertisers."
|
1297 |
msgstr ""
|
1298 |
"Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
|
1299 |
|
1300 |
-
#: adrotate.php:
|
1301 |
#, fuzzy
|
1302 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1303 |
msgstr ""
|
1304 |
"Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
|
1305 |
"Ορατό μόνο σε εκδότες."
|
1306 |
|
1307 |
-
#: adrotate.php:
|
1308 |
#, fuzzy
|
1309 |
msgid ""
|
1310 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1311 |
"clicktracking."
|
1312 |
msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
|
1313 |
|
1314 |
-
#: adrotate.php:
|
1315 |
msgid "Temporarily disable encryption on the redirect url."
|
1316 |
msgstr ""
|
1317 |
"Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
|
@@ -1360,103 +1342,103 @@ msgstr "Χρησιμοποιείτε το"
|
|
1360 |
msgid "AdRotate News and Developer Blog"
|
1361 |
msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
|
1362 |
|
1363 |
-
#: dashboard/adrotate-info.php:
|
1364 |
#, fuzzy
|
1365 |
msgid "Buy AdRotate Professional"
|
1366 |
msgstr "AdRotate Pro"
|
1367 |
|
1368 |
-
#: dashboard/adrotate-info.php:
|
1369 |
msgid "Singe License"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: dashboard/adrotate-info.php:
|
1373 |
msgid "For one WordPress installation."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: dashboard/adrotate-info.php:
|
1377 |
-
#: dashboard/adrotate-info.php:
|
1378 |
-
#: dashboard/adrotate-info.php:
|
1379 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1380 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1381 |
#, fuzzy
|
1382 |
msgid "Buy now"
|
1383 |
msgstr "Λάβετε μέτρα τώρα"
|
1384 |
|
1385 |
-
#: dashboard/adrotate-info.php:
|
1386 |
msgid "Duo License"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: dashboard/adrotate-info.php:
|
1390 |
msgid "For two WordPress installations."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: dashboard/adrotate-info.php:
|
1394 |
msgid "Multi License"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: dashboard/adrotate-info.php:
|
1398 |
msgid " For up to five WordPress installations."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: dashboard/adrotate-info.php:
|
1402 |
#, fuzzy
|
1403 |
msgid "Developer License"
|
1404 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
1405 |
|
1406 |
-
#: dashboard/adrotate-info.php:
|
1407 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: dashboard/adrotate-info.php:
|
1411 |
msgid "Network License"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: dashboard/adrotate-info.php:
|
1415 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: dashboard/adrotate-info.php:
|
1419 |
msgid "Compare licenses"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: dashboard/adrotate-info.php:
|
1423 |
msgid "Not sure which license is for you? Compare them..."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: dashboard/adrotate-info.php:
|
1427 |
msgid "All Licenses"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: dashboard/adrotate-info.php:
|
1431 |
#, fuzzy
|
1432 |
msgid "Get more features with AdRotate Pro"
|
1433 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
1434 |
|
1435 |
-
#: dashboard/adrotate-info.php:
|
1436 |
msgid ""
|
1437 |
"Benefit from extra features to reinforce your income with advertising "
|
1438 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1439 |
"Pro offers on top of the trusted features included in the free version."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: dashboard/adrotate-info.php:
|
1443 |
#, fuzzy
|
1444 |
msgid "or go to the"
|
1445 |
msgstr "Go"
|
1446 |
|
1447 |
-
#: dashboard/adrotate-info.php:
|
1448 |
msgid "Support AdRotate"
|
1449 |
msgstr "Υποστηρίξτε το AdRotate"
|
1450 |
|
1451 |
-
#: dashboard/adrotate-info.php:
|
1452 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1453 |
msgstr "Το δώρο σας θα εξασφαλίσει την συνέχεια της ανάπτυξης του AdRotate!"
|
1454 |
|
1455 |
-
#: dashboard/adrotate-info.php:
|
1456 |
msgid "AdRotate is brought to you by"
|
1457 |
msgstr "Το AdRotate έρχεται από την "
|
1458 |
|
1459 |
-
#: dashboard/adrotate-info.php:
|
1460 |
msgid ""
|
1461 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1462 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
@@ -1467,11 +1449,11 @@ msgstr ""
|
|
1467 |
"μετακινήσετε την ιστοσελίδα σας, επισκεφθείτε τον ιστοτόπο μας για "
|
1468 |
"πληροφορίες!"
|
1469 |
|
1470 |
-
#: dashboard/adrotate-info.php:
|
1471 |
msgid "Find out more"
|
1472 |
msgstr "Μάθετε περισσότερα"
|
1473 |
|
1474 |
-
#: dashboard/adrotate-info.php:
|
1475 |
msgid "Follow"
|
1476 |
msgstr ""
|
1477 |
|
@@ -2015,8 +1997,6 @@ msgstr "Από / Έως"
|
|
2015 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2016 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2017 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2018 |
-
#: dashboard/server/adrotate-active.php:25
|
2019 |
-
#: dashboard/server/adrotate-error.php:26
|
2020 |
msgid "Clicks"
|
2021 |
msgstr "Clicks"
|
2022 |
|
@@ -2117,7 +2097,6 @@ msgstr "Επαναφορά Στατιστικών"
|
|
2117 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2118 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2119 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
2120 |
-
#: dashboard/server/adrotate-active.php:20
|
2121 |
#, fuzzy
|
2122 |
msgid "Start / End"
|
2123 |
msgstr ""
|
@@ -2129,8 +2108,6 @@ msgstr ""
|
|
2129 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2130 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2131 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2132 |
-
#: dashboard/server/adrotate-active.php:21
|
2133 |
-
#: dashboard/server/adrotate-error.php:22
|
2134 |
msgid "Title"
|
2135 |
msgstr "Τίτλος"
|
2136 |
|
@@ -2138,8 +2115,6 @@ msgstr "Τίτλος"
|
|
2138 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2139 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2140 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2141 |
-
#: dashboard/server/adrotate-active.php:27
|
2142 |
-
#: dashboard/server/adrotate-error.php:28
|
2143 |
msgid "CTR"
|
2144 |
msgstr "CTR"
|
2145 |
|
@@ -2212,14 +2187,10 @@ msgstr "Επιλογές εξαγωγής"
|
|
2212 |
|
2213 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2214 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2215 |
-
#: dashboard/server/adrotate-active.php:22
|
2216 |
-
#: dashboard/server/adrotate-error.php:23
|
2217 |
msgid "Weight"
|
2218 |
msgstr "Βαρύτητα"
|
2219 |
|
2220 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2221 |
-
#: dashboard/server/adrotate-active.php:23
|
2222 |
-
#: dashboard/server/adrotate-error.php:24
|
2223 |
msgid "Shown"
|
2224 |
msgstr "Εμφανίζονται"
|
2225 |
|
@@ -2227,10 +2198,6 @@ msgstr "Εμφανίζονται"
|
|
2227 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2228 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2229 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2230 |
-
#: dashboard/server/adrotate-active.php:24
|
2231 |
-
#: dashboard/server/adrotate-active.php:26
|
2232 |
-
#: dashboard/server/adrotate-error.php:25
|
2233 |
-
#: dashboard/server/adrotate-error.php:27
|
2234 |
msgid "Today"
|
2235 |
msgstr "Σήμερα"
|
2236 |
|
@@ -2624,121 +2591,47 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
|
|
2624 |
msgid "Statistics for group"
|
2625 |
msgstr "Στατιστικά για την ομάδα"
|
2626 |
|
2627 |
-
#: dashboard/server/adrotate-active.php:12
|
2628 |
-
msgid "Adverts received from server"
|
2629 |
-
msgstr ""
|
2630 |
-
|
2631 |
-
#: dashboard/server/adrotate-active.php:13
|
2632 |
-
msgid ""
|
2633 |
-
"These adverts are circulating in the pool of active adverts, served from "
|
2634 |
-
"AdRotate server."
|
2635 |
-
msgstr ""
|
2636 |
-
|
2637 |
-
#: dashboard/server/adrotate-active.php:19
|
2638 |
#, fuzzy
|
2639 |
-
msgid "
|
2640 |
-
msgstr
|
2641 |
|
2642 |
-
#: dashboard/server/adrotate-active.php:74
|
2643 |
-
#: dashboard/server/adrotate-error.php:76
|
2644 |
#, fuzzy
|
2645 |
-
msgid "
|
2646 |
-
msgstr
|
2647 |
|
2648 |
-
|
2649 |
-
msgid "
|
2650 |
-
msgstr
|
2651 |
|
2652 |
-
|
2653 |
-
msgid "
|
2654 |
-
msgstr
|
2655 |
|
2656 |
-
#: dashboard/server/adrotate-error.php:19
|
2657 |
#, fuzzy
|
2658 |
-
msgid "Updated"
|
2659 |
-
msgstr "Η διαφήμιση ανανεώθηκε"
|
2660 |
|
2661 |
-
|
2662 |
-
|
2663 |
-
msgstr "Προβολή από"
|
2664 |
|
2665 |
-
|
2666 |
-
|
2667 |
-
msgstr "Προβολή μέχρι"
|
2668 |
|
2669 |
-
#: dashboard/server/adrotate-settings.php:15
|
2670 |
#, fuzzy
|
2671 |
-
msgid "AdRotate Server Settings"
|
2672 |
-
msgstr "Ρυθμίσεις AdRotate"
|
2673 |
-
|
2674 |
-
#: dashboard/server/adrotate-settings.php:21
|
2675 |
-
msgid ""
|
2676 |
-
"Link this website to an AdRotate server so your adverts and stats are "
|
2677 |
-
"synchronised regularly."
|
2678 |
-
msgstr ""
|
2679 |
|
2680 |
-
#: dashboard/server/adrotate-settings.php:24
|
2681 |
#, fuzzy
|
2682 |
-
msgid "Status"
|
2683 |
-
msgstr "Άγνωστη Κατάσταση"
|
2684 |
-
|
2685 |
-
#: dashboard/server/adrotate-settings.php:27
|
2686 |
-
msgid "Linked - Adverts can be synced."
|
2687 |
-
msgstr ""
|
2688 |
|
2689 |
-
#: dashboard/server/adrotate-settings.php:27
|
2690 |
#, fuzzy
|
2691 |
-
msgid "Not linked - No adverts will be synced."
|
2692 |
-
msgstr "Διαφημίσεις"
|
2693 |
-
|
2694 |
-
#: dashboard/server/adrotate-settings.php:40
|
2695 |
-
msgid "Server Key"
|
2696 |
-
msgstr ""
|
2697 |
-
|
2698 |
-
#: dashboard/server/adrotate-settings.php:41
|
2699 |
-
msgid ""
|
2700 |
-
"You can get your server key from your AdRotate Server installation or the "
|
2701 |
-
"AdRollr website."
|
2702 |
-
msgstr ""
|
2703 |
-
|
2704 |
-
#: dashboard/server/adrotate-settings.php:41
|
2705 |
-
msgid ""
|
2706 |
-
"You should not share your key with anyone you do not trust. Treat this key "
|
2707 |
-
"as a password!"
|
2708 |
-
msgstr ""
|
2709 |
-
|
2710 |
-
#: dashboard/server/adrotate-settings.php:44
|
2711 |
-
msgid "Make this site a puppet"
|
2712 |
-
msgstr ""
|
2713 |
-
|
2714 |
-
#: dashboard/server/adrotate-settings.php:46
|
2715 |
-
msgid "Have AdRotate use AdRotate Server adverts exclusively."
|
2716 |
-
msgstr ""
|
2717 |
-
|
2718 |
-
#: dashboard/server/adrotate-settings.php:46
|
2719 |
-
msgid ""
|
2720 |
-
"Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this "
|
2721 |
-
"installation of AdRotate a puppet for your AdRotate Server."
|
2722 |
-
msgstr ""
|
2723 |
|
2724 |
-
#: dashboard/server/adrotate-settings.php:50
|
2725 |
-
msgid "Hide Server Details"
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
#: dashboard/server/adrotate-settings.php:52
|
2729 |
-
msgid ""
|
2730 |
-
"If you have installed AdRotate Pro for a client or in a Multisite network "
|
2731 |
-
"and want to hide the server details from your users or client."
|
2732 |
-
msgstr ""
|
2733 |
-
|
2734 |
-
#: dashboard/server/adrotate-settings.php:60
|
2735 |
-
msgid "Link to server"
|
2736 |
-
msgstr ""
|
2737 |
-
|
2738 |
-
#: dashboard/server/adrotate-settings.php:62
|
2739 |
#, fuzzy
|
2740 |
-
msgid "Unlink from server"
|
2741 |
-
msgstr "Από / Έως"
|
2742 |
|
2743 |
#, fuzzy
|
2744 |
#~ msgid "AdRotate Website"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-15 02:51+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-02-15 02:51+0100\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 1.7.3\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: adrotate-functions.php:811
|
22 |
msgid "No files found"
|
23 |
msgstr "Δεν βρέθηκαν αρχεία"
|
24 |
|
25 |
+
#: adrotate-functions.php:814
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
|
28 |
|
29 |
+
#: adrotate-output.php:759
|
30 |
msgid "Oh no! Something went wrong!"
|
31 |
msgstr "Παρουσιάστηκε κάποιο σφάλμα."
|
32 |
|
33 |
+
#: adrotate-output.php:760
|
34 |
msgid ""
|
35 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
36 |
"Verify if the url used is valid or log in via your browser."
|
39 |
"που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
|
40 |
"browser σας."
|
41 |
|
42 |
+
#: adrotate-output.php:761
|
43 |
msgid ""
|
44 |
"If you have received the url you want to visit via email, you are being "
|
45 |
"tricked!"
|
47 |
"Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
|
48 |
"ξεγέλασαν!"
|
49 |
|
50 |
+
#: adrotate-output.php:762
|
51 |
msgid "Contact support if the issue persists:"
|
52 |
msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
|
53 |
|
54 |
+
#: adrotate-output.php:780
|
55 |
msgid ""
|
56 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
57 |
"restrictions or does not exist!"
|
59 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
60 |
"χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
|
61 |
|
62 |
+
#: adrotate-output.php:782
|
63 |
msgid ""
|
64 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
65 |
"restrictions!"
|
67 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
68 |
"χρονικών περιορισμών."
|
69 |
|
70 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
71 |
msgid ""
|
72 |
"Either there are no banners, they are disabled or none qualified for this "
|
73 |
"location!"
|
75 |
"Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
|
76 |
"πληρεί τις προϋποθέσεις της τοποθεσίας!"
|
77 |
|
78 |
+
#: adrotate-output.php:797
|
79 |
msgid "Error, no Ad ID set! Check your syntax!"
|
80 |
msgstr ""
|
81 |
"Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
|
82 |
|
83 |
+
#: adrotate-output.php:803
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
|
86 |
|
87 |
+
#: adrotate-output.php:808
|
88 |
msgid "Error, group does not exist! Check your syntax!"
|
89 |
msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
|
90 |
|
91 |
+
#: adrotate-output.php:814
|
92 |
msgid ""
|
93 |
"There was an error locating the database tables for AdRotate. Please "
|
94 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
97 |
"Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
|
98 |
"προσθέτων!!"
|
99 |
|
100 |
+
#: adrotate-output.php:814
|
101 |
msgid "If this does not solve the issue please seek support at"
|
102 |
msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
|
103 |
|
104 |
+
#: adrotate-output.php:820
|
105 |
msgid "An unknown error occured."
|
106 |
msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
|
107 |
|
108 |
+
#: adrotate-output.php:846
|
109 |
msgid "active ad(s) expired."
|
110 |
msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
|
111 |
|
112 |
+
#: adrotate-output.php:846
|
113 |
msgid "Take action now"
|
114 |
msgstr "Λάβετε μέτρα τώρα"
|
115 |
|
116 |
+
#: adrotate-output.php:848
|
117 |
msgid "active ad(s) are about to expire."
|
118 |
msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
|
119 |
|
120 |
+
#: adrotate-output.php:848
|
121 |
msgid "Check it out"
|
122 |
msgstr "Ελέγξτε το"
|
123 |
|
124 |
+
#: adrotate-output.php:850
|
125 |
msgid "active ad(s) with configuration errors."
|
126 |
msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
|
127 |
|
128 |
+
#: adrotate-output.php:850
|
129 |
msgid "Solve this"
|
130 |
msgstr "Λύστε το"
|
131 |
|
132 |
+
#: adrotate-output.php:852
|
133 |
msgid "ad(s) expired."
|
134 |
msgstr "διαφήμιση(εις) έληξε(αν)"
|
135 |
|
136 |
+
#: adrotate-output.php:852
|
137 |
msgid "ad(s) are about to expire."
|
138 |
msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
139 |
|
140 |
+
#: adrotate-output.php:852
|
141 |
msgid "ad(s) with configuration errors."
|
142 |
msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
143 |
|
144 |
+
#: adrotate-output.php:852
|
145 |
msgid "Fix this as soon as possible"
|
146 |
msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
147 |
|
148 |
+
#: adrotate-output.php:864
|
149 |
#, fuzzy
|
150 |
msgid "Learn More"
|
151 |
msgstr "Μάθετε περισσότερα σχετικά"
|
152 |
|
153 |
+
#: adrotate-output.php:866
|
154 |
msgid ""
|
155 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
156 |
"to the <strong>PRO</strong> version"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:867
|
160 |
msgid "Get more features to even better run your advertising campaigns."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: adrotate-output.php:867
|
164 |
#, fuzzy
|
165 |
msgid "Thank you for your consideration!"
|
166 |
msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
|
167 |
|
168 |
+
#: adrotate-output.php:889
|
169 |
msgid ""
|
170 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
171 |
"Pro is in this menu. Check out the"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: adrotate-output.php:889
|
175 |
msgid "manuals"
|
176 |
msgstr "εγχειρίδια"
|
177 |
|
178 |
+
#: adrotate-output.php:889 adrotate-output.php:985
|
179 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
180 |
msgid "and"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:889
|
184 |
msgid "forums"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:925
|
188 |
#, fuzzy
|
189 |
msgid "Useful Links"
|
190 |
msgstr "Χρήσιμοι σύνδεσμοι"
|
191 |
|
192 |
+
#: adrotate-output.php:926 adrotate-output.php:954
|
193 |
msgid "Useful links to learn more about AdRotate"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:928
|
197 |
#, fuzzy
|
198 |
msgid "AdRotate Page"
|
199 |
msgstr "AdRotate Pro"
|
200 |
|
201 |
+
#: adrotate-output.php:929
|
202 |
#, fuzzy
|
203 |
msgid "Getting Started With AdRotate"
|
204 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
205 |
|
206 |
+
#: adrotate-output.php:930
|
207 |
#, fuzzy
|
208 |
msgid "AdRotate manuals"
|
209 |
msgstr "Πληροφορίες του AdRotate"
|
210 |
|
211 |
+
#: adrotate-output.php:931
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Support Forum"
|
214 |
msgstr "Κατάστημα του AdRotate"
|
215 |
|
216 |
+
#: adrotate-output.php:932
|
217 |
msgid "WordPress.org Forum"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: adrotate-output.php:956
|
221 |
#, fuzzy
|
222 |
msgid "AdRotate Website."
|
223 |
msgstr "Κατάστημα του AdRotate"
|
224 |
|
225 |
+
#: adrotate-output.php:957
|
226 |
#, fuzzy
|
227 |
msgid "AdRotate Getting Started."
|
228 |
msgstr "Ρυθμίσεις AdRotate"
|
229 |
|
230 |
+
#: adrotate-output.php:958
|
231 |
msgid "AdRotate Knoweledge base and manuals."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: adrotate-output.php:959
|
235 |
#, fuzzy
|
236 |
msgid "AdRotate Website Forum."
|
237 |
msgstr "Κατάστημα του AdRotate"
|
238 |
|
239 |
+
#: adrotate-output.php:960
|
240 |
msgid "WordPress.org Forum."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: adrotate-output.php:977
|
244 |
#, fuzzy
|
245 |
msgid "Help AdRotate Grow"
|
246 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
247 |
|
248 |
+
#: adrotate-output.php:978
|
249 |
msgid "Brought to you by"
|
250 |
msgstr "Σας προσφέρεται από"
|
251 |
|
252 |
+
#: adrotate-output.php:985
|
253 |
msgid ""
|
254 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
255 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: adrotate-output.php:985
|
259 |
msgid "If you find AdRotate useful please leave your honest"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: adrotate-output.php:985
|
263 |
msgid "rating"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: adrotate-output.php:985
|
267 |
#, fuzzy
|
268 |
msgid "review"
|
269 |
msgstr "Αξιολογήστε και σχολιάστε"
|
270 |
|
271 |
+
#: adrotate-output.php:985
|
272 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: adrotate-output.php:988
|
276 |
msgid ""
|
277 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
278 |
"out more about what I can do for you!"
|
280 |
"Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
|
281 |
"Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
|
282 |
|
283 |
+
#: adrotate-output.php:988
|
284 |
msgid "Visit the"
|
285 |
msgstr "Επισκεφθείτε το"
|
286 |
|
287 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
288 |
msgid "website"
|
289 |
msgstr "ιστοσελίδα"
|
290 |
|
291 |
+
#: adrotate-output.php:1018
|
292 |
msgid "Available in AdRotate Pro"
|
293 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
294 |
|
295 |
+
#: adrotate-output.php:1018
|
296 |
#, fuzzy
|
297 |
msgid "More information..."
|
298 |
msgstr "Περισσότερες πληροφορίες"
|
299 |
|
300 |
+
#: adrotate-output.php:1019
|
301 |
msgid "This feature is available in AdRotate Pro"
|
302 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
303 |
|
304 |
+
#: adrotate-output.php:1019
|
305 |
#, fuzzy
|
306 |
msgid "Learn more"
|
307 |
msgstr "Μάθετε περισσότερα σχετικά"
|
432 |
msgid "AdRotate Pro"
|
433 |
msgstr "AdRotate Pro"
|
434 |
|
435 |
+
#: adrotate.php:110
|
436 |
msgid "Manage Ads"
|
437 |
msgstr "Διαχείριση Διαφημίσεων"
|
438 |
|
439 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
440 |
msgid "Manage Groups"
|
441 |
msgstr "Διαχείριση Ομάδων"
|
442 |
|
443 |
+
#: adrotate.php:112 adrotate.php:441
|
444 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
445 |
#, fuzzy
|
446 |
msgid "Manage Schedules"
|
447 |
msgstr "Διαχείριση"
|
448 |
|
449 |
+
#: adrotate.php:113
|
450 |
#, fuzzy
|
451 |
msgid "Manage Media"
|
452 |
msgstr "Media:"
|
453 |
|
454 |
+
#: adrotate.php:114
|
455 |
msgid "Settings"
|
456 |
msgstr "Ρυθμίσεις"
|
457 |
|
458 |
+
#: adrotate.php:137
|
459 |
msgid "AdRotate Info"
|
460 |
msgstr "Πληροφορίες του AdRotate"
|
461 |
|
462 |
+
#: adrotate.php:158
|
463 |
#, fuzzy
|
464 |
msgid "AdRotate Professional"
|
465 |
msgstr "AdRotate Pro"
|
466 |
|
467 |
+
#: adrotate.php:201
|
468 |
msgid "Ad Management"
|
469 |
msgstr "Διαχείριση Διαφημίσεων"
|
470 |
|
471 |
+
#: adrotate.php:204
|
472 |
msgid "Ad created"
|
473 |
msgstr "Η διαφήμιση δημιουργήθηκε"
|
474 |
|
475 |
+
#: adrotate.php:206
|
476 |
msgid "Ad updated"
|
477 |
msgstr "Η διαφήμιση ανανεώθηκε"
|
478 |
|
479 |
+
#: adrotate.php:208
|
480 |
msgid "Ad(s) deleted"
|
481 |
msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
|
482 |
|
483 |
+
#: adrotate.php:210
|
484 |
msgid "Ad(s) statistics reset"
|
485 |
msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
|
486 |
|
487 |
+
#: adrotate.php:212
|
488 |
msgid "Ad(s) renewed"
|
489 |
msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
|
490 |
|
491 |
+
#: adrotate.php:214
|
492 |
msgid "Ad(s) deactivated"
|
493 |
msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
|
494 |
|
495 |
+
#: adrotate.php:216
|
496 |
msgid "Ad(s) activated"
|
497 |
msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
|
498 |
|
499 |
+
#: adrotate.php:218
|
500 |
msgid ""
|
501 |
"The ad was saved but has an issue which might prevent it from working "
|
502 |
"properly. Review the yellow marked ad."
|
504 |
"Η διαφήμιση αποθηκεύτηκε αλλά υπάρχει ένα θέμα που πιθανώς δεν θα επιτρέψει "
|
505 |
"τη λειτουγία της. Εξετάστε την υπογραμμισμένη με κίτρινο διαφήμιση."
|
506 |
|
507 |
+
#: adrotate.php:220
|
508 |
#, fuzzy
|
509 |
msgid "Export created"
|
510 |
msgstr "Επιλογές εξαγωγής"
|
511 |
|
512 |
+
#: adrotate.php:224
|
513 |
msgid "Action prohibited"
|
514 |
msgstr "Η ενέργεια απαγορεύεται"
|
515 |
|
516 |
+
#: adrotate.php:226 adrotate.php:374
|
517 |
msgid "No data found in selected time period"
|
518 |
msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
|
519 |
|
520 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
521 |
msgid "Manage"
|
522 |
msgstr "Διαχείριση"
|
523 |
|
524 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
525 |
msgid "Add New"
|
526 |
msgstr "Προσθήκη Νέας"
|
527 |
|
528 |
+
#: adrotate.php:363
|
529 |
msgid "Group Management"
|
530 |
msgstr "Διαχείριση Ομάδας"
|
531 |
|
532 |
+
#: adrotate.php:366
|
533 |
msgid "Group created"
|
534 |
msgstr "Η Ομάδα δημιουργήθηκε"
|
535 |
|
536 |
+
#: adrotate.php:368
|
537 |
msgid "Group updated"
|
538 |
msgstr "Η Ομάδα ανανεώθηκε"
|
539 |
|
540 |
+
#: adrotate.php:370
|
541 |
msgid "Group deleted"
|
542 |
msgstr "Η Ομάδα διαγράφηκε"
|
543 |
|
544 |
+
#: adrotate.php:372
|
545 |
msgid "Group including it's Ads deleted"
|
546 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
547 |
|
548 |
+
#: adrotate.php:432
|
549 |
#, fuzzy
|
550 |
msgid "Schedule Management available in AdRotate Pro"
|
551 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
552 |
|
553 |
+
#: adrotate.php:442
|
554 |
#, fuzzy
|
555 |
msgid ""
|
556 |
"Schedule management and multiple schedules per advert is available in "
|
557 |
"AdRotate Pro."
|
558 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
559 |
|
560 |
+
#: adrotate.php:442 adrotate.php:529
|
561 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
562 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
563 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
566 |
msgid "More information"
|
567 |
msgstr "Περισσότερες πληροφορίες"
|
568 |
|
569 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
570 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
571 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
572 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
573 |
msgid "Bulk Actions"
|
574 |
msgstr "Μαζικές Ενέργειες"
|
575 |
|
576 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
577 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
578 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
579 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
580 |
msgid "Go"
|
581 |
msgstr "Go"
|
582 |
|
583 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
584 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
585 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
586 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
587 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
588 |
msgid "ID"
|
589 |
msgstr "Κωδ."
|
590 |
|
591 |
+
#: adrotate.php:460
|
592 |
#, fuzzy
|
593 |
msgid "Start"
|
594 |
msgstr "Ώρα έναρξης (ωω: λλ):"
|
595 |
|
596 |
+
#: adrotate.php:460
|
597 |
#, fuzzy
|
598 |
msgid "End"
|
599 |
msgstr "Ώρα λήξης (ωω: λλ):"
|
600 |
|
601 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
602 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
603 |
msgid "Ads"
|
604 |
msgstr "Διαφημίσεις"
|
605 |
|
606 |
+
#: adrotate.php:463
|
607 |
msgid "Max Clicks"
|
608 |
msgstr "Max Clicks"
|
609 |
|
610 |
+
#: adrotate.php:464
|
611 |
msgid "Max Impressions"
|
612 |
msgstr "Max Impressions"
|
613 |
|
614 |
+
#: adrotate.php:494
|
615 |
#, fuzzy
|
616 |
msgid "No schedules created yet!"
|
617 |
msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
|
618 |
|
619 |
+
#: adrotate.php:499
|
620 |
#, fuzzy
|
621 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
622 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
623 |
|
624 |
+
#: adrotate.php:499 adrotate.php:562
|
625 |
#, fuzzy
|
626 |
msgid "Upgrade today!"
|
627 |
msgstr "Σήμερα"
|
628 |
|
629 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
630 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
631 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
632 |
msgid "Expires soon."
|
633 |
msgstr "Λήγει σύντομα."
|
634 |
|
635 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
636 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
637 |
msgid "Has expired."
|
638 |
msgstr "Έχει λήξει."
|
639 |
|
640 |
+
#: adrotate.php:527
|
641 |
#, fuzzy
|
642 |
msgid "Media Management available in AdRotate Pro"
|
643 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
644 |
|
645 |
+
#: adrotate.php:529
|
646 |
msgid ""
|
647 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
648 |
"especially useful if you use responsive adverts with multiple images."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: adrotate.php:529
|
652 |
#, fuzzy
|
653 |
msgid "Media uploading and management is available in AdRotate Pro."
|
654 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
655 |
|
656 |
+
#: adrotate.php:531
|
657 |
#, fuzzy
|
658 |
msgid "Upload new banner image"
|
659 |
msgstr "Εικόνα Banner:"
|
660 |
|
661 |
+
#: adrotate.php:532
|
662 |
#, fuzzy
|
663 |
msgid "Accepted files are:"
|
664 |
msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
|
665 |
|
666 |
+
#: adrotate.php:532
|
667 |
msgid "Maximum size is 512Kb."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: adrotate.php:532
|
671 |
msgid "Important:"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: adrotate.php:532
|
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:534
|
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:535 dashboard/publisher/adrotate-ads-edit.php:212
|
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:536 dashboard/publisher/adrotate-ads-edit.php:213
|
693 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
694 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
695 |
msgid "Example:"
|
696 |
msgstr "Παράδειγμα:"
|
697 |
|
698 |
+
#: adrotate.php:536
|
699 |
msgid ""
|
700 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
701 |
"for different viewports."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: adrotate.php:540
|
705 |
#, fuzzy
|
706 |
msgid "Upload image"
|
707 |
msgstr "Εικόνα Banner:"
|
708 |
|
709 |
+
#: adrotate.php:543
|
710 |
msgid "Available banner images in"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
714 |
msgid "Name"
|
715 |
msgstr "Όνομα"
|
716 |
|
717 |
+
#: adrotate.php:549
|
718 |
#, fuzzy
|
719 |
msgid "Actions"
|
720 |
msgstr "Μαζικές Ενέργειες"
|
721 |
|
722 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
723 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
724 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
725 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
726 |
msgid "Delete"
|
727 |
msgstr "Διαγραφή"
|
728 |
|
729 |
+
#: adrotate.php:562
|
730 |
msgid ""
|
731 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: adrotate.php:562
|
735 |
#, fuzzy
|
736 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
737 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
738 |
|
739 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
740 |
msgid "AdRotate Settings"
|
741 |
msgstr "Ρυθμίσεις AdRotate"
|
742 |
|
743 |
+
#: adrotate.php:609
|
744 |
msgid "Settings saved"
|
745 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
|
746 |
|
747 |
+
#: adrotate.php:611
|
748 |
msgid "Database optimized"
|
749 |
msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
|
750 |
|
751 |
+
#: adrotate.php:613
|
752 |
msgid "Database repaired"
|
753 |
msgstr "Η βάση δεδομένων επιδιορθώθηκε"
|
754 |
|
755 |
+
#: adrotate.php:615
|
756 |
msgid "Ads evaluated and statuses have been corrected where required"
|
757 |
msgstr ""
|
758 |
"Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
|
759 |
"χρειάστηκε"
|
760 |
|
761 |
+
#: adrotate.php:617
|
762 |
msgid "Empty database records removed"
|
763 |
msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
|
764 |
|
765 |
+
#: adrotate.php:619
|
766 |
msgid "Database can only be optimized or cleaned once every hour"
|
767 |
msgstr ""
|
768 |
"Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
|
769 |
"ώρα"
|
770 |
|
771 |
+
#: adrotate.php:627
|
772 |
msgid "Access Rights"
|
773 |
msgstr "Δικαιώματα Πρόσβασης"
|
774 |
|
775 |
+
#: adrotate.php:628
|
776 |
msgid "Who has access to what?"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: adrotate.php:631
|
780 |
msgid "Manage/Add/Edit adverts"
|
781 |
msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
|
782 |
|
783 |
+
#: adrotate.php:635
|
784 |
msgid "Role to see and add/edit ads."
|
785 |
msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
|
786 |
|
787 |
+
#: adrotate.php:639
|
788 |
msgid "Delete/Reset adverts"
|
789 |
msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
|
790 |
|
791 |
+
#: adrotate.php:643
|
792 |
msgid "Role to delete ads and reset stats."
|
793 |
msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
|
794 |
|
795 |
+
#: adrotate.php:647
|
796 |
msgid "Manage/Add/Edit groups"
|
797 |
msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
|
798 |
|
799 |
+
#: adrotate.php:651
|
800 |
msgid "Role to see and add/edit groups."
|
801 |
msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
|
802 |
|
803 |
+
#: adrotate.php:655
|
804 |
msgid "Delete groups"
|
805 |
msgstr "Διαγραφή ομάδων"
|
806 |
|
807 |
+
#: adrotate.php:659
|
808 |
msgid "Role to delete groups."
|
809 |
msgstr "Ρόλος για τη διαγραφή ομάδων."
|
810 |
|
811 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
812 |
+
#: adrotate.php:876
|
813 |
msgid "Update Options"
|
814 |
msgstr "Επιλογές Ανανέωσης"
|
815 |
|
816 |
+
#: adrotate.php:691
|
817 |
msgid "Statistics"
|
818 |
msgstr "Στατιστικά"
|
819 |
|
820 |
+
#: adrotate.php:694
|
821 |
#, fuzzy
|
822 |
msgid "Enable stats"
|
823 |
msgstr "Στατιστικά"
|
824 |
|
825 |
+
#: adrotate.php:696
|
826 |
msgid "Track clicks and impressions."
|
827 |
msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
|
828 |
|
829 |
+
#: adrotate.php:696
|
830 |
#, fuzzy
|
831 |
msgid "Disabling this also disables click and impression limits on schedules."
|
832 |
msgstr ""
|
833 |
"Η απενεργοποίηση του χαρακτηριστικού απενεργοποιεί επίσης τα όρια των κλικ "
|
834 |
"και εμφανίσεων στα προγράμματα και απενεργοποιεί τα χρονοδιαγράμματα."
|
835 |
|
836 |
+
#: adrotate.php:700
|
837 |
msgid "Impressions timer"
|
838 |
msgstr "Χρονομετρητής εμφανίσεων"
|
839 |
|
840 |
+
#: adrotate.php:702 adrotate.php:709
|
841 |
msgid "Seconds."
|
842 |
msgstr "Δευτερόλεπτα."
|
843 |
|
844 |
+
#: adrotate.php:703
|
845 |
#, fuzzy
|
846 |
|