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 | AdRotate Banner Manager |
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 |
msgid "Default: 60."
|
847 |
msgstr "Προεπιλογή"
|
848 |
|
849 |
+
#: adrotate.php:703
|
850 |
#, fuzzy
|
851 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
852 |
msgstr ""
|
853 |
"Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
|
854 |
"ώρα)."
|
855 |
|
856 |
+
#: adrotate.php:707
|
857 |
#, fuzzy
|
858 |
msgid "Clicks timer"
|
859 |
msgstr "Χρονομετρητής εμφανίσεων"
|
860 |
|
861 |
+
#: adrotate.php:710
|
862 |
#, fuzzy
|
863 |
msgid "Default: 86400."
|
864 |
msgstr "Προεπιλογή"
|
865 |
|
866 |
+
#: adrotate.php:710
|
867 |
#, fuzzy
|
868 |
msgid ""
|
869 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
871 |
"Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
|
872 |
"ώρα)."
|
873 |
|
874 |
+
#: adrotate.php:715
|
875 |
#, fuzzy
|
876 |
msgid "Bot filter"
|
877 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
878 |
|
879 |
+
#: adrotate.php:718
|
880 |
msgid "User-Agent Filter"
|
881 |
msgstr "Φίλτρο προγράμματος περιήγησης"
|
882 |
|
883 |
+
#: adrotate.php:721
|
884 |
msgid ""
|
885 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
886 |
"prevent impressions and clicks counted on them."
|
889 |
"μηχανές περιήγησης για να αποτρέπει την καταγραφή εμφανίσεων και κλικ από "
|
890 |
"αυτές."
|
891 |
|
892 |
+
#: adrotate.php:722
|
893 |
msgid ""
|
894 |
"Keep in mind that this might give false positives. The word 'google' also "
|
895 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
897 |
"Να θυμάστε ότι αυτό μπορεί να δώσει λανθασμένα αποτελέσματα. Η λέξη 'google' "
|
898 |
"περιέχεται στην λέξη 'googlebot', αλλά όχι το αντίθετο. Προσοχή!"
|
899 |
|
900 |
+
#: adrotate.php:722
|
901 |
msgid "Keep your list up-to-date"
|
902 |
msgstr "Διατηρήστε τον κατάλογο ενημερωμένο"
|
903 |
|
904 |
+
#: adrotate.php:723
|
905 |
msgid ""
|
906 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
907 |
"other characters are stripped out."
|
909 |
"Χρησιμοποιήστε λέξεις μόνο με αλφαριθμητικούς χαρακτήρες. Τα [ - _ ] είναι "
|
910 |
"επίσης επιτρεπτά. Όλοι οι άλλοι χαρακτήρες αφαιρούνται."
|
911 |
|
912 |
+
#: adrotate.php:724
|
913 |
msgid ""
|
914 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
915 |
"well."
|
917 |
"Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
|
918 |
"απορίπτονται επίσης."
|
919 |
|
920 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
921 |
msgid "Learn more about"
|
922 |
msgstr "Μάθετε περισσότερα σχετικά"
|
923 |
|
924 |
+
#: adrotate.php:724
|
925 |
msgid "user-agents"
|
926 |
msgstr "πρόγραμμα περιήγησης"
|
927 |
|
928 |
+
#: adrotate.php:733
|
929 |
msgid "Miscellaneous"
|
930 |
msgstr "Διάφορα"
|
931 |
|
932 |
+
#: adrotate.php:736
|
933 |
msgid "Widget alignment"
|
934 |
msgstr "Ευθυγράμμιση μονάδας"
|
935 |
|
936 |
+
#: adrotate.php:737
|
937 |
msgid ""
|
938 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
939 |
"not always help!)"
|
941 |
"Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
|
942 |
"πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
|
943 |
|
944 |
+
#: adrotate.php:740
|
945 |
msgid "Widget padding"
|
946 |
msgstr "Κενά περιθώρια μονάδων"
|
947 |
|
948 |
+
#: adrotate.php:741
|
949 |
msgid ""
|
950 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
951 |
"not always work!)"
|
953 |
"Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
|
954 |
"διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
|
955 |
|
956 |
+
#: adrotate.php:746 adrotate.php:757
|
957 |
msgid "NOTICE:"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: adrotate.php:747
|
961 |
msgid ""
|
962 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
963 |
"You need to add the following line to your wp-config.php near the bottom or "
|
965 |
"needs to be enabled in W3 Total Cache as well too."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: adrotate.php:751
|
969 |
msgid "W3 Total Caching"
|
970 |
msgstr "W3 Total Caching"
|
971 |
|
972 |
+
#: adrotate.php:752
|
973 |
msgid "Check this box if you use W3 Total Caching on your site."
|
974 |
msgstr ""
|
975 |
"Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
|
976 |
"σας."
|
977 |
|
978 |
+
#: adrotate.php:758
|
979 |
msgid ""
|
980 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
981 |
"this function will not work. WP Super Cache has discontinued support for "
|
982 |
"dynamic content."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: adrotate.php:762
|
986 |
msgid "WP Super Cache"
|
987 |
msgstr "WP Super Cache"
|
988 |
|
989 |
+
#: adrotate.php:763
|
990 |
msgid "Check this box if you use WP Super Cache on your site."
|
991 |
msgstr ""
|
992 |
"Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην ιστοσελίδα "
|
993 |
"σας."
|
994 |
|
995 |
+
#: adrotate.php:768
|
996 |
msgid ""
|
997 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
998 |
"to refresh the cache. This can take up to a week if not done manually."
|
1001 |
"πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
|
1002 |
"πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
|
1003 |
|
1004 |
+
#: adrotate.php:768
|
1005 |
msgid ""
|
1006 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1007 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
1010 |
"μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
|
1011 |
"μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
|
1012 |
|
1013 |
+
#: adrotate.php:772
|
1014 |
+
msgid "Javascript"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: adrotate.php:775
|
1018 |
#, fuzzy
|
1019 |
msgid "Load jQuery"
|
1020 |
msgstr "Να περιληφθεί η jQuery"
|
1021 |
|
1022 |
+
#: adrotate.php:776
|
1023 |
#, fuzzy
|
1024 |
msgid ""
|
1025 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1028 |
"Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
|
1029 |
"επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
|
1030 |
|
1031 |
+
#: adrotate.php:779
|
1032 |
msgid "Load in footer?"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: adrotate.php:780
|
1036 |
msgid ""
|
1037 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1038 |
"needs to call wp_footer() for this to work."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: adrotate.php:788
|
1042 |
msgid "Maintenance"
|
1043 |
msgstr "Συντήρηση"
|
1044 |
|
1045 |
+
#: adrotate.php:789
|
1046 |
#, fuzzy
|
1047 |
msgid ""
|
1048 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1058 |
"χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
|
1059 |
"ανταποκρίνεται καλά."
|
1060 |
|
1061 |
+
#: adrotate.php:804 adrotate.php:806
|
1062 |
msgid "Optimize Database"
|
1063 |
msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
|
1064 |
|
1065 |
+
#: adrotate.php:806
|
1066 |
msgid "You are about to optimize the AdRotate database."
|
1067 |
msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
|
1068 |
|
1069 |
+
#: adrotate.php:806
|
1070 |
msgid "Did you make a backup of your database?"
|
1071 |
msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
|
1072 |
|
1073 |
+
#: adrotate.php:806
|
1074 |
msgid ""
|
1075 |
"This may take a moment and may cause your website to respond slow "
|
1076 |
"temporarily!"
|
1078 |
"Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
|
1079 |
"σας να είναι προσωρινά αργή!"
|
1080 |
|
1081 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1082 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1083 |
msgid "OK to continue, CANCEL to stop."
|
1084 |
msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
|
1085 |
|
1086 |
+
#: adrotate.php:807
|
1087 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1088 |
msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
|
1089 |
|
1090 |
+
#: adrotate.php:808
|
1091 |
msgid ""
|
1092 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1093 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1096 |
"τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
|
1097 |
"μέχρι εκατοντάδες kilobytes δεδομένων."
|
1098 |
|
1099 |
+
#: adrotate.php:812 adrotate.php:814
|
1100 |
msgid "Clean-up Database"
|
1101 |
msgstr "Εκκαθάριση Βάσης Δεδομένων"
|
1102 |
|
1103 |
+
#: adrotate.php:814
|
1104 |
msgid ""
|
1105 |
"You are about to clean up your database. This may delete expired schedules "
|
1106 |
"and older statistics."
|
1108 |
"Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
|
1109 |
"ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
|
1110 |
|
1111 |
+
#: adrotate.php:814
|
1112 |
msgid "Are you sure you want to continue?"
|
1113 |
msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
|
1114 |
|
1115 |
+
#: adrotate.php:814 adrotate.php:822
|
1116 |
msgid "This might take a while and may slow down your site during this action!"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: adrotate.php:815
|
1120 |
msgid "Delete stats older than 356 days (Optional)."
|
1121 |
msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
|
1122 |
|
1123 |
+
#: adrotate.php:816
|
1124 |
#, fuzzy
|
1125 |
msgid ""
|
1126 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1130 |
"διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
|
1131 |
"λανθασμένες."
|
1132 |
|
1133 |
+
#: adrotate.php:816
|
1134 |
msgid ""
|
1135 |
"If you made an ad or group that does not save when you make it use this "
|
1136 |
"button to delete those empty records."
|
1138 |
"Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
|
1139 |
"αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
|
1140 |
|
1141 |
+
#: adrotate.php:816
|
1142 |
msgid ""
|
1143 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1144 |
"your site."
|
1146 |
"Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
|
1147 |
"ταχύτητα της ιστοσελίδας σας."
|
1148 |
|
1149 |
+
#: adrotate.php:820
|
1150 |
#, fuzzy
|
1151 |
msgid "Re-evaluate Ads"
|
1152 |
msgstr "Διαφημίσεις"
|
1153 |
|
1154 |
+
#: adrotate.php:822
|
1155 |
msgid "Re-evaluate all ads"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: adrotate.php:822
|
1159 |
#, fuzzy
|
1160 |
msgid "You are about to check all ads for errors."
|
1161 |
msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
|
1162 |
|
1163 |
+
#: adrotate.php:823
|
1164 |
msgid ""
|
1165 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1166 |
"in. Normally you should not need this feature."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: adrotate.php:827
|
1170 |
msgid ""
|
1171 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1172 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
1183 |
"ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
|
1184 |
"καμμία περίπτωση. "
|
1185 |
|
1186 |
+
#: adrotate.php:835
|
1187 |
msgid "Troubleshooting"
|
1188 |
msgstr "Αντιμετώπιση προβλημάτων"
|
1189 |
|
1190 |
+
#: adrotate.php:838
|
1191 |
msgid "Current version:"
|
1192 |
msgstr "Τρέχουσα έκδοση:"
|
1193 |
|
1194 |
+
#: adrotate.php:839
|
1195 |
msgid "Previous version:"
|
1196 |
msgstr "Προηγούμενη έκδοση:"
|
1197 |
|
1198 |
+
#: adrotate.php:842
|
1199 |
msgid "Current database version:"
|
1200 |
msgstr "Τρέχουσα έκδοση βάσης:"
|
1201 |
|
1202 |
+
#: adrotate.php:843
|
1203 |
msgid "Previous database version:"
|
1204 |
msgstr "Προηγούμενη έκδοση βάσης:"
|
1205 |
|
1206 |
+
#: adrotate.php:846
|
1207 |
#, fuzzy
|
1208 |
msgid "Ad evaluation next run:"
|
1209 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
1210 |
|
1211 |
+
#: adrotate.php:847 adrotate.php:851
|
1212 |
msgid "Not scheduled!"
|
1213 |
msgstr "Δεν έχει προγραμματιστεί!"
|
1214 |
|
1215 |
+
#: adrotate.php:850
|
1216 |
msgid "Clean Trackerdata next run:"
|
1217 |
msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
|
1218 |
|
1219 |
+
#: adrotate.php:854
|
1220 |
msgid "Current status of adverts"
|
1221 |
msgstr "Τρέχουσα κατάσταση διαφημίσεων"
|
1222 |
|
1223 |
+
#: adrotate.php:855
|
1224 |
msgid "Normal"
|
1225 |
msgstr "Φυσιολογική"
|
1226 |
|
1227 |
+
#: adrotate.php:855
|
1228 |
msgid "Error"
|
1229 |
msgstr "Σφάλμα"
|
1230 |
|
1231 |
+
#: adrotate.php:855
|
1232 |
msgid "Expired"
|
1233 |
msgstr "Έληξε"
|
1234 |
|
1235 |
+
#: adrotate.php:855
|
1236 |
msgid "Expires Soon"
|
1237 |
msgstr "Λήγει Σύντομα"
|
1238 |
|
1239 |
+
#: adrotate.php:855
|
1240 |
msgid "Unknown Status"
|
1241 |
msgstr "Άγνωστη Κατάσταση"
|
1242 |
|
1243 |
+
#: adrotate.php:858
|
1244 |
msgid ""
|
1245 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1246 |
"developers to review saved settings or how ads are selected. These can be "
|
1254 |
"σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
|
1255 |
"ΕΠΙΛΕΓΜΕΝΕΣ!! "
|
1256 |
|
1257 |
+
#: adrotate.php:862
|
1258 |
msgid "Developer Debug"
|
1259 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
1260 |
|
1261 |
+
#: adrotate.php:864
|
1262 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1263 |
msgstr ""
|
1264 |
"Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
|
1265 |
"έξοδο στην ιστοσελίδα δίνουν."
|
1266 |
|
1267 |
+
#: adrotate.php:865
|
1268 |
msgid "Show all settings, dashboard routines and related values."
|
1269 |
msgstr ""
|
1270 |
"Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
|
1271 |
"τιμών."
|
1272 |
|
1273 |
+
#: adrotate.php:866
|
1274 |
msgid "Show array of all userroles and capabilities."
|
1275 |
msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
|
1276 |
|
1277 |
+
#: adrotate.php:867
|
1278 |
msgid "Review saved advertisers! Visible to advertisers."
|
1279 |
msgstr ""
|
1280 |
"Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
|
1281 |
|
1282 |
+
#: adrotate.php:868
|
1283 |
#, fuzzy
|
1284 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1285 |
msgstr ""
|
1286 |
"Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
|
1287 |
"Ορατό μόνο σε εκδότες."
|
1288 |
|
1289 |
+
#: adrotate.php:869
|
1290 |
#, fuzzy
|
1291 |
msgid ""
|
1292 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1293 |
"clicktracking."
|
1294 |
msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
|
1295 |
|
1296 |
+
#: adrotate.php:870
|
1297 |
msgid "Temporarily disable encryption on the redirect url."
|
1298 |
msgstr ""
|
1299 |
"Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
|
1342 |
msgid "AdRotate News and Developer Blog"
|
1343 |
msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
|
1344 |
|
1345 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1346 |
#, fuzzy
|
1347 |
msgid "Buy AdRotate Professional"
|
1348 |
msgstr "AdRotate Pro"
|
1349 |
|
1350 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1351 |
msgid "Singe License"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1355 |
msgid "For one WordPress installation."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1359 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1360 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1361 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1362 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1363 |
#, fuzzy
|
1364 |
msgid "Buy now"
|
1365 |
msgstr "Λάβετε μέτρα τώρα"
|
1366 |
|
1367 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1368 |
msgid "Duo License"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1372 |
msgid "For two WordPress installations."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1376 |
msgid "Multi License"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1380 |
msgid " For up to five WordPress installations."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1384 |
#, fuzzy
|
1385 |
msgid "Developer License"
|
1386 |
msgstr "Αποσφαλμάτωση Προγραμματιστή"
|
1387 |
|
1388 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1389 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1393 |
msgid "Network License"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1397 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1401 |
msgid "Compare licenses"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1405 |
msgid "Not sure which license is for you? Compare them..."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1409 |
msgid "All Licenses"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: dashboard/adrotate-info.php:171
|
1413 |
#, fuzzy
|
1414 |
msgid "Get more features with AdRotate Pro"
|
1415 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
1416 |
|
1417 |
+
#: dashboard/adrotate-info.php:174
|
1418 |
msgid ""
|
1419 |
"Benefit from extra features to reinforce your income with advertising "
|
1420 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1421 |
"Pro offers on top of the trusted features included in the free version."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: dashboard/adrotate-info.php:175
|
1425 |
#, fuzzy
|
1426 |
msgid "or go to the"
|
1427 |
msgstr "Go"
|
1428 |
|
1429 |
+
#: dashboard/adrotate-info.php:179
|
1430 |
msgid "Support AdRotate"
|
1431 |
msgstr "Υποστηρίξτε το AdRotate"
|
1432 |
|
1433 |
+
#: dashboard/adrotate-info.php:182
|
1434 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1435 |
msgstr "Το δώρο σας θα εξασφαλίσει την συνέχεια της ανάπτυξης του AdRotate!"
|
1436 |
|
1437 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1438 |
msgid "AdRotate is brought to you by"
|
1439 |
msgstr "Το AdRotate έρχεται από την "
|
1440 |
|
1441 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1442 |
msgid ""
|
1443 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1444 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
1449 |
"μετακινήσετε την ιστοσελίδα σας, επισκεφθείτε τον ιστοτόπο μας για "
|
1450 |
"πληροφορίες!"
|
1451 |
|
1452 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1453 |
msgid "Find out more"
|
1454 |
msgstr "Μάθετε περισσότερα"
|
1455 |
|
1456 |
+
#: dashboard/adrotate-info.php:193
|
1457 |
msgid "Follow"
|
1458 |
msgstr ""
|
1459 |
|
1997 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
1998 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
1999 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
2000 |
msgid "Clicks"
|
2001 |
msgstr "Clicks"
|
2002 |
|
2097 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2098 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2099 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2100 |
#, fuzzy
|
2101 |
msgid "Start / End"
|
2102 |
msgstr ""
|
2108 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2109 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2110 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2111 |
msgid "Title"
|
2112 |
msgstr "Τίτλος"
|
2113 |
|
2115 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2116 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2117 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2118 |
msgid "CTR"
|
2119 |
msgstr "CTR"
|
2120 |
|
2187 |
|
2188 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2189 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2190 |
msgid "Weight"
|
2191 |
msgstr "Βαρύτητα"
|
2192 |
|
2193 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2194 |
msgid "Shown"
|
2195 |
msgstr "Εμφανίζονται"
|
2196 |
|
2198 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2199 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2200 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2201 |
msgid "Today"
|
2202 |
msgstr "Σήμερα"
|
2203 |
|
2591 |
msgid "Statistics for group"
|
2592 |
msgstr "Στατιστικά για την ομάδα"
|
2593 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2594 |
#, fuzzy
|
2595 |
+
#~ msgid "AdRotate Server"
|
2596 |
+
#~ msgstr "AdRotate Pro"
|
2597 |
|
|
|
|
|
2598 |
#, fuzzy
|
2599 |
+
#~ msgid "Overview"
|
2600 |
+
#~ msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
|
2601 |
|
2602 |
+
#, fuzzy
|
2603 |
+
#~ msgid "Added / Updated"
|
2604 |
+
#~ msgstr "Η διαφήμιση ανανεώθηκε"
|
2605 |
|
2606 |
+
#, fuzzy
|
2607 |
+
#~ msgid "No ads received yet!"
|
2608 |
+
#~ msgstr "Δεν έχουν δημιουργηθεί διαφημίσεις ακόμα!"
|
2609 |
|
|
|
2610 |
#, fuzzy
|
2611 |
+
#~ msgid "Updated"
|
2612 |
+
#~ msgstr "Η διαφήμιση ανανεώθηκε"
|
2613 |
|
2614 |
+
#~ msgid "Show from"
|
2615 |
+
#~ msgstr "Προβολή από"
|
|
|
2616 |
|
2617 |
+
#~ msgid "Show until"
|
2618 |
+
#~ msgstr "Προβολή μέχρι"
|
|
|
2619 |
|
|
|
2620 |
#, fuzzy
|
2621 |
+
#~ msgid "AdRotate Server Settings"
|
2622 |
+
#~ msgstr "Ρυθμίσεις AdRotate"
|
|
|
|
|
|
|
|
|
|
|
|
|
2623 |
|
|
|
2624 |
#, fuzzy
|
2625 |
+
#~ msgid "Status"
|
2626 |
+
#~ msgstr "Άγνωστη Κατάσταση"
|
|
|
|
|
|
|
|
|
2627 |
|
|
|
2628 |
#, fuzzy
|
2629 |
+
#~ msgid "Not linked - No adverts will be synced."
|
2630 |
+
#~ msgstr "Διαφημίσεις"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2631 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2632 |
#, fuzzy
|
2633 |
+
#~ msgid "Unlink from server"
|
2634 |
+
#~ msgstr "Από / Έως"
|
2635 |
|
2636 |
#, fuzzy
|
2637 |
#~ msgid "AdRotate Website"
|
language/adrotate-en_US.mo
CHANGED
Binary file
|
language/adrotate-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: en_US\n"
|
@@ -13,25 +13,25 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
#, fuzzy
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
#, fuzzy
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
|
28 |
|
29 |
-
#: adrotate-output.php:
|
30 |
#, fuzzy
|
31 |
msgid "Oh no! Something went wrong!"
|
32 |
msgstr "Oh no! Un problème est survenu!"
|
33 |
|
34 |
-
#: adrotate-output.php:
|
35 |
#, fuzzy
|
36 |
msgid ""
|
37 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
@@ -41,19 +41,19 @@ msgstr ""
|
|
41 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
42 |
"votre navigateur."
|
43 |
|
44 |
-
#: adrotate-output.php:
|
45 |
#, fuzzy
|
46 |
msgid ""
|
47 |
"If you have received the url you want to visit via email, you are being "
|
48 |
"tricked!"
|
49 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
50 |
|
51 |
-
#: adrotate-output.php:
|
52 |
#, fuzzy
|
53 |
msgid "Contact support if the issue persists:"
|
54 |
msgstr "Contactez le support si le soucis persiste :"
|
55 |
|
56 |
-
#: adrotate-output.php:
|
57 |
#, fuzzy
|
58 |
msgid ""
|
59 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
@@ -62,7 +62,7 @@ msgstr ""
|
|
62 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
63 |
"horaires/géographiques ou n'existe pas!"
|
64 |
|
65 |
-
#: adrotate-output.php:
|
66 |
#, fuzzy
|
67 |
msgid ""
|
68 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
@@ -71,7 +71,7 @@ msgstr ""
|
|
71 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
72 |
"horaires/géographiques ou n'existe pas!"
|
73 |
|
74 |
-
#: adrotate-output.php:
|
75 |
#, fuzzy
|
76 |
msgid ""
|
77 |
"Either there are no banners, they are disabled or none qualified for this "
|
@@ -80,22 +80,22 @@ msgstr ""
|
|
80 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
81 |
"cet endroit!"
|
82 |
|
83 |
-
#: adrotate-output.php:
|
84 |
#, fuzzy
|
85 |
msgid "Error, no Ad ID set! Check your syntax!"
|
86 |
msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
|
87 |
|
88 |
-
#: adrotate-output.php:
|
89 |
#, fuzzy
|
90 |
msgid "Error, no group ID set! Check your syntax!"
|
91 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
92 |
|
93 |
-
#: adrotate-output.php:
|
94 |
#, fuzzy
|
95 |
msgid "Error, group does not exist! Check your syntax!"
|
96 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
97 |
|
98 |
-
#: adrotate-output.php:
|
99 |
#, fuzzy
|
100 |
msgid ""
|
101 |
"There was an error locating the database tables for AdRotate. Please "
|
@@ -105,196 +105,196 @@ msgstr ""
|
|
105 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
106 |
"extensions. "
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
#, fuzzy
|
110 |
msgid "If this does not solve the issue please seek support at"
|
111 |
msgstr ""
|
112 |
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
113 |
"support à"
|
114 |
|
115 |
-
#: adrotate-output.php:
|
116 |
#, fuzzy
|
117 |
msgid "An unknown error occured."
|
118 |
msgstr "Une erreur inconnue s'est produite."
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
#, fuzzy
|
122 |
msgid "active ad(s) expired."
|
123 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
124 |
|
125 |
-
#: adrotate-output.php:
|
126 |
#, fuzzy
|
127 |
msgid "Take action now"
|
128 |
msgstr "Agir maintenant"
|
129 |
|
130 |
-
#: adrotate-output.php:
|
131 |
#, fuzzy
|
132 |
msgid "active ad(s) are about to expire."
|
133 |
msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
134 |
|
135 |
-
#: adrotate-output.php:
|
136 |
#, fuzzy
|
137 |
msgid "Check it out"
|
138 |
msgstr "Vérifier-le"
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
#, fuzzy
|
142 |
msgid "active ad(s) with configuration errors."
|
143 |
msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
144 |
|
145 |
-
#: adrotate-output.php:
|
146 |
#, fuzzy
|
147 |
msgid "Solve this"
|
148 |
msgstr "Résoudre"
|
149 |
|
150 |
-
#: adrotate-output.php:
|
151 |
#, fuzzy
|
152 |
msgid "ad(s) expired."
|
153 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
154 |
|
155 |
-
#: adrotate-output.php:
|
156 |
#, fuzzy
|
157 |
msgid "ad(s) are about to expire."
|
158 |
msgstr "publicité(s) sont sur le point d'expirer"
|
159 |
|
160 |
-
#: adrotate-output.php:
|
161 |
#, fuzzy
|
162 |
msgid "ad(s) with configuration errors."
|
163 |
msgstr "publicité(s) avec des erreurs de configuration."
|
164 |
|
165 |
-
#: adrotate-output.php:
|
166 |
#, fuzzy
|
167 |
msgid "Fix this as soon as possible"
|
168 |
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
169 |
|
170 |
-
#: adrotate-output.php:
|
171 |
#, fuzzy
|
172 |
msgid "Learn More"
|
173 |
msgstr "En savoir plus"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
msgid ""
|
177 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
178 |
"to the <strong>PRO</strong> version"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: adrotate-output.php:
|
182 |
msgid "Get more features to even better run your advertising campaigns."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: adrotate-output.php:
|
186 |
#, fuzzy
|
187 |
msgid "Thank you for your consideration!"
|
188 |
msgstr "Avez-vous fait une sauvegarde de votre base de données?"
|
189 |
|
190 |
-
#: adrotate-output.php:
|
191 |
msgid ""
|
192 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
193 |
"Pro is in this menu. Check out the"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: adrotate-output.php:
|
197 |
msgid "manuals"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: adrotate-output.php:
|
201 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
202 |
msgid "and"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: adrotate-output.php:
|
206 |
msgid "forums"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: adrotate-output.php:
|
210 |
msgid "Useful Links"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: adrotate-output.php:
|
214 |
msgid "Useful links to learn more about AdRotate"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: adrotate-output.php:
|
218 |
#, fuzzy
|
219 |
msgid "AdRotate Page"
|
220 |
msgstr "AdRotate Pro"
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
#, fuzzy
|
224 |
msgid "Getting Started With AdRotate"
|
225 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
#, fuzzy
|
229 |
msgid "AdRotate manuals"
|
230 |
msgstr "Informations sur Adrotate"
|
231 |
|
232 |
-
#: adrotate-output.php:
|
233 |
#, fuzzy
|
234 |
msgid "AdRotate Support Forum"
|
235 |
msgstr "Magasin AdRotate"
|
236 |
|
237 |
-
#: adrotate-output.php:
|
238 |
msgid "WordPress.org Forum"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: adrotate-output.php:
|
242 |
#, fuzzy
|
243 |
msgid "AdRotate Website."
|
244 |
msgstr "Magasin AdRotate"
|
245 |
|
246 |
-
#: adrotate-output.php:
|
247 |
#, fuzzy
|
248 |
msgid "AdRotate Getting Started."
|
249 |
msgstr "Paramètres de AdRotate"
|
250 |
|
251 |
-
#: adrotate-output.php:
|
252 |
msgid "AdRotate Knoweledge base and manuals."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: adrotate-output.php:
|
256 |
#, fuzzy
|
257 |
msgid "AdRotate Website Forum."
|
258 |
msgstr "Magasin AdRotate"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid "WordPress.org Forum."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
#, fuzzy
|
266 |
msgid "Help AdRotate Grow"
|
267 |
msgstr "Bloqué avec AdRotate? Je peux vous aider!"
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
#, fuzzy
|
271 |
msgid "Brought to you by"
|
272 |
msgstr "Présenté par"
|
273 |
|
274 |
-
#: adrotate-output.php:
|
275 |
msgid ""
|
276 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
277 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: adrotate-output.php:
|
281 |
msgid "If you find AdRotate useful please leave your honest"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: adrotate-output.php:
|
285 |
msgid "rating"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: adrotate-output.php:
|
289 |
#, fuzzy
|
290 |
msgid "review"
|
291 |
msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: adrotate-output.php:
|
298 |
#, fuzzy
|
299 |
msgid ""
|
300 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
@@ -303,32 +303,32 @@ msgstr ""
|
|
303 |
"Votre guichet unique pour le développement Web, le consulting et toutes les "
|
304 |
"façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
#, fuzzy
|
308 |
msgid "Visit the"
|
309 |
msgstr "Visitez le"
|
310 |
|
311 |
-
#: adrotate-output.php:
|
312 |
#, fuzzy
|
313 |
msgid "website"
|
314 |
msgstr "site"
|
315 |
|
316 |
-
#: adrotate-output.php:
|
317 |
#, fuzzy
|
318 |
msgid "Available in AdRotate Pro"
|
319 |
msgstr "Disponible dans Adrotate Pro"
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
#, fuzzy
|
323 |
msgid "More information..."
|
324 |
msgstr "Plus d'informations..."
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
#, fuzzy
|
328 |
msgid "This feature is available in AdRotate Pro"
|
329 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
#, fuzzy
|
333 |
msgid "Learn more"
|
334 |
msgstr "En savoir plus"
|
@@ -487,83 +487,83 @@ msgstr "Informations générales"
|
|
487 |
msgid "AdRotate Pro"
|
488 |
msgstr "AdRotate Pro"
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
#, fuzzy
|
492 |
msgid "Manage Ads"
|
493 |
msgstr "Gérer les pubs"
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
#, fuzzy
|
497 |
msgid "Manage Groups"
|
498 |
msgstr "Gérer les groupes"
|
499 |
|
500 |
-
#: adrotate.php:
|
501 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
502 |
#, fuzzy
|
503 |
msgid "Manage Schedules"
|
504 |
msgstr "Gérer"
|
505 |
|
506 |
-
#: adrotate.php:
|
507 |
#, fuzzy
|
508 |
msgid "Manage Media"
|
509 |
msgstr "Médias :"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
#, fuzzy
|
513 |
msgid "Settings"
|
514 |
msgstr "Paramètres"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
#, fuzzy
|
518 |
msgid "AdRotate Info"
|
519 |
msgstr "Informations sur Adrotate"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
#, fuzzy
|
523 |
msgid "AdRotate Professional"
|
524 |
msgstr "AdRotate professionel"
|
525 |
|
526 |
-
#: adrotate.php:
|
527 |
#, fuzzy
|
528 |
msgid "Ad Management"
|
529 |
msgstr "Gestion des pubs"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
#, fuzzy
|
533 |
msgid "Ad created"
|
534 |
msgstr "Publicité créée"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
#, fuzzy
|
538 |
msgid "Ad updated"
|
539 |
msgstr "Publicité mise à jour"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
#, fuzzy
|
543 |
msgid "Ad(s) deleted"
|
544 |
msgstr "Publicité(s) supprimée(s)"
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
#, fuzzy
|
548 |
msgid "Ad(s) statistics reset"
|
549 |
msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
|
550 |
|
551 |
-
#: adrotate.php:
|
552 |
#, fuzzy
|
553 |
msgid "Ad(s) renewed"
|
554 |
msgstr "publicité(s) renouvellée(s)"
|
555 |
|
556 |
-
#: adrotate.php:
|
557 |
#, fuzzy
|
558 |
msgid "Ad(s) deactivated"
|
559 |
msgstr "Publicité(s) désactivée(s)"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
#, fuzzy
|
563 |
msgid "Ad(s) activated"
|
564 |
msgstr "Publicité(s) activée(s)"
|
565 |
|
566 |
-
#: adrotate.php:
|
567 |
#, fuzzy
|
568 |
msgid ""
|
569 |
"The ad was saved but has an issue which might prevent it from working "
|
@@ -572,68 +572,68 @@ msgstr ""
|
|
572 |
"La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
|
573 |
"fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
|
574 |
|
575 |
-
#: adrotate.php:
|
576 |
#, fuzzy
|
577 |
msgid "Export created"
|
578 |
msgstr "Publicité créée"
|
579 |
|
580 |
-
#: adrotate.php:
|
581 |
#, fuzzy
|
582 |
msgid "Action prohibited"
|
583 |
msgstr "Action interdite"
|
584 |
|
585 |
-
#: adrotate.php:
|
586 |
#, fuzzy
|
587 |
msgid "No data found in selected time period"
|
588 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
589 |
|
590 |
-
#: adrotate.php:
|
591 |
#, fuzzy
|
592 |
msgid "Manage"
|
593 |
msgstr "Gérer"
|
594 |
|
595 |
-
#: adrotate.php:
|
596 |
#, fuzzy
|
597 |
msgid "Add New"
|
598 |
msgstr "Ajouter"
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
#, fuzzy
|
602 |
msgid "Group Management"
|
603 |
msgstr "Gérer les groupes"
|
604 |
|
605 |
-
#: adrotate.php:
|
606 |
#, fuzzy
|
607 |
msgid "Group created"
|
608 |
msgstr "Groupe créé"
|
609 |
|
610 |
-
#: adrotate.php:
|
611 |
#, fuzzy
|
612 |
msgid "Group updated"
|
613 |
msgstr "Groupe mis à jour"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
#, fuzzy
|
617 |
msgid "Group deleted"
|
618 |
msgstr "Groupe supprimé"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
#, fuzzy
|
622 |
msgid "Group including it's Ads deleted"
|
623 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
624 |
|
625 |
-
#: adrotate.php:
|
626 |
#, fuzzy
|
627 |
msgid "Schedule Management available in AdRotate Pro"
|
628 |
msgstr "Disponible dans Adrotate Pro"
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
msgid ""
|
632 |
"Schedule management and multiple schedules per advert is available in "
|
633 |
"AdRotate Pro."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
638 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
639 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -642,7 +642,7 @@ msgstr ""
|
|
642 |
msgid "More information"
|
643 |
msgstr "Plus d'informations..."
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
647 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
648 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
@@ -650,7 +650,7 @@ msgstr "Plus d'informations..."
|
|
650 |
msgid "Bulk Actions"
|
651 |
msgstr "Actions en vrac"
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
655 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
656 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
@@ -658,116 +658,114 @@ msgstr "Actions en vrac"
|
|
658 |
msgid "Go"
|
659 |
msgstr "Aller"
|
660 |
|
661 |
-
#: adrotate.php:
|
662 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
663 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
664 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
665 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
666 |
-
#: dashboard/server/adrotate-active.php:18
|
667 |
-
#: dashboard/server/adrotate-error.php:18
|
668 |
#, fuzzy
|
669 |
msgid "ID"
|
670 |
msgstr "ID :"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
#, fuzzy
|
674 |
msgid "Start"
|
675 |
msgstr "Début / Fin"
|
676 |
|
677 |
-
#: adrotate.php:
|
678 |
#, fuzzy
|
679 |
msgid "End"
|
680 |
msgstr "Début / Fin"
|
681 |
|
682 |
-
#: adrotate.php:
|
683 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
684 |
#, fuzzy
|
685 |
msgid "Ads"
|
686 |
msgstr "Pubs"
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
#, fuzzy
|
690 |
msgid "Max Clicks"
|
691 |
msgstr "Clicks"
|
692 |
|
693 |
-
#: adrotate.php:
|
694 |
#, fuzzy
|
695 |
msgid "Max Impressions"
|
696 |
msgstr "Vues"
|
697 |
|
698 |
-
#: adrotate.php:
|
699 |
#, fuzzy
|
700 |
msgid "No schedules created yet!"
|
701 |
msgstr "Aucune pub n'a encore été créé!"
|
702 |
|
703 |
-
#: adrotate.php:
|
704 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
#, fuzzy
|
709 |
msgid "Upgrade today!"
|
710 |
msgstr "Mettre à jour aujourd'hui"
|
711 |
|
712 |
-
#: adrotate.php:
|
713 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
714 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
715 |
#, fuzzy
|
716 |
msgid "Expires soon."
|
717 |
msgstr "Expire bientôt."
|
718 |
|
719 |
-
#: adrotate.php:
|
720 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
721 |
#, fuzzy
|
722 |
msgid "Has expired."
|
723 |
msgstr "A expiré."
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
#, fuzzy
|
727 |
msgid "Media Management available in AdRotate Pro"
|
728 |
msgstr "Disponible dans Adrotate Pro"
|
729 |
|
730 |
-
#: adrotate.php:
|
731 |
msgid ""
|
732 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
733 |
"especially useful if you use responsive adverts with multiple images."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
msgid "Media uploading and management is available in AdRotate Pro."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: adrotate.php:
|
741 |
#, fuzzy
|
742 |
msgid "Upload new banner image"
|
743 |
msgstr "Image :"
|
744 |
|
745 |
-
#: adrotate.php:
|
746 |
#, fuzzy
|
747 |
msgid "Accepted files are:"
|
748 |
msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
|
749 |
|
750 |
-
#: adrotate.php:
|
751 |
msgid "Maximum size is 512Kb."
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
msgid "Important:"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: adrotate.php:
|
759 |
msgid ""
|
760 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
761 |
"spaces with a - or _."
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: adrotate.php:
|
765 |
msgid ""
|
766 |
"For responsive adverts make sure the filename is in the following format; "
|
767 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: adrotate.php:
|
771 |
#, fuzzy
|
772 |
msgid ""
|
773 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
@@ -777,14 +775,14 @@ msgstr ""
|
|
777 |
"\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
|
778 |
"tailles d'écran."
|
779 |
|
780 |
-
#: adrotate.php:
|
781 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
782 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
783 |
#, fuzzy
|
784 |
msgid "Example:"
|
785 |
msgstr "Exemple :"
|
786 |
|
787 |
-
#: adrotate.php:
|
788 |
#, fuzzy
|
789 |
msgid ""
|
790 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -793,221 +791,202 @@ msgstr ""
|
|
793 |
"image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
|
794 |
"pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
|
795 |
|
796 |
-
#: adrotate.php:
|
797 |
#, fuzzy
|
798 |
msgid "Upload image"
|
799 |
msgstr "Image :"
|
800 |
|
801 |
-
#: adrotate.php:
|
802 |
msgid "Available banner images in"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: adrotate.php:
|
806 |
#, fuzzy
|
807 |
msgid "Name"
|
808 |
msgstr "Nom"
|
809 |
|
810 |
-
#: adrotate.php:
|
811 |
#, fuzzy
|
812 |
msgid "Actions"
|
813 |
msgstr "Actions en vrac"
|
814 |
|
815 |
-
#: adrotate.php:
|
816 |
-
#: adrotate.php:
|
817 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
818 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
819 |
#, fuzzy
|
820 |
msgid "Delete"
|
821 |
msgstr "Effacer"
|
822 |
|
823 |
-
#: adrotate.php:
|
824 |
msgid ""
|
825 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: adrotate.php:
|
829 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: adrotate.php:
|
833 |
-
#, fuzzy
|
834 |
-
msgid "AdRotate Server"
|
835 |
-
msgstr "Serveur AdRotate"
|
836 |
-
|
837 |
-
#: adrotate.php:608
|
838 |
-
#, fuzzy
|
839 |
-
msgid ""
|
840 |
-
"AdRotate server is currently in development and these menus are not "
|
841 |
-
"functional yet."
|
842 |
-
msgstr ""
|
843 |
-
"AdRotate Server est actuellement en développement et ces menus ne sont pas "
|
844 |
-
"encore fonctionels."
|
845 |
-
|
846 |
-
#: adrotate.php:612
|
847 |
-
#, fuzzy
|
848 |
-
msgid "Overview"
|
849 |
-
msgstr "Vue d'ensemble"
|
850 |
-
|
851 |
-
#: adrotate.php:708
|
852 |
#, fuzzy
|
853 |
msgid "AdRotate Settings"
|
854 |
msgstr "Paramètres de AdRotate"
|
855 |
|
856 |
-
#: adrotate.php:
|
857 |
#, fuzzy
|
858 |
msgid "Settings saved"
|
859 |
msgstr "Paramètres sauvegardés"
|
860 |
|
861 |
-
#: adrotate.php:
|
862 |
#, fuzzy
|
863 |
msgid "Database optimized"
|
864 |
msgstr "Base de données optimisée"
|
865 |
|
866 |
-
#: adrotate.php:
|
867 |
#, fuzzy
|
868 |
msgid "Database repaired"
|
869 |
msgstr "Base de données réparée"
|
870 |
|
871 |
-
#: adrotate.php:
|
872 |
#, fuzzy
|
873 |
msgid "Ads evaluated and statuses have been corrected where required"
|
874 |
msgstr ""
|
875 |
"Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
|
876 |
|
877 |
-
#: adrotate.php:
|
878 |
#, fuzzy
|
879 |
msgid "Empty database records removed"
|
880 |
msgstr "Les registres vides de la base de données ont été supprimés"
|
881 |
|
882 |
-
#: adrotate.php:
|
883 |
#, fuzzy
|
884 |
msgid "Database can only be optimized or cleaned once every hour"
|
885 |
msgstr ""
|
886 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
887 |
|
888 |
-
#: adrotate.php:
|
889 |
#, fuzzy
|
890 |
msgid "Access Rights"
|
891 |
msgstr "Droits d'Accès"
|
892 |
|
893 |
-
#: adrotate.php:
|
894 |
#, fuzzy
|
895 |
msgid "Who has access to what?"
|
896 |
msgstr "Qui a accès à quoi?"
|
897 |
|
898 |
-
#: adrotate.php:
|
899 |
#, fuzzy
|
900 |
msgid "Manage/Add/Edit adverts"
|
901 |
msgstr "Gérer/Ajouter/Modifier les publicités"
|
902 |
|
903 |
-
#: adrotate.php:
|
904 |
#, fuzzy
|
905 |
msgid "Role to see and add/edit ads."
|
906 |
msgstr "Rôle pour voir et gérer/modifier les publicités."
|
907 |
|
908 |
-
#: adrotate.php:
|
909 |
#, fuzzy
|
910 |
msgid "Delete/Reset adverts"
|
911 |
msgstr "Supprimer/Mettre à zéro les publicités"
|
912 |
|
913 |
-
#: adrotate.php:
|
914 |
#, fuzzy
|
915 |
msgid "Role to delete ads and reset stats."
|
916 |
msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
|
917 |
|
918 |
-
#: adrotate.php:
|
919 |
#, fuzzy
|
920 |
msgid "Manage/Add/Edit groups"
|
921 |
msgstr "Gérer/Ajouter/Modifier les groupes"
|
922 |
|
923 |
-
#: adrotate.php:
|
924 |
#, fuzzy
|
925 |
msgid "Role to see and add/edit groups."
|
926 |
msgstr "Rôle pour voir et ajouter/modifier les groupes."
|
927 |
|
928 |
-
#: adrotate.php:
|
929 |
#, fuzzy
|
930 |
msgid "Delete groups"
|
931 |
msgstr "Effacer les groups"
|
932 |
|
933 |
-
#: adrotate.php:
|
934 |
#, fuzzy
|
935 |
msgid "Role to delete groups."
|
936 |
msgstr "Rôle pour supprimer les groupes."
|
937 |
|
938 |
-
#: adrotate.php:
|
939 |
-
#: adrotate.php:
|
940 |
#, fuzzy
|
941 |
msgid "Update Options"
|
942 |
msgstr "Mettre à jour les options"
|
943 |
|
944 |
-
#: adrotate.php:
|
945 |
#, fuzzy
|
946 |
msgid "Statistics"
|
947 |
msgstr "Statistiques"
|
948 |
|
949 |
-
#: adrotate.php:
|
950 |
#, fuzzy
|
951 |
msgid "Enable stats"
|
952 |
msgstr "Statistiques activés"
|
953 |
|
954 |
-
#: adrotate.php:
|
955 |
#, fuzzy
|
956 |
msgid "Track clicks and impressions."
|
957 |
msgstr "Suivi des clicks et des impressions."
|
958 |
|
959 |
-
#: adrotate.php:
|
960 |
msgid "Disabling this also disables click and impression limits on schedules."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: adrotate.php:
|
964 |
#, fuzzy
|
965 |
msgid "Impressions timer"
|
966 |
msgstr "Minuterie de impressions"
|
967 |
|
968 |
-
#: adrotate.php:
|
969 |
#, fuzzy
|
970 |
msgid "Seconds."
|
971 |
msgstr "Secondes."
|
972 |
|
973 |
-
#: adrotate.php:
|
974 |
#, fuzzy
|
975 |
msgid "Default: 60."
|
976 |
msgstr "Par défaut"
|
977 |
|
978 |
-
#: adrotate.php:
|
979 |
#, fuzzy
|
980 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
981 |
msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
|
982 |
|
983 |
-
#: adrotate.php:
|
984 |
#, fuzzy
|
985 |
msgid "Clicks timer"
|
986 |
msgstr "Interval de clicks"
|
987 |
|
988 |
-
#: adrotate.php:
|
989 |
#, fuzzy
|
990 |
msgid "Default: 86400."
|
991 |
msgstr "Par défaut"
|
992 |
|
993 |
-
#: adrotate.php:
|
994 |
#, fuzzy
|
995 |
msgid ""
|
996 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
997 |
msgstr ""
|
998 |
"Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
|
999 |
|
1000 |
-
#: adrotate.php:
|
1001 |
#, fuzzy
|
1002 |
msgid "Bot filter"
|
1003 |
msgstr "Filtre de robots"
|
1004 |
|
1005 |
-
#: adrotate.php:
|
1006 |
#, fuzzy
|
1007 |
msgid "User-Agent Filter"
|
1008 |
msgstr "Filtrage par User-Agent"
|
1009 |
|
1010 |
-
#: adrotate.php:
|
1011 |
#, fuzzy
|
1012 |
msgid ""
|
1013 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
@@ -1016,7 +995,7 @@ msgstr ""
|
|
1016 |
"Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
|
1017 |
"impressions et le clics fait par les robots/crawlers/user-agents."
|
1018 |
|
1019 |
-
#: adrotate.php:
|
1020 |
#, fuzzy
|
1021 |
msgid ""
|
1022 |
"Keep in mind that this might give false positives. The word 'google' also "
|
@@ -1025,12 +1004,12 @@ msgstr ""
|
|
1025 |
"Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
|
1026 |
"correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
|
1027 |
|
1028 |
-
#: adrotate.php:
|
1029 |
#, fuzzy
|
1030 |
msgid "Keep your list up-to-date"
|
1031 |
msgstr "Gardez votre liste à jour"
|
1032 |
|
1033 |
-
#: adrotate.php:
|
1034 |
#, fuzzy
|
1035 |
msgid ""
|
1036 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
@@ -1039,7 +1018,7 @@ msgstr ""
|
|
1039 |
"Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
|
1040 |
"sont aussi permis. Tous les autres caractères seront supprimés. "
|
1041 |
|
1042 |
-
#: adrotate.php:
|
1043 |
#, fuzzy
|
1044 |
msgid ""
|
1045 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
@@ -1048,27 +1027,27 @@ msgstr ""
|
|
1048 |
"En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
|
1049 |
"bloqués."
|
1050 |
|
1051 |
-
#: adrotate.php:
|
1052 |
#, fuzzy
|
1053 |
msgid "Learn more about"
|
1054 |
msgstr "En savoir plus sur"
|
1055 |
|
1056 |
-
#: adrotate.php:
|
1057 |
#, fuzzy
|
1058 |
msgid "user-agents"
|
1059 |
msgstr "user-agents"
|
1060 |
|
1061 |
-
#: adrotate.php:
|
1062 |
#, fuzzy
|
1063 |
msgid "Miscellaneous"
|
1064 |
msgstr "Divers"
|
1065 |
|
1066 |
-
#: adrotate.php:
|
1067 |
#, fuzzy
|
1068 |
msgid "Widget alignment"
|
1069 |
msgstr "Alignement du Widget"
|
1070 |
|
1071 |
-
#: adrotate.php:
|
1072 |
#, fuzzy
|
1073 |
msgid ""
|
1074 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
@@ -1077,12 +1056,12 @@ msgstr ""
|
|
1077 |
"Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
|
1078 |
"votre thème. Cette fonction peux ne pas régler le soucis!"
|
1079 |
|
1080 |
-
#: adrotate.php:
|
1081 |
#, fuzzy
|
1082 |
msgid "Widget padding"
|
1083 |
msgstr "Marge interne du Widget"
|
1084 |
|
1085 |
-
#: adrotate.php:
|
1086 |
#, fuzzy
|
1087 |
msgid ""
|
1088 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
@@ -1091,7 +1070,7 @@ msgstr ""
|
|
1091 |
"Activez cette option pour supprimer la marge (espace vide) autour des "
|
1092 |
"publicités dans les widgets. Ceci ne fonctionne pas toujours!"
|
1093 |
|
1094 |
-
#: adrotate.php:
|
1095 |
#, fuzzy
|
1096 |
msgid "NOTICE:"
|
1097 |
msgstr ""
|
@@ -1101,7 +1080,7 @@ msgstr ""
|
|
1101 |
"votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
|
1102 |
"de données est lente ou ne réponds pas."
|
1103 |
|
1104 |
-
#: adrotate.php:
|
1105 |
#, fuzzy
|
1106 |
msgid ""
|
1107 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
@@ -1114,17 +1093,17 @@ msgstr ""
|
|
1114 |
"config.php après la ligne 52 (qui définit un autre hash). De plus, la "
|
1115 |
"fonction \"late init\" doit être activée dans W3 Total Cache."
|
1116 |
|
1117 |
-
#: adrotate.php:
|
1118 |
#, fuzzy
|
1119 |
msgid "W3 Total Caching"
|
1120 |
msgstr "W3 Total Caching"
|
1121 |
|
1122 |
-
#: adrotate.php:
|
1123 |
#, fuzzy
|
1124 |
msgid "Check this box if you use W3 Total Caching on your site."
|
1125 |
msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
|
1126 |
|
1127 |
-
#: adrotate.php:
|
1128 |
#, fuzzy
|
1129 |
msgid ""
|
1130 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
@@ -1135,17 +1114,17 @@ msgstr ""
|
|
1135 |
"ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
|
1136 |
"support pour le contenu dynamique."
|
1137 |
|
1138 |
-
#: adrotate.php:
|
1139 |
#, fuzzy
|
1140 |
msgid "WP Super Cache"
|
1141 |
msgstr "WP Super Cache"
|
1142 |
|
1143 |
-
#: adrotate.php:
|
1144 |
#, fuzzy
|
1145 |
msgid "Check this box if you use WP Super Cache on your site."
|
1146 |
msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
|
1147 |
|
1148 |
-
#: adrotate.php:
|
1149 |
#, fuzzy
|
1150 |
msgid ""
|
1151 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
@@ -1156,7 +1135,7 @@ msgstr ""
|
|
1156 |
"actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
|
1157 |
"pas fait manuellement."
|
1158 |
|
1159 |
-
#: adrotate.php:
|
1160 |
#, fuzzy
|
1161 |
msgid ""
|
1162 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
@@ -1166,17 +1145,16 @@ msgstr ""
|
|
1166 |
"widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
|
1167 |
"PHP dans le code d'exclusion vous-même."
|
1168 |
|
1169 |
-
#: adrotate.php:
|
1170 |
-
|
1171 |
-
|
1172 |
-
msgstr "Librairies Javascript"
|
1173 |
|
1174 |
-
#: adrotate.php:
|
1175 |
#, fuzzy
|
1176 |
msgid "Load jQuery"
|
1177 |
msgstr "Utilisez jQuery"
|
1178 |
|
1179 |
-
#: adrotate.php:
|
1180 |
#, fuzzy
|
1181 |
msgid ""
|
1182 |
"jQuery is required for all Javascript features below. Enable this if your "
|
@@ -1185,12 +1163,12 @@ msgstr ""
|
|
1185 |
"jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
|
1186 |
"le si votre thème ne charge pas jQuery directement."
|
1187 |
|
1188 |
-
#: adrotate.php:
|
1189 |
#, fuzzy
|
1190 |
msgid "Load in footer?"
|
1191 |
msgstr "Chargement dans le pied de page?"
|
1192 |
|
1193 |
-
#: adrotate.php:
|
1194 |
#, fuzzy
|
1195 |
msgid ""
|
1196 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
@@ -1199,12 +1177,12 @@ msgstr ""
|
|
1199 |
"Activez cette option si vous voulez charger les bibliothèques dans le pied "
|
1200 |
"de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
|
1201 |
|
1202 |
-
#: adrotate.php:
|
1203 |
#, fuzzy
|
1204 |
msgid "Maintenance"
|
1205 |
msgstr "Maintenance"
|
1206 |
|
1207 |
-
#: adrotate.php:
|
1208 |
#, fuzzy
|
1209 |
msgid ""
|
1210 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
@@ -1219,22 +1197,22 @@ msgstr ""
|
|
1219 |
"votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
|
1220 |
"de données est lente ou ne réponds pas."
|
1221 |
|
1222 |
-
#: adrotate.php:
|
1223 |
#, fuzzy
|
1224 |
msgid "Optimize Database"
|
1225 |
msgstr "Optimiser la base de données"
|
1226 |
|
1227 |
-
#: adrotate.php:
|
1228 |
#, fuzzy
|
1229 |
msgid "You are about to optimize the AdRotate database."
|
1230 |
msgstr "Vous allez optimiser la base de données de Adrotate."
|
1231 |
|
1232 |
-
#: adrotate.php:
|
1233 |
#, fuzzy
|
1234 |
msgid "Did you make a backup of your database?"
|
1235 |
msgstr "Avez-vous fait une sauvegarde de votre base de données?"
|
1236 |
|
1237 |
-
#: adrotate.php:
|
1238 |
#, fuzzy
|
1239 |
msgid ""
|
1240 |
"This may take a moment and may cause your website to respond slow "
|
@@ -1243,18 +1221,18 @@ msgstr ""
|
|
1243 |
"Cela peut prendre un moment et peut causer à votre site un ralentissement "
|
1244 |
"temporaire!"
|
1245 |
|
1246 |
-
#: adrotate.php:
|
1247 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1248 |
#, fuzzy
|
1249 |
msgid "OK to continue, CANCEL to stop."
|
1250 |
msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
1251 |
|
1252 |
-
#: adrotate.php:
|
1253 |
#, fuzzy
|
1254 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1255 |
msgstr "Efface les données de surdébit dans les tables de AdRotate."
|
1256 |
|
1257 |
-
#: adrotate.php:
|
1258 |
#, fuzzy
|
1259 |
msgid ""
|
1260 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
@@ -1264,12 +1242,12 @@ msgstr ""
|
|
1264 |
"changements que vous avez fait. Cela peut varier de rien à des centaines de "
|
1265 |
"KB de données."
|
1266 |
|
1267 |
-
#: adrotate.php:
|
1268 |
#, fuzzy
|
1269 |
msgid "Clean-up Database"
|
1270 |
msgstr "Nettoyer la base de données"
|
1271 |
|
1272 |
-
#: adrotate.php:
|
1273 |
#, fuzzy
|
1274 |
msgid ""
|
1275 |
"You are about to clean up your database. This may delete expired schedules "
|
@@ -1278,24 +1256,24 @@ msgstr ""
|
|
1278 |
"Vous êtes sur le point de nettoyer votre base de données. Cela peut "
|
1279 |
"supprimer des calendriers périmés et des vieilles statistiques.."
|
1280 |
|
1281 |
-
#: adrotate.php:
|
1282 |
#, fuzzy
|
1283 |
msgid "Are you sure you want to continue?"
|
1284 |
msgstr "Etes-vous certains de vouloir continuer?"
|
1285 |
|
1286 |
-
#: adrotate.php:
|
1287 |
#, fuzzy
|
1288 |
msgid "This might take a while and may slow down your site during this action!"
|
1289 |
msgstr ""
|
1290 |
"Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
|
1291 |
"interval!"
|
1292 |
|
1293 |
-
#: adrotate.php:
|
1294 |
#, fuzzy
|
1295 |
msgid "Delete stats older than 356 days (Optional)."
|
1296 |
msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
|
1297 |
|
1298 |
-
#: adrotate.php:
|
1299 |
#, fuzzy
|
1300 |
msgid ""
|
1301 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
@@ -1304,7 +1282,7 @@ msgstr ""
|
|
1304 |
"AdRotate crée des registres vides lorsque vous commencez à faire des "
|
1305 |
"annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
|
1306 |
|
1307 |
-
#: adrotate.php:
|
1308 |
#, fuzzy
|
1309 |
msgid ""
|
1310 |
"If you made an ad or group that does not save when you make it use this "
|
@@ -1314,7 +1292,7 @@ msgstr ""
|
|
1314 |
"sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
|
1315 |
"registres vides."
|
1316 |
|
1317 |
-
#: adrotate.php:
|
1318 |
#, fuzzy
|
1319 |
msgid ""
|
1320 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
@@ -1323,22 +1301,22 @@ msgstr ""
|
|
1323 |
"En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
|
1324 |
"d'améliorer la vitesse de votre site."
|
1325 |
|
1326 |
-
#: adrotate.php:
|
1327 |
#, fuzzy
|
1328 |
msgid "Re-evaluate Ads"
|
1329 |
msgstr "Re-évaluer les publicités"
|
1330 |
|
1331 |
-
#: adrotate.php:
|
1332 |
#, fuzzy
|
1333 |
msgid "Re-evaluate all ads"
|
1334 |
msgstr "Re-évaluer toutes les publicités"
|
1335 |
|
1336 |
-
#: adrotate.php:
|
1337 |
#, fuzzy
|
1338 |
msgid "You are about to check all ads for errors."
|
1339 |
msgstr "Vous allez véifier l'état de toutes les publicités."
|
1340 |
|
1341 |
-
#: adrotate.php:
|
1342 |
#, fuzzy
|
1343 |
msgid ""
|
1344 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
@@ -1348,7 +1326,7 @@ msgstr ""
|
|
1348 |
"voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
|
1349 |
"fonctionalité."
|
1350 |
|
1351 |
-
#: adrotate.php:
|
1352 |
#, fuzzy
|
1353 |
msgid ""
|
1354 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
@@ -1366,75 +1344,75 @@ msgstr ""
|
|
1366 |
"probablement déjà au-delà de la réparation. Affirmer que le site "
|
1367 |
"fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
|
1368 |
|
1369 |
-
#: adrotate.php:
|
1370 |
#, fuzzy
|
1371 |
msgid "Troubleshooting"
|
1372 |
msgstr "Diagnostic de dépannage"
|
1373 |
|
1374 |
-
#: adrotate.php:
|
1375 |
#, fuzzy
|
1376 |
msgid "Current version:"
|
1377 |
msgstr "Version actuelle :"
|
1378 |
|
1379 |
-
#: adrotate.php:
|
1380 |
#, fuzzy
|
1381 |
msgid "Previous version:"
|
1382 |
msgstr "Version antérieure :"
|
1383 |
|
1384 |
-
#: adrotate.php:
|
1385 |
#, fuzzy
|
1386 |
msgid "Current database version:"
|
1387 |
msgstr "Version actuelle de la base de données :"
|
1388 |
|
1389 |
-
#: adrotate.php:
|
1390 |
#, fuzzy
|
1391 |
msgid "Previous database version:"
|
1392 |
msgstr "Version antérieure de la base de données :"
|
1393 |
|
1394 |
-
#: adrotate.php:
|
1395 |
msgid "Ad evaluation next run:"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: adrotate.php:
|
1399 |
#, fuzzy
|
1400 |
msgid "Not scheduled!"
|
1401 |
msgstr "Pas planifié!"
|
1402 |
|
1403 |
-
#: adrotate.php:
|
1404 |
msgid "Clean Trackerdata next run:"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: adrotate.php:
|
1408 |
#, fuzzy
|
1409 |
msgid "Current status of adverts"
|
1410 |
msgstr "Etat actuel des publicités"
|
1411 |
|
1412 |
-
#: adrotate.php:
|
1413 |
#, fuzzy
|
1414 |
msgid "Normal"
|
1415 |
msgstr "Normal"
|
1416 |
|
1417 |
-
#: adrotate.php:
|
1418 |
#, fuzzy
|
1419 |
msgid "Error"
|
1420 |
msgstr "Erreur"
|
1421 |
|
1422 |
-
#: adrotate.php:
|
1423 |
#, fuzzy
|
1424 |
msgid "Expired"
|
1425 |
msgstr "Expiré"
|
1426 |
|
1427 |
-
#: adrotate.php:
|
1428 |
#, fuzzy
|
1429 |
msgid "Expires Soon"
|
1430 |
msgstr "Expire bientôt."
|
1431 |
|
1432 |
-
#: adrotate.php:
|
1433 |
#, fuzzy
|
1434 |
msgid "Unknown Status"
|
1435 |
msgstr "Statut Inconnu"
|
1436 |
|
1437 |
-
#: adrotate.php:
|
1438 |
#, fuzzy
|
1439 |
msgid ""
|
1440 |
"NOTE: The below options are not meant for normal use and are only there for "
|
@@ -1448,43 +1426,43 @@ msgstr ""
|
|
1448 |
"peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
|
1449 |
"une utilisation normale, ils ne doivent pas être activés!"
|
1450 |
|
1451 |
-
#: adrotate.php:
|
1452 |
#, fuzzy
|
1453 |
msgid "Developer Debug"
|
1454 |
msgstr "Debuggage de développeur"
|
1455 |
|
1456 |
-
#: adrotate.php:
|
1457 |
#, fuzzy
|
1458 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1459 |
msgstr ""
|
1460 |
"Dépannage des publicités. Si cette option est activée, les données seront "
|
1461 |
"placées sur le site."
|
1462 |
|
1463 |
-
#: adrotate.php:
|
1464 |
#, fuzzy
|
1465 |
msgid "Show all settings, dashboard routines and related values."
|
1466 |
msgstr ""
|
1467 |
"Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
|
1468 |
"connexes."
|
1469 |
|
1470 |
-
#: adrotate.php:
|
1471 |
#, fuzzy
|
1472 |
msgid "Show array of all userroles and capabilities."
|
1473 |
msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
|
1474 |
|
1475 |
-
#: adrotate.php:
|
1476 |
#, fuzzy
|
1477 |
msgid "Review saved advertisers! Visible to advertisers."
|
1478 |
msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
|
1479 |
|
1480 |
-
#: adrotate.php:
|
1481 |
#, fuzzy
|
1482 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1483 |
msgstr ""
|
1484 |
"Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
|
1485 |
"Visible uniquement aux annonceurs."
|
1486 |
|
1487 |
-
#: adrotate.php:
|
1488 |
#, fuzzy
|
1489 |
msgid ""
|
1490 |
"Disable timers for clicks and impressions and enable a alert window for "
|
@@ -1493,7 +1471,7 @@ msgstr ""
|
|
1493 |
"Désactivez les minuteurs pour les clicks et les impressions et activez une "
|
1494 |
"fenêtre d'alerte pour le suivi des clicks."
|
1495 |
|
1496 |
-
#: adrotate.php:
|
1497 |
#, fuzzy
|
1498 |
msgid "Temporarily disable encryption on the redirect url."
|
1499 |
msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
|
@@ -1553,96 +1531,96 @@ msgstr "Vous utilisez"
|
|
1553 |
msgid "AdRotate News and Developer Blog"
|
1554 |
msgstr "Actus AdRotate et blog du développeur"
|
1555 |
|
1556 |
-
#: dashboard/adrotate-info.php:
|
1557 |
#, fuzzy
|
1558 |
msgid "Buy AdRotate Professional"
|
1559 |
msgstr "Achetez AdRotate Professionel"
|
1560 |
|
1561 |
-
#: dashboard/adrotate-info.php:
|
1562 |
#, fuzzy
|
1563 |
msgid "Singe License"
|
1564 |
msgstr "Licence Unique"
|
1565 |
|
1566 |
-
#: dashboard/adrotate-info.php:
|
1567 |
#, fuzzy
|
1568 |
msgid "For one WordPress installation."
|
1569 |
msgstr "Pour une installation Wordpress."
|
1570 |
|
1571 |
-
#: dashboard/adrotate-info.php:
|
1572 |
-
#: dashboard/adrotate-info.php:
|
1573 |
-
#: dashboard/adrotate-info.php:
|
1574 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1575 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1576 |
#, fuzzy
|
1577 |
msgid "Buy now"
|
1578 |
msgstr "Achetez AdRotate Professionel"
|
1579 |
|
1580 |
-
#: dashboard/adrotate-info.php:
|
1581 |
#, fuzzy
|
1582 |
msgid "Duo License"
|
1583 |
msgstr "Licence Duo"
|
1584 |
|
1585 |
-
#: dashboard/adrotate-info.php:
|
1586 |
#, fuzzy
|
1587 |
msgid "For two WordPress installations."
|
1588 |
msgstr "Pour deux installations Wordpress."
|
1589 |
|
1590 |
-
#: dashboard/adrotate-info.php:
|
1591 |
#, fuzzy
|
1592 |
msgid "Multi License"
|
1593 |
msgstr "Licence Multiple"
|
1594 |
|
1595 |
-
#: dashboard/adrotate-info.php:
|
1596 |
#, fuzzy
|
1597 |
msgid " For up to five WordPress installations."
|
1598 |
msgstr "Pour un max de cinq installation Wordpress."
|
1599 |
|
1600 |
-
#: dashboard/adrotate-info.php:
|
1601 |
#, fuzzy
|
1602 |
msgid "Developer License"
|
1603 |
msgstr "Licence de Developpeur"
|
1604 |
|
1605 |
-
#: dashboard/adrotate-info.php:
|
1606 |
#, fuzzy
|
1607 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1608 |
msgstr ""
|
1609 |
"Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
|
1610 |
"réseaux."
|
1611 |
|
1612 |
-
#: dashboard/adrotate-info.php:
|
1613 |
#, fuzzy
|
1614 |
msgid "Network License"
|
1615 |
msgstr "Licence Réseau"
|
1616 |
|
1617 |
-
#: dashboard/adrotate-info.php:
|
1618 |
#, fuzzy
|
1619 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1620 |
msgstr ""
|
1621 |
"Mettez en place votre propre réseau de publicité sur une installation "
|
1622 |
"Wordpress Multisite."
|
1623 |
|
1624 |
-
#: dashboard/adrotate-info.php:
|
1625 |
#, fuzzy
|
1626 |
msgid "Compare licenses"
|
1627 |
msgstr "Comparer les licences"
|
1628 |
|
1629 |
-
#: dashboard/adrotate-info.php:
|
1630 |
#, fuzzy
|
1631 |
msgid "Not sure which license is for you? Compare them..."
|
1632 |
msgstr ""
|
1633 |
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
1634 |
|
1635 |
-
#: dashboard/adrotate-info.php:
|
1636 |
#, fuzzy
|
1637 |
msgid "All Licenses"
|
1638 |
msgstr "Toutes les licences"
|
1639 |
|
1640 |
-
#: dashboard/adrotate-info.php:
|
1641 |
#, fuzzy
|
1642 |
msgid "Get more features with AdRotate Pro"
|
1643 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
1644 |
|
1645 |
-
#: dashboard/adrotate-info.php:
|
1646 |
#, fuzzy
|
1647 |
msgid ""
|
1648 |
"Benefit from extra features to reinforce your income with advertising "
|
@@ -1654,27 +1632,27 @@ msgstr ""
|
|
1654 |
"outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
|
1655 |
"la version gratuite."
|
1656 |
|
1657 |
-
#: dashboard/adrotate-info.php:
|
1658 |
#, fuzzy
|
1659 |
msgid "or go to the"
|
1660 |
msgstr "Aller"
|
1661 |
|
1662 |
-
#: dashboard/adrotate-info.php:
|
1663 |
#, fuzzy
|
1664 |
msgid "Support AdRotate"
|
1665 |
msgstr "Soutenez AdRotate"
|
1666 |
|
1667 |
-
#: dashboard/adrotate-info.php:
|
1668 |
#, fuzzy
|
1669 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1670 |
msgstr "Votre don permettra d'assurer le développement continu de AdRotate!"
|
1671 |
|
1672 |
-
#: dashboard/adrotate-info.php:
|
1673 |
#, fuzzy
|
1674 |
msgid "AdRotate is brought to you by"
|
1675 |
msgstr "AdRotate est offert par"
|
1676 |
|
1677 |
-
#: dashboard/adrotate-info.php:
|
1678 |
#, fuzzy
|
1679 |
msgid ""
|
1680 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
@@ -1686,12 +1664,12 @@ msgstr ""
|
|
1686 |
"personnalisation de thème ou pour la migration de votre site entier, visitez "
|
1687 |
"mon site pour tous les détails!"
|
1688 |
|
1689 |
-
#: dashboard/adrotate-info.php:
|
1690 |
#, fuzzy
|
1691 |
msgid "Find out more"
|
1692 |
msgstr "En savoir plus"
|
1693 |
|
1694 |
-
#: dashboard/adrotate-info.php:
|
1695 |
#, fuzzy
|
1696 |
msgid "Follow"
|
1697 |
msgstr "Suivre"
|
@@ -2338,8 +2316,6 @@ msgstr "Visible jusqu'à"
|
|
2338 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2339 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2340 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2341 |
-
#: dashboard/server/adrotate-active.php:25
|
2342 |
-
#: dashboard/server/adrotate-error.php:26
|
2343 |
#, fuzzy
|
2344 |
msgid "Clicks"
|
2345 |
msgstr "Clicks"
|
@@ -2454,7 +2430,6 @@ msgstr "Mettre à zéro les statistiques"
|
|
2454 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2455 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2456 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
2457 |
-
#: dashboard/server/adrotate-active.php:20
|
2458 |
#, fuzzy
|
2459 |
msgid "Start / End"
|
2460 |
msgstr "Début / Fin"
|
@@ -2462,8 +2437,6 @@ msgstr "Début / Fin"
|
|
2462 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2463 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2464 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2465 |
-
#: dashboard/server/adrotate-active.php:21
|
2466 |
-
#: dashboard/server/adrotate-error.php:22
|
2467 |
#, fuzzy
|
2468 |
msgid "Title"
|
2469 |
msgstr "Titre :"
|
@@ -2472,8 +2445,6 @@ msgstr "Titre :"
|
|
2472 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2473 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2474 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2475 |
-
#: dashboard/server/adrotate-active.php:27
|
2476 |
-
#: dashboard/server/adrotate-error.php:28
|
2477 |
#, fuzzy
|
2478 |
msgid "CTR"
|
2479 |
msgstr "CTR"
|
@@ -2557,15 +2528,11 @@ msgstr ""
|
|
2557 |
|
2558 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2559 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2560 |
-
#: dashboard/server/adrotate-active.php:22
|
2561 |
-
#: dashboard/server/adrotate-error.php:23
|
2562 |
#, fuzzy
|
2563 |
msgid "Weight"
|
2564 |
msgstr "Importance"
|
2565 |
|
2566 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2567 |
-
#: dashboard/server/adrotate-active.php:23
|
2568 |
-
#: dashboard/server/adrotate-error.php:24
|
2569 |
#, fuzzy
|
2570 |
msgid "Shown"
|
2571 |
msgstr "Montré"
|
@@ -2574,10 +2541,6 @@ msgstr "Montré"
|
|
2574 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2575 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2576 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2577 |
-
#: dashboard/server/adrotate-active.php:24
|
2578 |
-
#: dashboard/server/adrotate-active.php:26
|
2579 |
-
#: dashboard/server/adrotate-error.php:25
|
2580 |
-
#: dashboard/server/adrotate-error.php:27
|
2581 |
#, fuzzy
|
2582 |
msgid "Today"
|
2583 |
msgstr "Aujourd'hui"
|
@@ -3034,152 +2997,147 @@ msgstr "Aucun groupe n'a été créé!"
|
|
3034 |
msgid "Statistics for group"
|
3035 |
msgstr "Statistiques pour le groupe"
|
3036 |
|
3037 |
-
#: dashboard/server/adrotate-active.php:12
|
3038 |
#, fuzzy
|
3039 |
-
msgid "
|
3040 |
-
msgstr "
|
3041 |
|
3042 |
-
#: dashboard/server/adrotate-active.php:13
|
3043 |
#, fuzzy
|
3044 |
-
msgid ""
|
3045 |
-
"
|
3046 |
-
"
|
3047 |
-
msgstr ""
|
3048 |
-
"
|
3049 |
-
"
|
3050 |
|
3051 |
-
#: dashboard/server/adrotate-active.php:19
|
3052 |
#, fuzzy
|
3053 |
-
msgid "
|
3054 |
-
msgstr "
|
3055 |
|
3056 |
-
#: dashboard/server/adrotate-active.php:74
|
3057 |
-
#: dashboard/server/adrotate-error.php:76
|
3058 |
#, fuzzy
|
3059 |
-
msgid "
|
3060 |
-
msgstr "
|
3061 |
|
3062 |
-
#: dashboard/server/adrotate-error.php:12
|
3063 |
#, fuzzy
|
3064 |
-
msgid "
|
3065 |
-
msgstr "Publicités
|
3066 |
|
3067 |
-
#: dashboard/server/adrotate-error.php:13
|
3068 |
#, fuzzy
|
3069 |
-
msgid "
|
3070 |
-
|
|
|
|
|
|
|
|
|
3071 |
|
3072 |
-
#: dashboard/server/adrotate-error.php:19
|
3073 |
#, fuzzy
|
3074 |
-
msgid "Updated"
|
3075 |
-
msgstr "Mis à jour"
|
3076 |
|
3077 |
-
#: dashboard/server/adrotate-error.php:20
|
3078 |
#, fuzzy
|
3079 |
-
msgid "
|
3080 |
-
msgstr "
|
3081 |
|
3082 |
-
#: dashboard/server/adrotate-error.php:21
|
3083 |
#, fuzzy
|
3084 |
-
msgid "
|
3085 |
-
msgstr "
|
3086 |
|
3087 |
-
#: dashboard/server/adrotate-settings.php:15
|
3088 |
#, fuzzy
|
3089 |
-
msgid "AdRotate
|
3090 |
-
msgstr "
|
3091 |
|
3092 |
-
#: dashboard/server/adrotate-settings.php:21
|
3093 |
#, fuzzy
|
3094 |
-
msgid ""
|
3095 |
-
|
3096 |
-
"synchronised regularly."
|
3097 |
-
msgstr ""
|
3098 |
-
"Lier ce site web à un serveur Adrotate pour que vos publicités et vos "
|
3099 |
-
"statistiques soient synchronisées regulièrement."
|
3100 |
|
3101 |
-
#: dashboard/server/adrotate-settings.php:24
|
3102 |
#, fuzzy
|
3103 |
-
msgid "
|
3104 |
-
msgstr "
|
3105 |
|
3106 |
-
#: dashboard/server/adrotate-settings.php:27
|
3107 |
#, fuzzy
|
3108 |
-
msgid "
|
3109 |
-
msgstr "
|
3110 |
|
3111 |
-
#: dashboard/server/adrotate-settings.php:27
|
3112 |
#, fuzzy
|
3113 |
-
msgid "
|
3114 |
-
msgstr "
|
3115 |
|
3116 |
-
#: dashboard/server/adrotate-settings.php:40
|
3117 |
#, fuzzy
|
3118 |
-
msgid "
|
3119 |
-
|
|
|
|
|
|
|
|
|
3120 |
|
3121 |
-
#: dashboard/server/adrotate-settings.php:41
|
3122 |
#, fuzzy
|
3123 |
-
msgid ""
|
3124 |
-
|
3125 |
-
"AdRollr website."
|
3126 |
-
msgstr ""
|
3127 |
-
"Vous pouvez recevoir votre clé de serveur de votre installation AdRotate "
|
3128 |
-
"Server ou du site AdRollr."
|
3129 |
|
3130 |
-
#: dashboard/server/adrotate-settings.php:41
|
3131 |
#, fuzzy
|
3132 |
-
msgid ""
|
3133 |
-
|
3134 |
-
"as a password!"
|
3135 |
-
msgstr ""
|
3136 |
-
"Vous ne devez pas partager votre clé. Traitez cette clé comme un mot de "
|
3137 |
-
"passe!"
|
3138 |
|
3139 |
-
#: dashboard/server/adrotate-settings.php:44
|
3140 |
#, fuzzy
|
3141 |
-
msgid "
|
3142 |
-
msgstr "
|
3143 |
|
3144 |
-
#: dashboard/server/adrotate-settings.php:46
|
3145 |
#, fuzzy
|
3146 |
-
msgid "
|
3147 |
-
msgstr "
|
3148 |
|
3149 |
-
#: dashboard/server/adrotate-settings.php:46
|
3150 |
#, fuzzy
|
3151 |
-
msgid ""
|
3152 |
-
"
|
3153 |
-
"
|
3154 |
-
msgstr ""
|
3155 |
-
"
|
3156 |
-
"
|
3157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3158 |
|
3159 |
-
#: dashboard/server/adrotate-settings.php:50
|
3160 |
#, fuzzy
|
3161 |
-
msgid "
|
3162 |
-
msgstr "
|
3163 |
|
3164 |
-
#: dashboard/server/adrotate-settings.php:52
|
3165 |
#, fuzzy
|
3166 |
-
msgid ""
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
"
|
3172 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3173 |
|
3174 |
-
#: dashboard/server/adrotate-settings.php:60
|
3175 |
#, fuzzy
|
3176 |
-
msgid "Link to server"
|
3177 |
-
msgstr "Lier au serveur"
|
3178 |
|
3179 |
-
#: dashboard/server/adrotate-settings.php:62
|
3180 |
#, fuzzy
|
3181 |
-
msgid "Unlink from server"
|
3182 |
-
msgstr "Dissocier du serveur"
|
3183 |
|
3184 |
#, fuzzy
|
3185 |
#~ 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: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: en_US\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 1.7.3\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:811
|
20 |
#, fuzzy
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
+
#: adrotate-functions.php:814
|
25 |
#, fuzzy
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
|
28 |
|
29 |
+
#: adrotate-output.php:759
|
30 |
#, fuzzy
|
31 |
msgid "Oh no! Something went wrong!"
|
32 |
msgstr "Oh no! Un problème est survenu!"
|
33 |
|
34 |
+
#: adrotate-output.php:760
|
35 |
#, fuzzy
|
36 |
msgid ""
|
37 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
41 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
42 |
"votre navigateur."
|
43 |
|
44 |
+
#: adrotate-output.php:761
|
45 |
#, fuzzy
|
46 |
msgid ""
|
47 |
"If you have received the url you want to visit via email, you are being "
|
48 |
"tricked!"
|
49 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
50 |
|
51 |
+
#: adrotate-output.php:762
|
52 |
#, fuzzy
|
53 |
msgid "Contact support if the issue persists:"
|
54 |
msgstr "Contactez le support si le soucis persiste :"
|
55 |
|
56 |
+
#: adrotate-output.php:780
|
57 |
#, fuzzy
|
58 |
msgid ""
|
59 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
62 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
63 |
"horaires/géographiques ou n'existe pas!"
|
64 |
|
65 |
+
#: adrotate-output.php:782
|
66 |
#, fuzzy
|
67 |
msgid ""
|
68 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
71 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
72 |
"horaires/géographiques ou n'existe pas!"
|
73 |
|
74 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
75 |
#, fuzzy
|
76 |
msgid ""
|
77 |
"Either there are no banners, they are disabled or none qualified for this "
|
80 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
81 |
"cet endroit!"
|
82 |
|
83 |
+
#: adrotate-output.php:797
|
84 |
#, fuzzy
|
85 |
msgid "Error, no Ad ID set! Check your syntax!"
|
86 |
msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
|
87 |
|
88 |
+
#: adrotate-output.php:803
|
89 |
#, fuzzy
|
90 |
msgid "Error, no group ID set! Check your syntax!"
|
91 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
92 |
|
93 |
+
#: adrotate-output.php:808
|
94 |
#, fuzzy
|
95 |
msgid "Error, group does not exist! Check your syntax!"
|
96 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
97 |
|
98 |
+
#: adrotate-output.php:814
|
99 |
#, fuzzy
|
100 |
msgid ""
|
101 |
"There was an error locating the database tables for AdRotate. Please "
|
105 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
106 |
"extensions. "
|
107 |
|
108 |
+
#: adrotate-output.php:814
|
109 |
#, fuzzy
|
110 |
msgid "If this does not solve the issue please seek support at"
|
111 |
msgstr ""
|
112 |
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
113 |
"support à"
|
114 |
|
115 |
+
#: adrotate-output.php:820
|
116 |
#, fuzzy
|
117 |
msgid "An unknown error occured."
|
118 |
msgstr "Une erreur inconnue s'est produite."
|
119 |
|
120 |
+
#: adrotate-output.php:846
|
121 |
#, fuzzy
|
122 |
msgid "active ad(s) expired."
|
123 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
124 |
|
125 |
+
#: adrotate-output.php:846
|
126 |
#, fuzzy
|
127 |
msgid "Take action now"
|
128 |
msgstr "Agir maintenant"
|
129 |
|
130 |
+
#: adrotate-output.php:848
|
131 |
#, fuzzy
|
132 |
msgid "active ad(s) are about to expire."
|
133 |
msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
134 |
|
135 |
+
#: adrotate-output.php:848
|
136 |
#, fuzzy
|
137 |
msgid "Check it out"
|
138 |
msgstr "Vérifier-le"
|
139 |
|
140 |
+
#: adrotate-output.php:850
|
141 |
#, fuzzy
|
142 |
msgid "active ad(s) with configuration errors."
|
143 |
msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
144 |
|
145 |
+
#: adrotate-output.php:850
|
146 |
#, fuzzy
|
147 |
msgid "Solve this"
|
148 |
msgstr "Résoudre"
|
149 |
|
150 |
+
#: adrotate-output.php:852
|
151 |
#, fuzzy
|
152 |
msgid "ad(s) expired."
|
153 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
154 |
|
155 |
+
#: adrotate-output.php:852
|
156 |
#, fuzzy
|
157 |
msgid "ad(s) are about to expire."
|
158 |
msgstr "publicité(s) sont sur le point d'expirer"
|
159 |
|
160 |
+
#: adrotate-output.php:852
|
161 |
#, fuzzy
|
162 |
msgid "ad(s) with configuration errors."
|
163 |
msgstr "publicité(s) avec des erreurs de configuration."
|
164 |
|
165 |
+
#: adrotate-output.php:852
|
166 |
#, fuzzy
|
167 |
msgid "Fix this as soon as possible"
|
168 |
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
169 |
|
170 |
+
#: adrotate-output.php:864
|
171 |
#, fuzzy
|
172 |
msgid "Learn More"
|
173 |
msgstr "En savoir plus"
|
174 |
|
175 |
+
#: adrotate-output.php:866
|
176 |
msgid ""
|
177 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
178 |
"to the <strong>PRO</strong> version"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: adrotate-output.php:867
|
182 |
msgid "Get more features to even better run your advertising campaigns."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: adrotate-output.php:867
|
186 |
#, fuzzy
|
187 |
msgid "Thank you for your consideration!"
|
188 |
msgstr "Avez-vous fait une sauvegarde de votre base de données?"
|
189 |
|
190 |
+
#: adrotate-output.php:889
|
191 |
msgid ""
|
192 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
193 |
"Pro is in this menu. Check out the"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:889
|
197 |
msgid "manuals"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: adrotate-output.php:889 adrotate-output.php:985
|
201 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
202 |
msgid "and"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: adrotate-output.php:889
|
206 |
msgid "forums"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: adrotate-output.php:925
|
210 |
msgid "Useful Links"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: adrotate-output.php:926 adrotate-output.php:954
|
214 |
msgid "Useful links to learn more about AdRotate"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:928
|
218 |
#, fuzzy
|
219 |
msgid "AdRotate Page"
|
220 |
msgstr "AdRotate Pro"
|
221 |
|
222 |
+
#: adrotate-output.php:929
|
223 |
#, fuzzy
|
224 |
msgid "Getting Started With AdRotate"
|
225 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
226 |
|
227 |
+
#: adrotate-output.php:930
|
228 |
#, fuzzy
|
229 |
msgid "AdRotate manuals"
|
230 |
msgstr "Informations sur Adrotate"
|
231 |
|
232 |
+
#: adrotate-output.php:931
|
233 |
#, fuzzy
|
234 |
msgid "AdRotate Support Forum"
|
235 |
msgstr "Magasin AdRotate"
|
236 |
|
237 |
+
#: adrotate-output.php:932
|
238 |
msgid "WordPress.org Forum"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: adrotate-output.php:956
|
242 |
#, fuzzy
|
243 |
msgid "AdRotate Website."
|
244 |
msgstr "Magasin AdRotate"
|
245 |
|
246 |
+
#: adrotate-output.php:957
|
247 |
#, fuzzy
|
248 |
msgid "AdRotate Getting Started."
|
249 |
msgstr "Paramètres de AdRotate"
|
250 |
|
251 |
+
#: adrotate-output.php:958
|
252 |
msgid "AdRotate Knoweledge base and manuals."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: adrotate-output.php:959
|
256 |
#, fuzzy
|
257 |
msgid "AdRotate Website Forum."
|
258 |
msgstr "Magasin AdRotate"
|
259 |
|
260 |
+
#: adrotate-output.php:960
|
261 |
msgid "WordPress.org Forum."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: adrotate-output.php:977
|
265 |
#, fuzzy
|
266 |
msgid "Help AdRotate Grow"
|
267 |
msgstr "Bloqué avec AdRotate? Je peux vous aider!"
|
268 |
|
269 |
+
#: adrotate-output.php:978
|
270 |
#, fuzzy
|
271 |
msgid "Brought to you by"
|
272 |
msgstr "Présenté par"
|
273 |
|
274 |
+
#: adrotate-output.php:985
|
275 |
msgid ""
|
276 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
277 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: adrotate-output.php:985
|
281 |
msgid "If you find AdRotate useful please leave your honest"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: adrotate-output.php:985
|
285 |
msgid "rating"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: adrotate-output.php:985
|
289 |
#, fuzzy
|
290 |
msgid "review"
|
291 |
msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
|
292 |
|
293 |
+
#: adrotate-output.php:985
|
294 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: adrotate-output.php:988
|
298 |
#, fuzzy
|
299 |
msgid ""
|
300 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
303 |
"Votre guichet unique pour le développement Web, le consulting et toutes les "
|
304 |
"façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
|
305 |
|
306 |
+
#: adrotate-output.php:988
|
307 |
#, fuzzy
|
308 |
msgid "Visit the"
|
309 |
msgstr "Visitez le"
|
310 |
|
311 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
312 |
#, fuzzy
|
313 |
msgid "website"
|
314 |
msgstr "site"
|
315 |
|
316 |
+
#: adrotate-output.php:1018
|
317 |
#, fuzzy
|
318 |
msgid "Available in AdRotate Pro"
|
319 |
msgstr "Disponible dans Adrotate Pro"
|
320 |
|
321 |
+
#: adrotate-output.php:1018
|
322 |
#, fuzzy
|
323 |
msgid "More information..."
|
324 |
msgstr "Plus d'informations..."
|
325 |
|
326 |
+
#: adrotate-output.php:1019
|
327 |
#, fuzzy
|
328 |
msgid "This feature is available in AdRotate Pro"
|
329 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
330 |
|
331 |
+
#: adrotate-output.php:1019
|
332 |
#, fuzzy
|
333 |
msgid "Learn more"
|
334 |
msgstr "En savoir plus"
|
487 |
msgid "AdRotate Pro"
|
488 |
msgstr "AdRotate Pro"
|
489 |
|
490 |
+
#: adrotate.php:110
|
491 |
#, fuzzy
|
492 |
msgid "Manage Ads"
|
493 |
msgstr "Gérer les pubs"
|
494 |
|
495 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
496 |
#, fuzzy
|
497 |
msgid "Manage Groups"
|
498 |
msgstr "Gérer les groupes"
|
499 |
|
500 |
+
#: adrotate.php:112 adrotate.php:441
|
501 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
502 |
#, fuzzy
|
503 |
msgid "Manage Schedules"
|
504 |
msgstr "Gérer"
|
505 |
|
506 |
+
#: adrotate.php:113
|
507 |
#, fuzzy
|
508 |
msgid "Manage Media"
|
509 |
msgstr "Médias :"
|
510 |
|
511 |
+
#: adrotate.php:114
|
512 |
#, fuzzy
|
513 |
msgid "Settings"
|
514 |
msgstr "Paramètres"
|
515 |
|
516 |
+
#: adrotate.php:137
|
517 |
#, fuzzy
|
518 |
msgid "AdRotate Info"
|
519 |
msgstr "Informations sur Adrotate"
|
520 |
|
521 |
+
#: adrotate.php:158
|
522 |
#, fuzzy
|
523 |
msgid "AdRotate Professional"
|
524 |
msgstr "AdRotate professionel"
|
525 |
|
526 |
+
#: adrotate.php:201
|
527 |
#, fuzzy
|
528 |
msgid "Ad Management"
|
529 |
msgstr "Gestion des pubs"
|
530 |
|
531 |
+
#: adrotate.php:204
|
532 |
#, fuzzy
|
533 |
msgid "Ad created"
|
534 |
msgstr "Publicité créée"
|
535 |
|
536 |
+
#: adrotate.php:206
|
537 |
#, fuzzy
|
538 |
msgid "Ad updated"
|
539 |
msgstr "Publicité mise à jour"
|
540 |
|
541 |
+
#: adrotate.php:208
|
542 |
#, fuzzy
|
543 |
msgid "Ad(s) deleted"
|
544 |
msgstr "Publicité(s) supprimée(s)"
|
545 |
|
546 |
+
#: adrotate.php:210
|
547 |
#, fuzzy
|
548 |
msgid "Ad(s) statistics reset"
|
549 |
msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
|
550 |
|
551 |
+
#: adrotate.php:212
|
552 |
#, fuzzy
|
553 |
msgid "Ad(s) renewed"
|
554 |
msgstr "publicité(s) renouvellée(s)"
|
555 |
|
556 |
+
#: adrotate.php:214
|
557 |
#, fuzzy
|
558 |
msgid "Ad(s) deactivated"
|
559 |
msgstr "Publicité(s) désactivée(s)"
|
560 |
|
561 |
+
#: adrotate.php:216
|
562 |
#, fuzzy
|
563 |
msgid "Ad(s) activated"
|
564 |
msgstr "Publicité(s) activée(s)"
|
565 |
|
566 |
+
#: adrotate.php:218
|
567 |
#, fuzzy
|
568 |
msgid ""
|
569 |
"The ad was saved but has an issue which might prevent it from working "
|
572 |
"La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
|
573 |
"fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
|
574 |
|
575 |
+
#: adrotate.php:220
|
576 |
#, fuzzy
|
577 |
msgid "Export created"
|
578 |
msgstr "Publicité créée"
|
579 |
|
580 |
+
#: adrotate.php:224
|
581 |
#, fuzzy
|
582 |
msgid "Action prohibited"
|
583 |
msgstr "Action interdite"
|
584 |
|
585 |
+
#: adrotate.php:226 adrotate.php:374
|
586 |
#, fuzzy
|
587 |
msgid "No data found in selected time period"
|
588 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
589 |
|
590 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
591 |
#, fuzzy
|
592 |
msgid "Manage"
|
593 |
msgstr "Gérer"
|
594 |
|
595 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
596 |
#, fuzzy
|
597 |
msgid "Add New"
|
598 |
msgstr "Ajouter"
|
599 |
|
600 |
+
#: adrotate.php:363
|
601 |
#, fuzzy
|
602 |
msgid "Group Management"
|
603 |
msgstr "Gérer les groupes"
|
604 |
|
605 |
+
#: adrotate.php:366
|
606 |
#, fuzzy
|
607 |
msgid "Group created"
|
608 |
msgstr "Groupe créé"
|
609 |
|
610 |
+
#: adrotate.php:368
|
611 |
#, fuzzy
|
612 |
msgid "Group updated"
|
613 |
msgstr "Groupe mis à jour"
|
614 |
|
615 |
+
#: adrotate.php:370
|
616 |
#, fuzzy
|
617 |
msgid "Group deleted"
|
618 |
msgstr "Groupe supprimé"
|
619 |
|
620 |
+
#: adrotate.php:372
|
621 |
#, fuzzy
|
622 |
msgid "Group including it's Ads deleted"
|
623 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
624 |
|
625 |
+
#: adrotate.php:432
|
626 |
#, fuzzy
|
627 |
msgid "Schedule Management available in AdRotate Pro"
|
628 |
msgstr "Disponible dans Adrotate Pro"
|
629 |
|
630 |
+
#: adrotate.php:442
|
631 |
msgid ""
|
632 |
"Schedule management and multiple schedules per advert is available in "
|
633 |
"AdRotate Pro."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: adrotate.php:442 adrotate.php:529
|
637 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
638 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
639 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
642 |
msgid "More information"
|
643 |
msgstr "Plus d'informations..."
|
644 |
|
645 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
646 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
647 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
648 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
650 |
msgid "Bulk Actions"
|
651 |
msgstr "Actions en vrac"
|
652 |
|
653 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
654 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
655 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
656 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
658 |
msgid "Go"
|
659 |
msgstr "Aller"
|
660 |
|
661 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
662 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
663 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
664 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
665 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
666 |
#, fuzzy
|
667 |
msgid "ID"
|
668 |
msgstr "ID :"
|
669 |
|
670 |
+
#: adrotate.php:460
|
671 |
#, fuzzy
|
672 |
msgid "Start"
|
673 |
msgstr "Début / Fin"
|
674 |
|
675 |
+
#: adrotate.php:460
|
676 |
#, fuzzy
|
677 |
msgid "End"
|
678 |
msgstr "Début / Fin"
|
679 |
|
680 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
681 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
682 |
#, fuzzy
|
683 |
msgid "Ads"
|
684 |
msgstr "Pubs"
|
685 |
|
686 |
+
#: adrotate.php:463
|
687 |
#, fuzzy
|
688 |
msgid "Max Clicks"
|
689 |
msgstr "Clicks"
|
690 |
|
691 |
+
#: adrotate.php:464
|
692 |
#, fuzzy
|
693 |
msgid "Max Impressions"
|
694 |
msgstr "Vues"
|
695 |
|
696 |
+
#: adrotate.php:494
|
697 |
#, fuzzy
|
698 |
msgid "No schedules created yet!"
|
699 |
msgstr "Aucune pub n'a encore été créé!"
|
700 |
|
701 |
+
#: adrotate.php:499
|
702 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: adrotate.php:499 adrotate.php:562
|
706 |
#, fuzzy
|
707 |
msgid "Upgrade today!"
|
708 |
msgstr "Mettre à jour aujourd'hui"
|
709 |
|
710 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
711 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
712 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
713 |
#, fuzzy
|
714 |
msgid "Expires soon."
|
715 |
msgstr "Expire bientôt."
|
716 |
|
717 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
718 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
719 |
#, fuzzy
|
720 |
msgid "Has expired."
|
721 |
msgstr "A expiré."
|
722 |
|
723 |
+
#: adrotate.php:527
|
724 |
#, fuzzy
|
725 |
msgid "Media Management available in AdRotate Pro"
|
726 |
msgstr "Disponible dans Adrotate Pro"
|
727 |
|
728 |
+
#: adrotate.php:529
|
729 |
msgid ""
|
730 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
731 |
"especially useful if you use responsive adverts with multiple images."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: adrotate.php:529
|
735 |
msgid "Media uploading and management is available in AdRotate Pro."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: adrotate.php:531
|
739 |
#, fuzzy
|
740 |
msgid "Upload new banner image"
|
741 |
msgstr "Image :"
|
742 |
|
743 |
+
#: adrotate.php:532
|
744 |
#, fuzzy
|
745 |
msgid "Accepted files are:"
|
746 |
msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
|
747 |
|
748 |
+
#: adrotate.php:532
|
749 |
msgid "Maximum size is 512Kb."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: adrotate.php:532
|
753 |
msgid "Important:"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: adrotate.php:532
|
757 |
msgid ""
|
758 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
759 |
"spaces with a - or _."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: adrotate.php:534
|
763 |
msgid ""
|
764 |
"For responsive adverts make sure the filename is in the following format; "
|
765 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
|
769 |
#, fuzzy
|
770 |
msgid ""
|
771 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
775 |
"\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
|
776 |
"tailles d'écran."
|
777 |
|
778 |
+
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
|
779 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
780 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
781 |
#, fuzzy
|
782 |
msgid "Example:"
|
783 |
msgstr "Exemple :"
|
784 |
|
785 |
+
#: adrotate.php:536
|
786 |
#, fuzzy
|
787 |
msgid ""
|
788 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
791 |
"image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
|
792 |
"pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
|
793 |
|
794 |
+
#: adrotate.php:540
|
795 |
#, fuzzy
|
796 |
msgid "Upload image"
|
797 |
msgstr "Image :"
|
798 |
|
799 |
+
#: adrotate.php:543
|
800 |
msgid "Available banner images in"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
804 |
#, fuzzy
|
805 |
msgid "Name"
|
806 |
msgstr "Nom"
|
807 |
|
808 |
+
#: adrotate.php:549
|
809 |
#, fuzzy
|
810 |
msgid "Actions"
|
811 |
msgstr "Actions en vrac"
|
812 |
|
813 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
814 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
815 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
816 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
817 |
#, fuzzy
|
818 |
msgid "Delete"
|
819 |
msgstr "Effacer"
|
820 |
|
821 |
+
#: adrotate.php:562
|
822 |
msgid ""
|
823 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: adrotate.php:562
|
827 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
831 |
#, fuzzy
|
832 |
msgid "AdRotate Settings"
|
833 |
msgstr "Paramètres de AdRotate"
|
834 |
|
835 |
+
#: adrotate.php:609
|
836 |
#, fuzzy
|
837 |
msgid "Settings saved"
|
838 |
msgstr "Paramètres sauvegardés"
|
839 |
|
840 |
+
#: adrotate.php:611
|
841 |
#, fuzzy
|
842 |
msgid "Database optimized"
|
843 |
msgstr "Base de données optimisée"
|
844 |
|
845 |
+
#: adrotate.php:613
|
846 |
#, fuzzy
|
847 |
msgid "Database repaired"
|
848 |
msgstr "Base de données réparée"
|
849 |
|
850 |
+
#: adrotate.php:615
|
851 |
#, fuzzy
|
852 |
msgid "Ads evaluated and statuses have been corrected where required"
|
853 |
msgstr ""
|
854 |
"Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
|
855 |
|
856 |
+
#: adrotate.php:617
|
857 |
#, fuzzy
|
858 |
msgid "Empty database records removed"
|
859 |
msgstr "Les registres vides de la base de données ont été supprimés"
|
860 |
|
861 |
+
#: adrotate.php:619
|
862 |
#, fuzzy
|
863 |
msgid "Database can only be optimized or cleaned once every hour"
|
864 |
msgstr ""
|
865 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
866 |
|
867 |
+
#: adrotate.php:627
|
868 |
#, fuzzy
|
869 |
msgid "Access Rights"
|
870 |
msgstr "Droits d'Accès"
|
871 |
|
872 |
+
#: adrotate.php:628
|
873 |
#, fuzzy
|
874 |
msgid "Who has access to what?"
|
875 |
msgstr "Qui a accès à quoi?"
|
876 |
|
877 |
+
#: adrotate.php:631
|
878 |
#, fuzzy
|
879 |
msgid "Manage/Add/Edit adverts"
|
880 |
msgstr "Gérer/Ajouter/Modifier les publicités"
|
881 |
|
882 |
+
#: adrotate.php:635
|
883 |
#, fuzzy
|
884 |
msgid "Role to see and add/edit ads."
|
885 |
msgstr "Rôle pour voir et gérer/modifier les publicités."
|
886 |
|
887 |
+
#: adrotate.php:639
|
888 |
#, fuzzy
|
889 |
msgid "Delete/Reset adverts"
|
890 |
msgstr "Supprimer/Mettre à zéro les publicités"
|
891 |
|
892 |
+
#: adrotate.php:643
|
893 |
#, fuzzy
|
894 |
msgid "Role to delete ads and reset stats."
|
895 |
msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
|
896 |
|
897 |
+
#: adrotate.php:647
|
898 |
#, fuzzy
|
899 |
msgid "Manage/Add/Edit groups"
|
900 |
msgstr "Gérer/Ajouter/Modifier les groupes"
|
901 |
|
902 |
+
#: adrotate.php:651
|
903 |
#, fuzzy
|
904 |
msgid "Role to see and add/edit groups."
|
905 |
msgstr "Rôle pour voir et ajouter/modifier les groupes."
|
906 |
|
907 |
+
#: adrotate.php:655
|
908 |
#, fuzzy
|
909 |
msgid "Delete groups"
|
910 |
msgstr "Effacer les groups"
|
911 |
|
912 |
+
#: adrotate.php:659
|
913 |
#, fuzzy
|
914 |
msgid "Role to delete groups."
|
915 |
msgstr "Rôle pour supprimer les groupes."
|
916 |
|
917 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
918 |
+
#: adrotate.php:876
|
919 |
#, fuzzy
|
920 |
msgid "Update Options"
|
921 |
msgstr "Mettre à jour les options"
|
922 |
|
923 |
+
#: adrotate.php:691
|
924 |
#, fuzzy
|
925 |
msgid "Statistics"
|
926 |
msgstr "Statistiques"
|
927 |
|
928 |
+
#: adrotate.php:694
|
929 |
#, fuzzy
|
930 |
msgid "Enable stats"
|
931 |
msgstr "Statistiques activés"
|
932 |
|
933 |
+
#: adrotate.php:696
|
934 |
#, fuzzy
|
935 |
msgid "Track clicks and impressions."
|
936 |
msgstr "Suivi des clicks et des impressions."
|
937 |
|
938 |
+
#: adrotate.php:696
|
939 |
msgid "Disabling this also disables click and impression limits on schedules."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: adrotate.php:700
|
943 |
#, fuzzy
|
944 |
msgid "Impressions timer"
|
945 |
msgstr "Minuterie de impressions"
|
946 |
|
947 |
+
#: adrotate.php:702 adrotate.php:709
|
948 |
#, fuzzy
|
949 |
msgid "Seconds."
|
950 |
msgstr "Secondes."
|
951 |
|
952 |
+
#: adrotate.php:703
|
953 |
#, fuzzy
|
954 |
msgid "Default: 60."
|
955 |
msgstr "Par défaut"
|
956 |
|
957 |
+
#: adrotate.php:703
|
958 |
#, fuzzy
|
959 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
960 |
msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
|
961 |
|
962 |
+
#: adrotate.php:707
|
963 |
#, fuzzy
|
964 |
msgid "Clicks timer"
|
965 |
msgstr "Interval de clicks"
|
966 |
|
967 |
+
#: adrotate.php:710
|
968 |
#, fuzzy
|
969 |
msgid "Default: 86400."
|
970 |
msgstr "Par défaut"
|
971 |
|
972 |
+
#: adrotate.php:710
|
973 |
#, fuzzy
|
974 |
msgid ""
|
975 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
976 |
msgstr ""
|
977 |
"Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
|
978 |
|
979 |
+
#: adrotate.php:715
|
980 |
#, fuzzy
|
981 |
msgid "Bot filter"
|
982 |
msgstr "Filtre de robots"
|
983 |
|
984 |
+
#: adrotate.php:718
|
985 |
#, fuzzy
|
986 |
msgid "User-Agent Filter"
|
987 |
msgstr "Filtrage par User-Agent"
|
988 |
|
989 |
+
#: adrotate.php:721
|
990 |
#, fuzzy
|
991 |
msgid ""
|
992 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
995 |
"Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
|
996 |
"impressions et le clics fait par les robots/crawlers/user-agents."
|
997 |
|
998 |
+
#: adrotate.php:722
|
999 |
#, fuzzy
|
1000 |
msgid ""
|
1001 |
"Keep in mind that this might give false positives. The word 'google' also "
|
1004 |
"Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
|
1005 |
"correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
|
1006 |
|
1007 |
+
#: adrotate.php:722
|
1008 |
#, fuzzy
|
1009 |
msgid "Keep your list up-to-date"
|
1010 |
msgstr "Gardez votre liste à jour"
|
1011 |
|
1012 |
+
#: adrotate.php:723
|
1013 |
#, fuzzy
|
1014 |
msgid ""
|
1015 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
1018 |
"Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
|
1019 |
"sont aussi permis. Tous les autres caractères seront supprimés. "
|
1020 |
|
1021 |
+
#: adrotate.php:724
|
1022 |
#, fuzzy
|
1023 |
msgid ""
|
1024 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
1027 |
"En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
|
1028 |
"bloqués."
|
1029 |
|
1030 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
1031 |
#, fuzzy
|
1032 |
msgid "Learn more about"
|
1033 |
msgstr "En savoir plus sur"
|
1034 |
|
1035 |
+
#: adrotate.php:724
|
1036 |
#, fuzzy
|
1037 |
msgid "user-agents"
|
1038 |
msgstr "user-agents"
|
1039 |
|
1040 |
+
#: adrotate.php:733
|
1041 |
#, fuzzy
|
1042 |
msgid "Miscellaneous"
|
1043 |
msgstr "Divers"
|
1044 |
|
1045 |
+
#: adrotate.php:736
|
1046 |
#, fuzzy
|
1047 |
msgid "Widget alignment"
|
1048 |
msgstr "Alignement du Widget"
|
1049 |
|
1050 |
+
#: adrotate.php:737
|
1051 |
#, fuzzy
|
1052 |
msgid ""
|
1053 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
1056 |
"Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
|
1057 |
"votre thème. Cette fonction peux ne pas régler le soucis!"
|
1058 |
|
1059 |
+
#: adrotate.php:740
|
1060 |
#, fuzzy
|
1061 |
msgid "Widget padding"
|
1062 |
msgstr "Marge interne du Widget"
|
1063 |
|
1064 |
+
#: adrotate.php:741
|
1065 |
#, fuzzy
|
1066 |
msgid ""
|
1067 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
1070 |
"Activez cette option pour supprimer la marge (espace vide) autour des "
|
1071 |
"publicités dans les widgets. Ceci ne fonctionne pas toujours!"
|
1072 |
|
1073 |
+
#: adrotate.php:746 adrotate.php:757
|
1074 |
#, fuzzy
|
1075 |
msgid "NOTICE:"
|
1076 |
msgstr ""
|
1080 |
"votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
|
1081 |
"de données est lente ou ne réponds pas."
|
1082 |
|
1083 |
+
#: adrotate.php:747
|
1084 |
#, fuzzy
|
1085 |
msgid ""
|
1086 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
1093 |
"config.php après la ligne 52 (qui définit un autre hash). De plus, la "
|
1094 |
"fonction \"late init\" doit être activée dans W3 Total Cache."
|
1095 |
|
1096 |
+
#: adrotate.php:751
|
1097 |
#, fuzzy
|
1098 |
msgid "W3 Total Caching"
|
1099 |
msgstr "W3 Total Caching"
|
1100 |
|
1101 |
+
#: adrotate.php:752
|
1102 |
#, fuzzy
|
1103 |
msgid "Check this box if you use W3 Total Caching on your site."
|
1104 |
msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
|
1105 |
|
1106 |
+
#: adrotate.php:758
|
1107 |
#, fuzzy
|
1108 |
msgid ""
|
1109 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
1114 |
"ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
|
1115 |
"support pour le contenu dynamique."
|
1116 |
|
1117 |
+
#: adrotate.php:762
|
1118 |
#, fuzzy
|
1119 |
msgid "WP Super Cache"
|
1120 |
msgstr "WP Super Cache"
|
1121 |
|
1122 |
+
#: adrotate.php:763
|
1123 |
#, fuzzy
|
1124 |
msgid "Check this box if you use WP Super Cache on your site."
|
1125 |
msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
|
1126 |
|
1127 |
+
#: adrotate.php:768
|
1128 |
#, fuzzy
|
1129 |
msgid ""
|
1130 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1135 |
"actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
|
1136 |
"pas fait manuellement."
|
1137 |
|
1138 |
+
#: adrotate.php:768
|
1139 |
#, fuzzy
|
1140 |
msgid ""
|
1141 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1145 |
"widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
|
1146 |
"PHP dans le code d'exclusion vous-même."
|
1147 |
|
1148 |
+
#: adrotate.php:772
|
1149 |
+
msgid "Javascript"
|
1150 |
+
msgstr ""
|
|
|
1151 |
|
1152 |
+
#: adrotate.php:775
|
1153 |
#, fuzzy
|
1154 |
msgid "Load jQuery"
|
1155 |
msgstr "Utilisez jQuery"
|
1156 |
|
1157 |
+
#: adrotate.php:776
|
1158 |
#, fuzzy
|
1159 |
msgid ""
|
1160 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1163 |
"jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
|
1164 |
"le si votre thème ne charge pas jQuery directement."
|
1165 |
|
1166 |
+
#: adrotate.php:779
|
1167 |
#, fuzzy
|
1168 |
msgid "Load in footer?"
|
1169 |
msgstr "Chargement dans le pied de page?"
|
1170 |
|
1171 |
+
#: adrotate.php:780
|
1172 |
#, fuzzy
|
1173 |
msgid ""
|
1174 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1177 |
"Activez cette option si vous voulez charger les bibliothèques dans le pied "
|
1178 |
"de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
|
1179 |
|
1180 |
+
#: adrotate.php:788
|
1181 |
#, fuzzy
|
1182 |
msgid "Maintenance"
|
1183 |
msgstr "Maintenance"
|
1184 |
|
1185 |
+
#: adrotate.php:789
|
1186 |
#, fuzzy
|
1187 |
msgid ""
|
1188 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1197 |
"votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
|
1198 |
"de données est lente ou ne réponds pas."
|
1199 |
|
1200 |
+
#: adrotate.php:804 adrotate.php:806
|
1201 |
#, fuzzy
|
1202 |
msgid "Optimize Database"
|
1203 |
msgstr "Optimiser la base de données"
|
1204 |
|
1205 |
+
#: adrotate.php:806
|
1206 |
#, fuzzy
|
1207 |
msgid "You are about to optimize the AdRotate database."
|
1208 |
msgstr "Vous allez optimiser la base de données de Adrotate."
|
1209 |
|
1210 |
+
#: adrotate.php:806
|
1211 |
#, fuzzy
|
1212 |
msgid "Did you make a backup of your database?"
|
1213 |
msgstr "Avez-vous fait une sauvegarde de votre base de données?"
|
1214 |
|
1215 |
+
#: adrotate.php:806
|
1216 |
#, fuzzy
|
1217 |
msgid ""
|
1218 |
"This may take a moment and may cause your website to respond slow "
|
1221 |
"Cela peut prendre un moment et peut causer à votre site un ralentissement "
|
1222 |
"temporaire!"
|
1223 |
|
1224 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1225 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1226 |
#, fuzzy
|
1227 |
msgid "OK to continue, CANCEL to stop."
|
1228 |
msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
1229 |
|
1230 |
+
#: adrotate.php:807
|
1231 |
#, fuzzy
|
1232 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1233 |
msgstr "Efface les données de surdébit dans les tables de AdRotate."
|
1234 |
|
1235 |
+
#: adrotate.php:808
|
1236 |
#, fuzzy
|
1237 |
msgid ""
|
1238 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1242 |
"changements que vous avez fait. Cela peut varier de rien à des centaines de "
|
1243 |
"KB de données."
|
1244 |
|
1245 |
+
#: adrotate.php:812 adrotate.php:814
|
1246 |
#, fuzzy
|
1247 |
msgid "Clean-up Database"
|
1248 |
msgstr "Nettoyer la base de données"
|
1249 |
|
1250 |
+
#: adrotate.php:814
|
1251 |
#, fuzzy
|
1252 |
msgid ""
|
1253 |
"You are about to clean up your database. This may delete expired schedules "
|
1256 |
"Vous êtes sur le point de nettoyer votre base de données. Cela peut "
|
1257 |
"supprimer des calendriers périmés et des vieilles statistiques.."
|
1258 |
|
1259 |
+
#: adrotate.php:814
|
1260 |
#, fuzzy
|
1261 |
msgid "Are you sure you want to continue?"
|
1262 |
msgstr "Etes-vous certains de vouloir continuer?"
|
1263 |
|
1264 |
+
#: adrotate.php:814 adrotate.php:822
|
1265 |
#, fuzzy
|
1266 |
msgid "This might take a while and may slow down your site during this action!"
|
1267 |
msgstr ""
|
1268 |
"Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
|
1269 |
"interval!"
|
1270 |
|
1271 |
+
#: adrotate.php:815
|
1272 |
#, fuzzy
|
1273 |
msgid "Delete stats older than 356 days (Optional)."
|
1274 |
msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
|
1275 |
|
1276 |
+
#: adrotate.php:816
|
1277 |
#, fuzzy
|
1278 |
msgid ""
|
1279 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1282 |
"AdRotate crée des registres vides lorsque vous commencez à faire des "
|
1283 |
"annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
|
1284 |
|
1285 |
+
#: adrotate.php:816
|
1286 |
#, fuzzy
|
1287 |
msgid ""
|
1288 |
"If you made an ad or group that does not save when you make it use this "
|
1292 |
"sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
|
1293 |
"registres vides."
|
1294 |
|
1295 |
+
#: adrotate.php:816
|
1296 |
#, fuzzy
|
1297 |
msgid ""
|
1298 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1301 |
"En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
|
1302 |
"d'améliorer la vitesse de votre site."
|
1303 |
|
1304 |
+
#: adrotate.php:820
|
1305 |
#, fuzzy
|
1306 |
msgid "Re-evaluate Ads"
|
1307 |
msgstr "Re-évaluer les publicités"
|
1308 |
|
1309 |
+
#: adrotate.php:822
|
1310 |
#, fuzzy
|
1311 |
msgid "Re-evaluate all ads"
|
1312 |
msgstr "Re-évaluer toutes les publicités"
|
1313 |
|
1314 |
+
#: adrotate.php:822
|
1315 |
#, fuzzy
|
1316 |
msgid "You are about to check all ads for errors."
|
1317 |
msgstr "Vous allez véifier l'état de toutes les publicités."
|
1318 |
|
1319 |
+
#: adrotate.php:823
|
1320 |
#, fuzzy
|
1321 |
msgid ""
|
1322 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1326 |
"voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
|
1327 |
"fonctionalité."
|
1328 |
|
1329 |
+
#: adrotate.php:827
|
1330 |
#, fuzzy
|
1331 |
msgid ""
|
1332 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1344 |
"probablement déjà au-delà de la réparation. Affirmer que le site "
|
1345 |
"fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
|
1346 |
|
1347 |
+
#: adrotate.php:835
|
1348 |
#, fuzzy
|
1349 |
msgid "Troubleshooting"
|
1350 |
msgstr "Diagnostic de dépannage"
|
1351 |
|
1352 |
+
#: adrotate.php:838
|
1353 |
#, fuzzy
|
1354 |
msgid "Current version:"
|
1355 |
msgstr "Version actuelle :"
|
1356 |
|
1357 |
+
#: adrotate.php:839
|
1358 |
#, fuzzy
|
1359 |
msgid "Previous version:"
|
1360 |
msgstr "Version antérieure :"
|
1361 |
|
1362 |
+
#: adrotate.php:842
|
1363 |
#, fuzzy
|
1364 |
msgid "Current database version:"
|
1365 |
msgstr "Version actuelle de la base de données :"
|
1366 |
|
1367 |
+
#: adrotate.php:843
|
1368 |
#, fuzzy
|
1369 |
msgid "Previous database version:"
|
1370 |
msgstr "Version antérieure de la base de données :"
|
1371 |
|
1372 |
+
#: adrotate.php:846
|
1373 |
msgid "Ad evaluation next run:"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: adrotate.php:847 adrotate.php:851
|
1377 |
#, fuzzy
|
1378 |
msgid "Not scheduled!"
|
1379 |
msgstr "Pas planifié!"
|
1380 |
|
1381 |
+
#: adrotate.php:850
|
1382 |
msgid "Clean Trackerdata next run:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: adrotate.php:854
|
1386 |
#, fuzzy
|
1387 |
msgid "Current status of adverts"
|
1388 |
msgstr "Etat actuel des publicités"
|
1389 |
|
1390 |
+
#: adrotate.php:855
|
1391 |
#, fuzzy
|
1392 |
msgid "Normal"
|
1393 |
msgstr "Normal"
|
1394 |
|
1395 |
+
#: adrotate.php:855
|
1396 |
#, fuzzy
|
1397 |
msgid "Error"
|
1398 |
msgstr "Erreur"
|
1399 |
|
1400 |
+
#: adrotate.php:855
|
1401 |
#, fuzzy
|
1402 |
msgid "Expired"
|
1403 |
msgstr "Expiré"
|
1404 |
|
1405 |
+
#: adrotate.php:855
|
1406 |
#, fuzzy
|
1407 |
msgid "Expires Soon"
|
1408 |
msgstr "Expire bientôt."
|
1409 |
|
1410 |
+
#: adrotate.php:855
|
1411 |
#, fuzzy
|
1412 |
msgid "Unknown Status"
|
1413 |
msgstr "Statut Inconnu"
|
1414 |
|
1415 |
+
#: adrotate.php:858
|
1416 |
#, fuzzy
|
1417 |
msgid ""
|
1418 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1426 |
"peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
|
1427 |
"une utilisation normale, ils ne doivent pas être activés!"
|
1428 |
|
1429 |
+
#: adrotate.php:862
|
1430 |
#, fuzzy
|
1431 |
msgid "Developer Debug"
|
1432 |
msgstr "Debuggage de développeur"
|
1433 |
|
1434 |
+
#: adrotate.php:864
|
1435 |
#, fuzzy
|
1436 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1437 |
msgstr ""
|
1438 |
"Dépannage des publicités. Si cette option est activée, les données seront "
|
1439 |
"placées sur le site."
|
1440 |
|
1441 |
+
#: adrotate.php:865
|
1442 |
#, fuzzy
|
1443 |
msgid "Show all settings, dashboard routines and related values."
|
1444 |
msgstr ""
|
1445 |
"Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
|
1446 |
"connexes."
|
1447 |
|
1448 |
+
#: adrotate.php:866
|
1449 |
#, fuzzy
|
1450 |
msgid "Show array of all userroles and capabilities."
|
1451 |
msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
|
1452 |
|
1453 |
+
#: adrotate.php:867
|
1454 |
#, fuzzy
|
1455 |
msgid "Review saved advertisers! Visible to advertisers."
|
1456 |
msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
|
1457 |
|
1458 |
+
#: adrotate.php:868
|
1459 |
#, fuzzy
|
1460 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1461 |
msgstr ""
|
1462 |
"Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
|
1463 |
"Visible uniquement aux annonceurs."
|
1464 |
|
1465 |
+
#: adrotate.php:869
|
1466 |
#, fuzzy
|
1467 |
msgid ""
|
1468 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1471 |
"Désactivez les minuteurs pour les clicks et les impressions et activez une "
|
1472 |
"fenêtre d'alerte pour le suivi des clicks."
|
1473 |
|
1474 |
+
#: adrotate.php:870
|
1475 |
#, fuzzy
|
1476 |
msgid "Temporarily disable encryption on the redirect url."
|
1477 |
msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
|
1531 |
msgid "AdRotate News and Developer Blog"
|
1532 |
msgstr "Actus AdRotate et blog du développeur"
|
1533 |
|
1534 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1535 |
#, fuzzy
|
1536 |
msgid "Buy AdRotate Professional"
|
1537 |
msgstr "Achetez AdRotate Professionel"
|
1538 |
|
1539 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1540 |
#, fuzzy
|
1541 |
msgid "Singe License"
|
1542 |
msgstr "Licence Unique"
|
1543 |
|
1544 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1545 |
#, fuzzy
|
1546 |
msgid "For one WordPress installation."
|
1547 |
msgstr "Pour une installation Wordpress."
|
1548 |
|
1549 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1550 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1551 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1552 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1553 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1554 |
#, fuzzy
|
1555 |
msgid "Buy now"
|
1556 |
msgstr "Achetez AdRotate Professionel"
|
1557 |
|
1558 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1559 |
#, fuzzy
|
1560 |
msgid "Duo License"
|
1561 |
msgstr "Licence Duo"
|
1562 |
|
1563 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1564 |
#, fuzzy
|
1565 |
msgid "For two WordPress installations."
|
1566 |
msgstr "Pour deux installations Wordpress."
|
1567 |
|
1568 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1569 |
#, fuzzy
|
1570 |
msgid "Multi License"
|
1571 |
msgstr "Licence Multiple"
|
1572 |
|
1573 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1574 |
#, fuzzy
|
1575 |
msgid " For up to five WordPress installations."
|
1576 |
msgstr "Pour un max de cinq installation Wordpress."
|
1577 |
|
1578 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1579 |
#, fuzzy
|
1580 |
msgid "Developer License"
|
1581 |
msgstr "Licence de Developpeur"
|
1582 |
|
1583 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1584 |
#, fuzzy
|
1585 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1586 |
msgstr ""
|
1587 |
"Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
|
1588 |
"réseaux."
|
1589 |
|
1590 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1591 |
#, fuzzy
|
1592 |
msgid "Network License"
|
1593 |
msgstr "Licence Réseau"
|
1594 |
|
1595 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1596 |
#, fuzzy
|
1597 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1598 |
msgstr ""
|
1599 |
"Mettez en place votre propre réseau de publicité sur une installation "
|
1600 |
"Wordpress Multisite."
|
1601 |
|
1602 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1603 |
#, fuzzy
|
1604 |
msgid "Compare licenses"
|
1605 |
msgstr "Comparer les licences"
|
1606 |
|
1607 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1608 |
#, fuzzy
|
1609 |
msgid "Not sure which license is for you? Compare them..."
|
1610 |
msgstr ""
|
1611 |
"Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
|
1612 |
|
1613 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1614 |
#, fuzzy
|
1615 |
msgid "All Licenses"
|
1616 |
msgstr "Toutes les licences"
|
1617 |
|
1618 |
+
#: dashboard/adrotate-info.php:171
|
1619 |
#, fuzzy
|
1620 |
msgid "Get more features with AdRotate Pro"
|
1621 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
1622 |
|
1623 |
+
#: dashboard/adrotate-info.php:174
|
1624 |
#, fuzzy
|
1625 |
msgid ""
|
1626 |
"Benefit from extra features to reinforce your income with advertising "
|
1632 |
"outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
|
1633 |
"la version gratuite."
|
1634 |
|
1635 |
+
#: dashboard/adrotate-info.php:175
|
1636 |
#, fuzzy
|
1637 |
msgid "or go to the"
|
1638 |
msgstr "Aller"
|
1639 |
|
1640 |
+
#: dashboard/adrotate-info.php:179
|
1641 |
#, fuzzy
|
1642 |
msgid "Support AdRotate"
|
1643 |
msgstr "Soutenez AdRotate"
|
1644 |
|
1645 |
+
#: dashboard/adrotate-info.php:182
|
1646 |
#, fuzzy
|
1647 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1648 |
msgstr "Votre don permettra d'assurer le développement continu de AdRotate!"
|
1649 |
|
1650 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1651 |
#, fuzzy
|
1652 |
msgid "AdRotate is brought to you by"
|
1653 |
msgstr "AdRotate est offert par"
|
1654 |
|
1655 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1656 |
#, fuzzy
|
1657 |
msgid ""
|
1658 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1664 |
"personnalisation de thème ou pour la migration de votre site entier, visitez "
|
1665 |
"mon site pour tous les détails!"
|
1666 |
|
1667 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1668 |
#, fuzzy
|
1669 |
msgid "Find out more"
|
1670 |
msgstr "En savoir plus"
|
1671 |
|
1672 |
+
#: dashboard/adrotate-info.php:193
|
1673 |
#, fuzzy
|
1674 |
msgid "Follow"
|
1675 |
msgstr "Suivre"
|
2316 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2317 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2318 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
2319 |
#, fuzzy
|
2320 |
msgid "Clicks"
|
2321 |
msgstr "Clicks"
|
2430 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2431 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2432 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2433 |
#, fuzzy
|
2434 |
msgid "Start / End"
|
2435 |
msgstr "Début / Fin"
|
2437 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2438 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2439 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2440 |
#, fuzzy
|
2441 |
msgid "Title"
|
2442 |
msgstr "Titre :"
|
2445 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2446 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2447 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2448 |
#, fuzzy
|
2449 |
msgid "CTR"
|
2450 |
msgstr "CTR"
|
2528 |
|
2529 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2530 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2531 |
#, fuzzy
|
2532 |
msgid "Weight"
|
2533 |
msgstr "Importance"
|
2534 |
|
2535 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2536 |
#, fuzzy
|
2537 |
msgid "Shown"
|
2538 |
msgstr "Montré"
|
2541 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2542 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2543 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2544 |
#, fuzzy
|
2545 |
msgid "Today"
|
2546 |
msgstr "Aujourd'hui"
|
2997 |
msgid "Statistics for group"
|
2998 |
msgstr "Statistiques pour le groupe"
|
2999 |
|
|
|
3000 |
#, fuzzy
|
3001 |
+
#~ msgid "AdRotate Server"
|
3002 |
+
#~ msgstr "Serveur AdRotate"
|
3003 |
|
|
|
3004 |
#, fuzzy
|
3005 |
+
#~ msgid ""
|
3006 |
+
#~ "AdRotate server is currently in development and these menus are not "
|
3007 |
+
#~ "functional yet."
|
3008 |
+
#~ msgstr ""
|
3009 |
+
#~ "AdRotate Server est actuellement en développement et ces menus ne sont "
|
3010 |
+
#~ "pas encore fonctionels."
|
3011 |
|
|
|
3012 |
#, fuzzy
|
3013 |
+
#~ msgid "Overview"
|
3014 |
+
#~ msgstr "Vue d'ensemble"
|
3015 |
|
|
|
|
|
3016 |
#, fuzzy
|
3017 |
+
#~ msgid "Javascript Libraries"
|
3018 |
+
#~ msgstr "Librairies Javascript"
|
3019 |
|
|
|
3020 |
#, fuzzy
|
3021 |
+
#~ msgid "Adverts received from server"
|
3022 |
+
#~ msgstr "Publicités reçues du serveur"
|
3023 |
|
|
|
3024 |
#, fuzzy
|
3025 |
+
#~ msgid ""
|
3026 |
+
#~ "These adverts are circulating in the pool of active adverts, served from "
|
3027 |
+
#~ "AdRotate server."
|
3028 |
+
#~ msgstr ""
|
3029 |
+
#~ "Ces publicités sont en circulation dans la séléction de publicités "
|
3030 |
+
#~ "actives servies par AdRotate server."
|
3031 |
|
|
|
3032 |
#, fuzzy
|
3033 |
+
#~ msgid "Added / Updated"
|
3034 |
+
#~ msgstr "Ajouté / Mis à jour"
|
3035 |
|
|
|
3036 |
#, fuzzy
|
3037 |
+
#~ msgid "No ads received yet!"
|
3038 |
+
#~ msgstr "Aucune publicité n'a été reçue pour le moment!"
|
3039 |
|
|
|
3040 |
#, fuzzy
|
3041 |
+
#~ msgid "Erroneous ads from server"
|
3042 |
+
#~ msgstr "Publicités erronées parvenues du serveur"
|
3043 |
|
|
|
3044 |
#, fuzzy
|
3045 |
+
#~ msgid "Adverts served from AdRotate server but having some issues."
|
3046 |
+
#~ msgstr "Publicités provenant du serveur AdRotate mais qui ont des soucis."
|
3047 |
|
|
|
3048 |
#, fuzzy
|
3049 |
+
#~ msgid "Updated"
|
3050 |
+
#~ msgstr "Mis à jour"
|
|
|
|
|
|
|
|
|
3051 |
|
|
|
3052 |
#, fuzzy
|
3053 |
+
#~ msgid "Show from"
|
3054 |
+
#~ msgstr "Montrer de "
|
3055 |
|
|
|
3056 |
#, fuzzy
|
3057 |
+
#~ msgid "Show until"
|
3058 |
+
#~ msgstr "Montrer jusqu'à"
|
3059 |
|
|
|
3060 |
#, fuzzy
|
3061 |
+
#~ msgid "AdRotate Server Settings"
|
3062 |
+
#~ msgstr "Paramètres du serveur AdRotate"
|
3063 |
|
|
|
3064 |
#, fuzzy
|
3065 |
+
#~ msgid ""
|
3066 |
+
#~ "Link this website to an AdRotate server so your adverts and stats are "
|
3067 |
+
#~ "synchronised regularly."
|
3068 |
+
#~ msgstr ""
|
3069 |
+
#~ "Lier ce site web à un serveur Adrotate pour que vos publicités et vos "
|
3070 |
+
#~ "statistiques soient synchronisées regulièrement."
|
3071 |
|
|
|
3072 |
#, fuzzy
|
3073 |
+
#~ msgid "Status"
|
3074 |
+
#~ msgstr "Statut"
|
|
|
|
|
|
|
|
|
3075 |
|
|
|
3076 |
#, fuzzy
|
3077 |
+
#~ msgid "Linked - Adverts can be synced."
|
3078 |
+
#~ msgstr "Lié - Les publicités peuvent être synchronisées"
|
|
|
|
|
|
|
|
|
3079 |
|
|
|
3080 |
#, fuzzy
|
3081 |
+
#~ msgid "Not linked - No adverts will be synced."
|
3082 |
+
#~ msgstr "Lié - Les publicités peuvent être synchronisées"
|
3083 |
|
|
|
3084 |
#, fuzzy
|
3085 |
+
#~ msgid "Server Key"
|
3086 |
+
#~ msgstr "Clé Serveur"
|
3087 |
|
|
|
3088 |
#, fuzzy
|
3089 |
+
#~ msgid ""
|
3090 |
+
#~ "You can get your server key from your AdRotate Server installation or the "
|
3091 |
+
#~ "AdRollr website."
|
3092 |
+
#~ msgstr ""
|
3093 |
+
#~ "Vous pouvez recevoir votre clé de serveur de votre installation AdRotate "
|
3094 |
+
#~ "Server ou du site AdRollr."
|
3095 |
+
|
3096 |
+
#, fuzzy
|
3097 |
+
#~ msgid ""
|
3098 |
+
#~ "You should not share your key with anyone you do not trust. Treat this "
|
3099 |
+
#~ "key as a password!"
|
3100 |
+
#~ msgstr ""
|
3101 |
+
#~ "Vous ne devez pas partager votre clé. Traitez cette clé comme un mot de "
|
3102 |
+
#~ "passe!"
|
3103 |
|
|
|
3104 |
#, fuzzy
|
3105 |
+
#~ msgid "Make this site a puppet"
|
3106 |
+
#~ msgstr "Rendre ce site une \"cellule\""
|
3107 |
|
|
|
3108 |
#, fuzzy
|
3109 |
+
#~ msgid "Have AdRotate use AdRotate Server adverts exclusively."
|
3110 |
+
#~ msgstr "Utilisez les publicités provenant de AdRotate Server uniquement."
|
3111 |
+
|
3112 |
+
#, fuzzy
|
3113 |
+
#~ msgid ""
|
3114 |
+
#~ "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make "
|
3115 |
+
#~ "this installation of AdRotate a puppet for your AdRotate Server."
|
3116 |
+
#~ msgstr ""
|
3117 |
+
#~ "L'activation de cette fonction permet de désactiver toute la gestion "
|
3118 |
+
#~ "locale et de rendre cette installation de AdRotate une cellule de votre "
|
3119 |
+
#~ "serveur AdRotate. "
|
3120 |
+
|
3121 |
+
#, fuzzy
|
3122 |
+
#~ msgid "Hide Server Details"
|
3123 |
+
#~ msgstr "Cacher les détails du serveur"
|
3124 |
+
|
3125 |
+
#, fuzzy
|
3126 |
+
#~ msgid ""
|
3127 |
+
#~ "If you have installed AdRotate Pro for a client or in a Multisite network "
|
3128 |
+
#~ "and want to hide the server details from your users or client."
|
3129 |
+
#~ msgstr ""
|
3130 |
+
#~ "Si vous avez installé AdRotate Pro pour un client ou dans une "
|
3131 |
+
#~ "installation réseau et vous voulez cacher les détails du serveur de vos "
|
3132 |
+
#~ "utilisateurs ou client. "
|
3133 |
|
|
|
3134 |
#, fuzzy
|
3135 |
+
#~ msgid "Link to server"
|
3136 |
+
#~ msgstr "Lier au serveur"
|
3137 |
|
|
|
3138 |
#, fuzzy
|
3139 |
+
#~ msgid "Unlink from server"
|
3140 |
+
#~ msgstr "Dissocier du serveur"
|
3141 |
|
3142 |
#, fuzzy
|
3143 |
#~ msgid "AdRotate Website"
|
language/adrotate-es_ES.mo
CHANGED
Binary file
|
language/adrotate-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
@@ -13,23 +13,23 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
-
#: adrotate-output.php:
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "¡Oh, no! Algo salió mal!"
|
31 |
|
32 |
-
#: adrotate-output.php:
|
33 |
msgid ""
|
34 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
35 |
"Verify if the url used is valid or log in via your browser."
|
@@ -37,7 +37,7 @@ msgstr ""
|
|
37 |
"WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
|
38 |
"Verificar si la url utilizada es válida o acceder a través del navegador."
|
39 |
|
40 |
-
#: adrotate-output.php:
|
41 |
msgid ""
|
42 |
"If you have received the url you want to visit via email, you are being "
|
43 |
"tricked!"
|
@@ -45,11 +45,11 @@ msgstr ""
|
|
45 |
"Si usted ha recibido la url que desea visitar a través del correo "
|
46 |
"electrónico, es posible que le esten engañando!"
|
47 |
|
48 |
-
#: adrotate-output.php:
|
49 |
msgid "Contact support if the issue persists:"
|
50 |
msgstr "Si el problema persiste, contacte con el soporte:"
|
51 |
|
52 |
-
#: adrotate-output.php:
|
53 |
msgid ""
|
54 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
55 |
"restrictions or does not exist!"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
58 |
"restricciones de programa, de geolocalización o no existe!"
|
59 |
|
60 |
-
#: adrotate-output.php:
|
61 |
msgid ""
|
62 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
63 |
"restrictions!"
|
@@ -65,7 +65,7 @@ msgstr ""
|
|
65 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
66 |
"restricciones restricciones de programa o geolocalización!"
|
67 |
|
68 |
-
#: adrotate-output.php:
|
69 |
msgid ""
|
70 |
"Either there are no banners, they are disabled or none qualified for this "
|
71 |
"location!"
|
@@ -73,19 +73,19 @@ msgstr ""
|
|
73 |
"O bien no hay banners, estan desactivados o no estan programados para esta "
|
74 |
"ubicación!"
|
75 |
|
76 |
-
#: adrotate-output.php:
|
77 |
msgid "Error, no Ad ID set! Check your syntax!"
|
78 |
msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
|
79 |
|
80 |
-
#: adrotate-output.php:
|
81 |
msgid "Error, no group ID set! Check your syntax!"
|
82 |
msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
|
83 |
|
84 |
-
#: adrotate-output.php:
|
85 |
msgid "Error, group does not exist! Check your syntax!"
|
86 |
msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
|
87 |
|
88 |
-
#: adrotate-output.php:
|
89 |
msgid ""
|
90 |
"There was an error locating the database tables for AdRotate. Please "
|
91 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -93,182 +93,182 @@ msgstr ""
|
|
93 |
"Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
|
94 |
"desactivar y volver a activar el plugin AdRotate de la página!"
|
95 |
|
96 |
-
#: adrotate-output.php:
|
97 |
msgid "If this does not solve the issue please seek support at"
|
98 |
msgstr "Si esto no resuelve el problema por favor busque apoyo en"
|
99 |
|
100 |
-
#: adrotate-output.php:
|
101 |
msgid "An unknown error occured."
|
102 |
msgstr "Ha ocurrido un error desconocido."
|
103 |
|
104 |
-
#: adrotate-output.php:
|
105 |
msgid "active ad(s) expired."
|
106 |
msgstr "anuncio(s) activo(s) caducó."
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
msgid "Take action now"
|
110 |
msgstr "Tomar medidas ahora"
|
111 |
|
112 |
-
#: adrotate-output.php:
|
113 |
msgid "active ad(s) are about to expire."
|
114 |
msgstr "anuncio(s) activo(s) están a punto de caducar."
|
115 |
|
116 |
-
#: adrotate-output.php:
|
117 |
msgid "Check it out"
|
118 |
msgstr "Compruébelo"
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
msgid "active ad(s) with configuration errors."
|
122 |
msgstr "anuncio(s) activo(s) con errores de configuración."
|
123 |
|
124 |
-
#: adrotate-output.php:
|
125 |
msgid "Solve this"
|
126 |
msgstr "Solucione este"
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "ad(s) expired."
|
130 |
msgstr "anuncio(s) caducado."
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid "ad(s) are about to expire."
|
134 |
msgstr "anuncio(s) están a punto de caducar."
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid "ad(s) with configuration errors."
|
138 |
msgstr "anuncio(s) con errores de configuración."
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
msgid "Fix this as soon as possible"
|
142 |
msgstr "Solucionar esto en cuanto sea posible"
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
#, fuzzy
|
146 |
msgid "Learn More"
|
147 |
msgstr "Aprender más"
|
148 |
|
149 |
-
#: adrotate-output.php:
|
150 |
msgid ""
|
151 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
152 |
"to the <strong>PRO</strong> version"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: adrotate-output.php:
|
156 |
msgid "Get more features to even better run your advertising campaigns."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: adrotate-output.php:
|
160 |
#, fuzzy
|
161 |
msgid "Thank you for your consideration!"
|
162 |
msgstr "Esta notificación se le envía desde su página web"
|
163 |
|
164 |
-
#: adrotate-output.php:
|
165 |
msgid ""
|
166 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
167 |
"Pro is in this menu. Check out the"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: adrotate-output.php:
|
171 |
msgid "manuals"
|
172 |
msgstr "manuales"
|
173 |
|
174 |
-
#: adrotate-output.php:
|
175 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
176 |
msgid "and"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid "forums"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
#, fuzzy
|
185 |
msgid "Useful Links"
|
186 |
msgstr "Enlaces de interés"
|
187 |
|
188 |
-
#: adrotate-output.php:
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
#, fuzzy
|
194 |
msgid "AdRotate Page"
|
195 |
msgstr "AdRotate Pro"
|
196 |
|
197 |
-
#: adrotate-output.php:
|
198 |
#, fuzzy
|
199 |
msgid "Getting Started With AdRotate"
|
200 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
201 |
|
202 |
-
#: adrotate-output.php:
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate manuals"
|
205 |
msgstr "Información de AdRotate"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
#, fuzzy
|
209 |
msgid "AdRotate Support Forum"
|
210 |
msgstr "Tienda AdRotate"
|
211 |
|
212 |
-
#: adrotate-output.php:
|
213 |
msgid "WordPress.org Forum"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
#, fuzzy
|
218 |
msgid "AdRotate Website."
|
219 |
msgstr "Tienda AdRotate"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
#, fuzzy
|
223 |
msgid "AdRotate Getting Started."
|
224 |
msgstr "Ajustes AdRotate"
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid "AdRotate Knoweledge base and manuals."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
#, fuzzy
|
232 |
msgid "AdRotate Website Forum."
|
233 |
msgstr "Tienda AdRotate"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "WordPress.org Forum."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
#, fuzzy
|
241 |
msgid "Help AdRotate Grow"
|
242 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
msgid "Brought to you by"
|
246 |
msgstr "Presentado por"
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
msgid ""
|
250 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
251 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
msgid "If you find AdRotate useful please leave your honest"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
msgid "rating"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
#, fuzzy
|
264 |
msgid "review"
|
265 |
msgstr "Revise el anuncio aquí:"
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid ""
|
273 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
274 |
"out more about what I can do for you!"
|
@@ -276,27 +276,27 @@ msgstr ""
|
|
276 |
"Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
|
277 |
"WordPress! Para saber más sobre lo que puedo hacer por usted!"
|
278 |
|
279 |
-
#: adrotate-output.php:
|
280 |
msgid "Visit the"
|
281 |
msgstr "Visite la"
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid "website"
|
285 |
msgstr "página web"
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid "Available in AdRotate Pro"
|
289 |
msgstr "Disponible en AdRotate Pro"
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "More information..."
|
293 |
msgstr "Más información..."
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
msgid "This feature is available in AdRotate Pro"
|
297 |
msgstr "Esta función está disponible en AdRotate Pro"
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
msgid "Learn more"
|
301 |
msgstr "Aprender más"
|
302 |
|
@@ -425,70 +425,70 @@ msgstr "Información General"
|
|
425 |
msgid "AdRotate Pro"
|
426 |
msgstr "AdRotate Pro"
|
427 |
|
428 |
-
#: adrotate.php:
|
429 |
msgid "Manage Ads"
|
430 |
msgstr "Gestionar Anuncios"
|
431 |
|
432 |
-
#: adrotate.php:
|
433 |
msgid "Manage Groups"
|
434 |
msgstr "Gestionar Grupos"
|
435 |
|
436 |
-
#: adrotate.php:
|
437 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
438 |
#, fuzzy
|
439 |
msgid "Manage Schedules"
|
440 |
msgstr "Gestionar Programas"
|
441 |
|
442 |
-
#: adrotate.php:
|
443 |
#, fuzzy
|
444 |
msgid "Manage Media"
|
445 |
msgstr "Gestionar Medios"
|
446 |
|
447 |
-
#: adrotate.php:
|
448 |
msgid "Settings"
|
449 |
msgstr "Ajustes"
|
450 |
|
451 |
-
#: adrotate.php:
|
452 |
msgid "AdRotate Info"
|
453 |
msgstr "Información de AdRotate"
|
454 |
|
455 |
-
#: adrotate.php:
|
456 |
msgid "AdRotate Professional"
|
457 |
msgstr "AdRotate Profesional"
|
458 |
|
459 |
-
#: adrotate.php:
|
460 |
msgid "Ad Management"
|
461 |
msgstr "Administración de Anuncios"
|
462 |
|
463 |
-
#: adrotate.php:
|
464 |
msgid "Ad created"
|
465 |
msgstr "Anuncio creado"
|
466 |
|
467 |
-
#: adrotate.php:
|
468 |
msgid "Ad updated"
|
469 |
msgstr "Anuncio actualizado"
|
470 |
|
471 |
-
#: adrotate.php:
|
472 |
msgid "Ad(s) deleted"
|
473 |
msgstr "Anuncio(s) eliminado"
|
474 |
|
475 |
-
#: adrotate.php:
|
476 |
msgid "Ad(s) statistics reset"
|
477 |
msgstr "Estadisticas del Anuncio(s) restablecidas"
|
478 |
|
479 |
-
#: adrotate.php:
|
480 |
msgid "Ad(s) renewed"
|
481 |
msgstr "Anuncio(s) renovado"
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "Ad(s) deactivated"
|
485 |
msgstr "Anuncio(s) desactivado"
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "Ad(s) activated"
|
489 |
msgstr "Anuncio(s) activado"
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid ""
|
493 |
"The ad was saved but has an issue which might prevent it from working "
|
494 |
"properly. Review the yellow marked ad."
|
@@ -496,59 +496,59 @@ msgstr ""
|
|
496 |
"El anuncio fue guardado, pero tiene un problema que podría impedir que "
|
497 |
"funcione correctamente. Revise el anuncio marcado de color amarillo."
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
#, fuzzy
|
501 |
msgid "Export created"
|
502 |
msgstr "Exportación Creada"
|
503 |
|
504 |
-
#: adrotate.php:
|
505 |
msgid "Action prohibited"
|
506 |
msgstr "Acción prohibida"
|
507 |
|
508 |
-
#: adrotate.php:
|
509 |
msgid "No data found in selected time period"
|
510 |
msgstr "No se han encontrado datos en el período de tiempo seleccionado"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "Manage"
|
514 |
msgstr "Gestionar"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "Add New"
|
518 |
msgstr "Añadir Nuevo"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid "Group Management"
|
522 |
msgstr "Administración de Grupos"
|
523 |
|
524 |
-
#: adrotate.php:
|
525 |
msgid "Group created"
|
526 |
msgstr "Grupo creado"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
msgid "Group updated"
|
530 |
msgstr "Grupo actualizado"
|
531 |
|
532 |
-
#: adrotate.php:
|
533 |
msgid "Group deleted"
|
534 |
msgstr "Grupo borrado"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
msgid "Group including it's Ads deleted"
|
538 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
#, fuzzy
|
542 |
msgid "Schedule Management available in AdRotate Pro"
|
543 |
msgstr "Disponible en AdRotate Pro"
|
544 |
|
545 |
-
#: adrotate.php:
|
546 |
msgid ""
|
547 |
"Schedule management and multiple schedules per advert is available in "
|
548 |
"AdRotate Pro."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: adrotate.php:
|
552 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
553 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
554 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -557,85 +557,83 @@ msgstr ""
|
|
557 |
msgid "More information"
|
558 |
msgstr "Más información..."
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
562 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
563 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
564 |
msgid "Bulk Actions"
|
565 |
msgstr "Acciones en Lote"
|
566 |
|
567 |
-
#: adrotate.php:
|
568 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
569 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
570 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
571 |
msgid "Go"
|
572 |
msgstr "Aplicar"
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
576 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
577 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
578 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
579 |
-
#: dashboard/server/adrotate-active.php:18
|
580 |
-
#: dashboard/server/adrotate-error.php:18
|
581 |
msgid "ID"
|
582 |
msgstr "ID"
|
583 |
|
584 |
-
#: adrotate.php:
|
585 |
#, fuzzy
|
586 |
msgid "Start"
|
587 |
msgstr "Iniciar"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
#, fuzzy
|
591 |
msgid "End"
|
592 |
msgstr "Finalizar"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
596 |
msgid "Ads"
|
597 |
msgstr "Anuncios"
|
598 |
|
599 |
-
#: adrotate.php:
|
600 |
msgid "Max Clicks"
|
601 |
msgstr "Número máximo de Clics"
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
msgid "Max Impressions"
|
605 |
msgstr "Número máximo de Impresiones"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
#, fuzzy
|
609 |
msgid "No schedules created yet!"
|
610 |
msgstr "Todavia no se han creado programas!"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#, fuzzy
|
614 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
615 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
616 |
|
617 |
-
#: adrotate.php:
|
618 |
#, fuzzy
|
619 |
msgid "Upgrade today!"
|
620 |
msgstr "Hoy"
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
624 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
625 |
msgid "Expires soon."
|
626 |
msgstr "Caduca pronto."
|
627 |
|
628 |
-
#: adrotate.php:
|
629 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
630 |
msgid "Has expired."
|
631 |
msgstr "Ha expirado."
|
632 |
|
633 |
-
#: adrotate.php:
|
634 |
#, fuzzy
|
635 |
msgid "Media Management available in AdRotate Pro"
|
636 |
msgstr "Esta función está disponible en AdRotate Pro"
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
#, fuzzy
|
640 |
msgid ""
|
641 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
@@ -644,32 +642,32 @@ msgstr ""
|
|
644 |
"Cargar las imágenes en la carpeta de banners de AdRotate Pro desde aquí. "
|
645 |
"Esto es especialmente útil si utiliza publicidad con múltiples imágenes."
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
#, fuzzy
|
649 |
msgid "Media uploading and management is available in AdRotate Pro."
|
650 |
msgstr "Esta función está disponible en AdRotate Pro"
|
651 |
|
652 |
-
#: adrotate.php:
|
653 |
#, fuzzy
|
654 |
msgid "Upload new banner image"
|
655 |
msgstr "Cargar una nueva Imagen de Banner"
|
656 |
|
657 |
-
#: adrotate.php:
|
658 |
#, fuzzy
|
659 |
msgid "Accepted files are:"
|
660 |
msgstr "Los archivos aceptados son:"
|
661 |
|
662 |
-
#: adrotate.php:
|
663 |
#, fuzzy
|
664 |
msgid "Maximum size is 512Kb."
|
665 |
msgstr "El tamaño máximo es 512Kb."
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
#, fuzzy
|
669 |
msgid "Important:"
|
670 |
msgstr "Importante:"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
#, fuzzy
|
674 |
msgid ""
|
675 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
@@ -678,7 +676,7 @@ msgstr ""
|
|
678 |
"Asegúrese de que en el nombre de su archivo no contiene espacios ni "
|
679 |
"caracteres especiales. Reemplace los espacios con un - o _."
|
680 |
|
681 |
-
#: adrotate.php:
|
682 |
#, fuzzy
|
683 |
msgid ""
|
684 |
"For responsive adverts make sure the filename is in the following format; "
|
@@ -688,7 +686,7 @@ msgstr ""
|
|
688 |
"siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
|
689 |
"de imágenes del mismo tamaño."
|
690 |
|
691 |
-
#: adrotate.php:
|
692 |
msgid ""
|
693 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
694 |
"filename instead of \".full\" for the various viewports."
|
@@ -697,13 +695,13 @@ msgstr ""
|
|
697 |
"\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
|
698 |
"diferentes visores."
|
699 |
|
700 |
-
#: adrotate.php:
|
701 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
702 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
703 |
msgid "Example:"
|
704 |
msgstr "Ejemplo:"
|
705 |
|
706 |
-
#: adrotate.php:
|
707 |
#, fuzzy
|
708 |
msgid ""
|
709 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -712,33 +710,33 @@ msgstr ""
|
|
712 |
"image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
|
713 |
"distintas ventanas gráficas. Se necesita jQuery."
|
714 |
|
715 |
-
#: adrotate.php:
|
716 |
#, fuzzy
|
717 |
msgid "Upload image"
|
718 |
msgstr "Subir imagen"
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
#, fuzzy
|
722 |
msgid "Available banner images in"
|
723 |
msgstr "Los banners estan disponibles en"
|
724 |
|
725 |
-
#: adrotate.php:
|
726 |
msgid "Name"
|
727 |
msgstr "Nombre"
|
728 |
|
729 |
-
#: adrotate.php:
|
730 |
#, fuzzy
|
731 |
msgid "Actions"
|
732 |
msgstr "Acciones"
|
733 |
|
734 |
-
#: adrotate.php:
|
735 |
-
#: adrotate.php:
|
736 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
737 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
738 |
msgid "Delete"
|
739 |
msgstr "Borrar"
|
740 |
|
741 |
-
#: adrotate.php:
|
742 |
#, fuzzy
|
743 |
msgid ""
|
744 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
@@ -746,163 +744,147 @@ msgstr ""
|
|
746 |
"¡Asegúrese de que las imágenes de banner no se están utilizando en los "
|
747 |
"anuncios cuando las elimine!"
|
748 |
|
749 |
-
#: adrotate.php:
|
750 |
#, fuzzy
|
751 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
752 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
753 |
|
754 |
-
#: adrotate.php:
|
755 |
-
msgid "AdRotate Server"
|
756 |
-
msgstr "Servidor AdRotate"
|
757 |
-
|
758 |
-
#: adrotate.php:608
|
759 |
-
msgid ""
|
760 |
-
"AdRotate server is currently in development and these menus are not "
|
761 |
-
"functional yet."
|
762 |
-
msgstr ""
|
763 |
-
"El servidor AdRotate está actualmente en desarrollo y estos menús aún no son "
|
764 |
-
"funcionales."
|
765 |
-
|
766 |
-
#: adrotate.php:612
|
767 |
-
msgid "Overview"
|
768 |
-
msgstr "Resumen"
|
769 |
-
|
770 |
-
#: adrotate.php:708
|
771 |
msgid "AdRotate Settings"
|
772 |
msgstr "Ajustes AdRotate"
|
773 |
|
774 |
-
#: adrotate.php:
|
775 |
msgid "Settings saved"
|
776 |
msgstr "Ajustes guardados"
|
777 |
|
778 |
-
#: adrotate.php:
|
779 |
msgid "Database optimized"
|
780 |
msgstr "Base de Datos optimizada"
|
781 |
|
782 |
-
#: adrotate.php:
|
783 |
msgid "Database repaired"
|
784 |
msgstr "Base de Datos reparada"
|
785 |
|
786 |
-
#: adrotate.php:
|
787 |
msgid "Ads evaluated and statuses have been corrected where required"
|
788 |
msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
|
789 |
|
790 |
-
#: adrotate.php:
|
791 |
msgid "Empty database records removed"
|
792 |
msgstr "Se han eliminado los registros vacios de la base de datos"
|
793 |
|
794 |
-
#: adrotate.php:
|
795 |
msgid "Database can only be optimized or cleaned once every hour"
|
796 |
msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
|
797 |
|
798 |
-
#: adrotate.php:
|
799 |
msgid "Access Rights"
|
800 |
msgstr "Permisos de acceso"
|
801 |
|
802 |
-
#: adrotate.php:
|
803 |
msgid "Who has access to what?"
|
804 |
msgstr "¿Quién tiene acceso a qué?"
|
805 |
|
806 |
-
#: adrotate.php:
|
807 |
msgid "Manage/Add/Edit adverts"
|
808 |
msgstr "Gestionar/Añadir/Editar anuncios"
|
809 |
|
810 |
-
#: adrotate.php:
|
811 |
msgid "Role to see and add/edit ads."
|
812 |
msgstr "Perfil para ver y añadir/editar los anuncios."
|
813 |
|
814 |
-
#: adrotate.php:
|
815 |
msgid "Delete/Reset adverts"
|
816 |
msgstr "Borrar/Restablecer anuncios"
|
817 |
|
818 |
-
#: adrotate.php:
|
819 |
msgid "Role to delete ads and reset stats."
|
820 |
msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
|
821 |
|
822 |
-
#: adrotate.php:
|
823 |
msgid "Manage/Add/Edit groups"
|
824 |
msgstr "Gestionar/Añadir/Editar grupos"
|
825 |
|
826 |
-
#: adrotate.php:
|
827 |
msgid "Role to see and add/edit groups."
|
828 |
msgstr "Perfil para ver y añadir/editar grupos."
|
829 |
|
830 |
-
#: adrotate.php:
|
831 |
msgid "Delete groups"
|
832 |
msgstr "Eliminar grupos"
|
833 |
|
834 |
-
#: adrotate.php:
|
835 |
msgid "Role to delete groups."
|
836 |
msgstr "Perfil para eliminar grupos"
|
837 |
|
838 |
-
#: adrotate.php:
|
839 |
-
#: adrotate.php:
|
840 |
msgid "Update Options"
|
841 |
msgstr "Actualizar Opciones"
|
842 |
|
843 |
-
#: adrotate.php:
|
844 |
msgid "Statistics"
|
845 |
msgstr "Estadísticas"
|
846 |
|
847 |
-
#: adrotate.php:
|
848 |
msgid "Enable stats"
|
849 |
msgstr "Habilitar las estadísticas"
|
850 |
|
851 |
-
#: adrotate.php:
|
852 |
msgid "Track clicks and impressions."
|
853 |
msgstr "Seguimiento de clics e impresiones."
|
854 |
|
855 |
-
#: adrotate.php:
|
856 |
#, fuzzy
|
857 |
msgid "Disabling this also disables click and impression limits on schedules."
|
858 |
msgstr ""
|
859 |
"Al desactivar esto, también se deshabilitan la limitación de clics e "
|
860 |
"impresiones en el calendario y desactiva los periodos de tiempo."
|
861 |
|
862 |
-
#: adrotate.php:
|
863 |
msgid "Impressions timer"
|
864 |
msgstr "Temporizador de Impresiones"
|
865 |
|
866 |
-
#: adrotate.php:
|
867 |
msgid "Seconds."
|
868 |
msgstr "Segundos."
|
869 |
|
870 |
-
#: adrotate.php:
|
871 |
#, fuzzy
|
872 |
msgid "Default: 60."
|
873 |
msgstr "Predeterminado"
|
874 |
|
875 |
-
#: adrotate.php:
|
876 |
#, fuzzy
|
877 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
878 |
msgstr ""
|
879 |
"Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
|
880 |
|
881 |
-
#: adrotate.php:
|
882 |
msgid "Clicks timer"
|
883 |
msgstr "Temporizador de Clics"
|
884 |
|
885 |
-
#: adrotate.php:
|
886 |
#, fuzzy
|
887 |
msgid "Default: 86400."
|
888 |
msgstr "Predeterminado"
|
889 |
|
890 |
-
#: adrotate.php:
|
891 |
#, fuzzy
|
892 |
msgid ""
|
893 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
894 |
msgstr ""
|
895 |
"Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
|
896 |
|
897 |
-
#: adrotate.php:
|
898 |
msgid "Bot filter"
|
899 |
msgstr "Filtro de Motor de búsqueda"
|
900 |
|
901 |
-
#: adrotate.php:
|
902 |
msgid "User-Agent Filter"
|
903 |
msgstr "Filtro de User-Agent"
|
904 |
|
905 |
-
#: adrotate.php:
|
906 |
msgid ""
|
907 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
908 |
"prevent impressions and clicks counted on them."
|
@@ -911,7 +893,7 @@ msgstr ""
|
|
911 |
"crawlers / user-agents. Para prevenir contabilizar impresiones y clics "
|
912 |
"realizados por ellos."
|
913 |
|
914 |
-
#: adrotate.php:
|
915 |
msgid ""
|
916 |
"Keep in mind that this might give false positives. The word 'google' also "
|
917 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
@@ -919,11 +901,11 @@ msgstr ""
|
|
919 |
"Tenga en cuenta que esto puede dar falsos positivos. La palabra 'google' "
|
920 |
"también coincide con 'googlebot', pero no viceversa. Así que ten cuidado!"
|
921 |
|
922 |
-
#: adrotate.php:
|
923 |
msgid "Keep your list up-to-date"
|
924 |
msgstr "Mantenga su lista al día"
|
925 |
|
926 |
-
#: adrotate.php:
|
927 |
msgid ""
|
928 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
929 |
"other characters are stripped out."
|
@@ -931,7 +913,7 @@ msgstr ""
|
|
931 |
"Utilice solamente palabras con caracteres alfanuméricos, [- _] se permite "
|
932 |
"también. Todos los demás caracteres se eliminaran."
|
933 |
|
934 |
-
#: adrotate.php:
|
935 |
msgid ""
|
936 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
937 |
"well."
|
@@ -939,23 +921,23 @@ msgstr ""
|
|
939 |
"Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
|
940 |
"bloqueados."
|
941 |
|
942 |
-
#: adrotate.php:
|
943 |
msgid "Learn more about"
|
944 |
msgstr "Más información sobre"
|
945 |
|
946 |
-
#: adrotate.php:
|
947 |
msgid "user-agents"
|
948 |
msgstr "user-agents"
|
949 |
|
950 |
-
#: adrotate.php:
|
951 |
msgid "Miscellaneous"
|
952 |
msgstr "Varios"
|
953 |
|
954 |
-
#: adrotate.php:
|
955 |
msgid "Widget alignment"
|
956 |
msgstr "Alineación de Widget"
|
957 |
|
958 |
-
#: adrotate.php:
|
959 |
msgid ""
|
960 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
961 |
"not always help!)"
|
@@ -963,11 +945,11 @@ msgstr ""
|
|
963 |
"Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
|
964 |
"plantillas (theme). (No siempre ayuda!)"
|
965 |
|
966 |
-
#: adrotate.php:
|
967 |
msgid "Widget padding"
|
968 |
msgstr "Relleno de Widget"
|
969 |
|
970 |
-
#: adrotate.php:
|
971 |
msgid ""
|
972 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
973 |
"not always work!)"
|
@@ -975,12 +957,12 @@ msgstr ""
|
|
975 |
"Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
|
976 |
"de los anuncios en los widgets. (No siempre funciona!)"
|
977 |
|
978 |
-
#: adrotate.php:
|
979 |
#, fuzzy
|
980 |
msgid "NOTICE:"
|
981 |
msgstr "Aviso"
|
982 |
|
983 |
-
#: adrotate.php:
|
984 |
msgid ""
|
985 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
986 |
"You need to add the following line to your wp-config.php near the bottom or "
|
@@ -992,15 +974,15 @@ msgstr ""
|
|
992 |
"inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
|
993 |
"función \"late init \" tambien debe estar habilitado en W3 Total Cache."
|
994 |
|
995 |
-
#: adrotate.php:
|
996 |
msgid "W3 Total Caching"
|
997 |
msgstr "W3 Total Cache"
|
998 |
|
999 |
-
#: adrotate.php:
|
1000 |
msgid "Check this box if you use W3 Total Caching on your site."
|
1001 |
msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
|
1002 |
|
1003 |
-
#: adrotate.php:
|
1004 |
msgid ""
|
1005 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
1006 |
"this function will not work. WP Super Cache has discontinued support for "
|
@@ -1010,15 +992,15 @@ msgstr ""
|
|
1010 |
"esta función no funcionará. WP Super Cache ha interrumpido el soporte para "
|
1011 |
"el contenido dinámico."
|
1012 |
|
1013 |
-
#: adrotate.php:
|
1014 |
msgid "WP Super Cache"
|
1015 |
msgstr "WP Super Cache"
|
1016 |
|
1017 |
-
#: adrotate.php:
|
1018 |
msgid "Check this box if you use WP Super Cache on your site."
|
1019 |
msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
|
1020 |
|
1021 |
-
#: adrotate.php:
|
1022 |
msgid ""
|
1023 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1024 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -1027,7 +1009,7 @@ msgstr ""
|
|
1027 |
"caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
|
1028 |
"semana si no se realiza de forma manual."
|
1029 |
|
1030 |
-
#: adrotate.php:
|
1031 |
msgid ""
|
1032 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1033 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -1036,15 +1018,15 @@ msgstr ""
|
|
1036 |
"el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
|
1037 |
"código PHP la exclusión a ti mismo."
|
1038 |
|
1039 |
-
#: adrotate.php:
|
1040 |
-
msgid "Javascript
|
1041 |
-
msgstr "
|
1042 |
|
1043 |
-
#: adrotate.php:
|
1044 |
msgid "Load jQuery"
|
1045 |
msgstr "Cargar jQuery"
|
1046 |
|
1047 |
-
#: adrotate.php:
|
1048 |
msgid ""
|
1049 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1050 |
"theme does not load jQuery already."
|
@@ -1052,11 +1034,11 @@ msgstr ""
|
|
1052 |
"jQuery es necesaria para todas las características Javascript siguientes. "
|
1053 |
"Habilite esta opción si su tema no carga jQuery por defecto."
|
1054 |
|
1055 |
-
#: adrotate.php:
|
1056 |
msgid "Load in footer?"
|
1057 |
msgstr "¿Cargar en el pie de página?"
|
1058 |
|
1059 |
-
#: adrotate.php:
|
1060 |
msgid ""
|
1061 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1062 |
"needs to call wp_footer() for this to work."
|
@@ -1064,11 +1046,11 @@ msgstr ""
|
|
1064 |
"Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
|
1065 |
"tema tiene que llamar a la función wp_footer() para que esto funcione."
|
1066 |
|
1067 |
-
#: adrotate.php:
|
1068 |
msgid "Maintenance"
|
1069 |
msgstr "Mantenimiento"
|
1070 |
|
1071 |
-
#: adrotate.php:
|
1072 |
msgid ""
|
1073 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1074 |
"They only apply to your ads/groups and stats. Not to other settings or other "
|
@@ -1082,19 +1064,19 @@ msgstr ""
|
|
1082 |
"Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
|
1083 |
"cuando se siente o nota que su base de datos va lenta o no responde."
|
1084 |
|
1085 |
-
#: adrotate.php:
|
1086 |
msgid "Optimize Database"
|
1087 |
msgstr "Optimizar la Base de Datos"
|
1088 |
|
1089 |
-
#: adrotate.php:
|
1090 |
msgid "You are about to optimize the AdRotate database."
|
1091 |
msgstr "Vas a optimizar la base de datos AdRotate."
|
1092 |
|
1093 |
-
#: adrotate.php:
|
1094 |
msgid "Did you make a backup of your database?"
|
1095 |
msgstr "¿Hiciste una copia de seguridad de la base de datos?"
|
1096 |
|
1097 |
-
#: adrotate.php:
|
1098 |
msgid ""
|
1099 |
"This may take a moment and may cause your website to respond slow "
|
1100 |
"temporarily!"
|
@@ -1102,16 +1084,16 @@ msgstr ""
|
|
1102 |
"Esto puede tardar un momento y puede hacer que su sitio web responda "
|
1103 |
"lentamente temporalmente!"
|
1104 |
|
1105 |
-
#: adrotate.php:
|
1106 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1107 |
msgid "OK to continue, CANCEL to stop."
|
1108 |
msgstr "OK para continuar, CANCELAR para detenerlo."
|
1109 |
|
1110 |
-
#: adrotate.php:
|
1111 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1112 |
msgstr "Limpiar los datos generales de las tablas AdRotate."
|
1113 |
|
1114 |
-
#: adrotate.php:
|
1115 |
msgid ""
|
1116 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1117 |
"made. This can vary from nothing to hundreds of KiB of data."
|
@@ -1120,11 +1102,11 @@ msgstr ""
|
|
1120 |
"cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
|
1121 |
"datos."
|
1122 |
|
1123 |
-
#: adrotate.php:
|
1124 |
msgid "Clean-up Database"
|
1125 |
msgstr "Limpieza de la Base de Datos"
|
1126 |
|
1127 |
-
#: adrotate.php:
|
1128 |
msgid ""
|
1129 |
"You are about to clean up your database. This may delete expired schedules "
|
1130 |
"and older statistics."
|
@@ -1132,20 +1114,20 @@ msgstr ""
|
|
1132 |
"Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
|
1133 |
"estadísticas más antigüas."
|
1134 |
|
1135 |
-
#: adrotate.php:
|
1136 |
msgid "Are you sure you want to continue?"
|
1137 |
msgstr "¿Está seguro que desea continuar?"
|
1138 |
|
1139 |
-
#: adrotate.php:
|
1140 |
msgid "This might take a while and may slow down your site during this action!"
|
1141 |
msgstr ""
|
1142 |
"Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
|
1143 |
|
1144 |
-
#: adrotate.php:
|
1145 |
msgid "Delete stats older than 356 days (Optional)."
|
1146 |
msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
|
1147 |
|
1148 |
-
#: adrotate.php:
|
1149 |
msgid ""
|
1150 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1151 |
"occasions these records are faulty."
|
@@ -1153,7 +1135,7 @@ msgstr ""
|
|
1153 |
"AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
|
1154 |
"grupos. En raras ocasiones, estos registros son defectuosos."
|
1155 |
|
1156 |
-
#: adrotate.php:
|
1157 |
msgid ""
|
1158 |
"If you made an ad or group that does not save when you make it use this "
|
1159 |
"button to delete those empty records."
|
@@ -1161,7 +1143,7 @@ msgstr ""
|
|
1161 |
"Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
|
1162 |
"utilize este botón para borrar esos registros vacíos."
|
1163 |
|
1164 |
-
#: adrotate.php:
|
1165 |
msgid ""
|
1166 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1167 |
"your site."
|
@@ -1169,19 +1151,19 @@ msgstr ""
|
|
1169 |
"Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
|
1170 |
"velocidad de su sitio."
|
1171 |
|
1172 |
-
#: adrotate.php:
|
1173 |
msgid "Re-evaluate Ads"
|
1174 |
msgstr "Reevaluar Anuncios"
|
1175 |
|
1176 |
-
#: adrotate.php:
|
1177 |
msgid "Re-evaluate all ads"
|
1178 |
msgstr "Reevaluar todos los Anuncios"
|
1179 |
|
1180 |
-
#: adrotate.php:
|
1181 |
msgid "You are about to check all ads for errors."
|
1182 |
msgstr "Vas a comprobar todos los anuncios para localizar errores."
|
1183 |
|
1184 |
-
#: adrotate.php:
|
1185 |
msgid ""
|
1186 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1187 |
"in. Normally you should not need this feature."
|
@@ -1189,7 +1171,7 @@ msgstr ""
|
|
1189 |
"Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
|
1190 |
"algún error. Normalmente no debería necesitar esta función."
|
1191 |
|
1192 |
-
#: adrotate.php:
|
1193 |
msgid ""
|
1194 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1195 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
@@ -1207,64 +1189,64 @@ msgstr ""
|
|
1207 |
"alegar que funcionaba antes de hacer clic en estos botones no es razón "
|
1208 |
"suficiente."
|
1209 |
|
1210 |
-
#: adrotate.php:
|
1211 |
msgid "Troubleshooting"
|
1212 |
msgstr "Solución de problemas"
|
1213 |
|
1214 |
-
#: adrotate.php:
|
1215 |
msgid "Current version:"
|
1216 |
msgstr "Versión actual:"
|
1217 |
|
1218 |
-
#: adrotate.php:
|
1219 |
msgid "Previous version:"
|
1220 |
msgstr "Versión anterior:"
|
1221 |
|
1222 |
-
#: adrotate.php:
|
1223 |
msgid "Current database version:"
|
1224 |
msgstr "Versión actual de la base de datos:"
|
1225 |
|
1226 |
-
#: adrotate.php:
|
1227 |
msgid "Previous database version:"
|
1228 |
msgstr "Versión anterior de la base de datos:"
|
1229 |
|
1230 |
-
#: adrotate.php:
|
1231 |
#, fuzzy
|
1232 |
msgid "Ad evaluation next run:"
|
1233 |
msgstr "Evaluación de Anuncios en la siguiente ejecución:"
|
1234 |
|
1235 |
-
#: adrotate.php:
|
1236 |
msgid "Not scheduled!"
|
1237 |
msgstr "No Programada!"
|
1238 |
|
1239 |
-
#: adrotate.php:
|
1240 |
msgid "Clean Trackerdata next run:"
|
1241 |
msgstr "Ultima ejecución de la limpieza de la base de datos:"
|
1242 |
|
1243 |
-
#: adrotate.php:
|
1244 |
msgid "Current status of adverts"
|
1245 |
msgstr "Estado actual de los anuncios"
|
1246 |
|
1247 |
-
#: adrotate.php:
|
1248 |
msgid "Normal"
|
1249 |
msgstr "Normal"
|
1250 |
|
1251 |
-
#: adrotate.php:
|
1252 |
msgid "Error"
|
1253 |
msgstr "Error"
|
1254 |
|
1255 |
-
#: adrotate.php:
|
1256 |
msgid "Expired"
|
1257 |
msgstr "Caducado"
|
1258 |
|
1259 |
-
#: adrotate.php:
|
1260 |
msgid "Expires Soon"
|
1261 |
msgstr "Caduca Pronto"
|
1262 |
|
1263 |
-
#: adrotate.php:
|
1264 |
msgid "Unknown Status"
|
1265 |
msgstr "Estado Desconocido"
|
1266 |
|
1267 |
-
#: adrotate.php:
|
1268 |
msgid ""
|
1269 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1270 |
"developers to review saved settings or how ads are selected. These can be "
|
@@ -1277,37 +1259,37 @@ msgstr ""
|
|
1277 |
"para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
|
1278 |
"USO CON NORMALIDAD!"
|
1279 |
|
1280 |
-
#: adrotate.php:
|
1281 |
msgid "Developer Debug"
|
1282 |
msgstr "Depurar (Test) del Desarrollador"
|
1283 |
|
1284 |
-
#: adrotate.php:
|
1285 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1286 |
msgstr ""
|
1287 |
"Solucionar problemas de los anuncios y de que forma se seleccionan si los "
|
1288 |
"hay, tiene salida en las aplicaciones para usuario."
|
1289 |
|
1290 |
-
#: adrotate.php:
|
1291 |
msgid "Show all settings, dashboard routines and related values."
|
1292 |
msgstr ""
|
1293 |
"Mostrar todas las configuraciones, las rutinas del panel y los valores "
|
1294 |
"relacionados."
|
1295 |
|
1296 |
-
#: adrotate.php:
|
1297 |
msgid "Show array of all userroles and capabilities."
|
1298 |
msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
|
1299 |
|
1300 |
-
#: adrotate.php:
|
1301 |
msgid "Review saved advertisers! Visible to advertisers."
|
1302 |
msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
|
1303 |
|
1304 |
-
#: adrotate.php:
|
1305 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1306 |
msgstr ""
|
1307 |
"Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
|
1308 |
"Visible sólo a los editores."
|
1309 |
|
1310 |
-
#: adrotate.php:
|
1311 |
msgid ""
|
1312 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1313 |
"clicktracking."
|
@@ -1315,7 +1297,7 @@ msgstr ""
|
|
1315 |
"Deshabilitar contadores de tiempo de clics e impresiones y activar una "
|
1316 |
"ventana de alerta para el seguimiento de clics."
|
1317 |
|
1318 |
-
#: adrotate.php:
|
1319 |
msgid "Temporarily disable encryption on the redirect url."
|
1320 |
msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
|
1321 |
|
@@ -1363,76 +1345,76 @@ msgstr "Está utilizando"
|
|
1363 |
msgid "AdRotate News and Developer Blog"
|
1364 |
msgstr "Noticias y Blog del Desarrollador de AdRotate "
|
1365 |
|
1366 |
-
#: dashboard/adrotate-info.php:
|
1367 |
msgid "Buy AdRotate Professional"
|
1368 |
msgstr "Comprar AdRotate Profesional"
|
1369 |
|
1370 |
-
#: dashboard/adrotate-info.php:
|
1371 |
msgid "Singe License"
|
1372 |
msgstr "Singe Licencia"
|
1373 |
|
1374 |
-
#: dashboard/adrotate-info.php:
|
1375 |
msgid "For one WordPress installation."
|
1376 |
msgstr "Para una instalación de WordPress."
|
1377 |
|
1378 |
-
#: dashboard/adrotate-info.php:
|
1379 |
-
#: dashboard/adrotate-info.php:
|
1380 |
-
#: dashboard/adrotate-info.php:
|
1381 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1382 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1383 |
#, fuzzy
|
1384 |
msgid "Buy now"
|
1385 |
msgstr "Comprar"
|
1386 |
|
1387 |
-
#: dashboard/adrotate-info.php:
|
1388 |
msgid "Duo License"
|
1389 |
msgstr "Duo Licencia"
|
1390 |
|
1391 |
-
#: dashboard/adrotate-info.php:
|
1392 |
msgid "For two WordPress installations."
|
1393 |
msgstr "Para dos instalaciónes de WordPress."
|
1394 |
|
1395 |
-
#: dashboard/adrotate-info.php:
|
1396 |
msgid "Multi License"
|
1397 |
msgstr "Multi Licencia"
|
1398 |
|
1399 |
-
#: dashboard/adrotate-info.php:
|
1400 |
msgid " For up to five WordPress installations."
|
1401 |
msgstr "Para un máximo de cinco instalaciones de WordPress."
|
1402 |
|
1403 |
-
#: dashboard/adrotate-info.php:
|
1404 |
msgid "Developer License"
|
1405 |
msgstr "Developer Licencia"
|
1406 |
|
1407 |
-
#: dashboard/adrotate-info.php:
|
1408 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1409 |
msgstr "Activar AdRotate en ilimitadas instalaciones de WordPress y/o redes."
|
1410 |
|
1411 |
-
#: dashboard/adrotate-info.php:
|
1412 |
msgid "Network License"
|
1413 |
msgstr "Network Licencia"
|
1414 |
|
1415 |
-
#: dashboard/adrotate-info.php:
|
1416 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1417 |
msgstr "Configure su propia red de publicidad en un WordPress Multisite."
|
1418 |
|
1419 |
-
#: dashboard/adrotate-info.php:
|
1420 |
msgid "Compare licenses"
|
1421 |
msgstr "Comparar licencias"
|
1422 |
|
1423 |
-
#: dashboard/adrotate-info.php:
|
1424 |
msgid "Not sure which license is for you? Compare them..."
|
1425 |
msgstr "No está seguro de que licencia es para usted? Comparelas..."
|
1426 |
|
1427 |
-
#: dashboard/adrotate-info.php:
|
1428 |
msgid "All Licenses"
|
1429 |
msgstr "Todas las licencias"
|
1430 |
|
1431 |
-
#: dashboard/adrotate-info.php:
|
1432 |
msgid "Get more features with AdRotate Pro"
|
1433 |
msgstr "Obtenga más funciones con 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 "
|
@@ -1443,23 +1425,23 @@ msgstr ""
|
|
1443 |
"las potentes herramientas que AdRotate Pro le ofrece, además de las "
|
1444 |
"funcionalidades más que fiables incluidas en la versión gratuita."
|
1445 |
|
1446 |
-
#: dashboard/adrotate-info.php:
|
1447 |
msgid "or go to the"
|
1448 |
msgstr "o ir a la"
|
1449 |
|
1450 |
-
#: dashboard/adrotate-info.php:
|
1451 |
msgid "Support AdRotate"
|
1452 |
msgstr "Apoye a AdRotate"
|
1453 |
|
1454 |
-
#: dashboard/adrotate-info.php:
|
1455 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1456 |
msgstr "Su donación asegurará el continuo desarrollo de AdRotate!"
|
1457 |
|
1458 |
-
#: dashboard/adrotate-info.php:
|
1459 |
msgid "AdRotate is brought to you by"
|
1460 |
msgstr "AdRotate es ofrecido por"
|
1461 |
|
1462 |
-
#: dashboard/adrotate-info.php:
|
1463 |
msgid ""
|
1464 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1465 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
@@ -1470,11 +1452,11 @@ msgstr ""
|
|
1470 |
"(Theme) o si necesita trasladar/migrar su sitio completamente. Visite mi "
|
1471 |
"página web para más detalles!"
|
1472 |
|
1473 |
-
#: dashboard/adrotate-info.php:
|
1474 |
msgid "Find out more"
|
1475 |
msgstr "Para saber más"
|
1476 |
|
1477 |
-
#: dashboard/adrotate-info.php:
|
1478 |
msgid "Follow"
|
1479 |
msgstr "Continuar"
|
1480 |
|
@@ -2045,8 +2027,6 @@ msgstr "Desde / Hasta"
|
|
2045 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2046 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2047 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2048 |
-
#: dashboard/server/adrotate-active.php:25
|
2049 |
-
#: dashboard/server/adrotate-error.php:26
|
2050 |
msgid "Clicks"
|
2051 |
msgstr "Clics"
|
2052 |
|
@@ -2146,15 +2126,12 @@ msgstr "Resetear Estadísticas"
|
|
2146 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2147 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2148 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
2149 |
-
#: dashboard/server/adrotate-active.php:20
|
2150 |
msgid "Start / End"
|
2151 |
msgstr "Inio / Final"
|
2152 |
|
2153 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2154 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2155 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2156 |
-
#: dashboard/server/adrotate-active.php:21
|
2157 |
-
#: dashboard/server/adrotate-error.php:22
|
2158 |
msgid "Title"
|
2159 |
msgstr "Título"
|
2160 |
|
@@ -2162,8 +2139,6 @@ msgstr "Título"
|
|
2162 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2163 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2164 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2165 |
-
#: dashboard/server/adrotate-active.php:27
|
2166 |
-
#: dashboard/server/adrotate-error.php:28
|
2167 |
msgid "CTR"
|
2168 |
msgstr "CTR"
|
2169 |
|
@@ -2236,14 +2211,10 @@ msgstr "Exportar"
|
|
2236 |
|
2237 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2238 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2239 |
-
#: dashboard/server/adrotate-active.php:22
|
2240 |
-
#: dashboard/server/adrotate-error.php:23
|
2241 |
msgid "Weight"
|
2242 |
msgstr "Prioridad"
|
2243 |
|
2244 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2245 |
-
#: dashboard/server/adrotate-active.php:23
|
2246 |
-
#: dashboard/server/adrotate-error.php:24
|
2247 |
msgid "Shown"
|
2248 |
msgstr "Mostrado"
|
2249 |
|
@@ -2251,10 +2222,6 @@ msgstr "Mostrado"
|
|
2251 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2252 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2253 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2254 |
-
#: dashboard/server/adrotate-active.php:24
|
2255 |
-
#: dashboard/server/adrotate-active.php:26
|
2256 |
-
#: dashboard/server/adrotate-error.php:25
|
2257 |
-
#: dashboard/server/adrotate-error.php:27
|
2258 |
msgid "Today"
|
2259 |
msgstr "Hoy"
|
2260 |
|
@@ -2635,128 +2602,120 @@ msgstr "No hay grupos creados!"
|
|
2635 |
msgid "Statistics for group"
|
2636 |
msgstr "Estadisticas por Grupo"
|
2637 |
|
2638 |
-
|
2639 |
-
|
2640 |
-
msgstr "Anuncios recibidos desde el servidor"
|
2641 |
|
2642 |
-
|
2643 |
-
|
2644 |
-
"
|
2645 |
-
|
2646 |
-
|
2647 |
-
"
|
2648 |
-
"proporcionados desde el servidor AdRotate."
|
2649 |
|
2650 |
-
|
2651 |
-
|
2652 |
-
msgstr "Añadir / Actualizar"
|
2653 |
|
2654 |
-
|
2655 |
-
|
2656 |
-
msgid "No ads received yet!"
|
2657 |
-
msgstr "Todavia no hay ningún anuncio recibido!"
|
2658 |
|
2659 |
-
|
2660 |
-
|
2661 |
-
msgstr "Anuncios erróneos desde un servidor"
|
2662 |
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
|
|
|
|
2667 |
|
2668 |
-
|
2669 |
-
|
2670 |
-
msgstr "Actualizar"
|
2671 |
|
2672 |
-
|
2673 |
-
|
2674 |
-
msgstr "Mostrar desde"
|
2675 |
|
2676 |
-
|
2677 |
-
|
2678 |
-
msgstr "Mostrar hasta"
|
2679 |
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
|
2684 |
-
|
2685 |
-
|
2686 |
-
"Link this website to an AdRotate server so your adverts and stats are "
|
2687 |
-
"synchronised regularly."
|
2688 |
-
msgstr ""
|
2689 |
-
"Vincular esta página web a un servidor AdRotate para que sus anuncios y las "
|
2690 |
-
"estadísticas esten sincronizados con regularidad."
|
2691 |
|
2692 |
-
|
2693 |
-
|
2694 |
-
msgstr "Estado"
|
2695 |
|
2696 |
-
|
2697 |
-
|
2698 |
-
msgstr "Enlazado - Los Anuncios se pueden sincronizar."
|
2699 |
|
2700 |
-
|
2701 |
-
|
2702 |
-
msgstr "No Enlazado - Se sincronizará sin publicidad."
|
2703 |
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
|
|
|
|
|
|
2707 |
|
2708 |
-
|
2709 |
-
|
2710 |
-
"You can get your server key from your AdRotate Server installation or the "
|
2711 |
-
"AdRollr website."
|
2712 |
-
msgstr ""
|
2713 |
-
"Puede obtener su clave de servidor de la instalación del AdRotate servidor "
|
2714 |
-
"o de la página web AdRollr."
|
2715 |
|
2716 |
-
|
2717 |
-
|
2718 |
-
"You should not share your key with anyone you do not trust. Treat this key "
|
2719 |
-
"as a password!"
|
2720 |
-
msgstr ""
|
2721 |
-
"No debe compartir su clave con nadie que no confía. Debe tratar esta clave "
|
2722 |
-
"como una contraseña!"
|
2723 |
|
2724 |
-
|
2725 |
-
|
2726 |
-
msgstr "Hacer que este sitio "
|
2727 |
|
2728 |
-
|
2729 |
-
|
2730 |
-
msgstr "AdRotate utilice exclusivamente los anuncios del Servidor AdRotate "
|
2731 |
|
2732 |
-
|
2733 |
-
|
2734 |
-
"
|
2735 |
-
|
2736 |
-
|
2737 |
-
"
|
2738 |
-
"esta instalación de AdRotate se nutra de los anuncios de su Servidor "
|
2739 |
-
"AdRotate."
|
2740 |
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
|
|
|
|
|
|
2744 |
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
msgstr ""
|
2750 |
-
|
2751 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2752 |
|
2753 |
-
|
2754 |
-
|
2755 |
-
msgstr "Enlazar al servidor"
|
2756 |
|
2757 |
-
|
2758 |
-
|
2759 |
-
msgstr "Desvincular del servidor"
|
2760 |
|
2761 |
#, fuzzy
|
2762 |
#~ msgid "AdRotate Website"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\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: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.7.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:811
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
+
#: adrotate-functions.php:814
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
+
#: adrotate-output.php:759
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "¡Oh, no! Algo salió mal!"
|
31 |
|
32 |
+
#: adrotate-output.php:760
|
33 |
msgid ""
|
34 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
35 |
"Verify if the url used is valid or log in via your browser."
|
37 |
"WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
|
38 |
"Verificar si la url utilizada es válida o acceder a través del navegador."
|
39 |
|
40 |
+
#: adrotate-output.php:761
|
41 |
msgid ""
|
42 |
"If you have received the url you want to visit via email, you are being "
|
43 |
"tricked!"
|
45 |
"Si usted ha recibido la url que desea visitar a través del correo "
|
46 |
"electrónico, es posible que le esten engañando!"
|
47 |
|
48 |
+
#: adrotate-output.php:762
|
49 |
msgid "Contact support if the issue persists:"
|
50 |
msgstr "Si el problema persiste, contacte con el soporte:"
|
51 |
|
52 |
+
#: adrotate-output.php:780
|
53 |
msgid ""
|
54 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
55 |
"restrictions or does not exist!"
|
57 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
58 |
"restricciones de programa, de geolocalización o no existe!"
|
59 |
|
60 |
+
#: adrotate-output.php:782
|
61 |
msgid ""
|
62 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
63 |
"restrictions!"
|
65 |
"ERROR: El anuncio no está disponible en este momento debido a las "
|
66 |
"restricciones restricciones de programa o geolocalización!"
|
67 |
|
68 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
69 |
msgid ""
|
70 |
"Either there are no banners, they are disabled or none qualified for this "
|
71 |
"location!"
|
73 |
"O bien no hay banners, estan desactivados o no estan programados para esta "
|
74 |
"ubicación!"
|
75 |
|
76 |
+
#: adrotate-output.php:797
|
77 |
msgid "Error, no Ad ID set! Check your syntax!"
|
78 |
msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
|
79 |
|
80 |
+
#: adrotate-output.php:803
|
81 |
msgid "Error, no group ID set! Check your syntax!"
|
82 |
msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
|
83 |
|
84 |
+
#: adrotate-output.php:808
|
85 |
msgid "Error, group does not exist! Check your syntax!"
|
86 |
msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
|
87 |
|
88 |
+
#: adrotate-output.php:814
|
89 |
msgid ""
|
90 |
"There was an error locating the database tables for AdRotate. Please "
|
91 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
93 |
"Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
|
94 |
"desactivar y volver a activar el plugin AdRotate de la página!"
|
95 |
|
96 |
+
#: adrotate-output.php:814
|
97 |
msgid "If this does not solve the issue please seek support at"
|
98 |
msgstr "Si esto no resuelve el problema por favor busque apoyo en"
|
99 |
|
100 |
+
#: adrotate-output.php:820
|
101 |
msgid "An unknown error occured."
|
102 |
msgstr "Ha ocurrido un error desconocido."
|
103 |
|
104 |
+
#: adrotate-output.php:846
|
105 |
msgid "active ad(s) expired."
|
106 |
msgstr "anuncio(s) activo(s) caducó."
|
107 |
|
108 |
+
#: adrotate-output.php:846
|
109 |
msgid "Take action now"
|
110 |
msgstr "Tomar medidas ahora"
|
111 |
|
112 |
+
#: adrotate-output.php:848
|
113 |
msgid "active ad(s) are about to expire."
|
114 |
msgstr "anuncio(s) activo(s) están a punto de caducar."
|
115 |
|
116 |
+
#: adrotate-output.php:848
|
117 |
msgid "Check it out"
|
118 |
msgstr "Compruébelo"
|
119 |
|
120 |
+
#: adrotate-output.php:850
|
121 |
msgid "active ad(s) with configuration errors."
|
122 |
msgstr "anuncio(s) activo(s) con errores de configuración."
|
123 |
|
124 |
+
#: adrotate-output.php:850
|
125 |
msgid "Solve this"
|
126 |
msgstr "Solucione este"
|
127 |
|
128 |
+
#: adrotate-output.php:852
|
129 |
msgid "ad(s) expired."
|
130 |
msgstr "anuncio(s) caducado."
|
131 |
|
132 |
+
#: adrotate-output.php:852
|
133 |
msgid "ad(s) are about to expire."
|
134 |
msgstr "anuncio(s) están a punto de caducar."
|
135 |
|
136 |
+
#: adrotate-output.php:852
|
137 |
msgid "ad(s) with configuration errors."
|
138 |
msgstr "anuncio(s) con errores de configuración."
|
139 |
|
140 |
+
#: adrotate-output.php:852
|
141 |
msgid "Fix this as soon as possible"
|
142 |
msgstr "Solucionar esto en cuanto sea posible"
|
143 |
|
144 |
+
#: adrotate-output.php:864
|
145 |
#, fuzzy
|
146 |
msgid "Learn More"
|
147 |
msgstr "Aprender más"
|
148 |
|
149 |
+
#: adrotate-output.php:866
|
150 |
msgid ""
|
151 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
152 |
"to the <strong>PRO</strong> version"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: adrotate-output.php:867
|
156 |
msgid "Get more features to even better run your advertising campaigns."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:867
|
160 |
#, fuzzy
|
161 |
msgid "Thank you for your consideration!"
|
162 |
msgstr "Esta notificación se le envía desde su página web"
|
163 |
|
164 |
+
#: adrotate-output.php:889
|
165 |
msgid ""
|
166 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
167 |
"Pro is in this menu. Check out the"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: adrotate-output.php:889
|
171 |
msgid "manuals"
|
172 |
msgstr "manuales"
|
173 |
|
174 |
+
#: adrotate-output.php:889 adrotate-output.php:985
|
175 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
176 |
msgid "and"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: adrotate-output.php:889
|
180 |
msgid "forums"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:925
|
184 |
#, fuzzy
|
185 |
msgid "Useful Links"
|
186 |
msgstr "Enlaces de interés"
|
187 |
|
188 |
+
#: adrotate-output.php:926 adrotate-output.php:954
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: adrotate-output.php:928
|
193 |
#, fuzzy
|
194 |
msgid "AdRotate Page"
|
195 |
msgstr "AdRotate Pro"
|
196 |
|
197 |
+
#: adrotate-output.php:929
|
198 |
#, fuzzy
|
199 |
msgid "Getting Started With AdRotate"
|
200 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
201 |
|
202 |
+
#: adrotate-output.php:930
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate manuals"
|
205 |
msgstr "Información de AdRotate"
|
206 |
|
207 |
+
#: adrotate-output.php:931
|
208 |
#, fuzzy
|
209 |
msgid "AdRotate Support Forum"
|
210 |
msgstr "Tienda AdRotate"
|
211 |
|
212 |
+
#: adrotate-output.php:932
|
213 |
msgid "WordPress.org Forum"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: adrotate-output.php:956
|
217 |
#, fuzzy
|
218 |
msgid "AdRotate Website."
|
219 |
msgstr "Tienda AdRotate"
|
220 |
|
221 |
+
#: adrotate-output.php:957
|
222 |
#, fuzzy
|
223 |
msgid "AdRotate Getting Started."
|
224 |
msgstr "Ajustes AdRotate"
|
225 |
|
226 |
+
#: adrotate-output.php:958
|
227 |
msgid "AdRotate Knoweledge base and manuals."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: adrotate-output.php:959
|
231 |
#, fuzzy
|
232 |
msgid "AdRotate Website Forum."
|
233 |
msgstr "Tienda AdRotate"
|
234 |
|
235 |
+
#: adrotate-output.php:960
|
236 |
msgid "WordPress.org Forum."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:977
|
240 |
#, fuzzy
|
241 |
msgid "Help AdRotate Grow"
|
242 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
243 |
|
244 |
+
#: adrotate-output.php:978
|
245 |
msgid "Brought to you by"
|
246 |
msgstr "Presentado por"
|
247 |
|
248 |
+
#: adrotate-output.php:985
|
249 |
msgid ""
|
250 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
251 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: adrotate-output.php:985
|
255 |
msgid "If you find AdRotate useful please leave your honest"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: adrotate-output.php:985
|
259 |
msgid "rating"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: adrotate-output.php:985
|
263 |
#, fuzzy
|
264 |
msgid "review"
|
265 |
msgstr "Revise el anuncio aquí:"
|
266 |
|
267 |
+
#: adrotate-output.php:985
|
268 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: adrotate-output.php:988
|
272 |
msgid ""
|
273 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
274 |
"out more about what I can do for you!"
|
276 |
"Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
|
277 |
"WordPress! Para saber más sobre lo que puedo hacer por usted!"
|
278 |
|
279 |
+
#: adrotate-output.php:988
|
280 |
msgid "Visit the"
|
281 |
msgstr "Visite la"
|
282 |
|
283 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
284 |
msgid "website"
|
285 |
msgstr "página web"
|
286 |
|
287 |
+
#: adrotate-output.php:1018
|
288 |
msgid "Available in AdRotate Pro"
|
289 |
msgstr "Disponible en AdRotate Pro"
|
290 |
|
291 |
+
#: adrotate-output.php:1018
|
292 |
msgid "More information..."
|
293 |
msgstr "Más información..."
|
294 |
|
295 |
+
#: adrotate-output.php:1019
|
296 |
msgid "This feature is available in AdRotate Pro"
|
297 |
msgstr "Esta función está disponible en AdRotate Pro"
|
298 |
|
299 |
+
#: adrotate-output.php:1019
|
300 |
msgid "Learn more"
|
301 |
msgstr "Aprender más"
|
302 |
|
425 |
msgid "AdRotate Pro"
|
426 |
msgstr "AdRotate Pro"
|
427 |
|
428 |
+
#: adrotate.php:110
|
429 |
msgid "Manage Ads"
|
430 |
msgstr "Gestionar Anuncios"
|
431 |
|
432 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
433 |
msgid "Manage Groups"
|
434 |
msgstr "Gestionar Grupos"
|
435 |
|
436 |
+
#: adrotate.php:112 adrotate.php:441
|
437 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
438 |
#, fuzzy
|
439 |
msgid "Manage Schedules"
|
440 |
msgstr "Gestionar Programas"
|
441 |
|
442 |
+
#: adrotate.php:113
|
443 |
#, fuzzy
|
444 |
msgid "Manage Media"
|
445 |
msgstr "Gestionar Medios"
|
446 |
|
447 |
+
#: adrotate.php:114
|
448 |
msgid "Settings"
|
449 |
msgstr "Ajustes"
|
450 |
|
451 |
+
#: adrotate.php:137
|
452 |
msgid "AdRotate Info"
|
453 |
msgstr "Información de AdRotate"
|
454 |
|
455 |
+
#: adrotate.php:158
|
456 |
msgid "AdRotate Professional"
|
457 |
msgstr "AdRotate Profesional"
|
458 |
|
459 |
+
#: adrotate.php:201
|
460 |
msgid "Ad Management"
|
461 |
msgstr "Administración de Anuncios"
|
462 |
|
463 |
+
#: adrotate.php:204
|
464 |
msgid "Ad created"
|
465 |
msgstr "Anuncio creado"
|
466 |
|
467 |
+
#: adrotate.php:206
|
468 |
msgid "Ad updated"
|
469 |
msgstr "Anuncio actualizado"
|
470 |
|
471 |
+
#: adrotate.php:208
|
472 |
msgid "Ad(s) deleted"
|
473 |
msgstr "Anuncio(s) eliminado"
|
474 |
|
475 |
+
#: adrotate.php:210
|
476 |
msgid "Ad(s) statistics reset"
|
477 |
msgstr "Estadisticas del Anuncio(s) restablecidas"
|
478 |
|
479 |
+
#: adrotate.php:212
|
480 |
msgid "Ad(s) renewed"
|
481 |
msgstr "Anuncio(s) renovado"
|
482 |
|
483 |
+
#: adrotate.php:214
|
484 |
msgid "Ad(s) deactivated"
|
485 |
msgstr "Anuncio(s) desactivado"
|
486 |
|
487 |
+
#: adrotate.php:216
|
488 |
msgid "Ad(s) activated"
|
489 |
msgstr "Anuncio(s) activado"
|
490 |
|
491 |
+
#: adrotate.php:218
|
492 |
msgid ""
|
493 |
"The ad was saved but has an issue which might prevent it from working "
|
494 |
"properly. Review the yellow marked ad."
|
496 |
"El anuncio fue guardado, pero tiene un problema que podría impedir que "
|
497 |
"funcione correctamente. Revise el anuncio marcado de color amarillo."
|
498 |
|
499 |
+
#: adrotate.php:220
|
500 |
#, fuzzy
|
501 |
msgid "Export created"
|
502 |
msgstr "Exportación Creada"
|
503 |
|
504 |
+
#: adrotate.php:224
|
505 |
msgid "Action prohibited"
|
506 |
msgstr "Acción prohibida"
|
507 |
|
508 |
+
#: adrotate.php:226 adrotate.php:374
|
509 |
msgid "No data found in selected time period"
|
510 |
msgstr "No se han encontrado datos en el período de tiempo seleccionado"
|
511 |
|
512 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
513 |
msgid "Manage"
|
514 |
msgstr "Gestionar"
|
515 |
|
516 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
517 |
msgid "Add New"
|
518 |
msgstr "Añadir Nuevo"
|
519 |
|
520 |
+
#: adrotate.php:363
|
521 |
msgid "Group Management"
|
522 |
msgstr "Administración de Grupos"
|
523 |
|
524 |
+
#: adrotate.php:366
|
525 |
msgid "Group created"
|
526 |
msgstr "Grupo creado"
|
527 |
|
528 |
+
#: adrotate.php:368
|
529 |
msgid "Group updated"
|
530 |
msgstr "Grupo actualizado"
|
531 |
|
532 |
+
#: adrotate.php:370
|
533 |
msgid "Group deleted"
|
534 |
msgstr "Grupo borrado"
|
535 |
|
536 |
+
#: adrotate.php:372
|
537 |
msgid "Group including it's Ads deleted"
|
538 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
539 |
|
540 |
+
#: adrotate.php:432
|
541 |
#, fuzzy
|
542 |
msgid "Schedule Management available in AdRotate Pro"
|
543 |
msgstr "Disponible en AdRotate Pro"
|
544 |
|
545 |
+
#: adrotate.php:442
|
546 |
msgid ""
|
547 |
"Schedule management and multiple schedules per advert is available in "
|
548 |
"AdRotate Pro."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: adrotate.php:442 adrotate.php:529
|
552 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
553 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
554 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
557 |
msgid "More information"
|
558 |
msgstr "Más información..."
|
559 |
|
560 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
561 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
562 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
563 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
564 |
msgid "Bulk Actions"
|
565 |
msgstr "Acciones en Lote"
|
566 |
|
567 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
568 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
569 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
570 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
571 |
msgid "Go"
|
572 |
msgstr "Aplicar"
|
573 |
|
574 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
575 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
576 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
577 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
578 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
579 |
msgid "ID"
|
580 |
msgstr "ID"
|
581 |
|
582 |
+
#: adrotate.php:460
|
583 |
#, fuzzy
|
584 |
msgid "Start"
|
585 |
msgstr "Iniciar"
|
586 |
|
587 |
+
#: adrotate.php:460
|
588 |
#, fuzzy
|
589 |
msgid "End"
|
590 |
msgstr "Finalizar"
|
591 |
|
592 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
593 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
594 |
msgid "Ads"
|
595 |
msgstr "Anuncios"
|
596 |
|
597 |
+
#: adrotate.php:463
|
598 |
msgid "Max Clicks"
|
599 |
msgstr "Número máximo de Clics"
|
600 |
|
601 |
+
#: adrotate.php:464
|
602 |
msgid "Max Impressions"
|
603 |
msgstr "Número máximo de Impresiones"
|
604 |
|
605 |
+
#: adrotate.php:494
|
606 |
#, fuzzy
|
607 |
msgid "No schedules created yet!"
|
608 |
msgstr "Todavia no se han creado programas!"
|
609 |
|
610 |
+
#: adrotate.php:499
|
611 |
#, fuzzy
|
612 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
613 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
614 |
|
615 |
+
#: adrotate.php:499 adrotate.php:562
|
616 |
#, fuzzy
|
617 |
msgid "Upgrade today!"
|
618 |
msgstr "Hoy"
|
619 |
|
620 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
621 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
622 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
623 |
msgid "Expires soon."
|
624 |
msgstr "Caduca pronto."
|
625 |
|
626 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
627 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
628 |
msgid "Has expired."
|
629 |
msgstr "Ha expirado."
|
630 |
|
631 |
+
#: adrotate.php:527
|
632 |
#, fuzzy
|
633 |
msgid "Media Management available in AdRotate Pro"
|
634 |
msgstr "Esta función está disponible en AdRotate Pro"
|
635 |
|
636 |
+
#: adrotate.php:529
|
637 |
#, fuzzy
|
638 |
msgid ""
|
639 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
642 |
"Cargar las imágenes en la carpeta de banners de AdRotate Pro desde aquí. "
|
643 |
"Esto es especialmente útil si utiliza publicidad con múltiples imágenes."
|
644 |
|
645 |
+
#: adrotate.php:529
|
646 |
#, fuzzy
|
647 |
msgid "Media uploading and management is available in AdRotate Pro."
|
648 |
msgstr "Esta función está disponible en AdRotate Pro"
|
649 |
|
650 |
+
#: adrotate.php:531
|
651 |
#, fuzzy
|
652 |
msgid "Upload new banner image"
|
653 |
msgstr "Cargar una nueva Imagen de Banner"
|
654 |
|
655 |
+
#: adrotate.php:532
|
656 |
#, fuzzy
|
657 |
msgid "Accepted files are:"
|
658 |
msgstr "Los archivos aceptados son:"
|
659 |
|
660 |
+
#: adrotate.php:532
|
661 |
#, fuzzy
|
662 |
msgid "Maximum size is 512Kb."
|
663 |
msgstr "El tamaño máximo es 512Kb."
|
664 |
|
665 |
+
#: adrotate.php:532
|
666 |
#, fuzzy
|
667 |
msgid "Important:"
|
668 |
msgstr "Importante:"
|
669 |
|
670 |
+
#: adrotate.php:532
|
671 |
#, fuzzy
|
672 |
msgid ""
|
673 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
676 |
"Asegúrese de que en el nombre de su archivo no contiene espacios ni "
|
677 |
"caracteres especiales. Reemplace los espacios con un - o _."
|
678 |
|
679 |
+
#: adrotate.php:534
|
680 |
#, fuzzy
|
681 |
msgid ""
|
682 |
"For responsive adverts make sure the filename is in the following format; "
|
686 |
"siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
|
687 |
"de imágenes del mismo tamaño."
|
688 |
|
689 |
+
#: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
|
690 |
msgid ""
|
691 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
692 |
"filename instead of \".full\" for the various viewports."
|
695 |
"\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
|
696 |
"diferentes visores."
|
697 |
|
698 |
+
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
|
699 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
700 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
701 |
msgid "Example:"
|
702 |
msgstr "Ejemplo:"
|
703 |
|
704 |
+
#: adrotate.php:536
|
705 |
#, fuzzy
|
706 |
msgid ""
|
707 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
710 |
"image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
|
711 |
"distintas ventanas gráficas. Se necesita jQuery."
|
712 |
|
713 |
+
#: adrotate.php:540
|
714 |
#, fuzzy
|
715 |
msgid "Upload image"
|
716 |
msgstr "Subir imagen"
|
717 |
|
718 |
+
#: adrotate.php:543
|
719 |
#, fuzzy
|
720 |
msgid "Available banner images in"
|
721 |
msgstr "Los banners estan disponibles en"
|
722 |
|
723 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
724 |
msgid "Name"
|
725 |
msgstr "Nombre"
|
726 |
|
727 |
+
#: adrotate.php:549
|
728 |
#, fuzzy
|
729 |
msgid "Actions"
|
730 |
msgstr "Acciones"
|
731 |
|
732 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
733 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
734 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
735 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
736 |
msgid "Delete"
|
737 |
msgstr "Borrar"
|
738 |
|
739 |
+
#: adrotate.php:562
|
740 |
#, fuzzy
|
741 |
msgid ""
|
742 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
744 |
"¡Asegúrese de que las imágenes de banner no se están utilizando en los "
|
745 |
"anuncios cuando las elimine!"
|
746 |
|
747 |
+
#: adrotate.php:562
|
748 |
#, fuzzy
|
749 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
750 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
751 |
|
752 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
753 |
msgid "AdRotate Settings"
|
754 |
msgstr "Ajustes AdRotate"
|
755 |
|
756 |
+
#: adrotate.php:609
|
757 |
msgid "Settings saved"
|
758 |
msgstr "Ajustes guardados"
|
759 |
|
760 |
+
#: adrotate.php:611
|
761 |
msgid "Database optimized"
|
762 |
msgstr "Base de Datos optimizada"
|
763 |
|
764 |
+
#: adrotate.php:613
|
765 |
msgid "Database repaired"
|
766 |
msgstr "Base de Datos reparada"
|
767 |
|
768 |
+
#: adrotate.php:615
|
769 |
msgid "Ads evaluated and statuses have been corrected where required"
|
770 |
msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
|
771 |
|
772 |
+
#: adrotate.php:617
|
773 |
msgid "Empty database records removed"
|
774 |
msgstr "Se han eliminado los registros vacios de la base de datos"
|
775 |
|
776 |
+
#: adrotate.php:619
|
777 |
msgid "Database can only be optimized or cleaned once every hour"
|
778 |
msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
|
779 |
|
780 |
+
#: adrotate.php:627
|
781 |
msgid "Access Rights"
|
782 |
msgstr "Permisos de acceso"
|
783 |
|
784 |
+
#: adrotate.php:628
|
785 |
msgid "Who has access to what?"
|
786 |
msgstr "¿Quién tiene acceso a qué?"
|
787 |
|
788 |
+
#: adrotate.php:631
|
789 |
msgid "Manage/Add/Edit adverts"
|
790 |
msgstr "Gestionar/Añadir/Editar anuncios"
|
791 |
|
792 |
+
#: adrotate.php:635
|
793 |
msgid "Role to see and add/edit ads."
|
794 |
msgstr "Perfil para ver y añadir/editar los anuncios."
|
795 |
|
796 |
+
#: adrotate.php:639
|
797 |
msgid "Delete/Reset adverts"
|
798 |
msgstr "Borrar/Restablecer anuncios"
|
799 |
|
800 |
+
#: adrotate.php:643
|
801 |
msgid "Role to delete ads and reset stats."
|
802 |
msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
|
803 |
|
804 |
+
#: adrotate.php:647
|
805 |
msgid "Manage/Add/Edit groups"
|
806 |
msgstr "Gestionar/Añadir/Editar grupos"
|
807 |
|
808 |
+
#: adrotate.php:651
|
809 |
msgid "Role to see and add/edit groups."
|
810 |
msgstr "Perfil para ver y añadir/editar grupos."
|
811 |
|
812 |
+
#: adrotate.php:655
|
813 |
msgid "Delete groups"
|
814 |
msgstr "Eliminar grupos"
|
815 |
|
816 |
+
#: adrotate.php:659
|
817 |
msgid "Role to delete groups."
|
818 |
msgstr "Perfil para eliminar grupos"
|
819 |
|
820 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
821 |
+
#: adrotate.php:876
|
822 |
msgid "Update Options"
|
823 |
msgstr "Actualizar Opciones"
|
824 |
|
825 |
+
#: adrotate.php:691
|
826 |
msgid "Statistics"
|
827 |
msgstr "Estadísticas"
|
828 |
|
829 |
+
#: adrotate.php:694
|
830 |
msgid "Enable stats"
|
831 |
msgstr "Habilitar las estadísticas"
|
832 |
|
833 |
+
#: adrotate.php:696
|
834 |
msgid "Track clicks and impressions."
|
835 |
msgstr "Seguimiento de clics e impresiones."
|
836 |
|
837 |
+
#: adrotate.php:696
|
838 |
#, fuzzy
|
839 |
msgid "Disabling this also disables click and impression limits on schedules."
|
840 |
msgstr ""
|
841 |
"Al desactivar esto, también se deshabilitan la limitación de clics e "
|
842 |
"impresiones en el calendario y desactiva los periodos de tiempo."
|
843 |
|
844 |
+
#: adrotate.php:700
|
845 |
msgid "Impressions timer"
|
846 |
msgstr "Temporizador de Impresiones"
|
847 |
|
848 |
+
#: adrotate.php:702 adrotate.php:709
|
849 |
msgid "Seconds."
|
850 |
msgstr "Segundos."
|
851 |
|
852 |
+
#: adrotate.php:703
|
853 |
#, fuzzy
|
854 |
msgid "Default: 60."
|
855 |
msgstr "Predeterminado"
|
856 |
|
857 |
+
#: adrotate.php:703
|
858 |
#, fuzzy
|
859 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
860 |
msgstr ""
|
861 |
"Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
|
862 |
|
863 |
+
#: adrotate.php:707
|
864 |
msgid "Clicks timer"
|
865 |
msgstr "Temporizador de Clics"
|
866 |
|
867 |
+
#: adrotate.php:710
|
868 |
#, fuzzy
|
869 |
msgid "Default: 86400."
|
870 |
msgstr "Predeterminado"
|
871 |
|
872 |
+
#: adrotate.php:710
|
873 |
#, fuzzy
|
874 |
msgid ""
|
875 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
876 |
msgstr ""
|
877 |
"Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
|
878 |
|
879 |
+
#: adrotate.php:715
|
880 |
msgid "Bot filter"
|
881 |
msgstr "Filtro de Motor de búsqueda"
|
882 |
|
883 |
+
#: adrotate.php:718
|
884 |
msgid "User-Agent Filter"
|
885 |
msgstr "Filtro de User-Agent"
|
886 |
|
887 |
+
#: adrotate.php:721
|
888 |
msgid ""
|
889 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
890 |
"prevent impressions and clicks counted on them."
|
893 |
"crawlers / user-agents. Para prevenir contabilizar impresiones y clics "
|
894 |
"realizados por ellos."
|
895 |
|
896 |
+
#: adrotate.php:722
|
897 |
msgid ""
|
898 |
"Keep in mind that this might give false positives. The word 'google' also "
|
899 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
901 |
"Tenga en cuenta que esto puede dar falsos positivos. La palabra 'google' "
|
902 |
"también coincide con 'googlebot', pero no viceversa. Así que ten cuidado!"
|
903 |
|
904 |
+
#: adrotate.php:722
|
905 |
msgid "Keep your list up-to-date"
|
906 |
msgstr "Mantenga su lista al día"
|
907 |
|
908 |
+
#: adrotate.php:723
|
909 |
msgid ""
|
910 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
911 |
"other characters are stripped out."
|
913 |
"Utilice solamente palabras con caracteres alfanuméricos, [- _] se permite "
|
914 |
"también. Todos los demás caracteres se eliminaran."
|
915 |
|
916 |
+
#: adrotate.php:724
|
917 |
msgid ""
|
918 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
919 |
"well."
|
921 |
"Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
|
922 |
"bloqueados."
|
923 |
|
924 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
925 |
msgid "Learn more about"
|
926 |
msgstr "Más información sobre"
|
927 |
|
928 |
+
#: adrotate.php:724
|
929 |
msgid "user-agents"
|
930 |
msgstr "user-agents"
|
931 |
|
932 |
+
#: adrotate.php:733
|
933 |
msgid "Miscellaneous"
|
934 |
msgstr "Varios"
|
935 |
|
936 |
+
#: adrotate.php:736
|
937 |
msgid "Widget alignment"
|
938 |
msgstr "Alineación de Widget"
|
939 |
|
940 |
+
#: adrotate.php:737
|
941 |
msgid ""
|
942 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
943 |
"not always help!)"
|
945 |
"Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
|
946 |
"plantillas (theme). (No siempre ayuda!)"
|
947 |
|
948 |
+
#: adrotate.php:740
|
949 |
msgid "Widget padding"
|
950 |
msgstr "Relleno de Widget"
|
951 |
|
952 |
+
#: adrotate.php:741
|
953 |
msgid ""
|
954 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
955 |
"not always work!)"
|
957 |
"Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
|
958 |
"de los anuncios en los widgets. (No siempre funciona!)"
|
959 |
|
960 |
+
#: adrotate.php:746 adrotate.php:757
|
961 |
#, fuzzy
|
962 |
msgid "NOTICE:"
|
963 |
msgstr "Aviso"
|
964 |
|
965 |
+
#: adrotate.php:747
|
966 |
msgid ""
|
967 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
968 |
"You need to add the following line to your wp-config.php near the bottom or "
|
974 |
"inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
|
975 |
"función \"late init \" tambien debe estar habilitado en W3 Total Cache."
|
976 |
|
977 |
+
#: adrotate.php:751
|
978 |
msgid "W3 Total Caching"
|
979 |
msgstr "W3 Total Cache"
|
980 |
|
981 |
+
#: adrotate.php:752
|
982 |
msgid "Check this box if you use W3 Total Caching on your site."
|
983 |
msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
|
984 |
|
985 |
+
#: adrotate.php:758
|
986 |
msgid ""
|
987 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
988 |
"this function will not work. WP Super Cache has discontinued support for "
|
992 |
"esta función no funcionará. WP Super Cache ha interrumpido el soporte para "
|
993 |
"el contenido dinámico."
|
994 |
|
995 |
+
#: adrotate.php:762
|
996 |
msgid "WP Super Cache"
|
997 |
msgstr "WP Super Cache"
|
998 |
|
999 |
+
#: adrotate.php:763
|
1000 |
msgid "Check this box if you use WP Super Cache on your site."
|
1001 |
msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
|
1002 |
|
1003 |
+
#: adrotate.php:768
|
1004 |
msgid ""
|
1005 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1006 |
"to refresh the cache. This can take up to a week if not done manually."
|
1009 |
"caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
|
1010 |
"semana si no se realiza de forma manual."
|
1011 |
|
1012 |
+
#: adrotate.php:768
|
1013 |
msgid ""
|
1014 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1015 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
1018 |
"el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
|
1019 |
"código PHP la exclusión a ti mismo."
|
1020 |
|
1021 |
+
#: adrotate.php:772
|
1022 |
+
msgid "Javascript"
|
1023 |
+
msgstr ""
|
1024 |
|
1025 |
+
#: adrotate.php:775
|
1026 |
msgid "Load jQuery"
|
1027 |
msgstr "Cargar jQuery"
|
1028 |
|
1029 |
+
#: adrotate.php:776
|
1030 |
msgid ""
|
1031 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1032 |
"theme does not load jQuery already."
|
1034 |
"jQuery es necesaria para todas las características Javascript siguientes. "
|
1035 |
"Habilite esta opción si su tema no carga jQuery por defecto."
|
1036 |
|
1037 |
+
#: adrotate.php:779
|
1038 |
msgid "Load in footer?"
|
1039 |
msgstr "¿Cargar en el pie de página?"
|
1040 |
|
1041 |
+
#: adrotate.php:780
|
1042 |
msgid ""
|
1043 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1044 |
"needs to call wp_footer() for this to work."
|
1046 |
"Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
|
1047 |
"tema tiene que llamar a la función wp_footer() para que esto funcione."
|
1048 |
|
1049 |
+
#: adrotate.php:788
|
1050 |
msgid "Maintenance"
|
1051 |
msgstr "Mantenimiento"
|
1052 |
|
1053 |
+
#: adrotate.php:789
|
1054 |
msgid ""
|
1055 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1056 |
"They only apply to your ads/groups and stats. Not to other settings or other "
|
1064 |
"Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
|
1065 |
"cuando se siente o nota que su base de datos va lenta o no responde."
|
1066 |
|
1067 |
+
#: adrotate.php:804 adrotate.php:806
|
1068 |
msgid "Optimize Database"
|
1069 |
msgstr "Optimizar la Base de Datos"
|
1070 |
|
1071 |
+
#: adrotate.php:806
|
1072 |
msgid "You are about to optimize the AdRotate database."
|
1073 |
msgstr "Vas a optimizar la base de datos AdRotate."
|
1074 |
|
1075 |
+
#: adrotate.php:806
|
1076 |
msgid "Did you make a backup of your database?"
|
1077 |
msgstr "¿Hiciste una copia de seguridad de la base de datos?"
|
1078 |
|
1079 |
+
#: adrotate.php:806
|
1080 |
msgid ""
|
1081 |
"This may take a moment and may cause your website to respond slow "
|
1082 |
"temporarily!"
|
1084 |
"Esto puede tardar un momento y puede hacer que su sitio web responda "
|
1085 |
"lentamente temporalmente!"
|
1086 |
|
1087 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1088 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1089 |
msgid "OK to continue, CANCEL to stop."
|
1090 |
msgstr "OK para continuar, CANCELAR para detenerlo."
|
1091 |
|
1092 |
+
#: adrotate.php:807
|
1093 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1094 |
msgstr "Limpiar los datos generales de las tablas AdRotate."
|
1095 |
|
1096 |
+
#: adrotate.php:808
|
1097 |
msgid ""
|
1098 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1099 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1102 |
"cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
|
1103 |
"datos."
|
1104 |
|
1105 |
+
#: adrotate.php:812 adrotate.php:814
|
1106 |
msgid "Clean-up Database"
|
1107 |
msgstr "Limpieza de la Base de Datos"
|
1108 |
|
1109 |
+
#: adrotate.php:814
|
1110 |
msgid ""
|
1111 |
"You are about to clean up your database. This may delete expired schedules "
|
1112 |
"and older statistics."
|
1114 |
"Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
|
1115 |
"estadísticas más antigüas."
|
1116 |
|
1117 |
+
#: adrotate.php:814
|
1118 |
msgid "Are you sure you want to continue?"
|
1119 |
msgstr "¿Está seguro que desea continuar?"
|
1120 |
|
1121 |
+
#: adrotate.php:814 adrotate.php:822
|
1122 |
msgid "This might take a while and may slow down your site during this action!"
|
1123 |
msgstr ""
|
1124 |
"Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
|
1125 |
|
1126 |
+
#: adrotate.php:815
|
1127 |
msgid "Delete stats older than 356 days (Optional)."
|
1128 |
msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
|
1129 |
|
1130 |
+
#: adrotate.php:816
|
1131 |
msgid ""
|
1132 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1133 |
"occasions these records are faulty."
|
1135 |
"AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
|
1136 |
"grupos. En raras ocasiones, estos registros son defectuosos."
|
1137 |
|
1138 |
+
#: adrotate.php:816
|
1139 |
msgid ""
|
1140 |
"If you made an ad or group that does not save when you make it use this "
|
1141 |
"button to delete those empty records."
|
1143 |
"Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
|
1144 |
"utilize este botón para borrar esos registros vacíos."
|
1145 |
|
1146 |
+
#: adrotate.php:816
|
1147 |
msgid ""
|
1148 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1149 |
"your site."
|
1151 |
"Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
|
1152 |
"velocidad de su sitio."
|
1153 |
|
1154 |
+
#: adrotate.php:820
|
1155 |
msgid "Re-evaluate Ads"
|
1156 |
msgstr "Reevaluar Anuncios"
|
1157 |
|
1158 |
+
#: adrotate.php:822
|
1159 |
msgid "Re-evaluate all ads"
|
1160 |
msgstr "Reevaluar todos los Anuncios"
|
1161 |
|
1162 |
+
#: adrotate.php:822
|
1163 |
msgid "You are about to check all ads for errors."
|
1164 |
msgstr "Vas a comprobar todos los anuncios para localizar errores."
|
1165 |
|
1166 |
+
#: adrotate.php:823
|
1167 |
msgid ""
|
1168 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1169 |
"in. Normally you should not need this feature."
|
1171 |
"Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
|
1172 |
"algún error. Normalmente no debería necesitar esta función."
|
1173 |
|
1174 |
+
#: adrotate.php:827
|
1175 |
msgid ""
|
1176 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1177 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
1189 |
"alegar que funcionaba antes de hacer clic en estos botones no es razón "
|
1190 |
"suficiente."
|
1191 |
|
1192 |
+
#: adrotate.php:835
|
1193 |
msgid "Troubleshooting"
|
1194 |
msgstr "Solución de problemas"
|
1195 |
|
1196 |
+
#: adrotate.php:838
|
1197 |
msgid "Current version:"
|
1198 |
msgstr "Versión actual:"
|
1199 |
|
1200 |
+
#: adrotate.php:839
|
1201 |
msgid "Previous version:"
|
1202 |
msgstr "Versión anterior:"
|
1203 |
|
1204 |
+
#: adrotate.php:842
|
1205 |
msgid "Current database version:"
|
1206 |
msgstr "Versión actual de la base de datos:"
|
1207 |
|
1208 |
+
#: adrotate.php:843
|
1209 |
msgid "Previous database version:"
|
1210 |
msgstr "Versión anterior de la base de datos:"
|
1211 |
|
1212 |
+
#: adrotate.php:846
|
1213 |
#, fuzzy
|
1214 |
msgid "Ad evaluation next run:"
|
1215 |
msgstr "Evaluación de Anuncios en la siguiente ejecución:"
|
1216 |
|
1217 |
+
#: adrotate.php:847 adrotate.php:851
|
1218 |
msgid "Not scheduled!"
|
1219 |
msgstr "No Programada!"
|
1220 |
|
1221 |
+
#: adrotate.php:850
|
1222 |
msgid "Clean Trackerdata next run:"
|
1223 |
msgstr "Ultima ejecución de la limpieza de la base de datos:"
|
1224 |
|
1225 |
+
#: adrotate.php:854
|
1226 |
msgid "Current status of adverts"
|
1227 |
msgstr "Estado actual de los anuncios"
|
1228 |
|
1229 |
+
#: adrotate.php:855
|
1230 |
msgid "Normal"
|
1231 |
msgstr "Normal"
|
1232 |
|
1233 |
+
#: adrotate.php:855
|
1234 |
msgid "Error"
|
1235 |
msgstr "Error"
|
1236 |
|
1237 |
+
#: adrotate.php:855
|
1238 |
msgid "Expired"
|
1239 |
msgstr "Caducado"
|
1240 |
|
1241 |
+
#: adrotate.php:855
|
1242 |
msgid "Expires Soon"
|
1243 |
msgstr "Caduca Pronto"
|
1244 |
|
1245 |
+
#: adrotate.php:855
|
1246 |
msgid "Unknown Status"
|
1247 |
msgstr "Estado Desconocido"
|
1248 |
|
1249 |
+
#: adrotate.php:858
|
1250 |
msgid ""
|
1251 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1252 |
"developers to review saved settings or how ads are selected. These can be "
|
1259 |
"para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
|
1260 |
"USO CON NORMALIDAD!"
|
1261 |
|
1262 |
+
#: adrotate.php:862
|
1263 |
msgid "Developer Debug"
|
1264 |
msgstr "Depurar (Test) del Desarrollador"
|
1265 |
|
1266 |
+
#: adrotate.php:864
|
1267 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1268 |
msgstr ""
|
1269 |
"Solucionar problemas de los anuncios y de que forma se seleccionan si los "
|
1270 |
"hay, tiene salida en las aplicaciones para usuario."
|
1271 |
|
1272 |
+
#: adrotate.php:865
|
1273 |
msgid "Show all settings, dashboard routines and related values."
|
1274 |
msgstr ""
|
1275 |
"Mostrar todas las configuraciones, las rutinas del panel y los valores "
|
1276 |
"relacionados."
|
1277 |
|
1278 |
+
#: adrotate.php:866
|
1279 |
msgid "Show array of all userroles and capabilities."
|
1280 |
msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
|
1281 |
|
1282 |
+
#: adrotate.php:867
|
1283 |
msgid "Review saved advertisers! Visible to advertisers."
|
1284 |
msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
|
1285 |
|
1286 |
+
#: adrotate.php:868
|
1287 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1288 |
msgstr ""
|
1289 |
"Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
|
1290 |
"Visible sólo a los editores."
|
1291 |
|
1292 |
+
#: adrotate.php:869
|
1293 |
msgid ""
|
1294 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1295 |
"clicktracking."
|
1297 |
"Deshabilitar contadores de tiempo de clics e impresiones y activar una "
|
1298 |
"ventana de alerta para el seguimiento de clics."
|
1299 |
|
1300 |
+
#: adrotate.php:870
|
1301 |
msgid "Temporarily disable encryption on the redirect url."
|
1302 |
msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
|
1303 |
|
1345 |
msgid "AdRotate News and Developer Blog"
|
1346 |
msgstr "Noticias y Blog del Desarrollador de AdRotate "
|
1347 |
|
1348 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1349 |
msgid "Buy AdRotate Professional"
|
1350 |
msgstr "Comprar AdRotate Profesional"
|
1351 |
|
1352 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1353 |
msgid "Singe License"
|
1354 |
msgstr "Singe Licencia"
|
1355 |
|
1356 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1357 |
msgid "For one WordPress installation."
|
1358 |
msgstr "Para una instalación de WordPress."
|
1359 |
|
1360 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1361 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1362 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1363 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1364 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1365 |
#, fuzzy
|
1366 |
msgid "Buy now"
|
1367 |
msgstr "Comprar"
|
1368 |
|
1369 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1370 |
msgid "Duo License"
|
1371 |
msgstr "Duo Licencia"
|
1372 |
|
1373 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1374 |
msgid "For two WordPress installations."
|
1375 |
msgstr "Para dos instalaciónes de WordPress."
|
1376 |
|
1377 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1378 |
msgid "Multi License"
|
1379 |
msgstr "Multi Licencia"
|
1380 |
|
1381 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1382 |
msgid " For up to five WordPress installations."
|
1383 |
msgstr "Para un máximo de cinco instalaciones de WordPress."
|
1384 |
|
1385 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1386 |
msgid "Developer License"
|
1387 |
msgstr "Developer Licencia"
|
1388 |
|
1389 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1390 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1391 |
msgstr "Activar AdRotate en ilimitadas instalaciones de WordPress y/o redes."
|
1392 |
|
1393 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1394 |
msgid "Network License"
|
1395 |
msgstr "Network Licencia"
|
1396 |
|
1397 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1398 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1399 |
msgstr "Configure su propia red de publicidad en un WordPress Multisite."
|
1400 |
|
1401 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1402 |
msgid "Compare licenses"
|
1403 |
msgstr "Comparar licencias"
|
1404 |
|
1405 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1406 |
msgid "Not sure which license is for you? Compare them..."
|
1407 |
msgstr "No está seguro de que licencia es para usted? Comparelas..."
|
1408 |
|
1409 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1410 |
msgid "All Licenses"
|
1411 |
msgstr "Todas las licencias"
|
1412 |
|
1413 |
+
#: dashboard/adrotate-info.php:171
|
1414 |
msgid "Get more features with AdRotate Pro"
|
1415 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
1416 |
|
1417 |
+
#: dashboard/adrotate-info.php:174
|
1418 |
msgid ""
|
1419 |
"Benefit from extra features to reinforce your income with advertising "
|
1420 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1425 |
"las potentes herramientas que AdRotate Pro le ofrece, además de las "
|
1426 |
"funcionalidades más que fiables incluidas en la versión gratuita."
|
1427 |
|
1428 |
+
#: dashboard/adrotate-info.php:175
|
1429 |
msgid "or go to the"
|
1430 |
msgstr "o ir a la"
|
1431 |
|
1432 |
+
#: dashboard/adrotate-info.php:179
|
1433 |
msgid "Support AdRotate"
|
1434 |
msgstr "Apoye a AdRotate"
|
1435 |
|
1436 |
+
#: dashboard/adrotate-info.php:182
|
1437 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1438 |
msgstr "Su donación asegurará el continuo desarrollo de AdRotate!"
|
1439 |
|
1440 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1441 |
msgid "AdRotate is brought to you by"
|
1442 |
msgstr "AdRotate es ofrecido por"
|
1443 |
|
1444 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1445 |
msgid ""
|
1446 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1447 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
1452 |
"(Theme) o si necesita trasladar/migrar su sitio completamente. Visite mi "
|
1453 |
"página web para más detalles!"
|
1454 |
|
1455 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1456 |
msgid "Find out more"
|
1457 |
msgstr "Para saber más"
|
1458 |
|
1459 |
+
#: dashboard/adrotate-info.php:193
|
1460 |
msgid "Follow"
|
1461 |
msgstr "Continuar"
|
1462 |
|
2027 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2028 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2029 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
2030 |
msgid "Clicks"
|
2031 |
msgstr "Clics"
|
2032 |
|
2126 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2127 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2128 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2129 |
msgid "Start / End"
|
2130 |
msgstr "Inio / Final"
|
2131 |
|
2132 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2133 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2134 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2135 |
msgid "Title"
|
2136 |
msgstr "Título"
|
2137 |
|
2139 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2140 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2141 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2142 |
msgid "CTR"
|
2143 |
msgstr "CTR"
|
2144 |
|
2211 |
|
2212 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2213 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2214 |
msgid "Weight"
|
2215 |
msgstr "Prioridad"
|
2216 |
|
2217 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2218 |
msgid "Shown"
|
2219 |
msgstr "Mostrado"
|
2220 |
|
2222 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2223 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2224 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2225 |
msgid "Today"
|
2226 |
msgstr "Hoy"
|
2227 |
|
2602 |
msgid "Statistics for group"
|
2603 |
msgstr "Estadisticas por Grupo"
|
2604 |
|
2605 |
+
#~ msgid "AdRotate Server"
|
2606 |
+
#~ msgstr "Servidor AdRotate"
|
|
|
2607 |
|
2608 |
+
#~ msgid ""
|
2609 |
+
#~ "AdRotate server is currently in development and these menus are not "
|
2610 |
+
#~ "functional yet."
|
2611 |
+
#~ msgstr ""
|
2612 |
+
#~ "El servidor AdRotate está actualmente en desarrollo y estos menús aún no "
|
2613 |
+
#~ "son funcionales."
|
|
|
2614 |
|
2615 |
+
#~ msgid "Overview"
|
2616 |
+
#~ msgstr "Resumen"
|
|
|
2617 |
|
2618 |
+
#~ msgid "Javascript Libraries"
|
2619 |
+
#~ msgstr "Librerias Javascript"
|
|
|
|
|
2620 |
|
2621 |
+
#~ msgid "Adverts received from server"
|
2622 |
+
#~ msgstr "Anuncios recibidos desde el servidor"
|
|
|
2623 |
|
2624 |
+
#~ msgid ""
|
2625 |
+
#~ "These adverts are circulating in the pool of active adverts, served from "
|
2626 |
+
#~ "AdRotate server."
|
2627 |
+
#~ msgstr ""
|
2628 |
+
#~ "Estos anuncios están circulando en el grupo de anuncios activos, "
|
2629 |
+
#~ "proporcionados desde el servidor AdRotate."
|
2630 |
|
2631 |
+
#~ msgid "Added / Updated"
|
2632 |
+
#~ msgstr "Añadir / Actualizar"
|
|
|
2633 |
|
2634 |
+
#~ msgid "No ads received yet!"
|
2635 |
+
#~ msgstr "Todavia no hay ningún anuncio recibido!"
|
|
|
2636 |
|
2637 |
+
#~ msgid "Erroneous ads from server"
|
2638 |
+
#~ msgstr "Anuncios erróneos desde un servidor"
|
|
|
2639 |
|
2640 |
+
#~ msgid "Adverts served from AdRotate server but having some issues."
|
2641 |
+
#~ msgstr ""
|
2642 |
+
#~ "Anuncios servidos desde el servidor AdRotate pero con algunos problemas."
|
2643 |
|
2644 |
+
#~ msgid "Updated"
|
2645 |
+
#~ msgstr "Actualizar"
|
|
|
|
|
|
|
|
|
|
|
2646 |
|
2647 |
+
#~ msgid "Show from"
|
2648 |
+
#~ msgstr "Mostrar desde"
|
|
|
2649 |
|
2650 |
+
#~ msgid "Show until"
|
2651 |
+
#~ msgstr "Mostrar hasta"
|
|
|
2652 |
|
2653 |
+
#~ msgid "AdRotate Server Settings"
|
2654 |
+
#~ msgstr "Ajustes Servidor AdRotate"
|
|
|
2655 |
|
2656 |
+
#~ msgid ""
|
2657 |
+
#~ "Link this website to an AdRotate server so your adverts and stats are "
|
2658 |
+
#~ "synchronised regularly."
|
2659 |
+
#~ msgstr ""
|
2660 |
+
#~ "Vincular esta página web a un servidor AdRotate para que sus anuncios y "
|
2661 |
+
#~ "las estadísticas esten sincronizados con regularidad."
|
2662 |
|
2663 |
+
#~ msgid "Status"
|
2664 |
+
#~ msgstr "Estado"
|
|
|
|
|
|
|
|
|
|
|
2665 |
|
2666 |
+
#~ msgid "Linked - Adverts can be synced."
|
2667 |
+
#~ msgstr "Enlazado - Los Anuncios se pueden sincronizar."
|
|
|
|
|
|
|
|
|
|
|
2668 |
|
2669 |
+
#~ msgid "Not linked - No adverts will be synced."
|
2670 |
+
#~ msgstr "No Enlazado - Se sincronizará sin publicidad."
|
|
|
2671 |
|
2672 |
+
#~ msgid "Server Key"
|
2673 |
+
#~ msgstr "Clave del Servidor"
|
|
|
2674 |
|
2675 |
+
#~ msgid ""
|
2676 |
+
#~ "You can get your server key from your AdRotate Server installation or the "
|
2677 |
+
#~ "AdRollr website."
|
2678 |
+
#~ msgstr ""
|
2679 |
+
#~ "Puede obtener su clave de servidor de la instalación del AdRotate "
|
2680 |
+
#~ "servidor o de la página web AdRollr."
|
|
|
|
|
2681 |
|
2682 |
+
#~ msgid ""
|
2683 |
+
#~ "You should not share your key with anyone you do not trust. Treat this "
|
2684 |
+
#~ "key as a password!"
|
2685 |
+
#~ msgstr ""
|
2686 |
+
#~ "No debe compartir su clave con nadie que no confía. Debe tratar esta "
|
2687 |
+
#~ "clave como una contraseña!"
|
2688 |
|
2689 |
+
#~ msgid "Make this site a puppet"
|
2690 |
+
#~ msgstr "Hacer que este sitio "
|
2691 |
+
|
2692 |
+
#~ msgid "Have AdRotate use AdRotate Server adverts exclusively."
|
2693 |
+
#~ msgstr "AdRotate utilice exclusivamente los anuncios del Servidor AdRotate "
|
2694 |
+
|
2695 |
+
#~ msgid ""
|
2696 |
+
#~ "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make "
|
2697 |
+
#~ "this installation of AdRotate a puppet for your AdRotate Server."
|
2698 |
+
#~ msgstr ""
|
2699 |
+
#~ "La activación de esta función DESHABILITA TODA LA GESTIÓN LOCAL y hará "
|
2700 |
+
#~ "que esta instalación de AdRotate se nutra de los anuncios de su Servidor "
|
2701 |
+
#~ "AdRotate."
|
2702 |
+
|
2703 |
+
#~ msgid "Hide Server Details"
|
2704 |
+
#~ msgstr "Ocultar Detalles del Servidor"
|
2705 |
+
|
2706 |
+
#~ msgid ""
|
2707 |
+
#~ "If you have installed AdRotate Pro for a client or in a Multisite network "
|
2708 |
+
#~ "and want to hide the server details from your users or client."
|
2709 |
+
#~ msgstr ""
|
2710 |
+
#~ "Si ha instalado AdRotate Pro para un cliente o en una red para varios "
|
2711 |
+
#~ "sitios y quieren ocultar los detalles del servidor de sus usuarios o "
|
2712 |
+
#~ "clientes."
|
2713 |
|
2714 |
+
#~ msgid "Link to server"
|
2715 |
+
#~ msgstr "Enlazar al servidor"
|
|
|
2716 |
|
2717 |
+
#~ msgid "Unlink from server"
|
2718 |
+
#~ msgstr "Desvincular del servidor"
|
|
|
2719 |
|
2720 |
#, fuzzy
|
2721 |
#~ msgid "AdRotate Website"
|
language/adrotate-ja.mo
CHANGED
Binary file
|
language/adrotate-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -13,22 +13,22 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
-
#: adrotate-output.php:
|
28 |
msgid "Oh no! Something went wrong!"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: adrotate-output.php:
|
32 |
#, fuzzy
|
33 |
msgid ""
|
34 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
@@ -38,28 +38,28 @@ msgstr ""
|
|
38 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
39 |
"さい。英語ですが。"
|
40 |
|
41 |
-
#: adrotate-output.php:
|
42 |
#, fuzzy
|
43 |
msgid ""
|
44 |
"If you have received the url you want to visit via email, you are being "
|
45 |
"tricked!"
|
46 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
47 |
|
48 |
-
#: adrotate-output.php:
|
49 |
#, fuzzy
|
50 |
msgid "Contact support if the issue persists:"
|
51 |
msgstr ""
|
52 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
53 |
"さい。"
|
54 |
|
55 |
-
#: adrotate-output.php:
|
56 |
#, fuzzy
|
57 |
msgid ""
|
58 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
59 |
"restrictions or does not exist!"
|
60 |
msgstr "この広告は無効にされていると、サイト上で表示されません!"
|
61 |
|
62 |
-
#: adrotate-output.php:
|
63 |
#, fuzzy
|
64 |
msgid ""
|
65 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
@@ -68,30 +68,30 @@ msgstr ""
|
|
68 |
"AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
|
69 |
"を再度保存してください!"
|
70 |
|
71 |
-
#: adrotate-output.php:
|
72 |
msgid ""
|
73 |
"Either there are no banners, they are disabled or none qualified for this "
|
74 |
"location!"
|
75 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
76 |
|
77 |
-
#: adrotate-output.php:
|
78 |
#, fuzzy
|
79 |
msgid "Error, no Ad ID set! Check your syntax!"
|
80 |
msgstr "広告 - 広告IDを使ってください。"
|
81 |
|
82 |
-
#: adrotate-output.php:
|
83 |
#, fuzzy
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "広告グループ - グループIDを使ってください。"
|
86 |
|
87 |
-
#: adrotate-output.php:
|
88 |
#, fuzzy
|
89 |
msgid "Error, group does not exist! Check your syntax!"
|
90 |
msgstr ""
|
91 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
92 |
"クスをオンにします。"
|
93 |
|
94 |
-
#: adrotate-output.php:
|
95 |
msgid ""
|
96 |
"There was an error locating the database tables for AdRotate. Please "
|
97 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -99,187 +99,187 @@ msgstr ""
|
|
99 |
"AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
|
100 |
"して、再登録して下さい。"
|
101 |
|
102 |
-
#: adrotate-output.php:
|
103 |
msgid "If this does not solve the issue please seek support at"
|
104 |
msgstr ""
|
105 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
106 |
"さい。"
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
msgid "An unknown error occured."
|
110 |
msgstr "理解できないエラーが起こっています。"
|
111 |
|
112 |
-
#: adrotate-output.php:
|
113 |
msgid "active ad(s) expired."
|
114 |
msgstr "個の広告が期限切れです。"
|
115 |
|
116 |
-
#: adrotate-output.php:
|
117 |
msgid "Take action now"
|
118 |
msgstr "継続する場合は対応して下さい。"
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
msgid "active ad(s) are about to expire."
|
122 |
msgstr "個の広告がまもなく期限切れです。"
|
123 |
|
124 |
-
#: adrotate-output.php:
|
125 |
msgid "Check it out"
|
126 |
msgstr "チェックして下さい。"
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "active ad(s) with configuration errors."
|
130 |
msgstr "個の広告が設定エラーになっています。"
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid "Solve this"
|
134 |
msgstr "これを解決して下さい。"
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid "ad(s) expired."
|
138 |
msgstr "個の広告が期限切れです。"
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
msgid "ad(s) are about to expire."
|
142 |
msgstr "個の広告がまもなく期限切れです。"
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
msgid "ad(s) with configuration errors."
|
146 |
msgstr "個の広告が設定エラーになっています。"
|
147 |
|
148 |
-
#: adrotate-output.php:
|
149 |
msgid "Fix this as soon as possible"
|
150 |
msgstr "これは出来る限り早く修正して下さい。"
|
151 |
|
152 |
-
#: adrotate-output.php:
|
153 |
#, fuzzy
|
154 |
msgid "Learn More"
|
155 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
156 |
|
157 |
-
#: adrotate-output.php:
|
158 |
msgid ""
|
159 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
160 |
"to the <strong>PRO</strong> version"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: adrotate-output.php:
|
164 |
msgid "Get more features to even better run your advertising campaigns."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: adrotate-output.php:
|
168 |
#, fuzzy
|
169 |
msgid "Thank you for your consideration!"
|
170 |
msgstr "データベースのバックアップを取りましたか?"
|
171 |
|
172 |
-
#: adrotate-output.php:
|
173 |
msgid ""
|
174 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
175 |
"Pro is in this menu. Check out the"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: adrotate-output.php:
|
179 |
msgid "manuals"
|
180 |
msgstr "マニュアル(英語サイト)"
|
181 |
|
182 |
-
#: adrotate-output.php:
|
183 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
184 |
msgid "and"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: adrotate-output.php:
|
188 |
#, fuzzy
|
189 |
msgid "forums"
|
190 |
msgstr "フォーラム"
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
#, fuzzy
|
194 |
msgid "Useful Links"
|
195 |
msgstr "役に立つ情報"
|
196 |
|
197 |
-
#: adrotate-output.php:
|
198 |
msgid "Useful links to learn more about AdRotate"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: adrotate-output.php:
|
202 |
#, fuzzy
|
203 |
msgid "AdRotate Page"
|
204 |
msgstr "AdRotate Blog"
|
205 |
|
206 |
-
#: adrotate-output.php:
|
207 |
#, fuzzy
|
208 |
msgid "Getting Started With AdRotate"
|
209 |
msgstr ""
|
210 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
211 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
212 |
|
213 |
-
#: adrotate-output.php:
|
214 |
#, fuzzy
|
215 |
msgid "AdRotate manuals"
|
216 |
msgstr "AdRotate Blog"
|
217 |
|
218 |
-
#: adrotate-output.php:
|
219 |
#, fuzzy
|
220 |
msgid "AdRotate Support Forum"
|
221 |
msgstr "AdRotate Blog"
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "WordPress.org Forum"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
#, fuzzy
|
229 |
msgid "AdRotate Website."
|
230 |
msgstr "AdRotate Blog"
|
231 |
|
232 |
-
#: adrotate-output.php:
|
233 |
#, fuzzy
|
234 |
msgid "AdRotate Getting Started."
|
235 |
msgstr "AdRotate 設定"
|
236 |
|
237 |
-
#: adrotate-output.php:
|
238 |
msgid "AdRotate Knoweledge base and manuals."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: adrotate-output.php:
|
242 |
#, fuzzy
|
243 |
msgid "AdRotate Website Forum."
|
244 |
msgstr "AdRotate Blog"
|
245 |
|
246 |
-
#: adrotate-output.php:
|
247 |
msgid "WordPress.org Forum."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: adrotate-output.php:
|
251 |
#, fuzzy
|
252 |
msgid "Help AdRotate Grow"
|
253 |
msgstr "AdRotate Blog"
|
254 |
|
255 |
-
#: adrotate-output.php:
|
256 |
msgid "Brought to you by"
|
257 |
msgstr "サービス紹介"
|
258 |
|
259 |
-
#: adrotate-output.php:
|
260 |
msgid ""
|
261 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
262 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: adrotate-output.php:
|
266 |
msgid "If you find AdRotate useful please leave your honest"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
msgid "rating"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
#, fuzzy
|
275 |
msgid "review"
|
276 |
msgstr "全般レポートを見れる権限"
|
277 |
|
278 |
-
#: adrotate-output.php:
|
279 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: adrotate-output.php:
|
283 |
#, fuzzy
|
284 |
msgid ""
|
285 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
@@ -289,7 +289,7 @@ msgstr ""
|
|
289 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
290 |
"さい。英語ですが。"
|
291 |
|
292 |
-
#: adrotate-output.php:
|
293 |
#, fuzzy
|
294 |
msgid "Visit the"
|
295 |
msgstr ""
|
@@ -297,27 +297,27 @@ msgstr ""
|
|
297 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
298 |
"さい。英語ですが。"
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
#, fuzzy
|
302 |
msgid "website"
|
303 |
msgstr "開発者のWEBサイトは以下です。"
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
#, fuzzy
|
307 |
msgid "Available in AdRotate Pro"
|
308 |
msgstr "AdRotate Blog"
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
#, fuzzy
|
312 |
msgid "More information..."
|
313 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
314 |
|
315 |
-
#: adrotate-output.php:
|
316 |
#, fuzzy
|
317 |
msgid "This feature is available in AdRotate Pro"
|
318 |
msgstr "この機能は使いません。"
|
319 |
|
320 |
-
#: adrotate-output.php:
|
321 |
#, fuzzy
|
322 |
msgid "Learn more"
|
323 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
@@ -452,72 +452,72 @@ msgstr "一般設定"
|
|
452 |
msgid "AdRotate Pro"
|
453 |
msgstr "AdRotate Blog"
|
454 |
|
455 |
-
#: adrotate.php:
|
456 |
msgid "Manage Ads"
|
457 |
msgstr "広告管理"
|
458 |
|
459 |
-
#: adrotate.php:
|
460 |
msgid "Manage Groups"
|
461 |
msgstr "グループの管理"
|
462 |
|
463 |
-
#: adrotate.php:
|
464 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
465 |
#, fuzzy
|
466 |
msgid "Manage Schedules"
|
467 |
msgstr "管理"
|
468 |
|
469 |
-
#: adrotate.php:
|
470 |
#, fuzzy
|
471 |
msgid "Manage Media"
|
472 |
msgstr "画像リンク先URL:"
|
473 |
|
474 |
-
#: adrotate.php:
|
475 |
msgid "Settings"
|
476 |
msgstr "設定"
|
477 |
|
478 |
-
#: adrotate.php:
|
479 |
#, fuzzy
|
480 |
msgid "AdRotate Info"
|
481 |
msgstr "AdRotate Blog"
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
#, fuzzy
|
485 |
msgid "AdRotate Professional"
|
486 |
msgstr "AdRotate Blog"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Ad Management"
|
490 |
msgstr "広告管理"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
msgid "Ad created"
|
494 |
msgstr "広告作成"
|
495 |
|
496 |
-
#: adrotate.php:
|
497 |
msgid "Ad updated"
|
498 |
msgstr "広告更新"
|
499 |
|
500 |
-
#: adrotate.php:
|
501 |
msgid "Ad(s) deleted"
|
502 |
msgstr "広告削除"
|
503 |
|
504 |
-
#: adrotate.php:
|
505 |
msgid "Ad(s) statistics reset"
|
506 |
msgstr "広告の統計情報初期化"
|
507 |
|
508 |
-
#: adrotate.php:
|
509 |
msgid "Ad(s) renewed"
|
510 |
msgstr "広告の更新"
|
511 |
|
512 |
-
#: adrotate.php:
|
513 |
msgid "Ad(s) deactivated"
|
514 |
msgstr "広告の利用停止"
|
515 |
|
516 |
-
#: adrotate.php:
|
517 |
msgid "Ad(s) activated"
|
518 |
msgstr "広告の利用可能化"
|
519 |
|
520 |
-
#: adrotate.php:
|
521 |
msgid ""
|
522 |
"The ad was saved but has an issue which might prevent it from working "
|
523 |
"properly. Review the yellow marked ad."
|
@@ -525,60 +525,60 @@ msgstr ""
|
|
525 |
"広告は保存されますが、動作してから問題が発生するかもしれません。黄色でマーク"
|
526 |
"された広告を確認して下さい。"
|
527 |
|
528 |
-
#: adrotate.php:
|
529 |
#, fuzzy
|
530 |
msgid "Export created"
|
531 |
msgstr "エクスポートオプション"
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
msgid "Action prohibited"
|
535 |
msgstr "今の操作は禁止されました。"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
msgid "No data found in selected time period"
|
539 |
msgstr "選ばれた期間が見つかりません。"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
msgid "Manage"
|
543 |
msgstr "管理"
|
544 |
|
545 |
-
#: adrotate.php:
|
546 |
msgid "Add New"
|
547 |
msgstr "新規追加"
|
548 |
|
549 |
-
#: adrotate.php:
|
550 |
msgid "Group Management"
|
551 |
msgstr "グループの管理"
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
msgid "Group created"
|
555 |
msgstr "グループの作成"
|
556 |
|
557 |
-
#: adrotate.php:
|
558 |
msgid "Group updated"
|
559 |
msgstr "グループの更新"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
msgid "Group deleted"
|
563 |
msgstr "グループの削除"
|
564 |
|
565 |
-
#: adrotate.php:
|
566 |
msgid "Group including it's Ads deleted"
|
567 |
msgstr "削除された広告がグループに含まれています。"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
#, fuzzy
|
571 |
msgid "Schedule Management available in AdRotate Pro"
|
572 |
msgstr "この機能は使いません。"
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
#, fuzzy
|
576 |
msgid ""
|
577 |
"Schedule management and multiple schedules per advert is available in "
|
578 |
"AdRotate Pro."
|
579 |
msgstr "この機能は使いません。"
|
580 |
|
581 |
-
#: adrotate.php:
|
582 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
583 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
584 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -587,341 +587,323 @@ msgstr "この機能は使いません。"
|
|
587 |
msgid "More information"
|
588 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
589 |
|
590 |
-
#: adrotate.php:
|
591 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
592 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
593 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
594 |
msgid "Bulk Actions"
|
595 |
msgstr "一括操作"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
599 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
600 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
601 |
msgid "Go"
|
602 |
msgstr "実行"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
606 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
607 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
608 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
609 |
-
#: dashboard/server/adrotate-active.php:18
|
610 |
-
#: dashboard/server/adrotate-error.php:18
|
611 |
#, fuzzy
|
612 |
msgid "ID"
|
613 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
msgid "Start"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
msgid "End"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
625 |
msgid "Ads"
|
626 |
msgstr "広告"
|
627 |
|
628 |
-
#: adrotate.php:
|
629 |
#, fuzzy
|
630 |
msgid "Max Clicks"
|
631 |
msgstr "クリック"
|
632 |
|
633 |
-
#: adrotate.php:
|
634 |
#, fuzzy
|
635 |
msgid "Max Impressions"
|
636 |
msgstr "表示数"
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
#, fuzzy
|
640 |
msgid "No schedules created yet!"
|
641 |
msgstr "まだブロックが作られていません。"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
#, fuzzy
|
645 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
646 |
msgstr ""
|
647 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
648 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
#, fuzzy
|
652 |
msgid "Upgrade today!"
|
653 |
msgstr "本日"
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
657 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
658 |
#, fuzzy
|
659 |
msgid "Expires soon."
|
660 |
msgstr "これは出来る限り早く修正して下さい。"
|
661 |
|
662 |
-
#: adrotate.php:
|
663 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
664 |
#, fuzzy
|
665 |
msgid "Has expired."
|
666 |
msgstr "個の広告が期限切れです。"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
#, fuzzy
|
670 |
msgid "Media Management available in AdRotate Pro"
|
671 |
msgstr "この機能は使いません。"
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
msgid ""
|
675 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
676 |
"especially useful if you use responsive adverts with multiple images."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
#, fuzzy
|
681 |
msgid "Media uploading and management is available in AdRotate Pro."
|
682 |
msgstr "この機能は使いません。"
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
#, fuzzy
|
686 |
msgid "Upload new banner image"
|
687 |
msgstr "バナー画像"
|
688 |
|
689 |
-
#: adrotate.php:
|
690 |
#, fuzzy
|
691 |
msgid "Accepted files are:"
|
692 |
msgstr ""
|
693 |
"%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
|
694 |
"す。"
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
msgid "Maximum size is 512Kb."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: adrotate.php:
|
701 |
msgid "Important:"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: adrotate.php:
|
705 |
msgid ""
|
706 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
707 |
"spaces with a - or _."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: adrotate.php:
|
711 |
msgid ""
|
712 |
"For responsive adverts make sure the filename is in the following format; "
|
713 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: adrotate.php:
|
717 |
msgid ""
|
718 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
719 |
"filename instead of \".full\" for the various viewports."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: adrotate.php:
|
723 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
724 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
725 |
msgid "Example:"
|
726 |
msgstr "例:"
|
727 |
|
728 |
-
#: adrotate.php:
|
729 |
msgid ""
|
730 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
731 |
"for different viewports."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: adrotate.php:
|
735 |
#, fuzzy
|
736 |
msgid "Upload image"
|
737 |
msgstr "バナー画像"
|
738 |
|
739 |
-
#: adrotate.php:
|
740 |
#, fuzzy
|
741 |
msgid "Available banner images in"
|
742 |
msgstr "バナー画像"
|
743 |
|
744 |
-
#: adrotate.php:
|
745 |
msgid "Name"
|
746 |
msgstr "名前"
|
747 |
|
748 |
-
#: adrotate.php:
|
749 |
#, fuzzy
|
750 |
msgid "Actions"
|
751 |
msgstr "一括操作"
|
752 |
|
753 |
-
#: adrotate.php:
|
754 |
-
#: adrotate.php:
|
755 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
756 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
757 |
msgid "Delete"
|
758 |
msgstr "削除"
|
759 |
|
760 |
-
#: adrotate.php:
|
761 |
msgid ""
|
762 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: adrotate.php:
|
766 |
#, fuzzy
|
767 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
768 |
msgstr ""
|
769 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
770 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
771 |
|
772 |
-
#: adrotate.php:
|
773 |
-
#, fuzzy
|
774 |
-
msgid "AdRotate Server"
|
775 |
-
msgstr "AdRotate Blog"
|
776 |
-
|
777 |
-
#: adrotate.php:608
|
778 |
-
msgid ""
|
779 |
-
"AdRotate server is currently in development and these menus are not "
|
780 |
-
"functional yet."
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: adrotate.php:612
|
784 |
-
#, fuzzy
|
785 |
-
msgid "Overview"
|
786 |
-
msgstr "プレビュー"
|
787 |
-
|
788 |
-
#: adrotate.php:708
|
789 |
msgid "AdRotate Settings"
|
790 |
msgstr "AdRotate 設定"
|
791 |
|
792 |
-
#: adrotate.php:
|
793 |
msgid "Settings saved"
|
794 |
msgstr "設定を保存します。"
|
795 |
|
796 |
-
#: adrotate.php:
|
797 |
msgid "Database optimized"
|
798 |
msgstr "データベースの最適化"
|
799 |
|
800 |
-
#: adrotate.php:
|
801 |
msgid "Database repaired"
|
802 |
msgstr "データベースの修復"
|
803 |
|
804 |
-
#: adrotate.php:
|
805 |
#, fuzzy
|
806 |
msgid "Ads evaluated and statuses have been corrected where required"
|
807 |
msgstr "広告"
|
808 |
|
809 |
-
#: adrotate.php:
|
810 |
msgid "Empty database records removed"
|
811 |
msgstr "空のデータベースは削除されました。"
|
812 |
|
813 |
-
#: adrotate.php:
|
814 |
msgid "Database can only be optimized or cleaned once every hour"
|
815 |
msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
|
816 |
|
817 |
-
#: adrotate.php:
|
818 |
msgid "Access Rights"
|
819 |
msgstr "アクセス権限"
|
820 |
|
821 |
-
#: adrotate.php:
|
822 |
msgid "Who has access to what?"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: adrotate.php:
|
826 |
msgid "Manage/Add/Edit adverts"
|
827 |
msgstr "広告の追加・編集管理"
|
828 |
|
829 |
-
#: adrotate.php:
|
830 |
msgid "Role to see and add/edit ads."
|
831 |
msgstr "広告を追加・編集する権限"
|
832 |
|
833 |
-
#: adrotate.php:
|
834 |
msgid "Delete/Reset adverts"
|
835 |
msgstr "広告の削除やリセット"
|
836 |
|
837 |
-
#: adrotate.php:
|
838 |
msgid "Role to delete ads and reset stats."
|
839 |
msgstr "広告の削除やリセットする権限"
|
840 |
|
841 |
-
#: adrotate.php:
|
842 |
msgid "Manage/Add/Edit groups"
|
843 |
msgstr "グループの追加・編集管理"
|
844 |
|
845 |
-
#: adrotate.php:
|
846 |
msgid "Role to see and add/edit groups."
|
847 |
msgstr "グループを削除・編集する権限"
|
848 |
|
849 |
-
#: adrotate.php:
|
850 |
msgid "Delete groups"
|
851 |
msgstr "グループの削除"
|
852 |
|
853 |
-
#: adrotate.php:
|
854 |
msgid "Role to delete groups."
|
855 |
msgstr "グループを削除できる権限"
|
856 |
|
857 |
-
#: adrotate.php:
|
858 |
-
#: adrotate.php:
|
859 |
msgid "Update Options"
|
860 |
msgstr "設定の更新"
|
861 |
|
862 |
-
#: adrotate.php:
|
863 |
msgid "Statistics"
|
864 |
msgstr "統計"
|
865 |
|
866 |
-
#: adrotate.php:
|
867 |
#, fuzzy
|
868 |
msgid "Enable stats"
|
869 |
msgstr "統計リセット"
|
870 |
|
871 |
-
#: adrotate.php:
|
872 |
#, fuzzy
|
873 |
msgid "Track clicks and impressions."
|
874 |
msgstr "クリック"
|
875 |
|
876 |
-
#: adrotate.php:
|
877 |
#, fuzzy
|
878 |
msgid "Disabling this also disables click and impression limits on schedules."
|
879 |
msgstr "現在のスケジュール"
|
880 |
|
881 |
-
#: adrotate.php:
|
882 |
msgid "Impressions timer"
|
883 |
msgstr "表示時間"
|
884 |
|
885 |
-
#: adrotate.php:
|
886 |
msgid "Seconds."
|
887 |
msgstr "秒"
|
888 |
|
889 |
-
#: adrotate.php:
|
890 |
#, fuzzy
|
891 |
msgid "Default: 60."
|
892 |
msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
|
893 |
|
894 |
-
#: adrotate.php:
|
895 |
#, fuzzy
|
896 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
897 |
msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
898 |
|
899 |
-
#: adrotate.php:
|
900 |
#, fuzzy
|
901 |
msgid "Clicks timer"
|
902 |
msgstr "表示時間"
|
903 |
|
904 |
-
#: adrotate.php:
|
905 |
#, fuzzy
|
906 |
msgid "Default: 86400."
|
907 |
msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
|
908 |
|
909 |
-
#: adrotate.php:
|
910 |
#, fuzzy
|
911 |
msgid ""
|
912 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
913 |
msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
914 |
|
915 |
-
#: adrotate.php:
|
916 |
#, fuzzy
|
917 |
msgid "Bot filter"
|
918 |
msgstr "ユーザーエージェントフィルター"
|
919 |
|
920 |
-
#: adrotate.php:
|
921 |
msgid "User-Agent Filter"
|
922 |
msgstr "ユーザーエージェントフィルター"
|
923 |
|
924 |
-
#: adrotate.php:
|
925 |
msgid ""
|
926 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
927 |
"prevent impressions and clicks counted on them."
|
@@ -929,7 +911,7 @@ msgstr ""
|
|
929 |
"コンマは、キーワードのリストを区切ります。カウント表示回数やクリックを防止す"
|
930 |
"るために、ボット/クローラ/ユーザエージェントを除外します。"
|
931 |
|
932 |
-
#: adrotate.php:
|
933 |
#, fuzzy
|
934 |
msgid ""
|
935 |
"Keep in mind that this might give false positives. The word 'google' also "
|
@@ -938,21 +920,21 @@ msgstr ""
|
|
938 |
"注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
|
939 |
"場合があります。"
|
940 |
|
941 |
-
#: adrotate.php:
|
942 |
#, fuzzy
|
943 |
msgid "Keep your list up-to-date"
|
944 |
msgstr ""
|
945 |
"コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
|
946 |
"抑えて下さい。"
|
947 |
|
948 |
-
#: adrotate.php:
|
949 |
#, fuzzy
|
950 |
msgid ""
|
951 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
952 |
"other characters are stripped out."
|
953 |
msgstr "HTMLタグは取り除かれます。"
|
954 |
|
955 |
-
#: adrotate.php:
|
956 |
msgid ""
|
957 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
958 |
"well."
|
@@ -960,23 +942,23 @@ msgstr ""
|
|
960 |
"さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
|
961 |
"れます。"
|
962 |
|
963 |
-
#: adrotate.php:
|
964 |
msgid "Learn more about"
|
965 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
966 |
|
967 |
-
#: adrotate.php:
|
968 |
msgid "user-agents"
|
969 |
msgstr "ユーザーエージェント[英語]"
|
970 |
|
971 |
-
#: adrotate.php:
|
972 |
msgid "Miscellaneous"
|
973 |
msgstr "その他"
|
974 |
|
975 |
-
#: adrotate.php:
|
976 |
msgid "Widget alignment"
|
977 |
msgstr "ウィジェットの配置"
|
978 |
|
979 |
-
#: adrotate.php:
|
980 |
msgid ""
|
981 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
982 |
"not always help!)"
|
@@ -984,12 +966,12 @@ msgstr ""
|
|
984 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
985 |
"クスをオンにします。"
|
986 |
|
987 |
-
#: adrotate.php:
|
988 |
#, fuzzy
|
989 |
msgid "Widget padding"
|
990 |
msgstr "ブロックの隙間"
|
991 |
|
992 |
-
#: adrotate.php:
|
993 |
#, fuzzy
|
994 |
msgid ""
|
995 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
@@ -998,11 +980,11 @@ msgstr ""
|
|
998 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
999 |
"クスをオンにします。"
|
1000 |
|
1001 |
-
#: adrotate.php:
|
1002 |
msgid "NOTICE:"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: adrotate.php:
|
1006 |
msgid ""
|
1007 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
1008 |
"You need to add the following line to your wp-config.php near the bottom or "
|
@@ -1010,36 +992,36 @@ msgid ""
|
|
1010 |
"needs to be enabled in W3 Total Cache as well too."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: adrotate.php:
|
1014 |
msgid "W3 Total Caching"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: adrotate.php:
|
1018 |
#, fuzzy
|
1019 |
msgid "Check this box if you use W3 Total Caching on your site."
|
1020 |
msgstr ""
|
1021 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
1022 |
"クスをオンにします。"
|
1023 |
|
1024 |
-
#: adrotate.php:
|
1025 |
msgid ""
|
1026 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
1027 |
"this function will not work. WP Super Cache has discontinued support for "
|
1028 |
"dynamic content."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: adrotate.php:
|
1032 |
msgid "WP Super Cache"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: adrotate.php:
|
1036 |
#, fuzzy
|
1037 |
msgid "Check this box if you use WP Super Cache on your site."
|
1038 |
msgstr ""
|
1039 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
1040 |
"クスをオンにします。"
|
1041 |
|
1042 |
-
#: adrotate.php:
|
1043 |
#, fuzzy
|
1044 |
msgid ""
|
1045 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
@@ -1048,34 +1030,33 @@ msgstr ""
|
|
1048 |
"これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
|
1049 |
"可能性があります。"
|
1050 |
|
1051 |
-
#: adrotate.php:
|
1052 |
#, fuzzy
|
1053 |
msgid ""
|
1054 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1055 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
1056 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
1057 |
|
1058 |
-
#: adrotate.php:
|
1059 |
-
|
1060 |
-
|
1061 |
-
msgstr "HTML/JavaScriptの利用は可能ですが、利用にはご注意下さい。"
|
1062 |
|
1063 |
-
#: adrotate.php:
|
1064 |
msgid "Load jQuery"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: adrotate.php:
|
1068 |
#, fuzzy
|
1069 |
msgid ""
|
1070 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1071 |
"theme does not load jQuery already."
|
1072 |
msgstr "テキストリンク(クリック数調査付):"
|
1073 |
|
1074 |
-
#: adrotate.php:
|
1075 |
msgid "Load in footer?"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: adrotate.php:
|
1079 |
#, fuzzy
|
1080 |
msgid ""
|
1081 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
@@ -1085,11 +1066,11 @@ msgstr ""
|
|
1085 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
1086 |
"さい。英語ですが。"
|
1087 |
|
1088 |
-
#: adrotate.php:
|
1089 |
msgid "Maintenance"
|
1090 |
msgstr "メンテナンス"
|
1091 |
|
1092 |
-
#: adrotate.php:
|
1093 |
#, fuzzy
|
1094 |
msgid ""
|
1095 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
@@ -1099,19 +1080,19 @@ msgid ""
|
|
1099 |
"sluggish."
|
1100 |
msgstr "データベースのバックアップを取りましたか?"
|
1101 |
|
1102 |
-
#: adrotate.php:
|
1103 |
msgid "Optimize Database"
|
1104 |
msgstr "データベースの最適化"
|
1105 |
|
1106 |
-
#: adrotate.php:
|
1107 |
msgid "You are about to optimize the AdRotate database."
|
1108 |
msgstr "AdRotateのデータベースの最適化を行います。"
|
1109 |
|
1110 |
-
#: adrotate.php:
|
1111 |
msgid "Did you make a backup of your database?"
|
1112 |
msgstr "データベースのバックアップを取りましたか?"
|
1113 |
|
1114 |
-
#: adrotate.php:
|
1115 |
msgid ""
|
1116 |
"This may take a moment and may cause your website to respond slow "
|
1117 |
"temporarily!"
|
@@ -1119,91 +1100,91 @@ msgstr ""
|
|
1119 |
"これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
|
1120 |
"可能性があります。"
|
1121 |
|
1122 |
-
#: adrotate.php:
|
1123 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1124 |
msgid "OK to continue, CANCEL to stop."
|
1125 |
msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
|
1126 |
|
1127 |
-
#: adrotate.php:
|
1128 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1129 |
msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
|
1130 |
|
1131 |
-
#: adrotate.php:
|
1132 |
#, fuzzy
|
1133 |
msgid ""
|
1134 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1135 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1136 |
msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
|
1137 |
|
1138 |
-
#: adrotate.php:
|
1139 |
msgid "Clean-up Database"
|
1140 |
msgstr "データベースのクリーンアップ"
|
1141 |
|
1142 |
-
#: adrotate.php:
|
1143 |
#, fuzzy
|
1144 |
msgid ""
|
1145 |
"You are about to clean up your database. This may delete expired schedules "
|
1146 |
"and older statistics."
|
1147 |
msgstr "データベースのクリーンアップ"
|
1148 |
|
1149 |
-
#: adrotate.php:
|
1150 |
#, fuzzy
|
1151 |
msgid "Are you sure you want to continue?"
|
1152 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
1153 |
|
1154 |
-
#: adrotate.php:
|
1155 |
#, fuzzy
|
1156 |
msgid "This might take a while and may slow down your site during this action!"
|
1157 |
msgstr ""
|
1158 |
"これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
|
1159 |
"可能性があります。"
|
1160 |
|
1161 |
-
#: adrotate.php:
|
1162 |
#, fuzzy
|
1163 |
msgid "Delete stats older than 356 days (Optional)."
|
1164 |
msgstr "広告の削除やリセットする権限"
|
1165 |
|
1166 |
-
#: adrotate.php:
|
1167 |
#, fuzzy
|
1168 |
msgid ""
|
1169 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1170 |
"occasions these records are faulty."
|
1171 |
msgstr "空のデータベースは削除されました。"
|
1172 |
|
1173 |
-
#: adrotate.php:
|
1174 |
#, fuzzy
|
1175 |
msgid ""
|
1176 |
"If you made an ad or group that does not save when you make it use this "
|
1177 |
"button to delete those empty records."
|
1178 |
msgstr "グループを削除しようとしています。"
|
1179 |
|
1180 |
-
#: adrotate.php:
|
1181 |
#, fuzzy
|
1182 |
msgid ""
|
1183 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1184 |
"your site."
|
1185 |
msgstr "データベースのクリーンアップ"
|
1186 |
|
1187 |
-
#: adrotate.php:
|
1188 |
msgid "Re-evaluate Ads"
|
1189 |
msgstr "広告の再評価"
|
1190 |
|
1191 |
-
#: adrotate.php:
|
1192 |
msgid "Re-evaluate all ads"
|
1193 |
msgstr "すべての広告の再評価"
|
1194 |
|
1195 |
-
#: adrotate.php:
|
1196 |
msgid "You are about to check all ads for errors."
|
1197 |
msgstr "すべての広告のエラーをチェックしようとしています。"
|
1198 |
|
1199 |
-
#: adrotate.php:
|
1200 |
#, fuzzy
|
1201 |
msgid ""
|
1202 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1203 |
"in. Normally you should not need this feature."
|
1204 |
msgstr "すべての広告のエラーをチェックしようとしています。"
|
1205 |
|
1206 |
-
#: adrotate.php:
|
1207 |
#, fuzzy
|
1208 |
msgid ""
|
1209 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
@@ -1214,76 +1195,76 @@ msgid ""
|
|
1214 |
"clicking these buttons is not a valid point in any case."
|
1215 |
msgstr "データベースのバックアップを取りましたか?"
|
1216 |
|
1217 |
-
#: adrotate.php:
|
1218 |
msgid "Troubleshooting"
|
1219 |
msgstr "トラブルシューティング(トラブル対応)"
|
1220 |
|
1221 |
-
#: adrotate.php:
|
1222 |
#, fuzzy
|
1223 |
msgid "Current version:"
|
1224 |
msgstr "現在のスケジュール"
|
1225 |
|
1226 |
-
#: adrotate.php:
|
1227 |
#, fuzzy
|
1228 |
msgid "Previous version:"
|
1229 |
msgstr "プレビュー"
|
1230 |
|
1231 |
-
#: adrotate.php:
|
1232 |
#, fuzzy
|
1233 |
msgid "Current database version:"
|
1234 |
msgstr "現在のスケジュール"
|
1235 |
|
1236 |
-
#: adrotate.php:
|
1237 |
#, fuzzy
|
1238 |
msgid "Previous database version:"
|
1239 |
msgstr "データベースの最適化"
|
1240 |
|
1241 |
-
#: adrotate.php:
|
1242 |
#, fuzzy
|
1243 |
msgid "Ad evaluation next run:"
|
1244 |
msgstr "通知先"
|
1245 |
|
1246 |
-
#: adrotate.php:
|
1247 |
#, fuzzy
|
1248 |
msgid "Not scheduled!"
|
1249 |
msgstr "掲載期間"
|
1250 |
|
1251 |
-
#: adrotate.php:
|
1252 |
#, fuzzy
|
1253 |
msgid "Clean Trackerdata next run:"
|
1254 |
msgstr "データベースのクリーンアップ"
|
1255 |
|
1256 |
-
#: adrotate.php:
|
1257 |
#, fuzzy
|
1258 |
msgid "Current status of adverts"
|
1259 |
msgstr "現在のスケジュール"
|
1260 |
|
1261 |
-
#: adrotate.php:
|
1262 |
#, fuzzy
|
1263 |
msgid "Normal"
|
1264 |
msgstr "平均的表示(50%程度)"
|
1265 |
|
1266 |
-
#: adrotate.php:
|
1267 |
#, fuzzy
|
1268 |
msgid "Error"
|
1269 |
msgstr "理解できないエラーが起こっています。"
|
1270 |
|
1271 |
-
#: adrotate.php:
|
1272 |
#, fuzzy
|
1273 |
msgid "Expired"
|
1274 |
msgstr "個の広告が期限切れです。"
|
1275 |
|
1276 |
-
#: adrotate.php:
|
1277 |
#, fuzzy
|
1278 |
msgid "Expires Soon"
|
1279 |
msgstr "これは出来る限り早く修正して下さい。"
|
1280 |
|
1281 |
-
#: adrotate.php:
|
1282 |
#, fuzzy
|
1283 |
msgid "Unknown Status"
|
1284 |
msgstr "理解できないエラーが起こっています。"
|
1285 |
|
1286 |
-
#: adrotate.php:
|
1287 |
msgid ""
|
1288 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1289 |
"developers to review saved settings or how ads are selected. These can be "
|
@@ -1293,45 +1274,45 @@ msgstr ""
|
|
1293 |
"注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
|
1294 |
"用しないで下さい。基本的にチェックを入れない!"
|
1295 |
|
1296 |
-
#: adrotate.php:
|
1297 |
msgid "Developer Debug"
|
1298 |
msgstr "開発者向けデバッグ"
|
1299 |
|
1300 |
-
#: adrotate.php:
|
1301 |
#, fuzzy
|
1302 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1303 |
msgstr ""
|
1304 |
"注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
|
1305 |
"用しないで下さい。基本的にチェックを入れない!"
|
1306 |
|
1307 |
-
#: adrotate.php:
|
1308 |
#, fuzzy
|
1309 |
msgid "Show all settings, dashboard routines and related values."
|
1310 |
msgstr "設定"
|
1311 |
|
1312 |
-
#: adrotate.php:
|
1313 |
#, fuzzy
|
1314 |
msgid "Show array of all userroles and capabilities."
|
1315 |
msgstr "表示できるデータがありません。"
|
1316 |
|
1317 |
-
#: adrotate.php:
|
1318 |
#, fuzzy
|
1319 |
msgid "Review saved advertisers! Visible to advertisers."
|
1320 |
msgstr "広告主から提出された広告を承認する権限"
|
1321 |
|
1322 |
-
#: adrotate.php:
|
1323 |
#, fuzzy
|
1324 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1325 |
msgstr "統計リセット"
|
1326 |
|
1327 |
-
#: adrotate.php:
|
1328 |
#, fuzzy
|
1329 |
msgid ""
|
1330 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1331 |
"clicktracking."
|
1332 |
msgstr "テキストリンク(クリック数調査付):"
|
1333 |
|
1334 |
-
#: adrotate.php:
|
1335 |
#, fuzzy
|
1336 |
msgid "Temporarily disable encryption on the redirect url."
|
1337 |
msgstr ""
|
@@ -1396,111 +1377,111 @@ msgstr ""
|
|
1396 |
msgid "AdRotate News and Developer Blog"
|
1397 |
msgstr "AdRotate Blog"
|
1398 |
|
1399 |
-
#: dashboard/adrotate-info.php:
|
1400 |
#, fuzzy
|
1401 |
msgid "Buy AdRotate Professional"
|
1402 |
msgstr "AdRotate Blog"
|
1403 |
|
1404 |
-
#: dashboard/adrotate-info.php:
|
1405 |
msgid "Singe License"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: dashboard/adrotate-info.php:
|
1409 |
msgid "For one WordPress installation."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: dashboard/adrotate-info.php:
|
1413 |
-
#: dashboard/adrotate-info.php:
|
1414 |
-
#: dashboard/adrotate-info.php:
|
1415 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1416 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1417 |
#, fuzzy
|
1418 |
msgid "Buy now"
|
1419 |
msgstr "継続する場合は対応して下さい。"
|
1420 |
|
1421 |
-
#: dashboard/adrotate-info.php:
|
1422 |
msgid "Duo License"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: dashboard/adrotate-info.php:
|
1426 |
msgid "For two WordPress installations."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: dashboard/adrotate-info.php:
|
1430 |
msgid "Multi License"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: dashboard/adrotate-info.php:
|
1434 |
msgid " For up to five WordPress installations."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: dashboard/adrotate-info.php:
|
1438 |
#, fuzzy
|
1439 |
msgid "Developer License"
|
1440 |
msgstr "開発者向けデバッグ"
|
1441 |
|
1442 |
-
#: dashboard/adrotate-info.php:
|
1443 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: dashboard/adrotate-info.php:
|
1447 |
msgid "Network License"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: dashboard/adrotate-info.php:
|
1451 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: dashboard/adrotate-info.php:
|
1455 |
msgid "Compare licenses"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: dashboard/adrotate-info.php:
|
1459 |
msgid "Not sure which license is for you? Compare them..."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: dashboard/adrotate-info.php:
|
1463 |
#, fuzzy
|
1464 |
msgid "All Licenses"
|
1465 |
msgstr "すべての広告の再評価"
|
1466 |
|
1467 |
-
#: dashboard/adrotate-info.php:
|
1468 |
#, fuzzy
|
1469 |
msgid "Get more features with AdRotate Pro"
|
1470 |
msgstr ""
|
1471 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
1472 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
1473 |
|
1474 |
-
#: dashboard/adrotate-info.php:
|
1475 |
msgid ""
|
1476 |
"Benefit from extra features to reinforce your income with advertising "
|
1477 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1478 |
"Pro offers on top of the trusted features included in the free version."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: dashboard/adrotate-info.php:
|
1482 |
#, fuzzy
|
1483 |
msgid "or go to the"
|
1484 |
msgstr "実行"
|
1485 |
|
1486 |
-
#: dashboard/adrotate-info.php:
|
1487 |
#, fuzzy
|
1488 |
msgid "Support AdRotate"
|
1489 |
msgstr "AdRotate Blog"
|
1490 |
|
1491 |
-
#: dashboard/adrotate-info.php:
|
1492 |
#, fuzzy
|
1493 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1494 |
msgstr ""
|
1495 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
1496 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
1497 |
|
1498 |
-
#: dashboard/adrotate-info.php:
|
1499 |
#, fuzzy
|
1500 |
msgid "AdRotate is brought to you by"
|
1501 |
msgstr "サービス紹介"
|
1502 |
|
1503 |
-
#: dashboard/adrotate-info.php:
|
1504 |
msgid ""
|
1505 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1506 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
@@ -1510,12 +1491,12 @@ msgstr ""
|
|
1510 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
1511 |
"さい。英語ですが。"
|
1512 |
|
1513 |
-
#: dashboard/adrotate-info.php:
|
1514 |
#, fuzzy
|
1515 |
msgid "Find out more"
|
1516 |
msgstr "以下のURLをチェック下さい。"
|
1517 |
|
1518 |
-
#: dashboard/adrotate-info.php:
|
1519 |
msgid "Follow"
|
1520 |
msgstr ""
|
1521 |
|
@@ -2073,8 +2054,6 @@ msgstr "掲載期限"
|
|
2073 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2074 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2075 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2076 |
-
#: dashboard/server/adrotate-active.php:25
|
2077 |
-
#: dashboard/server/adrotate-error.php:26
|
2078 |
msgid "Clicks"
|
2079 |
msgstr "クリック"
|
2080 |
|
@@ -2183,15 +2162,12 @@ msgstr "統計リセット"
|
|
2183 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2184 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2185 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
2186 |
-
#: dashboard/server/adrotate-active.php:20
|
2187 |
msgid "Start / End"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2191 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2192 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2193 |
-
#: dashboard/server/adrotate-active.php:21
|
2194 |
-
#: dashboard/server/adrotate-error.php:22
|
2195 |
msgid "Title"
|
2196 |
msgstr "タイトル"
|
2197 |
|
@@ -2199,8 +2175,6 @@ msgstr "タイトル"
|
|
2199 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2200 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2201 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2202 |
-
#: dashboard/server/adrotate-active.php:27
|
2203 |
-
#: dashboard/server/adrotate-error.php:28
|
2204 |
msgid "CTR"
|
2205 |
msgstr ""
|
2206 |
|
@@ -2275,14 +2249,10 @@ msgstr "エクスポートオプション"
|
|
2275 |
|
2276 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2277 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2278 |
-
#: dashboard/server/adrotate-active.php:22
|
2279 |
-
#: dashboard/server/adrotate-error.php:23
|
2280 |
msgid "Weight"
|
2281 |
msgstr "表示頻度"
|
2282 |
|
2283 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2284 |
-
#: dashboard/server/adrotate-active.php:23
|
2285 |
-
#: dashboard/server/adrotate-error.php:24
|
2286 |
#, fuzzy
|
2287 |
msgid "Shown"
|
2288 |
msgstr "この広告は期限切れで現在サイトに表示されていません。"
|
@@ -2291,10 +2261,6 @@ msgstr "この広告は期限切れで現在サイトに表示されていませ
|
|
2291 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2292 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2293 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2294 |
-
#: dashboard/server/adrotate-active.php:24
|
2295 |
-
#: dashboard/server/adrotate-active.php:26
|
2296 |
-
#: dashboard/server/adrotate-error.php:25
|
2297 |
-
#: dashboard/server/adrotate-error.php:27
|
2298 |
msgid "Today"
|
2299 |
msgstr "本日"
|
2300 |
|
@@ -2699,121 +2665,51 @@ msgstr "グループがまだ作られていません。"
|
|
2699 |
msgid "Statistics for group"
|
2700 |
msgstr "統計 "
|
2701 |
|
2702 |
-
#: dashboard/server/adrotate-active.php:12
|
2703 |
-
msgid "Adverts received from server"
|
2704 |
-
msgstr ""
|
2705 |
-
|
2706 |
-
#: dashboard/server/adrotate-active.php:13
|
2707 |
-
msgid ""
|
2708 |
-
"These adverts are circulating in the pool of active adverts, served from "
|
2709 |
-
"AdRotate server."
|
2710 |
-
msgstr ""
|
2711 |
-
|
2712 |
-
#: dashboard/server/adrotate-active.php:19
|
2713 |
#, fuzzy
|
2714 |
-
msgid "
|
2715 |
-
msgstr "
|
2716 |
|
2717 |
-
#: dashboard/server/adrotate-active.php:74
|
2718 |
-
#: dashboard/server/adrotate-error.php:76
|
2719 |
#, fuzzy
|
2720 |
-
msgid "
|
2721 |
-
msgstr "
|
2722 |
-
|
2723 |
-
#: dashboard/server/adrotate-error.php:12
|
2724 |
-
msgid "Erroneous ads from server"
|
2725 |
-
msgstr ""
|
2726 |
-
|
2727 |
-
#: dashboard/server/adrotate-error.php:13
|
2728 |
-
msgid "Adverts served from AdRotate server but having some issues."
|
2729 |
-
msgstr ""
|
2730 |
|
2731 |
-
#: dashboard/server/adrotate-error.php:19
|
2732 |
#, fuzzy
|
2733 |
-
msgid "
|
2734 |
-
msgstr "
|
2735 |
|
2736 |
-
#: dashboard/server/adrotate-error.php:20
|
2737 |
-
msgid "Show from"
|
2738 |
-
msgstr "掲載開始"
|
2739 |
-
|
2740 |
-
#: dashboard/server/adrotate-error.php:21
|
2741 |
-
msgid "Show until"
|
2742 |
-
msgstr "掲載終了"
|
2743 |
-
|
2744 |
-
#: dashboard/server/adrotate-settings.php:15
|
2745 |
#, fuzzy
|
2746 |
-
msgid "
|
2747 |
-
msgstr "
|
2748 |
-
|
2749 |
-
#: dashboard/server/adrotate-settings.php:21
|
2750 |
-
msgid ""
|
2751 |
-
"Link this website to an AdRotate server so your adverts and stats are "
|
2752 |
-
"synchronised regularly."
|
2753 |
-
msgstr ""
|
2754 |
|
2755 |
-
#: dashboard/server/adrotate-settings.php:24
|
2756 |
#, fuzzy
|
2757 |
-
msgid "
|
2758 |
-
msgstr "
|
2759 |
|
2760 |
-
#: dashboard/server/adrotate-settings.php:27
|
2761 |
-
msgid "Linked - Adverts can be synced."
|
2762 |
-
msgstr ""
|
2763 |
-
|
2764 |
-
#: dashboard/server/adrotate-settings.php:27
|
2765 |
#, fuzzy
|
2766 |
-
msgid "
|
2767 |
-
msgstr "
|
2768 |
-
|
2769 |
-
#: dashboard/server/adrotate-settings.php:40
|
2770 |
-
msgid "Server Key"
|
2771 |
-
msgstr ""
|
2772 |
-
|
2773 |
-
#: dashboard/server/adrotate-settings.php:41
|
2774 |
-
msgid ""
|
2775 |
-
"You can get your server key from your AdRotate Server installation or the "
|
2776 |
-
"AdRollr website."
|
2777 |
-
msgstr ""
|
2778 |
-
|
2779 |
-
#: dashboard/server/adrotate-settings.php:41
|
2780 |
-
msgid ""
|
2781 |
-
"You should not share your key with anyone you do not trust. Treat this key "
|
2782 |
-
"as a password!"
|
2783 |
-
msgstr ""
|
2784 |
-
|
2785 |
-
#: dashboard/server/adrotate-settings.php:44
|
2786 |
-
msgid "Make this site a puppet"
|
2787 |
-
msgstr ""
|
2788 |
|
2789 |
-
|
2790 |
-
|
2791 |
-
msgstr ""
|
2792 |
|
2793 |
-
|
2794 |
-
|
2795 |
-
"Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this "
|
2796 |
-
"installation of AdRotate a puppet for your AdRotate Server."
|
2797 |
-
msgstr ""
|
2798 |
|
2799 |
-
|
2800 |
-
msgid "
|
2801 |
-
msgstr ""
|
2802 |
|
2803 |
-
|
2804 |
-
msgid ""
|
2805 |
-
|
2806 |
-
"and want to hide the server details from your users or client."
|
2807 |
-
msgstr ""
|
2808 |
|
2809 |
-
|
2810 |
-
msgid "
|
2811 |
-
msgstr ""
|
2812 |
|
2813 |
-
#: dashboard/server/adrotate-settings.php:62
|
2814 |
#, fuzzy
|
2815 |
-
msgid "Unlink from server"
|
2816 |
-
msgstr "掲載開始"
|
2817 |
|
2818 |
#, fuzzy
|
2819 |
#~ 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: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 1.7.3\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:811
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
+
#: adrotate-functions.php:814
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
+
#: adrotate-output.php:759
|
28 |
msgid "Oh no! Something went wrong!"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: adrotate-output.php:760
|
32 |
#, fuzzy
|
33 |
msgid ""
|
34 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
38 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
39 |
"さい。英語ですが。"
|
40 |
|
41 |
+
#: adrotate-output.php:761
|
42 |
#, fuzzy
|
43 |
msgid ""
|
44 |
"If you have received the url you want to visit via email, you are being "
|
45 |
"tricked!"
|
46 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
47 |
|
48 |
+
#: adrotate-output.php:762
|
49 |
#, fuzzy
|
50 |
msgid "Contact support if the issue persists:"
|
51 |
msgstr ""
|
52 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
53 |
"さい。"
|
54 |
|
55 |
+
#: adrotate-output.php:780
|
56 |
#, fuzzy
|
57 |
msgid ""
|
58 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
59 |
"restrictions or does not exist!"
|
60 |
msgstr "この広告は無効にされていると、サイト上で表示されません!"
|
61 |
|
62 |
+
#: adrotate-output.php:782
|
63 |
#, fuzzy
|
64 |
msgid ""
|
65 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
68 |
"AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
|
69 |
"を再度保存してください!"
|
70 |
|
71 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
72 |
msgid ""
|
73 |
"Either there are no banners, they are disabled or none qualified for this "
|
74 |
"location!"
|
75 |
msgstr "バナーがないか、利用不可か適応されていません。"
|
76 |
|
77 |
+
#: adrotate-output.php:797
|
78 |
#, fuzzy
|
79 |
msgid "Error, no Ad ID set! Check your syntax!"
|
80 |
msgstr "広告 - 広告IDを使ってください。"
|
81 |
|
82 |
+
#: adrotate-output.php:803
|
83 |
#, fuzzy
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "広告グループ - グループIDを使ってください。"
|
86 |
|
87 |
+
#: adrotate-output.php:808
|
88 |
#, fuzzy
|
89 |
msgid "Error, group does not exist! Check your syntax!"
|
90 |
msgstr ""
|
91 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
92 |
"クスをオンにします。"
|
93 |
|
94 |
+
#: adrotate-output.php:814
|
95 |
msgid ""
|
96 |
"There was an error locating the database tables for AdRotate. Please "
|
97 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
99 |
"AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
|
100 |
"して、再登録して下さい。"
|
101 |
|
102 |
+
#: adrotate-output.php:814
|
103 |
msgid "If this does not solve the issue please seek support at"
|
104 |
msgstr ""
|
105 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
106 |
"さい。"
|
107 |
|
108 |
+
#: adrotate-output.php:820
|
109 |
msgid "An unknown error occured."
|
110 |
msgstr "理解できないエラーが起こっています。"
|
111 |
|
112 |
+
#: adrotate-output.php:846
|
113 |
msgid "active ad(s) expired."
|
114 |
msgstr "個の広告が期限切れです。"
|
115 |
|
116 |
+
#: adrotate-output.php:846
|
117 |
msgid "Take action now"
|
118 |
msgstr "継続する場合は対応して下さい。"
|
119 |
|
120 |
+
#: adrotate-output.php:848
|
121 |
msgid "active ad(s) are about to expire."
|
122 |
msgstr "個の広告がまもなく期限切れです。"
|
123 |
|
124 |
+
#: adrotate-output.php:848
|
125 |
msgid "Check it out"
|
126 |
msgstr "チェックして下さい。"
|
127 |
|
128 |
+
#: adrotate-output.php:850
|
129 |
msgid "active ad(s) with configuration errors."
|
130 |
msgstr "個の広告が設定エラーになっています。"
|
131 |
|
132 |
+
#: adrotate-output.php:850
|
133 |
msgid "Solve this"
|
134 |
msgstr "これを解決して下さい。"
|
135 |
|
136 |
+
#: adrotate-output.php:852
|
137 |
msgid "ad(s) expired."
|
138 |
msgstr "個の広告が期限切れです。"
|
139 |
|
140 |
+
#: adrotate-output.php:852
|
141 |
msgid "ad(s) are about to expire."
|
142 |
msgstr "個の広告がまもなく期限切れです。"
|
143 |
|
144 |
+
#: adrotate-output.php:852
|
145 |
msgid "ad(s) with configuration errors."
|
146 |
msgstr "個の広告が設定エラーになっています。"
|
147 |
|
148 |
+
#: adrotate-output.php:852
|
149 |
msgid "Fix this as soon as possible"
|
150 |
msgstr "これは出来る限り早く修正して下さい。"
|
151 |
|
152 |
+
#: adrotate-output.php:864
|
153 |
#, fuzzy
|
154 |
msgid "Learn More"
|
155 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
156 |
|
157 |
+
#: adrotate-output.php:866
|
158 |
msgid ""
|
159 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
160 |
"to the <strong>PRO</strong> version"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: adrotate-output.php:867
|
164 |
msgid "Get more features to even better run your advertising campaigns."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: adrotate-output.php:867
|
168 |
#, fuzzy
|
169 |
msgid "Thank you for your consideration!"
|
170 |
msgstr "データベースのバックアップを取りましたか?"
|
171 |
|
172 |
+
#: adrotate-output.php:889
|
173 |
msgid ""
|
174 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
175 |
"Pro is in this menu. Check out the"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: adrotate-output.php:889
|
179 |
msgid "manuals"
|
180 |
msgstr "マニュアル(英語サイト)"
|
181 |
|
182 |
+
#: adrotate-output.php:889 adrotate-output.php:985
|
183 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
184 |
msgid "and"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:889
|
188 |
#, fuzzy
|
189 |
msgid "forums"
|
190 |
msgstr "フォーラム"
|
191 |
|
192 |
+
#: adrotate-output.php:925
|
193 |
#, fuzzy
|
194 |
msgid "Useful Links"
|
195 |
msgstr "役に立つ情報"
|
196 |
|
197 |
+
#: adrotate-output.php:926 adrotate-output.php:954
|
198 |
msgid "Useful links to learn more about AdRotate"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: adrotate-output.php:928
|
202 |
#, fuzzy
|
203 |
msgid "AdRotate Page"
|
204 |
msgstr "AdRotate Blog"
|
205 |
|
206 |
+
#: adrotate-output.php:929
|
207 |
#, fuzzy
|
208 |
msgid "Getting Started With AdRotate"
|
209 |
msgstr ""
|
210 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
211 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
212 |
|
213 |
+
#: adrotate-output.php:930
|
214 |
#, fuzzy
|
215 |
msgid "AdRotate manuals"
|
216 |
msgstr "AdRotate Blog"
|
217 |
|
218 |
+
#: adrotate-output.php:931
|
219 |
#, fuzzy
|
220 |
msgid "AdRotate Support Forum"
|
221 |
msgstr "AdRotate Blog"
|
222 |
|
223 |
+
#: adrotate-output.php:932
|
224 |
msgid "WordPress.org Forum"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: adrotate-output.php:956
|
228 |
#, fuzzy
|
229 |
msgid "AdRotate Website."
|
230 |
msgstr "AdRotate Blog"
|
231 |
|
232 |
+
#: adrotate-output.php:957
|
233 |
#, fuzzy
|
234 |
msgid "AdRotate Getting Started."
|
235 |
msgstr "AdRotate 設定"
|
236 |
|
237 |
+
#: adrotate-output.php:958
|
238 |
msgid "AdRotate Knoweledge base and manuals."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: adrotate-output.php:959
|
242 |
#, fuzzy
|
243 |
msgid "AdRotate Website Forum."
|
244 |
msgstr "AdRotate Blog"
|
245 |
|
246 |
+
#: adrotate-output.php:960
|
247 |
msgid "WordPress.org Forum."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: adrotate-output.php:977
|
251 |
#, fuzzy
|
252 |
msgid "Help AdRotate Grow"
|
253 |
msgstr "AdRotate Blog"
|
254 |
|
255 |
+
#: adrotate-output.php:978
|
256 |
msgid "Brought to you by"
|
257 |
msgstr "サービス紹介"
|
258 |
|
259 |
+
#: adrotate-output.php:985
|
260 |
msgid ""
|
261 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
262 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:985
|
266 |
msgid "If you find AdRotate useful please leave your honest"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: adrotate-output.php:985
|
270 |
msgid "rating"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:985
|
274 |
#, fuzzy
|
275 |
msgid "review"
|
276 |
msgstr "全般レポートを見れる権限"
|
277 |
|
278 |
+
#: adrotate-output.php:985
|
279 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: adrotate-output.php:988
|
283 |
#, fuzzy
|
284 |
msgid ""
|
285 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
289 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
290 |
"さい。英語ですが。"
|
291 |
|
292 |
+
#: adrotate-output.php:988
|
293 |
#, fuzzy
|
294 |
msgid "Visit the"
|
295 |
msgstr ""
|
297 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
298 |
"さい。英語ですが。"
|
299 |
|
300 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
301 |
#, fuzzy
|
302 |
msgid "website"
|
303 |
msgstr "開発者のWEBサイトは以下です。"
|
304 |
|
305 |
+
#: adrotate-output.php:1018
|
306 |
#, fuzzy
|
307 |
msgid "Available in AdRotate Pro"
|
308 |
msgstr "AdRotate Blog"
|
309 |
|
310 |
+
#: adrotate-output.php:1018
|
311 |
#, fuzzy
|
312 |
msgid "More information..."
|
313 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
314 |
|
315 |
+
#: adrotate-output.php:1019
|
316 |
#, fuzzy
|
317 |
msgid "This feature is available in AdRotate Pro"
|
318 |
msgstr "この機能は使いません。"
|
319 |
|
320 |
+
#: adrotate-output.php:1019
|
321 |
#, fuzzy
|
322 |
msgid "Learn more"
|
323 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
452 |
msgid "AdRotate Pro"
|
453 |
msgstr "AdRotate Blog"
|
454 |
|
455 |
+
#: adrotate.php:110
|
456 |
msgid "Manage Ads"
|
457 |
msgstr "広告管理"
|
458 |
|
459 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
460 |
msgid "Manage Groups"
|
461 |
msgstr "グループの管理"
|
462 |
|
463 |
+
#: adrotate.php:112 adrotate.php:441
|
464 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
465 |
#, fuzzy
|
466 |
msgid "Manage Schedules"
|
467 |
msgstr "管理"
|
468 |
|
469 |
+
#: adrotate.php:113
|
470 |
#, fuzzy
|
471 |
msgid "Manage Media"
|
472 |
msgstr "画像リンク先URL:"
|
473 |
|
474 |
+
#: adrotate.php:114
|
475 |
msgid "Settings"
|
476 |
msgstr "設定"
|
477 |
|
478 |
+
#: adrotate.php:137
|
479 |
#, fuzzy
|
480 |
msgid "AdRotate Info"
|
481 |
msgstr "AdRotate Blog"
|
482 |
|
483 |
+
#: adrotate.php:158
|
484 |
#, fuzzy
|
485 |
msgid "AdRotate Professional"
|
486 |
msgstr "AdRotate Blog"
|
487 |
|
488 |
+
#: adrotate.php:201
|
489 |
msgid "Ad Management"
|
490 |
msgstr "広告管理"
|
491 |
|
492 |
+
#: adrotate.php:204
|
493 |
msgid "Ad created"
|
494 |
msgstr "広告作成"
|
495 |
|
496 |
+
#: adrotate.php:206
|
497 |
msgid "Ad updated"
|
498 |
msgstr "広告更新"
|
499 |
|
500 |
+
#: adrotate.php:208
|
501 |
msgid "Ad(s) deleted"
|
502 |
msgstr "広告削除"
|
503 |
|
504 |
+
#: adrotate.php:210
|
505 |
msgid "Ad(s) statistics reset"
|
506 |
msgstr "広告の統計情報初期化"
|
507 |
|
508 |
+
#: adrotate.php:212
|
509 |
msgid "Ad(s) renewed"
|
510 |
msgstr "広告の更新"
|
511 |
|
512 |
+
#: adrotate.php:214
|
513 |
msgid "Ad(s) deactivated"
|
514 |
msgstr "広告の利用停止"
|
515 |
|
516 |
+
#: adrotate.php:216
|
517 |
msgid "Ad(s) activated"
|
518 |
msgstr "広告の利用可能化"
|
519 |
|
520 |
+
#: adrotate.php:218
|
521 |
msgid ""
|
522 |
"The ad was saved but has an issue which might prevent it from working "
|
523 |
"properly. Review the yellow marked ad."
|
525 |
"広告は保存されますが、動作してから問題が発生するかもしれません。黄色でマーク"
|
526 |
"された広告を確認して下さい。"
|
527 |
|
528 |
+
#: adrotate.php:220
|
529 |
#, fuzzy
|
530 |
msgid "Export created"
|
531 |
msgstr "エクスポートオプション"
|
532 |
|
533 |
+
#: adrotate.php:224
|
534 |
msgid "Action prohibited"
|
535 |
msgstr "今の操作は禁止されました。"
|
536 |
|
537 |
+
#: adrotate.php:226 adrotate.php:374
|
538 |
msgid "No data found in selected time period"
|
539 |
msgstr "選ばれた期間が見つかりません。"
|
540 |
|
541 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
542 |
msgid "Manage"
|
543 |
msgstr "管理"
|
544 |
|
545 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
546 |
msgid "Add New"
|
547 |
msgstr "新規追加"
|
548 |
|
549 |
+
#: adrotate.php:363
|
550 |
msgid "Group Management"
|
551 |
msgstr "グループの管理"
|
552 |
|
553 |
+
#: adrotate.php:366
|
554 |
msgid "Group created"
|
555 |
msgstr "グループの作成"
|
556 |
|
557 |
+
#: adrotate.php:368
|
558 |
msgid "Group updated"
|
559 |
msgstr "グループの更新"
|
560 |
|
561 |
+
#: adrotate.php:370
|
562 |
msgid "Group deleted"
|
563 |
msgstr "グループの削除"
|
564 |
|
565 |
+
#: adrotate.php:372
|
566 |
msgid "Group including it's Ads deleted"
|
567 |
msgstr "削除された広告がグループに含まれています。"
|
568 |
|
569 |
+
#: adrotate.php:432
|
570 |
#, fuzzy
|
571 |
msgid "Schedule Management available in AdRotate Pro"
|
572 |
msgstr "この機能は使いません。"
|
573 |
|
574 |
+
#: adrotate.php:442
|
575 |
#, fuzzy
|
576 |
msgid ""
|
577 |
"Schedule management and multiple schedules per advert is available in "
|
578 |
"AdRotate Pro."
|
579 |
msgstr "この機能は使いません。"
|
580 |
|
581 |
+
#: adrotate.php:442 adrotate.php:529
|
582 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
583 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
584 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
587 |
msgid "More information"
|
588 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
589 |
|
590 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
591 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
592 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
593 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
594 |
msgid "Bulk Actions"
|
595 |
msgstr "一括操作"
|
596 |
|
597 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
598 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
599 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
600 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
601 |
msgid "Go"
|
602 |
msgstr "実行"
|
603 |
|
604 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
605 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
606 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
607 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
608 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
609 |
#, fuzzy
|
610 |
msgid "ID"
|
611 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
612 |
|
613 |
+
#: adrotate.php:460
|
614 |
msgid "Start"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: adrotate.php:460
|
618 |
msgid "End"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
622 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
623 |
msgid "Ads"
|
624 |
msgstr "広告"
|
625 |
|
626 |
+
#: adrotate.php:463
|
627 |
#, fuzzy
|
628 |
msgid "Max Clicks"
|
629 |
msgstr "クリック"
|
630 |
|
631 |
+
#: adrotate.php:464
|
632 |
#, fuzzy
|
633 |
msgid "Max Impressions"
|
634 |
msgstr "表示数"
|
635 |
|
636 |
+
#: adrotate.php:494
|
637 |
#, fuzzy
|
638 |
msgid "No schedules created yet!"
|
639 |
msgstr "まだブロックが作られていません。"
|
640 |
|
641 |
+
#: adrotate.php:499
|
642 |
#, fuzzy
|
643 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
644 |
msgstr ""
|
645 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
646 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
647 |
|
648 |
+
#: adrotate.php:499 adrotate.php:562
|
649 |
#, fuzzy
|
650 |
msgid "Upgrade today!"
|
651 |
msgstr "本日"
|
652 |
|
653 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
654 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
655 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
656 |
#, fuzzy
|
657 |
msgid "Expires soon."
|
658 |
msgstr "これは出来る限り早く修正して下さい。"
|
659 |
|
660 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
661 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
662 |
#, fuzzy
|
663 |
msgid "Has expired."
|
664 |
msgstr "個の広告が期限切れです。"
|
665 |
|
666 |
+
#: adrotate.php:527
|
667 |
#, fuzzy
|
668 |
msgid "Media Management available in AdRotate Pro"
|
669 |
msgstr "この機能は使いません。"
|
670 |
|
671 |
+
#: adrotate.php:529
|
672 |
msgid ""
|
673 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
674 |
"especially useful if you use responsive adverts with multiple images."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: adrotate.php:529
|
678 |
#, fuzzy
|
679 |
msgid "Media uploading and management is available in AdRotate Pro."
|
680 |
msgstr "この機能は使いません。"
|
681 |
|
682 |
+
#: adrotate.php:531
|
683 |
#, fuzzy
|
684 |
msgid "Upload new banner image"
|
685 |
msgstr "バナー画像"
|
686 |
|
687 |
+
#: adrotate.php:532
|
688 |
#, fuzzy
|
689 |
msgid "Accepted files are:"
|
690 |
msgstr ""
|
691 |
"%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
|
692 |
"す。"
|
693 |
|
694 |
+
#: adrotate.php:532
|
695 |
msgid "Maximum size is 512Kb."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: adrotate.php:532
|
699 |
msgid "Important:"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: adrotate.php:532
|
703 |
msgid ""
|
704 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
705 |
"spaces with a - or _."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: adrotate.php:534
|
709 |
msgid ""
|
710 |
"For responsive adverts make sure the filename is in the following format; "
|
711 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
|
715 |
msgid ""
|
716 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
717 |
"filename instead of \".full\" for the various viewports."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
|
721 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
722 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
723 |
msgid "Example:"
|
724 |
msgstr "例:"
|
725 |
|
726 |
+
#: adrotate.php:536
|
727 |
msgid ""
|
728 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
729 |
"for different viewports."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: adrotate.php:540
|
733 |
#, fuzzy
|
734 |
msgid "Upload image"
|
735 |
msgstr "バナー画像"
|
736 |
|
737 |
+
#: adrotate.php:543
|
738 |
#, fuzzy
|
739 |
msgid "Available banner images in"
|
740 |
msgstr "バナー画像"
|
741 |
|
742 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
743 |
msgid "Name"
|
744 |
msgstr "名前"
|
745 |
|
746 |
+
#: adrotate.php:549
|
747 |
#, fuzzy
|
748 |
msgid "Actions"
|
749 |
msgstr "一括操作"
|
750 |
|
751 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
752 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
753 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
754 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
755 |
msgid "Delete"
|
756 |
msgstr "削除"
|
757 |
|
758 |
+
#: adrotate.php:562
|
759 |
msgid ""
|
760 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: adrotate.php:562
|
764 |
#, fuzzy
|
765 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
766 |
msgstr ""
|
767 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
768 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
769 |
|
770 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
msgid "AdRotate Settings"
|
772 |
msgstr "AdRotate 設定"
|
773 |
|
774 |
+
#: adrotate.php:609
|
775 |
msgid "Settings saved"
|
776 |
msgstr "設定を保存します。"
|
777 |
|
778 |
+
#: adrotate.php:611
|
779 |
msgid "Database optimized"
|
780 |
msgstr "データベースの最適化"
|
781 |
|
782 |
+
#: adrotate.php:613
|
783 |
msgid "Database repaired"
|
784 |
msgstr "データベースの修復"
|
785 |
|
786 |
+
#: adrotate.php:615
|
787 |
#, fuzzy
|
788 |
msgid "Ads evaluated and statuses have been corrected where required"
|
789 |
msgstr "広告"
|
790 |
|
791 |
+
#: adrotate.php:617
|
792 |
msgid "Empty database records removed"
|
793 |
msgstr "空のデータベースは削除されました。"
|
794 |
|
795 |
+
#: adrotate.php:619
|
796 |
msgid "Database can only be optimized or cleaned once every hour"
|
797 |
msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
|
798 |
|
799 |
+
#: adrotate.php:627
|
800 |
msgid "Access Rights"
|
801 |
msgstr "アクセス権限"
|
802 |
|
803 |
+
#: adrotate.php:628
|
804 |
msgid "Who has access to what?"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: adrotate.php:631
|
808 |
msgid "Manage/Add/Edit adverts"
|
809 |
msgstr "広告の追加・編集管理"
|
810 |
|
811 |
+
#: adrotate.php:635
|
812 |
msgid "Role to see and add/edit ads."
|
813 |
msgstr "広告を追加・編集する権限"
|
814 |
|
815 |
+
#: adrotate.php:639
|
816 |
msgid "Delete/Reset adverts"
|
817 |
msgstr "広告の削除やリセット"
|
818 |
|
819 |
+
#: adrotate.php:643
|
820 |
msgid "Role to delete ads and reset stats."
|
821 |
msgstr "広告の削除やリセットする権限"
|
822 |
|
823 |
+
#: adrotate.php:647
|
824 |
msgid "Manage/Add/Edit groups"
|
825 |
msgstr "グループの追加・編集管理"
|
826 |
|
827 |
+
#: adrotate.php:651
|
828 |
msgid "Role to see and add/edit groups."
|
829 |
msgstr "グループを削除・編集する権限"
|
830 |
|
831 |
+
#: adrotate.php:655
|
832 |
msgid "Delete groups"
|
833 |
msgstr "グループの削除"
|
834 |
|
835 |
+
#: adrotate.php:659
|
836 |
msgid "Role to delete groups."
|
837 |
msgstr "グループを削除できる権限"
|
838 |
|
839 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
840 |
+
#: adrotate.php:876
|
841 |
msgid "Update Options"
|
842 |
msgstr "設定の更新"
|
843 |
|
844 |
+
#: adrotate.php:691
|
845 |
msgid "Statistics"
|
846 |
msgstr "統計"
|
847 |
|
848 |
+
#: adrotate.php:694
|
849 |
#, fuzzy
|
850 |
msgid "Enable stats"
|
851 |
msgstr "統計リセット"
|
852 |
|
853 |
+
#: adrotate.php:696
|
854 |
#, fuzzy
|
855 |
msgid "Track clicks and impressions."
|
856 |
msgstr "クリック"
|
857 |
|
858 |
+
#: adrotate.php:696
|
859 |
#, fuzzy
|
860 |
msgid "Disabling this also disables click and impression limits on schedules."
|
861 |
msgstr "現在のスケジュール"
|
862 |
|
863 |
+
#: adrotate.php:700
|
864 |
msgid "Impressions timer"
|
865 |
msgstr "表示時間"
|
866 |
|
867 |
+
#: adrotate.php:702 adrotate.php:709
|
868 |
msgid "Seconds."
|
869 |
msgstr "秒"
|
870 |
|
871 |
+
#: adrotate.php:703
|
872 |
#, fuzzy
|
873 |
msgid "Default: 60."
|
874 |
msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
|
875 |
|
876 |
+
#: adrotate.php:703
|
877 |
#, fuzzy
|
878 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
879 |
msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
880 |
|
881 |
+
#: adrotate.php:707
|
882 |
#, fuzzy
|
883 |
msgid "Clicks timer"
|
884 |
msgstr "表示時間"
|
885 |
|
886 |
+
#: adrotate.php:710
|
887 |
#, fuzzy
|
888 |
msgid "Default: 86400."
|
889 |
msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
|
890 |
|
891 |
+
#: adrotate.php:710
|
892 |
#, fuzzy
|
893 |
msgid ""
|
894 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
895 |
msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
896 |
|
897 |
+
#: adrotate.php:715
|
898 |
#, fuzzy
|
899 |
msgid "Bot filter"
|
900 |
msgstr "ユーザーエージェントフィルター"
|
901 |
|
902 |
+
#: adrotate.php:718
|
903 |
msgid "User-Agent Filter"
|
904 |
msgstr "ユーザーエージェントフィルター"
|
905 |
|
906 |
+
#: adrotate.php:721
|
907 |
msgid ""
|
908 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
909 |
"prevent impressions and clicks counted on them."
|
911 |
"コンマは、キーワードのリストを区切ります。カウント表示回数やクリックを防止す"
|
912 |
"るために、ボット/クローラ/ユーザエージェントを除外します。"
|
913 |
|
914 |
+
#: adrotate.php:722
|
915 |
#, fuzzy
|
916 |
msgid ""
|
917 |
"Keep in mind that this might give false positives. The word 'google' also "
|
920 |
"注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
|
921 |
"場合があります。"
|
922 |
|
923 |
+
#: adrotate.php:722
|
924 |
#, fuzzy
|
925 |
msgid "Keep your list up-to-date"
|
926 |
msgstr ""
|
927 |
"コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
|
928 |
"抑えて下さい。"
|
929 |
|
930 |
+
#: adrotate.php:723
|
931 |
#, fuzzy
|
932 |
msgid ""
|
933 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
934 |
"other characters are stripped out."
|
935 |
msgstr "HTMLタグは取り除かれます。"
|
936 |
|
937 |
+
#: adrotate.php:724
|
938 |
msgid ""
|
939 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
940 |
"well."
|
942 |
"さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
|
943 |
"れます。"
|
944 |
|
945 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
946 |
msgid "Learn more about"
|
947 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
948 |
|
949 |
+
#: adrotate.php:724
|
950 |
msgid "user-agents"
|
951 |
msgstr "ユーザーエージェント[英語]"
|
952 |
|
953 |
+
#: adrotate.php:733
|
954 |
msgid "Miscellaneous"
|
955 |
msgstr "その他"
|
956 |
|
957 |
+
#: adrotate.php:736
|
958 |
msgid "Widget alignment"
|
959 |
msgstr "ウィジェットの配置"
|
960 |
|
961 |
+
#: adrotate.php:737
|
962 |
msgid ""
|
963 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
964 |
"not always help!)"
|
966 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
967 |
"クスをオンにします。"
|
968 |
|
969 |
+
#: adrotate.php:740
|
970 |
#, fuzzy
|
971 |
msgid "Widget padding"
|
972 |
msgstr "ブロックの隙間"
|
973 |
|
974 |
+
#: adrotate.php:741
|
975 |
#, fuzzy
|
976 |
msgid ""
|
977 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
980 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
981 |
"クスをオンにします。"
|
982 |
|
983 |
+
#: adrotate.php:746 adrotate.php:757
|
984 |
msgid "NOTICE:"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: adrotate.php:747
|
988 |
msgid ""
|
989 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
990 |
"You need to add the following line to your wp-config.php near the bottom or "
|
992 |
"needs to be enabled in W3 Total Cache as well too."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: adrotate.php:751
|
996 |
msgid "W3 Total Caching"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: adrotate.php:752
|
1000 |
#, fuzzy
|
1001 |
msgid "Check this box if you use W3 Total Caching on your site."
|
1002 |
msgstr ""
|
1003 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
1004 |
"クスをオンにします。"
|
1005 |
|
1006 |
+
#: adrotate.php:758
|
1007 |
msgid ""
|
1008 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
1009 |
"this function will not work. WP Super Cache has discontinued support for "
|
1010 |
"dynamic content."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: adrotate.php:762
|
1014 |
msgid "WP Super Cache"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: adrotate.php:763
|
1018 |
#, fuzzy
|
1019 |
msgid "Check this box if you use WP Super Cache on your site."
|
1020 |
msgstr ""
|
1021 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
1022 |
"クスをオンにします。"
|
1023 |
|
1024 |
+
#: adrotate.php:768
|
1025 |
#, fuzzy
|
1026 |
msgid ""
|
1027 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1030 |
"これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
|
1031 |
"可能性があります。"
|
1032 |
|
1033 |
+
#: adrotate.php:768
|
1034 |
#, fuzzy
|
1035 |
msgid ""
|
1036 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1037 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
1038 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
1039 |
|
1040 |
+
#: adrotate.php:772
|
1041 |
+
msgid "Javascript"
|
1042 |
+
msgstr ""
|
|
|
1043 |
|
1044 |
+
#: adrotate.php:775
|
1045 |
msgid "Load jQuery"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: adrotate.php:776
|
1049 |
#, fuzzy
|
1050 |
msgid ""
|
1051 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1052 |
"theme does not load jQuery already."
|
1053 |
msgstr "テキストリンク(クリック数調査付):"
|
1054 |
|
1055 |
+
#: adrotate.php:779
|
1056 |
msgid "Load in footer?"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: adrotate.php:780
|
1060 |
#, fuzzy
|
1061 |
msgid ""
|
1062 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1066 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
1067 |
"さい。英語ですが。"
|
1068 |
|
1069 |
+
#: adrotate.php:788
|
1070 |
msgid "Maintenance"
|
1071 |
msgstr "メンテナンス"
|
1072 |
|
1073 |
+
#: adrotate.php:789
|
1074 |
#, fuzzy
|
1075 |
msgid ""
|
1076 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1080 |
"sluggish."
|
1081 |
msgstr "データベースのバックアップを取りましたか?"
|
1082 |
|
1083 |
+
#: adrotate.php:804 adrotate.php:806
|
1084 |
msgid "Optimize Database"
|
1085 |
msgstr "データベースの最適化"
|
1086 |
|
1087 |
+
#: adrotate.php:806
|
1088 |
msgid "You are about to optimize the AdRotate database."
|
1089 |
msgstr "AdRotateのデータベースの最適化を行います。"
|
1090 |
|
1091 |
+
#: adrotate.php:806
|
1092 |
msgid "Did you make a backup of your database?"
|
1093 |
msgstr "データベースのバックアップを取りましたか?"
|
1094 |
|
1095 |
+
#: adrotate.php:806
|
1096 |
msgid ""
|
1097 |
"This may take a moment and may cause your website to respond slow "
|
1098 |
"temporarily!"
|
1100 |
"これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
|
1101 |
"可能性があります。"
|
1102 |
|
1103 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1104 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1105 |
msgid "OK to continue, CANCEL to stop."
|
1106 |
msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
|
1107 |
|
1108 |
+
#: adrotate.php:807
|
1109 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1110 |
msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
|
1111 |
|
1112 |
+
#: adrotate.php:808
|
1113 |
#, fuzzy
|
1114 |
msgid ""
|
1115 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1116 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1117 |
msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
|
1118 |
|
1119 |
+
#: adrotate.php:812 adrotate.php:814
|
1120 |
msgid "Clean-up Database"
|
1121 |
msgstr "データベースのクリーンアップ"
|
1122 |
|
1123 |
+
#: adrotate.php:814
|
1124 |
#, fuzzy
|
1125 |
msgid ""
|
1126 |
"You are about to clean up your database. This may delete expired schedules "
|
1127 |
"and older statistics."
|
1128 |
msgstr "データベースのクリーンアップ"
|
1129 |
|
1130 |
+
#: adrotate.php:814
|
1131 |
#, fuzzy
|
1132 |
msgid "Are you sure you want to continue?"
|
1133 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
1134 |
|
1135 |
+
#: adrotate.php:814 adrotate.php:822
|
1136 |
#, fuzzy
|
1137 |
msgid "This might take a while and may slow down your site during this action!"
|
1138 |
msgstr ""
|
1139 |
"これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
|
1140 |
"可能性があります。"
|
1141 |
|
1142 |
+
#: adrotate.php:815
|
1143 |
#, fuzzy
|
1144 |
msgid "Delete stats older than 356 days (Optional)."
|
1145 |
msgstr "広告の削除やリセットする権限"
|
1146 |
|
1147 |
+
#: adrotate.php:816
|
1148 |
#, fuzzy
|
1149 |
msgid ""
|
1150 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1151 |
"occasions these records are faulty."
|
1152 |
msgstr "空のデータベースは削除されました。"
|
1153 |
|
1154 |
+
#: adrotate.php:816
|
1155 |
#, fuzzy
|
1156 |
msgid ""
|
1157 |
"If you made an ad or group that does not save when you make it use this "
|
1158 |
"button to delete those empty records."
|
1159 |
msgstr "グループを削除しようとしています。"
|
1160 |
|
1161 |
+
#: adrotate.php:816
|
1162 |
#, fuzzy
|
1163 |
msgid ""
|
1164 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1165 |
"your site."
|
1166 |
msgstr "データベースのクリーンアップ"
|
1167 |
|
1168 |
+
#: adrotate.php:820
|
1169 |
msgid "Re-evaluate Ads"
|
1170 |
msgstr "広告の再評価"
|
1171 |
|
1172 |
+
#: adrotate.php:822
|
1173 |
msgid "Re-evaluate all ads"
|
1174 |
msgstr "すべての広告の再評価"
|
1175 |
|
1176 |
+
#: adrotate.php:822
|
1177 |
msgid "You are about to check all ads for errors."
|
1178 |
msgstr "すべての広告のエラーをチェックしようとしています。"
|
1179 |
|
1180 |
+
#: adrotate.php:823
|
1181 |
#, fuzzy
|
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:827
|
1188 |
#, fuzzy
|
1189 |
msgid ""
|
1190 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1195 |
"clicking these buttons is not a valid point in any case."
|
1196 |
msgstr "データベースのバックアップを取りましたか?"
|
1197 |
|
1198 |
+
#: adrotate.php:835
|
1199 |
msgid "Troubleshooting"
|
1200 |
msgstr "トラブルシューティング(トラブル対応)"
|
1201 |
|
1202 |
+
#: adrotate.php:838
|
1203 |
#, fuzzy
|
1204 |
msgid "Current version:"
|
1205 |
msgstr "現在のスケジュール"
|
1206 |
|
1207 |
+
#: adrotate.php:839
|
1208 |
#, fuzzy
|
1209 |
msgid "Previous version:"
|
1210 |
msgstr "プレビュー"
|
1211 |
|
1212 |
+
#: adrotate.php:842
|
1213 |
#, fuzzy
|
1214 |
msgid "Current database version:"
|
1215 |
msgstr "現在のスケジュール"
|
1216 |
|
1217 |
+
#: adrotate.php:843
|
1218 |
#, fuzzy
|
1219 |
msgid "Previous database version:"
|
1220 |
msgstr "データベースの最適化"
|
1221 |
|
1222 |
+
#: adrotate.php:846
|
1223 |
#, fuzzy
|
1224 |
msgid "Ad evaluation next run:"
|
1225 |
msgstr "通知先"
|
1226 |
|
1227 |
+
#: adrotate.php:847 adrotate.php:851
|
1228 |
#, fuzzy
|
1229 |
msgid "Not scheduled!"
|
1230 |
msgstr "掲載期間"
|
1231 |
|
1232 |
+
#: adrotate.php:850
|
1233 |
#, fuzzy
|
1234 |
msgid "Clean Trackerdata next run:"
|
1235 |
msgstr "データベースのクリーンアップ"
|
1236 |
|
1237 |
+
#: adrotate.php:854
|
1238 |
#, fuzzy
|
1239 |
msgid "Current status of adverts"
|
1240 |
msgstr "現在のスケジュール"
|
1241 |
|
1242 |
+
#: adrotate.php:855
|
1243 |
#, fuzzy
|
1244 |
msgid "Normal"
|
1245 |
msgstr "平均的表示(50%程度)"
|
1246 |
|
1247 |
+
#: adrotate.php:855
|
1248 |
#, fuzzy
|
1249 |
msgid "Error"
|
1250 |
msgstr "理解できないエラーが起こっています。"
|
1251 |
|
1252 |
+
#: adrotate.php:855
|
1253 |
#, fuzzy
|
1254 |
msgid "Expired"
|
1255 |
msgstr "個の広告が期限切れです。"
|
1256 |
|
1257 |
+
#: adrotate.php:855
|
1258 |
#, fuzzy
|
1259 |
msgid "Expires Soon"
|
1260 |
msgstr "これは出来る限り早く修正して下さい。"
|
1261 |
|
1262 |
+
#: adrotate.php:855
|
1263 |
#, fuzzy
|
1264 |
msgid "Unknown Status"
|
1265 |
msgstr "理解できないエラーが起こっています。"
|
1266 |
|
1267 |
+
#: adrotate.php:858
|
1268 |
msgid ""
|
1269 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1270 |
"developers to review saved settings or how ads are selected. These can be "
|
1274 |
"注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
|
1275 |
"用しないで下さい。基本的にチェックを入れない!"
|
1276 |
|
1277 |
+
#: adrotate.php:862
|
1278 |
msgid "Developer Debug"
|
1279 |
msgstr "開発者向けデバッグ"
|
1280 |
|
1281 |
+
#: adrotate.php:864
|
1282 |
#, fuzzy
|
1283 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1284 |
msgstr ""
|
1285 |
"注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
|
1286 |
"用しないで下さい。基本的にチェックを入れない!"
|
1287 |
|
1288 |
+
#: adrotate.php:865
|
1289 |
#, fuzzy
|
1290 |
msgid "Show all settings, dashboard routines and related values."
|
1291 |
msgstr "設定"
|
1292 |
|
1293 |
+
#: adrotate.php:866
|
1294 |
#, fuzzy
|
1295 |
msgid "Show array of all userroles and capabilities."
|
1296 |
msgstr "表示できるデータがありません。"
|
1297 |
|
1298 |
+
#: adrotate.php:867
|
1299 |
#, fuzzy
|
1300 |
msgid "Review saved advertisers! Visible to advertisers."
|
1301 |
msgstr "広告主から提出された広告を承認する権限"
|
1302 |
|
1303 |
+
#: adrotate.php:868
|
1304 |
#, fuzzy
|
1305 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1306 |
msgstr "統計リセット"
|
1307 |
|
1308 |
+
#: adrotate.php:869
|
1309 |
#, fuzzy
|
1310 |
msgid ""
|
1311 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1312 |
"clicktracking."
|
1313 |
msgstr "テキストリンク(クリック数調査付):"
|
1314 |
|
1315 |
+
#: adrotate.php:870
|
1316 |
#, fuzzy
|
1317 |
msgid "Temporarily disable encryption on the redirect url."
|
1318 |
msgstr ""
|
1377 |
msgid "AdRotate News and Developer Blog"
|
1378 |
msgstr "AdRotate Blog"
|
1379 |
|
1380 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1381 |
#, fuzzy
|
1382 |
msgid "Buy AdRotate Professional"
|
1383 |
msgstr "AdRotate Blog"
|
1384 |
|
1385 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1386 |
msgid "Singe License"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1390 |
msgid "For one WordPress installation."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1394 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1395 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1396 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1397 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1398 |
#, fuzzy
|
1399 |
msgid "Buy now"
|
1400 |
msgstr "継続する場合は対応して下さい。"
|
1401 |
|
1402 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1403 |
msgid "Duo License"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1407 |
msgid "For two WordPress installations."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1411 |
msgid "Multi License"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1415 |
msgid " For up to five WordPress installations."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1419 |
#, fuzzy
|
1420 |
msgid "Developer License"
|
1421 |
msgstr "開発者向けデバッグ"
|
1422 |
|
1423 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1424 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1428 |
msgid "Network License"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1432 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1436 |
msgid "Compare licenses"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1440 |
msgid "Not sure which license is for you? Compare them..."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1444 |
#, fuzzy
|
1445 |
msgid "All Licenses"
|
1446 |
msgstr "すべての広告の再評価"
|
1447 |
|
1448 |
+
#: dashboard/adrotate-info.php:171
|
1449 |
#, fuzzy
|
1450 |
msgid "Get more features with AdRotate Pro"
|
1451 |
msgstr ""
|
1452 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
1453 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
1454 |
|
1455 |
+
#: dashboard/adrotate-info.php:174
|
1456 |
msgid ""
|
1457 |
"Benefit from extra features to reinforce your income with advertising "
|
1458 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1459 |
"Pro offers on top of the trusted features included in the free version."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: dashboard/adrotate-info.php:175
|
1463 |
#, fuzzy
|
1464 |
msgid "or go to the"
|
1465 |
msgstr "実行"
|
1466 |
|
1467 |
+
#: dashboard/adrotate-info.php:179
|
1468 |
#, fuzzy
|
1469 |
msgid "Support AdRotate"
|
1470 |
msgstr "AdRotate Blog"
|
1471 |
|
1472 |
+
#: dashboard/adrotate-info.php:182
|
1473 |
#, fuzzy
|
1474 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1475 |
msgstr ""
|
1476 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
1477 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
1478 |
|
1479 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1480 |
#, fuzzy
|
1481 |
msgid "AdRotate is brought to you by"
|
1482 |
msgstr "サービス紹介"
|
1483 |
|
1484 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1485 |
msgid ""
|
1486 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1487 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
1491 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
1492 |
"さい。英語ですが。"
|
1493 |
|
1494 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1495 |
#, fuzzy
|
1496 |
msgid "Find out more"
|
1497 |
msgstr "以下のURLをチェック下さい。"
|
1498 |
|
1499 |
+
#: dashboard/adrotate-info.php:193
|
1500 |
msgid "Follow"
|
1501 |
msgstr ""
|
1502 |
|
2054 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2055 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2056 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
2057 |
msgid "Clicks"
|
2058 |
msgstr "クリック"
|
2059 |
|
2162 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2163 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2164 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2165 |
msgid "Start / End"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2169 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2170 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2171 |
msgid "Title"
|
2172 |
msgstr "タイトル"
|
2173 |
|
2175 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2176 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2177 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2178 |
msgid "CTR"
|
2179 |
msgstr ""
|
2180 |
|
2249 |
|
2250 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2251 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2252 |
msgid "Weight"
|
2253 |
msgstr "表示頻度"
|
2254 |
|
2255 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2256 |
#, fuzzy
|
2257 |
msgid "Shown"
|
2258 |
msgstr "この広告は期限切れで現在サイトに表示されていません。"
|
2261 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2262 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2263 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2264 |
msgid "Today"
|
2265 |
msgstr "本日"
|
2266 |
|
2665 |
msgid "Statistics for group"
|
2666 |
msgstr "統計 "
|
2667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2668 |
#, fuzzy
|
2669 |
+
#~ msgid "AdRotate Server"
|
2670 |
+
#~ msgstr "AdRotate Blog"
|
2671 |
|
|
|
|
|
2672 |
#, fuzzy
|
2673 |
+
#~ msgid "Overview"
|
2674 |
+
#~ msgstr "プレビュー"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2675 |
|
|
|
2676 |
#, fuzzy
|
2677 |
+
#~ msgid "Javascript Libraries"
|
2678 |
+
#~ msgstr "HTML/JavaScriptの利用は可能ですが、利用にはご注意下さい。"
|
2679 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2680 |
#, fuzzy
|
2681 |
+
#~ msgid "Added / Updated"
|
2682 |
+
#~ msgstr "ブロック更新"
|
|
|
|
|
|
|
|
|
|
|
|
|
2683 |
|
|
|
2684 |
#, fuzzy
|
2685 |
+
#~ msgid "No ads received yet!"
|
2686 |
+
#~ msgstr "まだ広告が1つも作られていません。"
|
2687 |
|
|
|
|
|
|
|
|
|
|
|
2688 |
#, fuzzy
|
2689 |
+
#~ msgid "Updated"
|
2690 |
+
#~ msgstr "ブロック更新"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2691 |
|
2692 |
+
#~ msgid "Show from"
|
2693 |
+
#~ msgstr "掲載開始"
|
|
|
2694 |
|
2695 |
+
#~ msgid "Show until"
|
2696 |
+
#~ msgstr "掲載終了"
|
|
|
|
|
|
|
2697 |
|
2698 |
+
#, fuzzy
|
2699 |
+
#~ msgid "AdRotate Server Settings"
|
2700 |
+
#~ msgstr "AdRotate 設定"
|
2701 |
|
2702 |
+
#, fuzzy
|
2703 |
+
#~ msgid "Status"
|
2704 |
+
#~ msgstr "統計リセット"
|
|
|
|
|
2705 |
|
2706 |
+
#, fuzzy
|
2707 |
+
#~ msgid "Not linked - No adverts will be synced."
|
2708 |
+
#~ msgstr "新しい広告の承認"
|
2709 |
|
|
|
2710 |
#, fuzzy
|
2711 |
+
#~ msgid "Unlink from server"
|
2712 |
+
#~ msgstr "掲載開始"
|
2713 |
|
2714 |
#, fuzzy
|
2715 |
#~ msgid "AdRotate Website"
|
language/adrotate-pl_PL.mo
CHANGED
Binary file
|
language/adrotate-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -15,24 +15,24 @@ msgstr ""
|
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Generator: Poedit 1.
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
-
#: adrotate-functions.php:
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
-
#: adrotate-output.php:
|
32 |
msgid "Oh no! Something went wrong!"
|
33 |
msgstr "Uwaga ! Coś poszło nie tak !"
|
34 |
|
35 |
-
#: adrotate-output.php:
|
36 |
msgid ""
|
37 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
38 |
"Verify if the url used is valid or log in via your browser."
|
@@ -40,7 +40,7 @@ msgstr ""
|
|
40 |
"Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
|
41 |
"Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
|
42 |
|
43 |
-
#: adrotate-output.php:
|
44 |
msgid ""
|
45 |
"If you have received the url you want to visit via email, you are being "
|
46 |
"tricked!"
|
@@ -48,11 +48,11 @@ msgstr ""
|
|
48 |
"Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
|
49 |
"zostałeś oszukany. "
|
50 |
|
51 |
-
#: adrotate-output.php:
|
52 |
msgid "Contact support if the issue persists:"
|
53 |
msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
|
54 |
|
55 |
-
#: adrotate-output.php:
|
56 |
msgid ""
|
57 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
58 |
"restrictions or does not exist!"
|
@@ -60,7 +60,7 @@ msgstr ""
|
|
60 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
61 |
"harmonogramie lub geolokalizacji lub może nie istnieć."
|
62 |
|
63 |
-
#: adrotate-output.php:
|
64 |
msgid ""
|
65 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
66 |
"restrictions!"
|
@@ -68,7 +68,7 @@ msgstr ""
|
|
68 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
69 |
"harmonogramie lub geolokalizacji."
|
70 |
|
71 |
-
#: adrotate-output.php:
|
72 |
msgid ""
|
73 |
"Either there are no banners, they are disabled or none qualified for this "
|
74 |
"location!"
|
@@ -76,19 +76,19 @@ msgstr ""
|
|
76 |
"Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
|
77 |
"lokalizacji!"
|
78 |
|
79 |
-
#: adrotate-output.php:
|
80 |
msgid "Error, no Ad ID set! Check your syntax!"
|
81 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
82 |
|
83 |
-
#: adrotate-output.php:
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
86 |
|
87 |
-
#: adrotate-output.php:
|
88 |
msgid "Error, group does not exist! Check your syntax!"
|
89 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
|
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!!"
|
@@ -96,184 +96,184 @@ msgstr ""
|
|
96 |
"Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
|
97 |
"AdRote na panelu wtyczek."
|
98 |
|
99 |
-
#: adrotate-output.php:
|
100 |
msgid "If this does not solve the issue please seek support at"
|
101 |
msgstr ""
|
102 |
"Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
|
103 |
|
104 |
-
#: adrotate-output.php:
|
105 |
msgid "An unknown error occured."
|
106 |
msgstr "Pojawił się nieznany błąd."
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
msgid "active ad(s) expired."
|
110 |
msgstr "Aktywne reklamy wygasły."
|
111 |
|
112 |
-
#: adrotate-output.php:
|
113 |
msgid "Take action now"
|
114 |
msgstr "Uruchom natymiastowo."
|
115 |
|
116 |
-
#: adrotate-output.php:
|
117 |
msgid "active ad(s) are about to expire."
|
118 |
msgstr "Aktywne reklamy niedługo wygasną."
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
msgid "Check it out"
|
122 |
msgstr "Sprawdz to"
|
123 |
|
124 |
-
#: adrotate-output.php:
|
125 |
msgid "active ad(s) with configuration errors."
|
126 |
msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "Solve this"
|
130 |
msgstr "Napraw to"
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid "ad(s) expired."
|
134 |
msgstr "Reklama wygasła."
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid "ad(s) are about to expire."
|
138 |
msgstr "Reklama które wygasną."
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
msgid "ad(s) with configuration errors."
|
142 |
msgstr "Reklamy z błędami konfuguracyjnymi."
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
msgid "Fix this as soon as possible"
|
146 |
msgstr "Napraw to tak szybko jak to możliwe"
|
147 |
|
148 |
-
#: adrotate-output.php:
|
149 |
#, fuzzy
|
150 |
msgid "Learn More"
|
151 |
msgstr "Dowiedź się więcej"
|
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 "Czy wykonałeś kopie zapasową swojej bazy?"
|
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 "instrukcje"
|
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 "Użyteczne odnośniki."
|
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 "Więcej ustawień z AdRotate Pro"
|
205 |
|
206 |
-
#: adrotate-output.php:
|
207 |
#, fuzzy
|
208 |
msgid "AdRotate manuals"
|
209 |
msgstr "Informacja AdRotate "
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Support Forum"
|
214 |
msgstr "Sklep 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 "Sklep AdRotate"
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
#, fuzzy
|
227 |
msgid "AdRotate Getting Started."
|
228 |
msgstr "Ustawienia 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 "Sklep 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 "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
msgid "Brought to you by"
|
250 |
msgstr "Dostarczone przez "
|
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 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
271 |
|
272 |
-
#: adrotate-output.php:
|
273 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: adrotate-output.php:
|
277 |
msgid ""
|
278 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
279 |
"out more about what I can do for you!"
|
@@ -282,27 +282,27 @@ msgstr ""
|
|
282 |
"informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
|
283 |
"więcej dla Wordpress'a."
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "Visit the"
|
287 |
msgstr "Odwiedź"
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
msgid "website"
|
291 |
msgstr "strone internetową"
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "Available in AdRotate Pro"
|
295 |
msgstr "Dostępne w wersji AdRotate Pro"
|
296 |
|
297 |
-
#: adrotate-output.php:
|
298 |
msgid "More information..."
|
299 |
msgstr "Więcej informacji"
|
300 |
|
301 |
-
#: adrotate-output.php:
|
302 |
msgid "This feature is available in AdRotate Pro"
|
303 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
msgid "Learn more"
|
307 |
msgstr "Dowiedź się więcej"
|
308 |
|
@@ -430,70 +430,70 @@ msgstr "Informacje główne"
|
|
430 |
msgid "AdRotate Pro"
|
431 |
msgstr "AdRotate Pro"
|
432 |
|
433 |
-
#: adrotate.php:
|
434 |
msgid "Manage Ads"
|
435 |
msgstr "Zarządzaj reklamami"
|
436 |
|
437 |
-
#: adrotate.php:
|
438 |
msgid "Manage Groups"
|
439 |
msgstr "Zarządzaj grupami"
|
440 |
|
441 |
-
#: adrotate.php:
|
442 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
443 |
#, fuzzy
|
444 |
msgid "Manage Schedules"
|
445 |
msgstr "Zarządzaj"
|
446 |
|
447 |
-
#: adrotate.php:
|
448 |
#, fuzzy
|
449 |
msgid "Manage Media"
|
450 |
msgstr "Media:"
|
451 |
|
452 |
-
#: adrotate.php:
|
453 |
msgid "Settings"
|
454 |
msgstr "Ustawienia"
|
455 |
|
456 |
-
#: adrotate.php:
|
457 |
msgid "AdRotate Info"
|
458 |
msgstr "Informacja AdRotate "
|
459 |
|
460 |
-
#: adrotate.php:
|
461 |
msgid "AdRotate Professional"
|
462 |
msgstr "AdRotate Professional"
|
463 |
|
464 |
-
#: adrotate.php:
|
465 |
msgid "Ad Management"
|
466 |
msgstr "Zarządzanie Reklamami"
|
467 |
|
468 |
-
#: adrotate.php:
|
469 |
msgid "Ad created"
|
470 |
msgstr "Reklama utworzona"
|
471 |
|
472 |
-
#: adrotate.php:
|
473 |
msgid "Ad updated"
|
474 |
msgstr "Reklamy zaktualizowana"
|
475 |
|
476 |
-
#: adrotate.php:
|
477 |
msgid "Ad(s) deleted"
|
478 |
msgstr "Reklama usunięta"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "Ad(s) statistics reset"
|
482 |
msgstr "Resetuj statystyki reklamy"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
msgid "Ad(s) renewed"
|
486 |
msgstr "Odnów reklamę"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Ad(s) deactivated"
|
490 |
msgstr "Reklama wyłączona"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
msgid "Ad(s) activated"
|
494 |
msgstr "Reklama włączona"
|
495 |
|
496 |
-
#: adrotate.php:
|
497 |
msgid ""
|
498 |
"The ad was saved but has an issue which might prevent it from working "
|
499 |
"properly. Review the yellow marked ad."
|
@@ -501,59 +501,59 @@ msgstr ""
|
|
501 |
"Reklama została zapisana jednak powstał jakiś błąd który uniemożliwia jej "
|
502 |
"prawidłowe działanie. Przjrzyj reklamę zaznaczoną żóltym kolorem."
|
503 |
|
504 |
-
#: adrotate.php:
|
505 |
#, fuzzy
|
506 |
msgid "Export created"
|
507 |
msgstr "Reklama utworzona"
|
508 |
|
509 |
-
#: adrotate.php:
|
510 |
msgid "Action prohibited"
|
511 |
msgstr "Czynność zabroniona."
|
512 |
|
513 |
-
#: adrotate.php:
|
514 |
msgid "No data found in selected time period"
|
515 |
msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
|
516 |
|
517 |
-
#: adrotate.php:
|
518 |
msgid "Manage"
|
519 |
msgstr "Zarządzaj"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
msgid "Add New"
|
523 |
msgstr "Dodaj nową"
|
524 |
|
525 |
-
#: adrotate.php:
|
526 |
msgid "Group Management"
|
527 |
msgstr "Zarządzanie grupą reklam"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
msgid "Group created"
|
531 |
msgstr "Grupa utworzona."
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
msgid "Group updated"
|
535 |
msgstr "Grupa zaktualizowana"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
msgid "Group deleted"
|
539 |
msgstr "Grupa usunięta"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
msgid "Group including it's Ads deleted"
|
543 |
msgstr "Grupa wraz z reklamami usunięta"
|
544 |
|
545 |
-
#: adrotate.php:
|
546 |
#, fuzzy
|
547 |
msgid "Schedule Management available in AdRotate Pro"
|
548 |
msgstr "Dostępne w wersji AdRotate Pro"
|
549 |
|
550 |
-
#: adrotate.php:
|
551 |
msgid ""
|
552 |
"Schedule management and multiple schedules per advert is available in "
|
553 |
"AdRotate Pro."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: adrotate.php:
|
557 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
558 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
559 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -562,120 +562,118 @@ msgstr ""
|
|
562 |
msgid "More information"
|
563 |
msgstr "Więcej informacji"
|
564 |
|
565 |
-
#: adrotate.php:
|
566 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
567 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
568 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
569 |
msgid "Bulk Actions"
|
570 |
msgstr "Działania masowe"
|
571 |
|
572 |
-
#: adrotate.php:
|
573 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
574 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
575 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
576 |
msgid "Go"
|
577 |
msgstr "Idź"
|
578 |
|
579 |
-
#: adrotate.php:
|
580 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
581 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
582 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
583 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
584 |
-
#: dashboard/server/adrotate-active.php:18
|
585 |
-
#: dashboard/server/adrotate-error.php:18
|
586 |
msgid "ID"
|
587 |
msgstr "ID"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
#, fuzzy
|
591 |
msgid "Start"
|
592 |
msgstr "Start / Koniec"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
#, fuzzy
|
596 |
msgid "End"
|
597 |
msgstr "Start / Koniec"
|
598 |
|
599 |
-
#: adrotate.php:
|
600 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
601 |
msgid "Ads"
|
602 |
msgstr "Reklamy"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
msgid "Max Clicks"
|
606 |
msgstr "Maksymalna liczna kliknięć"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
msgid "Max Impressions"
|
610 |
msgstr "Maksymalna liczba wyświetleń"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#, fuzzy
|
614 |
msgid "No schedules created yet!"
|
615 |
msgstr "Nie utworzono jeszcze żadnych reklam!"
|
616 |
|
617 |
-
#: adrotate.php:
|
618 |
#, fuzzy
|
619 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
620 |
msgstr "Więcej ustawień z AdRotate Pro"
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
#, fuzzy
|
624 |
msgid "Upgrade today!"
|
625 |
msgstr "Dziś"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
629 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
630 |
msgid "Expires soon."
|
631 |
msgstr "Wygasa wkrótce."
|
632 |
|
633 |
-
#: adrotate.php:
|
634 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
635 |
msgid "Has expired."
|
636 |
msgstr "Wygasła."
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
#, fuzzy
|
640 |
msgid "Media Management available in AdRotate Pro"
|
641 |
msgstr "Dostępne w wersji AdRotate Pro"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid ""
|
645 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
646 |
"especially useful if you use responsive adverts with multiple images."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
#, fuzzy
|
651 |
msgid "Media uploading and management is available in AdRotate Pro."
|
652 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
653 |
|
654 |
-
#: adrotate.php:
|
655 |
#, fuzzy
|
656 |
msgid "Upload new banner image"
|
657 |
msgstr "Obraz banera:"
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
#, fuzzy
|
661 |
msgid "Accepted files are:"
|
662 |
msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "Maximum size is 512Kb."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "Important:"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid ""
|
674 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
675 |
"spaces with a - or _."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: adrotate.php:
|
679 |
#, fuzzy
|
680 |
msgid ""
|
681 |
"For responsive adverts make sure the filename is in the following format; "
|
@@ -685,7 +683,7 @@ msgstr ""
|
|
685 |
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
686 |
"pełnego wachlarza rozmiarów.'"
|
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."
|
@@ -693,13 +691,13 @@ msgstr ""
|
|
693 |
"Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
|
694 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
698 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
699 |
msgid "Example:"
|
700 |
msgstr "Przykład:"
|
701 |
|
702 |
-
#: adrotate.php:
|
703 |
#, fuzzy
|
704 |
msgid ""
|
705 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
@@ -708,143 +706,127 @@ msgstr ""
|
|
708 |
"image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
|
709 |
"różnych widokach. Wymaga jQuery."
|
710 |
|
711 |
-
#: adrotate.php:
|
712 |
#, fuzzy
|
713 |
msgid "Upload image"
|
714 |
msgstr "Obraz banera:"
|
715 |
|
716 |
-
#: adrotate.php:
|
717 |
msgid "Available banner images in"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
msgid "Name"
|
722 |
msgstr "Nazwa"
|
723 |
|
724 |
-
#: adrotate.php:
|
725 |
#, fuzzy
|
726 |
msgid "Actions"
|
727 |
msgstr "Działania masowe"
|
728 |
|
729 |
-
#: adrotate.php:
|
730 |
-
#: adrotate.php:
|
731 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
732 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
733 |
msgid "Delete"
|
734 |
msgstr "Usuń"
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
msgid ""
|
738 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: adrotate.php:
|
742 |
#, fuzzy
|
743 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
744 |
msgstr "Więcej ustawień z AdRotate Pro"
|
745 |
|
746 |
-
#: adrotate.php:
|
747 |
-
msgid "AdRotate Server"
|
748 |
-
msgstr "AdRotate Serwer"
|
749 |
-
|
750 |
-
#: adrotate.php:608
|
751 |
-
msgid ""
|
752 |
-
"AdRotate server is currently in development and these menus are not "
|
753 |
-
"functional yet."
|
754 |
-
msgstr ""
|
755 |
-
"AdRotate serwer jest obecnie w fazie rozwojowej, jego menu obecnie nie "
|
756 |
-
"działają."
|
757 |
-
|
758 |
-
#: adrotate.php:612
|
759 |
-
msgid "Overview"
|
760 |
-
msgstr "Podgląd"
|
761 |
-
|
762 |
-
#: adrotate.php:708
|
763 |
msgid "AdRotate Settings"
|
764 |
msgstr "Ustawienia AdRotate"
|
765 |
|
766 |
-
#: adrotate.php:
|
767 |
msgid "Settings saved"
|
768 |
msgstr "Ustawienia zapisane"
|
769 |
|
770 |
-
#: adrotate.php:
|
771 |
msgid "Database optimized"
|
772 |
msgstr "Baza danych zoptymalizowana"
|
773 |
|
774 |
-
#: adrotate.php:
|
775 |
msgid "Database repaired"
|
776 |
msgstr "Baza danych naprawiona"
|
777 |
|
778 |
-
#: adrotate.php:
|
779 |
msgid "Ads evaluated and statuses have been corrected where required"
|
780 |
msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
|
781 |
|
782 |
-
#: adrotate.php:
|
783 |
msgid "Empty database records removed"
|
784 |
msgstr "Usunięto puste rekordy bazy danych"
|
785 |
|
786 |
-
#: adrotate.php:
|
787 |
msgid "Database can only be optimized or cleaned once every hour"
|
788 |
msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
|
789 |
|
790 |
-
#: adrotate.php:
|
791 |
msgid "Access Rights"
|
792 |
msgstr "Prawa dostępu"
|
793 |
|
794 |
-
#: adrotate.php:
|
795 |
msgid "Who has access to what?"
|
796 |
msgstr "Kto ma dostęp i do czego?"
|
797 |
|
798 |
-
#: adrotate.php:
|
799 |
msgid "Manage/Add/Edit adverts"
|
800 |
msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
|
801 |
|
802 |
-
#: adrotate.php:
|
803 |
msgid "Role to see and add/edit ads."
|
804 |
msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
|
805 |
|
806 |
-
#: adrotate.php:
|
807 |
msgid "Delete/Reset adverts"
|
808 |
msgstr "Usuń/Resetuj reklamy"
|
809 |
|
810 |
-
#: adrotate.php:
|
811 |
msgid "Role to delete ads and reset stats."
|
812 |
msgstr "Uprawnienia do usuwania i resetowania statystyk."
|
813 |
|
814 |
-
#: adrotate.php:
|
815 |
msgid "Manage/Add/Edit groups"
|
816 |
msgstr "Zarządzaj/Dodaj/Edytuj grupy"
|
817 |
|
818 |
-
#: adrotate.php:
|
819 |
msgid "Role to see and add/edit groups."
|
820 |
msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
|
821 |
|
822 |
-
#: adrotate.php:
|
823 |
msgid "Delete groups"
|
824 |
msgstr "Usuwanie grup"
|
825 |
|
826 |
-
#: adrotate.php:
|
827 |
msgid "Role to delete groups."
|
828 |
msgstr "Uprawnienia do usuwania grup"
|
829 |
|
830 |
-
#: adrotate.php:
|
831 |
-
#: adrotate.php:
|
832 |
msgid "Update Options"
|
833 |
msgstr "Zapisz opcje"
|
834 |
|
835 |
-
#: adrotate.php:
|
836 |
msgid "Statistics"
|
837 |
msgstr "Statystyki"
|
838 |
|
839 |
-
#: adrotate.php:
|
840 |
msgid "Enable stats"
|
841 |
msgstr "Włącz statystyki"
|
842 |
|
843 |
-
#: adrotate.php:
|
844 |
msgid "Track clicks and impressions."
|
845 |
msgstr "Śledź kliknięcia i wyświetlenia."
|
846 |
|
847 |
-
#: adrotate.php:
|
848 |
#, fuzzy
|
849 |
msgid "Disabling this also disables click and impression limits on schedules."
|
850 |
msgstr ""
|
@@ -852,49 +834,49 @@ msgstr ""
|
|
852 |
"wyświetleń ustalonych w harmonogramach dodatkowo wyłącza ustalone przedziały "
|
853 |
"czasowe dla wyświetlania reklam."
|
854 |
|
855 |
-
#: adrotate.php:
|
856 |
msgid "Impressions timer"
|
857 |
msgstr "Licznik wyświetleń"
|
858 |
|
859 |
-
#: adrotate.php:
|
860 |
msgid "Seconds."
|
861 |
msgstr "Sekundy"
|
862 |
|
863 |
-
#: adrotate.php:
|
864 |
#, fuzzy
|
865 |
msgid "Default: 60."
|
866 |
msgstr "Domyślny"
|
867 |
|
868 |
-
#: adrotate.php:
|
869 |
#, fuzzy
|
870 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
871 |
msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
|
872 |
|
873 |
-
#: adrotate.php:
|
874 |
msgid "Clicks timer"
|
875 |
msgstr "Licznik kliknięć"
|
876 |
|
877 |
-
#: adrotate.php:
|
878 |
#, fuzzy
|
879 |
msgid "Default: 86400."
|
880 |
msgstr "Domyślny"
|
881 |
|
882 |
-
#: adrotate.php:
|
883 |
#, fuzzy
|
884 |
msgid ""
|
885 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
886 |
msgstr ""
|
887 |
"Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
|
888 |
|
889 |
-
#: adrotate.php:
|
890 |
msgid "Bot filter"
|
891 |
msgstr "Filtr Botów Internetowych"
|
892 |
|
893 |
-
#: adrotate.php:
|
894 |
msgid "User-Agent Filter"
|
895 |
msgstr "Filtr Agentów"
|
896 |
|
897 |
-
#: adrotate.php:
|
898 |
msgid ""
|
899 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
900 |
"prevent impressions and clicks counted on them."
|
@@ -902,7 +884,7 @@ msgstr ""
|
|
902 |
"Średnik oddziala listę słów. Filtruj boty/pajączki/agentów by chronić się "
|
903 |
"przed zliczaniem kliknięć i wyświetleń przez te programy."
|
904 |
|
905 |
-
#: adrotate.php:
|
906 |
msgid ""
|
907 |
"Keep in mind that this might give false positives. The word 'google' also "
|
908 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
@@ -911,11 +893,11 @@ msgstr ""
|
|
911 |
"również do słowa \"Googlebot\", ale nie odwrotnie. Więc należy być "
|
912 |
"ostrożnym!"
|
913 |
|
914 |
-
#: adrotate.php:
|
915 |
msgid "Keep your list up-to-date"
|
916 |
msgstr "Pamietaj by twoja lista była akutalna."
|
917 |
|
918 |
-
#: adrotate.php:
|
919 |
msgid ""
|
920 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
921 |
"other characters are stripped out."
|
@@ -923,29 +905,29 @@ msgstr ""
|
|
923 |
"Używaj tylko słów z literami i cyframi, [- _] są też dozwolone. Wszystkie "
|
924 |
"inne znaki są usuwane."
|
925 |
|
926 |
-
#: adrotate.php:
|
927 |
msgid ""
|
928 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
929 |
"well."
|
930 |
msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
|
931 |
|
932 |
-
#: adrotate.php:
|
933 |
msgid "Learn more about"
|
934 |
msgstr "Dowiedź się więcej o"
|
935 |
|
936 |
-
#: adrotate.php:
|
937 |
msgid "user-agents"
|
938 |
msgstr "Agenci przeglądarek"
|
939 |
|
940 |
-
#: adrotate.php:
|
941 |
msgid "Miscellaneous"
|
942 |
msgstr "Różne"
|
943 |
|
944 |
-
#: adrotate.php:
|
945 |
msgid "Widget alignment"
|
946 |
msgstr "Wyrównanie widżetu"
|
947 |
|
948 |
-
#: adrotate.php:
|
949 |
msgid ""
|
950 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
951 |
"not always help!)"
|
@@ -953,11 +935,11 @@ msgstr ""
|
|
953 |
"Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
|
954 |
"pomaga!)"
|
955 |
|
956 |
-
#: adrotate.php:
|
957 |
msgid "Widget padding"
|
958 |
msgstr "Pusta przestrzeń Widżetu"
|
959 |
|
960 |
-
#: adrotate.php:
|
961 |
msgid ""
|
962 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
963 |
"not always work!)"
|
@@ -965,7 +947,7 @@ msgstr ""
|
|
965 |
"Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
|
966 |
"działa)"
|
967 |
|
968 |
-
#: adrotate.php:
|
969 |
#, fuzzy
|
970 |
msgid "NOTICE:"
|
971 |
msgstr ""
|
@@ -975,7 +957,7 @@ msgstr ""
|
|
975 |
"zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
|
976 |
"odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
|
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,30 +965,30 @@ 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 "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
|
993 |
|
994 |
-
#: adrotate.php:
|
995 |
msgid ""
|
996 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
997 |
"this function will not work. WP Super Cache has discontinued support for "
|
998 |
"dynamic content."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: adrotate.php:
|
1002 |
msgid "WP Super Cache"
|
1003 |
msgstr "WP Super Cache"
|
1004 |
|
1005 |
-
#: adrotate.php:
|
1006 |
msgid "Check this box if you use WP Super Cache on your site."
|
1007 |
msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
|
1008 |
|
1009 |
-
#: adrotate.php:
|
1010 |
msgid ""
|
1011 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1012 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -1015,7 +997,7 @@ msgstr ""
|
|
1015 |
"rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
|
1016 |
"jeśli nie wykonasz tego ręcznie."
|
1017 |
|
1018 |
-
#: adrotate.php:
|
1019 |
msgid ""
|
1020 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1021 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -1024,15 +1006,15 @@ msgstr ""
|
|
1024 |
"AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
|
1025 |
"strony."
|
1026 |
|
1027 |
-
#: adrotate.php:
|
1028 |
-
msgid "Javascript
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#: adrotate.php:
|
1032 |
msgid "Load jQuery"
|
1033 |
msgstr "Załąduj jQuery"
|
1034 |
|
1035 |
-
#: adrotate.php:
|
1036 |
msgid ""
|
1037 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1038 |
"theme does not load jQuery already."
|
@@ -1040,11 +1022,11 @@ msgstr ""
|
|
1040 |
"jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
|
1041 |
"jeśli strona nie załądowałą jeszcze jQuery."
|
1042 |
|
1043 |
-
#: adrotate.php:
|
1044 |
msgid "Load in footer?"
|
1045 |
msgstr "Załadować do stopki?"
|
1046 |
|
1047 |
-
#: adrotate.php:
|
1048 |
msgid ""
|
1049 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1050 |
"needs to call wp_footer() for this to work."
|
@@ -1052,11 +1034,11 @@ msgstr ""
|
|
1052 |
"Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
|
1053 |
"szablon musi odwoływać się do wp_footer() by działać."
|
1054 |
|
1055 |
-
#: adrotate.php:
|
1056 |
msgid "Maintenance"
|
1057 |
msgstr "Ostrzeżenie"
|
1058 |
|
1059 |
-
#: adrotate.php:
|
1060 |
msgid ""
|
1061 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1062 |
"They only apply to your ads/groups and stats. Not to other settings or other "
|
@@ -1070,19 +1052,19 @@ msgstr ""
|
|
1070 |
"zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
|
1071 |
"odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
|
1072 |
|
1073 |
-
#: adrotate.php:
|
1074 |
msgid "Optimize Database"
|
1075 |
msgstr "Optymalizuj bazę danych"
|
1076 |
|
1077 |
-
#: adrotate.php:
|
1078 |
msgid "You are about to optimize the AdRotate database."
|
1079 |
msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
|
1080 |
|
1081 |
-
#: adrotate.php:
|
1082 |
msgid "Did you make a backup of your database?"
|
1083 |
msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
|
1084 |
|
1085 |
-
#: adrotate.php:
|
1086 |
msgid ""
|
1087 |
"This may take a moment and may cause your website to respond slow "
|
1088 |
"temporarily!"
|
@@ -1090,16 +1072,16 @@ msgstr ""
|
|
1090 |
"To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
|
1091 |
"wolniej przez jakiś czas."
|
1092 |
|
1093 |
-
#: adrotate.php:
|
1094 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1095 |
msgid "OK to continue, CANCEL to stop."
|
1096 |
msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
|
1097 |
|
1098 |
-
#: adrotate.php:
|
1099 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1100 |
msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
|
1101 |
|
1102 |
-
#: adrotate.php:
|
1103 |
msgid ""
|
1104 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1105 |
"made. This can vary from nothing to hundreds of KiB of data."
|
@@ -1108,11 +1090,11 @@ msgstr ""
|
|
1108 |
"dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
|
1109 |
"kilobajtow do kilku GB."
|
1110 |
|
1111 |
-
#: adrotate.php:
|
1112 |
msgid "Clean-up Database"
|
1113 |
msgstr "Wyczyść bazę danych"
|
1114 |
|
1115 |
-
#: adrotate.php:
|
1116 |
msgid ""
|
1117 |
"You are about to clean up your database. This may delete expired schedules "
|
1118 |
"and older statistics."
|
@@ -1120,19 +1102,19 @@ msgstr ""
|
|
1120 |
"Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
|
1121 |
"harmonogramów i starych statystyk."
|
1122 |
|
1123 |
-
#: adrotate.php:
|
1124 |
msgid "Are you sure you want to continue?"
|
1125 |
msgstr "Czy jesteś pewien że chcesz kontynuować?"
|
1126 |
|
1127 |
-
#: adrotate.php:
|
1128 |
msgid "This might take a while and may slow down your site during this action!"
|
1129 |
msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
|
1130 |
|
1131 |
-
#: adrotate.php:
|
1132 |
msgid "Delete stats older than 356 days (Optional)."
|
1133 |
msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
|
1134 |
|
1135 |
-
#: adrotate.php:
|
1136 |
msgid ""
|
1137 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1138 |
"occasions these records are faulty."
|
@@ -1141,7 +1123,7 @@ msgstr ""
|
|
1141 |
"Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
|
1142 |
"systemu."
|
1143 |
|
1144 |
-
#: adrotate.php:
|
1145 |
msgid ""
|
1146 |
"If you made an ad or group that does not save when you make it use this "
|
1147 |
"button to delete those empty records."
|
@@ -1149,7 +1131,7 @@ msgstr ""
|
|
1149 |
"Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
|
1150 |
"ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
|
1151 |
|
1152 |
-
#: adrotate.php:
|
1153 |
msgid ""
|
1154 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1155 |
"your site."
|
@@ -1157,19 +1139,19 @@ msgstr ""
|
|
1157 |
"Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
|
1158 |
"strony."
|
1159 |
|
1160 |
-
#: adrotate.php:
|
1161 |
msgid "Re-evaluate Ads"
|
1162 |
msgstr "Oszacuj ponownie reklamy."
|
1163 |
|
1164 |
-
#: adrotate.php:
|
1165 |
msgid "Re-evaluate all ads"
|
1166 |
msgstr "Oszacuj ponownie wszystkie reklamy."
|
1167 |
|
1168 |
-
#: adrotate.php:
|
1169 |
msgid "You are about to check all ads for errors."
|
1170 |
msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
|
1171 |
|
1172 |
-
#: adrotate.php:
|
1173 |
msgid ""
|
1174 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1175 |
"in. Normally you should not need this feature."
|
@@ -1178,7 +1160,7 @@ msgstr ""
|
|
1178 |
"na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
|
1179 |
"potrzebujesz wykorzystywać tej funkcji."
|
1180 |
|
1181 |
-
#: adrotate.php:
|
1182 |
msgid ""
|
1183 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1184 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
@@ -1195,64 +1177,64 @@ msgstr ""
|
|
1195 |
"kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
|
1196 |
"roszczeń."
|
1197 |
|
1198 |
-
#: adrotate.php:
|
1199 |
msgid "Troubleshooting"
|
1200 |
msgstr "Masz problem"
|
1201 |
|
1202 |
-
#: adrotate.php:
|
1203 |
msgid "Current version:"
|
1204 |
msgstr "Bieżąca wersja:"
|
1205 |
|
1206 |
-
#: adrotate.php:
|
1207 |
msgid "Previous version:"
|
1208 |
msgstr "Poprzednia wersja:"
|
1209 |
|
1210 |
-
#: adrotate.php:
|
1211 |
msgid "Current database version:"
|
1212 |
msgstr "Obecna wersja bazy danych:"
|
1213 |
|
1214 |
-
#: adrotate.php:
|
1215 |
msgid "Previous database version:"
|
1216 |
msgstr "Poprzednia wersja bazy danych:"
|
1217 |
|
1218 |
-
#: adrotate.php:
|
1219 |
#, fuzzy
|
1220 |
msgid "Ad evaluation next run:"
|
1221 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
1222 |
|
1223 |
-
#: adrotate.php:
|
1224 |
msgid "Not scheduled!"
|
1225 |
msgstr "Nie ustalono harmnogramu!"
|
1226 |
|
1227 |
-
#: adrotate.php:
|
1228 |
msgid "Clean Trackerdata next run:"
|
1229 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
1230 |
|
1231 |
-
#: adrotate.php:
|
1232 |
msgid "Current status of adverts"
|
1233 |
msgstr "Bieżący status reklam"
|
1234 |
|
1235 |
-
#: adrotate.php:
|
1236 |
msgid "Normal"
|
1237 |
msgstr "Normalny"
|
1238 |
|
1239 |
-
#: adrotate.php:
|
1240 |
msgid "Error"
|
1241 |
msgstr "Błąd"
|
1242 |
|
1243 |
-
#: adrotate.php:
|
1244 |
msgid "Expired"
|
1245 |
msgstr "Wygasa"
|
1246 |
|
1247 |
-
#: adrotate.php:
|
1248 |
msgid "Expires Soon"
|
1249 |
msgstr "Wygas wkrótce"
|
1250 |
|
1251 |
-
#: adrotate.php:
|
1252 |
msgid "Unknown Status"
|
1253 |
msgstr "Nieznany status"
|
1254 |
|
1255 |
-
#: adrotate.php:
|
1256 |
msgid ""
|
1257 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1258 |
"developers to review saved settings or how ads are selected. These can be "
|
@@ -1265,37 +1247,37 @@ msgstr ""
|
|
1265 |
"problemów na żądanie, ale do normalnego użytkowania, powinny one być "
|
1266 |
"pozostawiona nie zaznaczone!"
|
1267 |
|
1268 |
-
#: adrotate.php:
|
1269 |
msgid "Developer Debug"
|
1270 |
msgstr "Debuger dewelopera"
|
1271 |
|
1272 |
-
#: adrotate.php:
|
1273 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1274 |
msgstr ""
|
1275 |
"Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
|
1276 |
"związane z zewnętrznym widokiem Wordpressa."
|
1277 |
|
1278 |
-
#: adrotate.php:
|
1279 |
msgid "Show all settings, dashboard routines and related values."
|
1280 |
msgstr ""
|
1281 |
"Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
|
1282 |
|
1283 |
-
#: adrotate.php:
|
1284 |
msgid "Show array of all userroles and capabilities."
|
1285 |
msgstr "Pokaż tablice wszystkich ról i uprawnień."
|
1286 |
|
1287 |
-
#: adrotate.php:
|
1288 |
msgid "Review saved advertisers! Visible to advertisers."
|
1289 |
msgstr ""
|
1290 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
1291 |
|
1292 |
-
#: adrotate.php:
|
1293 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1294 |
msgstr ""
|
1295 |
"Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
|
1296 |
"grupy. Widoczne tylko dla reklamodawców."
|
1297 |
|
1298 |
-
#: adrotate.php:
|
1299 |
msgid ""
|
1300 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1301 |
"clicktracking."
|
@@ -1303,7 +1285,7 @@ msgstr ""
|
|
1303 |
"Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
|
1304 |
"śledzenia kliknięć."
|
1305 |
|
1306 |
-
#: adrotate.php:
|
1307 |
msgid "Temporarily disable encryption on the redirect url."
|
1308 |
msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
|
1309 |
|
@@ -1351,76 +1333,76 @@ msgstr "Używasz"
|
|
1351 |
msgid "AdRotate News and Developer Blog"
|
1352 |
msgstr "AdRotere Wiadomości i Blog "
|
1353 |
|
1354 |
-
#: dashboard/adrotate-info.php:
|
1355 |
msgid "Buy AdRotate Professional"
|
1356 |
msgstr "Kup AdRotate Pro"
|
1357 |
|
1358 |
-
#: dashboard/adrotate-info.php:
|
1359 |
msgid "Singe License"
|
1360 |
msgstr "Pojedyńcza licencja"
|
1361 |
|
1362 |
-
#: dashboard/adrotate-info.php:
|
1363 |
msgid "For one WordPress installation."
|
1364 |
msgstr "dla jednej instalcji Wordpressa"
|
1365 |
|
1366 |
-
#: dashboard/adrotate-info.php:
|
1367 |
-
#: dashboard/adrotate-info.php:
|
1368 |
-
#: dashboard/adrotate-info.php:
|
1369 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1370 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1371 |
#, fuzzy
|
1372 |
msgid "Buy now"
|
1373 |
msgstr "Kup"
|
1374 |
|
1375 |
-
#: dashboard/adrotate-info.php:
|
1376 |
msgid "Duo License"
|
1377 |
msgstr "Podwójna licencja"
|
1378 |
|
1379 |
-
#: dashboard/adrotate-info.php:
|
1380 |
msgid "For two WordPress installations."
|
1381 |
msgstr "dla dwóch instalcji Wordpressa"
|
1382 |
|
1383 |
-
#: dashboard/adrotate-info.php:
|
1384 |
msgid "Multi License"
|
1385 |
msgstr "Multi licencja"
|
1386 |
|
1387 |
-
#: dashboard/adrotate-info.php:
|
1388 |
msgid " For up to five WordPress installations."
|
1389 |
msgstr "dla 5 instalacji Wordpessa."
|
1390 |
|
1391 |
-
#: dashboard/adrotate-info.php:
|
1392 |
msgid "Developer License"
|
1393 |
msgstr "Licencja Programisty"
|
1394 |
|
1395 |
-
#: dashboard/adrotate-info.php:
|
1396 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1397 |
msgstr "Aktywujesz AdRote na nielimitowanej ilości instalacji Wordpressa."
|
1398 |
|
1399 |
-
#: dashboard/adrotate-info.php:
|
1400 |
msgid "Network License"
|
1401 |
msgstr "Licencja sieciowa"
|
1402 |
|
1403 |
-
#: dashboard/adrotate-info.php:
|
1404 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1405 |
msgstr "Utwórz własną sieć reklamową dla multistrona Wordpressa."
|
1406 |
|
1407 |
-
#: dashboard/adrotate-info.php:
|
1408 |
msgid "Compare licenses"
|
1409 |
msgstr "Porównaj licencje."
|
1410 |
|
1411 |
-
#: dashboard/adrotate-info.php:
|
1412 |
msgid "Not sure which license is for you? Compare them..."
|
1413 |
msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
|
1414 |
|
1415 |
-
#: dashboard/adrotate-info.php:
|
1416 |
msgid "All Licenses"
|
1417 |
msgstr "Wszystkie licencje"
|
1418 |
|
1419 |
-
#: dashboard/adrotate-info.php:
|
1420 |
msgid "Get more features with AdRotate Pro"
|
1421 |
msgstr "Więcej ustawień z AdRotate Pro"
|
1422 |
|
1423 |
-
#: dashboard/adrotate-info.php:
|
1424 |
msgid ""
|
1425 |
"Benefit from extra features to reinforce your income with advertising "
|
1426 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
@@ -1430,23 +1412,23 @@ msgstr ""
|
|
1430 |
"Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
|
1431 |
"funkcjom."
|
1432 |
|
1433 |
-
#: dashboard/adrotate-info.php:
|
1434 |
msgid "or go to the"
|
1435 |
msgstr "albo zajrzyj na "
|
1436 |
|
1437 |
-
#: dashboard/adrotate-info.php:
|
1438 |
msgid "Support AdRotate"
|
1439 |
msgstr "Wesprzyj AdRotate"
|
1440 |
|
1441 |
-
#: dashboard/adrotate-info.php:
|
1442 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1443 |
msgstr "Dzięki twoim datkom możliwe będzie dalsze rozwijanie AdRotate!"
|
1444 |
|
1445 |
-
#: dashboard/adrotate-info.php:
|
1446 |
msgid "AdRotate is brought to you by"
|
1447 |
msgstr "Możesz koszystać z AdRotate dzięki"
|
1448 |
|
1449 |
-
#: dashboard/adrotate-info.php:
|
1450 |
msgid ""
|
1451 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1452 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
@@ -1457,11 +1439,11 @@ msgstr ""
|
|
1457 |
"potrzebujesz dedykowanej wtyczki, przerobienia twojego szablonu lub "
|
1458 |
"przenosisz strone pomoc znajdziesz na mojej stronie!"
|
1459 |
|
1460 |
-
#: dashboard/adrotate-info.php:
|
1461 |
msgid "Find out more"
|
1462 |
msgstr "Dowiedź się więcej"
|
1463 |
|
1464 |
-
#: dashboard/adrotate-info.php:
|
1465 |
msgid "Follow"
|
1466 |
msgstr "Obserwuj"
|
1467 |
|
@@ -2023,8 +2005,6 @@ msgstr "Od/ Do"
|
|
2023 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2024 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2025 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2026 |
-
#: dashboard/server/adrotate-active.php:25
|
2027 |
-
#: dashboard/server/adrotate-error.php:26
|
2028 |
msgid "Clicks"
|
2029 |
msgstr "Kliknięcia"
|
2030 |
|
@@ -2121,15 +2101,12 @@ msgstr "Resetuj statystyki"
|
|
2121 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2122 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2123 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
2124 |
-
#: dashboard/server/adrotate-active.php:20
|
2125 |
msgid "Start / End"
|
2126 |
msgstr "Start / Koniec"
|
2127 |
|
2128 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2129 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2130 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2131 |
-
#: dashboard/server/adrotate-active.php:21
|
2132 |
-
#: dashboard/server/adrotate-error.php:22
|
2133 |
msgid "Title"
|
2134 |
msgstr "tytuł"
|
2135 |
|
@@ -2137,8 +2114,6 @@ msgstr "tytuł"
|
|
2137 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2138 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2139 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2140 |
-
#: dashboard/server/adrotate-active.php:27
|
2141 |
-
#: dashboard/server/adrotate-error.php:28
|
2142 |
msgid "CTR"
|
2143 |
msgstr "CTR"
|
2144 |
|
@@ -2211,14 +2186,10 @@ msgstr "Eksportuj ustawienia"
|
|
2211 |
|
2212 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2213 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2214 |
-
#: dashboard/server/adrotate-active.php:22
|
2215 |
-
#: dashboard/server/adrotate-error.php:23
|
2216 |
msgid "Weight"
|
2217 |
msgstr "Waga"
|
2218 |
|
2219 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2220 |
-
#: dashboard/server/adrotate-active.php:23
|
2221 |
-
#: dashboard/server/adrotate-error.php:24
|
2222 |
msgid "Shown"
|
2223 |
msgstr "Wyświetlane"
|
2224 |
|
@@ -2226,10 +2197,6 @@ msgstr "Wyświetlane"
|
|
2226 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2227 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2228 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2229 |
-
#: dashboard/server/adrotate-active.php:24
|
2230 |
-
#: dashboard/server/adrotate-active.php:26
|
2231 |
-
#: dashboard/server/adrotate-error.php:25
|
2232 |
-
#: dashboard/server/adrotate-error.php:27
|
2233 |
msgid "Today"
|
2234 |
msgstr "Dziś"
|
2235 |
|
@@ -2608,125 +2575,117 @@ msgstr "Nie utworzono grupy!"
|
|
2608 |
msgid "Statistics for group"
|
2609 |
msgstr "Statystyki dla grupy"
|
2610 |
|
2611 |
-
|
2612 |
-
|
2613 |
-
msgstr "Reklamy odebrane z serwera"
|
2614 |
|
2615 |
-
|
2616 |
-
|
2617 |
-
"
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
"AdRotate serwer."
|
2622 |
|
2623 |
-
|
2624 |
-
|
2625 |
-
msgstr "Dodano/Zaktualizowano"
|
2626 |
|
2627 |
-
|
2628 |
-
|
2629 |
-
msgid "No ads received yet!"
|
2630 |
-
msgstr "Nie utworzona jeszcze żadnych reklam!"
|
2631 |
|
2632 |
-
|
2633 |
-
|
2634 |
-
msgstr "Błędne reklamy z serwera."
|
2635 |
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
|
|
|
|
|
|
2639 |
|
2640 |
-
|
2641 |
-
|
2642 |
-
msgstr "Zaktualizowane"
|
2643 |
|
2644 |
-
|
2645 |
-
|
2646 |
-
msgstr "Pokazuj od"
|
2647 |
|
2648 |
-
|
2649 |
-
|
2650 |
-
msgstr "Pokazuj do"
|
2651 |
|
2652 |
-
|
2653 |
-
|
2654 |
-
msgstr "Ustawienia Serwera AdRotate "
|
2655 |
|
2656 |
-
|
2657 |
-
|
2658 |
-
"Link this website to an AdRotate server so your adverts and stats are "
|
2659 |
-
"synchronised regularly."
|
2660 |
-
msgstr ""
|
2661 |
-
"Połącz stronę z AdRotate serwerem by Twoje reklamy i statystyki były na "
|
2662 |
-
"bieżąco synchronizowane."
|
2663 |
|
2664 |
-
|
2665 |
-
|
2666 |
-
msgstr "Status"
|
2667 |
|
2668 |
-
|
2669 |
-
|
2670 |
-
msgstr "Połączono - Reklamy mogą być synchronizowane."
|
2671 |
|
2672 |
-
|
2673 |
-
|
2674 |
-
msgstr "Nie połączono - Żadne reklamy nie są synchronizowane."
|
2675 |
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
|
|
|
|
|
|
2679 |
|
2680 |
-
|
2681 |
-
|
2682 |
-
"You can get your server key from your AdRotate Server installation or the "
|
2683 |
-
"AdRollr website."
|
2684 |
-
msgstr ""
|
2685 |
-
"Możesz otrzymać klucz serwerowy w AdRotate Serwerze albo na stronie AdRollr ."
|
2686 |
|
2687 |
-
|
2688 |
-
|
2689 |
-
"You should not share your key with anyone you do not trust. Treat this key "
|
2690 |
-
"as a password!"
|
2691 |
-
msgstr ""
|
2692 |
-
"Nie powinieneś dzielić się swoim kluczem z kimkolwiek. Traktuj ten klucz na "
|
2693 |
-
"równi z hasłem!"
|
2694 |
|
2695 |
-
|
2696 |
-
|
2697 |
-
msgstr "Przekształć tą strone w podwładną"
|
2698 |
|
2699 |
-
|
2700 |
-
|
2701 |
-
msgstr " Czy AdRotare używa wyłącznie reklam z AdRotate serwer ."
|
2702 |
|
2703 |
-
|
2704 |
-
|
2705 |
-
"
|
2706 |
-
|
2707 |
-
|
2708 |
-
"
|
2709 |
-
"AdRotate będzie sterowany przez AdRotate Serwer."
|
2710 |
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
|
|
|
|
|
|
2714 |
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
msgstr ""
|
2720 |
-
|
2721 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2722 |
|
2723 |
-
|
2724 |
-
|
2725 |
-
msgstr "Podłacz do serwera"
|
2726 |
|
2727 |
-
|
2728 |
-
|
2729 |
-
msgstr "Odłącz od serwera"
|
2730 |
|
2731 |
#, fuzzy
|
2732 |
#~ 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: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Generator: Poedit 1.7.3\n"
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
+
#: adrotate-functions.php:811
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
+
#: adrotate-functions.php:814
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
+
#: adrotate-output.php:759
|
32 |
msgid "Oh no! Something went wrong!"
|
33 |
msgstr "Uwaga ! Coś poszło nie tak !"
|
34 |
|
35 |
+
#: adrotate-output.php:760
|
36 |
msgid ""
|
37 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
38 |
"Verify if the url used is valid or log in via your browser."
|
40 |
"Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
|
41 |
"Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
|
42 |
|
43 |
+
#: adrotate-output.php:761
|
44 |
msgid ""
|
45 |
"If you have received the url you want to visit via email, you are being "
|
46 |
"tricked!"
|
48 |
"Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
|
49 |
"zostałeś oszukany. "
|
50 |
|
51 |
+
#: adrotate-output.php:762
|
52 |
msgid "Contact support if the issue persists:"
|
53 |
msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
|
54 |
|
55 |
+
#: adrotate-output.php:780
|
56 |
msgid ""
|
57 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
58 |
"restrictions or does not exist!"
|
60 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
61 |
"harmonogramie lub geolokalizacji lub może nie istnieć."
|
62 |
|
63 |
+
#: adrotate-output.php:782
|
64 |
msgid ""
|
65 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
66 |
"restrictions!"
|
68 |
"Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
|
69 |
"harmonogramie lub geolokalizacji."
|
70 |
|
71 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
72 |
msgid ""
|
73 |
"Either there are no banners, they are disabled or none qualified for this "
|
74 |
"location!"
|
76 |
"Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
|
77 |
"lokalizacji!"
|
78 |
|
79 |
+
#: adrotate-output.php:797
|
80 |
msgid "Error, no Ad ID set! Check your syntax!"
|
81 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
82 |
|
83 |
+
#: adrotate-output.php:803
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
|
86 |
|
87 |
+
#: adrotate-output.php:808
|
88 |
msgid "Error, group does not exist! Check your syntax!"
|
89 |
msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
|
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!!"
|
96 |
"Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
|
97 |
"AdRote na panelu wtyczek."
|
98 |
|
99 |
+
#: adrotate-output.php:814
|
100 |
msgid "If this does not solve the issue please seek support at"
|
101 |
msgstr ""
|
102 |
"Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
|
103 |
|
104 |
+
#: adrotate-output.php:820
|
105 |
msgid "An unknown error occured."
|
106 |
msgstr "Pojawił się nieznany błąd."
|
107 |
|
108 |
+
#: adrotate-output.php:846
|
109 |
msgid "active ad(s) expired."
|
110 |
msgstr "Aktywne reklamy wygasły."
|
111 |
|
112 |
+
#: adrotate-output.php:846
|
113 |
msgid "Take action now"
|
114 |
msgstr "Uruchom natymiastowo."
|
115 |
|
116 |
+
#: adrotate-output.php:848
|
117 |
msgid "active ad(s) are about to expire."
|
118 |
msgstr "Aktywne reklamy niedługo wygasną."
|
119 |
|
120 |
+
#: adrotate-output.php:848
|
121 |
msgid "Check it out"
|
122 |
msgstr "Sprawdz to"
|
123 |
|
124 |
+
#: adrotate-output.php:850
|
125 |
msgid "active ad(s) with configuration errors."
|
126 |
msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
|
127 |
|
128 |
+
#: adrotate-output.php:850
|
129 |
msgid "Solve this"
|
130 |
msgstr "Napraw to"
|
131 |
|
132 |
+
#: adrotate-output.php:852
|
133 |
msgid "ad(s) expired."
|
134 |
msgstr "Reklama wygasła."
|
135 |
|
136 |
+
#: adrotate-output.php:852
|
137 |
msgid "ad(s) are about to expire."
|
138 |
msgstr "Reklama które wygasną."
|
139 |
|
140 |
+
#: adrotate-output.php:852
|
141 |
msgid "ad(s) with configuration errors."
|
142 |
msgstr "Reklamy z błędami konfuguracyjnymi."
|
143 |
|
144 |
+
#: adrotate-output.php:852
|
145 |
msgid "Fix this as soon as possible"
|
146 |
msgstr "Napraw to tak szybko jak to możliwe"
|
147 |
|
148 |
+
#: adrotate-output.php:864
|
149 |
#, fuzzy
|
150 |
msgid "Learn More"
|
151 |
msgstr "Dowiedź się więcej"
|
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 "Czy wykonałeś kopie zapasową swojej bazy?"
|
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 "instrukcje"
|
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 "Użyteczne odnośniki."
|
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 "Więcej ustawień z AdRotate Pro"
|
205 |
|
206 |
+
#: adrotate-output.php:930
|
207 |
#, fuzzy
|
208 |
msgid "AdRotate manuals"
|
209 |
msgstr "Informacja AdRotate "
|
210 |
|
211 |
+
#: adrotate-output.php:931
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Support Forum"
|
214 |
msgstr "Sklep 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 "Sklep AdRotate"
|
224 |
|
225 |
+
#: adrotate-output.php:957
|
226 |
#, fuzzy
|
227 |
msgid "AdRotate Getting Started."
|
228 |
msgstr "Ustawienia 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 "Sklep 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 "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
247 |
|
248 |
+
#: adrotate-output.php:978
|
249 |
msgid "Brought to you by"
|
250 |
msgstr "Dostarczone przez "
|
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 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
271 |
|
272 |
+
#: adrotate-output.php:985
|
273 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: adrotate-output.php:988
|
277 |
msgid ""
|
278 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
279 |
"out more about what I can do for you!"
|
282 |
"informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
|
283 |
"więcej dla Wordpress'a."
|
284 |
|
285 |
+
#: adrotate-output.php:988
|
286 |
msgid "Visit the"
|
287 |
msgstr "Odwiedź"
|
288 |
|
289 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
290 |
msgid "website"
|
291 |
msgstr "strone internetową"
|
292 |
|
293 |
+
#: adrotate-output.php:1018
|
294 |
msgid "Available in AdRotate Pro"
|
295 |
msgstr "Dostępne w wersji AdRotate Pro"
|
296 |
|
297 |
+
#: adrotate-output.php:1018
|
298 |
msgid "More information..."
|
299 |
msgstr "Więcej informacji"
|
300 |
|
301 |
+
#: adrotate-output.php:1019
|
302 |
msgid "This feature is available in AdRotate Pro"
|
303 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
304 |
|
305 |
+
#: adrotate-output.php:1019
|
306 |
msgid "Learn more"
|
307 |
msgstr "Dowiedź się więcej"
|
308 |
|
430 |
msgid "AdRotate Pro"
|
431 |
msgstr "AdRotate Pro"
|
432 |
|
433 |
+
#: adrotate.php:110
|
434 |
msgid "Manage Ads"
|
435 |
msgstr "Zarządzaj reklamami"
|
436 |
|
437 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
438 |
msgid "Manage Groups"
|
439 |
msgstr "Zarządzaj grupami"
|
440 |
|
441 |
+
#: adrotate.php:112 adrotate.php:441
|
442 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
443 |
#, fuzzy
|
444 |
msgid "Manage Schedules"
|
445 |
msgstr "Zarządzaj"
|
446 |
|
447 |
+
#: adrotate.php:113
|
448 |
#, fuzzy
|
449 |
msgid "Manage Media"
|
450 |
msgstr "Media:"
|
451 |
|
452 |
+
#: adrotate.php:114
|
453 |
msgid "Settings"
|
454 |
msgstr "Ustawienia"
|
455 |
|
456 |
+
#: adrotate.php:137
|
457 |
msgid "AdRotate Info"
|
458 |
msgstr "Informacja AdRotate "
|
459 |
|
460 |
+
#: adrotate.php:158
|
461 |
msgid "AdRotate Professional"
|
462 |
msgstr "AdRotate Professional"
|
463 |
|
464 |
+
#: adrotate.php:201
|
465 |
msgid "Ad Management"
|
466 |
msgstr "Zarządzanie Reklamami"
|
467 |
|
468 |
+
#: adrotate.php:204
|
469 |
msgid "Ad created"
|
470 |
msgstr "Reklama utworzona"
|
471 |
|
472 |
+
#: adrotate.php:206
|
473 |
msgid "Ad updated"
|
474 |
msgstr "Reklamy zaktualizowana"
|
475 |
|
476 |
+
#: adrotate.php:208
|
477 |
msgid "Ad(s) deleted"
|
478 |
msgstr "Reklama usunięta"
|
479 |
|
480 |
+
#: adrotate.php:210
|
481 |
msgid "Ad(s) statistics reset"
|
482 |
msgstr "Resetuj statystyki reklamy"
|
483 |
|
484 |
+
#: adrotate.php:212
|
485 |
msgid "Ad(s) renewed"
|
486 |
msgstr "Odnów reklamę"
|
487 |
|
488 |
+
#: adrotate.php:214
|
489 |
msgid "Ad(s) deactivated"
|
490 |
msgstr "Reklama wyłączona"
|
491 |
|
492 |
+
#: adrotate.php:216
|
493 |
msgid "Ad(s) activated"
|
494 |
msgstr "Reklama włączona"
|
495 |
|
496 |
+
#: adrotate.php:218
|
497 |
msgid ""
|
498 |
"The ad was saved but has an issue which might prevent it from working "
|
499 |
"properly. Review the yellow marked ad."
|
501 |
"Reklama została zapisana jednak powstał jakiś błąd który uniemożliwia jej "
|
502 |
"prawidłowe działanie. Przjrzyj reklamę zaznaczoną żóltym kolorem."
|
503 |
|
504 |
+
#: adrotate.php:220
|
505 |
#, fuzzy
|
506 |
msgid "Export created"
|
507 |
msgstr "Reklama utworzona"
|
508 |
|
509 |
+
#: adrotate.php:224
|
510 |
msgid "Action prohibited"
|
511 |
msgstr "Czynność zabroniona."
|
512 |
|
513 |
+
#: adrotate.php:226 adrotate.php:374
|
514 |
msgid "No data found in selected time period"
|
515 |
msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
|
516 |
|
517 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
518 |
msgid "Manage"
|
519 |
msgstr "Zarządzaj"
|
520 |
|
521 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
522 |
msgid "Add New"
|
523 |
msgstr "Dodaj nową"
|
524 |
|
525 |
+
#: adrotate.php:363
|
526 |
msgid "Group Management"
|
527 |
msgstr "Zarządzanie grupą reklam"
|
528 |
|
529 |
+
#: adrotate.php:366
|
530 |
msgid "Group created"
|
531 |
msgstr "Grupa utworzona."
|
532 |
|
533 |
+
#: adrotate.php:368
|
534 |
msgid "Group updated"
|
535 |
msgstr "Grupa zaktualizowana"
|
536 |
|
537 |
+
#: adrotate.php:370
|
538 |
msgid "Group deleted"
|
539 |
msgstr "Grupa usunięta"
|
540 |
|
541 |
+
#: adrotate.php:372
|
542 |
msgid "Group including it's Ads deleted"
|
543 |
msgstr "Grupa wraz z reklamami usunięta"
|
544 |
|
545 |
+
#: adrotate.php:432
|
546 |
#, fuzzy
|
547 |
msgid "Schedule Management available in AdRotate Pro"
|
548 |
msgstr "Dostępne w wersji AdRotate Pro"
|
549 |
|
550 |
+
#: adrotate.php:442
|
551 |
msgid ""
|
552 |
"Schedule management and multiple schedules per advert is available in "
|
553 |
"AdRotate Pro."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: adrotate.php:442 adrotate.php:529
|
557 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
558 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
559 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
562 |
msgid "More information"
|
563 |
msgstr "Więcej informacji"
|
564 |
|
565 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
566 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
567 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
568 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
569 |
msgid "Bulk Actions"
|
570 |
msgstr "Działania masowe"
|
571 |
|
572 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
573 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
574 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
575 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
576 |
msgid "Go"
|
577 |
msgstr "Idź"
|
578 |
|
579 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
580 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
581 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
582 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
583 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
584 |
msgid "ID"
|
585 |
msgstr "ID"
|
586 |
|
587 |
+
#: adrotate.php:460
|
588 |
#, fuzzy
|
589 |
msgid "Start"
|
590 |
msgstr "Start / Koniec"
|
591 |
|
592 |
+
#: adrotate.php:460
|
593 |
#, fuzzy
|
594 |
msgid "End"
|
595 |
msgstr "Start / Koniec"
|
596 |
|
597 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
598 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
599 |
msgid "Ads"
|
600 |
msgstr "Reklamy"
|
601 |
|
602 |
+
#: adrotate.php:463
|
603 |
msgid "Max Clicks"
|
604 |
msgstr "Maksymalna liczna kliknięć"
|
605 |
|
606 |
+
#: adrotate.php:464
|
607 |
msgid "Max Impressions"
|
608 |
msgstr "Maksymalna liczba wyświetleń"
|
609 |
|
610 |
+
#: adrotate.php:494
|
611 |
#, fuzzy
|
612 |
msgid "No schedules created yet!"
|
613 |
msgstr "Nie utworzono jeszcze żadnych reklam!"
|
614 |
|
615 |
+
#: adrotate.php:499
|
616 |
#, fuzzy
|
617 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
618 |
msgstr "Więcej ustawień z AdRotate Pro"
|
619 |
|
620 |
+
#: adrotate.php:499 adrotate.php:562
|
621 |
#, fuzzy
|
622 |
msgid "Upgrade today!"
|
623 |
msgstr "Dziś"
|
624 |
|
625 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
626 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
627 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
628 |
msgid "Expires soon."
|
629 |
msgstr "Wygasa wkrótce."
|
630 |
|
631 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
632 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
633 |
msgid "Has expired."
|
634 |
msgstr "Wygasła."
|
635 |
|
636 |
+
#: adrotate.php:527
|
637 |
#, fuzzy
|
638 |
msgid "Media Management available in AdRotate Pro"
|
639 |
msgstr "Dostępne w wersji AdRotate Pro"
|
640 |
|
641 |
+
#: adrotate.php:529
|
642 |
msgid ""
|
643 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
644 |
"especially useful if you use responsive adverts with multiple images."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: adrotate.php:529
|
648 |
#, fuzzy
|
649 |
msgid "Media uploading and management is available in AdRotate Pro."
|
650 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
651 |
|
652 |
+
#: adrotate.php:531
|
653 |
#, fuzzy
|
654 |
msgid "Upload new banner image"
|
655 |
msgstr "Obraz banera:"
|
656 |
|
657 |
+
#: adrotate.php:532
|
658 |
#, fuzzy
|
659 |
msgid "Accepted files are:"
|
660 |
msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
|
661 |
|
662 |
+
#: adrotate.php:532
|
663 |
msgid "Maximum size is 512Kb."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: adrotate.php:532
|
667 |
msgid "Important:"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: adrotate.php:532
|
671 |
msgid ""
|
672 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
673 |
"spaces with a - or _."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: adrotate.php:534
|
677 |
#, fuzzy
|
678 |
msgid ""
|
679 |
"For responsive adverts make sure the filename is in the following format; "
|
683 |
"format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
|
684 |
"pełnego wachlarza rozmiarów.'"
|
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."
|
691 |
"Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
|
692 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
693 |
|
694 |
+
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
|
695 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
696 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
697 |
msgid "Example:"
|
698 |
msgstr "Przykład:"
|
699 |
|
700 |
+
#: adrotate.php:536
|
701 |
#, fuzzy
|
702 |
msgid ""
|
703 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
706 |
"image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
|
707 |
"różnych widokach. Wymaga jQuery."
|
708 |
|
709 |
+
#: adrotate.php:540
|
710 |
#, fuzzy
|
711 |
msgid "Upload image"
|
712 |
msgstr "Obraz banera:"
|
713 |
|
714 |
+
#: adrotate.php:543
|
715 |
msgid "Available banner images in"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
719 |
msgid "Name"
|
720 |
msgstr "Nazwa"
|
721 |
|
722 |
+
#: adrotate.php:549
|
723 |
#, fuzzy
|
724 |
msgid "Actions"
|
725 |
msgstr "Działania masowe"
|
726 |
|
727 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
728 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
729 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
730 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
731 |
msgid "Delete"
|
732 |
msgstr "Usuń"
|
733 |
|
734 |
+
#: adrotate.php:562
|
735 |
msgid ""
|
736 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: adrotate.php:562
|
740 |
#, fuzzy
|
741 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
742 |
msgstr "Więcej ustawień z AdRotate Pro"
|
743 |
|
744 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
msgid "AdRotate Settings"
|
746 |
msgstr "Ustawienia AdRotate"
|
747 |
|
748 |
+
#: adrotate.php:609
|
749 |
msgid "Settings saved"
|
750 |
msgstr "Ustawienia zapisane"
|
751 |
|
752 |
+
#: adrotate.php:611
|
753 |
msgid "Database optimized"
|
754 |
msgstr "Baza danych zoptymalizowana"
|
755 |
|
756 |
+
#: adrotate.php:613
|
757 |
msgid "Database repaired"
|
758 |
msgstr "Baza danych naprawiona"
|
759 |
|
760 |
+
#: adrotate.php:615
|
761 |
msgid "Ads evaluated and statuses have been corrected where required"
|
762 |
msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
|
763 |
|
764 |
+
#: adrotate.php:617
|
765 |
msgid "Empty database records removed"
|
766 |
msgstr "Usunięto puste rekordy bazy danych"
|
767 |
|
768 |
+
#: adrotate.php:619
|
769 |
msgid "Database can only be optimized or cleaned once every hour"
|
770 |
msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
|
771 |
|
772 |
+
#: adrotate.php:627
|
773 |
msgid "Access Rights"
|
774 |
msgstr "Prawa dostępu"
|
775 |
|
776 |
+
#: adrotate.php:628
|
777 |
msgid "Who has access to what?"
|
778 |
msgstr "Kto ma dostęp i do czego?"
|
779 |
|
780 |
+
#: adrotate.php:631
|
781 |
msgid "Manage/Add/Edit adverts"
|
782 |
msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
|
783 |
|
784 |
+
#: adrotate.php:635
|
785 |
msgid "Role to see and add/edit ads."
|
786 |
msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
|
787 |
|
788 |
+
#: adrotate.php:639
|
789 |
msgid "Delete/Reset adverts"
|
790 |
msgstr "Usuń/Resetuj reklamy"
|
791 |
|
792 |
+
#: adrotate.php:643
|
793 |
msgid "Role to delete ads and reset stats."
|
794 |
msgstr "Uprawnienia do usuwania i resetowania statystyk."
|
795 |
|
796 |
+
#: adrotate.php:647
|
797 |
msgid "Manage/Add/Edit groups"
|
798 |
msgstr "Zarządzaj/Dodaj/Edytuj grupy"
|
799 |
|
800 |
+
#: adrotate.php:651
|
801 |
msgid "Role to see and add/edit groups."
|
802 |
msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
|
803 |
|
804 |
+
#: adrotate.php:655
|
805 |
msgid "Delete groups"
|
806 |
msgstr "Usuwanie grup"
|
807 |
|
808 |
+
#: adrotate.php:659
|
809 |
msgid "Role to delete groups."
|
810 |
msgstr "Uprawnienia do usuwania grup"
|
811 |
|
812 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
813 |
+
#: adrotate.php:876
|
814 |
msgid "Update Options"
|
815 |
msgstr "Zapisz opcje"
|
816 |
|
817 |
+
#: adrotate.php:691
|
818 |
msgid "Statistics"
|
819 |
msgstr "Statystyki"
|
820 |
|
821 |
+
#: adrotate.php:694
|
822 |
msgid "Enable stats"
|
823 |
msgstr "Włącz statystyki"
|
824 |
|
825 |
+
#: adrotate.php:696
|
826 |
msgid "Track clicks and impressions."
|
827 |
msgstr "Śledź kliknięcia i wyświetlenia."
|
828 |
|
829 |
+
#: adrotate.php:696
|
830 |
#, fuzzy
|
831 |
msgid "Disabling this also disables click and impression limits on schedules."
|
832 |
msgstr ""
|
834 |
"wyświetleń ustalonych w harmonogramach dodatkowo wyłącza ustalone przedziały "
|
835 |
"czasowe dla wyświetlania reklam."
|
836 |
|
837 |
+
#: adrotate.php:700
|
838 |
msgid "Impressions timer"
|
839 |
msgstr "Licznik wyświetleń"
|
840 |
|
841 |
+
#: adrotate.php:702 adrotate.php:709
|
842 |
msgid "Seconds."
|
843 |
msgstr "Sekundy"
|
844 |
|
845 |
+
#: adrotate.php:703
|
846 |
#, fuzzy
|
847 |
msgid "Default: 60."
|
848 |
msgstr "Domyślny"
|
849 |
|
850 |
+
#: adrotate.php:703
|
851 |
#, fuzzy
|
852 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
853 |
msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
|
854 |
|
855 |
+
#: adrotate.php:707
|
856 |
msgid "Clicks timer"
|
857 |
msgstr "Licznik kliknięć"
|
858 |
|
859 |
+
#: adrotate.php:710
|
860 |
#, fuzzy
|
861 |
msgid "Default: 86400."
|
862 |
msgstr "Domyślny"
|
863 |
|
864 |
+
#: adrotate.php:710
|
865 |
#, fuzzy
|
866 |
msgid ""
|
867 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
868 |
msgstr ""
|
869 |
"Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
|
870 |
|
871 |
+
#: adrotate.php:715
|
872 |
msgid "Bot filter"
|
873 |
msgstr "Filtr Botów Internetowych"
|
874 |
|
875 |
+
#: adrotate.php:718
|
876 |
msgid "User-Agent Filter"
|
877 |
msgstr "Filtr Agentów"
|
878 |
|
879 |
+
#: adrotate.php:721
|
880 |
msgid ""
|
881 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
882 |
"prevent impressions and clicks counted on them."
|
884 |
"Średnik oddziala listę słów. Filtruj boty/pajączki/agentów by chronić się "
|
885 |
"przed zliczaniem kliknięć i wyświetleń przez te programy."
|
886 |
|
887 |
+
#: adrotate.php:722
|
888 |
msgid ""
|
889 |
"Keep in mind that this might give false positives. The word 'google' also "
|
890 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
893 |
"również do słowa \"Googlebot\", ale nie odwrotnie. Więc należy być "
|
894 |
"ostrożnym!"
|
895 |
|
896 |
+
#: adrotate.php:722
|
897 |
msgid "Keep your list up-to-date"
|
898 |
msgstr "Pamietaj by twoja lista była akutalna."
|
899 |
|
900 |
+
#: adrotate.php:723
|
901 |
msgid ""
|
902 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
903 |
"other characters are stripped out."
|
905 |
"Używaj tylko słów z literami i cyframi, [- _] są też dozwolone. Wszystkie "
|
906 |
"inne znaki są usuwane."
|
907 |
|
908 |
+
#: adrotate.php:724
|
909 |
msgid ""
|
910 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
911 |
"well."
|
912 |
msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
|
913 |
|
914 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
915 |
msgid "Learn more about"
|
916 |
msgstr "Dowiedź się więcej o"
|
917 |
|
918 |
+
#: adrotate.php:724
|
919 |
msgid "user-agents"
|
920 |
msgstr "Agenci przeglądarek"
|
921 |
|
922 |
+
#: adrotate.php:733
|
923 |
msgid "Miscellaneous"
|
924 |
msgstr "Różne"
|
925 |
|
926 |
+
#: adrotate.php:736
|
927 |
msgid "Widget alignment"
|
928 |
msgstr "Wyrównanie widżetu"
|
929 |
|
930 |
+
#: adrotate.php:737
|
931 |
msgid ""
|
932 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
933 |
"not always help!)"
|
935 |
"Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
|
936 |
"pomaga!)"
|
937 |
|
938 |
+
#: adrotate.php:740
|
939 |
msgid "Widget padding"
|
940 |
msgstr "Pusta przestrzeń Widżetu"
|
941 |
|
942 |
+
#: adrotate.php:741
|
943 |
msgid ""
|
944 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
945 |
"not always work!)"
|
947 |
"Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
|
948 |
"działa)"
|
949 |
|
950 |
+
#: adrotate.php:746 adrotate.php:757
|
951 |
#, fuzzy
|
952 |
msgid "NOTICE:"
|
953 |
msgstr ""
|
957 |
"zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
|
958 |
"odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
|
959 |
|
960 |
+
#: adrotate.php:747
|
961 |
msgid ""
|
962 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
963 |
"You need to add the following line to your wp-config.php near the bottom or "
|
965 |
"needs to be enabled in W3 Total Cache as well too."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: adrotate.php:751
|
969 |
msgid "W3 Total Caching"
|
970 |
msgstr "W3 Total Caching"
|
971 |
|
972 |
+
#: adrotate.php:752
|
973 |
msgid "Check this box if you use W3 Total Caching on your site."
|
974 |
msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
|
975 |
|
976 |
+
#: adrotate.php:758
|
977 |
msgid ""
|
978 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
979 |
"this function will not work. WP Super Cache has discontinued support for "
|
980 |
"dynamic content."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: adrotate.php:762
|
984 |
msgid "WP Super Cache"
|
985 |
msgstr "WP Super Cache"
|
986 |
|
987 |
+
#: adrotate.php:763
|
988 |
msgid "Check this box if you use WP Super Cache on your site."
|
989 |
msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
|
990 |
|
991 |
+
#: adrotate.php:768
|
992 |
msgid ""
|
993 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
994 |
"to refresh the cache. This can take up to a week if not done manually."
|
997 |
"rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
|
998 |
"jeśli nie wykonasz tego ręcznie."
|
999 |
|
1000 |
+
#: adrotate.php:768
|
1001 |
msgid ""
|
1002 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1003 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
1006 |
"AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
|
1007 |
"strony."
|
1008 |
|
1009 |
+
#: adrotate.php:772
|
1010 |
+
msgid "Javascript"
|
1011 |
+
msgstr ""
|
1012 |
|
1013 |
+
#: adrotate.php:775
|
1014 |
msgid "Load jQuery"
|
1015 |
msgstr "Załąduj jQuery"
|
1016 |
|
1017 |
+
#: adrotate.php:776
|
1018 |
msgid ""
|
1019 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1020 |
"theme does not load jQuery already."
|
1022 |
"jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
|
1023 |
"jeśli strona nie załądowałą jeszcze jQuery."
|
1024 |
|
1025 |
+
#: adrotate.php:779
|
1026 |
msgid "Load in footer?"
|
1027 |
msgstr "Załadować do stopki?"
|
1028 |
|
1029 |
+
#: adrotate.php:780
|
1030 |
msgid ""
|
1031 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1032 |
"needs to call wp_footer() for this to work."
|
1034 |
"Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
|
1035 |
"szablon musi odwoływać się do wp_footer() by działać."
|
1036 |
|
1037 |
+
#: adrotate.php:788
|
1038 |
msgid "Maintenance"
|
1039 |
msgstr "Ostrzeżenie"
|
1040 |
|
1041 |
+
#: adrotate.php:789
|
1042 |
msgid ""
|
1043 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1044 |
"They only apply to your ads/groups and stats. Not to other settings or other "
|
1052 |
"zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
|
1053 |
"odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
|
1054 |
|
1055 |
+
#: adrotate.php:804 adrotate.php:806
|
1056 |
msgid "Optimize Database"
|
1057 |
msgstr "Optymalizuj bazę danych"
|
1058 |
|
1059 |
+
#: adrotate.php:806
|
1060 |
msgid "You are about to optimize the AdRotate database."
|
1061 |
msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
|
1062 |
|
1063 |
+
#: adrotate.php:806
|
1064 |
msgid "Did you make a backup of your database?"
|
1065 |
msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
|
1066 |
|
1067 |
+
#: adrotate.php:806
|
1068 |
msgid ""
|
1069 |
"This may take a moment and may cause your website to respond slow "
|
1070 |
"temporarily!"
|
1072 |
"To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
|
1073 |
"wolniej przez jakiś czas."
|
1074 |
|
1075 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1076 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1077 |
msgid "OK to continue, CANCEL to stop."
|
1078 |
msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
|
1079 |
|
1080 |
+
#: adrotate.php:807
|
1081 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1082 |
msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
|
1083 |
|
1084 |
+
#: adrotate.php:808
|
1085 |
msgid ""
|
1086 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1087 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1090 |
"dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
|
1091 |
"kilobajtow do kilku GB."
|
1092 |
|
1093 |
+
#: adrotate.php:812 adrotate.php:814
|
1094 |
msgid "Clean-up Database"
|
1095 |
msgstr "Wyczyść bazę danych"
|
1096 |
|
1097 |
+
#: adrotate.php:814
|
1098 |
msgid ""
|
1099 |
"You are about to clean up your database. This may delete expired schedules "
|
1100 |
"and older statistics."
|
1102 |
"Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
|
1103 |
"harmonogramów i starych statystyk."
|
1104 |
|
1105 |
+
#: adrotate.php:814
|
1106 |
msgid "Are you sure you want to continue?"
|
1107 |
msgstr "Czy jesteś pewien że chcesz kontynuować?"
|
1108 |
|
1109 |
+
#: adrotate.php:814 adrotate.php:822
|
1110 |
msgid "This might take a while and may slow down your site during this action!"
|
1111 |
msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
|
1112 |
|
1113 |
+
#: adrotate.php:815
|
1114 |
msgid "Delete stats older than 356 days (Optional)."
|
1115 |
msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
|
1116 |
|
1117 |
+
#: adrotate.php:816
|
1118 |
msgid ""
|
1119 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1120 |
"occasions these records are faulty."
|
1123 |
"Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
|
1124 |
"systemu."
|
1125 |
|
1126 |
+
#: adrotate.php:816
|
1127 |
msgid ""
|
1128 |
"If you made an ad or group that does not save when you make it use this "
|
1129 |
"button to delete those empty records."
|
1131 |
"Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
|
1132 |
"ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
|
1133 |
|
1134 |
+
#: adrotate.php:816
|
1135 |
msgid ""
|
1136 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1137 |
"your site."
|
1139 |
"Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
|
1140 |
"strony."
|
1141 |
|
1142 |
+
#: adrotate.php:820
|
1143 |
msgid "Re-evaluate Ads"
|
1144 |
msgstr "Oszacuj ponownie reklamy."
|
1145 |
|
1146 |
+
#: adrotate.php:822
|
1147 |
msgid "Re-evaluate all ads"
|
1148 |
msgstr "Oszacuj ponownie wszystkie reklamy."
|
1149 |
|
1150 |
+
#: adrotate.php:822
|
1151 |
msgid "You are about to check all ads for errors."
|
1152 |
msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
|
1153 |
|
1154 |
+
#: adrotate.php:823
|
1155 |
msgid ""
|
1156 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1157 |
"in. Normally you should not need this feature."
|
1160 |
"na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
|
1161 |
"potrzebujesz wykorzystywać tej funkcji."
|
1162 |
|
1163 |
+
#: adrotate.php:827
|
1164 |
msgid ""
|
1165 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1166 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
1177 |
"kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
|
1178 |
"roszczeń."
|
1179 |
|
1180 |
+
#: adrotate.php:835
|
1181 |
msgid "Troubleshooting"
|
1182 |
msgstr "Masz problem"
|
1183 |
|
1184 |
+
#: adrotate.php:838
|
1185 |
msgid "Current version:"
|
1186 |
msgstr "Bieżąca wersja:"
|
1187 |
|
1188 |
+
#: adrotate.php:839
|
1189 |
msgid "Previous version:"
|
1190 |
msgstr "Poprzednia wersja:"
|
1191 |
|
1192 |
+
#: adrotate.php:842
|
1193 |
msgid "Current database version:"
|
1194 |
msgstr "Obecna wersja bazy danych:"
|
1195 |
|
1196 |
+
#: adrotate.php:843
|
1197 |
msgid "Previous database version:"
|
1198 |
msgstr "Poprzednia wersja bazy danych:"
|
1199 |
|
1200 |
+
#: adrotate.php:846
|
1201 |
#, fuzzy
|
1202 |
msgid "Ad evaluation next run:"
|
1203 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
1204 |
|
1205 |
+
#: adrotate.php:847 adrotate.php:851
|
1206 |
msgid "Not scheduled!"
|
1207 |
msgstr "Nie ustalono harmnogramu!"
|
1208 |
|
1209 |
+
#: adrotate.php:850
|
1210 |
msgid "Clean Trackerdata next run:"
|
1211 |
msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
|
1212 |
|
1213 |
+
#: adrotate.php:854
|
1214 |
msgid "Current status of adverts"
|
1215 |
msgstr "Bieżący status reklam"
|
1216 |
|
1217 |
+
#: adrotate.php:855
|
1218 |
msgid "Normal"
|
1219 |
msgstr "Normalny"
|
1220 |
|
1221 |
+
#: adrotate.php:855
|
1222 |
msgid "Error"
|
1223 |
msgstr "Błąd"
|
1224 |
|
1225 |
+
#: adrotate.php:855
|
1226 |
msgid "Expired"
|
1227 |
msgstr "Wygasa"
|
1228 |
|
1229 |
+
#: adrotate.php:855
|
1230 |
msgid "Expires Soon"
|
1231 |
msgstr "Wygas wkrótce"
|
1232 |
|
1233 |
+
#: adrotate.php:855
|
1234 |
msgid "Unknown Status"
|
1235 |
msgstr "Nieznany status"
|
1236 |
|
1237 |
+
#: adrotate.php:858
|
1238 |
msgid ""
|
1239 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1240 |
"developers to review saved settings or how ads are selected. These can be "
|
1247 |
"problemów na żądanie, ale do normalnego użytkowania, powinny one być "
|
1248 |
"pozostawiona nie zaznaczone!"
|
1249 |
|
1250 |
+
#: adrotate.php:862
|
1251 |
msgid "Developer Debug"
|
1252 |
msgstr "Debuger dewelopera"
|
1253 |
|
1254 |
+
#: adrotate.php:864
|
1255 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1256 |
msgstr ""
|
1257 |
"Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
|
1258 |
"związane z zewnętrznym widokiem Wordpressa."
|
1259 |
|
1260 |
+
#: adrotate.php:865
|
1261 |
msgid "Show all settings, dashboard routines and related values."
|
1262 |
msgstr ""
|
1263 |
"Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
|
1264 |
|
1265 |
+
#: adrotate.php:866
|
1266 |
msgid "Show array of all userroles and capabilities."
|
1267 |
msgstr "Pokaż tablice wszystkich ról i uprawnień."
|
1268 |
|
1269 |
+
#: adrotate.php:867
|
1270 |
msgid "Review saved advertisers! Visible to advertisers."
|
1271 |
msgstr ""
|
1272 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
1273 |
|
1274 |
+
#: adrotate.php:868
|
1275 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1276 |
msgstr ""
|
1277 |
"Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
|
1278 |
"grupy. Widoczne tylko dla reklamodawców."
|
1279 |
|
1280 |
+
#: adrotate.php:869
|
1281 |
msgid ""
|
1282 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1283 |
"clicktracking."
|
1285 |
"Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
|
1286 |
"śledzenia kliknięć."
|
1287 |
|
1288 |
+
#: adrotate.php:870
|
1289 |
msgid "Temporarily disable encryption on the redirect url."
|
1290 |
msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
|
1291 |
|
1333 |
msgid "AdRotate News and Developer Blog"
|
1334 |
msgstr "AdRotere Wiadomości i Blog "
|
1335 |
|
1336 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1337 |
msgid "Buy AdRotate Professional"
|
1338 |
msgstr "Kup AdRotate Pro"
|
1339 |
|
1340 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1341 |
msgid "Singe License"
|
1342 |
msgstr "Pojedyńcza licencja"
|
1343 |
|
1344 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1345 |
msgid "For one WordPress installation."
|
1346 |
msgstr "dla jednej instalcji Wordpressa"
|
1347 |
|
1348 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1349 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1350 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1351 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1352 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1353 |
#, fuzzy
|
1354 |
msgid "Buy now"
|
1355 |
msgstr "Kup"
|
1356 |
|
1357 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1358 |
msgid "Duo License"
|
1359 |
msgstr "Podwójna licencja"
|
1360 |
|
1361 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1362 |
msgid "For two WordPress installations."
|
1363 |
msgstr "dla dwóch instalcji Wordpressa"
|
1364 |
|
1365 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1366 |
msgid "Multi License"
|
1367 |
msgstr "Multi licencja"
|
1368 |
|
1369 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1370 |
msgid " For up to five WordPress installations."
|
1371 |
msgstr "dla 5 instalacji Wordpessa."
|
1372 |
|
1373 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1374 |
msgid "Developer License"
|
1375 |
msgstr "Licencja Programisty"
|
1376 |
|
1377 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1378 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1379 |
msgstr "Aktywujesz AdRote na nielimitowanej ilości instalacji Wordpressa."
|
1380 |
|
1381 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1382 |
msgid "Network License"
|
1383 |
msgstr "Licencja sieciowa"
|
1384 |
|
1385 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1386 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1387 |
msgstr "Utwórz własną sieć reklamową dla multistrona Wordpressa."
|
1388 |
|
1389 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1390 |
msgid "Compare licenses"
|
1391 |
msgstr "Porównaj licencje."
|
1392 |
|
1393 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1394 |
msgid "Not sure which license is for you? Compare them..."
|
1395 |
msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
|
1396 |
|
1397 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1398 |
msgid "All Licenses"
|
1399 |
msgstr "Wszystkie licencje"
|
1400 |
|
1401 |
+
#: dashboard/adrotate-info.php:171
|
1402 |
msgid "Get more features with AdRotate Pro"
|
1403 |
msgstr "Więcej ustawień z AdRotate Pro"
|
1404 |
|
1405 |
+
#: dashboard/adrotate-info.php:174
|
1406 |
msgid ""
|
1407 |
"Benefit from extra features to reinforce your income with advertising "
|
1408 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1412 |
"Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
|
1413 |
"funkcjom."
|
1414 |
|
1415 |
+
#: dashboard/adrotate-info.php:175
|
1416 |
msgid "or go to the"
|
1417 |
msgstr "albo zajrzyj na "
|
1418 |
|
1419 |
+
#: dashboard/adrotate-info.php:179
|
1420 |
msgid "Support AdRotate"
|
1421 |
msgstr "Wesprzyj AdRotate"
|
1422 |
|
1423 |
+
#: dashboard/adrotate-info.php:182
|
1424 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1425 |
msgstr "Dzięki twoim datkom możliwe będzie dalsze rozwijanie AdRotate!"
|
1426 |
|
1427 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1428 |
msgid "AdRotate is brought to you by"
|
1429 |
msgstr "Możesz koszystać z AdRotate dzięki"
|
1430 |
|
1431 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1432 |
msgid ""
|
1433 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1434 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
1439 |
"potrzebujesz dedykowanej wtyczki, przerobienia twojego szablonu lub "
|
1440 |
"przenosisz strone pomoc znajdziesz na mojej stronie!"
|
1441 |
|
1442 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1443 |
msgid "Find out more"
|
1444 |
msgstr "Dowiedź się więcej"
|
1445 |
|
1446 |
+
#: dashboard/adrotate-info.php:193
|
1447 |
msgid "Follow"
|
1448 |
msgstr "Obserwuj"
|
1449 |
|
2005 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2006 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2007 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
2008 |
msgid "Clicks"
|
2009 |
msgstr "Kliknięcia"
|
2010 |
|
2101 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2102 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2103 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2104 |
msgid "Start / End"
|
2105 |
msgstr "Start / Koniec"
|
2106 |
|
2107 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2108 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2109 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2110 |
msgid "Title"
|
2111 |
msgstr "tytuł"
|
2112 |
|
2114 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2115 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2116 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2117 |
msgid "CTR"
|
2118 |
msgstr "CTR"
|
2119 |
|
2186 |
|
2187 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2188 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2189 |
msgid "Weight"
|
2190 |
msgstr "Waga"
|
2191 |
|
2192 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2193 |
msgid "Shown"
|
2194 |
msgstr "Wyświetlane"
|
2195 |
|
2197 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2198 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2199 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2200 |
msgid "Today"
|
2201 |
msgstr "Dziś"
|
2202 |
|
2575 |
msgid "Statistics for group"
|
2576 |
msgstr "Statystyki dla grupy"
|
2577 |
|
2578 |
+
#~ msgid "AdRotate Server"
|
2579 |
+
#~ msgstr "AdRotate Serwer"
|
|
|
2580 |
|
2581 |
+
#~ msgid ""
|
2582 |
+
#~ "AdRotate server is currently in development and these menus are not "
|
2583 |
+
#~ "functional yet."
|
2584 |
+
#~ msgstr ""
|
2585 |
+
#~ "AdRotate serwer jest obecnie w fazie rozwojowej, jego menu obecnie nie "
|
2586 |
+
#~ "działają."
|
|
|
2587 |
|
2588 |
+
#~ msgid "Overview"
|
2589 |
+
#~ msgstr "Podgląd"
|
|
|
2590 |
|
2591 |
+
#~ msgid "Javascript Libraries"
|
2592 |
+
#~ msgstr "Bilbioteki Javascripts"
|
|
|
|
|
2593 |
|
2594 |
+
#~ msgid "Adverts received from server"
|
2595 |
+
#~ msgstr "Reklamy odebrane z serwera"
|
|
|
2596 |
|
2597 |
+
#~ msgid ""
|
2598 |
+
#~ "These adverts are circulating in the pool of active adverts, served from "
|
2599 |
+
#~ "AdRotate server."
|
2600 |
+
#~ msgstr ""
|
2601 |
+
#~ "Te ogłoszenia znajdują się w rotacji ogłoszeń aktywnych serowanych prze "
|
2602 |
+
#~ "AdRotate serwer."
|
2603 |
|
2604 |
+
#~ msgid "Added / Updated"
|
2605 |
+
#~ msgstr "Dodano/Zaktualizowano"
|
|
|
2606 |
|
2607 |
+
#~ msgid "No ads received yet!"
|
2608 |
+
#~ msgstr "Nie utworzona jeszcze żadnych reklam!"
|
|
|
2609 |
|
2610 |
+
#~ msgid "Erroneous ads from server"
|
2611 |
+
#~ msgstr "Błędne reklamy z serwera."
|
|
|
2612 |
|
2613 |
+
#~ msgid "Adverts served from AdRotate server but having some issues."
|
2614 |
+
#~ msgstr "Reklamy serwowane przez serwer AdRotate posiadają błedy."
|
|
|
2615 |
|
2616 |
+
#~ msgid "Updated"
|
2617 |
+
#~ msgstr "Zaktualizowane"
|
|
|
|
|
|
|
|
|
|
|
2618 |
|
2619 |
+
#~ msgid "Show from"
|
2620 |
+
#~ msgstr "Pokazuj od"
|
|
|
2621 |
|
2622 |
+
#~ msgid "Show until"
|
2623 |
+
#~ msgstr "Pokazuj do"
|
|
|
2624 |
|
2625 |
+
#~ msgid "AdRotate Server Settings"
|
2626 |
+
#~ msgstr "Ustawienia Serwera AdRotate "
|
|
|
2627 |
|
2628 |
+
#~ msgid ""
|
2629 |
+
#~ "Link this website to an AdRotate server so your adverts and stats are "
|
2630 |
+
#~ "synchronised regularly."
|
2631 |
+
#~ msgstr ""
|
2632 |
+
#~ "Połącz stronę z AdRotate serwerem by Twoje reklamy i statystyki były na "
|
2633 |
+
#~ "bieżąco synchronizowane."
|
2634 |
|
2635 |
+
#~ msgid "Status"
|
2636 |
+
#~ msgstr "Status"
|
|
|
|
|
|
|
|
|
2637 |
|
2638 |
+
#~ msgid "Linked - Adverts can be synced."
|
2639 |
+
#~ msgstr "Połączono - Reklamy mogą być synchronizowane."
|
|
|
|
|
|
|
|
|
|
|
2640 |
|
2641 |
+
#~ msgid "Not linked - No adverts will be synced."
|
2642 |
+
#~ msgstr "Nie połączono - Żadne reklamy nie są synchronizowane."
|
|
|
2643 |
|
2644 |
+
#~ msgid "Server Key"
|
2645 |
+
#~ msgstr "Klucz serwerowy"
|
|
|
2646 |
|
2647 |
+
#~ msgid ""
|
2648 |
+
#~ "You can get your server key from your AdRotate Server installation or the "
|
2649 |
+
#~ "AdRollr website."
|
2650 |
+
#~ msgstr ""
|
2651 |
+
#~ "Możesz otrzymać klucz serwerowy w AdRotate Serwerze albo na stronie "
|
2652 |
+
#~ "AdRollr ."
|
|
|
2653 |
|
2654 |
+
#~ msgid ""
|
2655 |
+
#~ "You should not share your key with anyone you do not trust. Treat this "
|
2656 |
+
#~ "key as a password!"
|
2657 |
+
#~ msgstr ""
|
2658 |
+
#~ "Nie powinieneś dzielić się swoim kluczem z kimkolwiek. Traktuj ten klucz "
|
2659 |
+
#~ "na równi z hasłem!"
|
2660 |
|
2661 |
+
#~ msgid "Make this site a puppet"
|
2662 |
+
#~ msgstr "Przekształć tą strone w podwładną"
|
2663 |
+
|
2664 |
+
#~ msgid "Have AdRotate use AdRotate Server adverts exclusively."
|
2665 |
+
#~ msgstr " Czy AdRotare używa wyłącznie reklam z AdRotate serwer ."
|
2666 |
+
|
2667 |
+
#~ msgid ""
|
2668 |
+
#~ "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make "
|
2669 |
+
#~ "this installation of AdRotate a puppet for your AdRotate Server."
|
2670 |
+
#~ msgstr ""
|
2671 |
+
#~ "Włączenie tej funkcji WYŁĄCZY WSZYSTKIE LOCALNE USTAWIENIA a program "
|
2672 |
+
#~ "AdRotate będzie sterowany przez AdRotate Serwer."
|
2673 |
+
|
2674 |
+
#~ msgid "Hide Server Details"
|
2675 |
+
#~ msgstr "Ukryk szczegóły serwera"
|
2676 |
+
|
2677 |
+
#~ msgid ""
|
2678 |
+
#~ "If you have installed AdRotate Pro for a client or in a Multisite network "
|
2679 |
+
#~ "and want to hide the server details from your users or client."
|
2680 |
+
#~ msgstr ""
|
2681 |
+
#~ "Jeśli zainstalowałeś AdRotate Pro dla pojedyńczej strony lub wielu stron "
|
2682 |
+
#~ "i chcą ukryć dane serwera przed użytkownikami lub klienta."
|
2683 |
|
2684 |
+
#~ msgid "Link to server"
|
2685 |
+
#~ msgstr "Podłacz do serwera"
|
|
|
2686 |
|
2687 |
+
#~ msgid "Unlink from server"
|
2688 |
+
#~ msgstr "Odłącz od serwera"
|
|
|
2689 |
|
2690 |
#, fuzzy
|
2691 |
#~ msgid "AdRotate Website"
|
language/adrotate-sr_RS.mo
CHANGED
Binary file
|
language/adrotate-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
@@ -13,22 +13,22 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
-
#: adrotate-output.php:
|
28 |
msgid "Oh no! Something went wrong!"
|
29 |
msgstr "O ne! Nešto nije kako treba!"
|
30 |
|
31 |
-
#: adrotate-output.php:
|
32 |
msgid ""
|
33 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
34 |
"Verify if the url used is valid or log in via your browser."
|
@@ -37,51 +37,51 @@ msgstr ""
|
|
37 |
"kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
|
38 |
"pretraživača."
|
39 |
|
40 |
-
#: adrotate-output.php:
|
41 |
msgid ""
|
42 |
"If you have received the url you want to visit via email, you are being "
|
43 |
"tricked!"
|
44 |
msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
|
45 |
|
46 |
-
#: adrotate-output.php:
|
47 |
msgid "Contact support if the issue persists:"
|
48 |
msgstr "Kontaktirajte podršku ako se problem nastavi:"
|
49 |
|
50 |
-
#: adrotate-output.php:
|
51 |
#, fuzzy
|
52 |
msgid ""
|
53 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
54 |
"restrictions or does not exist!"
|
55 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
56 |
|
57 |
-
#: adrotate-output.php:
|
58 |
#, fuzzy
|
59 |
msgid ""
|
60 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
61 |
"restrictions!"
|
62 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
63 |
|
64 |
-
#: adrotate-output.php:
|
65 |
msgid ""
|
66 |
"Either there are no banners, they are disabled or none qualified for this "
|
67 |
"location!"
|
68 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
69 |
|
70 |
-
#: adrotate-output.php:
|
71 |
msgid "Error, no Ad ID set! Check your syntax!"
|
72 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
73 |
|
74 |
-
#: adrotate-output.php:
|
75 |
#, fuzzy
|
76 |
msgid "Error, no group ID set! Check your syntax!"
|
77 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
78 |
|
79 |
-
#: adrotate-output.php:
|
80 |
#, fuzzy
|
81 |
msgid "Error, group does not exist! Check your syntax!"
|
82 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
83 |
|
84 |
-
#: adrotate-output.php:
|
85 |
msgid ""
|
86 |
"There was an error locating the database tables for AdRotate. Please "
|
87 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -89,181 +89,181 @@ msgstr ""
|
|
89 |
"Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
|
90 |
"deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
|
91 |
|
92 |
-
#: adrotate-output.php:
|
93 |
msgid "If this does not solve the issue please seek support at"
|
94 |
msgstr "Ako ne reši problem potražite podršku na"
|
95 |
|
96 |
-
#: adrotate-output.php:
|
97 |
msgid "An unknown error occured."
|
98 |
msgstr "Nepoznati error se ukazao."
|
99 |
|
100 |
-
#: adrotate-output.php:
|
101 |
msgid "active ad(s) expired."
|
102 |
msgstr "aktivni ad-ovi su istekli."
|
103 |
|
104 |
-
#: adrotate-output.php:
|
105 |
msgid "Take action now"
|
106 |
msgstr "Reagujte odmah"
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
msgid "active ad(s) are about to expire."
|
110 |
msgstr "aktivni ad-ovi će uskoro da isteknu."
|
111 |
|
112 |
-
#: adrotate-output.php:
|
113 |
msgid "Check it out"
|
114 |
msgstr "Pogledajte ovde"
|
115 |
|
116 |
-
#: adrotate-output.php:
|
117 |
msgid "active ad(s) with configuration errors."
|
118 |
msgstr "aktivni ad-ovi sa konfiguracionim greškama."
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
msgid "Solve this"
|
122 |
msgstr "Reši ovo"
|
123 |
|
124 |
-
#: adrotate-output.php:
|
125 |
msgid "ad(s) expired."
|
126 |
msgstr "ad-ovi su istekli."
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "ad(s) are about to expire."
|
130 |
msgstr "ad-ovi će uskoro da isteknu."
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid "ad(s) with configuration errors."
|
134 |
msgstr "ad-ovi sa konfiguracionim greškama."
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid "Fix this as soon as possible"
|
138 |
msgstr "Popravi ovo što pre je moguće"
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
#, fuzzy
|
142 |
msgid "Learn More"
|
143 |
msgstr "Saznajte više"
|
144 |
|
145 |
-
#: adrotate-output.php:
|
146 |
msgid ""
|
147 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
148 |
"to the <strong>PRO</strong> version"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: adrotate-output.php:
|
152 |
msgid "Get more features to even better run your advertising campaigns."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: adrotate-output.php:
|
156 |
msgid "Thank you for your consideration!"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: adrotate-output.php:
|
160 |
msgid ""
|
161 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
162 |
"Pro is in this menu. Check out the"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: adrotate-output.php:
|
166 |
msgid "manuals"
|
167 |
msgstr "priručnici"
|
168 |
|
169 |
-
#: adrotate-output.php:
|
170 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
171 |
msgid "and"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: adrotate-output.php:
|
175 |
msgid "forums"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: adrotate-output.php:
|
179 |
#, fuzzy
|
180 |
msgid "Useful Links"
|
181 |
msgstr "Korisni linkovi"
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
msgid "Useful links to learn more about AdRotate"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: adrotate-output.php:
|
188 |
#, fuzzy
|
189 |
msgid "AdRotate Page"
|
190 |
msgstr "AdRotate Pro"
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
#, fuzzy
|
194 |
msgid "Getting Started With AdRotate"
|
195 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
196 |
|
197 |
-
#: adrotate-output.php:
|
198 |
#, fuzzy
|
199 |
msgid "AdRotate manuals"
|
200 |
msgstr "AdRotate informacije"
|
201 |
|
202 |
-
#: adrotate-output.php:
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate Support Forum"
|
205 |
msgstr "AdRotate prodavnica"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid "WordPress.org Forum"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: adrotate-output.php:
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Website."
|
214 |
msgstr "AdRotate prodavnica"
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
#, fuzzy
|
218 |
msgid "AdRotate Getting Started."
|
219 |
msgstr "AdRotate postavke"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid "AdRotate Knoweledge base and manuals."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
#, fuzzy
|
227 |
msgid "AdRotate Website Forum."
|
228 |
msgstr "AdRotate prodavnica"
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
msgid "WordPress.org Forum."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: adrotate-output.php:
|
235 |
#, fuzzy
|
236 |
msgid "Help AdRotate Grow"
|
237 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
msgid "Brought to you by"
|
241 |
msgstr "Za tebe od"
|
242 |
|
243 |
-
#: adrotate-output.php:
|
244 |
msgid ""
|
245 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
246 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: adrotate-output.php:
|
250 |
msgid "If you find AdRotate useful please leave your honest"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: adrotate-output.php:
|
254 |
msgid "rating"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
#, fuzzy
|
259 |
msgid "review"
|
260 |
msgstr "Dajte ocenu i komentar"
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
#, fuzzy
|
268 |
msgid ""
|
269 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
@@ -274,28 +274,28 @@ msgstr ""
|
|
274 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
275 |
"detalja !"
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "Visit the"
|
279 |
msgstr "Posetite"
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "website"
|
283 |
msgstr "websajt"
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "Available in AdRotate Pro"
|
287 |
msgstr "Dostupno u AdRotate Pro"
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
#, fuzzy
|
291 |
msgid "More information..."
|
292 |
msgstr "Saznajte više"
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
msgid "This feature is available in AdRotate Pro"
|
296 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
msgid "Learn more"
|
300 |
msgstr "Saznajte više"
|
301 |
|
@@ -425,71 +425,71 @@ msgstr "Opšte informacije"
|
|
425 |
msgid "AdRotate Pro"
|
426 |
msgstr "AdRotate Pro"
|
427 |
|
428 |
-
#: adrotate.php:
|
429 |
msgid "Manage Ads"
|
430 |
msgstr "Upravljajte oglasima"
|
431 |
|
432 |
-
#: adrotate.php:
|
433 |
msgid "Manage Groups"
|
434 |
msgstr "Upravljajte grupama"
|
435 |
|
436 |
-
#: adrotate.php:
|
437 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
438 |
#, fuzzy
|
439 |
msgid "Manage Schedules"
|
440 |
msgstr "Upravljati"
|
441 |
|
442 |
-
#: adrotate.php:
|
443 |
#, fuzzy
|
444 |
msgid "Manage Media"
|
445 |
msgstr "Media:"
|
446 |
|
447 |
-
#: adrotate.php:
|
448 |
msgid "Settings"
|
449 |
msgstr "Postavke"
|
450 |
|
451 |
-
#: adrotate.php:
|
452 |
msgid "AdRotate Info"
|
453 |
msgstr "AdRotate informacije"
|
454 |
|
455 |
-
#: adrotate.php:
|
456 |
#, fuzzy
|
457 |
msgid "AdRotate Professional"
|
458 |
msgstr "AdRotate promocije"
|
459 |
|
460 |
-
#: adrotate.php:
|
461 |
msgid "Ad Management"
|
462 |
msgstr "Menadžment oglasa"
|
463 |
|
464 |
-
#: adrotate.php:
|
465 |
msgid "Ad created"
|
466 |
msgstr "Stvaranje oglasa"
|
467 |
|
468 |
-
#: adrotate.php:
|
469 |
msgid "Ad updated"
|
470 |
msgstr "Update oglasa"
|
471 |
|
472 |
-
#: adrotate.php:
|
473 |
msgid "Ad(s) deleted"
|
474 |
msgstr "Izbrisani oglasu"
|
475 |
|
476 |
-
#: adrotate.php:
|
477 |
msgid "Ad(s) statistics reset"
|
478 |
msgstr "Statistički resestovani oglasi"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "Ad(s) renewed"
|
482 |
msgstr "Ponovo obnovljeni oglasi"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
msgid "Ad(s) deactivated"
|
486 |
msgstr "Deaktivirani oglasi"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Ad(s) activated"
|
490 |
msgstr "Aktivirani oglasi"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
msgid ""
|
494 |
"The ad was saved but has an issue which might prevent it from working "
|
495 |
"properly. Review the yellow marked ad."
|
@@ -497,60 +497,60 @@ msgstr ""
|
|
497 |
"Oglas je sačuvan , ali ima taj problem što može da spreči da radi ispravno . "
|
498 |
"Pregledajte žuto označeni oglas. "
|
499 |
|
500 |
-
#: adrotate.php:
|
501 |
#, fuzzy
|
502 |
msgid "Export created"
|
503 |
msgstr "Izlazne opcije za"
|
504 |
|
505 |
-
#: adrotate.php:
|
506 |
msgid "Action prohibited"
|
507 |
msgstr "Zabranjeno delo"
|
508 |
|
509 |
-
#: adrotate.php:
|
510 |
msgid "No data found in selected time period"
|
511 |
msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
|
512 |
|
513 |
-
#: adrotate.php:
|
514 |
msgid "Manage"
|
515 |
msgstr "Upravljati"
|
516 |
|
517 |
-
#: adrotate.php:
|
518 |
msgid "Add New"
|
519 |
msgstr "Dodati novi"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
msgid "Group Management"
|
523 |
msgstr "Menadžment grupe"
|
524 |
|
525 |
-
#: adrotate.php:
|
526 |
msgid "Group created"
|
527 |
msgstr "Stvorena grupa"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
msgid "Group updated"
|
531 |
msgstr "Updateovana grupa"
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
msgid "Group deleted"
|
535 |
msgstr "Izbrisana grupa"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
msgid "Group including it's Ads deleted"
|
539 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
#, fuzzy
|
543 |
msgid "Schedule Management available in AdRotate Pro"
|
544 |
msgstr "Dostupno u AdRotate Pro"
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
#, fuzzy
|
548 |
msgid ""
|
549 |
"Schedule management and multiple schedules per advert is available in "
|
550 |
"AdRotate Pro."
|
551 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
552 |
|
553 |
-
#: adrotate.php:
|
554 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
555 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
556 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -559,335 +559,317 @@ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
|
559 |
msgid "More information"
|
560 |
msgstr "Saznajte više"
|
561 |
|
562 |
-
#: adrotate.php:
|
563 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
564 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
565 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
566 |
msgid "Bulk Actions"
|
567 |
msgstr "Delo bulk-ovanja"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
571 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
572 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
573 |
msgid "Go"
|
574 |
msgstr "Kreni"
|
575 |
|
576 |
-
#: adrotate.php:
|
577 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
578 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
579 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
580 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
581 |
-
#: dashboard/server/adrotate-active.php:18
|
582 |
-
#: dashboard/server/adrotate-error.php:18
|
583 |
msgid "ID"
|
584 |
msgstr "ID"
|
585 |
|
586 |
-
#: adrotate.php:
|
587 |
#, fuzzy
|
588 |
msgid "Start"
|
589 |
msgstr "Početno vreme (hh:mm):"
|
590 |
|
591 |
-
#: adrotate.php:
|
592 |
#, fuzzy
|
593 |
msgid "End"
|
594 |
msgstr "Završno vreme (hh:mm):"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
598 |
msgid "Ads"
|
599 |
msgstr "Oglasi"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
#, fuzzy
|
603 |
msgid "Max Clicks"
|
604 |
msgstr "Klikovi"
|
605 |
|
606 |
-
#: adrotate.php:
|
607 |
#, fuzzy
|
608 |
msgid "Max Impressions"
|
609 |
msgstr "Utisci"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
#, fuzzy
|
613 |
msgid "No schedules created yet!"
|
614 |
msgstr "Nijedan blok nije stvoren još uvek!"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#, fuzzy
|
618 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
619 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#, fuzzy
|
623 |
msgid "Upgrade today!"
|
624 |
msgstr "Danas"
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
628 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
629 |
msgid "Expires soon."
|
630 |
msgstr "Ističe uskoro."
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
634 |
msgid "Has expired."
|
635 |
msgstr "Isteklo je."
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
#, fuzzy
|
639 |
msgid "Media Management available in AdRotate Pro"
|
640 |
msgstr "Dostupno u AdRotate Pro"
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
msgid ""
|
644 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
645 |
"especially useful if you use responsive adverts with multiple images."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: adrotate.php:
|
649 |
#, fuzzy
|
650 |
msgid "Media uploading and management is available in AdRotate Pro."
|
651 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
#, fuzzy
|
655 |
msgid "Upload new banner image"
|
656 |
msgstr "Slika banera:"
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
#, fuzzy
|
660 |
msgid "Accepted files are:"
|
661 |
msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "Maximum size is 512Kb."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "Important:"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid ""
|
673 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
674 |
"spaces with a - or _."
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: adrotate.php:
|
678 |
msgid ""
|
679 |
"For responsive adverts make sure the filename is in the following format; "
|
680 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
msgid ""
|
685 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
686 |
"filename instead of \".full\" for the various viewports."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: adrotate.php:
|
690 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
691 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
692 |
msgid "Example:"
|
693 |
msgstr "Primer"
|
694 |
|
695 |
-
#: adrotate.php:
|
696 |
msgid ""
|
697 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
698 |
"for different viewports."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: adrotate.php:
|
702 |
#, fuzzy
|
703 |
msgid "Upload image"
|
704 |
msgstr "Slika banera:"
|
705 |
|
706 |
-
#: adrotate.php:
|
707 |
msgid "Available banner images in"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: adrotate.php:
|
711 |
msgid "Name"
|
712 |
msgstr "Ime"
|
713 |
|
714 |
-
#: adrotate.php:
|
715 |
#, fuzzy
|
716 |
msgid "Actions"
|
717 |
msgstr "Delo bulk-ovanja"
|
718 |
|
719 |
-
#: adrotate.php:
|
720 |
-
#: adrotate.php:
|
721 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
722 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
723 |
msgid "Delete"
|
724 |
msgstr "Obrisati"
|
725 |
|
726 |
-
#: adrotate.php:
|
727 |
msgid ""
|
728 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: adrotate.php:
|
732 |
#, fuzzy
|
733 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
734 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
735 |
|
736 |
-
#: adrotate.php:
|
737 |
-
#, fuzzy
|
738 |
-
msgid "AdRotate Server"
|
739 |
-
msgstr "AdRotate promocije"
|
740 |
-
|
741 |
-
#: adrotate.php:608
|
742 |
-
msgid ""
|
743 |
-
"AdRotate server is currently in development and these menus are not "
|
744 |
-
"functional yet."
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: adrotate.php:612
|
748 |
-
#, fuzzy
|
749 |
-
msgid "Overview"
|
750 |
-
msgstr "Mesečni pregled klikova i utisaka"
|
751 |
-
|
752 |
-
#: adrotate.php:708
|
753 |
msgid "AdRotate Settings"
|
754 |
msgstr "AdRotate postavke"
|
755 |
|
756 |
-
#: adrotate.php:
|
757 |
msgid "Settings saved"
|
758 |
msgstr "Postavke sačuvane"
|
759 |
|
760 |
-
#: adrotate.php:
|
761 |
msgid "Database optimized"
|
762 |
msgstr "Baza podataka optimizirana"
|
763 |
|
764 |
-
#: adrotate.php:
|
765 |
msgid "Database repaired"
|
766 |
msgstr "Baza podataka popravljena"
|
767 |
|
768 |
-
#: adrotate.php:
|
769 |
msgid "Ads evaluated and statuses have been corrected where required"
|
770 |
msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
|
771 |
|
772 |
-
#: adrotate.php:
|
773 |
msgid "Empty database records removed"
|
774 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
775 |
|
776 |
-
#: adrotate.php:
|
777 |
msgid "Database can only be optimized or cleaned once every hour"
|
778 |
msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
|
779 |
|
780 |
-
#: adrotate.php:
|
781 |
msgid "Access Rights"
|
782 |
msgstr "Prava pristupa"
|
783 |
|
784 |
-
#: adrotate.php:
|
785 |
msgid "Who has access to what?"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: adrotate.php:
|
789 |
msgid "Manage/Add/Edit adverts"
|
790 |
msgstr "Upravljanje / Add / Edit reklame"
|
791 |
|
792 |
-
#: adrotate.php:
|
793 |
msgid "Role to see and add/edit ads."
|
794 |
msgstr "Uloga videti i add / edit oglase ."
|
795 |
|
796 |
-
#: adrotate.php:
|
797 |
msgid "Delete/Reset adverts"
|
798 |
msgstr "Brisanje / Reset reklame"
|
799 |
|
800 |
-
#: adrotate.php:
|
801 |
msgid "Role to delete ads and reset stats."
|
802 |
msgstr "Uloga obrisati oglase i resetovanje ."
|
803 |
|
804 |
-
#: adrotate.php:
|
805 |
msgid "Manage/Add/Edit groups"
|
806 |
msgstr "Upravljanje / Add / Edit grupama"
|
807 |
|
808 |
-
#: adrotate.php:
|
809 |
msgid "Role to see and add/edit groups."
|
810 |
msgstr "Uloga videti i add / edit grupe ."
|
811 |
|
812 |
-
#: adrotate.php:
|
813 |
msgid "Delete groups"
|
814 |
msgstr "Brisanje grupe"
|
815 |
|
816 |
-
#: adrotate.php:
|
817 |
msgid "Role to delete groups."
|
818 |
msgstr "Uloga za brisanje grupe ."
|
819 |
|
820 |
-
#: adrotate.php:
|
821 |
-
#: adrotate.php:
|
822 |
msgid "Update Options"
|
823 |
msgstr "Update opcije"
|
824 |
|
825 |
-
#: adrotate.php:
|
826 |
msgid "Statistics"
|
827 |
msgstr "Statistike"
|
828 |
|
829 |
-
#: adrotate.php:
|
830 |
#, fuzzy
|
831 |
msgid "Enable stats"
|
832 |
msgstr "Statistika"
|
833 |
|
834 |
-
#: adrotate.php:
|
835 |
msgid "Track clicks and impressions."
|
836 |
msgstr "Pratite klikove i prikaze ."
|
837 |
|
838 |
-
#: adrotate.php:
|
839 |
#, fuzzy
|
840 |
msgid "Disabling this also disables click and impression limits on schedules."
|
841 |
msgstr ""
|
842 |
"Onemogućavanje ovoga takođe onemogućava klikovima i prikazima granice "
|
843 |
"rasporede i onemogućava rokovima "
|
844 |
|
845 |
-
#: adrotate.php:
|
846 |
msgid "Impressions timer"
|
847 |
msgstr "Utisci tajmer"
|
848 |
|
849 |
-
#: adrotate.php:
|
850 |
msgid "Seconds."
|
851 |
msgstr "Sekunde."
|
852 |
|
853 |
-
#: adrotate.php:
|
854 |
#, fuzzy
|
855 |
msgid "Default: 60."
|
856 |
msgstr "Default - Prikazati po jedan oglas"
|
857 |
|
858 |
-
#: adrotate.php:
|
859 |
#, fuzzy
|
860 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
861 |
msgstr ""
|
862 |
"Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
|
863 |
|
864 |
-
#: adrotate.php:
|
865 |
#, fuzzy
|
866 |
msgid "Clicks timer"
|
867 |
msgstr "Utisci tajmer"
|
868 |
|
869 |
-
#: adrotate.php:
|
870 |
#, fuzzy
|
871 |
msgid "Default: 86400."
|
872 |
msgstr "Default - Prikazati po jedan oglas"
|
873 |
|
874 |
-
#: adrotate.php:
|
875 |
#, fuzzy
|
876 |
msgid ""
|
877 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
878 |
msgstr ""
|
879 |
"Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
|
880 |
|
881 |
-
#: adrotate.php:
|
882 |
#, fuzzy
|
883 |
msgid "Bot filter"
|
884 |
msgstr "User- agent filter"
|
885 |
|
886 |
-
#: adrotate.php:
|
887 |
msgid "User-Agent Filter"
|
888 |
msgstr "User- agent filter"
|
889 |
|
890 |
-
#: adrotate.php:
|
891 |
msgid ""
|
892 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
893 |
"prevent impressions and clicks counted on them."
|
@@ -895,7 +877,7 @@ msgstr ""
|
|
895 |
"Zarezom odvojena lista ključnih reči . Filter se botovi / popisivači / user-"
|
896 |
"agent . Da biste sprečili prikaza i klikova na njih računati ."
|
897 |
|
898 |
-
#: adrotate.php:
|
899 |
#, fuzzy
|
900 |
msgid ""
|
901 |
"Keep in mind that this might give false positives. The word 'google' also "
|
@@ -905,21 +887,21 @@ msgstr ""
|
|
905 |
"na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
|
906 |
"2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
|
907 |
|
908 |
-
#: adrotate.php:
|
909 |
#, fuzzy
|
910 |
msgid "Keep your list up-to-date"
|
911 |
msgstr ""
|
912 |
"Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
|
913 |
"ovu listu na minimum !"
|
914 |
|
915 |
-
#: adrotate.php:
|
916 |
#, fuzzy
|
917 |
msgid ""
|
918 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
919 |
"other characters are stripped out."
|
920 |
msgstr "HTML će biti skinut."
|
921 |
|
922 |
-
#: adrotate.php:
|
923 |
msgid ""
|
924 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
925 |
"well."
|
@@ -927,23 +909,23 @@ msgstr ""
|
|
927 |
"Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
|
928 |
"dobro."
|
929 |
|
930 |
-
#: adrotate.php:
|
931 |
msgid "Learn more about"
|
932 |
msgstr "Saznajte više o"
|
933 |
|
934 |
-
#: adrotate.php:
|
935 |
msgid "user-agents"
|
936 |
msgstr "korisnici-agenti"
|
937 |
|
938 |
-
#: adrotate.php:
|
939 |
msgid "Miscellaneous"
|
940 |
msgstr "Ostalo"
|
941 |
|
942 |
-
#: adrotate.php:
|
943 |
msgid "Widget alignment"
|
944 |
msgstr "Widget alignment"
|
945 |
|
946 |
-
#: adrotate.php:
|
947 |
msgid ""
|
948 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
949 |
"not always help!)"
|
@@ -951,12 +933,12 @@ msgstr ""
|
|
951 |
"Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
|
952 |
"uvek ! )"
|
953 |
|
954 |
-
#: adrotate.php:
|
955 |
#, fuzzy
|
956 |
msgid "Widget padding"
|
957 |
msgstr "Blokiraj punjenje"
|
958 |
|
959 |
-
#: adrotate.php:
|
960 |
#, fuzzy
|
961 |
msgid ""
|
962 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
@@ -965,7 +947,7 @@ msgstr ""
|
|
965 |
"Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
|
966 |
"uvek ! )"
|
967 |
|
968 |
-
#: adrotate.php:
|
969 |
#, fuzzy
|
970 |
msgid "NOTICE:"
|
971 |
msgstr ""
|
@@ -975,7 +957,7 @@ msgstr ""
|
|
975 |
"rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
|
976 |
"primetite vaša baza podataka je spor , spor i ne reaguje ."
|
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 "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
|
993 |
|
994 |
-
#: adrotate.php:
|
995 |
msgid ""
|
996 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
997 |
"this function will not work. WP Super Cache has discontinued support for "
|
998 |
"dynamic content."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: adrotate.php:
|
1002 |
#, fuzzy
|
1003 |
msgid "WP Super Cache"
|
1004 |
msgstr ""
|
1005 |
"To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
|
1006 |
"osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
|
1007 |
|
1008 |
-
#: adrotate.php:
|
1009 |
#, fuzzy
|
1010 |
msgid "Check this box if you use WP Super Cache on your site."
|
1011 |
msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
|
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."
|
@@ -1018,7 +1000,7 @@ msgstr ""
|
|
1018 |
"To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
|
1019 |
"osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
|
1020 |
|
1021 |
-
#: adrotate.php:
|
1022 |
msgid ""
|
1023 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1024 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -1026,33 +1008,32 @@ msgstr ""
|
|
1026 |
"Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
|
1027 |
"koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
|
1028 |
|
1029 |
-
#: adrotate.php:
|
1030 |
-
|
1031 |
-
|
1032 |
-
msgstr "HTML / JavaScript dozvoljeno , koristite pažljivo !"
|
1033 |
|
1034 |
-
#: adrotate.php:
|
1035 |
#, fuzzy
|
1036 |
msgid "Load jQuery"
|
1037 |
msgstr ""
|
1038 |
"Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
|
1039 |
"Default: 6."
|
1040 |
|
1041 |
-
#: adrotate.php:
|
1042 |
#, fuzzy
|
1043 |
msgid ""
|
1044 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1045 |
"theme does not load jQuery already."
|
1046 |
msgstr "Praćenje klikom:"
|
1047 |
|
1048 |
-
#: adrotate.php:
|
1049 |
#, fuzzy
|
1050 |
msgid "Load in footer?"
|
1051 |
msgstr ""
|
1052 |
"Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
|
1053 |
"Default: 6."
|
1054 |
|
1055 |
-
#: adrotate.php:
|
1056 |
#, fuzzy
|
1057 |
msgid ""
|
1058 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
@@ -1063,11 +1044,11 @@ msgstr ""
|
|
1063 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
1064 |
"detalja !"
|
1065 |
|
1066 |
-
#: adrotate.php:
|
1067 |
msgid "Maintenance"
|
1068 |
msgstr "Održavanje"
|
1069 |
|
1070 |
-
#: adrotate.php:
|
1071 |
#, fuzzy
|
1072 |
msgid ""
|
1073 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
@@ -1082,19 +1063,19 @@ msgstr ""
|
|
1082 |
"rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
|
1083 |
"primetite vaša baza podataka je spor , spor i ne reaguje ."
|
1084 |
|
1085 |
-
#: adrotate.php:
|
1086 |
msgid "Optimize Database"
|
1087 |
msgstr "Optimizacija baze podataka"
|
1088 |
|
1089 |
-
#: adrotate.php:
|
1090 |
msgid "You are about to optimize the AdRotate database."
|
1091 |
msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
|
1092 |
|
1093 |
-
#: adrotate.php:
|
1094 |
msgid "Did you make a backup of your database?"
|
1095 |
msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
|
1096 |
|
1097 |
-
#: adrotate.php:
|
1098 |
msgid ""
|
1099 |
"This may take a moment and may cause your website to respond slow "
|
1100 |
"temporarily!"
|
@@ -1102,16 +1083,16 @@ msgstr ""
|
|
1102 |
"To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
|
1103 |
"sporo privremeno !"
|
1104 |
|
1105 |
-
#: adrotate.php:
|
1106 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1107 |
msgid "OK to continue, CANCEL to stop."
|
1108 |
msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
|
1109 |
|
1110 |
-
#: adrotate.php:
|
1111 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1112 |
msgstr "Čiste se režijski podaci u tabelama AdRotate ."
|
1113 |
|
1114 |
-
#: adrotate.php:
|
1115 |
msgid ""
|
1116 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1117 |
"made. This can vary from nothing to hundreds of KiB of data."
|
@@ -1119,68 +1100,68 @@ msgstr ""
|
|
1119 |
"Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
|
1120 |
"Ovo može da varira od nule do nekoliko stotina KiB podataka ."
|
1121 |
|
1122 |
-
#: adrotate.php:
|
1123 |
msgid "Clean-up Database"
|
1124 |
msgstr "Čišćenje baze"
|
1125 |
|
1126 |
-
#: adrotate.php:
|
1127 |
#, fuzzy
|
1128 |
msgid ""
|
1129 |
"You are about to clean up your database. This may delete expired schedules "
|
1130 |
"and older statistics."
|
1131 |
msgstr "Čišćenje baze"
|
1132 |
|
1133 |
-
#: adrotate.php:
|
1134 |
#, fuzzy
|
1135 |
msgid "Are you sure you want to continue?"
|
1136 |
msgstr "Popunite ID tipa koji želite da prikažete!"
|
1137 |
|
1138 |
-
#: adrotate.php:
|
1139 |
#, fuzzy
|
1140 |
msgid "This might take a while and may slow down your site during this action!"
|
1141 |
msgstr ""
|
1142 |
"To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
|
1143 |
"sporo privremeno !"
|
1144 |
|
1145 |
-
#: adrotate.php:
|
1146 |
#, fuzzy
|
1147 |
msgid "Delete stats older than 356 days (Optional)."
|
1148 |
msgstr "Uloga obrisati oglase i resetovanje ."
|
1149 |
|
1150 |
-
#: adrotate.php:
|
1151 |
#, fuzzy
|
1152 |
msgid ""
|
1153 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1154 |
"occasions these records are faulty."
|
1155 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
1156 |
|
1157 |
-
#: adrotate.php:
|
1158 |
#, fuzzy
|
1159 |
msgid ""
|
1160 |
"If you made an ad or group that does not save when you make it use this "
|
1161 |
"button to delete those empty records."
|
1162 |
msgstr "Vi ste na putu da izbrišete grupu"
|
1163 |
|
1164 |
-
#: adrotate.php:
|
1165 |
#, fuzzy
|
1166 |
msgid ""
|
1167 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1168 |
"your site."
|
1169 |
msgstr "Čišćenje baze"
|
1170 |
|
1171 |
-
#: adrotate.php:
|
1172 |
msgid "Re-evaluate Ads"
|
1173 |
msgstr "Ponovo ocenjeni oglasi"
|
1174 |
|
1175 |
-
#: adrotate.php:
|
1176 |
msgid "Re-evaluate all ads"
|
1177 |
msgstr "Ponovo ocenite sve oglase"
|
1178 |
|
1179 |
-
#: adrotate.php:
|
1180 |
msgid "You are about to check all ads for errors."
|
1181 |
msgstr "Vi ste o tome da proveri sve oglase za greške ."
|
1182 |
|
1183 |
-
#: adrotate.php:
|
1184 |
msgid ""
|
1185 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1186 |
"in. Normally you should not need this feature."
|
@@ -1188,7 +1169,7 @@ msgstr ""
|
|
1188 |
"Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
|
1189 |
"bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
|
1190 |
|
1191 |
-
#: adrotate.php:
|
1192 |
msgid ""
|
1193 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1194 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
@@ -1205,45 +1186,45 @@ msgstr ""
|
|
1205 |
"već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
|
1206 |
"nijevažna stvar u svakom slučaju ."
|
1207 |
|
1208 |
-
#: adrotate.php:
|
1209 |
msgid "Troubleshooting"
|
1210 |
msgstr "Rešavanje problema"
|
1211 |
|
1212 |
-
#: adrotate.php:
|
1213 |
msgid "Current version:"
|
1214 |
msgstr "Trenutna verzija :"
|
1215 |
|
1216 |
-
#: adrotate.php:
|
1217 |
msgid "Previous version:"
|
1218 |
msgstr "Prethodna verzija :"
|
1219 |
|
1220 |
-
#: adrotate.php:
|
1221 |
msgid "Current database version:"
|
1222 |
msgstr "Trenutna verzija baze podataka :"
|
1223 |
|
1224 |
-
#: adrotate.php:
|
1225 |
msgid "Previous database version:"
|
1226 |
msgstr "Prethodna verzija baze podataka :"
|
1227 |
|
1228 |
-
#: adrotate.php:
|
1229 |
#, fuzzy
|
1230 |
msgid "Ad evaluation next run:"
|
1231 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
1232 |
|
1233 |
-
#: adrotate.php:
|
1234 |
msgid "Not scheduled!"
|
1235 |
msgstr "Nije planirano:"
|
1236 |
|
1237 |
-
#: adrotate.php:
|
1238 |
msgid "Clean Trackerdata next run:"
|
1239 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
1240 |
|
1241 |
-
#: adrotate.php:
|
1242 |
#, fuzzy
|
1243 |
msgid "Current status of adverts"
|
1244 |
msgstr "Trenutni raspored"
|
1245 |
|
1246 |
-
#: adrotate.php:
|
1247 |
#, fuzzy
|
1248 |
msgid "Normal"
|
1249 |
msgstr ""
|
@@ -1252,27 +1233,27 @@ msgstr ""
|
|
1252 |
"To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
|
1253 |
"normalnu upotrebu oni treba da budu levo neprovereni "
|
1254 |
|
1255 |
-
#: adrotate.php:
|
1256 |
#, fuzzy
|
1257 |
msgid "Error"
|
1258 |
msgstr "Nepoznati error se ukazao."
|
1259 |
|
1260 |
-
#: adrotate.php:
|
1261 |
#, fuzzy
|
1262 |
msgid "Expired"
|
1263 |
msgstr "Isteklo je."
|
1264 |
|
1265 |
-
#: adrotate.php:
|
1266 |
#, fuzzy
|
1267 |
msgid "Expires Soon"
|
1268 |
msgstr "Ističe uskoro."
|
1269 |
|
1270 |
-
#: adrotate.php:
|
1271 |
#, fuzzy
|
1272 |
msgid "Unknown Status"
|
1273 |
msgstr "Nepoznati error se ukazao."
|
1274 |
|
1275 |
-
#: adrotate.php:
|
1276 |
msgid ""
|
1277 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1278 |
"developers to review saved settings or how ads are selected. These can be "
|
@@ -1284,43 +1265,43 @@ msgstr ""
|
|
1284 |
"To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
|
1285 |
"normalnu upotrebu oni treba da budu levo neprovereni "
|
1286 |
|
1287 |
-
#: adrotate.php:
|
1288 |
msgid "Developer Debug"
|
1289 |
msgstr "Debug za programera"
|
1290 |
|
1291 |
-
#: adrotate.php:
|
1292 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1293 |
msgstr ""
|
1294 |
"Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
|
1295 |
"izlaza ."
|
1296 |
|
1297 |
-
#: adrotate.php:
|
1298 |
msgid "Show all settings, dashboard routines and related values."
|
1299 |
msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
|
1300 |
|
1301 |
-
#: adrotate.php:
|
1302 |
msgid "Show array of all userroles and capabilities."
|
1303 |
msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
|
1304 |
|
1305 |
-
#: adrotate.php:
|
1306 |
msgid "Review saved advertisers! Visible to advertisers."
|
1307 |
msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
|
1308 |
|
1309 |
-
#: adrotate.php:
|
1310 |
#, fuzzy
|
1311 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1312 |
msgstr ""
|
1313 |
"Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
|
1314 |
"samo izdavačima ."
|
1315 |
|
1316 |
-
#: adrotate.php:
|
1317 |
#, fuzzy
|
1318 |
msgid ""
|
1319 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1320 |
"clicktracking."
|
1321 |
msgstr "Pratite klikove i prikaze ."
|
1322 |
|
1323 |
-
#: adrotate.php:
|
1324 |
msgid "Temporarily disable encryption on the redirect url."
|
1325 |
msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
|
1326 |
|
@@ -1368,107 +1349,107 @@ msgstr "Koristite"
|
|
1368 |
msgid "AdRotate News and Developer Blog"
|
1369 |
msgstr "AdRotate novosti i blog za programere"
|
1370 |
|
1371 |
-
#: dashboard/adrotate-info.php:
|
1372 |
#, fuzzy
|
1373 |
msgid "Buy AdRotate Professional"
|
1374 |
msgstr "Kupite odmah"
|
1375 |
|
1376 |
-
#: dashboard/adrotate-info.php:
|
1377 |
msgid "Singe License"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: dashboard/adrotate-info.php:
|
1381 |
#, fuzzy
|
1382 |
msgid "For one WordPress installation."
|
1383 |
msgstr "Instalacije"
|
1384 |
|
1385 |
-
#: dashboard/adrotate-info.php:
|
1386 |
-
#: dashboard/adrotate-info.php:
|
1387 |
-
#: dashboard/adrotate-info.php:
|
1388 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1389 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1390 |
#, fuzzy
|
1391 |
msgid "Buy now"
|
1392 |
msgstr "Kupite odmah"
|
1393 |
|
1394 |
-
#: dashboard/adrotate-info.php:
|
1395 |
msgid "Duo License"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: dashboard/adrotate-info.php:
|
1399 |
#, fuzzy
|
1400 |
msgid "For two WordPress installations."
|
1401 |
msgstr "Instalacije"
|
1402 |
|
1403 |
-
#: dashboard/adrotate-info.php:
|
1404 |
msgid "Multi License"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: dashboard/adrotate-info.php:
|
1408 |
#, fuzzy
|
1409 |
msgid " For up to five WordPress installations."
|
1410 |
msgstr "Instalacije"
|
1411 |
|
1412 |
-
#: dashboard/adrotate-info.php:
|
1413 |
#, fuzzy
|
1414 |
msgid "Developer License"
|
1415 |
msgstr "Debug za programera"
|
1416 |
|
1417 |
-
#: dashboard/adrotate-info.php:
|
1418 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: dashboard/adrotate-info.php:
|
1422 |
msgid "Network License"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: dashboard/adrotate-info.php:
|
1426 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: dashboard/adrotate-info.php:
|
1430 |
msgid "Compare licenses"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: dashboard/adrotate-info.php:
|
1434 |
msgid "Not sure which license is for you? Compare them..."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: dashboard/adrotate-info.php:
|
1438 |
#, fuzzy
|
1439 |
msgid "All Licenses"
|
1440 |
msgstr "Ponovo ocenite sve oglase"
|
1441 |
|
1442 |
-
#: dashboard/adrotate-info.php:
|
1443 |
#, fuzzy
|
1444 |
msgid "Get more features with AdRotate Pro"
|
1445 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
1446 |
|
1447 |
-
#: dashboard/adrotate-info.php:
|
1448 |
msgid ""
|
1449 |
"Benefit from extra features to reinforce your income with advertising "
|
1450 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1451 |
"Pro offers on top of the trusted features included in the free version."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: dashboard/adrotate-info.php:
|
1455 |
#, fuzzy
|
1456 |
msgid "or go to the"
|
1457 |
msgstr "Kreni"
|
1458 |
|
1459 |
-
#: dashboard/adrotate-info.php:
|
1460 |
msgid "Support AdRotate"
|
1461 |
msgstr "AdRotate podrška"
|
1462 |
|
1463 |
-
#: dashboard/adrotate-info.php:
|
1464 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1465 |
msgstr "Vaš poklon će obezbediti kontinuirani razvoj AdRotate !"
|
1466 |
|
1467 |
-
#: dashboard/adrotate-info.php:
|
1468 |
msgid "AdRotate is brought to you by"
|
1469 |
msgstr "AdRotate vam je omogućio"
|
1470 |
|
1471 |
-
#: dashboard/adrotate-info.php:
|
1472 |
msgid ""
|
1473 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1474 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
@@ -1479,11 +1460,11 @@ msgstr ""
|
|
1479 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
1480 |
"detalja !"
|
1481 |
|
1482 |
-
#: dashboard/adrotate-info.php:
|
1483 |
msgid "Find out more"
|
1484 |
msgstr "Saznajte više"
|
1485 |
|
1486 |
-
#: dashboard/adrotate-info.php:
|
1487 |
msgid "Follow"
|
1488 |
msgstr ""
|
1489 |
|
@@ -2038,8 +2019,6 @@ msgstr "Vidljivo do"
|
|
2038 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2039 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2040 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2041 |
-
#: dashboard/server/adrotate-active.php:25
|
2042 |
-
#: dashboard/server/adrotate-error.php:26
|
2043 |
msgid "Clicks"
|
2044 |
msgstr "Klikovi"
|
2045 |
|
@@ -2148,7 +2127,6 @@ msgstr "Resetuj statistiku"
|
|
2148 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2149 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2150 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
2151 |
-
#: dashboard/server/adrotate-active.php:20
|
2152 |
#, fuzzy
|
2153 |
msgid "Start / End"
|
2154 |
msgstr ""
|
@@ -2159,8 +2137,6 @@ msgstr ""
|
|
2159 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2160 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2161 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2162 |
-
#: dashboard/server/adrotate-active.php:21
|
2163 |
-
#: dashboard/server/adrotate-error.php:22
|
2164 |
msgid "Title"
|
2165 |
msgstr "Naslov"
|
2166 |
|
@@ -2168,8 +2144,6 @@ msgstr "Naslov"
|
|
2168 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2169 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2170 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2171 |
-
#: dashboard/server/adrotate-active.php:27
|
2172 |
-
#: dashboard/server/adrotate-error.php:28
|
2173 |
msgid "CTR"
|
2174 |
msgstr "CTR"
|
2175 |
|
@@ -2242,14 +2216,10 @@ msgstr "Izlazne opcije za"
|
|
2242 |
|
2243 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2244 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2245 |
-
#: dashboard/server/adrotate-active.php:22
|
2246 |
-
#: dashboard/server/adrotate-error.php:23
|
2247 |
msgid "Weight"
|
2248 |
msgstr "Težina"
|
2249 |
|
2250 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2251 |
-
#: dashboard/server/adrotate-active.php:23
|
2252 |
-
#: dashboard/server/adrotate-error.php:24
|
2253 |
#, fuzzy
|
2254 |
msgid "Shown"
|
2255 |
msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
|
@@ -2258,10 +2228,6 @@ msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
|
|
2258 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2259 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2260 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2261 |
-
#: dashboard/server/adrotate-active.php:24
|
2262 |
-
#: dashboard/server/adrotate-active.php:26
|
2263 |
-
#: dashboard/server/adrotate-error.php:25
|
2264 |
-
#: dashboard/server/adrotate-error.php:27
|
2265 |
msgid "Today"
|
2266 |
msgstr "Danas"
|
2267 |
|
@@ -2659,121 +2625,51 @@ msgstr "Grupa nije napravljena!"
|
|
2659 |
msgid "Statistics for group"
|
2660 |
msgstr "Sttistike za"
|
2661 |
|
2662 |
-
#: dashboard/server/adrotate-active.php:12
|
2663 |
-
msgid "Adverts received from server"
|
2664 |
-
msgstr ""
|
2665 |
-
|
2666 |
-
#: dashboard/server/adrotate-active.php:13
|
2667 |
-
msgid ""
|
2668 |
-
"These adverts are circulating in the pool of active adverts, served from "
|
2669 |
-
"AdRotate server."
|
2670 |
-
msgstr ""
|
2671 |
-
|
2672 |
-
#: dashboard/server/adrotate-active.php:19
|
2673 |
#, fuzzy
|
2674 |
-
msgid "
|
2675 |
-
msgstr "
|
2676 |
|
2677 |
-
#: dashboard/server/adrotate-active.php:74
|
2678 |
-
#: dashboard/server/adrotate-error.php:76
|
2679 |
#, fuzzy
|
2680 |
-
msgid "
|
2681 |
-
msgstr "
|
2682 |
-
|
2683 |
-
#: dashboard/server/adrotate-error.php:12
|
2684 |
-
msgid "Erroneous ads from server"
|
2685 |
-
msgstr ""
|
2686 |
-
|
2687 |
-
#: dashboard/server/adrotate-error.php:13
|
2688 |
-
msgid "Adverts served from AdRotate server but having some issues."
|
2689 |
-
msgstr ""
|
2690 |
|
2691 |
-
#: dashboard/server/adrotate-error.php:19
|
2692 |
#, fuzzy
|
2693 |
-
msgid "
|
2694 |
-
msgstr "
|
2695 |
|
2696 |
-
#: dashboard/server/adrotate-error.php:20
|
2697 |
-
msgid "Show from"
|
2698 |
-
msgstr "Prikazati iz"
|
2699 |
-
|
2700 |
-
#: dashboard/server/adrotate-error.php:21
|
2701 |
-
msgid "Show until"
|
2702 |
-
msgstr "Prikazati do"
|
2703 |
-
|
2704 |
-
#: dashboard/server/adrotate-settings.php:15
|
2705 |
#, fuzzy
|
2706 |
-
msgid "
|
2707 |
-
msgstr "
|
2708 |
-
|
2709 |
-
#: dashboard/server/adrotate-settings.php:21
|
2710 |
-
msgid ""
|
2711 |
-
"Link this website to an AdRotate server so your adverts and stats are "
|
2712 |
-
"synchronised regularly."
|
2713 |
-
msgstr ""
|
2714 |
|
2715 |
-
#: dashboard/server/adrotate-settings.php:24
|
2716 |
#, fuzzy
|
2717 |
-
msgid "
|
2718 |
-
msgstr "
|
2719 |
|
2720 |
-
#: dashboard/server/adrotate-settings.php:27
|
2721 |
-
msgid "Linked - Adverts can be synced."
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: dashboard/server/adrotate-settings.php:27
|
2725 |
#, fuzzy
|
2726 |
-
msgid "
|
2727 |
-
msgstr "
|
2728 |
-
|
2729 |
-
#: dashboard/server/adrotate-settings.php:40
|
2730 |
-
msgid "Server Key"
|
2731 |
-
msgstr ""
|
2732 |
-
|
2733 |
-
#: dashboard/server/adrotate-settings.php:41
|
2734 |
-
msgid ""
|
2735 |
-
"You can get your server key from your AdRotate Server installation or the "
|
2736 |
-
"AdRollr website."
|
2737 |
-
msgstr ""
|
2738 |
-
|
2739 |
-
#: dashboard/server/adrotate-settings.php:41
|
2740 |
-
msgid ""
|
2741 |
-
"You should not share your key with anyone you do not trust. Treat this key "
|
2742 |
-
"as a password!"
|
2743 |
-
msgstr ""
|
2744 |
-
|
2745 |
-
#: dashboard/server/adrotate-settings.php:44
|
2746 |
-
msgid "Make this site a puppet"
|
2747 |
-
msgstr ""
|
2748 |
|
2749 |
-
|
2750 |
-
|
2751 |
-
msgstr ""
|
2752 |
|
2753 |
-
|
2754 |
-
|
2755 |
-
"Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this "
|
2756 |
-
"installation of AdRotate a puppet for your AdRotate Server."
|
2757 |
-
msgstr ""
|
2758 |
|
2759 |
-
|
2760 |
-
msgid "
|
2761 |
-
msgstr ""
|
2762 |
|
2763 |
-
|
2764 |
-
msgid ""
|
2765 |
-
|
2766 |
-
"and want to hide the server details from your users or client."
|
2767 |
-
msgstr ""
|
2768 |
|
2769 |
-
|
2770 |
-
msgid "
|
2771 |
-
msgstr ""
|
2772 |
|
2773 |
-
#: dashboard/server/adrotate-settings.php:62
|
2774 |
#, fuzzy
|
2775 |
-
msgid "Unlink from server"
|
2776 |
-
msgstr "Prikazati iz"
|
2777 |
|
2778 |
#, fuzzy
|
2779 |
#~ 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: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.7.3\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:811
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
+
#: adrotate-functions.php:814
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
+
#: adrotate-output.php:759
|
28 |
msgid "Oh no! Something went wrong!"
|
29 |
msgstr "O ne! Nešto nije kako treba!"
|
30 |
|
31 |
+
#: adrotate-output.php:760
|
32 |
msgid ""
|
33 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
34 |
"Verify if the url used is valid or log in via your browser."
|
37 |
"kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
|
38 |
"pretraživača."
|
39 |
|
40 |
+
#: adrotate-output.php:761
|
41 |
msgid ""
|
42 |
"If you have received the url you want to visit via email, you are being "
|
43 |
"tricked!"
|
44 |
msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
|
45 |
|
46 |
+
#: adrotate-output.php:762
|
47 |
msgid "Contact support if the issue persists:"
|
48 |
msgstr "Kontaktirajte podršku ako se problem nastavi:"
|
49 |
|
50 |
+
#: adrotate-output.php:780
|
51 |
#, fuzzy
|
52 |
msgid ""
|
53 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
54 |
"restrictions or does not exist!"
|
55 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
56 |
|
57 |
+
#: adrotate-output.php:782
|
58 |
#, fuzzy
|
59 |
msgid ""
|
60 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
61 |
"restrictions!"
|
62 |
msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
|
63 |
|
64 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
65 |
msgid ""
|
66 |
"Either there are no banners, they are disabled or none qualified for this "
|
67 |
"location!"
|
68 |
msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
|
69 |
|
70 |
+
#: adrotate-output.php:797
|
71 |
msgid "Error, no Ad ID set! Check your syntax!"
|
72 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
73 |
|
74 |
+
#: adrotate-output.php:803
|
75 |
#, fuzzy
|
76 |
msgid "Error, no group ID set! Check your syntax!"
|
77 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
78 |
|
79 |
+
#: adrotate-output.php:808
|
80 |
#, fuzzy
|
81 |
msgid "Error, group does not exist! Check your syntax!"
|
82 |
msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
|
83 |
|
84 |
+
#: adrotate-output.php:814
|
85 |
msgid ""
|
86 |
"There was an error locating the database tables for AdRotate. Please "
|
87 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
89 |
"Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
|
90 |
"deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
|
91 |
|
92 |
+
#: adrotate-output.php:814
|
93 |
msgid "If this does not solve the issue please seek support at"
|
94 |
msgstr "Ako ne reši problem potražite podršku na"
|
95 |
|
96 |
+
#: adrotate-output.php:820
|
97 |
msgid "An unknown error occured."
|
98 |
msgstr "Nepoznati error se ukazao."
|
99 |
|
100 |
+
#: adrotate-output.php:846
|
101 |
msgid "active ad(s) expired."
|
102 |
msgstr "aktivni ad-ovi su istekli."
|
103 |
|
104 |
+
#: adrotate-output.php:846
|
105 |
msgid "Take action now"
|
106 |
msgstr "Reagujte odmah"
|
107 |
|
108 |
+
#: adrotate-output.php:848
|
109 |
msgid "active ad(s) are about to expire."
|
110 |
msgstr "aktivni ad-ovi će uskoro da isteknu."
|
111 |
|
112 |
+
#: adrotate-output.php:848
|
113 |
msgid "Check it out"
|
114 |
msgstr "Pogledajte ovde"
|
115 |
|
116 |
+
#: adrotate-output.php:850
|
117 |
msgid "active ad(s) with configuration errors."
|
118 |
msgstr "aktivni ad-ovi sa konfiguracionim greškama."
|
119 |
|
120 |
+
#: adrotate-output.php:850
|
121 |
msgid "Solve this"
|
122 |
msgstr "Reši ovo"
|
123 |
|
124 |
+
#: adrotate-output.php:852
|
125 |
msgid "ad(s) expired."
|
126 |
msgstr "ad-ovi su istekli."
|
127 |
|
128 |
+
#: adrotate-output.php:852
|
129 |
msgid "ad(s) are about to expire."
|
130 |
msgstr "ad-ovi će uskoro da isteknu."
|
131 |
|
132 |
+
#: adrotate-output.php:852
|
133 |
msgid "ad(s) with configuration errors."
|
134 |
msgstr "ad-ovi sa konfiguracionim greškama."
|
135 |
|
136 |
+
#: adrotate-output.php:852
|
137 |
msgid "Fix this as soon as possible"
|
138 |
msgstr "Popravi ovo što pre je moguće"
|
139 |
|
140 |
+
#: adrotate-output.php:864
|
141 |
#, fuzzy
|
142 |
msgid "Learn More"
|
143 |
msgstr "Saznajte više"
|
144 |
|
145 |
+
#: adrotate-output.php:866
|
146 |
msgid ""
|
147 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
148 |
"to the <strong>PRO</strong> version"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: adrotate-output.php:867
|
152 |
msgid "Get more features to even better run your advertising campaigns."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: adrotate-output.php:867
|
156 |
msgid "Thank you for your consideration!"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:889
|
160 |
msgid ""
|
161 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
162 |
"Pro is in this menu. Check out the"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: adrotate-output.php:889
|
166 |
msgid "manuals"
|
167 |
msgstr "priručnici"
|
168 |
|
169 |
+
#: adrotate-output.php:889 adrotate-output.php:985
|
170 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
171 |
msgid "and"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: adrotate-output.php:889
|
175 |
msgid "forums"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: adrotate-output.php:925
|
179 |
#, fuzzy
|
180 |
msgid "Useful Links"
|
181 |
msgstr "Korisni linkovi"
|
182 |
|
183 |
+
#: adrotate-output.php:926 adrotate-output.php:954
|
184 |
msgid "Useful links to learn more about AdRotate"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:928
|
188 |
#, fuzzy
|
189 |
msgid "AdRotate Page"
|
190 |
msgstr "AdRotate Pro"
|
191 |
|
192 |
+
#: adrotate-output.php:929
|
193 |
#, fuzzy
|
194 |
msgid "Getting Started With AdRotate"
|
195 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
196 |
|
197 |
+
#: adrotate-output.php:930
|
198 |
#, fuzzy
|
199 |
msgid "AdRotate manuals"
|
200 |
msgstr "AdRotate informacije"
|
201 |
|
202 |
+
#: adrotate-output.php:931
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate Support Forum"
|
205 |
msgstr "AdRotate prodavnica"
|
206 |
|
207 |
+
#: adrotate-output.php:932
|
208 |
msgid "WordPress.org Forum"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: adrotate-output.php:956
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Website."
|
214 |
msgstr "AdRotate prodavnica"
|
215 |
|
216 |
+
#: adrotate-output.php:957
|
217 |
#, fuzzy
|
218 |
msgid "AdRotate Getting Started."
|
219 |
msgstr "AdRotate postavke"
|
220 |
|
221 |
+
#: adrotate-output.php:958
|
222 |
msgid "AdRotate Knoweledge base and manuals."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: adrotate-output.php:959
|
226 |
#, fuzzy
|
227 |
msgid "AdRotate Website Forum."
|
228 |
msgstr "AdRotate prodavnica"
|
229 |
|
230 |
+
#: adrotate-output.php:960
|
231 |
msgid "WordPress.org Forum."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: adrotate-output.php:977
|
235 |
#, fuzzy
|
236 |
msgid "Help AdRotate Grow"
|
237 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
238 |
|
239 |
+
#: adrotate-output.php:978
|
240 |
msgid "Brought to you by"
|
241 |
msgstr "Za tebe od"
|
242 |
|
243 |
+
#: adrotate-output.php:985
|
244 |
msgid ""
|
245 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
246 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: adrotate-output.php:985
|
250 |
msgid "If you find AdRotate useful please leave your honest"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:985
|
254 |
msgid "rating"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:985
|
258 |
#, fuzzy
|
259 |
msgid "review"
|
260 |
msgstr "Dajte ocenu i komentar"
|
261 |
|
262 |
+
#: adrotate-output.php:985
|
263 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: adrotate-output.php:988
|
267 |
#, fuzzy
|
268 |
msgid ""
|
269 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
274 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
275 |
"detalja !"
|
276 |
|
277 |
+
#: adrotate-output.php:988
|
278 |
msgid "Visit the"
|
279 |
msgstr "Posetite"
|
280 |
|
281 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
282 |
msgid "website"
|
283 |
msgstr "websajt"
|
284 |
|
285 |
+
#: adrotate-output.php:1018
|
286 |
msgid "Available in AdRotate Pro"
|
287 |
msgstr "Dostupno u AdRotate Pro"
|
288 |
|
289 |
+
#: adrotate-output.php:1018
|
290 |
#, fuzzy
|
291 |
msgid "More information..."
|
292 |
msgstr "Saznajte više"
|
293 |
|
294 |
+
#: adrotate-output.php:1019
|
295 |
msgid "This feature is available in AdRotate Pro"
|
296 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
297 |
|
298 |
+
#: adrotate-output.php:1019
|
299 |
msgid "Learn more"
|
300 |
msgstr "Saznajte više"
|
301 |
|
425 |
msgid "AdRotate Pro"
|
426 |
msgstr "AdRotate Pro"
|
427 |
|
428 |
+
#: adrotate.php:110
|
429 |
msgid "Manage Ads"
|
430 |
msgstr "Upravljajte oglasima"
|
431 |
|
432 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
433 |
msgid "Manage Groups"
|
434 |
msgstr "Upravljajte grupama"
|
435 |
|
436 |
+
#: adrotate.php:112 adrotate.php:441
|
437 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
438 |
#, fuzzy
|
439 |
msgid "Manage Schedules"
|
440 |
msgstr "Upravljati"
|
441 |
|
442 |
+
#: adrotate.php:113
|
443 |
#, fuzzy
|
444 |
msgid "Manage Media"
|
445 |
msgstr "Media:"
|
446 |
|
447 |
+
#: adrotate.php:114
|
448 |
msgid "Settings"
|
449 |
msgstr "Postavke"
|
450 |
|
451 |
+
#: adrotate.php:137
|
452 |
msgid "AdRotate Info"
|
453 |
msgstr "AdRotate informacije"
|
454 |
|
455 |
+
#: adrotate.php:158
|
456 |
#, fuzzy
|
457 |
msgid "AdRotate Professional"
|
458 |
msgstr "AdRotate promocije"
|
459 |
|
460 |
+
#: adrotate.php:201
|
461 |
msgid "Ad Management"
|
462 |
msgstr "Menadžment oglasa"
|
463 |
|
464 |
+
#: adrotate.php:204
|
465 |
msgid "Ad created"
|
466 |
msgstr "Stvaranje oglasa"
|
467 |
|
468 |
+
#: adrotate.php:206
|
469 |
msgid "Ad updated"
|
470 |
msgstr "Update oglasa"
|
471 |
|
472 |
+
#: adrotate.php:208
|
473 |
msgid "Ad(s) deleted"
|
474 |
msgstr "Izbrisani oglasu"
|
475 |
|
476 |
+
#: adrotate.php:210
|
477 |
msgid "Ad(s) statistics reset"
|
478 |
msgstr "Statistički resestovani oglasi"
|
479 |
|
480 |
+
#: adrotate.php:212
|
481 |
msgid "Ad(s) renewed"
|
482 |
msgstr "Ponovo obnovljeni oglasi"
|
483 |
|
484 |
+
#: adrotate.php:214
|
485 |
msgid "Ad(s) deactivated"
|
486 |
msgstr "Deaktivirani oglasi"
|
487 |
|
488 |
+
#: adrotate.php:216
|
489 |
msgid "Ad(s) activated"
|
490 |
msgstr "Aktivirani oglasi"
|
491 |
|
492 |
+
#: adrotate.php:218
|
493 |
msgid ""
|
494 |
"The ad was saved but has an issue which might prevent it from working "
|
495 |
"properly. Review the yellow marked ad."
|
497 |
"Oglas je sačuvan , ali ima taj problem što može da spreči da radi ispravno . "
|
498 |
"Pregledajte žuto označeni oglas. "
|
499 |
|
500 |
+
#: adrotate.php:220
|
501 |
#, fuzzy
|
502 |
msgid "Export created"
|
503 |
msgstr "Izlazne opcije za"
|
504 |
|
505 |
+
#: adrotate.php:224
|
506 |
msgid "Action prohibited"
|
507 |
msgstr "Zabranjeno delo"
|
508 |
|
509 |
+
#: adrotate.php:226 adrotate.php:374
|
510 |
msgid "No data found in selected time period"
|
511 |
msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
|
512 |
|
513 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
514 |
msgid "Manage"
|
515 |
msgstr "Upravljati"
|
516 |
|
517 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
518 |
msgid "Add New"
|
519 |
msgstr "Dodati novi"
|
520 |
|
521 |
+
#: adrotate.php:363
|
522 |
msgid "Group Management"
|
523 |
msgstr "Menadžment grupe"
|
524 |
|
525 |
+
#: adrotate.php:366
|
526 |
msgid "Group created"
|
527 |
msgstr "Stvorena grupa"
|
528 |
|
529 |
+
#: adrotate.php:368
|
530 |
msgid "Group updated"
|
531 |
msgstr "Updateovana grupa"
|
532 |
|
533 |
+
#: adrotate.php:370
|
534 |
msgid "Group deleted"
|
535 |
msgstr "Izbrisana grupa"
|
536 |
|
537 |
+
#: adrotate.php:372
|
538 |
msgid "Group including it's Ads deleted"
|
539 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
540 |
|
541 |
+
#: adrotate.php:432
|
542 |
#, fuzzy
|
543 |
msgid "Schedule Management available in AdRotate Pro"
|
544 |
msgstr "Dostupno u AdRotate Pro"
|
545 |
|
546 |
+
#: adrotate.php:442
|
547 |
#, fuzzy
|
548 |
msgid ""
|
549 |
"Schedule management and multiple schedules per advert is available in "
|
550 |
"AdRotate Pro."
|
551 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
552 |
|
553 |
+
#: adrotate.php:442 adrotate.php:529
|
554 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
555 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
556 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
559 |
msgid "More information"
|
560 |
msgstr "Saznajte više"
|
561 |
|
562 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
563 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
564 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
565 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
566 |
msgid "Bulk Actions"
|
567 |
msgstr "Delo bulk-ovanja"
|
568 |
|
569 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
570 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
571 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
572 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
573 |
msgid "Go"
|
574 |
msgstr "Kreni"
|
575 |
|
576 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
577 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
578 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
579 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
580 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
581 |
msgid "ID"
|
582 |
msgstr "ID"
|
583 |
|
584 |
+
#: adrotate.php:460
|
585 |
#, fuzzy
|
586 |
msgid "Start"
|
587 |
msgstr "Početno vreme (hh:mm):"
|
588 |
|
589 |
+
#: adrotate.php:460
|
590 |
#, fuzzy
|
591 |
msgid "End"
|
592 |
msgstr "Završno vreme (hh:mm):"
|
593 |
|
594 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
595 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
596 |
msgid "Ads"
|
597 |
msgstr "Oglasi"
|
598 |
|
599 |
+
#: adrotate.php:463
|
600 |
#, fuzzy
|
601 |
msgid "Max Clicks"
|
602 |
msgstr "Klikovi"
|
603 |
|
604 |
+
#: adrotate.php:464
|
605 |
#, fuzzy
|
606 |
msgid "Max Impressions"
|
607 |
msgstr "Utisci"
|
608 |
|
609 |
+
#: adrotate.php:494
|
610 |
#, fuzzy
|
611 |
msgid "No schedules created yet!"
|
612 |
msgstr "Nijedan blok nije stvoren još uvek!"
|
613 |
|
614 |
+
#: adrotate.php:499
|
615 |
#, fuzzy
|
616 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
617 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
618 |
|
619 |
+
#: adrotate.php:499 adrotate.php:562
|
620 |
#, fuzzy
|
621 |
msgid "Upgrade today!"
|
622 |
msgstr "Danas"
|
623 |
|
624 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
625 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
626 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
627 |
msgid "Expires soon."
|
628 |
msgstr "Ističe uskoro."
|
629 |
|
630 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
631 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
632 |
msgid "Has expired."
|
633 |
msgstr "Isteklo je."
|
634 |
|
635 |
+
#: adrotate.php:527
|
636 |
#, fuzzy
|
637 |
msgid "Media Management available in AdRotate Pro"
|
638 |
msgstr "Dostupno u AdRotate Pro"
|
639 |
|
640 |
+
#: adrotate.php:529
|
641 |
msgid ""
|
642 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
643 |
"especially useful if you use responsive adverts with multiple images."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:529
|
647 |
#, fuzzy
|
648 |
msgid "Media uploading and management is available in AdRotate Pro."
|
649 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
650 |
|
651 |
+
#: adrotate.php:531
|
652 |
#, fuzzy
|
653 |
msgid "Upload new banner image"
|
654 |
msgstr "Slika banera:"
|
655 |
|
656 |
+
#: adrotate.php:532
|
657 |
#, fuzzy
|
658 |
msgid "Accepted files are:"
|
659 |
msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
|
660 |
|
661 |
+
#: adrotate.php:532
|
662 |
msgid "Maximum size is 512Kb."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: adrotate.php:532
|
666 |
msgid "Important:"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: adrotate.php:532
|
670 |
msgid ""
|
671 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
672 |
"spaces with a - or _."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: adrotate.php:534
|
676 |
msgid ""
|
677 |
"For responsive adverts make sure the filename is in the following format; "
|
678 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
|
682 |
msgid ""
|
683 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
684 |
"filename instead of \".full\" for the various viewports."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
|
688 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
689 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
690 |
msgid "Example:"
|
691 |
msgstr "Primer"
|
692 |
|
693 |
+
#: adrotate.php:536
|
694 |
msgid ""
|
695 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
696 |
"for different viewports."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: adrotate.php:540
|
700 |
#, fuzzy
|
701 |
msgid "Upload image"
|
702 |
msgstr "Slika banera:"
|
703 |
|
704 |
+
#: adrotate.php:543
|
705 |
msgid "Available banner images in"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
709 |
msgid "Name"
|
710 |
msgstr "Ime"
|
711 |
|
712 |
+
#: adrotate.php:549
|
713 |
#, fuzzy
|
714 |
msgid "Actions"
|
715 |
msgstr "Delo bulk-ovanja"
|
716 |
|
717 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
718 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
719 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
720 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
721 |
msgid "Delete"
|
722 |
msgstr "Obrisati"
|
723 |
|
724 |
+
#: adrotate.php:562
|
725 |
msgid ""
|
726 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: adrotate.php:562
|
730 |
#, fuzzy
|
731 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
732 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
733 |
|
734 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
msgid "AdRotate Settings"
|
736 |
msgstr "AdRotate postavke"
|
737 |
|
738 |
+
#: adrotate.php:609
|
739 |
msgid "Settings saved"
|
740 |
msgstr "Postavke sačuvane"
|
741 |
|
742 |
+
#: adrotate.php:611
|
743 |
msgid "Database optimized"
|
744 |
msgstr "Baza podataka optimizirana"
|
745 |
|
746 |
+
#: adrotate.php:613
|
747 |
msgid "Database repaired"
|
748 |
msgstr "Baza podataka popravljena"
|
749 |
|
750 |
+
#: adrotate.php:615
|
751 |
msgid "Ads evaluated and statuses have been corrected where required"
|
752 |
msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
|
753 |
|
754 |
+
#: adrotate.php:617
|
755 |
msgid "Empty database records removed"
|
756 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
757 |
|
758 |
+
#: adrotate.php:619
|
759 |
msgid "Database can only be optimized or cleaned once every hour"
|
760 |
msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
|
761 |
|
762 |
+
#: adrotate.php:627
|
763 |
msgid "Access Rights"
|
764 |
msgstr "Prava pristupa"
|
765 |
|
766 |
+
#: adrotate.php:628
|
767 |
msgid "Who has access to what?"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: adrotate.php:631
|
771 |
msgid "Manage/Add/Edit adverts"
|
772 |
msgstr "Upravljanje / Add / Edit reklame"
|
773 |
|
774 |
+
#: adrotate.php:635
|
775 |
msgid "Role to see and add/edit ads."
|
776 |
msgstr "Uloga videti i add / edit oglase ."
|
777 |
|
778 |
+
#: adrotate.php:639
|
779 |
msgid "Delete/Reset adverts"
|
780 |
msgstr "Brisanje / Reset reklame"
|
781 |
|
782 |
+
#: adrotate.php:643
|
783 |
msgid "Role to delete ads and reset stats."
|
784 |
msgstr "Uloga obrisati oglase i resetovanje ."
|
785 |
|
786 |
+
#: adrotate.php:647
|
787 |
msgid "Manage/Add/Edit groups"
|
788 |
msgstr "Upravljanje / Add / Edit grupama"
|
789 |
|
790 |
+
#: adrotate.php:651
|
791 |
msgid "Role to see and add/edit groups."
|
792 |
msgstr "Uloga videti i add / edit grupe ."
|
793 |
|
794 |
+
#: adrotate.php:655
|
795 |
msgid "Delete groups"
|
796 |
msgstr "Brisanje grupe"
|
797 |
|
798 |
+
#: adrotate.php:659
|
799 |
msgid "Role to delete groups."
|
800 |
msgstr "Uloga za brisanje grupe ."
|
801 |
|
802 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
803 |
+
#: adrotate.php:876
|
804 |
msgid "Update Options"
|
805 |
msgstr "Update opcije"
|
806 |
|
807 |
+
#: adrotate.php:691
|
808 |
msgid "Statistics"
|
809 |
msgstr "Statistike"
|
810 |
|
811 |
+
#: adrotate.php:694
|
812 |
#, fuzzy
|
813 |
msgid "Enable stats"
|
814 |
msgstr "Statistika"
|
815 |
|
816 |
+
#: adrotate.php:696
|
817 |
msgid "Track clicks and impressions."
|
818 |
msgstr "Pratite klikove i prikaze ."
|
819 |
|
820 |
+
#: adrotate.php:696
|
821 |
#, fuzzy
|
822 |
msgid "Disabling this also disables click and impression limits on schedules."
|
823 |
msgstr ""
|
824 |
"Onemogućavanje ovoga takođe onemogućava klikovima i prikazima granice "
|
825 |
"rasporede i onemogućava rokovima "
|
826 |
|
827 |
+
#: adrotate.php:700
|
828 |
msgid "Impressions timer"
|
829 |
msgstr "Utisci tajmer"
|
830 |
|
831 |
+
#: adrotate.php:702 adrotate.php:709
|
832 |
msgid "Seconds."
|
833 |
msgstr "Sekunde."
|
834 |
|
835 |
+
#: adrotate.php:703
|
836 |
#, fuzzy
|
837 |
msgid "Default: 60."
|
838 |
msgstr "Default - Prikazati po jedan oglas"
|
839 |
|
840 |
+
#: adrotate.php:703
|
841 |
#, fuzzy
|
842 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
843 |
msgstr ""
|
844 |
"Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
|
845 |
|
846 |
+
#: adrotate.php:707
|
847 |
#, fuzzy
|
848 |
msgid "Clicks timer"
|
849 |
msgstr "Utisci tajmer"
|
850 |
|
851 |
+
#: adrotate.php:710
|
852 |
#, fuzzy
|
853 |
msgid "Default: 86400."
|
854 |
msgstr "Default - Prikazati po jedan oglas"
|
855 |
|
856 |
+
#: adrotate.php:710
|
857 |
#, fuzzy
|
858 |
msgid ""
|
859 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
860 |
msgstr ""
|
861 |
"Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
|
862 |
|
863 |
+
#: adrotate.php:715
|
864 |
#, fuzzy
|
865 |
msgid "Bot filter"
|
866 |
msgstr "User- agent filter"
|
867 |
|
868 |
+
#: adrotate.php:718
|
869 |
msgid "User-Agent Filter"
|
870 |
msgstr "User- agent filter"
|
871 |
|
872 |
+
#: adrotate.php:721
|
873 |
msgid ""
|
874 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
875 |
"prevent impressions and clicks counted on them."
|
877 |
"Zarezom odvojena lista ključnih reči . Filter se botovi / popisivači / user-"
|
878 |
"agent . Da biste sprečili prikaza i klikova na njih računati ."
|
879 |
|
880 |
+
#: adrotate.php:722
|
881 |
#, fuzzy
|
882 |
msgid ""
|
883 |
"Keep in mind that this might give false positives. The word 'google' also "
|
887 |
"na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
|
888 |
"2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
|
889 |
|
890 |
+
#: adrotate.php:722
|
891 |
#, fuzzy
|
892 |
msgid "Keep your list up-to-date"
|
893 |
msgstr ""
|
894 |
"Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
|
895 |
"ovu listu na minimum !"
|
896 |
|
897 |
+
#: adrotate.php:723
|
898 |
#, fuzzy
|
899 |
msgid ""
|
900 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
901 |
"other characters are stripped out."
|
902 |
msgstr "HTML će biti skinut."
|
903 |
|
904 |
+
#: adrotate.php:724
|
905 |
msgid ""
|
906 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
907 |
"well."
|
909 |
"Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
|
910 |
"dobro."
|
911 |
|
912 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
913 |
msgid "Learn more about"
|
914 |
msgstr "Saznajte više o"
|
915 |
|
916 |
+
#: adrotate.php:724
|
917 |
msgid "user-agents"
|
918 |
msgstr "korisnici-agenti"
|
919 |
|
920 |
+
#: adrotate.php:733
|
921 |
msgid "Miscellaneous"
|
922 |
msgstr "Ostalo"
|
923 |
|
924 |
+
#: adrotate.php:736
|
925 |
msgid "Widget alignment"
|
926 |
msgstr "Widget alignment"
|
927 |
|
928 |
+
#: adrotate.php:737
|
929 |
msgid ""
|
930 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
931 |
"not always help!)"
|
933 |
"Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
|
934 |
"uvek ! )"
|
935 |
|
936 |
+
#: adrotate.php:740
|
937 |
#, fuzzy
|
938 |
msgid "Widget padding"
|
939 |
msgstr "Blokiraj punjenje"
|
940 |
|
941 |
+
#: adrotate.php:741
|
942 |
#, fuzzy
|
943 |
msgid ""
|
944 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
947 |
"Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
|
948 |
"uvek ! )"
|
949 |
|
950 |
+
#: adrotate.php:746 adrotate.php:757
|
951 |
#, fuzzy
|
952 |
msgid "NOTICE:"
|
953 |
msgstr ""
|
957 |
"rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
|
958 |
"primetite vaša baza podataka je spor , spor i ne reaguje ."
|
959 |
|
960 |
+
#: adrotate.php:747
|
961 |
msgid ""
|
962 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
963 |
"You need to add the following line to your wp-config.php near the bottom or "
|
965 |
"needs to be enabled in W3 Total Cache as well too."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: adrotate.php:751
|
969 |
msgid "W3 Total Caching"
|
970 |
msgstr "W3 Total Caching"
|
971 |
|
972 |
+
#: adrotate.php:752
|
973 |
msgid "Check this box if you use W3 Total Caching on your site."
|
974 |
msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
|
975 |
|
976 |
+
#: adrotate.php:758
|
977 |
msgid ""
|
978 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
979 |
"this function will not work. WP Super Cache has discontinued support for "
|
980 |
"dynamic content."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: adrotate.php:762
|
984 |
#, fuzzy
|
985 |
msgid "WP Super Cache"
|
986 |
msgstr ""
|
987 |
"To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
|
988 |
"osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
|
989 |
|
990 |
+
#: adrotate.php:763
|
991 |
#, fuzzy
|
992 |
msgid "Check this box if you use WP Super Cache on your site."
|
993 |
msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
|
994 |
|
995 |
+
#: adrotate.php:768
|
996 |
msgid ""
|
997 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
998 |
"to refresh the cache. This can take up to a week if not done manually."
|
1000 |
"To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
|
1001 |
"osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
|
1002 |
|
1003 |
+
#: adrotate.php:768
|
1004 |
msgid ""
|
1005 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1006 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
1008 |
"Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
|
1009 |
"koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
|
1010 |
|
1011 |
+
#: adrotate.php:772
|
1012 |
+
msgid "Javascript"
|
1013 |
+
msgstr ""
|
|
|
1014 |
|
1015 |
+
#: adrotate.php:775
|
1016 |
#, fuzzy
|
1017 |
msgid "Load jQuery"
|
1018 |
msgstr ""
|
1019 |
"Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
|
1020 |
"Default: 6."
|
1021 |
|
1022 |
+
#: adrotate.php:776
|
1023 |
#, fuzzy
|
1024 |
msgid ""
|
1025 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1026 |
"theme does not load jQuery already."
|
1027 |
msgstr "Praćenje klikom:"
|
1028 |
|
1029 |
+
#: adrotate.php:779
|
1030 |
#, fuzzy
|
1031 |
msgid "Load in footer?"
|
1032 |
msgstr ""
|
1033 |
"Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
|
1034 |
"Default: 6."
|
1035 |
|
1036 |
+
#: adrotate.php:780
|
1037 |
#, fuzzy
|
1038 |
msgid ""
|
1039 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1044 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
1045 |
"detalja !"
|
1046 |
|
1047 |
+
#: adrotate.php:788
|
1048 |
msgid "Maintenance"
|
1049 |
msgstr "Održavanje"
|
1050 |
|
1051 |
+
#: adrotate.php:789
|
1052 |
#, fuzzy
|
1053 |
msgid ""
|
1054 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1063 |
"rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
|
1064 |
"primetite vaša baza podataka je spor , spor i ne reaguje ."
|
1065 |
|
1066 |
+
#: adrotate.php:804 adrotate.php:806
|
1067 |
msgid "Optimize Database"
|
1068 |
msgstr "Optimizacija baze podataka"
|
1069 |
|
1070 |
+
#: adrotate.php:806
|
1071 |
msgid "You are about to optimize the AdRotate database."
|
1072 |
msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
|
1073 |
|
1074 |
+
#: adrotate.php:806
|
1075 |
msgid "Did you make a backup of your database?"
|
1076 |
msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
|
1077 |
|
1078 |
+
#: adrotate.php:806
|
1079 |
msgid ""
|
1080 |
"This may take a moment and may cause your website to respond slow "
|
1081 |
"temporarily!"
|
1083 |
"To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
|
1084 |
"sporo privremeno !"
|
1085 |
|
1086 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1087 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1088 |
msgid "OK to continue, CANCEL to stop."
|
1089 |
msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
|
1090 |
|
1091 |
+
#: adrotate.php:807
|
1092 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1093 |
msgstr "Čiste se režijski podaci u tabelama AdRotate ."
|
1094 |
|
1095 |
+
#: adrotate.php:808
|
1096 |
msgid ""
|
1097 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1098 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1100 |
"Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
|
1101 |
"Ovo može da varira od nule do nekoliko stotina KiB podataka ."
|
1102 |
|
1103 |
+
#: adrotate.php:812 adrotate.php:814
|
1104 |
msgid "Clean-up Database"
|
1105 |
msgstr "Čišćenje baze"
|
1106 |
|
1107 |
+
#: adrotate.php:814
|
1108 |
#, fuzzy
|
1109 |
msgid ""
|
1110 |
"You are about to clean up your database. This may delete expired schedules "
|
1111 |
"and older statistics."
|
1112 |
msgstr "Čišćenje baze"
|
1113 |
|
1114 |
+
#: adrotate.php:814
|
1115 |
#, fuzzy
|
1116 |
msgid "Are you sure you want to continue?"
|
1117 |
msgstr "Popunite ID tipa koji želite da prikažete!"
|
1118 |
|
1119 |
+
#: adrotate.php:814 adrotate.php:822
|
1120 |
#, fuzzy
|
1121 |
msgid "This might take a while and may slow down your site during this action!"
|
1122 |
msgstr ""
|
1123 |
"To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
|
1124 |
"sporo privremeno !"
|
1125 |
|
1126 |
+
#: adrotate.php:815
|
1127 |
#, fuzzy
|
1128 |
msgid "Delete stats older than 356 days (Optional)."
|
1129 |
msgstr "Uloga obrisati oglase i resetovanje ."
|
1130 |
|
1131 |
+
#: adrotate.php:816
|
1132 |
#, fuzzy
|
1133 |
msgid ""
|
1134 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1135 |
"occasions these records are faulty."
|
1136 |
msgstr "Prazni zapisi baze podataka uklanjaju"
|
1137 |
|
1138 |
+
#: adrotate.php:816
|
1139 |
#, fuzzy
|
1140 |
msgid ""
|
1141 |
"If you made an ad or group that does not save when you make it use this "
|
1142 |
"button to delete those empty records."
|
1143 |
msgstr "Vi ste na putu da izbrišete grupu"
|
1144 |
|
1145 |
+
#: adrotate.php:816
|
1146 |
#, fuzzy
|
1147 |
msgid ""
|
1148 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1149 |
"your site."
|
1150 |
msgstr "Čišćenje baze"
|
1151 |
|
1152 |
+
#: adrotate.php:820
|
1153 |
msgid "Re-evaluate Ads"
|
1154 |
msgstr "Ponovo ocenjeni oglasi"
|
1155 |
|
1156 |
+
#: adrotate.php:822
|
1157 |
msgid "Re-evaluate all ads"
|
1158 |
msgstr "Ponovo ocenite sve oglase"
|
1159 |
|
1160 |
+
#: adrotate.php:822
|
1161 |
msgid "You are about to check all ads for errors."
|
1162 |
msgstr "Vi ste o tome da proveri sve oglase za greške ."
|
1163 |
|
1164 |
+
#: adrotate.php:823
|
1165 |
msgid ""
|
1166 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1167 |
"in. Normally you should not need this feature."
|
1169 |
"Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
|
1170 |
"bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
|
1171 |
|
1172 |
+
#: adrotate.php:827
|
1173 |
msgid ""
|
1174 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1175 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
1186 |
"već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
|
1187 |
"nijevažna stvar u svakom slučaju ."
|
1188 |
|
1189 |
+
#: adrotate.php:835
|
1190 |
msgid "Troubleshooting"
|
1191 |
msgstr "Rešavanje problema"
|
1192 |
|
1193 |
+
#: adrotate.php:838
|
1194 |
msgid "Current version:"
|
1195 |
msgstr "Trenutna verzija :"
|
1196 |
|
1197 |
+
#: adrotate.php:839
|
1198 |
msgid "Previous version:"
|
1199 |
msgstr "Prethodna verzija :"
|
1200 |
|
1201 |
+
#: adrotate.php:842
|
1202 |
msgid "Current database version:"
|
1203 |
msgstr "Trenutna verzija baze podataka :"
|
1204 |
|
1205 |
+
#: adrotate.php:843
|
1206 |
msgid "Previous database version:"
|
1207 |
msgstr "Prethodna verzija baze podataka :"
|
1208 |
|
1209 |
+
#: adrotate.php:846
|
1210 |
#, fuzzy
|
1211 |
msgid "Ad evaluation next run:"
|
1212 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
1213 |
|
1214 |
+
#: adrotate.php:847 adrotate.php:851
|
1215 |
msgid "Not scheduled!"
|
1216 |
msgstr "Nije planirano:"
|
1217 |
|
1218 |
+
#: adrotate.php:850
|
1219 |
msgid "Clean Trackerdata next run:"
|
1220 |
msgstr "Očistite Trackerdata u sledećem pokušaju :"
|
1221 |
|
1222 |
+
#: adrotate.php:854
|
1223 |
#, fuzzy
|
1224 |
msgid "Current status of adverts"
|
1225 |
msgstr "Trenutni raspored"
|
1226 |
|
1227 |
+
#: adrotate.php:855
|
1228 |
#, fuzzy
|
1229 |
msgid "Normal"
|
1230 |
msgstr ""
|
1233 |
"To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
|
1234 |
"normalnu upotrebu oni treba da budu levo neprovereni "
|
1235 |
|
1236 |
+
#: adrotate.php:855
|
1237 |
#, fuzzy
|
1238 |
msgid "Error"
|
1239 |
msgstr "Nepoznati error se ukazao."
|
1240 |
|
1241 |
+
#: adrotate.php:855
|
1242 |
#, fuzzy
|
1243 |
msgid "Expired"
|
1244 |
msgstr "Isteklo je."
|
1245 |
|
1246 |
+
#: adrotate.php:855
|
1247 |
#, fuzzy
|
1248 |
msgid "Expires Soon"
|
1249 |
msgstr "Ističe uskoro."
|
1250 |
|
1251 |
+
#: adrotate.php:855
|
1252 |
#, fuzzy
|
1253 |
msgid "Unknown Status"
|
1254 |
msgstr "Nepoznati error se ukazao."
|
1255 |
|
1256 |
+
#: adrotate.php:858
|
1257 |
msgid ""
|
1258 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1259 |
"developers to review saved settings or how ads are selected. These can be "
|
1265 |
"To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
|
1266 |
"normalnu upotrebu oni treba da budu levo neprovereni "
|
1267 |
|
1268 |
+
#: adrotate.php:862
|
1269 |
msgid "Developer Debug"
|
1270 |
msgstr "Debug za programera"
|
1271 |
|
1272 |
+
#: adrotate.php:864
|
1273 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1274 |
msgstr ""
|
1275 |
"Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
|
1276 |
"izlaza ."
|
1277 |
|
1278 |
+
#: adrotate.php:865
|
1279 |
msgid "Show all settings, dashboard routines and related values."
|
1280 |
msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
|
1281 |
|
1282 |
+
#: adrotate.php:866
|
1283 |
msgid "Show array of all userroles and capabilities."
|
1284 |
msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
|
1285 |
|
1286 |
+
#: adrotate.php:867
|
1287 |
msgid "Review saved advertisers! Visible to advertisers."
|
1288 |
msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
|
1289 |
|
1290 |
+
#: adrotate.php:868
|
1291 |
#, fuzzy
|
1292 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1293 |
msgstr ""
|
1294 |
"Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
|
1295 |
"samo izdavačima ."
|
1296 |
|
1297 |
+
#: adrotate.php:869
|
1298 |
#, fuzzy
|
1299 |
msgid ""
|
1300 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1301 |
"clicktracking."
|
1302 |
msgstr "Pratite klikove i prikaze ."
|
1303 |
|
1304 |
+
#: adrotate.php:870
|
1305 |
msgid "Temporarily disable encryption on the redirect url."
|
1306 |
msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
|
1307 |
|
1349 |
msgid "AdRotate News and Developer Blog"
|
1350 |
msgstr "AdRotate novosti i blog za programere"
|
1351 |
|
1352 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1353 |
#, fuzzy
|
1354 |
msgid "Buy AdRotate Professional"
|
1355 |
msgstr "Kupite odmah"
|
1356 |
|
1357 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1358 |
msgid "Singe License"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1362 |
#, fuzzy
|
1363 |
msgid "For one WordPress installation."
|
1364 |
msgstr "Instalacije"
|
1365 |
|
1366 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1367 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1368 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1369 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1370 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1371 |
#, fuzzy
|
1372 |
msgid "Buy now"
|
1373 |
msgstr "Kupite odmah"
|
1374 |
|
1375 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1376 |
msgid "Duo License"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1380 |
#, fuzzy
|
1381 |
msgid "For two WordPress installations."
|
1382 |
msgstr "Instalacije"
|
1383 |
|
1384 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1385 |
msgid "Multi License"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1389 |
#, fuzzy
|
1390 |
msgid " For up to five WordPress installations."
|
1391 |
msgstr "Instalacije"
|
1392 |
|
1393 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1394 |
#, fuzzy
|
1395 |
msgid "Developer License"
|
1396 |
msgstr "Debug za programera"
|
1397 |
|
1398 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1399 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1403 |
msgid "Network License"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1407 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1411 |
msgid "Compare licenses"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1415 |
msgid "Not sure which license is for you? Compare them..."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1419 |
#, fuzzy
|
1420 |
msgid "All Licenses"
|
1421 |
msgstr "Ponovo ocenite sve oglase"
|
1422 |
|
1423 |
+
#: dashboard/adrotate-info.php:171
|
1424 |
#, fuzzy
|
1425 |
msgid "Get more features with AdRotate Pro"
|
1426 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
1427 |
|
1428 |
+
#: dashboard/adrotate-info.php:174
|
1429 |
msgid ""
|
1430 |
"Benefit from extra features to reinforce your income with advertising "
|
1431 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1432 |
"Pro offers on top of the trusted features included in the free version."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: dashboard/adrotate-info.php:175
|
1436 |
#, fuzzy
|
1437 |
msgid "or go to the"
|
1438 |
msgstr "Kreni"
|
1439 |
|
1440 |
+
#: dashboard/adrotate-info.php:179
|
1441 |
msgid "Support AdRotate"
|
1442 |
msgstr "AdRotate podrška"
|
1443 |
|
1444 |
+
#: dashboard/adrotate-info.php:182
|
1445 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1446 |
msgstr "Vaš poklon će obezbediti kontinuirani razvoj AdRotate !"
|
1447 |
|
1448 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1449 |
msgid "AdRotate is brought to you by"
|
1450 |
msgstr "AdRotate vam je omogućio"
|
1451 |
|
1452 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1453 |
msgid ""
|
1454 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1455 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
1460 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
1461 |
"detalja !"
|
1462 |
|
1463 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1464 |
msgid "Find out more"
|
1465 |
msgstr "Saznajte više"
|
1466 |
|
1467 |
+
#: dashboard/adrotate-info.php:193
|
1468 |
msgid "Follow"
|
1469 |
msgstr ""
|
1470 |
|
2019 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2020 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2021 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
2022 |
msgid "Clicks"
|
2023 |
msgstr "Klikovi"
|
2024 |
|
2127 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2128 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2129 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2130 |
#, fuzzy
|
2131 |
msgid "Start / End"
|
2132 |
msgstr ""
|
2137 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2138 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2139 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2140 |
msgid "Title"
|
2141 |
msgstr "Naslov"
|
2142 |
|
2144 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2145 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2146 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2147 |
msgid "CTR"
|
2148 |
msgstr "CTR"
|
2149 |
|
2216 |
|
2217 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2218 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2219 |
msgid "Weight"
|
2220 |
msgstr "Težina"
|
2221 |
|
2222 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2223 |
#, fuzzy
|
2224 |
msgid "Shown"
|
2225 |
msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
|
2228 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2229 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2230 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2231 |
msgid "Today"
|
2232 |
msgstr "Danas"
|
2233 |
|
2625 |
msgid "Statistics for group"
|
2626 |
msgstr "Sttistike za"
|
2627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2628 |
#, fuzzy
|
2629 |
+
#~ msgid "AdRotate Server"
|
2630 |
+
#~ msgstr "AdRotate promocije"
|
2631 |
|
|
|
|
|
2632 |
#, fuzzy
|
2633 |
+
#~ msgid "Overview"
|
2634 |
+
#~ msgstr "Mesečni pregled klikova i utisaka"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2635 |
|
|
|
2636 |
#, fuzzy
|
2637 |
+
#~ msgid "Javascript Libraries"
|
2638 |
+
#~ msgstr "HTML / JavaScript dozvoljeno , koristite pažljivo !"
|
2639 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2640 |
#, fuzzy
|
2641 |
+
#~ msgid "Added / Updated"
|
2642 |
+
#~ msgstr "Update-ovanje blokiranja"
|
|
|
|
|
|
|
|
|
|
|
|
|
2643 |
|
|
|
2644 |
#, fuzzy
|
2645 |
+
#~ msgid "No ads received yet!"
|
2646 |
+
#~ msgstr "Nijedan oglas još nje stvoren!"
|
2647 |
|
|
|
|
|
|
|
|
|
|
|
2648 |
#, fuzzy
|
2649 |
+
#~ msgid "Updated"
|
2650 |
+
#~ msgstr "Update-ovanje blokiranja"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2651 |
|
2652 |
+
#~ msgid "Show from"
|
2653 |
+
#~ msgstr "Prikazati iz"
|
|
|
2654 |
|
2655 |
+
#~ msgid "Show until"
|
2656 |
+
#~ msgstr "Prikazati do"
|
|
|
|
|
|
|
2657 |
|
2658 |
+
#, fuzzy
|
2659 |
+
#~ msgid "AdRotate Server Settings"
|
2660 |
+
#~ msgstr "AdRotate postavke"
|
2661 |
|
2662 |
+
#, fuzzy
|
2663 |
+
#~ msgid "Status"
|
2664 |
+
#~ msgstr "Statistika"
|
|
|
|
|
2665 |
|
2666 |
+
#, fuzzy
|
2667 |
+
#~ msgid "Not linked - No adverts will be synced."
|
2668 |
+
#~ msgstr "Oglasi"
|
2669 |
|
|
|
2670 |
#, fuzzy
|
2671 |
+
#~ msgid "Unlink from server"
|
2672 |
+
#~ msgstr "Prikazati iz"
|
2673 |
|
2674 |
#, fuzzy
|
2675 |
#~ msgid "AdRotate Website"
|
language/adrotate-sv_SV.mo
CHANGED
Binary file
|
language/adrotate-sv_SV.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
@@ -13,23 +13,23 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
-
#: adrotate-output.php:
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "Åh nej! Något gick fel!"
|
31 |
|
32 |
-
#: adrotate-output.php:
|
33 |
msgid ""
|
34 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
35 |
"Verify if the url used is valid or log in via your browser."
|
@@ -38,18 +38,18 @@ msgstr ""
|
|
38 |
"klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
|
39 |
"via webbläsaren."
|
40 |
|
41 |
-
#: adrotate-output.php:
|
42 |
msgid ""
|
43 |
"If you have received the url you want to visit via email, you are being "
|
44 |
"tricked!"
|
45 |
msgstr ""
|
46 |
"Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
|
47 |
|
48 |
-
#: adrotate-output.php:
|
49 |
msgid "Contact support if the issue persists:"
|
50 |
msgstr "Kontakta support om problemet kvarstår:"
|
51 |
|
52 |
-
#: adrotate-output.php:
|
53 |
msgid ""
|
54 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
55 |
"restrictions or does not exist!"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
58 |
"geolokalisering restriktioner eller finns inte!"
|
59 |
|
60 |
-
#: adrotate-output.php:
|
61 |
msgid ""
|
62 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
63 |
"restrictions!"
|
@@ -65,7 +65,7 @@ msgstr ""
|
|
65 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
66 |
"geolokalisering begränsningar!"
|
67 |
|
68 |
-
#: adrotate-output.php:
|
69 |
msgid ""
|
70 |
"Either there are no banners, they are disabled or none qualified for this "
|
71 |
"location!"
|
@@ -73,19 +73,19 @@ msgstr ""
|
|
73 |
"Antingen finns det inga banderoller, de har inaktiverats eller inga "
|
74 |
"kvalificerade för den här platsen!"
|
75 |
|
76 |
-
#: adrotate-output.php:
|
77 |
msgid "Error, no Ad ID set! Check your syntax!"
|
78 |
msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
|
79 |
|
80 |
-
#: adrotate-output.php:
|
81 |
msgid "Error, no group ID set! Check your syntax!"
|
82 |
msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
|
83 |
|
84 |
-
#: adrotate-output.php:
|
85 |
msgid "Error, group does not exist! Check your syntax!"
|
86 |
msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
|
87 |
|
88 |
-
#: adrotate-output.php:
|
89 |
msgid ""
|
90 |
"There was an error locating the database tables for AdRotate. Please "
|
91 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -93,182 +93,182 @@ msgstr ""
|
|
93 |
"Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
|
94 |
"avaktivera och återaktivera AdRotate från plugin sidan!"
|
95 |
|
96 |
-
#: adrotate-output.php:
|
97 |
msgid "If this does not solve the issue please seek support at"
|
98 |
msgstr "Om detta inte löser problemet vänligen söka stöd hos"
|
99 |
|
100 |
-
#: adrotate-output.php:
|
101 |
msgid "An unknown error occured."
|
102 |
msgstr "Ett okänt fel uppstod."
|
103 |
|
104 |
-
#: adrotate-output.php:
|
105 |
msgid "active ad(s) expired."
|
106 |
msgstr "aktiv annons (er) gått ut."
|
107 |
|
108 |
-
#: adrotate-output.php:
|
109 |
msgid "Take action now"
|
110 |
msgstr "Agera nu"
|
111 |
|
112 |
-
#: adrotate-output.php:
|
113 |
msgid "active ad(s) are about to expire."
|
114 |
msgstr "aktiv annons(er) är på väg att löpa ut."
|
115 |
|
116 |
-
#: adrotate-output.php:
|
117 |
msgid "Check it out"
|
118 |
msgstr "Kolla in det"
|
119 |
|
120 |
-
#: adrotate-output.php:
|
121 |
msgid "active ad(s) with configuration errors."
|
122 |
msgstr "aktiv annons(er) med konfigurationsfel."
|
123 |
|
124 |
-
#: adrotate-output.php:
|
125 |
msgid "Solve this"
|
126 |
msgstr "Lös det här"
|
127 |
|
128 |
-
#: adrotate-output.php:
|
129 |
msgid "ad(s) expired."
|
130 |
msgstr "annons(er) gått ut."
|
131 |
|
132 |
-
#: adrotate-output.php:
|
133 |
msgid "ad(s) are about to expire."
|
134 |
msgstr "annons(er) är på väg att löpa ut."
|
135 |
|
136 |
-
#: adrotate-output.php:
|
137 |
msgid "ad(s) with configuration errors."
|
138 |
msgstr "annons (er) med konfigurationsfel."
|
139 |
|
140 |
-
#: adrotate-output.php:
|
141 |
msgid "Fix this as soon as possible"
|
142 |
msgstr "Lös det här så fort som möjligt"
|
143 |
|
144 |
-
#: adrotate-output.php:
|
145 |
#, fuzzy
|
146 |
msgid "Learn More"
|
147 |
msgstr "Läs mer om"
|
148 |
|
149 |
-
#: adrotate-output.php:
|
150 |
msgid ""
|
151 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
152 |
"to the <strong>PRO</strong> version"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: adrotate-output.php:
|
156 |
msgid "Get more features to even better run your advertising campaigns."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: adrotate-output.php:
|
160 |
#, fuzzy
|
161 |
msgid "Thank you for your consideration!"
|
162 |
msgstr "Tack. Din licens är nu aktiv"
|
163 |
|
164 |
-
#: adrotate-output.php:
|
165 |
msgid ""
|
166 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
167 |
"Pro is in this menu. Check out the"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: adrotate-output.php:
|
171 |
msgid "manuals"
|
172 |
msgstr "manual"
|
173 |
|
174 |
-
#: adrotate-output.php:
|
175 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
176 |
msgid "and"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid "forums"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: adrotate-output.php:
|
184 |
#, fuzzy
|
185 |
msgid "Useful Links"
|
186 |
msgstr "Nyttiga länkar"
|
187 |
|
188 |
-
#: adrotate-output.php:
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
#, fuzzy
|
194 |
msgid "AdRotate Page"
|
195 |
msgstr "AdRotate Pro"
|
196 |
|
197 |
-
#: adrotate-output.php:
|
198 |
#, fuzzy
|
199 |
msgid "Getting Started With AdRotate"
|
200 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
201 |
|
202 |
-
#: adrotate-output.php:
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate manuals"
|
205 |
msgstr "AdRotate Information"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
#, fuzzy
|
209 |
msgid "AdRotate Support Forum"
|
210 |
msgstr "AdRotate butik"
|
211 |
|
212 |
-
#: adrotate-output.php:
|
213 |
msgid "WordPress.org Forum"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
#, fuzzy
|
218 |
msgid "AdRotate Website."
|
219 |
msgstr "AdRotate butik"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
#, fuzzy
|
223 |
msgid "AdRotate Getting Started."
|
224 |
msgstr "AdRotate Inställningar"
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid "AdRotate Knoweledge base and manuals."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
#, fuzzy
|
232 |
msgid "AdRotate Website Forum."
|
233 |
msgstr "AdRotate butik"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "WordPress.org Forum."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
#, fuzzy
|
241 |
msgid "Help AdRotate Grow"
|
242 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
msgid "Brought to you by"
|
246 |
msgstr "Presenteras av"
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
msgid ""
|
250 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
251 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
msgid "If you find AdRotate useful please leave your honest"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
msgid "rating"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
#, fuzzy
|
264 |
msgid "review"
|
265 |
msgstr "Betygsätt och omdöme"
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid ""
|
273 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
274 |
"out more about what I can do for you!"
|
@@ -276,28 +276,28 @@ msgstr ""
|
|
276 |
"Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
|
277 |
"mer om vad jag kan göra för dig!"
|
278 |
|
279 |
-
#: adrotate-output.php:
|
280 |
msgid "Visit the"
|
281 |
msgstr "Besök"
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid "website"
|
285 |
msgstr "hemsida"
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid "Available in AdRotate Pro"
|
289 |
msgstr "Tillgänglig i AdRotate Pro"
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
#, fuzzy
|
293 |
msgid "More information..."
|
294 |
msgstr "Mer info"
|
295 |
|
296 |
-
#: adrotate-output.php:
|
297 |
msgid "This feature is available in AdRotate Pro"
|
298 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
#, fuzzy
|
302 |
msgid "Learn more"
|
303 |
msgstr "Läs mer om"
|
@@ -427,71 +427,71 @@ msgstr "Allmän info"
|
|
427 |
msgid "AdRotate Pro"
|
428 |
msgstr "AdRotate Pro"
|
429 |
|
430 |
-
#: adrotate.php:
|
431 |
msgid "Manage Ads"
|
432 |
msgstr "Hantera Annonser"
|
433 |
|
434 |
-
#: adrotate.php:
|
435 |
msgid "Manage Groups"
|
436 |
msgstr "Hantera Grupper"
|
437 |
|
438 |
-
#: adrotate.php:
|
439 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
440 |
#, fuzzy
|
441 |
msgid "Manage Schedules"
|
442 |
msgstr "Hantera"
|
443 |
|
444 |
-
#: adrotate.php:
|
445 |
#, fuzzy
|
446 |
msgid "Manage Media"
|
447 |
msgstr "Media:"
|
448 |
|
449 |
-
#: adrotate.php:
|
450 |
msgid "Settings"
|
451 |
msgstr "Inställningar"
|
452 |
|
453 |
-
#: adrotate.php:
|
454 |
msgid "AdRotate Info"
|
455 |
msgstr "AdRotate Information"
|
456 |
|
457 |
-
#: adrotate.php:
|
458 |
#, fuzzy
|
459 |
msgid "AdRotate Professional"
|
460 |
msgstr "AdRotate"
|
461 |
|
462 |
-
#: adrotate.php:
|
463 |
msgid "Ad Management"
|
464 |
msgstr "Annonshantering"
|
465 |
|
466 |
-
#: adrotate.php:
|
467 |
msgid "Ad created"
|
468 |
msgstr "Annons skapad"
|
469 |
|
470 |
-
#: adrotate.php:
|
471 |
msgid "Ad updated"
|
472 |
msgstr "Annons uppdaterad"
|
473 |
|
474 |
-
#: adrotate.php:
|
475 |
msgid "Ad(s) deleted"
|
476 |
msgstr "Annons(er) raderas"
|
477 |
|
478 |
-
#: adrotate.php:
|
479 |
msgid "Ad(s) statistics reset"
|
480 |
msgstr "Annons(er) statistik återställning"
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
msgid "Ad(s) renewed"
|
484 |
msgstr "Annons(er) förnyas"
|
485 |
|
486 |
-
#: adrotate.php:
|
487 |
msgid "Ad(s) deactivated"
|
488 |
msgstr "Annons(er) avaktiveras"
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
msgid "Ad(s) activated"
|
492 |
msgstr "Annons(er) aktiveras"
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
msgid ""
|
496 |
"The ad was saved but has an issue which might prevent it from working "
|
497 |
"properly. Review the yellow marked ad."
|
@@ -499,60 +499,60 @@ msgstr ""
|
|
499 |
"Annonsen har sparats, men har en fråga som skulle kunna hindra den från att "
|
500 |
"fungera korrekt. Granska den gula markerade annons."
|
501 |
|
502 |
-
#: adrotate.php:
|
503 |
#, fuzzy
|
504 |
msgid "Export created"
|
505 |
msgstr "export skapad"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "Action prohibited"
|
509 |
msgstr "Åtgärden förbjuden"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "No data found in selected time period"
|
513 |
msgstr "Inga data finns i vald tidsperiod"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
msgid "Manage"
|
517 |
msgstr "Hantera"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "Add New"
|
521 |
msgstr "Lägg till ny"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
msgid "Group Management"
|
525 |
msgstr "Grupp Hantering"
|
526 |
|
527 |
-
#: adrotate.php:
|
528 |
msgid "Group created"
|
529 |
msgstr "Grupp skapad"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
msgid "Group updated"
|
533 |
msgstr "Grupp uppdaterad"
|
534 |
|
535 |
-
#: adrotate.php:
|
536 |
msgid "Group deleted"
|
537 |
msgstr "Grupp raderad"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
msgid "Group including it's Ads deleted"
|
541 |
msgstr "Grupp inklusive dess annonser raderade"
|
542 |
|
543 |
-
#: adrotate.php:
|
544 |
#, fuzzy
|
545 |
msgid "Schedule Management available in AdRotate Pro"
|
546 |
msgstr "Tillgänglig i AdRotate Pro"
|
547 |
|
548 |
-
#: adrotate.php:
|
549 |
#, fuzzy
|
550 |
msgid ""
|
551 |
"Schedule management and multiple schedules per advert is available in "
|
552 |
"AdRotate Pro."
|
553 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
554 |
|
555 |
-
#: adrotate.php:
|
556 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
557 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
558 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
@@ -561,334 +561,316 @@ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
|
561 |
msgid "More information"
|
562 |
msgstr "Mer info"
|
563 |
|
564 |
-
#: adrotate.php:
|
565 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
566 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
567 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
568 |
msgid "Bulk Actions"
|
569 |
msgstr "Massåtgärder"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
573 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
574 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
575 |
msgid "Go"
|
576 |
msgstr "Gå"
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
580 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
581 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
582 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
583 |
-
#: dashboard/server/adrotate-active.php:18
|
584 |
-
#: dashboard/server/adrotate-error.php:18
|
585 |
msgid "ID"
|
586 |
msgstr "ID"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
#, fuzzy
|
590 |
msgid "Start"
|
591 |
msgstr "Starttid (hh: mm):"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
#, fuzzy
|
595 |
msgid "End"
|
596 |
msgstr "Avsluta tid (hh: mm):"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
600 |
msgid "Ads"
|
601 |
msgstr "Annonser"
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
msgid "Max Clicks"
|
605 |
msgstr "Max Klick"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
msgid "Max Impressions"
|
609 |
msgstr "Max Intryck"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
#, fuzzy
|
613 |
msgid "No schedules created yet!"
|
614 |
msgstr "Inga block har skapats än!"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
#, fuzzy
|
618 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
619 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
#, fuzzy
|
623 |
msgid "Upgrade today!"
|
624 |
msgstr "i dag"
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
628 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
629 |
msgid "Expires soon."
|
630 |
msgstr "Utgår inom kort."
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
634 |
msgid "Has expired."
|
635 |
msgstr "Har gått ut."
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
#, fuzzy
|
639 |
msgid "Media Management available in AdRotate Pro"
|
640 |
msgstr "Tillgänglig i AdRotate Pro"
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
msgid ""
|
644 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
645 |
"especially useful if you use responsive adverts with multiple images."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: adrotate.php:
|
649 |
#, fuzzy
|
650 |
msgid "Media uploading and management is available in AdRotate Pro."
|
651 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
#, fuzzy
|
655 |
msgid "Upload new banner image"
|
656 |
msgstr "Banner image:"
|
657 |
|
658 |
-
#: adrotate.php:
|
659 |
#, fuzzy
|
660 |
msgid "Accepted files are:"
|
661 |
msgstr "Godkända filer är:"
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
#, fuzzy
|
665 |
msgid "Maximum size is 512Kb."
|
666 |
msgstr "Maximal storlek är 512Kb."
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "Important:"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid ""
|
674 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
675 |
"spaces with a - or _."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: adrotate.php:
|
679 |
msgid ""
|
680 |
"For responsive adverts make sure the filename is in the following format; "
|
681 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid ""
|
686 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
687 |
"filename instead of \".full\" for the various viewports."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: adrotate.php:
|
691 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
692 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
693 |
msgid "Example:"
|
694 |
msgstr "Exempel:"
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
msgid ""
|
698 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
699 |
"for different viewports."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: adrotate.php:
|
703 |
#, fuzzy
|
704 |
msgid "Upload image"
|
705 |
msgstr "Överföring ofullständig."
|
706 |
|
707 |
-
#: adrotate.php:
|
708 |
msgid "Available banner images in"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: adrotate.php:
|
712 |
msgid "Name"
|
713 |
msgstr "Namn"
|
714 |
|
715 |
-
#: adrotate.php:
|
716 |
#, fuzzy
|
717 |
msgid "Actions"
|
718 |
msgstr "Massåtgärder"
|
719 |
|
720 |
-
#: adrotate.php:
|
721 |
-
#: adrotate.php:
|
722 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
723 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
724 |
msgid "Delete"
|
725 |
msgstr "Radera"
|
726 |
|
727 |
-
#: adrotate.php:
|
728 |
msgid ""
|
729 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: adrotate.php:
|
733 |
#, fuzzy
|
734 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
735 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
736 |
|
737 |
-
#: adrotate.php:
|
738 |
-
#, fuzzy
|
739 |
-
msgid "AdRotate Server"
|
740 |
-
msgstr "AdRotate"
|
741 |
-
|
742 |
-
#: adrotate.php:608
|
743 |
-
msgid ""
|
744 |
-
"AdRotate server is currently in development and these menus are not "
|
745 |
-
"functional yet."
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: adrotate.php:612
|
749 |
-
#, fuzzy
|
750 |
-
msgid "Overview"
|
751 |
-
msgstr "Månads översikt av klick och visningar"
|
752 |
-
|
753 |
-
#: adrotate.php:708
|
754 |
msgid "AdRotate Settings"
|
755 |
msgstr "AdRotate Inställningar"
|
756 |
|
757 |
-
#: adrotate.php:
|
758 |
msgid "Settings saved"
|
759 |
msgstr "Inställningar sparas"
|
760 |
|
761 |
-
#: adrotate.php:
|
762 |
msgid "Database optimized"
|
763 |
msgstr "Databas optimerad"
|
764 |
|
765 |
-
#: adrotate.php:
|
766 |
msgid "Database repaired"
|
767 |
msgstr "Databas reparation"
|
768 |
|
769 |
-
#: adrotate.php:
|
770 |
msgid "Ads evaluated and statuses have been corrected where required"
|
771 |
msgstr "annonser utvärderas och status har rättats till vid behov"
|
772 |
|
773 |
-
#: adrotate.php:
|
774 |
msgid "Empty database records removed"
|
775 |
msgstr "Tomma databasposter tas bort"
|
776 |
|
777 |
-
#: adrotate.php:
|
778 |
msgid "Database can only be optimized or cleaned once every hour"
|
779 |
msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
|
780 |
|
781 |
-
#: adrotate.php:
|
782 |
msgid "Access Rights"
|
783 |
msgstr "Tillträde"
|
784 |
|
785 |
-
#: adrotate.php:
|
786 |
msgid "Who has access to what?"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: adrotate.php:
|
790 |
msgid "Manage/Add/Edit adverts"
|
791 |
msgstr "Hantera / Lägg till / redigera annonser"
|
792 |
|
793 |
-
#: adrotate.php:
|
794 |
msgid "Role to see and add/edit ads."
|
795 |
msgstr "Role för att se och lägga till / redigera annonser."
|
796 |
|
797 |
-
#: adrotate.php:
|
798 |
msgid "Delete/Reset adverts"
|
799 |
msgstr "Radera / Reset annonser"
|
800 |
|
801 |
-
#: adrotate.php:
|
802 |
msgid "Role to delete ads and reset stats."
|
803 |
msgstr "Role att ta bort annonser och återställ statistik."
|
804 |
|
805 |
-
#: adrotate.php:
|
806 |
msgid "Manage/Add/Edit groups"
|
807 |
msgstr "Hantera / Lägg till / Redigera grupper"
|
808 |
|
809 |
-
#: adrotate.php:
|
810 |
msgid "Role to see and add/edit groups."
|
811 |
msgstr "Role för att se och lägga till / redigera grupp."
|
812 |
|
813 |
-
#: adrotate.php:
|
814 |
msgid "Delete groups"
|
815 |
msgstr "Ta bort grupper"
|
816 |
|
817 |
-
#: adrotate.php:
|
818 |
msgid "Role to delete groups."
|
819 |
msgstr "Role att ta bort grupper."
|
820 |
|
821 |
-
#: adrotate.php:
|
822 |
-
#: adrotate.php:
|
823 |
msgid "Update Options"
|
824 |
msgstr "Update Options"
|
825 |
|
826 |
-
#: adrotate.php:
|
827 |
msgid "Statistics"
|
828 |
msgstr "Statistik"
|
829 |
|
830 |
-
#: adrotate.php:
|
831 |
#, fuzzy
|
832 |
msgid "Enable stats"
|
833 |
msgstr "Statistik"
|
834 |
|
835 |
-
#: adrotate.php:
|
836 |
msgid "Track clicks and impressions."
|
837 |
msgstr "Spåra klick och visningar."
|
838 |
|
839 |
-
#: adrotate.php:
|
840 |
#, fuzzy
|
841 |
msgid "Disabling this also disables click and impression limits on schedules."
|
842 |
msgstr ""
|
843 |
"Inaktivera detta också inaktiverar klick och visningar gränser för scheman "
|
844 |
"och inaktiverar tidsramar."
|
845 |
|
846 |
-
#: adrotate.php:
|
847 |
msgid "Impressions timer"
|
848 |
msgstr "Intryck timer"
|
849 |
|
850 |
-
#: adrotate.php:
|
851 |
msgid "Seconds."
|
852 |
msgstr "Sekunder."
|
853 |
|
854 |
-
#: adrotate.php:
|
855 |
#, fuzzy
|
856 |
msgid "Default: 60."
|
857 |
msgstr "Default"
|
858 |
|
859 |
-
#: adrotate.php:
|
860 |
#, fuzzy
|
861 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
862 |
msgstr ""
|
863 |
"Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
|
864 |
|
865 |
-
#: adrotate.php:
|
866 |
#, fuzzy
|
867 |
msgid "Clicks timer"
|
868 |
msgstr "Intryck timer"
|
869 |
|
870 |
-
#: adrotate.php:
|
871 |
#, fuzzy
|
872 |
msgid "Default: 86400."
|
873 |
msgstr "Default"
|
874 |
|
875 |
-
#: adrotate.php:
|
876 |
#, fuzzy
|
877 |
msgid ""
|
878 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
879 |
msgstr ""
|
880 |
"Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
|
881 |
|
882 |
-
#: adrotate.php:
|
883 |
#, fuzzy
|
884 |
msgid "Bot filter"
|
885 |
msgstr "User-Agent Filter"
|
886 |
|
887 |
-
#: adrotate.php:
|
888 |
msgid "User-Agent Filter"
|
889 |
msgstr "User-Agent Filter"
|
890 |
|
891 |
-
#: adrotate.php:
|
892 |
msgid ""
|
893 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
894 |
"prevent impressions and clicks counted on them."
|
@@ -896,7 +878,7 @@ msgstr ""
|
|
896 |
"En kommaseparerad lista med sökord. Filtrera bort bots / sökrobotar / user-"
|
897 |
"agents. För att förhindra att visningar och klick räknas på dem."
|
898 |
|
899 |
-
#: adrotate.php:
|
900 |
msgid ""
|
901 |
"Keep in mind that this might give false positives. The word 'google' also "
|
902 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
@@ -904,11 +886,11 @@ msgstr ""
|
|
904 |
"Tänk på att detta kan ge falska positiva. Ordet \"google\" träffar "
|
905 |
"\"googlebot\", men inte vice versa. Så var försiktig!"
|
906 |
|
907 |
-
#: adrotate.php:
|
908 |
msgid "Keep your list up-to-date"
|
909 |
msgstr "Håll din lista up-to-date"
|
910 |
|
911 |
-
#: adrotate.php:
|
912 |
msgid ""
|
913 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
914 |
"other characters are stripped out."
|
@@ -916,30 +898,30 @@ msgstr ""
|
|
916 |
"Använd endast ord med alfanumeriska tecken, [- _] tillåts också. Alla andra "
|
917 |
"tecken avskalade ut."
|
918 |
|
919 |
-
#: adrotate.php:
|
920 |
msgid ""
|
921 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
922 |
"well."
|
923 |
msgstr ""
|
924 |
"Ytterligare till listan anges här, tomma user-agents blockerades också."
|
925 |
|
926 |
-
#: adrotate.php:
|
927 |
msgid "Learn more about"
|
928 |
msgstr "Läs mer om"
|
929 |
|
930 |
-
#: adrotate.php:
|
931 |
msgid "user-agents"
|
932 |
msgstr "user-agents"
|
933 |
|
934 |
-
#: adrotate.php:
|
935 |
msgid "Miscellaneous"
|
936 |
msgstr "Diverse"
|
937 |
|
938 |
-
#: adrotate.php:
|
939 |
msgid "Widget alignment"
|
940 |
msgstr "widget inriktnings"
|
941 |
|
942 |
-
#: adrotate.php:
|
943 |
msgid ""
|
944 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
945 |
"not always help!)"
|
@@ -947,11 +929,11 @@ msgstr ""
|
|
947 |
"Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
|
948 |
"alltid hjälper!)"
|
949 |
|
950 |
-
#: adrotate.php:
|
951 |
msgid "Widget padding"
|
952 |
msgstr "widget padding"
|
953 |
|
954 |
-
#: adrotate.php:
|
955 |
msgid ""
|
956 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
957 |
"not always work!)"
|
@@ -959,12 +941,12 @@ msgstr ""
|
|
959 |
"Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
|
960 |
"widgets. (Fungerar inte alltid!)"
|
961 |
|
962 |
-
#: adrotate.php:
|
963 |
#, fuzzy
|
964 |
msgid "NOTICE:"
|
965 |
msgstr "Meddelande"
|
966 |
|
967 |
-
#: adrotate.php:
|
968 |
msgid ""
|
969 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
970 |
"You need to add the following line to your wp-config.php near the bottom or "
|
@@ -972,30 +954,30 @@ msgid ""
|
|
972 |
"needs to be enabled in W3 Total Cache as well too."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: adrotate.php:
|
976 |
msgid "W3 Total Caching"
|
977 |
msgstr "W3 Total Caching"
|
978 |
|
979 |
-
#: adrotate.php:
|
980 |
msgid "Check this box if you use W3 Total Caching on your site."
|
981 |
msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
|
982 |
|
983 |
-
#: adrotate.php:
|
984 |
msgid ""
|
985 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
986 |
"this function will not work. WP Super Cache has discontinued support for "
|
987 |
"dynamic content."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: adrotate.php:
|
991 |
msgid "WP Super Cache"
|
992 |
msgstr "WP Super Cache"
|
993 |
|
994 |
-
#: adrotate.php:
|
995 |
msgid "Check this box if you use WP Super Cache on your site."
|
996 |
msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
|
997 |
|
998 |
-
#: adrotate.php:
|
999 |
msgid ""
|
1000 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
1001 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -1004,7 +986,7 @@ msgstr ""
|
|
1004 |
"behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
|
1005 |
"manuellt."
|
1006 |
|
1007 |
-
#: adrotate.php:
|
1008 |
msgid ""
|
1009 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
1010 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -1012,19 +994,18 @@ msgstr ""
|
|
1012 |
"Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
|
1013 |
"använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
|
1014 |
|
1015 |
-
#: adrotate.php:
|
1016 |
-
|
1017 |
-
|
1018 |
-
msgstr "HTML / JavaScript tillåtet, använd med omsorg!"
|
1019 |
|
1020 |
-
#: adrotate.php:
|
1021 |
#, fuzzy
|
1022 |
msgid "Load jQuery"
|
1023 |
msgstr ""
|
1024 |
"Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
|
1025 |
"om andra plugins eller teman redan läsa här."
|
1026 |
|
1027 |
-
#: adrotate.php:
|
1028 |
#, fuzzy
|
1029 |
msgid ""
|
1030 |
"jQuery is required for all Javascript features below. Enable this if your "
|
@@ -1033,24 +1014,24 @@ msgstr ""
|
|
1033 |
"Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
|
1034 |
"om andra plugins eller teman redan läsa här."
|
1035 |
|
1036 |
-
#: adrotate.php:
|
1037 |
#, fuzzy
|
1038 |
msgid "Load in footer?"
|
1039 |
msgstr ""
|
1040 |
"Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
|
1041 |
|
1042 |
-
#: adrotate.php:
|
1043 |
#, fuzzy
|
1044 |
msgid ""
|
1045 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1046 |
"needs to call wp_footer() for this to work."
|
1047 |
msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
|
1048 |
|
1049 |
-
#: adrotate.php:
|
1050 |
msgid "Maintenance"
|
1051 |
msgstr "Underhåll"
|
1052 |
|
1053 |
-
#: adrotate.php:
|
1054 |
#, fuzzy
|
1055 |
msgid ""
|
1056 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
@@ -1065,19 +1046,19 @@ msgstr ""
|
|
1065 |
"Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
|
1066 |
"eller märker din databas är långsam, inte svarar och trög."
|
1067 |
|
1068 |
-
#: adrotate.php:
|
1069 |
msgid "Optimize Database"
|
1070 |
msgstr "Optimera Databas"
|
1071 |
|
1072 |
-
#: adrotate.php:
|
1073 |
msgid "You are about to optimize the AdRotate database."
|
1074 |
msgstr "Du håller på att optimera AdRotate databasen."
|
1075 |
|
1076 |
-
#: adrotate.php:
|
1077 |
msgid "Did you make a backup of your database?"
|
1078 |
msgstr "Har du gjort en säkerhetskopia av din databas?"
|
1079 |
|
1080 |
-
#: adrotate.php:
|
1081 |
msgid ""
|
1082 |
"This may take a moment and may cause your website to respond slow "
|
1083 |
"temporarily!"
|
@@ -1085,16 +1066,16 @@ msgstr ""
|
|
1085 |
"Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
|
1086 |
"tillfälligt!"
|
1087 |
|
1088 |
-
#: adrotate.php:
|
1089 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1090 |
msgid "OK to continue, CANCEL to stop."
|
1091 |
msgstr "OK för att fortsätta, CANCEL för att avbryta."
|
1092 |
|
1093 |
-
#: adrotate.php:
|
1094 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1095 |
msgstr "Rensar övervakningsdata i AdRotate tabeller."
|
1096 |
|
1097 |
-
#: adrotate.php:
|
1098 |
msgid ""
|
1099 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1100 |
"made. This can vary from nothing to hundreds of KiB of data."
|
@@ -1102,11 +1083,11 @@ msgstr ""
|
|
1102 |
"Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
|
1103 |
"gjort. Denna kan variera från ingenting till hundratals KiB of data."
|
1104 |
|
1105 |
-
#: adrotate.php:
|
1106 |
msgid "Clean-up Database"
|
1107 |
msgstr "Städa upp Databas"
|
1108 |
|
1109 |
-
#: adrotate.php:
|
1110 |
msgid ""
|
1111 |
"You are about to clean up your database. This may delete expired schedules "
|
1112 |
"and older statistics."
|
@@ -1114,22 +1095,22 @@ msgstr ""
|
|
1114 |
"Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
|
1115 |
"och äldre statistik."
|
1116 |
|
1117 |
-
#: adrotate.php:
|
1118 |
msgid "Are you sure you want to continue?"
|
1119 |
msgstr "Är du säker på att du vill fortsätta?"
|
1120 |
|
1121 |
-
#: adrotate.php:
|
1122 |
#, fuzzy
|
1123 |
msgid "This might take a while and may slow down your site during this action!"
|
1124 |
msgstr ""
|
1125 |
"Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
|
1126 |
"tillfälligt!"
|
1127 |
|
1128 |
-
#: adrotate.php:
|
1129 |
msgid "Delete stats older than 356 days (Optional)."
|
1130 |
msgstr "Radera statistik äldre än 356 dagar (tillval)."
|
1131 |
|
1132 |
-
#: adrotate.php:
|
1133 |
#, fuzzy
|
1134 |
msgid ""
|
1135 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
@@ -1138,7 +1119,7 @@ msgstr ""
|
|
1138 |
"Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
|
1139 |
"den här knappen för att ta bort de tomma poster."
|
1140 |
|
1141 |
-
#: adrotate.php:
|
1142 |
msgid ""
|
1143 |
"If you made an ad or group that does not save when you make it use this "
|
1144 |
"button to delete those empty records."
|
@@ -1146,7 +1127,7 @@ msgstr ""
|
|
1146 |
"Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
|
1147 |
"den här knappen för att ta bort de tomma poster."
|
1148 |
|
1149 |
-
#: adrotate.php:
|
1150 |
msgid ""
|
1151 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1152 |
"your site."
|
@@ -1154,22 +1135,22 @@ msgstr ""
|
|
1154 |
"Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
|
1155 |
"hastigheten på din webbplats."
|
1156 |
|
1157 |
-
#: adrotate.php:
|
1158 |
#, fuzzy
|
1159 |
msgid "Re-evaluate Ads"
|
1160 |
msgstr "Omvärdera annonser"
|
1161 |
|
1162 |
-
#: adrotate.php:
|
1163 |
#, fuzzy
|
1164 |
msgid "Re-evaluate all ads"
|
1165 |
msgstr "Omvärdera alla annonser"
|
1166 |
|
1167 |
-
#: adrotate.php:
|
1168 |
#, fuzzy
|
1169 |
msgid "You are about to check all ads for errors."
|
1170 |
msgstr "Du håller på att kolla alla annonser för fel."
|
1171 |
|
1172 |
-
#: adrotate.php:
|
1173 |
#, fuzzy
|
1174 |
msgid ""
|
1175 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
@@ -1178,7 +1159,7 @@ msgstr ""
|
|
1178 |
"Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
|
1179 |
"något fel halkade in. Normalt ska du inte behöva den här funktionen."
|
1180 |
|
1181 |
-
#: adrotate.php:
|
1182 |
msgid ""
|
1183 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1184 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
@@ -1195,64 +1176,64 @@ msgstr ""
|
|
1195 |
"det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
|
1196 |
"alla fall."
|
1197 |
|
1198 |
-
#: adrotate.php:
|
1199 |
msgid "Troubleshooting"
|
1200 |
msgstr "Felsökning"
|
1201 |
|
1202 |
-
#: adrotate.php:
|
1203 |
msgid "Current version:"
|
1204 |
msgstr "Aktuell version:"
|
1205 |
|
1206 |
-
#: adrotate.php:
|
1207 |
msgid "Previous version:"
|
1208 |
msgstr "Tidigare version:"
|
1209 |
|
1210 |
-
#: adrotate.php:
|
1211 |
msgid "Current database version:"
|
1212 |
msgstr "Nuvarande databasversion:"
|
1213 |
|
1214 |
-
#: adrotate.php:
|
1215 |
msgid "Previous database version:"
|
1216 |
msgstr "Tidigare databasversion:"
|
1217 |
|
1218 |
-
#: adrotate.php:
|
1219 |
#, fuzzy
|
1220 |
msgid "Ad evaluation next run:"
|
1221 |
msgstr "Annons Meddelanden nästa körning:"
|
1222 |
|
1223 |
-
#: adrotate.php:
|
1224 |
msgid "Not scheduled!"
|
1225 |
msgstr "Inte planerat!"
|
1226 |
|
1227 |
-
#: adrotate.php:
|
1228 |
msgid "Clean Trackerdata next run:"
|
1229 |
msgstr "Rensa Trackerdata nästa körning:"
|
1230 |
|
1231 |
-
#: adrotate.php:
|
1232 |
msgid "Current status of adverts"
|
1233 |
msgstr "Aktuell status för annonser"
|
1234 |
|
1235 |
-
#: adrotate.php:
|
1236 |
msgid "Normal"
|
1237 |
msgstr "Normal"
|
1238 |
|
1239 |
-
#: adrotate.php:
|
1240 |
msgid "Error"
|
1241 |
msgstr "Error"
|
1242 |
|
1243 |
-
#: adrotate.php:
|
1244 |
msgid "Expired"
|
1245 |
msgstr "Utgånget"
|
1246 |
|
1247 |
-
#: adrotate.php:
|
1248 |
msgid "Expires Soon"
|
1249 |
msgstr "Utgår snart"
|
1250 |
|
1251 |
-
#: adrotate.php:
|
1252 |
msgid "Unknown Status"
|
1253 |
msgstr "Okänd status"
|
1254 |
|
1255 |
-
#: adrotate.php:
|
1256 |
msgid ""
|
1257 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1258 |
"developers to review saved settings or how ads are selected. These can be "
|
@@ -1264,42 +1245,42 @@ msgstr ""
|
|
1264 |
"väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
|
1265 |
"normal användning de bör lämnas därhän!"
|
1266 |
|
1267 |
-
#: adrotate.php:
|
1268 |
msgid "Developer Debug"
|
1269 |
msgstr "Utvecklar Debug"
|
1270 |
|
1271 |
-
#: adrotate.php:
|
1272 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1273 |
msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
|
1274 |
|
1275 |
-
#: adrotate.php:
|
1276 |
msgid "Show all settings, dashboard routines and related values."
|
1277 |
msgstr ""
|
1278 |
"Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
|
1279 |
|
1280 |
-
#: adrotate.php:
|
1281 |
msgid "Show array of all userroles and capabilities."
|
1282 |
msgstr "Visa samling av alla userroles och möjligheter."
|
1283 |
|
1284 |
-
#: adrotate.php:
|
1285 |
msgid "Review saved advertisers! Visible to advertisers."
|
1286 |
msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
|
1287 |
|
1288 |
-
#: adrotate.php:
|
1289 |
#, fuzzy
|
1290 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1291 |
msgstr ""
|
1292 |
"Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
|
1293 |
"endast till förlag."
|
1294 |
|
1295 |
-
#: adrotate.php:
|
1296 |
#, fuzzy
|
1297 |
msgid ""
|
1298 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1299 |
"clicktracking."
|
1300 |
msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
|
1301 |
|
1302 |
-
#: adrotate.php:
|
1303 |
msgid "Temporarily disable encryption on the redirect url."
|
1304 |
msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
|
1305 |
|
@@ -1347,111 +1328,111 @@ msgstr "Du använder"
|
|
1347 |
msgid "AdRotate News and Developer Blog"
|
1348 |
msgstr "AdRotate Nyheter och Utvecklar Blog"
|
1349 |
|
1350 |
-
#: dashboard/adrotate-info.php:
|
1351 |
#, fuzzy
|
1352 |
msgid "Buy AdRotate Professional"
|
1353 |
msgstr "Köp nu"
|
1354 |
|
1355 |
-
#: dashboard/adrotate-info.php:
|
1356 |
#, fuzzy
|
1357 |
msgid "Singe License"
|
1358 |
msgstr "AdRotate Licens"
|
1359 |
|
1360 |
-
#: dashboard/adrotate-info.php:
|
1361 |
#, fuzzy
|
1362 |
msgid "For one WordPress installation."
|
1363 |
msgstr "Installation"
|
1364 |
|
1365 |
-
#: dashboard/adrotate-info.php:
|
1366 |
-
#: dashboard/adrotate-info.php:
|
1367 |
-
#: dashboard/adrotate-info.php:
|
1368 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1369 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1370 |
#, fuzzy
|
1371 |
msgid "Buy now"
|
1372 |
msgstr "Köp nu"
|
1373 |
|
1374 |
-
#: dashboard/adrotate-info.php:
|
1375 |
#, fuzzy
|
1376 |
msgid "Duo License"
|
1377 |
msgstr "AdRotate Licens"
|
1378 |
|
1379 |
-
#: dashboard/adrotate-info.php:
|
1380 |
#, fuzzy
|
1381 |
msgid "For two WordPress installations."
|
1382 |
msgstr "Installation"
|
1383 |
|
1384 |
-
#: dashboard/adrotate-info.php:
|
1385 |
#, fuzzy
|
1386 |
msgid "Multi License"
|
1387 |
msgstr "AdRotate Licens"
|
1388 |
|
1389 |
-
#: dashboard/adrotate-info.php:
|
1390 |
#, fuzzy
|
1391 |
msgid " For up to five WordPress installations."
|
1392 |
msgstr "Installation"
|
1393 |
|
1394 |
-
#: dashboard/adrotate-info.php:
|
1395 |
#, fuzzy
|
1396 |
msgid "Developer License"
|
1397 |
msgstr "Utvecklar Debug"
|
1398 |
|
1399 |
-
#: dashboard/adrotate-info.php:
|
1400 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: dashboard/adrotate-info.php:
|
1404 |
#, fuzzy
|
1405 |
msgid "Network License"
|
1406 |
msgstr "AdRotate Licens"
|
1407 |
|
1408 |
-
#: dashboard/adrotate-info.php:
|
1409 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: dashboard/adrotate-info.php:
|
1413 |
msgid "Compare licenses"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: dashboard/adrotate-info.php:
|
1417 |
msgid "Not sure which license is for you? Compare them..."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: dashboard/adrotate-info.php:
|
1421 |
msgid "All Licenses"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: dashboard/adrotate-info.php:
|
1425 |
#, fuzzy
|
1426 |
msgid "Get more features with AdRotate Pro"
|
1427 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
1428 |
|
1429 |
-
#: dashboard/adrotate-info.php:
|
1430 |
msgid ""
|
1431 |
"Benefit from extra features to reinforce your income with advertising "
|
1432 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1433 |
"Pro offers on top of the trusted features included in the free version."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: dashboard/adrotate-info.php:
|
1437 |
#, fuzzy
|
1438 |
msgid "or go to the"
|
1439 |
msgstr "Gå"
|
1440 |
|
1441 |
-
#: dashboard/adrotate-info.php:
|
1442 |
msgid "Support AdRotate"
|
1443 |
msgstr "Support AdRotate"
|
1444 |
|
1445 |
-
#: dashboard/adrotate-info.php:
|
1446 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1447 |
msgstr ""
|
1448 |
"Din gåva kommer att säkerställa den fortsatta utvecklingen av AdRotate!"
|
1449 |
|
1450 |
-
#: dashboard/adrotate-info.php:
|
1451 |
msgid "AdRotate is brought to you by"
|
1452 |
msgstr "AdRotate kommer till dig genom"
|
1453 |
|
1454 |
-
#: dashboard/adrotate-info.php:
|
1455 |
msgid ""
|
1456 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1457 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
@@ -1461,11 +1442,11 @@ msgstr ""
|
|
1461 |
"behöver en anpassad plugin. Tema anpassningar eller har din webbplats "
|
1462 |
"flyttas / migreras helt. Besök min hemsida för mer information!"
|
1463 |
|
1464 |
-
#: dashboard/adrotate-info.php:
|
1465 |
msgid "Find out more"
|
1466 |
msgstr "Läs mer"
|
1467 |
|
1468 |
-
#: dashboard/adrotate-info.php:
|
1469 |
msgid "Follow"
|
1470 |
msgstr ""
|
1471 |
|
@@ -2012,8 +1993,6 @@ msgstr "Från / Till"
|
|
2012 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
2013 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
2014 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2015 |
-
#: dashboard/server/adrotate-active.php:25
|
2016 |
-
#: dashboard/server/adrotate-error.php:26
|
2017 |
msgid "Clicks"
|
2018 |
msgstr "Klick"
|
2019 |
|
@@ -2117,7 +2096,6 @@ msgstr "Återställ statistik"
|
|
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 ""
|
@@ -2128,8 +2106,6 @@ msgstr ""
|
|
2128 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2129 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2130 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
2131 |
-
#: dashboard/server/adrotate-active.php:21
|
2132 |
-
#: dashboard/server/adrotate-error.php:22
|
2133 |
msgid "Title"
|
2134 |
msgstr "Titel"
|
2135 |
|
@@ -2137,8 +2113,6 @@ msgstr "Titel"
|
|
2137 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2138 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2139 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
2140 |
-
#: dashboard/server/adrotate-active.php:27
|
2141 |
-
#: dashboard/server/adrotate-error.php:28
|
2142 |
msgid "CTR"
|
2143 |
msgstr "CTR"
|
2144 |
|
@@ -2211,14 +2185,10 @@ msgstr "Exportera"
|
|
2211 |
|
2212 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2213 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
2214 |
-
#: dashboard/server/adrotate-active.php:22
|
2215 |
-
#: dashboard/server/adrotate-error.php:23
|
2216 |
msgid "Weight"
|
2217 |
msgstr "Vikt"
|
2218 |
|
2219 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
2220 |
-
#: dashboard/server/adrotate-active.php:23
|
2221 |
-
#: dashboard/server/adrotate-error.php:24
|
2222 |
msgid "Shown"
|
2223 |
msgstr "Visa"
|
2224 |
|
@@ -2226,10 +2196,6 @@ msgstr "Visa"
|
|
2226 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2227 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2228 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2229 |
-
#: dashboard/server/adrotate-active.php:24
|
2230 |
-
#: dashboard/server/adrotate-active.php:26
|
2231 |
-
#: dashboard/server/adrotate-error.php:25
|
2232 |
-
#: dashboard/server/adrotate-error.php:27
|
2233 |
msgid "Today"
|
2234 |
msgstr "i dag"
|
2235 |
|
@@ -2615,125 +2581,67 @@ msgstr "Inga grupper skapas!"
|
|
2615 |
msgid "Statistics for group"
|
2616 |
msgstr "Statistik för grupp"
|
2617 |
|
2618 |
-
|
2619 |
-
msgid "
|
2620 |
-
msgstr ""
|
2621 |
|
2622 |
-
|
2623 |
-
msgid ""
|
2624 |
-
|
2625 |
-
"AdRotate server."
|
2626 |
-
msgstr ""
|
2627 |
|
2628 |
-
#: dashboard/server/adrotate-active.php:19
|
2629 |
#, fuzzy
|
2630 |
-
msgid "
|
2631 |
-
msgstr "
|
2632 |
|
2633 |
-
#: dashboard/server/adrotate-active.php:74
|
2634 |
-
#: dashboard/server/adrotate-error.php:76
|
2635 |
#, fuzzy
|
2636 |
-
msgid "
|
2637 |
-
msgstr "
|
2638 |
|
2639 |
-
#: dashboard/server/adrotate-error.php:12
|
2640 |
#, fuzzy
|
2641 |
-
msgid "
|
2642 |
-
msgstr "
|
2643 |
|
2644 |
-
|
2645 |
-
msgid "
|
2646 |
-
msgstr ""
|
2647 |
|
2648 |
-
#: dashboard/server/adrotate-error.php:19
|
2649 |
#, fuzzy
|
2650 |
-
msgid "Updated"
|
2651 |
-
msgstr "Block uppdateras"
|
2652 |
|
2653 |
-
|
2654 |
-
|
2655 |
-
msgstr "Visa från"
|
2656 |
|
2657 |
-
|
2658 |
-
|
2659 |
-
msgstr "Visa till"
|
2660 |
|
2661 |
-
#: dashboard/server/adrotate-settings.php:15
|
2662 |
#, fuzzy
|
2663 |
-
msgid "AdRotate Server Settings"
|
2664 |
-
msgstr "AdRotate Inställningar"
|
2665 |
-
|
2666 |
-
#: dashboard/server/adrotate-settings.php:21
|
2667 |
-
msgid ""
|
2668 |
-
"Link this website to an AdRotate server so your adverts and stats are "
|
2669 |
-
"synchronised regularly."
|
2670 |
-
msgstr ""
|
2671 |
|
2672 |
-
#: dashboard/server/adrotate-settings.php:24
|
2673 |
#, fuzzy
|
2674 |
-
msgid "Status"
|
2675 |
-
msgstr "Okänd status"
|
2676 |
-
|
2677 |
-
#: dashboard/server/adrotate-settings.php:27
|
2678 |
-
msgid "Linked - Adverts can be synced."
|
2679 |
-
msgstr ""
|
2680 |
|
2681 |
-
#: dashboard/server/adrotate-settings.php:27
|
2682 |
#, fuzzy
|
2683 |
-
msgid "Not linked - No adverts will be synced."
|
2684 |
-
msgstr "Annonser"
|
2685 |
|
2686 |
-
#: dashboard/server/adrotate-settings.php:40
|
2687 |
#, fuzzy
|
2688 |
-
msgid "Server Key"
|
2689 |
-
msgstr "Licensnyckel"
|
2690 |
-
|
2691 |
-
#: dashboard/server/adrotate-settings.php:41
|
2692 |
-
msgid ""
|
2693 |
-
"You can get your server key from your AdRotate Server installation or the "
|
2694 |
-
"AdRollr website."
|
2695 |
-
msgstr ""
|
2696 |
-
|
2697 |
-
#: dashboard/server/adrotate-settings.php:41
|
2698 |
-
msgid ""
|
2699 |
-
"You should not share your key with anyone you do not trust. Treat this key "
|
2700 |
-
"as a password!"
|
2701 |
-
msgstr ""
|
2702 |
-
|
2703 |
-
#: dashboard/server/adrotate-settings.php:44
|
2704 |
-
msgid "Make this site a puppet"
|
2705 |
-
msgstr ""
|
2706 |
-
|
2707 |
-
#: dashboard/server/adrotate-settings.php:46
|
2708 |
-
msgid "Have AdRotate use AdRotate Server adverts exclusively."
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
#: dashboard/server/adrotate-settings.php:46
|
2712 |
-
msgid ""
|
2713 |
-
"Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this "
|
2714 |
-
"installation of AdRotate a puppet for your AdRotate Server."
|
2715 |
-
msgstr ""
|
2716 |
|
2717 |
-
#: dashboard/server/adrotate-settings.php:50
|
2718 |
#, fuzzy
|
2719 |
-
msgid "Hide Server Details"
|
2720 |
-
msgstr "Kunde inte skriva filen till servern."
|
2721 |
-
|
2722 |
-
#: dashboard/server/adrotate-settings.php:52
|
2723 |
-
msgid ""
|
2724 |
-
"If you have installed AdRotate Pro for a client or in a Multisite network "
|
2725 |
-
"and want to hide the server details from your users or client."
|
2726 |
-
msgstr ""
|
2727 |
|
2728 |
-
#: dashboard/server/adrotate-settings.php:60
|
2729 |
#, fuzzy
|
2730 |
-
msgid "Link to server"
|
2731 |
-
msgstr "Kunde inte skriva filen till servern."
|
2732 |
|
2733 |
-
#: dashboard/server/adrotate-settings.php:62
|
2734 |
#, fuzzy
|
2735 |
-
msgid "Unlink from server"
|
2736 |
-
msgstr "Kunde inte skriva filen till servern."
|
2737 |
|
2738 |
#, fuzzy
|
2739 |
#~ 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: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.7.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:811
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
+
#: adrotate-functions.php:814
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
+
#: adrotate-output.php:759
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "Åh nej! Något gick fel!"
|
31 |
|
32 |
+
#: adrotate-output.php:760
|
33 |
msgid ""
|
34 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
35 |
"Verify if the url used is valid or log in via your browser."
|
38 |
"klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
|
39 |
"via webbläsaren."
|
40 |
|
41 |
+
#: adrotate-output.php:761
|
42 |
msgid ""
|
43 |
"If you have received the url you want to visit via email, you are being "
|
44 |
"tricked!"
|
45 |
msgstr ""
|
46 |
"Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
|
47 |
|
48 |
+
#: adrotate-output.php:762
|
49 |
msgid "Contact support if the issue persists:"
|
50 |
msgstr "Kontakta support om problemet kvarstår:"
|
51 |
|
52 |
+
#: adrotate-output.php:780
|
53 |
msgid ""
|
54 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
55 |
"restrictions or does not exist!"
|
57 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
58 |
"geolokalisering restriktioner eller finns inte!"
|
59 |
|
60 |
+
#: adrotate-output.php:782
|
61 |
msgid ""
|
62 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
63 |
"restrictions!"
|
65 |
"Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
|
66 |
"geolokalisering begränsningar!"
|
67 |
|
68 |
+
#: adrotate-output.php:789 adrotate-output.php:791
|
69 |
msgid ""
|
70 |
"Either there are no banners, they are disabled or none qualified for this "
|
71 |
"location!"
|
73 |
"Antingen finns det inga banderoller, de har inaktiverats eller inga "
|
74 |
"kvalificerade för den här platsen!"
|
75 |
|
76 |
+
#: adrotate-output.php:797
|
77 |
msgid "Error, no Ad ID set! Check your syntax!"
|
78 |
msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
|
79 |
|
80 |
+
#: adrotate-output.php:803
|
81 |
msgid "Error, no group ID set! Check your syntax!"
|
82 |
msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
|
83 |
|
84 |
+
#: adrotate-output.php:808
|
85 |
msgid "Error, group does not exist! Check your syntax!"
|
86 |
msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
|
87 |
|
88 |
+
#: adrotate-output.php:814
|
89 |
msgid ""
|
90 |
"There was an error locating the database tables for AdRotate. Please "
|
91 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
93 |
"Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
|
94 |
"avaktivera och återaktivera AdRotate från plugin sidan!"
|
95 |
|
96 |
+
#: adrotate-output.php:814
|
97 |
msgid "If this does not solve the issue please seek support at"
|
98 |
msgstr "Om detta inte löser problemet vänligen söka stöd hos"
|
99 |
|
100 |
+
#: adrotate-output.php:820
|
101 |
msgid "An unknown error occured."
|
102 |
msgstr "Ett okänt fel uppstod."
|
103 |
|
104 |
+
#: adrotate-output.php:846
|
105 |
msgid "active ad(s) expired."
|
106 |
msgstr "aktiv annons (er) gått ut."
|
107 |
|
108 |
+
#: adrotate-output.php:846
|
109 |
msgid "Take action now"
|
110 |
msgstr "Agera nu"
|
111 |
|
112 |
+
#: adrotate-output.php:848
|
113 |
msgid "active ad(s) are about to expire."
|
114 |
msgstr "aktiv annons(er) är på väg att löpa ut."
|
115 |
|
116 |
+
#: adrotate-output.php:848
|
117 |
msgid "Check it out"
|
118 |
msgstr "Kolla in det"
|
119 |
|
120 |
+
#: adrotate-output.php:850
|
121 |
msgid "active ad(s) with configuration errors."
|
122 |
msgstr "aktiv annons(er) med konfigurationsfel."
|
123 |
|
124 |
+
#: adrotate-output.php:850
|
125 |
msgid "Solve this"
|
126 |
msgstr "Lös det här"
|
127 |
|
128 |
+
#: adrotate-output.php:852
|
129 |
msgid "ad(s) expired."
|
130 |
msgstr "annons(er) gått ut."
|
131 |
|
132 |
+
#: adrotate-output.php:852
|
133 |
msgid "ad(s) are about to expire."
|
134 |
msgstr "annons(er) är på väg att löpa ut."
|
135 |
|
136 |
+
#: adrotate-output.php:852
|
137 |
msgid "ad(s) with configuration errors."
|
138 |
msgstr "annons (er) med konfigurationsfel."
|
139 |
|
140 |
+
#: adrotate-output.php:852
|
141 |
msgid "Fix this as soon as possible"
|
142 |
msgstr "Lös det här så fort som möjligt"
|
143 |
|
144 |
+
#: adrotate-output.php:864
|
145 |
#, fuzzy
|
146 |
msgid "Learn More"
|
147 |
msgstr "Läs mer om"
|
148 |
|
149 |
+
#: adrotate-output.php:866
|
150 |
msgid ""
|
151 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
152 |
"to the <strong>PRO</strong> version"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: adrotate-output.php:867
|
156 |
msgid "Get more features to even better run your advertising campaigns."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:867
|
160 |
#, fuzzy
|
161 |
msgid "Thank you for your consideration!"
|
162 |
msgstr "Tack. Din licens är nu aktiv"
|
163 |
|
164 |
+
#: adrotate-output.php:889
|
165 |
msgid ""
|
166 |
"Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
|
167 |
"Pro is in this menu. Check out the"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: adrotate-output.php:889
|
171 |
msgid "manuals"
|
172 |
msgstr "manual"
|
173 |
|
174 |
+
#: adrotate-output.php:889 adrotate-output.php:985
|
175 |
#: dashboard/publisher/adrotate-ads-edit.php:229
|
176 |
msgid "and"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: adrotate-output.php:889
|
180 |
msgid "forums"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:925
|
184 |
#, fuzzy
|
185 |
msgid "Useful Links"
|
186 |
msgstr "Nyttiga länkar"
|
187 |
|
188 |
+
#: adrotate-output.php:926 adrotate-output.php:954
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: adrotate-output.php:928
|
193 |
#, fuzzy
|
194 |
msgid "AdRotate Page"
|
195 |
msgstr "AdRotate Pro"
|
196 |
|
197 |
+
#: adrotate-output.php:929
|
198 |
#, fuzzy
|
199 |
msgid "Getting Started With AdRotate"
|
200 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
201 |
|
202 |
+
#: adrotate-output.php:930
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate manuals"
|
205 |
msgstr "AdRotate Information"
|
206 |
|
207 |
+
#: adrotate-output.php:931
|
208 |
#, fuzzy
|
209 |
msgid "AdRotate Support Forum"
|
210 |
msgstr "AdRotate butik"
|
211 |
|
212 |
+
#: adrotate-output.php:932
|
213 |
msgid "WordPress.org Forum"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: adrotate-output.php:956
|
217 |
#, fuzzy
|
218 |
msgid "AdRotate Website."
|
219 |
msgstr "AdRotate butik"
|
220 |
|
221 |
+
#: adrotate-output.php:957
|
222 |
#, fuzzy
|
223 |
msgid "AdRotate Getting Started."
|
224 |
msgstr "AdRotate Inställningar"
|
225 |
|
226 |
+
#: adrotate-output.php:958
|
227 |
msgid "AdRotate Knoweledge base and manuals."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: adrotate-output.php:959
|
231 |
#, fuzzy
|
232 |
msgid "AdRotate Website Forum."
|
233 |
msgstr "AdRotate butik"
|
234 |
|
235 |
+
#: adrotate-output.php:960
|
236 |
msgid "WordPress.org Forum."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:977
|
240 |
#, fuzzy
|
241 |
msgid "Help AdRotate Grow"
|
242 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
243 |
|
244 |
+
#: adrotate-output.php:978
|
245 |
msgid "Brought to you by"
|
246 |
msgstr "Presenteras av"
|
247 |
|
248 |
+
#: adrotate-output.php:985
|
249 |
msgid ""
|
250 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
251 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: adrotate-output.php:985
|
255 |
msgid "If you find AdRotate useful please leave your honest"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: adrotate-output.php:985
|
259 |
msgid "rating"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: adrotate-output.php:985
|
263 |
#, fuzzy
|
264 |
msgid "review"
|
265 |
msgstr "Betygsätt och omdöme"
|
266 |
|
267 |
+
#: adrotate-output.php:985
|
268 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: adrotate-output.php:988
|
272 |
msgid ""
|
273 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
274 |
"out more about what I can do for you!"
|
276 |
"Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
|
277 |
"mer om vad jag kan göra för dig!"
|
278 |
|
279 |
+
#: adrotate-output.php:988
|
280 |
msgid "Visit the"
|
281 |
msgstr "Besök"
|
282 |
|
283 |
+
#: adrotate-output.php:988 dashboard/adrotate-info.php:175
|
284 |
msgid "website"
|
285 |
msgstr "hemsida"
|
286 |
|
287 |
+
#: adrotate-output.php:1018
|
288 |
msgid "Available in AdRotate Pro"
|
289 |
msgstr "Tillgänglig i AdRotate Pro"
|
290 |
|
291 |
+
#: adrotate-output.php:1018
|
292 |
#, fuzzy
|
293 |
msgid "More information..."
|
294 |
msgstr "Mer info"
|
295 |
|
296 |
+
#: adrotate-output.php:1019
|
297 |
msgid "This feature is available in AdRotate Pro"
|
298 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
299 |
|
300 |
+
#: adrotate-output.php:1019
|
301 |
#, fuzzy
|
302 |
msgid "Learn more"
|
303 |
msgstr "Läs mer om"
|
427 |
msgid "AdRotate Pro"
|
428 |
msgstr "AdRotate Pro"
|
429 |
|
430 |
+
#: adrotate.php:110
|
431 |
msgid "Manage Ads"
|
432 |
msgstr "Hantera Annonser"
|
433 |
|
434 |
+
#: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
|
435 |
msgid "Manage Groups"
|
436 |
msgstr "Hantera Grupper"
|
437 |
|
438 |
+
#: adrotate.php:112 adrotate.php:441
|
439 |
#: dashboard/publisher/adrotate-ads-edit.php:402
|
440 |
#, fuzzy
|
441 |
msgid "Manage Schedules"
|
442 |
msgstr "Hantera"
|
443 |
|
444 |
+
#: adrotate.php:113
|
445 |
#, fuzzy
|
446 |
msgid "Manage Media"
|
447 |
msgstr "Media:"
|
448 |
|
449 |
+
#: adrotate.php:114
|
450 |
msgid "Settings"
|
451 |
msgstr "Inställningar"
|
452 |
|
453 |
+
#: adrotate.php:137
|
454 |
msgid "AdRotate Info"
|
455 |
msgstr "AdRotate Information"
|
456 |
|
457 |
+
#: adrotate.php:158
|
458 |
#, fuzzy
|
459 |
msgid "AdRotate Professional"
|
460 |
msgstr "AdRotate"
|
461 |
|
462 |
+
#: adrotate.php:201
|
463 |
msgid "Ad Management"
|
464 |
msgstr "Annonshantering"
|
465 |
|
466 |
+
#: adrotate.php:204
|
467 |
msgid "Ad created"
|
468 |
msgstr "Annons skapad"
|
469 |
|
470 |
+
#: adrotate.php:206
|
471 |
msgid "Ad updated"
|
472 |
msgstr "Annons uppdaterad"
|
473 |
|
474 |
+
#: adrotate.php:208
|
475 |
msgid "Ad(s) deleted"
|
476 |
msgstr "Annons(er) raderas"
|
477 |
|
478 |
+
#: adrotate.php:210
|
479 |
msgid "Ad(s) statistics reset"
|
480 |
msgstr "Annons(er) statistik återställning"
|
481 |
|
482 |
+
#: adrotate.php:212
|
483 |
msgid "Ad(s) renewed"
|
484 |
msgstr "Annons(er) förnyas"
|
485 |
|
486 |
+
#: adrotate.php:214
|
487 |
msgid "Ad(s) deactivated"
|
488 |
msgstr "Annons(er) avaktiveras"
|
489 |
|
490 |
+
#: adrotate.php:216
|
491 |
msgid "Ad(s) activated"
|
492 |
msgstr "Annons(er) aktiveras"
|
493 |
|
494 |
+
#: adrotate.php:218
|
495 |
msgid ""
|
496 |
"The ad was saved but has an issue which might prevent it from working "
|
497 |
"properly. Review the yellow marked ad."
|
499 |
"Annonsen har sparats, men har en fråga som skulle kunna hindra den från att "
|
500 |
"fungera korrekt. Granska den gula markerade annons."
|
501 |
|
502 |
+
#: adrotate.php:220
|
503 |
#, fuzzy
|
504 |
msgid "Export created"
|
505 |
msgstr "export skapad"
|
506 |
|
507 |
+
#: adrotate.php:224
|
508 |
msgid "Action prohibited"
|
509 |
msgstr "Åtgärden förbjuden"
|
510 |
|
511 |
+
#: adrotate.php:226 adrotate.php:374
|
512 |
msgid "No data found in selected time period"
|
513 |
msgstr "Inga data finns i vald tidsperiod"
|
514 |
|
515 |
+
#: adrotate.php:284 adrotate.php:380 adrotate.php:436
|
516 |
msgid "Manage"
|
517 |
msgstr "Hantera"
|
518 |
|
519 |
+
#: adrotate.php:285 adrotate.php:381 adrotate.php:437
|
520 |
msgid "Add New"
|
521 |
msgstr "Lägg till ny"
|
522 |
|
523 |
+
#: adrotate.php:363
|
524 |
msgid "Group Management"
|
525 |
msgstr "Grupp Hantering"
|
526 |
|
527 |
+
#: adrotate.php:366
|
528 |
msgid "Group created"
|
529 |
msgstr "Grupp skapad"
|
530 |
|
531 |
+
#: adrotate.php:368
|
532 |
msgid "Group updated"
|
533 |
msgstr "Grupp uppdaterad"
|
534 |
|
535 |
+
#: adrotate.php:370
|
536 |
msgid "Group deleted"
|
537 |
msgstr "Grupp raderad"
|
538 |
|
539 |
+
#: adrotate.php:372
|
540 |
msgid "Group including it's Ads deleted"
|
541 |
msgstr "Grupp inklusive dess annonser raderade"
|
542 |
|
543 |
+
#: adrotate.php:432
|
544 |
#, fuzzy
|
545 |
msgid "Schedule Management available in AdRotate Pro"
|
546 |
msgstr "Tillgänglig i AdRotate Pro"
|
547 |
|
548 |
+
#: adrotate.php:442
|
549 |
#, fuzzy
|
550 |
msgid ""
|
551 |
"Schedule management and multiple schedules per advert is available in "
|
552 |
"AdRotate Pro."
|
553 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
554 |
|
555 |
+
#: adrotate.php:442 adrotate.php:529
|
556 |
#: dashboard/publisher/adrotate-ads-edit.php:145
|
557 |
#: dashboard/publisher/adrotate-ads-main.php:108
|
558 |
#: dashboard/publisher/adrotate-groups-edit.php:76
|
561 |
msgid "More information"
|
562 |
msgstr "Mer info"
|
563 |
|
564 |
+
#: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
|
565 |
#: dashboard/publisher/adrotate-ads-main-error.php:19
|
566 |
#: dashboard/publisher/adrotate-ads-main.php:20
|
567 |
#: dashboard/publisher/adrotate-groups-main.php:20
|
568 |
msgid "Bulk Actions"
|
569 |
msgstr "Massåtgärder"
|
570 |
|
571 |
+
#: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
|
572 |
#: dashboard/publisher/adrotate-ads-main-error.php:29
|
573 |
#: dashboard/publisher/adrotate-ads-main.php:30
|
574 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
575 |
msgid "Go"
|
576 |
msgstr "Gå"
|
577 |
|
578 |
+
#: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
|
579 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:35
|
580 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
581 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
582 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
|
|
|
|
583 |
msgid "ID"
|
584 |
msgstr "ID"
|
585 |
|
586 |
+
#: adrotate.php:460
|
587 |
#, fuzzy
|
588 |
msgid "Start"
|
589 |
msgstr "Starttid (hh: mm):"
|
590 |
|
591 |
+
#: adrotate.php:460
|
592 |
#, fuzzy
|
593 |
msgid "End"
|
594 |
msgstr "Avsluta tid (hh: mm):"
|
595 |
|
596 |
+
#: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
|
597 |
#: dashboard/publisher/adrotate-groups-main.php:34
|
598 |
msgid "Ads"
|
599 |
msgstr "Annonser"
|
600 |
|
601 |
+
#: adrotate.php:463
|
602 |
msgid "Max Clicks"
|
603 |
msgstr "Max Klick"
|
604 |
|
605 |
+
#: adrotate.php:464
|
606 |
msgid "Max Impressions"
|
607 |
msgstr "Max Intryck"
|
608 |
|
609 |
+
#: adrotate.php:494
|
610 |
#, fuzzy
|
611 |
msgid "No schedules created yet!"
|
612 |
msgstr "Inga block har skapats än!"
|
613 |
|
614 |
+
#: adrotate.php:499
|
615 |
#, fuzzy
|
616 |
msgid "Easily manage your schedules from here with AdRotate Pro."
|
617 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
618 |
|
619 |
+
#: adrotate.php:499 adrotate.php:562
|
620 |
#, fuzzy
|
621 |
msgid "Upgrade today!"
|
622 |
msgstr "i dag"
|
623 |
|
624 |
+
#: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
|
625 |
#: dashboard/publisher/adrotate-ads-main-error.php:74
|
626 |
#: dashboard/publisher/adrotate-groups-edit.php:399
|
627 |
msgid "Expires soon."
|
628 |
msgstr "Utgår inom kort."
|
629 |
|
630 |
+
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
631 |
#: dashboard/publisher/adrotate-groups-edit.php:400
|
632 |
msgid "Has expired."
|
633 |
msgstr "Har gått ut."
|
634 |
|
635 |
+
#: adrotate.php:527
|
636 |
#, fuzzy
|
637 |
msgid "Media Management available in AdRotate Pro"
|
638 |
msgstr "Tillgänglig i AdRotate Pro"
|
639 |
|
640 |
+
#: adrotate.php:529
|
641 |
msgid ""
|
642 |
"Upload images to the AdRotate Pro banners folder from here. This is "
|
643 |
"especially useful if you use responsive adverts with multiple images."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: adrotate.php:529
|
647 |
#, fuzzy
|
648 |
msgid "Media uploading and management is available in AdRotate Pro."
|
649 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
650 |
|
651 |
+
#: adrotate.php:531
|
652 |
#, fuzzy
|
653 |
msgid "Upload new banner image"
|
654 |
msgstr "Banner image:"
|
655 |
|
656 |
+
#: adrotate.php:532
|
657 |
#, fuzzy
|
658 |
msgid "Accepted files are:"
|
659 |
msgstr "Godkända filer är:"
|
660 |
|
661 |
+
#: adrotate.php:532
|
662 |
#, fuzzy
|
663 |
msgid "Maximum size is 512Kb."
|
664 |
msgstr "Maximal storlek är 512Kb."
|
665 |
|
666 |
+
#: adrotate.php:532
|
667 |
msgid "Important:"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: adrotate.php:532
|
671 |
msgid ""
|
672 |
"Make sure your file has no spaces or special characters in the name. Replace "
|
673 |
"spaces with a - or _."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: adrotate.php:534
|
677 |
msgid ""
|
678 |
"For responsive adverts make sure the filename is in the following format; "
|
679 |
"\"imagename.full.ext\". A full set of sized images is strongly recommended."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
|
683 |
msgid ""
|
684 |
"For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
|
685 |
"filename instead of \".full\" for the various viewports."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
|
689 |
#: dashboard/publisher/adrotate-groups-edit.php:334
|
690 |
#: dashboard/publisher/adrotate-groups-edit.php:343
|
691 |
msgid "Example:"
|
692 |
msgstr "Exempel:"
|
693 |
|
694 |
+
#: adrotate.php:536
|
695 |
msgid ""
|
696 |
"image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
|
697 |
"for different viewports."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: adrotate.php:540
|
701 |
#, fuzzy
|
702 |
msgid "Upload image"
|
703 |
msgstr "Överföring ofullständig."
|
704 |
|
705 |
+
#: adrotate.php:543
|
706 |
msgid "Available banner images in"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
|
710 |
msgid "Name"
|
711 |
msgstr "Namn"
|
712 |
|
713 |
+
#: adrotate.php:549
|
714 |
#, fuzzy
|
715 |
msgid "Actions"
|
716 |
msgstr "Massåtgärder"
|
717 |
|
718 |
+
#: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
|
719 |
+
#: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
|
720 |
#: dashboard/publisher/adrotate-ads-main-error.php:21
|
721 |
#: dashboard/publisher/adrotate-ads-main.php:22
|
722 |
msgid "Delete"
|
723 |
msgstr "Radera"
|
724 |
|
725 |
+
#: adrotate.php:562
|
726 |
msgid ""
|
727 |
"Make sure the banner images are not in use by adverts when you delete them!"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: adrotate.php:562
|
731 |
#, fuzzy
|
732 |
msgid "Manage your banner folder from here with AdRotate Pro."
|
733 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
734 |
|
735 |
+
#: adrotate.php:606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
736 |
msgid "AdRotate Settings"
|
737 |
msgstr "AdRotate Inställningar"
|
738 |
|
739 |
+
#: adrotate.php:609
|
740 |
msgid "Settings saved"
|
741 |
msgstr "Inställningar sparas"
|
742 |
|
743 |
+
#: adrotate.php:611
|
744 |
msgid "Database optimized"
|
745 |
msgstr "Databas optimerad"
|
746 |
|
747 |
+
#: adrotate.php:613
|
748 |
msgid "Database repaired"
|
749 |
msgstr "Databas reparation"
|
750 |
|
751 |
+
#: adrotate.php:615
|
752 |
msgid "Ads evaluated and statuses have been corrected where required"
|
753 |
msgstr "annonser utvärderas och status har rättats till vid behov"
|
754 |
|
755 |
+
#: adrotate.php:617
|
756 |
msgid "Empty database records removed"
|
757 |
msgstr "Tomma databasposter tas bort"
|
758 |
|
759 |
+
#: adrotate.php:619
|
760 |
msgid "Database can only be optimized or cleaned once every hour"
|
761 |
msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
|
762 |
|
763 |
+
#: adrotate.php:627
|
764 |
msgid "Access Rights"
|
765 |
msgstr "Tillträde"
|
766 |
|
767 |
+
#: adrotate.php:628
|
768 |
msgid "Who has access to what?"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: adrotate.php:631
|
772 |
msgid "Manage/Add/Edit adverts"
|
773 |
msgstr "Hantera / Lägg till / redigera annonser"
|
774 |
|
775 |
+
#: adrotate.php:635
|
776 |
msgid "Role to see and add/edit ads."
|
777 |
msgstr "Role för att se och lägga till / redigera annonser."
|
778 |
|
779 |
+
#: adrotate.php:639
|
780 |
msgid "Delete/Reset adverts"
|
781 |
msgstr "Radera / Reset annonser"
|
782 |
|
783 |
+
#: adrotate.php:643
|
784 |
msgid "Role to delete ads and reset stats."
|
785 |
msgstr "Role att ta bort annonser och återställ statistik."
|
786 |
|
787 |
+
#: adrotate.php:647
|
788 |
msgid "Manage/Add/Edit groups"
|
789 |
msgstr "Hantera / Lägg till / Redigera grupper"
|
790 |
|
791 |
+
#: adrotate.php:651
|
792 |
msgid "Role to see and add/edit groups."
|
793 |
msgstr "Role för att se och lägga till / redigera grupp."
|
794 |
|
795 |
+
#: adrotate.php:655
|
796 |
msgid "Delete groups"
|
797 |
msgstr "Ta bort grupper"
|
798 |
|
799 |
+
#: adrotate.php:659
|
800 |
msgid "Role to delete groups."
|
801 |
msgstr "Role att ta bort grupper."
|
802 |
|
803 |
+
#: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
|
804 |
+
#: adrotate.php:876
|
805 |
msgid "Update Options"
|
806 |
msgstr "Update Options"
|
807 |
|
808 |
+
#: adrotate.php:691
|
809 |
msgid "Statistics"
|
810 |
msgstr "Statistik"
|
811 |
|
812 |
+
#: adrotate.php:694
|
813 |
#, fuzzy
|
814 |
msgid "Enable stats"
|
815 |
msgstr "Statistik"
|
816 |
|
817 |
+
#: adrotate.php:696
|
818 |
msgid "Track clicks and impressions."
|
819 |
msgstr "Spåra klick och visningar."
|
820 |
|
821 |
+
#: adrotate.php:696
|
822 |
#, fuzzy
|
823 |
msgid "Disabling this also disables click and impression limits on schedules."
|
824 |
msgstr ""
|
825 |
"Inaktivera detta också inaktiverar klick och visningar gränser för scheman "
|
826 |
"och inaktiverar tidsramar."
|
827 |
|
828 |
+
#: adrotate.php:700
|
829 |
msgid "Impressions timer"
|
830 |
msgstr "Intryck timer"
|
831 |
|
832 |
+
#: adrotate.php:702 adrotate.php:709
|
833 |
msgid "Seconds."
|
834 |
msgstr "Sekunder."
|
835 |
|
836 |
+
#: adrotate.php:703
|
837 |
#, fuzzy
|
838 |
msgid "Default: 60."
|
839 |
msgstr "Default"
|
840 |
|
841 |
+
#: adrotate.php:703
|
842 |
#, fuzzy
|
843 |
msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
|
844 |
msgstr ""
|
845 |
"Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
|
846 |
|
847 |
+
#: adrotate.php:707
|
848 |
#, fuzzy
|
849 |
msgid "Clicks timer"
|
850 |
msgstr "Intryck timer"
|
851 |
|
852 |
+
#: adrotate.php:710
|
853 |
#, fuzzy
|
854 |
msgid "Default: 86400."
|
855 |
msgstr "Default"
|
856 |
|
857 |
+
#: adrotate.php:710
|
858 |
#, fuzzy
|
859 |
msgid ""
|
860 |
"This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
861 |
msgstr ""
|
862 |
"Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
|
863 |
|
864 |
+
#: adrotate.php:715
|
865 |
#, fuzzy
|
866 |
msgid "Bot filter"
|
867 |
msgstr "User-Agent Filter"
|
868 |
|
869 |
+
#: adrotate.php:718
|
870 |
msgid "User-Agent Filter"
|
871 |
msgstr "User-Agent Filter"
|
872 |
|
873 |
+
#: adrotate.php:721
|
874 |
msgid ""
|
875 |
"A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
|
876 |
"prevent impressions and clicks counted on them."
|
878 |
"En kommaseparerad lista med sökord. Filtrera bort bots / sökrobotar / user-"
|
879 |
"agents. För att förhindra att visningar och klick räknas på dem."
|
880 |
|
881 |
+
#: adrotate.php:722
|
882 |
msgid ""
|
883 |
"Keep in mind that this might give false positives. The word 'google' also "
|
884 |
"matches 'googlebot', but not vice-versa. So be careful!"
|
886 |
"Tänk på att detta kan ge falska positiva. Ordet \"google\" träffar "
|
887 |
"\"googlebot\", men inte vice versa. Så var försiktig!"
|
888 |
|
889 |
+
#: adrotate.php:722
|
890 |
msgid "Keep your list up-to-date"
|
891 |
msgstr "Håll din lista up-to-date"
|
892 |
|
893 |
+
#: adrotate.php:723
|
894 |
msgid ""
|
895 |
"Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
|
896 |
"other characters are stripped out."
|
898 |
"Använd endast ord med alfanumeriska tecken, [- _] tillåts också. Alla andra "
|
899 |
"tecken avskalade ut."
|
900 |
|
901 |
+
#: adrotate.php:724
|
902 |
msgid ""
|
903 |
"Additionally to the list specified here, empty User-Agents are blocked as "
|
904 |
"well."
|
905 |
msgstr ""
|
906 |
"Ytterligare till listan anges här, tomma user-agents blockerades också."
|
907 |
|
908 |
+
#: adrotate.php:724 dashboard/adrotate-info.php:175
|
909 |
msgid "Learn more about"
|
910 |
msgstr "Läs mer om"
|
911 |
|
912 |
+
#: adrotate.php:724
|
913 |
msgid "user-agents"
|
914 |
msgstr "user-agents"
|
915 |
|
916 |
+
#: adrotate.php:733
|
917 |
msgid "Miscellaneous"
|
918 |
msgstr "Diverse"
|
919 |
|
920 |
+
#: adrotate.php:736
|
921 |
msgid "Widget alignment"
|
922 |
msgstr "widget inriktnings"
|
923 |
|
924 |
+
#: adrotate.php:737
|
925 |
msgid ""
|
926 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
927 |
"not always help!)"
|
929 |
"Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
|
930 |
"alltid hjälper!)"
|
931 |
|
932 |
+
#: adrotate.php:740
|
933 |
msgid "Widget padding"
|
934 |
msgstr "widget padding"
|
935 |
|
936 |
+
#: adrotate.php:741
|
937 |
msgid ""
|
938 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
939 |
"not always work!)"
|
941 |
"Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
|
942 |
"widgets. (Fungerar inte alltid!)"
|
943 |
|
944 |
+
#: adrotate.php:746 adrotate.php:757
|
945 |
#, fuzzy
|
946 |
msgid "NOTICE:"
|
947 |
msgstr "Meddelande"
|
948 |
|
949 |
+
#: adrotate.php:747
|
950 |
msgid ""
|
951 |
"You have enabled W3 Total Caching support but not defined the security hash. "
|
952 |
"You need to add the following line to your wp-config.php near the bottom or "
|
954 |
"needs to be enabled in W3 Total Cache as well too."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: adrotate.php:751
|
958 |
msgid "W3 Total Caching"
|
959 |
msgstr "W3 Total Caching"
|
960 |
|
961 |
+
#: adrotate.php:752
|
962 |
msgid "Check this box if you use W3 Total Caching on your site."
|
963 |
msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
|
964 |
|
965 |
+
#: adrotate.php:758
|
966 |
msgid ""
|
967 |
"You have enabled WP Super Cache support. If you have version 1.4 or newer, "
|
968 |
"this function will not work. WP Super Cache has discontinued support for "
|
969 |
"dynamic content."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: adrotate.php:762
|
973 |
msgid "WP Super Cache"
|
974 |
msgstr "WP Super Cache"
|
975 |
|
976 |
+
#: adrotate.php:763
|
977 |
msgid "Check this box if you use WP Super Cache on your site."
|
978 |
msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
|
979 |
|
980 |
+
#: adrotate.php:768
|
981 |
msgid ""
|
982 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
983 |
"to refresh the cache. This can take up to a week if not done manually."
|
986 |
"behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
|
987 |
"manuellt."
|
988 |
|
989 |
+
#: adrotate.php:768
|
990 |
msgid ""
|
991 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
992 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
994 |
"Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
|
995 |
"använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
|
996 |
|
997 |
+
#: adrotate.php:772
|
998 |
+
msgid "Javascript"
|
999 |
+
msgstr ""
|
|
|
1000 |
|
1001 |
+
#: adrotate.php:775
|
1002 |
#, fuzzy
|
1003 |
msgid "Load jQuery"
|
1004 |
msgstr ""
|
1005 |
"Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
|
1006 |
"om andra plugins eller teman redan läsa här."
|
1007 |
|
1008 |
+
#: adrotate.php:776
|
1009 |
#, fuzzy
|
1010 |
msgid ""
|
1011 |
"jQuery is required for all Javascript features below. Enable this if your "
|
1014 |
"Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
|
1015 |
"om andra plugins eller teman redan läsa här."
|
1016 |
|
1017 |
+
#: adrotate.php:779
|
1018 |
#, fuzzy
|
1019 |
msgid "Load in footer?"
|
1020 |
msgstr ""
|
1021 |
"Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
|
1022 |
|
1023 |
+
#: adrotate.php:780
|
1024 |
#, fuzzy
|
1025 |
msgid ""
|
1026 |
"Enable if you want to load the above libraries in the footer. Your theme "
|
1027 |
"needs to call wp_footer() for this to work."
|
1028 |
msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
|
1029 |
|
1030 |
+
#: adrotate.php:788
|
1031 |
msgid "Maintenance"
|
1032 |
msgstr "Underhåll"
|
1033 |
|
1034 |
+
#: adrotate.php:789
|
1035 |
#, fuzzy
|
1036 |
msgid ""
|
1037 |
"NOTE: The below functions are intented to be used to OPTIMIZE your database. "
|
1046 |
"Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
|
1047 |
"eller märker din databas är långsam, inte svarar och trög."
|
1048 |
|
1049 |
+
#: adrotate.php:804 adrotate.php:806
|
1050 |
msgid "Optimize Database"
|
1051 |
msgstr "Optimera Databas"
|
1052 |
|
1053 |
+
#: adrotate.php:806
|
1054 |
msgid "You are about to optimize the AdRotate database."
|
1055 |
msgstr "Du håller på att optimera AdRotate databasen."
|
1056 |
|
1057 |
+
#: adrotate.php:806
|
1058 |
msgid "Did you make a backup of your database?"
|
1059 |
msgstr "Har du gjort en säkerhetskopia av din databas?"
|
1060 |
|
1061 |
+
#: adrotate.php:806
|
1062 |
msgid ""
|
1063 |
"This may take a moment and may cause your website to respond slow "
|
1064 |
"temporarily!"
|
1066 |
"Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
|
1067 |
"tillfälligt!"
|
1068 |
|
1069 |
+
#: adrotate.php:806 adrotate.php:814 adrotate.php:822
|
1070 |
#: dashboard/publisher/adrotate-groups-main.php:24
|
1071 |
msgid "OK to continue, CANCEL to stop."
|
1072 |
msgstr "OK för att fortsätta, CANCEL för att avbryta."
|
1073 |
|
1074 |
+
#: adrotate.php:807
|
1075 |
msgid "Cleans up overhead data in the AdRotate tables."
|
1076 |
msgstr "Rensar övervakningsdata i AdRotate tabeller."
|
1077 |
|
1078 |
+
#: adrotate.php:808
|
1079 |
msgid ""
|
1080 |
"Overhead data is accumulated garbage resulting from many changes you've "
|
1081 |
"made. This can vary from nothing to hundreds of KiB of data."
|
1083 |
"Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
|
1084 |
"gjort. Denna kan variera från ingenting till hundratals KiB of data."
|
1085 |
|
1086 |
+
#: adrotate.php:812 adrotate.php:814
|
1087 |
msgid "Clean-up Database"
|
1088 |
msgstr "Städa upp Databas"
|
1089 |
|
1090 |
+
#: adrotate.php:814
|
1091 |
msgid ""
|
1092 |
"You are about to clean up your database. This may delete expired schedules "
|
1093 |
"and older statistics."
|
1095 |
"Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
|
1096 |
"och äldre statistik."
|
1097 |
|
1098 |
+
#: adrotate.php:814
|
1099 |
msgid "Are you sure you want to continue?"
|
1100 |
msgstr "Är du säker på att du vill fortsätta?"
|
1101 |
|
1102 |
+
#: adrotate.php:814 adrotate.php:822
|
1103 |
#, fuzzy
|
1104 |
msgid "This might take a while and may slow down your site during this action!"
|
1105 |
msgstr ""
|
1106 |
"Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
|
1107 |
"tillfälligt!"
|
1108 |
|
1109 |
+
#: adrotate.php:815
|
1110 |
msgid "Delete stats older than 356 days (Optional)."
|
1111 |
msgstr "Radera statistik äldre än 356 dagar (tillval)."
|
1112 |
|
1113 |
+
#: adrotate.php:816
|
1114 |
#, fuzzy
|
1115 |
msgid ""
|
1116 |
"AdRotate creates empty records when you start making ads or groups. In rare "
|
1119 |
"Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
|
1120 |
"den här knappen för att ta bort de tomma poster."
|
1121 |
|
1122 |
+
#: adrotate.php:816
|
1123 |
msgid ""
|
1124 |
"If you made an ad or group that does not save when you make it use this "
|
1125 |
"button to delete those empty records."
|
1127 |
"Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
|
1128 |
"den här knappen för att ta bort de tomma poster."
|
1129 |
|
1130 |
+
#: adrotate.php:816
|
1131 |
msgid ""
|
1132 |
"Additionally you can clean up old statistics. This will improve the speed of "
|
1133 |
"your site."
|
1135 |
"Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
|
1136 |
"hastigheten på din webbplats."
|
1137 |
|
1138 |
+
#: adrotate.php:820
|
1139 |
#, fuzzy
|
1140 |
msgid "Re-evaluate Ads"
|
1141 |
msgstr "Omvärdera annonser"
|
1142 |
|
1143 |
+
#: adrotate.php:822
|
1144 |
#, fuzzy
|
1145 |
msgid "Re-evaluate all ads"
|
1146 |
msgstr "Omvärdera alla annonser"
|
1147 |
|
1148 |
+
#: adrotate.php:822
|
1149 |
#, fuzzy
|
1150 |
msgid "You are about to check all ads for errors."
|
1151 |
msgstr "Du håller på att kolla alla annonser för fel."
|
1152 |
|
1153 |
+
#: adrotate.php:823
|
1154 |
#, fuzzy
|
1155 |
msgid ""
|
1156 |
"This will apply all evaluation rules to all ads to see if any error slipped "
|
1159 |
"Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
|
1160 |
"något fel halkade in. Normalt ska du inte behöva den här funktionen."
|
1161 |
|
1162 |
+
#: adrotate.php:827
|
1163 |
msgid ""
|
1164 |
"DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
|
1165 |
"becomes unusable in any way or by any means in whichever way I will not take "
|
1176 |
"det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
|
1177 |
"alla fall."
|
1178 |
|
1179 |
+
#: adrotate.php:835
|
1180 |
msgid "Troubleshooting"
|
1181 |
msgstr "Felsökning"
|
1182 |
|
1183 |
+
#: adrotate.php:838
|
1184 |
msgid "Current version:"
|
1185 |
msgstr "Aktuell version:"
|
1186 |
|
1187 |
+
#: adrotate.php:839
|
1188 |
msgid "Previous version:"
|
1189 |
msgstr "Tidigare version:"
|
1190 |
|
1191 |
+
#: adrotate.php:842
|
1192 |
msgid "Current database version:"
|
1193 |
msgstr "Nuvarande databasversion:"
|
1194 |
|
1195 |
+
#: adrotate.php:843
|
1196 |
msgid "Previous database version:"
|
1197 |
msgstr "Tidigare databasversion:"
|
1198 |
|
1199 |
+
#: adrotate.php:846
|
1200 |
#, fuzzy
|
1201 |
msgid "Ad evaluation next run:"
|
1202 |
msgstr "Annons Meddelanden nästa körning:"
|
1203 |
|
1204 |
+
#: adrotate.php:847 adrotate.php:851
|
1205 |
msgid "Not scheduled!"
|
1206 |
msgstr "Inte planerat!"
|
1207 |
|
1208 |
+
#: adrotate.php:850
|
1209 |
msgid "Clean Trackerdata next run:"
|
1210 |
msgstr "Rensa Trackerdata nästa körning:"
|
1211 |
|
1212 |
+
#: adrotate.php:854
|
1213 |
msgid "Current status of adverts"
|
1214 |
msgstr "Aktuell status för annonser"
|
1215 |
|
1216 |
+
#: adrotate.php:855
|
1217 |
msgid "Normal"
|
1218 |
msgstr "Normal"
|
1219 |
|
1220 |
+
#: adrotate.php:855
|
1221 |
msgid "Error"
|
1222 |
msgstr "Error"
|
1223 |
|
1224 |
+
#: adrotate.php:855
|
1225 |
msgid "Expired"
|
1226 |
msgstr "Utgånget"
|
1227 |
|
1228 |
+
#: adrotate.php:855
|
1229 |
msgid "Expires Soon"
|
1230 |
msgstr "Utgår snart"
|
1231 |
|
1232 |
+
#: adrotate.php:855
|
1233 |
msgid "Unknown Status"
|
1234 |
msgstr "Okänd status"
|
1235 |
|
1236 |
+
#: adrotate.php:858
|
1237 |
msgid ""
|
1238 |
"NOTE: The below options are not meant for normal use and are only there for "
|
1239 |
"developers to review saved settings or how ads are selected. These can be "
|
1245 |
"väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
|
1246 |
"normal användning de bör lämnas därhän!"
|
1247 |
|
1248 |
+
#: adrotate.php:862
|
1249 |
msgid "Developer Debug"
|
1250 |
msgstr "Utvecklar Debug"
|
1251 |
|
1252 |
+
#: adrotate.php:864
|
1253 |
msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
|
1254 |
msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
|
1255 |
|
1256 |
+
#: adrotate.php:865
|
1257 |
msgid "Show all settings, dashboard routines and related values."
|
1258 |
msgstr ""
|
1259 |
"Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
|
1260 |
|
1261 |
+
#: adrotate.php:866
|
1262 |
msgid "Show array of all userroles and capabilities."
|
1263 |
msgstr "Visa samling av alla userroles och möjligheter."
|
1264 |
|
1265 |
+
#: adrotate.php:867
|
1266 |
msgid "Review saved advertisers! Visible to advertisers."
|
1267 |
msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
|
1268 |
|
1269 |
+
#: adrotate.php:868
|
1270 |
#, fuzzy
|
1271 |
msgid "Review global stats, per ad/group stats. Visible only to publishers."
|
1272 |
msgstr ""
|
1273 |
"Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
|
1274 |
"endast till förlag."
|
1275 |
|
1276 |
+
#: adrotate.php:869
|
1277 |
#, fuzzy
|
1278 |
msgid ""
|
1279 |
"Disable timers for clicks and impressions and enable a alert window for "
|
1280 |
"clicktracking."
|
1281 |
msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
|
1282 |
|
1283 |
+
#: adrotate.php:870
|
1284 |
msgid "Temporarily disable encryption on the redirect url."
|
1285 |
msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
|
1286 |
|
1328 |
msgid "AdRotate News and Developer Blog"
|
1329 |
msgstr "AdRotate Nyheter och Utvecklar Blog"
|
1330 |
|
1331 |
+
#: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
|
1332 |
#, fuzzy
|
1333 |
msgid "Buy AdRotate Professional"
|
1334 |
msgstr "Köp nu"
|
1335 |
|
1336 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1337 |
#, fuzzy
|
1338 |
msgid "Singe License"
|
1339 |
msgstr "AdRotate Licens"
|
1340 |
|
1341 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
|
1342 |
#, fuzzy
|
1343 |
msgid "For one WordPress installation."
|
1344 |
msgstr "Installation"
|
1345 |
|
1346 |
+
#: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
|
1347 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
|
1348 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
|
1349 |
#: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
|
1350 |
#: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
|
1351 |
#, fuzzy
|
1352 |
msgid "Buy now"
|
1353 |
msgstr "Köp nu"
|
1354 |
|
1355 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1356 |
#, fuzzy
|
1357 |
msgid "Duo License"
|
1358 |
msgstr "AdRotate Licens"
|
1359 |
|
1360 |
+
#: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
|
1361 |
#, fuzzy
|
1362 |
msgid "For two WordPress installations."
|
1363 |
msgstr "Installation"
|
1364 |
|
1365 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1366 |
#, fuzzy
|
1367 |
msgid "Multi License"
|
1368 |
msgstr "AdRotate Licens"
|
1369 |
|
1370 |
+
#: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
|
1371 |
#, fuzzy
|
1372 |
msgid " For up to five WordPress installations."
|
1373 |
msgstr "Installation"
|
1374 |
|
1375 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1376 |
#, fuzzy
|
1377 |
msgid "Developer License"
|
1378 |
msgstr "Utvecklar Debug"
|
1379 |
|
1380 |
+
#: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
|
1381 |
msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1385 |
#, fuzzy
|
1386 |
msgid "Network License"
|
1387 |
msgstr "AdRotate Licens"
|
1388 |
|
1389 |
+
#: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
|
1390 |
msgid "Set up your own advertising network on a WordPress Multisite."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1394 |
msgid "Compare licenses"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1398 |
msgid "Not sure which license is for you? Compare them..."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
|
1402 |
msgid "All Licenses"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: dashboard/adrotate-info.php:171
|
1406 |
#, fuzzy
|
1407 |
msgid "Get more features with AdRotate Pro"
|
1408 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
1409 |
|
1410 |
+
#: dashboard/adrotate-info.php:174
|
1411 |
msgid ""
|
1412 |
"Benefit from extra features to reinforce your income with advertising "
|
1413 |
"campaigns. Make the most of your website with the powerful tools AdRotate "
|
1414 |
"Pro offers on top of the trusted features included in the free version."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: dashboard/adrotate-info.php:175
|
1418 |
#, fuzzy
|
1419 |
msgid "or go to the"
|
1420 |
msgstr "Gå"
|
1421 |
|
1422 |
+
#: dashboard/adrotate-info.php:179
|
1423 |
msgid "Support AdRotate"
|
1424 |
msgstr "Support AdRotate"
|
1425 |
|
1426 |
+
#: dashboard/adrotate-info.php:182
|
1427 |
msgid "Your gift will ensure the continued development of AdRotate!"
|
1428 |
msgstr ""
|
1429 |
"Din gåva kommer att säkerställa den fortsatta utvecklingen av AdRotate!"
|
1430 |
|
1431 |
+
#: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
|
1432 |
msgid "AdRotate is brought to you by"
|
1433 |
msgstr "AdRotate kommer till dig genom"
|
1434 |
|
1435 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1436 |
msgid ""
|
1437 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
|
1438 |
"need a custom plugin. Theme customizations or have your site moved/migrated "
|
1442 |
"behöver en anpassad plugin. Tema anpassningar eller har din webbplats "
|
1443 |
"flyttas / migreras helt. Besök min hemsida för mer information!"
|
1444 |
|
1445 |
+
#: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
|
1446 |
msgid "Find out more"
|
1447 |
msgstr "Läs mer"
|
1448 |
|
1449 |
+
#: dashboard/adrotate-info.php:193
|
1450 |
msgid "Follow"
|
1451 |
msgstr ""
|
1452 |
|
1993 |
#: dashboard/publisher/adrotate-groups-edit.php:356
|
1994 |
#: dashboard/publisher/adrotate-groups-main.php:37
|
1995 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
|
|
|
|
1996 |
msgid "Clicks"
|
1997 |
msgstr "Klick"
|
1998 |
|
2096 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:36
|
2097 |
#: dashboard/publisher/adrotate-ads-main-error.php:40
|
2098 |
#: dashboard/publisher/adrotate-ads-main.php:40
|
|
|
2099 |
#, fuzzy
|
2100 |
msgid "Start / End"
|
2101 |
msgstr ""
|
2106 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2107 |
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2108 |
#: dashboard/publisher/adrotate-ads-main.php:41
|
|
|
|
|
2109 |
msgid "Title"
|
2110 |
msgstr "Titel"
|
2111 |
|
2113 |
#: dashboard/publisher/adrotate-ads-main.php:47
|
2114 |
#: dashboard/publisher/adrotate-ads-report.php:38
|
2115 |
#: dashboard/publisher/adrotate-groups-report.php:44
|
|
|
|
|
2116 |
msgid "CTR"
|
2117 |
msgstr "CTR"
|
2118 |
|
2185 |
|
2186 |
#: dashboard/publisher/adrotate-ads-main.php:42
|
2187 |
#: dashboard/publisher/adrotate-groups-edit.php:357
|
|
|
|
|
2188 |
msgid "Weight"
|
2189 |
msgstr "Vikt"
|
2190 |
|
2191 |
#: dashboard/publisher/adrotate-ads-main.php:43
|
|
|
|
|
2192 |
msgid "Shown"
|
2193 |
msgstr "Visa"
|
2194 |
|
2196 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2197 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2198 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
|
|
|
|
|
|
|
|
2199 |
msgid "Today"
|
2200 |
msgstr "i dag"
|
2201 |
|
2581 |
msgid "Statistics for group"
|
2582 |
msgstr "Statistik för grupp"
|
2583 |
|
2584 |
+
#, fuzzy
|
2585 |
+
#~ msgid "AdRotate Server"
|
2586 |
+
#~ msgstr "AdRotate"
|
2587 |
|
2588 |
+
#, fuzzy
|
2589 |
+
#~ msgid "Overview"
|
2590 |
+
#~ msgstr "Månads översikt av klick och visningar"
|
|
|
|
|
2591 |
|
|
|
2592 |
#, fuzzy
|
2593 |
+
#~ msgid "Javascript Libraries"
|
2594 |
+
#~ msgstr "HTML / JavaScript tillåtet, använd med omsorg!"
|
2595 |
|
|
|
|
|
2596 |
#, fuzzy
|
2597 |
+
#~ msgid "Added / Updated"
|
2598 |
+
#~ msgstr "Block uppdateras"
|
2599 |
|
|
|
2600 |
#, fuzzy
|
2601 |
+
#~ msgid "No ads received yet!"
|
2602 |
+
#~ msgstr "Inga annonser skapats ännu!"
|
2603 |
|
2604 |
+
#, fuzzy
|
2605 |
+
#~ msgid "Erroneous ads from server"
|
2606 |
+
#~ msgstr "Queued och Felaktiga annonser"
|
2607 |
|
|
|
2608 |
#, fuzzy
|
2609 |
+
#~ msgid "Updated"
|
2610 |
+
#~ msgstr "Block uppdateras"
|
2611 |
|
2612 |
+
#~ msgid "Show from"
|
2613 |
+
#~ msgstr "Visa från"
|
|
|
2614 |
|
2615 |
+
#~ msgid "Show until"
|
2616 |
+
#~ msgstr "Visa till"
|
|
|
2617 |
|
|
|
2618 |
#, fuzzy
|
2619 |
+
#~ msgid "AdRotate Server Settings"
|
2620 |
+
#~ msgstr "AdRotate Inställningar"
|
|
|
|
|
|
|
|
|
|
|
|
|
2621 |
|
|
|
2622 |
#, fuzzy
|
2623 |
+
#~ msgid "Status"
|
2624 |
+
#~ msgstr "Okänd status"
|
|
|
|
|
|
|
|
|
2625 |
|
|
|
2626 |
#, fuzzy
|
2627 |
+
#~ msgid "Not linked - No adverts will be synced."
|
2628 |
+
#~ msgstr "Annonser"
|
2629 |
|
|
|
2630 |
#, fuzzy
|
2631 |
+
#~ msgid "Server Key"
|
2632 |
+
#~ msgstr "Licensnyckel"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2633 |
|
|
|
2634 |
#, fuzzy
|
2635 |
+
#~ msgid "Hide Server Details"
|
2636 |
+
#~ msgstr "Kunde inte skriva filen till servern."
|
|
|
|
|
|
|
|
|
|
|
|
|
2637 |
|
|
|
2638 |
#, fuzzy
|
2639 |
+
#~ msgid "Link to server"
|
2640 |
+
#~ msgstr "Kunde inte skriva filen till servern."
|
2641 |
|
|
|
2642 |
#, fuzzy
|
2643 |
+
#~ msgid "Unlink from server"
|
2644 |
+
#~ msgstr "Kunde inte skriva filen till servern."
|
2645 |
|
2646 |
#, fuzzy
|
2647 |
#~ msgid "AdRotate Website"
|
library/jquery.adrotate.dyngroup.js
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
|
9 |
/* ------------------------------------------------------------------------------------
|
10 |
* COPYRIGHT AND TRADEMARK NOTICE
|
11 |
-
* Copyright 2008-
|
12 |
* ADROTATE is a trademark of Arnan de Gans.
|
13 |
|
14 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -35,17 +35,18 @@ speed : Time each slide is shown [integer: milliseconds, defaults to 3000]
|
|
35 |
|
36 |
if(length == 1) {
|
37 |
// Impression tracker (Single ad)
|
38 |
-
var tracker = $cont.find(".c-
|
39 |
if(typeof tracker !== 'undefined') {
|
40 |
impressiontracker(tracker);
|
41 |
}
|
42 |
}
|
43 |
|
44 |
if(length > 1) {
|
45 |
-
|
|
|
46 |
$cont.find(".c-" + n).hide();
|
47 |
}
|
48 |
-
|
49 |
timer = setInterval(function(){ play(); }, config.speed);
|
50 |
}
|
51 |
|
@@ -63,10 +64,7 @@ speed : Time each slide is shown [integer: milliseconds, defaults to 3000]
|
|
63 |
if(typeof tracker !== 'undefined') {
|
64 |
impressiontracker(tracker);
|
65 |
}
|
66 |
-
|
67 |
-
if(length > 1) {
|
68 |
-
$cont.find(".c-" + index).fadeOut(300);
|
69 |
-
}
|
70 |
}
|
71 |
|
72 |
function play() {
|
8 |
|
9 |
/* ------------------------------------------------------------------------------------
|
10 |
* COPYRIGHT AND TRADEMARK NOTICE
|
11 |
+
* Copyright 2008-2014 AJdG Solutions (Arnan de Gans). All Rights Reserved.
|
12 |
* ADROTATE is a trademark of Arnan de Gans.
|
13 |
|
14 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
35 |
|
36 |
if(length == 1) {
|
37 |
// Impression tracker (Single ad)
|
38 |
+
var tracker = $cont.find(".c-1 a").attr("data-track");
|
39 |
if(typeof tracker !== 'undefined') {
|
40 |
impressiontracker(tracker);
|
41 |
}
|
42 |
}
|
43 |
|
44 |
if(length > 1) {
|
45 |
+
$cont.find(".c-1").show();
|
46 |
+
for(n = 2; n <= length; n++) {
|
47 |
$cont.find(".c-" + n).hide();
|
48 |
}
|
49 |
+
|
50 |
timer = setInterval(function(){ play(); }, config.speed);
|
51 |
}
|
52 |
|
64 |
if(typeof tracker !== 'undefined') {
|
65 |
impressiontracker(tracker);
|
66 |
}
|
67 |
+
$cont.find(".c-" + index).fadeOut(300);
|
|
|
|
|
|
|
68 |
}
|
69 |
|
70 |
function play() {
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: adegans
|
|
3 |
Donate link: http://meandmymac.net/donate/
|
4 |
Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
|
5 |
Requires at least: 3.8, PHP5.3
|
6 |
-
Tested up to: 4.1
|
7 |
-
Stable tag: 3.11
|
8 |
|
9 |
Make it easy on yourself and use AdRotate to place your adverts on your site... Make making money easy!
|
10 |
|
@@ -89,37 +89,20 @@ If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
-
= 3.11 FREE =
|
93 |
* NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
|
94 |
-
* [tweak]
|
95 |
-
* [tweak]
|
96 |
-
* [
|
|
|
97 |
|
98 |
NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to [AdRotate PRO](https://ajdg.solutions/products/adrotate-for-wordpress/features/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=features).
|
99 |
|
100 |
-
= 3.12 PRO =
|
101 |
* NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
|
102 |
-
* [
|
103 |
-
* [
|
104 |
-
* [
|
105 |
-
* [new] $_SESSION used for initial Geo data
|
106 |
-
* [new] Geo Data now includes City Metro ID's
|
107 |
-
* [new] Geo status in email notifications
|
108 |
-
* [new] Geo status sent in push notifications
|
109 |
-
* [new] AdRotate compatibility with new License API on ajdg.solutions
|
110 |
-
* [fix] More accurate filtering for mixed city/state adverts
|
111 |
-
* [fix] Impressions per day for schedules not accurate
|
112 |
-
* [fix] Better check to see if Geo Cookie exists
|
113 |
-
* [fix] Impression counting using the right timestamp
|
114 |
-
* [fix] Warning undefined offset 'city' and/or 'country' for some adverts
|
115 |
-
* [fix] Warning undefined variable '$adrotate_queue' for some users
|
116 |
-
* [tweak] Dynamic groups now hide all ads but one on pageload
|
117 |
-
* [tweak] Updated links and stuff for new ajdg.solutions website
|
118 |
-
* [tweak] 20% smaller geo cookie
|
119 |
-
* [tweak] Impression timer can be 10 again, default remains 60
|
120 |
-
* [tweak] Load/Check Geo Cookie only on front-end
|
121 |
-
* [i18n] Spanish updated
|
122 |
-
* [i18n] Russian translation added
|
123 |
|
124 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
|
125 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
|
@@ -128,11 +111,12 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
|
|
128 |
|
129 |
== Upgrade Notice ==
|
130 |
|
131 |
-
= 3.11 FREE =
|
132 |
* NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
|
133 |
-
* [tweak]
|
134 |
-
* [tweak]
|
135 |
-
* [
|
|
|
136 |
|
137 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
|
138 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
|
3 |
Donate link: http://meandmymac.net/donate/
|
4 |
Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
|
5 |
Requires at least: 3.8, PHP5.3
|
6 |
+
Tested up to: 4.1.1
|
7 |
+
Stable tag: 3.11.1
|
8 |
|
9 |
Make it easy on yourself and use AdRotate to place your adverts on your site... Make making money easy!
|
10 |
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
= 3.11.1 FREE =
|
93 |
* NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
|
94 |
+
* [tweak] Load max. 10 ads for a dynamic group
|
95 |
+
* [tweak] Dynamic groups now hide all ads but one on page load
|
96 |
+
* [change] Removed obsolete AdRotate Server code
|
97 |
+
* [i18n] New and obsolete strings in translation files
|
98 |
|
99 |
NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to [AdRotate PRO](https://ajdg.solutions/products/adrotate-for-wordpress/features/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=features).
|
100 |
|
101 |
+
= 3.12.3 PRO =
|
102 |
* NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
|
103 |
+
* [tweak] Load max. 10 ads for a dynamic group
|
104 |
+
* [change] Removed obsolete AdRotate Server code
|
105 |
+
* [i18n] New and obsolete strings in translation files
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
|
108 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
|
111 |
|
112 |
== Upgrade Notice ==
|
113 |
|
114 |
+
= 3.11.1 FREE =
|
115 |
* NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
|
116 |
+
* [tweak] Load max. 10 ads for a dynamic group
|
117 |
+
* [tweak] Dynamic groups now hide all ads but one on page load
|
118 |
+
* [change] Removed obsolete AdRotate Server code
|
119 |
+
* [i18n] New and obsolete strings in translation files
|
120 |
|
121 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
|
122 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
|