Version Description
FREE = * [tweak] Minor tweaks and improvements to dashboards * [fix] More accurate regexes for AdRotate Tracker * [fix] Ambiguous array match in post injection * [fix] Unwanted advert after content with post injection on some settings * [i18n] Updated strings for all language 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.5 |
Comparing to | |
See all releases |
Code changes from version 3.11.4 to 3.11.5
- adrotate-functions.php +8 -7
- adrotate-output.php +47 -52
- adrotate-setup.php +9 -0
- adrotate.php +3 -3
- dashboard/adrotate-info.php +24 -4
- dashboard/publisher/adrotate-ads-edit.php +32 -32
- dashboard/publisher/adrotate-groups-edit.php +38 -28
- dashboard/publisher/adrotate-groups-main.php +0 -1
- language/adrotate-bg_BG.mo +0 -0
- language/adrotate-bg_BG.po +309 -227
- language/adrotate-el.mo +0 -0
- language/adrotate-el.po +306 -230
- language/adrotate-en_US.mo +0 -0
- language/adrotate-en_US.po +325 -243
- language/adrotate-es_ES.mo +0 -0
- language/adrotate-es_ES.po +308 -230
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +303 -221
- language/adrotate-ja.mo +0 -0
- language/adrotate-ja.po +298 -225
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +308 -228
- language/adrotate-sr_RS.mo +0 -0
- language/adrotate-sr_RS.po +305 -229
- language/adrotate-sv_SV.mo +0 -0
- language/adrotate-sv_SV.po +303 -228
- library/dashboard.css +12 -1
- readme.txt +28 -28
adrotate-functions.php
CHANGED
@@ -20,11 +20,12 @@
|
|
20 |
function adrotate_shortcode($atts, $content = null) {
|
21 |
global $adrotate_config;
|
22 |
|
23 |
-
$banner_id = $group_ids = $
|
24 |
if(!empty($atts['banner'])) $banner_id = trim($atts['banner'], "\r\t ");
|
25 |
if(!empty($atts['group'])) $group_ids = trim($atts['group'], "\r\t ");
|
26 |
-
if(!empty($atts['
|
27 |
-
if(!empty($atts['
|
|
|
28 |
if(!empty($atts['site'])) $site = 0; // Not supported in free version
|
29 |
|
30 |
$output = '';
|
@@ -32,14 +33,14 @@ function adrotate_shortcode($atts, $content = null) {
|
|
32 |
if($adrotate_config['w3caching'] == "Y") $output .= '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
|
33 |
|
34 |
if($banner_id > 0 AND $group_ids == 0) { // Show one Ad
|
35 |
-
if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_ad('.$banner_id.', true, 0, 0) -->';
|
36 |
-
$output .= adrotate_ad($banner_id, true, 0, 0);
|
37 |
if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
|
38 |
}
|
39 |
|
40 |
if($banner_id == 0 AND $group_ids > 0) { // Show group
|
41 |
-
if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_group('.$group_ids.',
|
42 |
-
$output .= adrotate_group($group_ids,
|
43 |
if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
|
44 |
}
|
45 |
|
20 |
function adrotate_shortcode($atts, $content = null) {
|
21 |
global $adrotate_config;
|
22 |
|
23 |
+
$banner_id = $group_ids = $nowrapper = 0;
|
24 |
if(!empty($atts['banner'])) $banner_id = trim($atts['banner'], "\r\t ");
|
25 |
if(!empty($atts['group'])) $group_ids = trim($atts['group'], "\r\t ");
|
26 |
+
if(!empty($atts['nowrapper'])) $nowrapper = trim($atts['nowrapper'], "\r\t "); // Optional (override)
|
27 |
+
if(!empty($atts['fallback'])) $fallback = 0; // Not supported in free version
|
28 |
+
if(!empty($atts['weight'])) $weight = 0; // Not supported in free version
|
29 |
if(!empty($atts['site'])) $site = 0; // Not supported in free version
|
30 |
|
31 |
$output = '';
|
33 |
if($adrotate_config['w3caching'] == "Y") $output .= '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
|
34 |
|
35 |
if($banner_id > 0 AND $group_ids == 0) { // Show one Ad
|
36 |
+
if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_ad('.$banner_id.', true, 0, 0, '.$nowrapper.') -->';
|
37 |
+
$output .= adrotate_ad($banner_id, true, 0, 0, $nowrapper);
|
38 |
if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
|
39 |
}
|
40 |
|
41 |
if($banner_id == 0 AND $group_ids > 0) { // Show group
|
42 |
+
if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_group('.$group_ids.', 0, 0, 0, '.$nowrapper.') -->';
|
43 |
+
$output .= adrotate_group($group_ids, 0, 0, 0, $nowrapper);
|
44 |
if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
|
45 |
}
|
46 |
|
adrotate-output.php
CHANGED
@@ -13,27 +13,17 @@
|
|
13 |
Name: adrotate_ad
|
14 |
|
15 |
Purpose: Show requested ad
|
16 |
-
Receive: $banner_id, $individual, $group, $
|
17 |
Return: $output
|
18 |
Since: 3.0
|
19 |
-------------------------------------------------------------*/
|
20 |
-
function adrotate_ad($banner_id, $individual = true, $group =
|
21 |
global $wpdb, $adrotate_config, $adrotate_debug;
|
22 |
|
23 |
$output = '';
|
24 |
|
25 |
if($banner_id) {
|
26 |
-
$banner = $wpdb->get_row($wpdb->prepare(
|
27 |
-
"SELECT
|
28 |
-
`id`, `bannercode`, `tracker`, `link`, `image`, `responsive`
|
29 |
-
FROM
|
30 |
-
`".$wpdb->prefix."adrotate`
|
31 |
-
WHERE
|
32 |
-
`id` = %d
|
33 |
-
AND (`type` = 'active'
|
34 |
-
OR `type` = '2days'
|
35 |
-
OR `type` = '7days')
|
36 |
-
;", $banner_id));
|
37 |
|
38 |
if($banner) {
|
39 |
if($adrotate_debug['general'] == true) {
|
@@ -49,11 +39,12 @@ function adrotate_ad($banner_id, $individual = true, $group = 0, $block = 0, $si
|
|
49 |
}
|
50 |
|
51 |
if($selected) {
|
|
|
52 |
$image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
|
53 |
|
54 |
-
if($individual == true) $output .= '<div class="a-single a-'.$banner->id.'">';
|
55 |
$output .= adrotate_ad_output($banner->id, 0, $banner->bannercode, $banner->tracker, $banner->link, $image, $banner->responsive);
|
56 |
-
if($individual == true) $output .= '</div>';
|
57 |
|
58 |
if($adrotate_config['stats'] == 1 AND $banner->tracker == "Y") {
|
59 |
adrotate_count_impression($banner->id, 0, 0);
|
@@ -73,18 +64,17 @@ function adrotate_ad($banner_id, $individual = true, $group = 0, $block = 0, $si
|
|
73 |
Name: adrotate_group
|
74 |
|
75 |
Purpose: Fetch ads in specified group(s) and show a random ad
|
76 |
-
Receive: $group_ids, $fallback, $weight, $site
|
77 |
Return: $output
|
78 |
Since: 3.0
|
79 |
-------------------------------------------------------------*/
|
80 |
-
function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
81 |
global $wpdb, $adrotate_config, $adrotate_debug;
|
82 |
|
83 |
-
$output = $group_select =
|
84 |
if($group_ids) {
|
85 |
$now = adrotate_now();
|
86 |
-
|
87 |
-
(!is_array($group_ids)) ? $group_array = explode(",", $group_ids) : $group_array = $group_ids;
|
88 |
|
89 |
foreach($group_array as $key => $value) {
|
90 |
$group_select .= " `{$wpdb->prefix}adrotate_linkmeta`.`group` = {$value} OR";
|
@@ -100,9 +90,6 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
|
100 |
}
|
101 |
|
102 |
if($group) {
|
103 |
-
if($fallback == 0) $fallback = $group->fallback;
|
104 |
-
if($weight > 0) $weightoverride = " AND `{$wpdb->prefix}adrotate`.`weight` >= '{$weight}'";
|
105 |
-
|
106 |
// Get all ads in all selected groups
|
107 |
$ads = $wpdb->get_results(
|
108 |
"SELECT
|
@@ -123,7 +110,6 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
|
123 |
AND (`{$wpdb->prefix}adrotate`.`type` = 'active'
|
124 |
OR `{$wpdb->prefix}adrotate`.`type` = '2days'
|
125 |
OR `{$wpdb->prefix}adrotate`.`type` = '7days')
|
126 |
-
{$weightoverride}
|
127 |
GROUP BY `{$wpdb->prefix}adrotate`.`id`
|
128 |
ORDER BY `{$wpdb->prefix}adrotate`.`id`;");
|
129 |
|
@@ -149,10 +135,11 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
|
149 |
$array_count = count($selected);
|
150 |
if($array_count > 0) {
|
151 |
$before = $after = '';
|
|
|
152 |
$before = str_replace('%id%', $group_array[0], stripslashes(html_entity_decode($group->wrapper_before, ENT_QUOTES)));
|
153 |
$after = str_replace('%id%', $group_array[0], stripslashes(html_entity_decode($group->wrapper_after, ENT_QUOTES)));
|
154 |
|
155 |
-
$output .= '<div class="g g-'.$group->id.'">';
|
156 |
|
157 |
if($group->modus == 1) { // Dynamic ads
|
158 |
$i = 1;
|
@@ -204,16 +191,16 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
|
|
204 |
|
205 |
$image = str_replace('%folder%', $adrotate_config['banner_folder'], $selected[$banner_id]->image);
|
206 |
|
207 |
-
$output .= '<div class="g-single a-'.$selected[$banner_id]->id.'">';
|
208 |
$output .= $before.adrotate_ad_output($selected[$banner_id]->id, $group->id, $selected[$banner_id]->bannercode, $selected[$banner_id]->tracker, $selected[$banner_id]->link, $image, $selected[$banner_id]->responsive).$after;
|
209 |
-
$output .= '</div>';
|
210 |
|
211 |
if($adrotate_config['stats'] == 1){
|
212 |
adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
|
213 |
}
|
214 |
}
|
215 |
|
216 |
-
$output .= '</div>';
|
217 |
|
218 |
unset($selected);
|
219 |
} else {
|
@@ -245,12 +232,13 @@ function adrotate_inject_pages($post_content) {
|
|
245 |
|
246 |
if(is_page()) {
|
247 |
// Inject ads into page
|
248 |
-
$ids = $wpdb->get_results("SELECT `id`, `page`, `page_loc`, `page_par` FROM `
|
249 |
|
250 |
$group_array = array();
|
251 |
foreach($ids as $id) {
|
252 |
$pages = explode(",", $id->page);
|
253 |
-
|
|
|
254 |
if(in_array($post->ID, $pages)) {
|
255 |
$group_array[$id->id] = array('location' => $id->page_loc, 'paragraph' => $id->page_par, 'pages' => $pages);
|
256 |
}
|
@@ -303,26 +291,29 @@ function adrotate_inject_pages($post_content) {
|
|
303 |
}
|
304 |
|
305 |
// Adverts inside the content
|
306 |
-
if($group_array[$group_id]['location'] == 4) {
|
307 |
-
|
|
|
|
|
308 |
$par = 1;
|
309 |
$post_content = '';
|
310 |
-
foreach($paragraphs as
|
|
|
311 |
if($par == $group_array[$group_id]['paragraph']
|
312 |
OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
|
313 |
OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
|
314 |
OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
|
315 |
-
$paragraph
|
316 |
|
|
|
317 |
if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
|
318 |
$par = 1;
|
319 |
-
} else {
|
320 |
-
$par++;
|
321 |
}
|
322 |
} else {
|
323 |
$par++;
|
324 |
}
|
325 |
$post_content .= $paragraph;
|
|
|
326 |
}
|
327 |
}
|
328 |
}
|
@@ -346,15 +337,16 @@ function adrotate_inject_posts($post_content) {
|
|
346 |
|
347 |
if(is_single()) {
|
348 |
// Inject ads into posts in specified category
|
349 |
-
$ids = $wpdb->get_results("SELECT `id`, `cat`, `cat_loc`, `cat_par` FROM `
|
350 |
$wp_categories = get_terms('category', array('fields' => 'ids'));
|
351 |
|
352 |
$group_array = array();
|
353 |
foreach($ids as $id) {
|
354 |
$categories = explode(",", $id->cat);
|
355 |
-
|
356 |
-
|
357 |
-
|
|
|
358 |
$group_array[$id->id] = array('location' => $id->cat_loc, 'paragraph' => $id->cat_par, 'categories' => $categories);
|
359 |
}
|
360 |
}
|
@@ -406,26 +398,29 @@ function adrotate_inject_posts($post_content) {
|
|
406 |
}
|
407 |
|
408 |
// Adverts inside the content
|
409 |
-
if($group_array[$group_id]['location'] == 4) {
|
410 |
-
|
|
|
|
|
411 |
$par = 1;
|
412 |
$post_content = '';
|
413 |
-
foreach($paragraphs as
|
|
|
414 |
if($par == $group_array[$group_id]['paragraph']
|
415 |
OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
|
416 |
OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
|
417 |
OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
|
418 |
-
$paragraph
|
419 |
|
|
|
420 |
if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
|
421 |
$par = 1;
|
422 |
-
} else {
|
423 |
-
$par++;
|
424 |
}
|
425 |
} else {
|
426 |
$par++;
|
427 |
}
|
428 |
$post_content .= $paragraph;
|
|
|
429 |
}
|
430 |
}
|
431 |
}
|
@@ -463,7 +458,7 @@ function adrotate_preview($banner_id) {
|
|
463 |
if($banner_id) {
|
464 |
$now = adrotate_now();
|
465 |
|
466 |
-
$banner = $wpdb->get_row($wpdb->prepare("SELECT * FROM `
|
467 |
|
468 |
if($adrotate_debug['general'] == true) {
|
469 |
echo "<p><strong>[DEBUG][adrotate_preview()] Ad information</strong><pre>";
|
@@ -506,7 +501,7 @@ function adrotate_ad_output($id, $group = 0, $bannercode, $tracker, $link, $imag
|
|
506 |
|
507 |
if($adrotate_config['stats'] == 1 AND $tracker == "Y") { // Internal tracker
|
508 |
$banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
|
509 |
-
preg_match_all('/<a[^>](
|
510 |
if(isset($matches[0])) {
|
511 |
foreach($matches[0] as $value) {
|
512 |
if(preg_match('/<a[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
|
@@ -526,10 +521,10 @@ function adrotate_ad_output($id, $group = 0, $bannercode, $tracker, $link, $imag
|
|
526 |
}
|
527 |
|
528 |
// Add Responsive classes
|
529 |
-
preg_match_all('/<img[^>](
|
530 |
if(isset($matches[0])) {
|
531 |
foreach($matches[0] as $value) {
|
532 |
-
if(preg_match('/<img[^>]+class=\"(
|
533 |
$result = $regs[1];
|
534 |
if($responsive == 'Y') $result .= " responsive";
|
535 |
$result = trim($result);
|
@@ -601,7 +596,7 @@ function adrotate_custom_scripts() {
|
|
601 |
function adrotate_custom_javascript() {
|
602 |
global $wpdb, $adrotate_config;
|
603 |
|
604 |
-
$groups = $wpdb->get_results("SELECT `id`, `adspeed` FROM `
|
605 |
if($groups) {
|
606 |
$output_js = "jQuery(document).ready(function(){\n";
|
607 |
$output_js .= "if(jQuery.fn.gslider) {\n";
|
@@ -645,7 +640,7 @@ function adrotate_custom_css() {
|
|
645 |
|
646 |
$output = "\n<!-- This site is using AdRotate v".ADROTATE_DISPLAY." to display their advertisements - https://ajdg.solutions/products/adrotate-for-wordpress/ -->\n";
|
647 |
|
648 |
-
$groups = $wpdb->get_results("SELECT `id`, `modus`, `gridrows`, `gridcolumns`, `adwidth`, `adheight`, `admargin`, `align` FROM `
|
649 |
if($groups) {
|
650 |
$output_css = "\t.g { margin:0px; padding:0px; overflow:hidden; line-height:1; zoom:1; }\n";
|
651 |
$output_css .= "\t.g img { height:auto; }\n";
|
13 |
Name: adrotate_ad
|
14 |
|
15 |
Purpose: Show requested ad
|
16 |
+
Receive: $banner_id, $individual, $group, $site, $nowrapper
|
17 |
Return: $output
|
18 |
Since: 3.0
|
19 |
-------------------------------------------------------------*/
|
20 |
+
function adrotate_ad($banner_id, $individual = true, $group = null, $site = 0, $nowrapper = 1) {
|
21 |
global $wpdb, $adrotate_config, $adrotate_debug;
|
22 |
|
23 |
$output = '';
|
24 |
|
25 |
if($banner_id) {
|
26 |
+
$banner = $wpdb->get_row($wpdb->prepare("SELECT `id`, `bannercode`, `tracker`, `link`, `image`, `responsive` FROM `{$wpdb->prefix}adrotate` WHERE `id` = %d AND (`type` = 'active' OR `type` = '2days' OR `type` = '7days');", $banner_id));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
if($banner) {
|
29 |
if($adrotate_debug['general'] == true) {
|
39 |
}
|
40 |
|
41 |
if($selected) {
|
42 |
+
$nowrapper = ($nowrapper == 1) ? true : false;
|
43 |
$image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
|
44 |
|
45 |
+
if($individual == true AND $nowrapper == false) $output .= '<div class="a-single a-'.$banner->id.'">';
|
46 |
$output .= adrotate_ad_output($banner->id, 0, $banner->bannercode, $banner->tracker, $banner->link, $image, $banner->responsive);
|
47 |
+
if($individual == true AND $nowrapper == false) $output .= '</div>';
|
48 |
|
49 |
if($adrotate_config['stats'] == 1 AND $banner->tracker == "Y") {
|
50 |
adrotate_count_impression($banner->id, 0, 0);
|
64 |
Name: adrotate_group
|
65 |
|
66 |
Purpose: Fetch ads in specified group(s) and show a random ad
|
67 |
+
Receive: $group_ids, $fallback, $weight, $site, $nowrapper
|
68 |
Return: $output
|
69 |
Since: 3.0
|
70 |
-------------------------------------------------------------*/
|
71 |
+
function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0, $nowrapper = 1) {
|
72 |
global $wpdb, $adrotate_config, $adrotate_debug;
|
73 |
|
74 |
+
$output = $group_select = '';
|
75 |
if($group_ids) {
|
76 |
$now = adrotate_now();
|
77 |
+
$group_array = (!is_array($group_ids)) ? explode(",", $group_ids) : $group_ids;
|
|
|
78 |
|
79 |
foreach($group_array as $key => $value) {
|
80 |
$group_select .= " `{$wpdb->prefix}adrotate_linkmeta`.`group` = {$value} OR";
|
90 |
}
|
91 |
|
92 |
if($group) {
|
|
|
|
|
|
|
93 |
// Get all ads in all selected groups
|
94 |
$ads = $wpdb->get_results(
|
95 |
"SELECT
|
110 |
AND (`{$wpdb->prefix}adrotate`.`type` = 'active'
|
111 |
OR `{$wpdb->prefix}adrotate`.`type` = '2days'
|
112 |
OR `{$wpdb->prefix}adrotate`.`type` = '7days')
|
|
|
113 |
GROUP BY `{$wpdb->prefix}adrotate`.`id`
|
114 |
ORDER BY `{$wpdb->prefix}adrotate`.`id`;");
|
115 |
|
135 |
$array_count = count($selected);
|
136 |
if($array_count > 0) {
|
137 |
$before = $after = '';
|
138 |
+
$nowrapper = ($nowrapper == 1) ? true : false;
|
139 |
$before = str_replace('%id%', $group_array[0], stripslashes(html_entity_decode($group->wrapper_before, ENT_QUOTES)));
|
140 |
$after = str_replace('%id%', $group_array[0], stripslashes(html_entity_decode($group->wrapper_after, ENT_QUOTES)));
|
141 |
|
142 |
+
if($nowrapper == false AND $group->modus < 1) $output .= '<div class="g g-'.$group->id.'">';
|
143 |
|
144 |
if($group->modus == 1) { // Dynamic ads
|
145 |
$i = 1;
|
191 |
|
192 |
$image = str_replace('%folder%', $adrotate_config['banner_folder'], $selected[$banner_id]->image);
|
193 |
|
194 |
+
if($nowrapper == false) $output .= '<div class="g-single a-'.$selected[$banner_id]->id.'">';
|
195 |
$output .= $before.adrotate_ad_output($selected[$banner_id]->id, $group->id, $selected[$banner_id]->bannercode, $selected[$banner_id]->tracker, $selected[$banner_id]->link, $image, $selected[$banner_id]->responsive).$after;
|
196 |
+
if($nowrapper == false) $output .= '</div>';
|
197 |
|
198 |
if($adrotate_config['stats'] == 1){
|
199 |
adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
|
200 |
}
|
201 |
}
|
202 |
|
203 |
+
if($nowrapper == false AND $group->modus < 1) $output .= '</div>';
|
204 |
|
205 |
unset($selected);
|
206 |
} else {
|
232 |
|
233 |
if(is_page()) {
|
234 |
// Inject ads into page
|
235 |
+
$ids = $wpdb->get_results("SELECT `id`, `page`, `page_loc`, `page_par` FROM `{$wpdb->prefix}adrotate_groups` WHERE `page_loc` > 0;");
|
236 |
|
237 |
$group_array = array();
|
238 |
foreach($ids as $id) {
|
239 |
$pages = explode(",", $id->page);
|
240 |
+
if(!is_array($pages)) $pages = array();
|
241 |
+
|
242 |
if(in_array($post->ID, $pages)) {
|
243 |
$group_array[$id->id] = array('location' => $id->page_loc, 'paragraph' => $id->page_par, 'pages' => $pages);
|
244 |
}
|
291 |
}
|
292 |
|
293 |
// Adverts inside the content
|
294 |
+
if($group_array[$group_id]['location'] == 4 AND $key == 0) {
|
295 |
+
preg_match_all("/(?:.*?)<p[^>]*>(?:.*?)<\/p>(?:<\/[a-z]*?>)*/is", $post_content, $paragraphs);
|
296 |
+
// $paragraphs = explode("</p>", $post_content);
|
297 |
+
|
298 |
$par = 1;
|
299 |
$post_content = '';
|
300 |
+
foreach($paragraphs[0] as &$paragraph) {
|
301 |
+
// foreach($paragraphs as &$paragraph) {
|
302 |
if($par == $group_array[$group_id]['paragraph']
|
303 |
OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
|
304 |
OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
|
305 |
OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
|
306 |
+
$paragraph .= adrotate_group($group_id);
|
307 |
|
308 |
+
$par++;
|
309 |
if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
|
310 |
$par = 1;
|
|
|
|
|
311 |
}
|
312 |
} else {
|
313 |
$par++;
|
314 |
}
|
315 |
$post_content .= $paragraph;
|
316 |
+
unset($paragraph);
|
317 |
}
|
318 |
}
|
319 |
}
|
337 |
|
338 |
if(is_single()) {
|
339 |
// Inject ads into posts in specified category
|
340 |
+
$ids = $wpdb->get_results("SELECT `id`, `cat`, `cat_loc`, `cat_par` FROM `{$wpdb->prefix}adrotate_groups` WHERE `cat_loc` > 0;");
|
341 |
$wp_categories = get_terms('category', array('fields' => 'ids'));
|
342 |
|
343 |
$group_array = array();
|
344 |
foreach($ids as $id) {
|
345 |
$categories = explode(",", $id->cat);
|
346 |
+
if(!is_array($categories)) $categories = array();
|
347 |
+
|
348 |
+
foreach($wp_categories as &$value) {
|
349 |
+
if(in_array($value, $categories)) {
|
350 |
$group_array[$id->id] = array('location' => $id->cat_loc, 'paragraph' => $id->cat_par, 'categories' => $categories);
|
351 |
}
|
352 |
}
|
398 |
}
|
399 |
|
400 |
// Adverts inside the content
|
401 |
+
if($group_array[$group_id]['location'] == 4 AND $key == 0) {
|
402 |
+
preg_match_all("/(?:.*?)<p[^>]*>(?:.*?)<\/p>(?:<\/[a-z]*?>)*/is", $post_content, $paragraphs);
|
403 |
+
// $paragraphs = explode("</p>", $post_content);
|
404 |
+
|
405 |
$par = 1;
|
406 |
$post_content = '';
|
407 |
+
foreach($paragraphs[0] as &$paragraph) {
|
408 |
+
// foreach($paragraphs as &$paragraph) {
|
409 |
if($par == $group_array[$group_id]['paragraph']
|
410 |
OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
|
411 |
OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
|
412 |
OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
|
413 |
+
$paragraph .= adrotate_group($group_id);
|
414 |
|
415 |
+
$par++;
|
416 |
if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
|
417 |
$par = 1;
|
|
|
|
|
418 |
}
|
419 |
} else {
|
420 |
$par++;
|
421 |
}
|
422 |
$post_content .= $paragraph;
|
423 |
+
unset($paragraph);
|
424 |
}
|
425 |
}
|
426 |
}
|
458 |
if($banner_id) {
|
459 |
$now = adrotate_now();
|
460 |
|
461 |
+
$banner = $wpdb->get_row($wpdb->prepare("SELECT * FROM `{$wpdb->prefix}adrotate` WHERE `id` = %d;", $banner_id));
|
462 |
|
463 |
if($adrotate_debug['general'] == true) {
|
464 |
echo "<p><strong>[DEBUG][adrotate_preview()] Ad information</strong><pre>";
|
501 |
|
502 |
if($adrotate_config['stats'] == 1 AND $tracker == "Y") { // Internal tracker
|
503 |
$banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
|
504 |
+
preg_match_all('/<a[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
|
505 |
if(isset($matches[0])) {
|
506 |
foreach($matches[0] as $value) {
|
507 |
if(preg_match('/<a[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
|
521 |
}
|
522 |
|
523 |
// Add Responsive classes
|
524 |
+
preg_match_all('/<img[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
|
525 |
if(isset($matches[0])) {
|
526 |
foreach($matches[0] as $value) {
|
527 |
+
if(preg_match('/<img[^>]+class=\"(?:.+?)\"[^>]*>/i', $value, $regs)) {
|
528 |
$result = $regs[1];
|
529 |
if($responsive == 'Y') $result .= " responsive";
|
530 |
$result = trim($result);
|
596 |
function adrotate_custom_javascript() {
|
597 |
global $wpdb, $adrotate_config;
|
598 |
|
599 |
+
$groups = $wpdb->get_results("SELECT `id`, `adspeed` FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' AND `modus` = 1 ORDER BY `id` ASC;");
|
600 |
if($groups) {
|
601 |
$output_js = "jQuery(document).ready(function(){\n";
|
602 |
$output_js .= "if(jQuery.fn.gslider) {\n";
|
640 |
|
641 |
$output = "\n<!-- This site is using AdRotate v".ADROTATE_DISPLAY." to display their advertisements - https://ajdg.solutions/products/adrotate-for-wordpress/ -->\n";
|
642 |
|
643 |
+
$groups = $wpdb->get_results("SELECT `id`, `modus`, `gridrows`, `gridcolumns`, `adwidth`, `adheight`, `admargin`, `align` FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
|
644 |
if($groups) {
|
645 |
$output_css = "\t.g { margin:0px; padding:0px; overflow:hidden; line-height:1; zoom:1; }\n";
|
646 |
$output_css .= "\t.g img { height:auto; }\n";
|
adrotate-setup.php
CHANGED
@@ -401,6 +401,7 @@ function adrotate_database_install() {
|
|
401 |
`image` varchar(255) NOT NULL,
|
402 |
`link` longtext NOT NULL,
|
403 |
`tracker` varchar(5) NOT NULL default 'N',
|
|
|
404 |
`responsive` varchar(5) NOT NULL default 'N',
|
405 |
`type` varchar(10) NOT NULL default '0',
|
406 |
`weight` int(3) NOT NULL default '6',
|
@@ -427,6 +428,7 @@ function adrotate_database_install() {
|
|
427 |
`page` longtext NOT NULL,
|
428 |
`page_loc` tinyint(1) NOT NULL default '0',
|
429 |
`page_par` tinyint(2) NOT NULL default '0',
|
|
|
430 |
`geo` tinyint(1) NOT NULL default '0',
|
431 |
`wrapper_before` longtext NOT NULL,
|
432 |
`wrapper_after` longtext NOT NULL,
|
@@ -739,6 +741,13 @@ function adrotate_database_upgrade() {
|
|
739 |
adrotate_del_column("{$wpdb->prefix}adrotate", 'ibudget');
|
740 |
}
|
741 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
742 |
update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
|
743 |
}
|
744 |
|
401 |
`image` varchar(255) NOT NULL,
|
402 |
`link` longtext NOT NULL,
|
403 |
`tracker` varchar(5) NOT NULL default 'N',
|
404 |
+
`mobile` varchar(5) NOT NULL default 'N',
|
405 |
`responsive` varchar(5) NOT NULL default 'N',
|
406 |
`type` varchar(10) NOT NULL default '0',
|
407 |
`weight` int(3) NOT NULL default '6',
|
428 |
`page` longtext NOT NULL,
|
429 |
`page_loc` tinyint(1) NOT NULL default '0',
|
430 |
`page_par` tinyint(2) NOT NULL default '0',
|
431 |
+
`mobile` tinyint(1) NOT NULL default '0',
|
432 |
`geo` tinyint(1) NOT NULL default '0',
|
433 |
`wrapper_before` longtext NOT NULL,
|
434 |
`wrapper_after` longtext NOT NULL,
|
741 |
adrotate_del_column("{$wpdb->prefix}adrotate", 'ibudget');
|
742 |
}
|
743 |
|
744 |
+
// Database: 51
|
745 |
+
// AdRotate: 3.12.5b2
|
746 |
+
if($adrotate_db_version['current'] < 51) {
|
747 |
+
adrotate_add_column("{$wpdb->prefix}adrotate", 'mobile', 'varchar(5) NOT NULL default \'N\' AFTER `tracker`');
|
748 |
+
adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'mobile', 'tinyint(1) NOT NULL default \'0\' AFTER `page_par`');
|
749 |
+
}
|
750 |
+
|
751 |
update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
|
752 |
}
|
753 |
|
adrotate.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=
|
|
5 |
Author: Arnan de Gans of AJdG Solutions
|
6 |
Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage&pk_kwd=authorurl
|
7 |
Description: Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple.
|
8 |
-
Version: 3.11.
|
9 |
License: GPLv3
|
10 |
*/
|
11 |
|
@@ -20,9 +20,9 @@ License: GPLv3
|
|
20 |
------------------------------------------------------------------------------------ */
|
21 |
|
22 |
/*--- AdRotate values ---------------------------------------*/
|
23 |
-
define("ADROTATE_DISPLAY", '3.11.
|
24 |
define("ADROTATE_VERSION", 379);
|
25 |
-
define("ADROTATE_DB_VERSION",
|
26 |
define("ADROTATE_FOLDER", 'adrotate');
|
27 |
/*-----------------------------------------------------------*/
|
28 |
|
5 |
Author: Arnan de Gans of AJdG Solutions
|
6 |
Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage&pk_kwd=authorurl
|
7 |
Description: Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple.
|
8 |
+
Version: 3.11.5
|
9 |
License: GPLv3
|
10 |
*/
|
11 |
|
20 |
------------------------------------------------------------------------------------ */
|
21 |
|
22 |
/*--- AdRotate values ---------------------------------------*/
|
23 |
+
define("ADROTATE_DISPLAY", '3.11.5');
|
24 |
define("ADROTATE_VERSION", 379);
|
25 |
+
define("ADROTATE_DB_VERSION", 51);
|
26 |
define("ADROTATE_FOLDER", 'adrotate');
|
27 |
/*-----------------------------------------------------------*/
|
28 |
|
dashboard/adrotate-info.php
CHANGED
@@ -54,6 +54,7 @@ $banners = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate` WHER
|
|
54 |
$groups = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '';");
|
55 |
$queued = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'queue';");
|
56 |
$data = get_option("adrotate_advert_status");
|
|
|
57 |
?>
|
58 |
|
59 |
<div id="dashboard-widgets-wrap">
|
@@ -88,6 +89,7 @@ $data = get_option("adrotate_advert_status");
|
|
88 |
</tr>
|
89 |
</tbody>
|
90 |
|
|
|
91 |
<thead>
|
92 |
<tr class="first">
|
93 |
<td colspan="2"><strong><?php _e('The last few days', 'adrotate'); ?></strong></td>
|
@@ -126,6 +128,7 @@ $data = get_option("adrotate_advert_status");
|
|
126 |
</td>
|
127 |
</tr>
|
128 |
</tbody>
|
|
|
129 |
|
130 |
<thead>
|
131 |
<tr class="first">
|
@@ -137,7 +140,7 @@ $data = get_option("adrotate_advert_status");
|
|
137 |
<tr class="first">
|
138 |
<td colspan="2">
|
139 |
<p><center><?php _e('Your gift helps ensure the continued development of AdRotate!', 'adrotate'); ?><br /><?php _e("Can't donate money? Consider writing a review instead. Thank you!", 'adrotate'); ?></center></p>
|
140 |
-
<p><center><a class="button-primary" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40ajdg%2enet&item_name=AdRotate%20Donation&
|
141 |
</td>
|
142 |
</tr>
|
143 |
</tbody>
|
@@ -148,14 +151,31 @@ $data = get_option("adrotate_advert_status");
|
|
148 |
<h3><?php _e('AdRotate News and Developer Blog', 'adrotate'); ?></h3>
|
149 |
<div class="postbox-adrotate">
|
150 |
<div class="inside">
|
151 |
-
<?php
|
152 |
-
|
|
|
153 |
'title' => 'AdRotate Development News',
|
154 |
'items' => 4,
|
155 |
'show_summary' => 1,
|
156 |
'show_author' => 0,
|
157 |
'show_date' => 1)
|
158 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
</div>
|
160 |
</div>
|
161 |
|
54 |
$groups = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '';");
|
55 |
$queued = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'queue';");
|
56 |
$data = get_option("adrotate_advert_status");
|
57 |
+
$adrotate_config = get_option('adrotate_config');
|
58 |
?>
|
59 |
|
60 |
<div id="dashboard-widgets-wrap">
|
89 |
</tr>
|
90 |
</tbody>
|
91 |
|
92 |
+
<?php if($adrotate_config['stats'] == 1) { ?>
|
93 |
<thead>
|
94 |
<tr class="first">
|
95 |
<td colspan="2"><strong><?php _e('The last few days', 'adrotate'); ?></strong></td>
|
128 |
</td>
|
129 |
</tr>
|
130 |
</tbody>
|
131 |
+
<?php } ?>
|
132 |
|
133 |
<thead>
|
134 |
<tr class="first">
|
140 |
<tr class="first">
|
141 |
<td colspan="2">
|
142 |
<p><center><?php _e('Your gift helps ensure the continued development of AdRotate!', 'adrotate'); ?><br /><?php _e("Can't donate money? Consider writing a review instead. Thank you!", 'adrotate'); ?></center></p>
|
143 |
+
<p><center><a class="button-primary" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40ajdg%2enet&item_name=AdRotate%20Donation&no_shipping=0&no_note=0&tax=0¤cy_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8&amount=5" target="_blank">Donate € 5 via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Write review on WordPress.org</a></center></p>
|
144 |
</td>
|
145 |
</tr>
|
146 |
</tbody>
|
151 |
<h3><?php _e('AdRotate News and Developer Blog', 'adrotate'); ?></h3>
|
152 |
<div class="postbox-adrotate">
|
153 |
<div class="inside">
|
154 |
+
<?php
|
155 |
+
wp_widget_rss_output(array(
|
156 |
+
'url' => array('http://meandmymac.net/feed/', 'http://ajdg.solutions/feed/',),
|
157 |
'title' => 'AdRotate Development News',
|
158 |
'items' => 4,
|
159 |
'show_summary' => 1,
|
160 |
'show_author' => 0,
|
161 |
'show_date' => 1)
|
162 |
+
);
|
163 |
+
?>
|
164 |
+
|
165 |
+
<table width="100%">
|
166 |
+
<thead>
|
167 |
+
<tr class="first">
|
168 |
+
<td colspan="2"><strong><?php _e('Get notified of AdRotate updates via Pushover', 'adrotate'); ?></strong></td>
|
169 |
+
</tr>
|
170 |
+
</thead>
|
171 |
+
|
172 |
+
<tbody>
|
173 |
+
<tr class="first">
|
174 |
+
<td width="50%" class="first b"><p><center><a class="pushover-button" target="_blank" href="https://pushover.net/subscribe/AdRotateUpdates-R5GYqJtGHNcwsQY">Subscribe with Pushover</a></center></p></td>
|
175 |
+
<td class="b"><p><?php _e('Pushover is a push notification service for iOS and Android!', 'adrotate'); ?> <a href="https://www.pushover.net/" target="_blank">Pushover website</a>.</p></td>
|
176 |
+
</tr>
|
177 |
+
</tbody>
|
178 |
+
</table>
|
179 |
</div>
|
180 |
</div>
|
181 |
|
dashboard/publisher/adrotate-ads-edit.php
CHANGED
@@ -10,9 +10,9 @@
|
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
|
12 |
if(!$ad_edit_id) {
|
13 |
-
$edit_id = $wpdb->get_var("SELECT `id` FROM `
|
14 |
if($edit_id == 0) {
|
15 |
-
$wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => 'dropdown', 'image' => '', 'link' => '', 'tracker' => 'N', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
16 |
$edit_id = $wpdb->insert_id;
|
17 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0));
|
18 |
$schedule_id = $wpdb->insert_id;
|
@@ -21,10 +21,10 @@ if(!$ad_edit_id) {
|
|
21 |
$ad_edit_id = $edit_id;
|
22 |
}
|
23 |
|
24 |
-
$edit_banner = $wpdb->get_row("SELECT * FROM `
|
25 |
-
$groups = $wpdb->get_results("SELECT * FROM `
|
26 |
-
$schedules = $wpdb->get_row("SELECT `
|
27 |
-
$linkmeta = $wpdb->get_results("SELECT `group` FROM `
|
28 |
|
29 |
wp_enqueue_media();
|
30 |
wp_enqueue_script('uploader-hook', plugins_url().'/'.ADROTATE_FOLDER.'/library/uploader-hook.js', array('jquery'));
|
@@ -112,13 +112,13 @@ if($edit_banner->imagetype == "field") {
|
|
112 |
<table class="widefat" style="margin-top: .5em">
|
113 |
<tbody>
|
114 |
<tr>
|
115 |
-
<th width="15%"><?php _e('Title
|
116 |
<td colspan="2">
|
117 |
<label for="adrotate_title"><input tabindex="1" name="adrotate_title" type="text" size="50" class="search-input" value="<?php echo stripslashes($edit_banner->title);?>" autocomplete="off" /></label>
|
118 |
</td>
|
119 |
</tr>
|
120 |
<tr>
|
121 |
-
<th valign="top"><?php _e('AdCode
|
122 |
<td>
|
123 |
<label for="adrotate_bannercode"><textarea tabindex="2" id="adrotate_bannercode" name="adrotate_bannercode" cols="65" rows="10"><?php echo stripslashes($edit_banner->bannercode); ?></textarea></label>
|
124 |
</td>
|
@@ -130,13 +130,13 @@ if($edit_banner->imagetype == "field") {
|
|
130 |
</td>
|
131 |
</tr>
|
132 |
<tr>
|
133 |
-
<th valign="top"><?php _e('Useful tags
|
134 |
<td colspan="2">
|
135 |
<p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Insert the %image% tag. Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target="_blank"');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel="nofollow"');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
|
136 |
</td>
|
137 |
</tr>
|
138 |
<tr>
|
139 |
-
<th valign="top"><?php _e('Banner image
|
140 |
<td colspan="2">
|
141 |
<label for="adrotate_image">
|
142 |
<?php _e('WordPress media:', 'adrotate'); ?> <input tabindex="3" id="adrotate_image" type="text" size="50" name="adrotate_image" value="<?php echo $image_field; ?>" /> <input tabindex="4" id="adrotate_image_button" class="button" type="button" value="<?php _e('Select Banner', 'adrotate'); ?>" />
|
@@ -153,7 +153,7 @@ if($edit_banner->imagetype == "field") {
|
|
153 |
</tr>
|
154 |
<?php if($adrotate_config['stats'] > 0) { ?>
|
155 |
<tr>
|
156 |
-
<th width="15%" valign="top"><?php _e('Statistics
|
157 |
<td colspan="2">
|
158 |
<label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click and impression tracking for this advert.', 'adrotate'); ?> <br />
|
159 |
<em><?php _e('Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always supported.', 'adrotate'); ?></em>
|
@@ -162,7 +162,7 @@ if($edit_banner->imagetype == "field") {
|
|
162 |
</tr>
|
163 |
<?php } ?>
|
164 |
<tr>
|
165 |
-
<th><?php _e('Activate
|
166 |
<td colspan="2">
|
167 |
<label for="adrotate_active">
|
168 |
<select tabindex="7" name="adrotate_active">
|
@@ -200,13 +200,13 @@ if($edit_banner->imagetype == "field") {
|
|
200 |
<table class="widefat" style="margin-top: .5em">
|
201 |
<tbody>
|
202 |
<tr>
|
203 |
-
<th width="15%"><?php _e('Widget
|
204 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
|
205 |
</tr>
|
206 |
<tr>
|
207 |
-
<th width="15%"><?php _e('In a post or page
|
208 |
<td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
|
209 |
-
<th width="15%"><?php _e('Directly in a theme
|
210 |
<td><?php echo adrotate_ad(<?php echo $edit_banner->id; ?>); ?></td>
|
211 |
</tr>
|
212 |
</tbody>
|
@@ -216,7 +216,7 @@ if($edit_banner->imagetype == "field") {
|
|
216 |
<table class="widefat" style="margin-top: .5em">
|
217 |
<tbody>
|
218 |
<tr>
|
219 |
-
<th width="15%"><?php _e('Start date (day/month/year)
|
220 |
<td>
|
221 |
<label for="adrotate_sday">
|
222 |
<input tabindex="9" name="adrotate_sday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $sday;?>" /> /
|
@@ -237,7 +237,7 @@ if($edit_banner->imagetype == "field") {
|
|
237 |
<input tabindex="11" name="adrotate_syear" class="search-input" type="text" size="4" maxlength="4" value="<?php echo $syear;?>" />
|
238 |
</label>
|
239 |
</td>
|
240 |
-
<th width="15%"><?php _e('End date (day/month/year)
|
241 |
<td>
|
242 |
<label for="adrotate_eday">
|
243 |
<input tabindex="12" name="adrotate_eday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $eday;?>" /> /
|
@@ -260,14 +260,14 @@ if($edit_banner->imagetype == "field") {
|
|
260 |
</td>
|
261 |
</tr>
|
262 |
<tr>
|
263 |
-
<th><?php _e('Start time (hh:mm)
|
264 |
<td>
|
265 |
<label for="adrotate_sday">
|
266 |
<input tabindex="15" name="adrotate_shour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $shour;?>" /> :
|
267 |
<input tabindex="16" name="adrotate_sminute" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $sminute;?>" />
|
268 |
</label>
|
269 |
</td>
|
270 |
-
<th><?php _e('End time (hh:mm)
|
271 |
<td>
|
272 |
<label for="adrotate_eday">
|
273 |
<input tabindex="17" name="adrotate_ehour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $ehour;?>" /> :
|
@@ -277,15 +277,15 @@ if($edit_banner->imagetype == "field") {
|
|
277 |
</tr>
|
278 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
279 |
<tr>
|
280 |
-
<th><?php _e('Maximum Clicks
|
281 |
<td><input tabindex="19" name="adrotate_maxclicks" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maxclicks;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
|
282 |
-
<th><?php _e('Maximum Impressions
|
283 |
<td><input tabindex="20" name="adrotate_maxshown" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maximpressions;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
|
284 |
</tr>
|
285 |
<?php } ?>
|
286 |
<tr>
|
287 |
-
<th valign="top"
|
288 |
-
<td colspan="3"><em><?php _e('Time uses a 24 hour clock. When you
|
289 |
</tr>
|
290 |
</tbody>
|
291 |
</table>
|
@@ -301,7 +301,7 @@ if($edit_banner->imagetype == "field") {
|
|
301 |
<table class="widefat" style="margin-top: .5em">
|
302 |
<tbody>
|
303 |
<tr>
|
304 |
-
<th width="15%" valign="top"><?php _e('Responsive
|
305 |
<td colspan="3">
|
306 |
<label for="adrotate_responsive"><input tabindex="22" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
|
307 |
<em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext". A full set of sized images is strongly recommended.', 'adrotate'); ?></em><br />
|
@@ -310,7 +310,7 @@ if($edit_banner->imagetype == "field") {
|
|
310 |
</td>
|
311 |
</tr>
|
312 |
<tr>
|
313 |
-
<th valign="top"><?php _e('Weight
|
314 |
<td colspan="3">
|
315 |
<label for="adrotate_weight">
|
316 |
<input type="radio" name="adrotate_weight" value="2" disabled /> 2, <?php _e('Barely visible', 'adrotate'); ?><br />
|
@@ -322,7 +322,7 @@ if($edit_banner->imagetype == "field") {
|
|
322 |
</td>
|
323 |
</tr>
|
324 |
<tr>
|
325 |
-
<th><?php _e('Sortorder
|
326 |
<td colspan="3">
|
327 |
<label for="adrotate_sortorder"><input tabindex="23" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_banner->sortorder;?>" /> <em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to ad id.', 'adrotate'); ?></em></label>
|
328 |
</td>
|
@@ -336,14 +336,14 @@ if($edit_banner->imagetype == "field") {
|
|
336 |
<table class="widefat" style="margin-top: .5em">
|
337 |
<tbody>
|
338 |
<tr>
|
339 |
-
<th width="15%" valign="top"><?php _e('Cities/States
|
340 |
<td colspan="2">
|
341 |
<textarea name="adrotate_geo_cities" cols="85" rows="3" disabled>Amsterdam, Noord Holland, New York, California, Tokyo, London</textarea><br />
|
342 |
<p><em><?php _e('A comma separated list of cities (or the Metro ID) and/or states (Also the states ISO codes are supported)', 'adrotate'); ?> (Alkmaar, Philadelphia, Melbourne, ...)<br /><?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate'); ?></em></p>
|
343 |
</td>
|
344 |
</tr>
|
345 |
<tr>
|
346 |
-
<th valign="top"><?php _e('Countries
|
347 |
<td colspan="2">
|
348 |
<label for="adrotate_geo_countries">
|
349 |
<div class="adrotate-select">
|
@@ -379,13 +379,13 @@ if($edit_banner->imagetype == "field") {
|
|
379 |
<table class="widefat" style="margin-top: .5em">
|
380 |
<tbody>
|
381 |
<tr>
|
382 |
-
<th width="15%"><?php _e('Widget
|
383 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
|
384 |
</tr>
|
385 |
<tr>
|
386 |
-
<th width="15%"><?php _e('In a post or page
|
387 |
<td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
|
388 |
-
<th width="15%"><?php _e('Directly in a theme
|
389 |
<td><?php echo adrotate_ad(<?php echo $edit_banner->id; ?>); ?></td>
|
390 |
</tr>
|
391 |
</tbody>
|
@@ -418,7 +418,7 @@ if($edit_banner->imagetype == "field") {
|
|
418 |
if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
|
419 |
if($group->geo == 1 AND $adrotate_config['enable_geo'] > 0) $modus[] = __('Geolocation', 'adrotate');
|
420 |
|
421 |
-
$ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `
|
422 |
$class = ('alternate' != $class) ? 'alternate' : ''; ?>
|
423 |
<tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
|
424 |
<th class="check-column" width="2%"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
|
12 |
if(!$ad_edit_id) {
|
13 |
+
$edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' ORDER BY `id` DESC LIMIT 1;");
|
14 |
if($edit_id == 0) {
|
15 |
+
$wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => 'dropdown', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => 'N', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
|
16 |
$edit_id = $wpdb->insert_id;
|
17 |
$wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0));
|
18 |
$schedule_id = $wpdb->insert_id;
|
21 |
$ad_edit_id = $edit_id;
|
22 |
}
|
23 |
|
24 |
+
$edit_banner = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}adrotate` WHERE `id` = '$ad_edit_id';");
|
25 |
+
$groups = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' ORDER BY `sortorder` ASC, `id` ASC;");
|
26 |
+
$schedules = $wpdb->get_row("SELECT `{$wpdb->prefix}adrotate_schedule`.`id`, `starttime`, `stoptime`, `maxclicks`, `maximpressions` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = $edit_banner->id AND `group` = 0 AND `user` = 0 AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `{$wpdb->prefix}adrotate_schedule`.`id` ASC LIMIT 1;");
|
27 |
+
$linkmeta = $wpdb->get_results("SELECT `group` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '$edit_banner->id' AND `user` = 0 AND `schedule` = 0;");
|
28 |
|
29 |
wp_enqueue_media();
|
30 |
wp_enqueue_script('uploader-hook', plugins_url().'/'.ADROTATE_FOLDER.'/library/uploader-hook.js', array('jquery'));
|
112 |
<table class="widefat" style="margin-top: .5em">
|
113 |
<tbody>
|
114 |
<tr>
|
115 |
+
<th width="15%"><?php _e('Title', 'adrotate'); ?></th>
|
116 |
<td colspan="2">
|
117 |
<label for="adrotate_title"><input tabindex="1" name="adrotate_title" type="text" size="50" class="search-input" value="<?php echo stripslashes($edit_banner->title);?>" autocomplete="off" /></label>
|
118 |
</td>
|
119 |
</tr>
|
120 |
<tr>
|
121 |
+
<th valign="top"><?php _e('AdCode', 'adrotate'); ?></th>
|
122 |
<td>
|
123 |
<label for="adrotate_bannercode"><textarea tabindex="2" id="adrotate_bannercode" name="adrotate_bannercode" cols="65" rows="10"><?php echo stripslashes($edit_banner->bannercode); ?></textarea></label>
|
124 |
</td>
|
130 |
</td>
|
131 |
</tr>
|
132 |
<tr>
|
133 |
+
<th valign="top"><?php _e('Useful tags', 'adrotate'); ?></th>
|
134 |
<td colspan="2">
|
135 |
<p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Insert the %image% tag. Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target="_blank"');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel="nofollow"');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
|
136 |
</td>
|
137 |
</tr>
|
138 |
<tr>
|
139 |
+
<th valign="top"><?php _e('Banner image', 'adrotate'); ?></th>
|
140 |
<td colspan="2">
|
141 |
<label for="adrotate_image">
|
142 |
<?php _e('WordPress media:', 'adrotate'); ?> <input tabindex="3" id="adrotate_image" type="text" size="50" name="adrotate_image" value="<?php echo $image_field; ?>" /> <input tabindex="4" id="adrotate_image_button" class="button" type="button" value="<?php _e('Select Banner', 'adrotate'); ?>" />
|
153 |
</tr>
|
154 |
<?php if($adrotate_config['stats'] > 0) { ?>
|
155 |
<tr>
|
156 |
+
<th width="15%" valign="top"><?php _e('Statistics', 'adrotate'); ?></th>
|
157 |
<td colspan="2">
|
158 |
<label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click and impression tracking for this advert.', 'adrotate'); ?> <br />
|
159 |
<em><?php _e('Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always supported.', 'adrotate'); ?></em>
|
162 |
</tr>
|
163 |
<?php } ?>
|
164 |
<tr>
|
165 |
+
<th><?php _e('Activate', 'adrotate'); ?></th>
|
166 |
<td colspan="2">
|
167 |
<label for="adrotate_active">
|
168 |
<select tabindex="7" name="adrotate_active">
|
200 |
<table class="widefat" style="margin-top: .5em">
|
201 |
<tbody>
|
202 |
<tr>
|
203 |
+
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
204 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
|
205 |
</tr>
|
206 |
<tr>
|
207 |
+
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
208 |
<td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
|
209 |
+
<th width="15%"><?php _e('Directly in a theme', 'adrotate'); ?></th>
|
210 |
<td><?php echo adrotate_ad(<?php echo $edit_banner->id; ?>); ?></td>
|
211 |
</tr>
|
212 |
</tbody>
|
216 |
<table class="widefat" style="margin-top: .5em">
|
217 |
<tbody>
|
218 |
<tr>
|
219 |
+
<th width="15%"><?php _e('Start date (day/month/year)', 'adrotate'); ?></th>
|
220 |
<td>
|
221 |
<label for="adrotate_sday">
|
222 |
<input tabindex="9" name="adrotate_sday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $sday;?>" /> /
|
237 |
<input tabindex="11" name="adrotate_syear" class="search-input" type="text" size="4" maxlength="4" value="<?php echo $syear;?>" />
|
238 |
</label>
|
239 |
</td>
|
240 |
+
<th width="15%"><?php _e('End date (day/month/year)', 'adrotate'); ?></th>
|
241 |
<td>
|
242 |
<label for="adrotate_eday">
|
243 |
<input tabindex="12" name="adrotate_eday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $eday;?>" /> /
|
260 |
</td>
|
261 |
</tr>
|
262 |
<tr>
|
263 |
+
<th><?php _e('Start time (hh:mm)', 'adrotate'); ?></th>
|
264 |
<td>
|
265 |
<label for="adrotate_sday">
|
266 |
<input tabindex="15" name="adrotate_shour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $shour;?>" /> :
|
267 |
<input tabindex="16" name="adrotate_sminute" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $sminute;?>" />
|
268 |
</label>
|
269 |
</td>
|
270 |
+
<th><?php _e('End time (hh:mm)', 'adrotate'); ?></th>
|
271 |
<td>
|
272 |
<label for="adrotate_eday">
|
273 |
<input tabindex="17" name="adrotate_ehour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $ehour;?>" /> :
|
277 |
</tr>
|
278 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
279 |
<tr>
|
280 |
+
<th><?php _e('Maximum Clicks', 'adrotate'); ?></th>
|
281 |
<td><input tabindex="19" name="adrotate_maxclicks" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maxclicks;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
|
282 |
+
<th><?php _e('Maximum Impressions', 'adrotate'); ?></th>
|
283 |
<td><input tabindex="20" name="adrotate_maxshown" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maximpressions;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
|
284 |
</tr>
|
285 |
<?php } ?>
|
286 |
<tr>
|
287 |
+
<th valign="top"><?php _e('Important', 'adrotate'); ?></th>
|
288 |
+
<td colspan="3"><em><?php _e('Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours.', 'adrotate'); ?></em></td>
|
289 |
</tr>
|
290 |
</tbody>
|
291 |
</table>
|
301 |
<table class="widefat" style="margin-top: .5em">
|
302 |
<tbody>
|
303 |
<tr>
|
304 |
+
<th width="15%" valign="top"><?php _e('Responsive', 'adrotate'); ?></th>
|
305 |
<td colspan="3">
|
306 |
<label for="adrotate_responsive"><input tabindex="22" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
|
307 |
<em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext". A full set of sized images is strongly recommended.', 'adrotate'); ?></em><br />
|
310 |
</td>
|
311 |
</tr>
|
312 |
<tr>
|
313 |
+
<th valign="top"><?php _e('Weight', 'adrotate'); ?><br /><em><?php _e('Available in AdRotate Pro', 'adrotate'); ?></em></th>
|
314 |
<td colspan="3">
|
315 |
<label for="adrotate_weight">
|
316 |
<input type="radio" name="adrotate_weight" value="2" disabled /> 2, <?php _e('Barely visible', 'adrotate'); ?><br />
|
322 |
</td>
|
323 |
</tr>
|
324 |
<tr>
|
325 |
+
<th><?php _e('Sortorder', 'adrotate'); ?></th>
|
326 |
<td colspan="3">
|
327 |
<label for="adrotate_sortorder"><input tabindex="23" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_banner->sortorder;?>" /> <em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to ad id.', 'adrotate'); ?></em></label>
|
328 |
</td>
|
336 |
<table class="widefat" style="margin-top: .5em">
|
337 |
<tbody>
|
338 |
<tr>
|
339 |
+
<th width="15%" valign="top"><?php _e('Cities/States', 'adrotate'); ?></strong></th>
|
340 |
<td colspan="2">
|
341 |
<textarea name="adrotate_geo_cities" cols="85" rows="3" disabled>Amsterdam, Noord Holland, New York, California, Tokyo, London</textarea><br />
|
342 |
<p><em><?php _e('A comma separated list of cities (or the Metro ID) and/or states (Also the states ISO codes are supported)', 'adrotate'); ?> (Alkmaar, Philadelphia, Melbourne, ...)<br /><?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate'); ?></em></p>
|
343 |
</td>
|
344 |
</tr>
|
345 |
<tr>
|
346 |
+
<th valign="top"><?php _e('Countries', 'adrotate'); ?></strong></th>
|
347 |
<td colspan="2">
|
348 |
<label for="adrotate_geo_countries">
|
349 |
<div class="adrotate-select">
|
379 |
<table class="widefat" style="margin-top: .5em">
|
380 |
<tbody>
|
381 |
<tr>
|
382 |
+
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
383 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
|
384 |
</tr>
|
385 |
<tr>
|
386 |
+
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
387 |
<td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
|
388 |
+
<th width="15%"><?php _e('Directly in a theme', 'adrotate'); ?></th>
|
389 |
<td><?php echo adrotate_ad(<?php echo $edit_banner->id; ?>); ?></td>
|
390 |
</tr>
|
391 |
</tbody>
|
418 |
if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
|
419 |
if($group->geo == 1 AND $adrotate_config['enable_geo'] > 0) $modus[] = __('Geolocation', 'adrotate');
|
420 |
|
421 |
+
$ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = ".$group->id." AND `user` = 0 AND `schedule` = 0;");
|
422 |
$class = ('alternate' != $class) ? 'alternate' : ''; ?>
|
423 |
<tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
|
424 |
<th class="check-column" width="2%"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
|
dashboard/publisher/adrotate-groups-edit.php
CHANGED
@@ -11,9 +11,9 @@
|
|
11 |
?>
|
12 |
<?php if(!$group_edit_id) {
|
13 |
$action = "group_new";
|
14 |
-
$edit_id = $wpdb->get_var("SELECT `id` FROM `
|
15 |
if($edit_id == 0) {
|
16 |
-
$wpdb->insert($wpdb->prefix.'adrotate_groups', array('name' => '', 'modus' => 0, 'fallback' => '0', 'sortorder' => 0, 'cat' => '', 'cat_loc' => 0, 'cat_par' => 0, 'page' => '', 'page_loc' => 0, 'page_par' => 0, 'geo' => 0, 'wrapper_before' => '', 'wrapper_after' => '', 'gridrows' => 2, 'gridcolumns' => 2, 'admargin' => 0, 'admargin_bottom' => 0, 'admargin_left' => 0, 'admargin_right' => 0, 'adwidth' => '125', 'adheight' => '125', 'adspeed' => 6000));
|
17 |
$edit_id = $wpdb->insert_id;
|
18 |
}
|
19 |
$group_edit_id = $edit_id;
|
@@ -22,10 +22,10 @@
|
|
22 |
$action = "group_edit";
|
23 |
}
|
24 |
|
25 |
-
$edit_group = $wpdb->get_row("SELECT * FROM `
|
26 |
-
$groups
|
27 |
-
$ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `type` FROM `
|
28 |
-
$linkmeta
|
29 |
|
30 |
$meta_array = '';
|
31 |
foreach($linkmeta as $meta) {
|
@@ -48,11 +48,11 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
48 |
<table class="widefat" style="margin-top: .5em">
|
49 |
<tbody>
|
50 |
<tr>
|
51 |
-
<th width="15%"><?php _e('ID
|
52 |
<td colspan="2"><?php echo $edit_group->id; ?></td>
|
53 |
</tr>
|
54 |
<tr>
|
55 |
-
<th width="15%"><?php _e('Name
|
56 |
<td colspan="2">
|
57 |
<label for="adrotate_groupname"><input tabindex="1" name="adrotate_groupname" type="text" class="search-input" size="50" value="<?php echo $edit_group->name; ?>" autocomplete="off" /></label>
|
58 |
</td>
|
@@ -137,13 +137,13 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
137 |
<table class="widefat" style="margin-top: .5em">
|
138 |
<tbody>
|
139 |
<tr>
|
140 |
-
<th width="15%"><?php _e('Widget
|
141 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Ads" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
|
142 |
</tr>
|
143 |
<tr>
|
144 |
-
<th width="15%"><?php _e('In a post or page
|
145 |
<td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
|
146 |
-
<th width="15%"><?php _e('Directly in a theme
|
147 |
<td width="35%"><?php echo adrotate_group(<?php echo $edit_group->id; ?>); ?></td>
|
148 |
</tr>
|
149 |
</tbody>
|
@@ -158,8 +158,8 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
158 |
<table class="widefat" style="margin-top: .5em">
|
159 |
<tbody>
|
160 |
<tr>
|
161 |
-
<th valign="top"><?php _e('Advert Margin', 'adrotate'); ?></strong></th>
|
162 |
-
<td>
|
163 |
<label for="adrotate_admargin"><input tabindex="9" name="adrotate_admargin" type="text" class="search-input" size="5" value="<?php echo $edit_group->admargin; ?>" autocomplete="off" /> <?php _e('pixel(s)', 'adrotate'); ?>.</label>
|
164 |
</td>
|
165 |
<td colspan="2">
|
@@ -180,19 +180,29 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
180 |
<p><em><?php _e('Align the group in your post or page. Using \'center\' may affect your margin setting. Not every theme supports this feature.', 'adrotate'); ?></em></p>
|
181 |
</td>
|
182 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
<tr>
|
184 |
-
<th valign="top"><?php _e('Sortorder
|
185 |
<td><label for="adrotate_sortorder"><input tabindex="11" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_group->sortorder;?>" /></label></td>
|
186 |
<td><em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to group id.', 'adrotate'); ?></em></td>
|
187 |
</tr>
|
188 |
</tbody>
|
189 |
</table>
|
190 |
-
<center><?php _e('Set up
|
191 |
|
192 |
<h3><?php _e('Post Injection', 'adrotate'); ?></h3>
|
193 |
<table class="widefat" style="margin-top: .5em">
|
194 |
<tr>
|
195 |
-
<th width="15%"><?php _e('
|
196 |
<td>
|
197 |
<label for="adrotate_cat_location">
|
198 |
<select tabindex="12" name="adrotate_cat_location">
|
@@ -233,7 +243,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
233 |
</td>
|
234 |
</tr>
|
235 |
<tr>
|
236 |
-
<th valign="top"><?php _e('
|
237 |
<td>
|
238 |
<label for="adrotate_page_location">
|
239 |
<select tabindex="14" name="adrotate_page_location">
|
@@ -280,13 +290,13 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
280 |
<table class="widefat" style="margin-top: .5em">
|
281 |
<tbody>
|
282 |
<tr>
|
283 |
-
<th width="15%"><?php _e('Widget
|
284 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Ads" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
|
285 |
</tr>
|
286 |
<tr>
|
287 |
-
<th width="15%"><?php _e('In a post or page
|
288 |
<td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
|
289 |
-
<th width="15%"><?php _e('Directly in a theme
|
290 |
<td width="35%"><?php echo adrotate_group(<?php echo $edit_group->id; ?>); ?></td>
|
291 |
</tr>
|
292 |
</tbody>
|
@@ -298,11 +308,11 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
298 |
</p>
|
299 |
|
300 |
<h3><?php _e('Wrapper code', 'adrotate'); ?></h3>
|
301 |
-
<p><em><?php _e('Wraps around each
|
302 |
<table class="widefat" style="margin-top: .5em">
|
303 |
<tbody>
|
304 |
<tr>
|
305 |
-
<th width="15%" valign="top"><?php _e('Before
|
306 |
<td colspan="2"><textarea tabindex="17" name="adrotate_wrapper_before" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_before); ?></textarea></td>
|
307 |
<td width="35%">
|
308 |
<p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em><span style="background-color:#aaa;"></em></p>
|
@@ -310,7 +320,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
310 |
</td>
|
311 |
</tr>
|
312 |
<tr>
|
313 |
-
<th valign="top"><?php _e('After
|
314 |
<td colspan="2"><textarea tabindex="18" name="adrotate_wrapper_after" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_after); ?></textarea></td>
|
315 |
<td>
|
316 |
<p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em></span></em></p>
|
@@ -319,7 +329,7 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
319 |
</tbody>
|
320 |
</table>
|
321 |
|
322 |
-
<h3><?php _e('Select
|
323 |
<table class="widefat" style="margin-top: .5em">
|
324 |
<thead>
|
325 |
<tr>
|
@@ -338,16 +348,16 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
338 |
<?php if($ads) {
|
339 |
$class = '';
|
340 |
foreach($ads as $ad) {
|
341 |
-
$stoptime = $wpdb->get_var("SELECT `stoptime` FROM `
|
342 |
|
343 |
if($adrotate_config['stats'] == 1) {
|
344 |
$stats = adrotate_stats($ad->id);
|
345 |
}
|
346 |
|
347 |
$errorclass = '';
|
348 |
-
if($ad->type == 'error') $errorclass = ' row_error';
|
349 |
-
if($
|
350 |
-
if($
|
351 |
|
352 |
$class = ('alternate' != $class) ? 'alternate' : '';
|
353 |
$class = ($errorclass != '') ? $errorclass : $class;
|
11 |
?>
|
12 |
<?php if(!$group_edit_id) {
|
13 |
$action = "group_new";
|
14 |
+
$edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` = '' ORDER BY `id` DESC LIMIT 1;");
|
15 |
if($edit_id == 0) {
|
16 |
+
$wpdb->insert($wpdb->prefix.'adrotate_groups', array('name' => '', 'modus' => 0, 'fallback' => '0', 'sortorder' => 0, 'cat' => '', 'cat_loc' => 0, 'cat_par' => 0, 'page' => '', 'page_loc' => 0, 'page_par' => 0, 'mobile' => 0, 'geo' => 0, 'wrapper_before' => '', 'wrapper_after' => '', 'gridrows' => 2, 'gridcolumns' => 2, 'admargin' => 0, 'admargin_bottom' => 0, 'admargin_left' => 0, 'admargin_right' => 0, 'adwidth' => '125', 'adheight' => '125', 'adspeed' => 6000));
|
17 |
$edit_id = $wpdb->insert_id;
|
18 |
}
|
19 |
$group_edit_id = $edit_id;
|
22 |
$action = "group_edit";
|
23 |
}
|
24 |
|
25 |
+
$edit_group = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = '$group_edit_id';");
|
26 |
+
$groups = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
|
27 |
+
$ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `type` FROM `{$wpdb->prefix}adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty') ORDER BY `id` ASC;");
|
28 |
+
$linkmeta = $wpdb->get_results("SELECT `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `user` = 0;");
|
29 |
|
30 |
$meta_array = '';
|
31 |
foreach($linkmeta as $meta) {
|
48 |
<table class="widefat" style="margin-top: .5em">
|
49 |
<tbody>
|
50 |
<tr>
|
51 |
+
<th width="15%"><?php _e('ID', 'adrotate'); ?></th>
|
52 |
<td colspan="2"><?php echo $edit_group->id; ?></td>
|
53 |
</tr>
|
54 |
<tr>
|
55 |
+
<th width="15%"><?php _e('Name', 'adrotate'); ?></th>
|
56 |
<td colspan="2">
|
57 |
<label for="adrotate_groupname"><input tabindex="1" name="adrotate_groupname" type="text" class="search-input" size="50" value="<?php echo $edit_group->name; ?>" autocomplete="off" /></label>
|
58 |
</td>
|
137 |
<table class="widefat" style="margin-top: .5em">
|
138 |
<tbody>
|
139 |
<tr>
|
140 |
+
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
141 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Ads" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
|
142 |
</tr>
|
143 |
<tr>
|
144 |
+
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
145 |
<td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
|
146 |
+
<th width="15%"><?php _e('Directly in a theme', 'adrotate'); ?></th>
|
147 |
<td width="35%"><?php echo adrotate_group(<?php echo $edit_group->id; ?>); ?></td>
|
148 |
</tr>
|
149 |
</tbody>
|
158 |
<table class="widefat" style="margin-top: .5em">
|
159 |
<tbody>
|
160 |
<tr>
|
161 |
+
<th width="15%" valign="top"><?php _e('Advert Margin', 'adrotate'); ?></strong></th>
|
162 |
+
<td width="35%">
|
163 |
<label for="adrotate_admargin"><input tabindex="9" name="adrotate_admargin" type="text" class="search-input" size="5" value="<?php echo $edit_group->admargin; ?>" autocomplete="off" /> <?php _e('pixel(s)', 'adrotate'); ?>.</label>
|
164 |
</td>
|
165 |
<td colspan="2">
|
180 |
<p><em><?php _e('Align the group in your post or page. Using \'center\' may affect your margin setting. Not every theme supports this feature.', 'adrotate'); ?></em></p>
|
181 |
</td>
|
182 |
</tr>
|
183 |
+
<tr>
|
184 |
+
<th width="15%" valign="top"><?php _e('Geo Targeting', 'adrotate'); ?></th>
|
185 |
+
<td width="35%"><label for="adrotate_geo"><input type="checkbox" name="adrotate_geo" value="1" disabled /> <?php _e('Enable Geo Targeting for this group.', 'adrotate'); ?></label></td>
|
186 |
+
<td><p><em><?php _e('Do not forget to tell the adverts for which areas they should show.', 'adrotate'); ?></em></p></td>
|
187 |
+
</tr>
|
188 |
+
<tr>
|
189 |
+
<th width="15%" valign="top"><?php _e('Mobile support', 'adrotate'); ?></th>
|
190 |
+
<td width="35%"><label for="adrotate_mobile"><input type="checkbox" name="adrotate_mobile" value="1" disabled /> <?php _e('Enable mobile support for this group.', 'adrotate'); ?></label></td>
|
191 |
+
<td><p><em><?php _e('Do not forget to put at least one mobile advert in this group.', 'adrotate'); ?></em></p></td>
|
192 |
+
</tr>
|
193 |
<tr>
|
194 |
+
<th valign="top"><?php _e('Sortorder', 'adrotate'); ?></th>
|
195 |
<td><label for="adrotate_sortorder"><input tabindex="11" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_group->sortorder;?>" /></label></td>
|
196 |
<td><em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to group id.', 'adrotate'); ?></em></td>
|
197 |
</tr>
|
198 |
</tbody>
|
199 |
</table>
|
200 |
+
<center><?php _e('Set up mobile support and use Geo Targeting in AdRotate Pro', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
|
201 |
|
202 |
<h3><?php _e('Post Injection', 'adrotate'); ?></h3>
|
203 |
<table class="widefat" style="margin-top: .5em">
|
204 |
<tr>
|
205 |
+
<th width="15%"><?php _e('In categories?', 'adrotate'); ?></th>
|
206 |
<td>
|
207 |
<label for="adrotate_cat_location">
|
208 |
<select tabindex="12" name="adrotate_cat_location">
|
243 |
</td>
|
244 |
</tr>
|
245 |
<tr>
|
246 |
+
<th valign="top"><?php _e('In pages?', 'adrotate'); ?></th>
|
247 |
<td>
|
248 |
<label for="adrotate_page_location">
|
249 |
<select tabindex="14" name="adrotate_page_location">
|
290 |
<table class="widefat" style="margin-top: .5em">
|
291 |
<tbody>
|
292 |
<tr>
|
293 |
+
<th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
|
294 |
<td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Ads" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
|
295 |
</tr>
|
296 |
<tr>
|
297 |
+
<th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
|
298 |
<td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
|
299 |
+
<th width="15%"><?php _e('Directly in a theme', 'adrotate'); ?></th>
|
300 |
<td width="35%"><?php echo adrotate_group(<?php echo $edit_group->id; ?>); ?></td>
|
301 |
</tr>
|
302 |
</tbody>
|
308 |
</p>
|
309 |
|
310 |
<h3><?php _e('Wrapper code', 'adrotate'); ?></h3>
|
311 |
+
<p><em><?php _e('Wraps around each advert. HTML/JavaScript allowed, use with care!', 'adrotate'); ?></em></p>
|
312 |
<table class="widefat" style="margin-top: .5em">
|
313 |
<tbody>
|
314 |
<tr>
|
315 |
+
<th width="15%" valign="top"><?php _e('Before advert', 'adrotate'); ?></strong></th>
|
316 |
<td colspan="2"><textarea tabindex="17" name="adrotate_wrapper_before" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_before); ?></textarea></td>
|
317 |
<td width="35%">
|
318 |
<p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em><span style="background-color:#aaa;"></em></p>
|
320 |
</td>
|
321 |
</tr>
|
322 |
<tr>
|
323 |
+
<th valign="top"><?php _e('After advert', 'adrotate'); ?></strong></th>
|
324 |
<td colspan="2"><textarea tabindex="18" name="adrotate_wrapper_after" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_after); ?></textarea></td>
|
325 |
<td>
|
326 |
<p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em></span></em></p>
|
329 |
</tbody>
|
330 |
</table>
|
331 |
|
332 |
+
<h3><?php _e('Select adverts', 'adrotate'); ?></h3>
|
333 |
<table class="widefat" style="margin-top: .5em">
|
334 |
<thead>
|
335 |
<tr>
|
348 |
<?php if($ads) {
|
349 |
$class = '';
|
350 |
foreach($ads as $ad) {
|
351 |
+
$stoptime = $wpdb->get_var("SELECT `stoptime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
|
352 |
|
353 |
if($adrotate_config['stats'] == 1) {
|
354 |
$stats = adrotate_stats($ad->id);
|
355 |
}
|
356 |
|
357 |
$errorclass = '';
|
358 |
+
if($ad->type == 'error') $errorclass = ' row_error';
|
359 |
+
if($stoptime <= $in2days OR $stoptime <= $in7days) $errorclass = ' row_urgent';
|
360 |
+
if($stoptime <= $now) $errorclass = ' row_inactive';
|
361 |
|
362 |
$class = ('alternate' != $class) ? 'alternate' : '';
|
363 |
$class = ($errorclass != '') ? $errorclass : $class;
|
dashboard/publisher/adrotate-groups-main.php
CHANGED
@@ -62,7 +62,6 @@
|
|
62 |
if($group->modus == 1) $modus[] = __('Dynamic', 'adrotate').' ('.$adspeed.' '. __('second rotation', 'adrotate').')';
|
63 |
if($group->modus == 2) $modus[] = __('Block', 'adrotate').' ('.$group->gridrows.' x '.$group->gridcolumns.' '. __('grid', 'adrotate').')';
|
64 |
if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
|
65 |
-
if($group->geo == 1) $modus[] = __('Geolocation', 'adrotate');
|
66 |
|
67 |
$ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = ".$group->id.";");
|
68 |
$class = ('alternate' != $class) ? 'alternate' : ''; ?>
|
62 |
if($group->modus == 1) $modus[] = __('Dynamic', 'adrotate').' ('.$adspeed.' '. __('second rotation', 'adrotate').')';
|
63 |
if($group->modus == 2) $modus[] = __('Block', 'adrotate').' ('.$group->gridrows.' x '.$group->gridcolumns.' '. __('grid', 'adrotate').')';
|
64 |
if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
|
|
|
65 |
|
66 |
$ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = ".$group->id.";");
|
67 |
$class = ('alternate' != $class) ? 'alternate' : ''; ?>
|
language/adrotate-bg_BG.mo
CHANGED
Binary file
|
language/adrotate-bg_BG.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
@@ -17,19 +17,19 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Няма намерени файлове"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Папката не е намерена или не е достъпна"
|
27 |
|
28 |
-
#: adrotate-output.php:
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "О не! Нещо се случи!"
|
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,17 +38,17 @@ msgstr ""
|
|
38 |
"кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
|
39 |
"си."
|
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 "Ако сте получили този адрес по email, то някой ви е изиграл!"
|
46 |
|
47 |
-
#: adrotate-output.php:
|
48 |
msgid "Contact support if the issue persists:"
|
49 |
msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
|
50 |
|
51 |
-
#: adrotate-output.php:
|
52 |
msgid ""
|
53 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
54 |
"restrictions or does not exist!"
|
@@ -56,33 +56,33 @@ msgstr ""
|
|
56 |
"Грешка, рекламата не е налична в момента, поради ограничения в графика/"
|
57 |
"геолокацията или не съществува!"
|
58 |
|
59 |
-
#: adrotate-output.php:
|
60 |
msgid ""
|
61 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
62 |
"restrictions!"
|
63 |
msgstr ""
|
64 |
"Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
|
65 |
|
66 |
-
#: adrotate-output.php:
|
67 |
msgid ""
|
68 |
"Either there are no banners, they are disabled or none qualified for this "
|
69 |
"location!"
|
70 |
msgstr ""
|
71 |
"Няма налични банери, те са деактивирани или не са подходящи за това място!"
|
72 |
|
73 |
-
#: adrotate-output.php:
|
74 |
msgid "Error, no Ad ID set! Check your syntax!"
|
75 |
msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
|
76 |
|
77 |
-
#: adrotate-output.php:
|
78 |
msgid "Error, no group ID set! Check your syntax!"
|
79 |
msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
|
80 |
|
81 |
-
#: adrotate-output.php:
|
82 |
msgid "Error, group does not exist! Check your syntax!"
|
83 |
msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
|
84 |
|
85 |
-
#: adrotate-output.php:
|
86 |
msgid ""
|
87 |
"There was an error locating the database tables for AdRotate. Please "
|
88 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -90,59 +90,59 @@ msgstr ""
|
|
90 |
"Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
|
91 |
"изключете и включете наново AdRotate от страницата с плъгините!!"
|
92 |
|
93 |
-
#: adrotate-output.php:
|
94 |
msgid "If this does not solve the issue please seek support at"
|
95 |
msgstr "Ако това не решава проблема, моля потърсете помощ на"
|
96 |
|
97 |
-
#: adrotate-output.php:
|
98 |
msgid "An unknown error occured."
|
99 |
msgstr "Възникна неизвестна грешка."
|
100 |
|
101 |
-
#: adrotate-output.php:
|
102 |
msgid "active ad(s) expired."
|
103 |
msgstr "изтекла/и активна/и реклама/и."
|
104 |
|
105 |
-
#: adrotate-output.php:
|
106 |
msgid "Take action now"
|
107 |
msgstr "Предприемане на действия"
|
108 |
|
109 |
-
#: adrotate-output.php:
|
110 |
msgid "active ad(s) are about to expire."
|
111 |
msgstr "изтичаща/и активна/и реклама/и."
|
112 |
|
113 |
-
#: adrotate-output.php:
|
114 |
msgid "Check it out"
|
115 |
msgstr "Проверете го"
|
116 |
|
117 |
-
#: adrotate-output.php:
|
118 |
msgid "active ad(s) with configuration errors."
|
119 |
msgstr "активна(и) реклама(и) с грешни настройки."
|
120 |
|
121 |
-
#: adrotate-output.php:
|
122 |
msgid "Solve this"
|
123 |
msgstr "Разреши това"
|
124 |
|
125 |
-
#: adrotate-output.php:
|
126 |
msgid "ad(s) expired."
|
127 |
msgstr "изтекла/и реклама/и."
|
128 |
|
129 |
-
#: adrotate-output.php:
|
130 |
msgid "ad(s) are about to expire."
|
131 |
msgstr "реклама/и изтича(т)."
|
132 |
|
133 |
-
#: adrotate-output.php:
|
134 |
msgid "ad(s) with configuration errors."
|
135 |
msgstr "реклама/и с грешни настройки."
|
136 |
|
137 |
-
#: adrotate-output.php:
|
138 |
msgid "Fix this as soon as possible"
|
139 |
msgstr "Поправка възможно най-скоро"
|
140 |
|
141 |
-
#: adrotate-output.php:
|
142 |
msgid "Learn More"
|
143 |
msgstr "Научете повече"
|
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"
|
@@ -150,67 +150,67 @@ msgstr ""
|
|
150 |
"Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
|
151 |
"до <strong>PRO</strong> версията"
|
152 |
|
153 |
-
#: adrotate-output.php:
|
154 |
msgid "Get more features to even better run your advertising campaigns."
|
155 |
msgstr ""
|
156 |
"Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
|
157 |
|
158 |
-
#: adrotate-output.php:
|
159 |
msgid "Thank you for your consideration!"
|
160 |
msgstr "Благодарим Ви, че го обмислихте!"
|
161 |
|
162 |
-
#: adrotate-output.php:
|
163 |
msgid ""
|
164 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
165 |
"this menu. Check out the"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: adrotate-output.php:
|
169 |
msgid "manuals"
|
170 |
msgstr "ръководства"
|
171 |
|
172 |
-
#: adrotate-output.php:
|
173 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
174 |
msgid "and"
|
175 |
msgstr "и"
|
176 |
|
177 |
-
#: adrotate-output.php:
|
178 |
msgid "forums"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: adrotate-output.php:
|
182 |
msgid "Useful Links"
|
183 |
msgstr "Полезни връзки"
|
184 |
|
185 |
-
#: adrotate-output.php:
|
186 |
msgid "Useful links to learn more about AdRotate"
|
187 |
msgstr "Полезни връзки, за да получите повече информация за AdRotate"
|
188 |
|
189 |
-
#: adrotate-output.php:
|
190 |
msgid "AdRotate Page"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: adrotate-output.php:
|
194 |
msgid "Getting Started With AdRotate"
|
195 |
msgstr "Започнете от нулата с AdRotate Pro"
|
196 |
|
197 |
-
#: adrotate-output.php:
|
198 |
msgid "AdRotate manuals"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: adrotate-output.php:
|
202 |
msgid "AdRotate Support Forum"
|
203 |
msgstr "Форум за поддръжка на AdRotate"
|
204 |
|
205 |
-
#: adrotate-output.php:
|
206 |
msgid "Help AdRotate Grow"
|
207 |
msgstr "Помогнете за развитието на AdRotate"
|
208 |
|
209 |
-
#: adrotate-output.php:
|
210 |
msgid "Brought to you by"
|
211 |
msgstr "Достига до Вас благодарение на"
|
212 |
|
213 |
-
#: adrotate-output.php:
|
214 |
msgid ""
|
215 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
216 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
@@ -219,23 +219,23 @@ msgstr ""
|
|
219 |
"се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
|
220 |
"това да остане незабелязано."
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
msgid "If you find AdRotate useful please leave your honest"
|
224 |
msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid "rating"
|
228 |
msgstr "оценка"
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
msgid "review"
|
232 |
msgstr "мнение"
|
233 |
|
234 |
-
#: adrotate-output.php:
|
235 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
236 |
msgstr "на WordPress.org, за да се развива AdRotate"
|
237 |
|
238 |
-
#: adrotate-output.php:
|
239 |
msgid ""
|
240 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
241 |
"out more about what I can do for you!"
|
@@ -243,27 +243,27 @@ msgstr ""
|
|
243 |
"Мястото, където да се консултирате и/или да поръчате разработка за "
|
244 |
"WordPress! Открийте с какво мога да Ви бъда полезен!"
|
245 |
|
246 |
-
#: adrotate-output.php:
|
247 |
msgid "Visit the"
|
248 |
msgstr "Посетете"
|
249 |
|
250 |
-
#: adrotate-output.php:
|
251 |
msgid "website"
|
252 |
msgstr "уебсайт"
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
msgid "Available in AdRotate Pro"
|
256 |
msgstr "Налично в AdRotate Pro"
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
msgid "More information..."
|
260 |
msgstr "Повече информация..."
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
msgid "This feature is available in AdRotate Pro"
|
264 |
msgstr "Тази функционалност е налична в AdRotate Pro"
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
msgid "Learn more"
|
268 |
msgstr "Повече информация"
|
269 |
|
@@ -375,7 +375,7 @@ msgstr "Група реклами - Използване на ID на група
|
|
375 |
msgid "Choose what you want to use this widget for"
|
376 |
msgstr "Изберете за какво иската да използвате тази джаджа"
|
377 |
|
378 |
-
#: adrotate-widget.php:137
|
379 |
msgid "ID:"
|
380 |
msgstr "ID:"
|
381 |
|
@@ -500,7 +500,7 @@ msgid "Group including it's Ads deleted"
|
|
500 |
msgstr "Групата и съдържащите се в нея реклами са изтрити"
|
501 |
|
502 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
503 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
504 |
msgid "Report"
|
505 |
msgstr "Доклад"
|
506 |
|
@@ -520,7 +520,7 @@ msgstr ""
|
|
520 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
521 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
522 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
523 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
524 |
msgid "More information"
|
525 |
msgstr "Повече информация"
|
526 |
|
@@ -541,6 +541,7 @@ msgstr "Напред"
|
|
541 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
542 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
543 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
544 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
545 |
msgid "ID"
|
546 |
msgstr "ID"
|
@@ -579,12 +580,12 @@ msgid "Upgrade today!"
|
|
579 |
msgstr "Надградете днес!"
|
580 |
|
581 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
582 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
583 |
msgid "Expires soon."
|
584 |
msgstr "Изтича скоро."
|
585 |
|
586 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
587 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
588 |
msgid "Has expired."
|
589 |
msgstr "Изтекла."
|
590 |
|
@@ -647,8 +648,8 @@ msgstr ""
|
|
647 |
"файловете, вместо \".full\"."
|
648 |
|
649 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
650 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
651 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
652 |
msgid "Example:"
|
653 |
msgstr "Пример:"
|
654 |
|
@@ -668,7 +669,8 @@ msgstr "Качването на картинка"
|
|
668 |
msgid "Available banner images in"
|
669 |
msgstr "Налични картинки за банери в"
|
670 |
|
671 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
672 |
msgid "Name"
|
673 |
msgstr "Име"
|
674 |
|
@@ -767,7 +769,7 @@ msgstr "Роля за изтриване на групи."
|
|
767 |
msgid "Update Options"
|
768 |
msgstr "Опции за обновяване"
|
769 |
|
770 |
-
#: adrotate.php:691
|
771 |
msgid "Statistics"
|
772 |
msgstr "Статистики"
|
773 |
|
@@ -775,8 +777,8 @@ msgstr "Статистики"
|
|
775 |
msgid "How to track stats"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
779 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
780 |
msgid "Disabled"
|
781 |
msgstr "Изключено"
|
782 |
|
@@ -1569,19 +1571,22 @@ msgid "Edit Advert"
|
|
1569 |
msgstr "Редакция на реклама"
|
1570 |
|
1571 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1572 |
-
|
1573 |
-
|
|
|
|
|
|
|
1574 |
|
1575 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1576 |
-
msgid "AdCode
|
1577 |
-
msgstr "
|
1578 |
|
1579 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1580 |
msgid "Basic Examples:"
|
1581 |
msgstr "Основни примери:"
|
1582 |
|
1583 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1584 |
-
msgid "Useful tags
|
1585 |
msgstr ""
|
1586 |
|
1587 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1615,8 +1620,8 @@ msgid ""
|
|
1615 |
msgstr ""
|
1616 |
|
1617 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1618 |
-
msgid "Banner image
|
1619 |
-
msgstr "
|
1620 |
|
1621 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1622 |
msgid "WordPress media:"
|
@@ -1650,10 +1655,6 @@ msgstr ""
|
|
1650 |
"Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
|
1651 |
"попълнено, то ще бъде с преоритет."
|
1652 |
|
1653 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1654 |
-
msgid "Statistics:"
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1658 |
msgid "Enable click and impression tracking for this advert."
|
1659 |
msgstr ""
|
@@ -1666,8 +1667,9 @@ msgid ""
|
|
1666 |
msgstr ""
|
1667 |
|
1668 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1669 |
-
|
1670 |
-
|
|
|
1671 |
|
1672 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1673 |
msgid "Yes, this ad will be used"
|
@@ -1680,7 +1682,7 @@ msgstr "Не, не показвай тази реклама никъде"
|
|
1680 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1681 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1682 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1683 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1684 |
msgid "Get more features with AdRotate Pro."
|
1685 |
msgstr "Получете по-голяма функционалност с AdRotate Pro."
|
1686 |
|
@@ -1696,8 +1698,8 @@ msgstr "Запиши рекламата"
|
|
1696 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1697 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1698 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1699 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1700 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1701 |
msgid "Cancel"
|
1702 |
msgstr "Отказ"
|
1703 |
|
@@ -1722,15 +1724,15 @@ msgstr ""
|
|
1722 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1723 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1724 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1725 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1726 |
msgid "Usage"
|
1727 |
msgstr "Употреба"
|
1728 |
|
1729 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1730 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1731 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1732 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1733 |
-
msgid "Widget
|
1734 |
msgstr ""
|
1735 |
|
1736 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1743,40 +1745,40 @@ msgstr ""
|
|
1743 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1744 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1745 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1746 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1747 |
-
msgid "In a post or page
|
1748 |
-
msgstr "
|
1749 |
|
1750 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1751 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1752 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1753 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1754 |
-
msgid "Directly in a theme
|
1755 |
-
msgstr "
|
1756 |
|
1757 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1758 |
msgid "Schedule your advert"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1762 |
-
msgid "Start date (day/month/year)
|
1763 |
-
msgstr "
|
1764 |
|
1765 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1766 |
-
msgid "End date (day/month/year)
|
1767 |
-
msgstr "
|
1768 |
|
1769 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1770 |
-
msgid "Start time (hh:mm)
|
1771 |
-
msgstr "
|
1772 |
|
1773 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1774 |
-
msgid "End time (hh:mm)
|
1775 |
-
msgstr "
|
1776 |
|
1777 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1778 |
-
msgid "Maximum Clicks
|
1779 |
-
msgstr "
|
1780 |
|
1781 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1782 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1784,26 +1786,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1784 |
msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
|
1785 |
|
1786 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1787 |
-
msgid "Maximum Impressions
|
1788 |
-
msgstr "
|
1789 |
|
1790 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1791 |
-
msgid ""
|
1792 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1793 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1794 |
-
"hours. 6AM is 6:00 hours."
|
1795 |
msgstr ""
|
1796 |
-
"Времето използва 24 часов формат. Ако използвате 12 часов формат: За начален "
|
1797 |
-
"или краен час след обяд, прибавете 12 часа. Напр. 2PM е 14:00 часа. 6AM e "
|
1798 |
-
"18:00 часа. "
|
1799 |
|
1800 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1801 |
msgid ""
|
1802 |
-
"
|
1803 |
-
"
|
|
|
1804 |
msgstr ""
|
1805 |
-
"Максималния брой кликове и импресии се измерва в рамките на зададеното "
|
1806 |
-
"време. Всеки график може да има собствен лимит!"
|
1807 |
|
1808 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1809 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1812,7 +1807,7 @@ msgstr "Създайте множество графици за всяка ре
|
|
1812 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1813 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1814 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1815 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1816 |
msgid "Upgrade today"
|
1817 |
msgstr "Надградете днес"
|
1818 |
|
@@ -1826,8 +1821,8 @@ msgid "Everything below is optional."
|
|
1826 |
msgstr "Всичко по-долу е по желание."
|
1827 |
|
1828 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1829 |
-
msgid "Responsive
|
1830 |
-
msgstr "
|
1831 |
|
1832 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1833 |
msgid "Enable responsive support for this advert."
|
@@ -1844,12 +1839,10 @@ msgstr ""
|
|
1844 |
"картинки е строго препоръчителен."
|
1845 |
|
1846 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
msgid "AdRotate Pro only"
|
1852 |
-
msgstr "Само AdRotate Pro"
|
1853 |
|
1854 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1855 |
msgid "Barely visible"
|
@@ -1872,12 +1865,12 @@ msgid "Best visibility"
|
|
1872 |
msgstr "Най-добра видимост"
|
1873 |
|
1874 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1875 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1876 |
-
msgid "Sortorder
|
1877 |
-
msgstr "
|
1878 |
|
1879 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1880 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1881 |
msgid "For administrative purposes set a sortorder."
|
1882 |
msgstr "За административни цели задайте критерий за сортиране."
|
1883 |
|
@@ -1903,8 +1896,8 @@ msgid ""
|
|
1903 |
msgstr ""
|
1904 |
|
1905 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1906 |
-
msgid "Cities/States
|
1907 |
-
msgstr "
|
1908 |
|
1909 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1910 |
msgid ""
|
@@ -1921,8 +1914,8 @@ msgstr ""
|
|
1921 |
"правилно!"
|
1922 |
|
1923 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1924 |
-
msgid "Countries
|
1925 |
-
msgstr "
|
1926 |
|
1927 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1928 |
msgid "Select the countries you want the adverts to show in."
|
@@ -1974,19 +1967,18 @@ msgid "grid"
|
|
1974 |
msgstr "решетка"
|
1975 |
|
1976 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
1977 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1978 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
1979 |
msgid "Post Injection"
|
1980 |
msgstr "Вмъкване в публикации"
|
1981 |
|
1982 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
1983 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
1984 |
msgid "Geolocation"
|
1985 |
msgstr "Геолокация"
|
1986 |
|
1987 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
1988 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
1989 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1990 |
msgid "Mode"
|
1991 |
msgstr "Режим"
|
1992 |
|
@@ -1994,10 +1986,6 @@ msgstr "Режим"
|
|
1994 |
msgid "Disabled Ads"
|
1995 |
msgstr "Деактивиране на реклами"
|
1996 |
|
1997 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1998 |
-
msgid "Activate"
|
1999 |
-
msgstr "Активиране"
|
2000 |
-
|
2001 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2002 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2003 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2010,15 +1998,9 @@ msgstr "Нулиране на статистиката"
|
|
2010 |
msgid "Start / End"
|
2011 |
msgstr "Начало / Край"
|
2012 |
|
2013 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2014 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2015 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2016 |
-
msgid "Title"
|
2017 |
-
msgstr "Заглавие"
|
2018 |
-
|
2019 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2020 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2021 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2022 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2023 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2024 |
msgid "Impressions"
|
@@ -2027,7 +2009,7 @@ msgstr "Импресии"
|
|
2027 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2028 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2029 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2030 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2031 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2032 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2033 |
msgid "Clicks"
|
@@ -2043,7 +2025,7 @@ msgstr "CTR"
|
|
2043 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2044 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2045 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2046 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2047 |
msgid "Edit"
|
2048 |
msgstr "Редакция"
|
2049 |
|
@@ -2093,7 +2075,7 @@ msgid "For 7 days"
|
|
2093 |
msgstr "За 7 дни"
|
2094 |
|
2095 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2096 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2097 |
msgid "Configuration errors."
|
2098 |
msgstr "Грешки при конфигурирането."
|
2099 |
|
@@ -2105,11 +2087,6 @@ msgstr "Активиране на рекламите"
|
|
2105 |
msgid "Export to XML"
|
2106 |
msgstr "Експорт в XML"
|
2107 |
|
2108 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2109 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2110 |
-
msgid "Weight"
|
2111 |
-
msgstr "Тежест"
|
2112 |
-
|
2113 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2114 |
msgid "Shown"
|
2115 |
msgstr "Показана"
|
@@ -2166,10 +2143,6 @@ msgstr "Нова група"
|
|
2166 |
msgid "Edit Group"
|
2167 |
msgstr "Редакция на група"
|
2168 |
|
2169 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2170 |
-
msgid "Name:"
|
2171 |
-
msgstr "Име:"
|
2172 |
-
|
2173 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2174 |
msgid "Default - Show one ad at a time"
|
2175 |
msgstr "По подразбиране - показва се само една реклама"
|
@@ -2258,15 +2231,15 @@ msgstr ""
|
|
2258 |
"страницата. По подразбиране: 6."
|
2259 |
|
2260 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2261 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2262 |
msgid ""
|
2263 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2264 |
"\" and enter ID"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2268 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2269 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2270 |
msgid "Save Group"
|
2271 |
msgstr "Запис на групата"
|
2272 |
|
@@ -2316,145 +2289,168 @@ msgid ""
|
|
2316 |
"setting. Not every theme supports this feature."
|
2317 |
msgstr ""
|
2318 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2319 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2320 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2321 |
msgstr ""
|
2322 |
"Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
|
2323 |
"на групата."
|
2324 |
|
2325 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2326 |
-
msgid "Set up
|
2327 |
msgstr ""
|
2328 |
-
"Задайте резервна група и използвайте услуга за местоположение с AdRotate Pro"
|
2329 |
|
2330 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2331 |
-
msgid "
|
2332 |
-
msgstr "
|
2333 |
|
2334 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2335 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2336 |
msgid "Before content"
|
2337 |
msgstr "Преди съдържанието"
|
2338 |
|
2339 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2340 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2341 |
msgid "After content"
|
2342 |
msgstr "След съдържанието"
|
2343 |
|
2344 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2345 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2346 |
msgid "Before and after content"
|
2347 |
msgstr "Преди и след съдържанието"
|
2348 |
|
2349 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2350 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2351 |
msgid "After..."
|
2352 |
msgstr "След..."
|
2353 |
|
2354 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2355 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2356 |
msgid "the first paragraph"
|
2357 |
msgstr "първия параграф"
|
2358 |
|
2359 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2360 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2361 |
msgid "the second paragraph"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2365 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2366 |
msgid "the third paragraph"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2370 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2371 |
msgid "the fourth paragraph"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2375 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2376 |
msgid "every 2nd paragraph"
|
2377 |
msgstr "всеки 2-ри параграф"
|
2378 |
|
2379 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2380 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2381 |
msgid "every 3rd paragraph"
|
2382 |
msgstr "всеки 3-ти параграф"
|
2383 |
|
2384 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2385 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2386 |
msgid "every 4th paragraph"
|
2387 |
msgstr "всеки 4-ти параграф"
|
2388 |
|
2389 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2390 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2391 |
msgid "every 5th paragraph"
|
2392 |
msgstr "всеки 5-ти параграф"
|
2393 |
|
2394 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2395 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2396 |
msgid "every 6th paragraph"
|
2397 |
msgstr "всеки 6-ти параграф"
|
2398 |
|
2399 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2400 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2401 |
msgid "every 7th paragraph"
|
2402 |
msgstr "всеки 7-ми параграф"
|
2403 |
|
2404 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2405 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2406 |
msgid "every 8th paragraph"
|
2407 |
msgstr "всеки 8-ми параграф"
|
2408 |
|
2409 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2410 |
msgid "Which categories?"
|
2411 |
msgstr "Кои категории?"
|
2412 |
|
2413 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2414 |
msgid "Click the categories posts you want the adverts to show in."
|
2415 |
msgstr "Изберете категориите, на които искате да се показват рекламите."
|
2416 |
|
2417 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2418 |
-
msgid "
|
2419 |
-
msgstr "
|
2420 |
|
2421 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2422 |
msgid "Which pages?"
|
2423 |
msgstr "Кои страници?"
|
2424 |
|
2425 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2426 |
msgid "Click the pages you want the adverts to show in."
|
2427 |
msgstr "Изберете страниците, на които искате да се показват рекламите."
|
2428 |
|
2429 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2430 |
msgid "Wrapper code"
|
2431 |
msgstr "Код за обвивката"
|
2432 |
|
2433 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2434 |
-
msgid "Wraps around each
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2438 |
-
msgid "Before
|
2439 |
-
msgstr "
|
2440 |
|
2441 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2442 |
msgid "Options:"
|
2443 |
msgstr "Настройки:"
|
2444 |
|
2445 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2446 |
-
msgid "After
|
2447 |
-
msgstr "
|
2448 |
|
2449 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2450 |
-
msgid "Select
|
2451 |
-
msgstr "
|
2452 |
|
2453 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2454 |
msgid "Visible until"
|
2455 |
msgstr "Да се вижда до"
|
2456 |
|
2457 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2458 |
msgid "No ads created!"
|
2459 |
msgstr "Няма създадени реклами!"
|
2460 |
|
@@ -2478,7 +2474,7 @@ msgstr "Това действие е необратимо!"
|
|
2478 |
msgid "Code"
|
2479 |
msgstr "Код"
|
2480 |
|
2481 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2482 |
msgid "No groups created!"
|
2483 |
msgstr "Няма създадени групи!"
|
2484 |
|
@@ -2486,6 +2482,99 @@ msgstr "Няма създадени групи!"
|
|
2486 |
msgid "Statistics for group"
|
2487 |
msgstr "Статистика за групи"
|
2488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2489 |
#~ msgid "WordPress.org Forum"
|
2490 |
#~ msgstr "WordPress.org форум"
|
2491 |
|
@@ -3083,9 +3172,6 @@ msgstr "Статистика за групи"
|
|
3083 |
#~ msgid "Track clicks from logged in users."
|
3084 |
#~ msgstr "Проследяване на кликове от вписани потребители."
|
3085 |
|
3086 |
-
#~ msgid "Geo Targeting"
|
3087 |
-
#~ msgstr "Таргетиране спрямо местоположението"
|
3088 |
-
|
3089 |
#~ msgid "Geographic Tracking"
|
3090 |
#~ msgstr "Проследяване на местоположението"
|
3091 |
|
@@ -3137,10 +3223,6 @@ msgstr "Статистика за групи"
|
|
3137 |
#~ msgid "Enable GeoTargeting for this group."
|
3138 |
#~ msgstr "Включване на Геотаргетирането за тази група."
|
3139 |
|
3140 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
3141 |
-
#~ msgstr ""
|
3142 |
-
#~ "Не забравяйте да кажете на рекламите в кои зони трябва да се показват."
|
3143 |
-
|
3144 |
#~ msgid "Fallback group"
|
3145 |
#~ msgstr "Резервна група"
|
3146 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+0100\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:801
|
21 |
msgid "No files found"
|
22 |
msgstr "Няма намерени файлове"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Папката не е намерена или не е достъпна"
|
27 |
|
28 |
+
#: adrotate-output.php:737
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "О не! Нещо се случи!"
|
31 |
|
32 |
+
#: adrotate-output.php:738
|
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 |
"кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
|
39 |
"си."
|
40 |
|
41 |
+
#: adrotate-output.php:739
|
42 |
msgid ""
|
43 |
"If you have received the url you want to visit via email, you are being "
|
44 |
"tricked!"
|
45 |
msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
|
46 |
|
47 |
+
#: adrotate-output.php:740
|
48 |
msgid "Contact support if the issue persists:"
|
49 |
msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
|
50 |
|
51 |
+
#: adrotate-output.php:758
|
52 |
msgid ""
|
53 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
54 |
"restrictions or does not exist!"
|
56 |
"Грешка, рекламата не е налична в момента, поради ограничения в графика/"
|
57 |
"геолокацията или не съществува!"
|
58 |
|
59 |
+
#: adrotate-output.php:760
|
60 |
msgid ""
|
61 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
62 |
"restrictions!"
|
63 |
msgstr ""
|
64 |
"Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
|
65 |
|
66 |
+
#: adrotate-output.php:767 adrotate-output.php:769
|
67 |
msgid ""
|
68 |
"Either there are no banners, they are disabled or none qualified for this "
|
69 |
"location!"
|
70 |
msgstr ""
|
71 |
"Няма налични банери, те са деактивирани или не са подходящи за това място!"
|
72 |
|
73 |
+
#: adrotate-output.php:775
|
74 |
msgid "Error, no Ad ID set! Check your syntax!"
|
75 |
msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
|
76 |
|
77 |
+
#: adrotate-output.php:781
|
78 |
msgid "Error, no group ID set! Check your syntax!"
|
79 |
msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
|
80 |
|
81 |
+
#: adrotate-output.php:786
|
82 |
msgid "Error, group does not exist! Check your syntax!"
|
83 |
msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
|
84 |
|
85 |
+
#: adrotate-output.php:792
|
86 |
msgid ""
|
87 |
"There was an error locating the database tables for AdRotate. Please "
|
88 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
90 |
"Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
|
91 |
"изключете и включете наново AdRotate от страницата с плъгините!!"
|
92 |
|
93 |
+
#: adrotate-output.php:792
|
94 |
msgid "If this does not solve the issue please seek support at"
|
95 |
msgstr "Ако това не решава проблема, моля потърсете помощ на"
|
96 |
|
97 |
+
#: adrotate-output.php:798
|
98 |
msgid "An unknown error occured."
|
99 |
msgstr "Възникна неизвестна грешка."
|
100 |
|
101 |
+
#: adrotate-output.php:823
|
102 |
msgid "active ad(s) expired."
|
103 |
msgstr "изтекла/и активна/и реклама/и."
|
104 |
|
105 |
+
#: adrotate-output.php:823
|
106 |
msgid "Take action now"
|
107 |
msgstr "Предприемане на действия"
|
108 |
|
109 |
+
#: adrotate-output.php:825
|
110 |
msgid "active ad(s) are about to expire."
|
111 |
msgstr "изтичаща/и активна/и реклама/и."
|
112 |
|
113 |
+
#: adrotate-output.php:825
|
114 |
msgid "Check it out"
|
115 |
msgstr "Проверете го"
|
116 |
|
117 |
+
#: adrotate-output.php:827
|
118 |
msgid "active ad(s) with configuration errors."
|
119 |
msgstr "активна(и) реклама(и) с грешни настройки."
|
120 |
|
121 |
+
#: adrotate-output.php:827
|
122 |
msgid "Solve this"
|
123 |
msgstr "Разреши това"
|
124 |
|
125 |
+
#: adrotate-output.php:829
|
126 |
msgid "ad(s) expired."
|
127 |
msgstr "изтекла/и реклама/и."
|
128 |
|
129 |
+
#: adrotate-output.php:829
|
130 |
msgid "ad(s) are about to expire."
|
131 |
msgstr "реклама/и изтича(т)."
|
132 |
|
133 |
+
#: adrotate-output.php:829
|
134 |
msgid "ad(s) with configuration errors."
|
135 |
msgstr "реклама/и с грешни настройки."
|
136 |
|
137 |
+
#: adrotate-output.php:829
|
138 |
msgid "Fix this as soon as possible"
|
139 |
msgstr "Поправка възможно най-скоро"
|
140 |
|
141 |
+
#: adrotate-output.php:841
|
142 |
msgid "Learn More"
|
143 |
msgstr "Научете повече"
|
144 |
|
145 |
+
#: adrotate-output.php:842
|
146 |
msgid ""
|
147 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
148 |
"to the <strong>PRO</strong> version"
|
150 |
"Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
|
151 |
"до <strong>PRO</strong> версията"
|
152 |
|
153 |
+
#: adrotate-output.php:842
|
154 |
msgid "Get more features to even better run your advertising campaigns."
|
155 |
msgstr ""
|
156 |
"Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
|
157 |
|
158 |
+
#: adrotate-output.php:842
|
159 |
msgid "Thank you for your consideration!"
|
160 |
msgstr "Благодарим Ви, че го обмислихте!"
|
161 |
|
162 |
+
#: adrotate-output.php:886
|
163 |
msgid ""
|
164 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
165 |
"this menu. Check out the"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: adrotate-output.php:886
|
169 |
msgid "manuals"
|
170 |
msgstr "ръководства"
|
171 |
|
172 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
173 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
174 |
msgid "and"
|
175 |
msgstr "и"
|
176 |
|
177 |
+
#: adrotate-output.php:886
|
178 |
msgid "forums"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: adrotate-output.php:922
|
182 |
msgid "Useful Links"
|
183 |
msgstr "Полезни връзки"
|
184 |
|
185 |
+
#: adrotate-output.php:923
|
186 |
msgid "Useful links to learn more about AdRotate"
|
187 |
msgstr "Полезни връзки, за да получите повече информация за AdRotate"
|
188 |
|
189 |
+
#: adrotate-output.php:925
|
190 |
msgid "AdRotate Page"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: adrotate-output.php:926
|
194 |
msgid "Getting Started With AdRotate"
|
195 |
msgstr "Започнете от нулата с AdRotate Pro"
|
196 |
|
197 |
+
#: adrotate-output.php:927
|
198 |
msgid "AdRotate manuals"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: adrotate-output.php:928
|
202 |
msgid "AdRotate Support Forum"
|
203 |
msgstr "Форум за поддръжка на AdRotate"
|
204 |
|
205 |
+
#: adrotate-output.php:954
|
206 |
msgid "Help AdRotate Grow"
|
207 |
msgstr "Помогнете за развитието на AdRotate"
|
208 |
|
209 |
+
#: adrotate-output.php:955
|
210 |
msgid "Brought to you by"
|
211 |
msgstr "Достига до Вас благодарение на"
|
212 |
|
213 |
+
#: adrotate-output.php:962
|
214 |
msgid ""
|
215 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
216 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
219 |
"се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
|
220 |
"това да остане незабелязано."
|
221 |
|
222 |
+
#: adrotate-output.php:962
|
223 |
msgid "If you find AdRotate useful please leave your honest"
|
224 |
msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
|
225 |
|
226 |
+
#: adrotate-output.php:962
|
227 |
msgid "rating"
|
228 |
msgstr "оценка"
|
229 |
|
230 |
+
#: adrotate-output.php:962
|
231 |
msgid "review"
|
232 |
msgstr "мнение"
|
233 |
|
234 |
+
#: adrotate-output.php:962
|
235 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
236 |
msgstr "на WordPress.org, за да се развива AdRotate"
|
237 |
|
238 |
+
#: adrotate-output.php:965
|
239 |
msgid ""
|
240 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
241 |
"out more about what I can do for you!"
|
243 |
"Мястото, където да се консултирате и/или да поръчате разработка за "
|
244 |
"WordPress! Открийте с какво мога да Ви бъда полезен!"
|
245 |
|
246 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
247 |
msgid "Visit the"
|
248 |
msgstr "Посетете"
|
249 |
|
250 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
251 |
msgid "website"
|
252 |
msgstr "уебсайт"
|
253 |
|
254 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
255 |
msgid "Available in AdRotate Pro"
|
256 |
msgstr "Налично в AdRotate Pro"
|
257 |
|
258 |
+
#: adrotate-output.php:995
|
259 |
msgid "More information..."
|
260 |
msgstr "Повече информация..."
|
261 |
|
262 |
+
#: adrotate-output.php:996
|
263 |
msgid "This feature is available in AdRotate Pro"
|
264 |
msgstr "Тази функционалност е налична в AdRotate Pro"
|
265 |
|
266 |
+
#: adrotate-output.php:996
|
267 |
msgid "Learn more"
|
268 |
msgstr "Повече информация"
|
269 |
|
375 |
msgid "Choose what you want to use this widget for"
|
376 |
msgstr "Изберете за какво иската да използвате тази джаджа"
|
377 |
|
378 |
+
#: adrotate-widget.php:137
|
379 |
msgid "ID:"
|
380 |
msgstr "ID:"
|
381 |
|
500 |
msgstr "Групата и съдържащите се в нея реклами са изтрити"
|
501 |
|
502 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
503 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
504 |
msgid "Report"
|
505 |
msgstr "Доклад"
|
506 |
|
520 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
521 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
522 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
523 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
524 |
msgid "More information"
|
525 |
msgstr "Повече информация"
|
526 |
|
541 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
542 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
543 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
544 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
545 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
546 |
msgid "ID"
|
547 |
msgstr "ID"
|
580 |
msgstr "Надградете днес!"
|
581 |
|
582 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
583 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
584 |
msgid "Expires soon."
|
585 |
msgstr "Изтича скоро."
|
586 |
|
587 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
588 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
589 |
msgid "Has expired."
|
590 |
msgstr "Изтекла."
|
591 |
|
648 |
"файловете, вместо \".full\"."
|
649 |
|
650 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
651 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
652 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
653 |
msgid "Example:"
|
654 |
msgstr "Пример:"
|
655 |
|
669 |
msgid "Available banner images in"
|
670 |
msgstr "Налични картинки за банери в"
|
671 |
|
672 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
673 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
674 |
msgid "Name"
|
675 |
msgstr "Име"
|
676 |
|
769 |
msgid "Update Options"
|
770 |
msgstr "Опции за обновяване"
|
771 |
|
772 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
773 |
msgid "Statistics"
|
774 |
msgstr "Статистики"
|
775 |
|
777 |
msgid "How to track stats"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
781 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
782 |
msgid "Disabled"
|
783 |
msgstr "Изключено"
|
784 |
|
1571 |
msgstr "Редакция на реклама"
|
1572 |
|
1573 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1574 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1575 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1576 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1577 |
+
msgid "Title"
|
1578 |
+
msgstr "Заглавие"
|
1579 |
|
1580 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1581 |
+
msgid "AdCode"
|
1582 |
+
msgstr ""
|
1583 |
|
1584 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1585 |
msgid "Basic Examples:"
|
1586 |
msgstr "Основни примери:"
|
1587 |
|
1588 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1589 |
+
msgid "Useful tags"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1623 |
+
msgid "Banner image"
|
1624 |
+
msgstr ""
|
1625 |
|
1626 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1627 |
msgid "WordPress media:"
|
1655 |
"Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
|
1656 |
"попълнено, то ще бъде с преоритет."
|
1657 |
|
|
|
|
|
|
|
|
|
1658 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1659 |
msgid "Enable click and impression tracking for this advert."
|
1660 |
msgstr ""
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1670 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1671 |
+
msgid "Activate"
|
1672 |
+
msgstr "Активиране"
|
1673 |
|
1674 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1675 |
msgid "Yes, this ad will be used"
|
1682 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1683 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1684 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1685 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1686 |
msgid "Get more features with AdRotate Pro."
|
1687 |
msgstr "Получете по-голяма функционалност с AdRotate Pro."
|
1688 |
|
1698 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1699 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1700 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1701 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1702 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1703 |
msgid "Cancel"
|
1704 |
msgstr "Отказ"
|
1705 |
|
1724 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1725 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1726 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1727 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1728 |
msgid "Usage"
|
1729 |
msgstr "Употреба"
|
1730 |
|
1731 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1732 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1733 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1734 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1735 |
+
msgid "Widget"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1745 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1746 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1747 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1748 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1749 |
+
msgid "In a post or page"
|
1750 |
+
msgstr ""
|
1751 |
|
1752 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1753 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1754 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1755 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1756 |
+
msgid "Directly in a theme"
|
1757 |
+
msgstr ""
|
1758 |
|
1759 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1760 |
msgid "Schedule your advert"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1764 |
+
msgid "Start date (day/month/year)"
|
1765 |
+
msgstr ""
|
1766 |
|
1767 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1768 |
+
msgid "End date (day/month/year)"
|
1769 |
+
msgstr ""
|
1770 |
|
1771 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1772 |
+
msgid "Start time (hh:mm)"
|
1773 |
+
msgstr ""
|
1774 |
|
1775 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1776 |
+
msgid "End time (hh:mm)"
|
1777 |
+
msgstr ""
|
1778 |
|
1779 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1780 |
+
msgid "Maximum Clicks"
|
1781 |
+
msgstr ""
|
1782 |
|
1783 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1784 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1786 |
msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
|
1787 |
|
1788 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1789 |
+
msgid "Maximum Impressions"
|
1790 |
+
msgstr ""
|
1791 |
|
1792 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1793 |
+
msgid "Important"
|
|
|
|
|
|
|
1794 |
msgstr ""
|
|
|
|
|
|
|
1795 |
|
1796 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1797 |
msgid ""
|
1798 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1799 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1800 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1801 |
msgstr ""
|
|
|
|
|
1802 |
|
1803 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1804 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1808 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1809 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1810 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1811 |
msgid "Upgrade today"
|
1812 |
msgstr "Надградете днес"
|
1813 |
|
1821 |
msgstr "Всичко по-долу е по желание."
|
1822 |
|
1823 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1824 |
+
msgid "Responsive"
|
1825 |
+
msgstr ""
|
1826 |
|
1827 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1828 |
msgid "Enable responsive support for this advert."
|
1839 |
"картинки е строго препоръчителен."
|
1840 |
|
1841 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1842 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1843 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1844 |
+
msgid "Weight"
|
1845 |
+
msgstr "Тежест"
|
|
|
|
|
1846 |
|
1847 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1848 |
msgid "Barely visible"
|
1865 |
msgstr "Най-добра видимост"
|
1866 |
|
1867 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1868 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1869 |
+
msgid "Sortorder"
|
1870 |
+
msgstr ""
|
1871 |
|
1872 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1873 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1874 |
msgid "For administrative purposes set a sortorder."
|
1875 |
msgstr "За административни цели задайте критерий за сортиране."
|
1876 |
|
1896 |
msgstr ""
|
1897 |
|
1898 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1899 |
+
msgid "Cities/States"
|
1900 |
+
msgstr ""
|
1901 |
|
1902 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1903 |
msgid ""
|
1914 |
"правилно!"
|
1915 |
|
1916 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1917 |
+
msgid "Countries"
|
1918 |
+
msgstr ""
|
1919 |
|
1920 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1921 |
msgid "Select the countries you want the adverts to show in."
|
1967 |
msgstr "решетка"
|
1968 |
|
1969 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
1970 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
1971 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
1972 |
msgid "Post Injection"
|
1973 |
msgstr "Вмъкване в публикации"
|
1974 |
|
1975 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
1976 |
msgid "Geolocation"
|
1977 |
msgstr "Геолокация"
|
1978 |
|
1979 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
1980 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
1981 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
1982 |
msgid "Mode"
|
1983 |
msgstr "Режим"
|
1984 |
|
1986 |
msgid "Disabled Ads"
|
1987 |
msgstr "Деактивиране на реклами"
|
1988 |
|
|
|
|
|
|
|
|
|
1989 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
1990 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
1991 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
1998 |
msgid "Start / End"
|
1999 |
msgstr "Начало / Край"
|
2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2001 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2002 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2003 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2004 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2005 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2006 |
msgid "Impressions"
|
2009 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2010 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2011 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2012 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2013 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2014 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2015 |
msgid "Clicks"
|
2025 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2026 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2027 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2028 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2029 |
msgid "Edit"
|
2030 |
msgstr "Редакция"
|
2031 |
|
2075 |
msgstr "За 7 дни"
|
2076 |
|
2077 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2078 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2079 |
msgid "Configuration errors."
|
2080 |
msgstr "Грешки при конфигурирането."
|
2081 |
|
2087 |
msgid "Export to XML"
|
2088 |
msgstr "Експорт в XML"
|
2089 |
|
|
|
|
|
|
|
|
|
|
|
2090 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2091 |
msgid "Shown"
|
2092 |
msgstr "Показана"
|
2143 |
msgid "Edit Group"
|
2144 |
msgstr "Редакция на група"
|
2145 |
|
|
|
|
|
|
|
|
|
2146 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2147 |
msgid "Default - Show one ad at a time"
|
2148 |
msgstr "По подразбиране - показва се само една реклама"
|
2231 |
"страницата. По подразбиране: 6."
|
2232 |
|
2233 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2234 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2235 |
msgid ""
|
2236 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2237 |
"\" and enter ID"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2241 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2242 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2243 |
msgid "Save Group"
|
2244 |
msgstr "Запис на групата"
|
2245 |
|
2289 |
"setting. Not every theme supports this feature."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2293 |
+
msgid "Geo Targeting"
|
2294 |
+
msgstr "Таргетиране спрямо местоположението"
|
2295 |
+
|
2296 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2297 |
+
msgid "Enable Geo Targeting for this group."
|
2298 |
+
msgstr ""
|
2299 |
+
|
2300 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2301 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2302 |
+
msgstr "Не забравяйте да кажете на рекламите в кои зони трябва да се показват."
|
2303 |
+
|
2304 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2305 |
+
msgid "Mobile support"
|
2306 |
+
msgstr ""
|
2307 |
+
|
2308 |
+
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2309 |
+
msgid "Enable mobile support for this group."
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2313 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2317 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2318 |
msgstr ""
|
2319 |
"Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
|
2320 |
"на групата."
|
2321 |
|
2322 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2323 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2324 |
msgstr ""
|
|
|
2325 |
|
2326 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2327 |
+
msgid "In categories?"
|
2328 |
+
msgstr ""
|
2329 |
|
2330 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2331 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2332 |
msgid "Before content"
|
2333 |
msgstr "Преди съдържанието"
|
2334 |
|
2335 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2336 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2337 |
msgid "After content"
|
2338 |
msgstr "След съдържанието"
|
2339 |
|
2340 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2341 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2342 |
msgid "Before and after content"
|
2343 |
msgstr "Преди и след съдържанието"
|
2344 |
|
2345 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2346 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2347 |
msgid "After..."
|
2348 |
msgstr "След..."
|
2349 |
|
2350 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2351 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2352 |
msgid "the first paragraph"
|
2353 |
msgstr "първия параграф"
|
2354 |
|
2355 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2356 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2357 |
msgid "the second paragraph"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2361 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2362 |
msgid "the third paragraph"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2366 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2367 |
msgid "the fourth paragraph"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2371 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2372 |
msgid "every 2nd paragraph"
|
2373 |
msgstr "всеки 2-ри параграф"
|
2374 |
|
2375 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2376 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2377 |
msgid "every 3rd paragraph"
|
2378 |
msgstr "всеки 3-ти параграф"
|
2379 |
|
2380 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2381 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2382 |
msgid "every 4th paragraph"
|
2383 |
msgstr "всеки 4-ти параграф"
|
2384 |
|
2385 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2386 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2387 |
msgid "every 5th paragraph"
|
2388 |
msgstr "всеки 5-ти параграф"
|
2389 |
|
2390 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2391 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2392 |
msgid "every 6th paragraph"
|
2393 |
msgstr "всеки 6-ти параграф"
|
2394 |
|
2395 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2396 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2397 |
msgid "every 7th paragraph"
|
2398 |
msgstr "всеки 7-ми параграф"
|
2399 |
|
2400 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2401 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2402 |
msgid "every 8th paragraph"
|
2403 |
msgstr "всеки 8-ми параграф"
|
2404 |
|
2405 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2406 |
msgid "Which categories?"
|
2407 |
msgstr "Кои категории?"
|
2408 |
|
2409 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2410 |
msgid "Click the categories posts you want the adverts to show in."
|
2411 |
msgstr "Изберете категориите, на които искате да се показват рекламите."
|
2412 |
|
2413 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2414 |
+
msgid "In pages?"
|
2415 |
+
msgstr ""
|
2416 |
|
2417 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2418 |
msgid "Which pages?"
|
2419 |
msgstr "Кои страници?"
|
2420 |
|
2421 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2422 |
msgid "Click the pages you want the adverts to show in."
|
2423 |
msgstr "Изберете страниците, на които искате да се показват рекламите."
|
2424 |
|
2425 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2426 |
msgid "Wrapper code"
|
2427 |
msgstr "Код за обвивката"
|
2428 |
|
2429 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2430 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2434 |
+
msgid "Before advert"
|
2435 |
+
msgstr ""
|
2436 |
|
2437 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2438 |
msgid "Options:"
|
2439 |
msgstr "Настройки:"
|
2440 |
|
2441 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2442 |
+
msgid "After advert"
|
2443 |
+
msgstr ""
|
2444 |
|
2445 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2446 |
+
msgid "Select adverts"
|
2447 |
+
msgstr ""
|
2448 |
|
2449 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2450 |
msgid "Visible until"
|
2451 |
msgstr "Да се вижда до"
|
2452 |
|
2453 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2454 |
msgid "No ads created!"
|
2455 |
msgstr "Няма създадени реклами!"
|
2456 |
|
2474 |
msgid "Code"
|
2475 |
msgstr "Код"
|
2476 |
|
2477 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2478 |
msgid "No groups created!"
|
2479 |
msgstr "Няма създадени групи!"
|
2480 |
|
2482 |
msgid "Statistics for group"
|
2483 |
msgstr "Статистика за групи"
|
2484 |
|
2485 |
+
#~ msgid "Title:"
|
2486 |
+
#~ msgstr "Заглавие:"
|
2487 |
+
|
2488 |
+
#~ msgid "AdCode:"
|
2489 |
+
#~ msgstr "AdCode:"
|
2490 |
+
|
2491 |
+
#~ msgid "Banner image:"
|
2492 |
+
#~ msgstr "Картинка на банера:"
|
2493 |
+
|
2494 |
+
#~ msgid "Activate:"
|
2495 |
+
#~ msgstr "Активиране:"
|
2496 |
+
|
2497 |
+
#~ msgid "In a post or page:"
|
2498 |
+
#~ msgstr "И страница или публикация:"
|
2499 |
+
|
2500 |
+
#~ msgid "Directly in a theme:"
|
2501 |
+
#~ msgstr "Директно в темата:"
|
2502 |
+
|
2503 |
+
#~ msgid "Start date (day/month/year):"
|
2504 |
+
#~ msgstr "Начална дата (ден/месец/година):"
|
2505 |
+
|
2506 |
+
#~ msgid "End date (day/month/year):"
|
2507 |
+
#~ msgstr "Крайна дата (ден/месец/година):"
|
2508 |
+
|
2509 |
+
#~ msgid "Start time (hh:mm):"
|
2510 |
+
#~ msgstr "Начален час (hh:mm):"
|
2511 |
+
|
2512 |
+
#~ msgid "End time (hh:mm):"
|
2513 |
+
#~ msgstr "Краен час (hh:mm):"
|
2514 |
+
|
2515 |
+
#~ msgid "Maximum Clicks:"
|
2516 |
+
#~ msgstr "Максимален брой кликове:"
|
2517 |
+
|
2518 |
+
#~ msgid "Maximum Impressions:"
|
2519 |
+
#~ msgstr "Максимален брой импресии:"
|
2520 |
+
|
2521 |
+
#~ msgid ""
|
2522 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2523 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2524 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2525 |
+
#~ msgstr ""
|
2526 |
+
#~ "Времето използва 24 часов формат. Ако използвате 12 часов формат: За "
|
2527 |
+
#~ "начален или краен час след обяд, прибавете 12 часа. Напр. 2PM е 14:00 "
|
2528 |
+
#~ "часа. 6AM e 18:00 часа. "
|
2529 |
+
|
2530 |
+
#~ msgid ""
|
2531 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2532 |
+
#~ "only. Every schedule can have it's own limit!"
|
2533 |
+
#~ msgstr ""
|
2534 |
+
#~ "Максималния брой кликове и импресии се измерва в рамките на зададеното "
|
2535 |
+
#~ "време. Всеки график може да има собствен лимит!"
|
2536 |
+
|
2537 |
+
#~ msgid "Responsive:"
|
2538 |
+
#~ msgstr "Responsive:"
|
2539 |
+
|
2540 |
+
#~ msgid "Weight:"
|
2541 |
+
#~ msgstr "Тежест:"
|
2542 |
+
|
2543 |
+
#~ msgid "AdRotate Pro only"
|
2544 |
+
#~ msgstr "Само AdRotate Pro"
|
2545 |
+
|
2546 |
+
#~ msgid "Sortorder:"
|
2547 |
+
#~ msgstr "Сортиране:"
|
2548 |
+
|
2549 |
+
#~ msgid "Cities/States:"
|
2550 |
+
#~ msgstr "Градове/Щати:"
|
2551 |
+
|
2552 |
+
#~ msgid "Countries:"
|
2553 |
+
#~ msgstr "Държави:"
|
2554 |
+
|
2555 |
+
#~ msgid "Name:"
|
2556 |
+
#~ msgstr "Име:"
|
2557 |
+
|
2558 |
+
#~ msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
|
2559 |
+
#~ msgstr ""
|
2560 |
+
#~ "Задайте резервна група и използвайте услуга за местоположение с AdRotate "
|
2561 |
+
#~ "Pro"
|
2562 |
+
|
2563 |
+
#~ msgid "Include ads in categories?"
|
2564 |
+
#~ msgstr "Включване на реклами в категориите?"
|
2565 |
+
|
2566 |
+
#~ msgid "Include ads in pages?"
|
2567 |
+
#~ msgstr "Включване на реклами в страниците?"
|
2568 |
+
|
2569 |
+
#~ msgid "Before ad"
|
2570 |
+
#~ msgstr "Преди реклама"
|
2571 |
+
|
2572 |
+
#~ msgid "After ad"
|
2573 |
+
#~ msgstr "След реклама"
|
2574 |
+
|
2575 |
+
#~ msgid "Select Ads"
|
2576 |
+
#~ msgstr "Избор на реклами"
|
2577 |
+
|
2578 |
#~ msgid "WordPress.org Forum"
|
2579 |
#~ msgstr "WordPress.org форум"
|
2580 |
|
3172 |
#~ msgid "Track clicks from logged in users."
|
3173 |
#~ msgstr "Проследяване на кликове от вписани потребители."
|
3174 |
|
|
|
|
|
|
|
3175 |
#~ msgid "Geographic Tracking"
|
3176 |
#~ msgstr "Проследяване на местоположението"
|
3177 |
|
3223 |
#~ msgid "Enable GeoTargeting for this group."
|
3224 |
#~ msgstr "Включване на Геотаргетирането за тази група."
|
3225 |
|
|
|
|
|
|
|
|
|
3226 |
#~ msgid "Fallback group"
|
3227 |
#~ msgstr "Резервна група"
|
3228 |
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
@@ -18,19 +18,19 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: adrotate-functions.php:
|
22 |
msgid "No files found"
|
23 |
msgstr "Δεν βρέθηκαν αρχεία"
|
24 |
|
25 |
-
#: adrotate-functions.php:
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
|
28 |
|
29 |
-
#: adrotate-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,155 +97,155 @@ 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. Everything related to AdRotate is in "
|
171 |
"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:151
|
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 |
#, fuzzy
|
218 |
msgid "Help AdRotate Grow"
|
219 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid "Brought to you by"
|
223 |
msgstr "Σας προσφέρεται από"
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
msgid ""
|
227 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
228 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "If you find AdRotate useful please leave your honest"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "rating"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
#, fuzzy
|
241 |
msgid "review"
|
242 |
msgstr "Αξιολογήστε και σχολιάστε"
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
msgid ""
|
250 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
251 |
"out more about what I can do for you!"
|
@@ -253,28 +253,28 @@ msgstr ""
|
|
253 |
"Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
|
254 |
"Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
|
255 |
|
256 |
-
#: adrotate-output.php:
|
257 |
msgid "Visit the"
|
258 |
msgstr "Επισκεφθείτε το"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid "website"
|
262 |
msgstr "ιστοσελίδα"
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
msgid "Available in AdRotate Pro"
|
266 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
267 |
|
268 |
-
#: adrotate-output.php:
|
269 |
#, fuzzy
|
270 |
msgid "More information..."
|
271 |
msgstr "Περισσότερες πληροφορίες"
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
msgid "This feature is available in AdRotate Pro"
|
275 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
#, fuzzy
|
279 |
msgid "Learn more"
|
280 |
msgstr "Μάθετε περισσότερα σχετικά"
|
@@ -389,7 +389,7 @@ msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
|
|
389 |
msgid "Choose what you want to use this widget for"
|
390 |
msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
|
391 |
|
392 |
-
#: adrotate-widget.php:137
|
393 |
msgid "ID:"
|
394 |
msgstr "Κωδ:"
|
395 |
|
@@ -518,7 +518,7 @@ msgid "Group including it's Ads deleted"
|
|
518 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
519 |
|
520 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
521 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
522 |
msgid "Report"
|
523 |
msgstr "Αναφορά"
|
524 |
|
@@ -538,7 +538,7 @@ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο
|
|
538 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
539 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
540 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
541 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
542 |
#, fuzzy
|
543 |
msgid "More information"
|
544 |
msgstr "Περισσότερες πληροφορίες"
|
@@ -560,6 +560,7 @@ msgstr "Go"
|
|
560 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
561 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
562 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
563 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
564 |
msgid "ID"
|
565 |
msgstr "Κωδ."
|
@@ -603,12 +604,12 @@ msgid "Upgrade today!"
|
|
603 |
msgstr "Σήμερα"
|
604 |
|
605 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
606 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
607 |
msgid "Expires soon."
|
608 |
msgstr "Λήγει σύντομα."
|
609 |
|
610 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
611 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
612 |
msgid "Has expired."
|
613 |
msgstr "Έχει λήξει."
|
614 |
|
@@ -665,8 +666,8 @@ msgid ""
|
|
665 |
msgstr ""
|
666 |
|
667 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
668 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
669 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
670 |
msgid "Example:"
|
671 |
msgstr "Παράδειγμα:"
|
672 |
|
@@ -685,7 +686,8 @@ msgstr "Εικόνα Banner:"
|
|
685 |
msgid "Available banner images in"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
689 |
msgid "Name"
|
690 |
msgstr "Όνομα"
|
691 |
|
@@ -788,7 +790,7 @@ msgstr "Ρόλος για τη διαγραφή ομάδων."
|
|
788 |
msgid "Update Options"
|
789 |
msgstr "Επιλογές Ανανέωσης"
|
790 |
|
791 |
-
#: adrotate.php:691
|
792 |
msgid "Statistics"
|
793 |
msgstr "Στατιστικά"
|
794 |
|
@@ -796,8 +798,8 @@ msgstr "Στατιστικά"
|
|
796 |
msgid "How to track stats"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
800 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
801 |
#, fuzzy
|
802 |
msgid "Disabled"
|
803 |
msgstr "Απενεργοποιημένες διαφημίσεις"
|
@@ -1591,19 +1593,22 @@ msgid "Edit Advert"
|
|
1591 |
msgstr "Επεξεργασία Διαφήμισης"
|
1592 |
|
1593 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1594 |
-
|
1595 |
-
|
|
|
|
|
|
|
1596 |
|
1597 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1598 |
-
msgid "AdCode
|
1599 |
-
msgstr "
|
1600 |
|
1601 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1602 |
msgid "Basic Examples:"
|
1603 |
msgstr "Βασικά παραδείγματα:"
|
1604 |
|
1605 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1606 |
-
msgid "Useful tags
|
1607 |
msgstr ""
|
1608 |
|
1609 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1637,8 +1642,8 @@ msgid ""
|
|
1637 |
msgstr ""
|
1638 |
|
1639 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1640 |
-
msgid "Banner image
|
1641 |
-
msgstr "
|
1642 |
|
1643 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1644 |
msgid "WordPress media:"
|
@@ -1672,10 +1677,6 @@ msgstr ""
|
|
1672 |
"Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
|
1673 |
"κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
|
1674 |
|
1675 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1676 |
-
msgid "Statistics:"
|
1677 |
-
msgstr ""
|
1678 |
-
|
1679 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1680 |
msgid "Enable click and impression tracking for this advert."
|
1681 |
msgstr ""
|
@@ -1688,8 +1689,9 @@ msgid ""
|
|
1688 |
msgstr ""
|
1689 |
|
1690 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1691 |
-
|
1692 |
-
|
|
|
1693 |
|
1694 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1695 |
msgid "Yes, this ad will be used"
|
@@ -1702,7 +1704,7 @@ msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμισ
|
|
1702 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1703 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1704 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1705 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1706 |
#, fuzzy
|
1707 |
msgid "Get more features with AdRotate Pro."
|
1708 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
@@ -1719,8 +1721,8 @@ msgstr "Αποθήκευση Διαφήμισης"
|
|
1719 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1720 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1721 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1722 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1723 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1724 |
msgid "Cancel"
|
1725 |
msgstr "Ακύρωση"
|
1726 |
|
@@ -1745,15 +1747,15 @@ msgstr ""
|
|
1745 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1746 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1747 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1748 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1749 |
msgid "Usage"
|
1750 |
msgstr "Χρήση"
|
1751 |
|
1752 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1753 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1754 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1755 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1756 |
-
msgid "Widget
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1766,40 +1768,40 @@ msgstr ""
|
|
1766 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1767 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1768 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1769 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1770 |
-
msgid "In a post or page
|
1771 |
-
msgstr "
|
1772 |
|
1773 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1774 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1775 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1776 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1777 |
-
msgid "Directly in a theme
|
1778 |
-
msgstr "
|
1779 |
|
1780 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1781 |
msgid "Schedule your advert"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1785 |
-
msgid "Start date (day/month/year)
|
1786 |
-
msgstr "
|
1787 |
|
1788 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1789 |
-
msgid "End date (day/month/year)
|
1790 |
-
msgstr "
|
1791 |
|
1792 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1793 |
-
msgid "Start time (hh:mm)
|
1794 |
-
msgstr "
|
1795 |
|
1796 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1797 |
-
msgid "End time (hh:mm)
|
1798 |
-
msgstr "
|
1799 |
|
1800 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1801 |
-
msgid "Maximum Clicks
|
1802 |
-
msgstr "
|
1803 |
|
1804 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1805 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1807,27 +1809,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1807 |
msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
|
1808 |
|
1809 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1810 |
-
msgid "Maximum Impressions
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1814 |
-
msgid ""
|
1815 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1816 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1817 |
-
"hours. 6AM is 6:00 hours."
|
1818 |
msgstr ""
|
1819 |
-
"Η ώρα χρησιμοποιεί ένα ρολόι 24 ωρών. Αν έχεις συνηθίσει στο AM / PM σύστημα "
|
1820 |
-
"θυμήσου αυτό: Εάν η ώρα έναρξης ή λήξης είναι μετά το μεσημεριανό γεύμα, "
|
1821 |
-
"πρόσθεσε 12 ώρες. 2ΡΜ είναι 14:00 ώρες το μεσημέρι. 6ΑΜ είναι 6:00 ώρες το "
|
1822 |
-
"πρωί."
|
1823 |
|
1824 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1825 |
msgid ""
|
1826 |
-
"
|
1827 |
-
"
|
|
|
1828 |
msgstr ""
|
1829 |
-
"Τα μέγιστα κλικ και οι εμφανίσεις μετρώνται κατά τη ρύθμιση του "
|
1830 |
-
"προγράμματος. Κάθε πρόγραμμα μπορεί να έχει το δικό του όριο!"
|
1831 |
|
1832 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1833 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1836,7 +1830,7 @@ msgstr ""
|
|
1836 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1837 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1838 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1839 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1840 |
#, fuzzy
|
1841 |
msgid "Upgrade today"
|
1842 |
msgstr "Σήμερα"
|
@@ -1851,7 +1845,7 @@ msgid "Everything below is optional."
|
|
1851 |
msgstr "Τα πάντα από κάτω είναι προαιρετικά."
|
1852 |
|
1853 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1854 |
-
msgid "Responsive
|
1855 |
msgstr ""
|
1856 |
|
1857 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
@@ -1867,13 +1861,10 @@ msgid ""
|
|
1867 |
msgstr ""
|
1868 |
|
1869 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
#, fuzzy
|
1875 |
-
msgid "AdRotate Pro only"
|
1876 |
-
msgstr "AdRotate Pro"
|
1877 |
|
1878 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1879 |
msgid "Barely visible"
|
@@ -1896,12 +1887,12 @@ msgid "Best visibility"
|
|
1896 |
msgstr "Καλύτερη ορατότητα"
|
1897 |
|
1898 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1899 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1900 |
-
msgid "Sortorder
|
1901 |
-
msgstr "
|
1902 |
|
1903 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1904 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1905 |
msgid "For administrative purposes set a sortorder."
|
1906 |
msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
|
1907 |
|
@@ -1927,9 +1918,8 @@ msgid ""
|
|
1927 |
msgstr ""
|
1928 |
|
1929 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1930 |
-
|
1931 |
-
|
1932 |
-
msgstr "Πόλεις:"
|
1933 |
|
1934 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1935 |
msgid ""
|
@@ -1944,9 +1934,8 @@ msgid ""
|
|
1944 |
msgstr ""
|
1945 |
|
1946 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1947 |
-
|
1948 |
-
|
1949 |
-
msgstr "Πόλεις:"
|
1950 |
|
1951 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1952 |
#, fuzzy
|
@@ -2005,19 +1994,18 @@ msgstr ""
|
|
2005 |
"πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
|
2006 |
|
2007 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2008 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2009 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2010 |
msgid "Post Injection"
|
2011 |
msgstr "Εμβολιασμός Δημοσίευσης"
|
2012 |
|
2013 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2014 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2015 |
msgid "Geolocation"
|
2016 |
msgstr "Γεωγραφική τοποθεσία"
|
2017 |
|
2018 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2019 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2020 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2021 |
msgid "Mode"
|
2022 |
msgstr "Λειτουργία"
|
2023 |
|
@@ -2025,10 +2013,6 @@ msgstr "Λειτουργία"
|
|
2025 |
msgid "Disabled Ads"
|
2026 |
msgstr "Απενεργοποιημένες διαφημίσεις"
|
2027 |
|
2028 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2029 |
-
msgid "Activate"
|
2030 |
-
msgstr "Ενεργοποίηση"
|
2031 |
-
|
2032 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2033 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2034 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2046,15 +2030,9 @@ msgstr ""
|
|
2046 |
"πρόσθεσε 12 ώρες. 2ΡΜ είναι 14:00 ώρες το μεσημέρι. 6ΑΜ είναι 6:00 ώρες το "
|
2047 |
"πρωί."
|
2048 |
|
2049 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2050 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2051 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2052 |
-
msgid "Title"
|
2053 |
-
msgstr "Τίτλος"
|
2054 |
-
|
2055 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2056 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2057 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2058 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2059 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2060 |
msgid "Impressions"
|
@@ -2063,7 +2041,7 @@ msgstr "Εμφανίσεις"
|
|
2063 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2064 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2065 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2066 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2067 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2068 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2069 |
msgid "Clicks"
|
@@ -2079,7 +2057,7 @@ msgstr "CTR"
|
|
2079 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2080 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2081 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2082 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2083 |
msgid "Edit"
|
2084 |
msgstr "Επεξεργασία"
|
2085 |
|
@@ -2130,7 +2108,7 @@ msgid "For 7 days"
|
|
2130 |
msgstr "Για 7 ημέρες"
|
2131 |
|
2132 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2133 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2134 |
msgid "Configuration errors."
|
2135 |
msgstr "Σφάλματα Διαμόρφωσης."
|
2136 |
|
@@ -2143,11 +2121,6 @@ msgstr "Ενεργές Διαφημίσεις"
|
|
2143 |
msgid "Export to XML"
|
2144 |
msgstr "Επιλογές εξαγωγής"
|
2145 |
|
2146 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2147 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2148 |
-
msgid "Weight"
|
2149 |
-
msgstr "Βαρύτητα"
|
2150 |
-
|
2151 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2152 |
msgid "Shown"
|
2153 |
msgstr "Εμφανίζονται"
|
@@ -2204,10 +2177,6 @@ msgstr "Νέα Ομάδα"
|
|
2204 |
msgid "Edit Group"
|
2205 |
msgstr "Επεξεργασία Ομάδας"
|
2206 |
|
2207 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2208 |
-
msgid "Name:"
|
2209 |
-
msgstr "Όνομα:"
|
2210 |
-
|
2211 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2212 |
msgid "Default - Show one ad at a time"
|
2213 |
msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
|
@@ -2299,15 +2268,15 @@ msgstr ""
|
|
2299 |
"σελίδας. Προεπιλογή: 6."
|
2300 |
|
2301 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2302 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2303 |
msgid ""
|
2304 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2305 |
"\" and enter ID"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2309 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2310 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2311 |
#, fuzzy
|
2312 |
msgid "Save Group"
|
2313 |
msgstr "Αποθήκευση"
|
@@ -2365,150 +2334,176 @@ msgid ""
|
|
2365 |
"setting. Not every theme supports this feature."
|
2366 |
msgstr ""
|
2367 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2368 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2369 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2370 |
msgstr ""
|
2371 |
"Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
|
2372 |
"ομάδας."
|
2373 |
|
2374 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2375 |
-
msgid "Set up
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2379 |
-
msgid "
|
2380 |
-
msgstr "
|
2381 |
|
2382 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2383 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2384 |
#, fuzzy
|
2385 |
msgid "Before content"
|
2386 |
msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
|
2387 |
|
2388 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2389 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2390 |
#, fuzzy
|
2391 |
msgid "After content"
|
2392 |
msgstr "Πριν και μετά το περιεχόμενο"
|
2393 |
|
2394 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2395 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2396 |
#, fuzzy
|
2397 |
msgid "Before and after content"
|
2398 |
msgstr "Πριν και μετά το περιεχόμενο"
|
2399 |
|
2400 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2401 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2402 |
#, fuzzy
|
2403 |
msgid "After..."
|
2404 |
msgstr "Μετά τη διαφήμιση"
|
2405 |
|
2406 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2407 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2408 |
msgid "the first paragraph"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2412 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2413 |
msgid "the second paragraph"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2417 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2418 |
msgid "the third paragraph"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2422 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2423 |
msgid "the fourth paragraph"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2427 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2428 |
msgid "every 2nd paragraph"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2432 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2433 |
msgid "every 3rd paragraph"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2437 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2438 |
msgid "every 4th paragraph"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2442 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2443 |
msgid "every 5th paragraph"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2447 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2448 |
msgid "every 6th paragraph"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2452 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2453 |
msgid "every 7th paragraph"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2457 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2458 |
msgid "every 8th paragraph"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2462 |
msgid "Which categories?"
|
2463 |
msgstr "Ποιες κατηγορίες;"
|
2464 |
|
2465 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2466 |
msgid "Click the categories posts you want the adverts to show in."
|
2467 |
msgstr ""
|
2468 |
"Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
|
2469 |
"εμφανίζονται"
|
2470 |
|
2471 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2472 |
-
msgid "
|
2473 |
-
msgstr "
|
2474 |
|
2475 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2476 |
msgid "Which pages?"
|
2477 |
msgstr "Ποιες σελίδες;"
|
2478 |
|
2479 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2480 |
msgid "Click the pages you want the adverts to show in."
|
2481 |
msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
|
2482 |
|
2483 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2484 |
msgid "Wrapper code"
|
2485 |
msgstr "Κώδικας περιτύλιγμα"
|
2486 |
|
2487 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2488 |
-
msgid "Wraps around each
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2492 |
-
msgid "Before
|
2493 |
-
msgstr "
|
2494 |
|
2495 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2496 |
msgid "Options:"
|
2497 |
msgstr "Επιλογές:"
|
2498 |
|
2499 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2500 |
-
msgid "After
|
2501 |
-
msgstr "
|
2502 |
|
2503 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2504 |
-
msgid "Select
|
2505 |
-
msgstr "
|
2506 |
|
2507 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2508 |
msgid "Visible until"
|
2509 |
msgstr "Ορατό μέχρι"
|
2510 |
|
2511 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2512 |
msgid "No ads created!"
|
2513 |
msgstr "Δεν δημιουργήθηκαν διαφημίσεις!"
|
2514 |
|
@@ -2532,7 +2527,7 @@ msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί
|
|
2532 |
msgid "Code"
|
2533 |
msgstr "Κώδικας"
|
2534 |
|
2535 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2536 |
msgid "No groups created!"
|
2537 |
msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
|
2538 |
|
@@ -2540,6 +2535,95 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
|
|
2540 |
msgid "Statistics for group"
|
2541 |
msgstr "Στατιστικά για την ομάδα"
|
2542 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2543 |
#, fuzzy
|
2544 |
#~ msgid "Enable stats"
|
2545 |
#~ msgstr "Στατιστικά"
|
@@ -2936,9 +3020,6 @@ msgstr "Στατιστικά για την ομάδα"
|
|
2936 |
#~ msgid "Track clicks from logged in users."
|
2937 |
#~ msgstr "Παρακολουθήστε κλικ από συνδεδεμένους χρήστες."
|
2938 |
|
2939 |
-
#~ msgid "Geo Targeting"
|
2940 |
-
#~ msgstr "Γεωγραφική Στόχευση"
|
2941 |
-
|
2942 |
#~ msgid "Geographic Tracking"
|
2943 |
#~ msgstr "Γεωγραφική Παρακολούθηση"
|
2944 |
|
@@ -2967,11 +3048,6 @@ msgstr "Στατιστικά για την ομάδα"
|
|
2967 |
#~ msgid "Enable GeoTargeting for this group."
|
2968 |
#~ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
|
2969 |
|
2970 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
2971 |
-
#~ msgstr ""
|
2972 |
-
#~ "Μην ξεχάσετε να πείτε στις διαφημίσεις σε ποιους τομείς θα πρέπει να "
|
2973 |
-
#~ "φαίνονται."
|
2974 |
-
|
2975 |
#~ msgid "Fallback group"
|
2976 |
#~ msgstr "Ομάδα υποβάθμισης"
|
2977 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: adrotate-functions.php:801
|
22 |
msgid "No files found"
|
23 |
msgstr "Δεν βρέθηκαν αρχεία"
|
24 |
|
25 |
+
#: adrotate-functions.php:804
|
26 |
msgid "Folder not found or not accessible"
|
27 |
msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
|
28 |
|
29 |
+
#: adrotate-output.php:737
|
30 |
msgid "Oh no! Something went wrong!"
|
31 |
msgstr "Παρουσιάστηκε κάποιο σφάλμα."
|
32 |
|
33 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
51 |
msgid "Contact support if the issue persists:"
|
52 |
msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
|
53 |
|
54 |
+
#: adrotate-output.php:758
|
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:760
|
63 |
msgid ""
|
64 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
65 |
"restrictions!"
|
67 |
"Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
|
68 |
"χρονικών περιορισμών."
|
69 |
|
70 |
+
#: adrotate-output.php:767 adrotate-output.php:769
|
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:775
|
79 |
msgid "Error, no Ad ID set! Check your syntax!"
|
80 |
msgstr ""
|
81 |
"Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
|
82 |
|
83 |
+
#: adrotate-output.php:781
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
|
86 |
|
87 |
+
#: adrotate-output.php:786
|
88 |
msgid "Error, group does not exist! Check your syntax!"
|
89 |
msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
|
90 |
|
91 |
+
#: adrotate-output.php:792
|
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:792
|
101 |
msgid "If this does not solve the issue please seek support at"
|
102 |
msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
|
103 |
|
104 |
+
#: adrotate-output.php:798
|
105 |
msgid "An unknown error occured."
|
106 |
msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
|
107 |
|
108 |
+
#: adrotate-output.php:823
|
109 |
msgid "active ad(s) expired."
|
110 |
msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
|
111 |
|
112 |
+
#: adrotate-output.php:823
|
113 |
msgid "Take action now"
|
114 |
msgstr "Λάβετε μέτρα τώρα"
|
115 |
|
116 |
+
#: adrotate-output.php:825
|
117 |
msgid "active ad(s) are about to expire."
|
118 |
msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
|
119 |
|
120 |
+
#: adrotate-output.php:825
|
121 |
msgid "Check it out"
|
122 |
msgstr "Ελέγξτε το"
|
123 |
|
124 |
+
#: adrotate-output.php:827
|
125 |
msgid "active ad(s) with configuration errors."
|
126 |
msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
|
127 |
|
128 |
+
#: adrotate-output.php:827
|
129 |
msgid "Solve this"
|
130 |
msgstr "Λύστε το"
|
131 |
|
132 |
+
#: adrotate-output.php:829
|
133 |
msgid "ad(s) expired."
|
134 |
msgstr "διαφήμιση(εις) έληξε(αν)"
|
135 |
|
136 |
+
#: adrotate-output.php:829
|
137 |
msgid "ad(s) are about to expire."
|
138 |
msgstr "διαφήμιση(εις) θα λήξει(ουν)"
|
139 |
|
140 |
+
#: adrotate-output.php:829
|
141 |
msgid "ad(s) with configuration errors."
|
142 |
msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
|
143 |
|
144 |
+
#: adrotate-output.php:829
|
145 |
msgid "Fix this as soon as possible"
|
146 |
msgstr "Διορθώστε το το συντομότερο δυνατόν"
|
147 |
|
148 |
+
#: adrotate-output.php:841
|
149 |
#, fuzzy
|
150 |
msgid "Learn More"
|
151 |
msgstr "Μάθετε περισσότερα σχετικά"
|
152 |
|
153 |
+
#: adrotate-output.php:842
|
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:842
|
160 |
msgid "Get more features to even better run your advertising campaigns."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: adrotate-output.php:842
|
164 |
#, fuzzy
|
165 |
msgid "Thank you for your consideration!"
|
166 |
msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
|
167 |
|
168 |
+
#: adrotate-output.php:886
|
169 |
msgid ""
|
170 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
171 |
"this menu. Check out the"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: adrotate-output.php:886
|
175 |
msgid "manuals"
|
176 |
msgstr "εγχειρίδια"
|
177 |
|
178 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
179 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
180 |
msgid "and"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:886
|
184 |
msgid "forums"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:922
|
188 |
#, fuzzy
|
189 |
msgid "Useful Links"
|
190 |
msgstr "Χρήσιμοι σύνδεσμοι"
|
191 |
|
192 |
+
#: adrotate-output.php:923
|
193 |
msgid "Useful links to learn more about AdRotate"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:925
|
197 |
#, fuzzy
|
198 |
msgid "AdRotate Page"
|
199 |
msgstr "AdRotate Pro"
|
200 |
|
201 |
+
#: adrotate-output.php:926
|
202 |
#, fuzzy
|
203 |
msgid "Getting Started With AdRotate"
|
204 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
205 |
|
206 |
+
#: adrotate-output.php:927
|
207 |
#, fuzzy
|
208 |
msgid "AdRotate manuals"
|
209 |
msgstr "Πληροφορίες του AdRotate"
|
210 |
|
211 |
+
#: adrotate-output.php:928
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Support Forum"
|
214 |
msgstr "Κατάστημα του AdRotate"
|
215 |
|
216 |
+
#: adrotate-output.php:954
|
217 |
#, fuzzy
|
218 |
msgid "Help AdRotate Grow"
|
219 |
msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
|
220 |
|
221 |
+
#: adrotate-output.php:955
|
222 |
msgid "Brought to you by"
|
223 |
msgstr "Σας προσφέρεται από"
|
224 |
|
225 |
+
#: adrotate-output.php:962
|
226 |
msgid ""
|
227 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
228 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: adrotate-output.php:962
|
232 |
msgid "If you find AdRotate useful please leave your honest"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: adrotate-output.php:962
|
236 |
msgid "rating"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:962
|
240 |
#, fuzzy
|
241 |
msgid "review"
|
242 |
msgstr "Αξιολογήστε και σχολιάστε"
|
243 |
|
244 |
+
#: adrotate-output.php:962
|
245 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: adrotate-output.php:965
|
249 |
msgid ""
|
250 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
251 |
"out more about what I can do for you!"
|
253 |
"Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
|
254 |
"Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
|
255 |
|
256 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
257 |
msgid "Visit the"
|
258 |
msgstr "Επισκεφθείτε το"
|
259 |
|
260 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
261 |
msgid "website"
|
262 |
msgstr "ιστοσελίδα"
|
263 |
|
264 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
265 |
msgid "Available in AdRotate Pro"
|
266 |
msgstr "Διαθέσιμο στο AdRotate Pro"
|
267 |
|
268 |
+
#: adrotate-output.php:995
|
269 |
#, fuzzy
|
270 |
msgid "More information..."
|
271 |
msgstr "Περισσότερες πληροφορίες"
|
272 |
|
273 |
+
#: adrotate-output.php:996
|
274 |
msgid "This feature is available in AdRotate Pro"
|
275 |
msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
|
276 |
|
277 |
+
#: adrotate-output.php:996
|
278 |
#, fuzzy
|
279 |
msgid "Learn more"
|
280 |
msgstr "Μάθετε περισσότερα σχετικά"
|
389 |
msgid "Choose what you want to use this widget for"
|
390 |
msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
|
391 |
|
392 |
+
#: adrotate-widget.php:137
|
393 |
msgid "ID:"
|
394 |
msgstr "Κωδ:"
|
395 |
|
518 |
msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
|
519 |
|
520 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
521 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
522 |
msgid "Report"
|
523 |
msgstr "Αναφορά"
|
524 |
|
538 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
539 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
540 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
541 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
542 |
#, fuzzy
|
543 |
msgid "More information"
|
544 |
msgstr "Περισσότερες πληροφορίες"
|
560 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
561 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
562 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
563 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
564 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
565 |
msgid "ID"
|
566 |
msgstr "Κωδ."
|
604 |
msgstr "Σήμερα"
|
605 |
|
606 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
607 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
608 |
msgid "Expires soon."
|
609 |
msgstr "Λήγει σύντομα."
|
610 |
|
611 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
612 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
613 |
msgid "Has expired."
|
614 |
msgstr "Έχει λήξει."
|
615 |
|
666 |
msgstr ""
|
667 |
|
668 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
669 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
670 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
671 |
msgid "Example:"
|
672 |
msgstr "Παράδειγμα:"
|
673 |
|
686 |
msgid "Available banner images in"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
690 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
691 |
msgid "Name"
|
692 |
msgstr "Όνομα"
|
693 |
|
790 |
msgid "Update Options"
|
791 |
msgstr "Επιλογές Ανανέωσης"
|
792 |
|
793 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
794 |
msgid "Statistics"
|
795 |
msgstr "Στατιστικά"
|
796 |
|
798 |
msgid "How to track stats"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
802 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
803 |
#, fuzzy
|
804 |
msgid "Disabled"
|
805 |
msgstr "Απενεργοποιημένες διαφημίσεις"
|
1593 |
msgstr "Επεξεργασία Διαφήμισης"
|
1594 |
|
1595 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1596 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1597 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1598 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1599 |
+
msgid "Title"
|
1600 |
+
msgstr "Τίτλος"
|
1601 |
|
1602 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1603 |
+
msgid "AdCode"
|
1604 |
+
msgstr ""
|
1605 |
|
1606 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1607 |
msgid "Basic Examples:"
|
1608 |
msgstr "Βασικά παραδείγματα:"
|
1609 |
|
1610 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1611 |
+
msgid "Useful tags"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1642 |
msgstr ""
|
1643 |
|
1644 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1645 |
+
msgid "Banner image"
|
1646 |
+
msgstr ""
|
1647 |
|
1648 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1649 |
msgid "WordPress media:"
|
1677 |
"Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
|
1678 |
"κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
|
1679 |
|
|
|
|
|
|
|
|
|
1680 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1681 |
msgid "Enable click and impression tracking for this advert."
|
1682 |
msgstr ""
|
1689 |
msgstr ""
|
1690 |
|
1691 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1692 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1693 |
+
msgid "Activate"
|
1694 |
+
msgstr "Ενεργοποίηση"
|
1695 |
|
1696 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1697 |
msgid "Yes, this ad will be used"
|
1704 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1705 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1706 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1707 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1708 |
#, fuzzy
|
1709 |
msgid "Get more features with AdRotate Pro."
|
1710 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
1721 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1722 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1723 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1724 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1725 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1726 |
msgid "Cancel"
|
1727 |
msgstr "Ακύρωση"
|
1728 |
|
1747 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1748 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1749 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1750 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1751 |
msgid "Usage"
|
1752 |
msgstr "Χρήση"
|
1753 |
|
1754 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1755 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1756 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1757 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1758 |
+
msgid "Widget"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1768 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1769 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1770 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1771 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1772 |
+
msgid "In a post or page"
|
1773 |
+
msgstr ""
|
1774 |
|
1775 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1776 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1777 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1778 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1779 |
+
msgid "Directly in a theme"
|
1780 |
+
msgstr ""
|
1781 |
|
1782 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1783 |
msgid "Schedule your advert"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1787 |
+
msgid "Start date (day/month/year)"
|
1788 |
+
msgstr ""
|
1789 |
|
1790 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1791 |
+
msgid "End date (day/month/year)"
|
1792 |
+
msgstr ""
|
1793 |
|
1794 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1795 |
+
msgid "Start time (hh:mm)"
|
1796 |
+
msgstr ""
|
1797 |
|
1798 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1799 |
+
msgid "End time (hh:mm)"
|
1800 |
+
msgstr ""
|
1801 |
|
1802 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1803 |
+
msgid "Maximum Clicks"
|
1804 |
+
msgstr ""
|
1805 |
|
1806 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1809 |
msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
|
1810 |
|
1811 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1812 |
+
msgid "Maximum Impressions"
|
1813 |
+
msgstr ""
|
1814 |
|
1815 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1816 |
+
msgid "Important"
|
|
|
|
|
|
|
1817 |
msgstr ""
|
|
|
|
|
|
|
|
|
1818 |
|
1819 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1820 |
msgid ""
|
1821 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1822 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1823 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1824 |
msgstr ""
|
|
|
|
|
1825 |
|
1826 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1827 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1830 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1831 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1832 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1833 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1834 |
#, fuzzy
|
1835 |
msgid "Upgrade today"
|
1836 |
msgstr "Σήμερα"
|
1845 |
msgstr "Τα πάντα από κάτω είναι προαιρετικά."
|
1846 |
|
1847 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1848 |
+
msgid "Responsive"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1861 |
msgstr ""
|
1862 |
|
1863 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1864 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1865 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1866 |
+
msgid "Weight"
|
1867 |
+
msgstr "Βαρύτητα"
|
|
|
|
|
|
|
1868 |
|
1869 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1870 |
msgid "Barely visible"
|
1887 |
msgstr "Καλύτερη ορατότητα"
|
1888 |
|
1889 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1890 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1891 |
+
msgid "Sortorder"
|
1892 |
+
msgstr ""
|
1893 |
|
1894 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1895 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1896 |
msgid "For administrative purposes set a sortorder."
|
1897 |
msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
|
1898 |
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1921 |
+
msgid "Cities/States"
|
1922 |
+
msgstr ""
|
|
|
1923 |
|
1924 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1925 |
msgid ""
|
1934 |
msgstr ""
|
1935 |
|
1936 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1937 |
+
msgid "Countries"
|
1938 |
+
msgstr ""
|
|
|
1939 |
|
1940 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1941 |
#, fuzzy
|
1994 |
"πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
|
1995 |
|
1996 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
1997 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
1998 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
1999 |
msgid "Post Injection"
|
2000 |
msgstr "Εμβολιασμός Δημοσίευσης"
|
2001 |
|
2002 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2003 |
msgid "Geolocation"
|
2004 |
msgstr "Γεωγραφική τοποθεσία"
|
2005 |
|
2006 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2007 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2008 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2009 |
msgid "Mode"
|
2010 |
msgstr "Λειτουργία"
|
2011 |
|
2013 |
msgid "Disabled Ads"
|
2014 |
msgstr "Απενεργοποιημένες διαφημίσεις"
|
2015 |
|
|
|
|
|
|
|
|
|
2016 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2017 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2018 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2030 |
"πρόσθεσε 12 ώρες. 2ΡΜ είναι 14:00 ώρες το μεσημέρι. 6ΑΜ είναι 6:00 ώρες το "
|
2031 |
"πρωί."
|
2032 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2033 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2034 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2035 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2036 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2037 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2038 |
msgid "Impressions"
|
2041 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2042 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2043 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2044 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2045 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2046 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2047 |
msgid "Clicks"
|
2057 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2058 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2059 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2060 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2061 |
msgid "Edit"
|
2062 |
msgstr "Επεξεργασία"
|
2063 |
|
2108 |
msgstr "Για 7 ημέρες"
|
2109 |
|
2110 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2111 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2112 |
msgid "Configuration errors."
|
2113 |
msgstr "Σφάλματα Διαμόρφωσης."
|
2114 |
|
2121 |
msgid "Export to XML"
|
2122 |
msgstr "Επιλογές εξαγωγής"
|
2123 |
|
|
|
|
|
|
|
|
|
|
|
2124 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2125 |
msgid "Shown"
|
2126 |
msgstr "Εμφανίζονται"
|
2177 |
msgid "Edit Group"
|
2178 |
msgstr "Επεξεργασία Ομάδας"
|
2179 |
|
|
|
|
|
|
|
|
|
2180 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2181 |
msgid "Default - Show one ad at a time"
|
2182 |
msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
|
2268 |
"σελίδας. Προεπιλογή: 6."
|
2269 |
|
2270 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2271 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2272 |
msgid ""
|
2273 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2274 |
"\" and enter ID"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2278 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2279 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2280 |
#, fuzzy
|
2281 |
msgid "Save Group"
|
2282 |
msgstr "Αποθήκευση"
|
2334 |
"setting. Not every theme supports this feature."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2338 |
+
msgid "Geo Targeting"
|
2339 |
+
msgstr "Γεωγραφική Στόχευση"
|
2340 |
+
|
2341 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2342 |
+
msgid "Enable Geo Targeting for this group."
|
2343 |
+
msgstr ""
|
2344 |
+
|
2345 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2346 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2347 |
+
msgstr ""
|
2348 |
+
"Μην ξεχάσετε να πείτε στις διαφημίσεις σε ποιους τομείς θα πρέπει να "
|
2349 |
+
"φαίνονται."
|
2350 |
+
|
2351 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2352 |
+
msgid "Mobile support"
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2356 |
+
msgid "Enable mobile support for this group."
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2360 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2361 |
+
msgstr ""
|
2362 |
+
|
2363 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2364 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2365 |
msgstr ""
|
2366 |
"Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
|
2367 |
"ομάδας."
|
2368 |
|
2369 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2370 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2374 |
+
msgid "In categories?"
|
2375 |
+
msgstr ""
|
2376 |
|
2377 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2378 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2379 |
#, fuzzy
|
2380 |
msgid "Before content"
|
2381 |
msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
|
2382 |
|
2383 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2384 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2385 |
#, fuzzy
|
2386 |
msgid "After content"
|
2387 |
msgstr "Πριν και μετά το περιεχόμενο"
|
2388 |
|
2389 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2390 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2391 |
#, fuzzy
|
2392 |
msgid "Before and after content"
|
2393 |
msgstr "Πριν και μετά το περιεχόμενο"
|
2394 |
|
2395 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2396 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2397 |
#, fuzzy
|
2398 |
msgid "After..."
|
2399 |
msgstr "Μετά τη διαφήμιση"
|
2400 |
|
2401 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2402 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2403 |
msgid "the first paragraph"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2407 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2408 |
msgid "the second paragraph"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2412 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2413 |
msgid "the third paragraph"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2417 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2418 |
msgid "the fourth paragraph"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2422 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2423 |
msgid "every 2nd paragraph"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2427 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2428 |
msgid "every 3rd paragraph"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2432 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2433 |
msgid "every 4th paragraph"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2437 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2438 |
msgid "every 5th paragraph"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2442 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2443 |
msgid "every 6th paragraph"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2447 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2448 |
msgid "every 7th paragraph"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2452 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2453 |
msgid "every 8th paragraph"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2457 |
msgid "Which categories?"
|
2458 |
msgstr "Ποιες κατηγορίες;"
|
2459 |
|
2460 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2461 |
msgid "Click the categories posts you want the adverts to show in."
|
2462 |
msgstr ""
|
2463 |
"Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
|
2464 |
"εμφανίζονται"
|
2465 |
|
2466 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2467 |
+
msgid "In pages?"
|
2468 |
+
msgstr ""
|
2469 |
|
2470 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2471 |
msgid "Which pages?"
|
2472 |
msgstr "Ποιες σελίδες;"
|
2473 |
|
2474 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2475 |
msgid "Click the pages you want the adverts to show in."
|
2476 |
msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
|
2477 |
|
2478 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2479 |
msgid "Wrapper code"
|
2480 |
msgstr "Κώδικας περιτύλιγμα"
|
2481 |
|
2482 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2483 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2487 |
+
msgid "Before advert"
|
2488 |
+
msgstr ""
|
2489 |
|
2490 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2491 |
msgid "Options:"
|
2492 |
msgstr "Επιλογές:"
|
2493 |
|
2494 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2495 |
+
msgid "After advert"
|
2496 |
+
msgstr ""
|
2497 |
|
2498 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2499 |
+
msgid "Select adverts"
|
2500 |
+
msgstr ""
|
2501 |
|
2502 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2503 |
msgid "Visible until"
|
2504 |
msgstr "Ορατό μέχρι"
|
2505 |
|
2506 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2507 |
msgid "No ads created!"
|
2508 |
msgstr "Δεν δημιουργήθηκαν διαφημίσεις!"
|
2509 |
|
2527 |
msgid "Code"
|
2528 |
msgstr "Κώδικας"
|
2529 |
|
2530 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2531 |
msgid "No groups created!"
|
2532 |
msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
|
2533 |
|
2535 |
msgid "Statistics for group"
|
2536 |
msgstr "Στατιστικά για την ομάδα"
|
2537 |
|
2538 |
+
#~ msgid "Title:"
|
2539 |
+
#~ msgstr "Τίτλος:"
|
2540 |
+
|
2541 |
+
#~ msgid "AdCode:"
|
2542 |
+
#~ msgstr "AdCode:"
|
2543 |
+
|
2544 |
+
#~ msgid "Banner image:"
|
2545 |
+
#~ msgstr "Εικόνα Banner:"
|
2546 |
+
|
2547 |
+
#~ msgid "Activate:"
|
2548 |
+
#~ msgstr "Ενεργοποίηση:"
|
2549 |
+
|
2550 |
+
#~ msgid "In a post or page:"
|
2551 |
+
#~ msgstr "Σε ένα ποστ ή σελίδα:"
|
2552 |
+
|
2553 |
+
#~ msgid "Directly in a theme:"
|
2554 |
+
#~ msgstr "Άμεσα σε ένα θέμα:"
|
2555 |
+
|
2556 |
+
#~ msgid "Start date (day/month/year):"
|
2557 |
+
#~ msgstr "Ημερομηνία Έναρξης (ημέρα / μήνας / έτος):"
|
2558 |
+
|
2559 |
+
#~ msgid "End date (day/month/year):"
|
2560 |
+
#~ msgstr "Ημερομηνία λήξης (ημέρα / μήνας / έτος):"
|
2561 |
+
|
2562 |
+
#~ msgid "Start time (hh:mm):"
|
2563 |
+
#~ msgstr "Ώρα έναρξης (ωω: λλ):"
|
2564 |
+
|
2565 |
+
#~ msgid "End time (hh:mm):"
|
2566 |
+
#~ msgstr "Ώρα λήξης (ωω: λλ):"
|
2567 |
+
|
2568 |
+
#~ msgid "Maximum Clicks:"
|
2569 |
+
#~ msgstr "Μέγιστα Κλικ:"
|
2570 |
+
|
2571 |
+
#~ msgid "Maximum Impressions:"
|
2572 |
+
#~ msgstr "Μέγιστες Εμφανίσεις:"
|
2573 |
+
|
2574 |
+
#~ msgid ""
|
2575 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2576 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2577 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2578 |
+
#~ msgstr ""
|
2579 |
+
#~ "Η ώρα χρησιμοποιεί ένα ρολόι 24 ωρών. Αν έχεις συνηθίσει στο AM / PM "
|
2580 |
+
#~ "σύστημα θυμήσου αυτό: Εάν η ώρα έναρξης ή λήξης είναι μετά το μεσημεριανό "
|
2581 |
+
#~ "γεύμα, πρόσθεσε 12 ώρες. 2ΡΜ είναι 14:00 ώρες το μεσημέρι. 6ΑΜ είναι 6:00 "
|
2582 |
+
#~ "ώρες το πρωί."
|
2583 |
+
|
2584 |
+
#~ msgid ""
|
2585 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2586 |
+
#~ "only. Every schedule can have it's own limit!"
|
2587 |
+
#~ msgstr ""
|
2588 |
+
#~ "Τα μέγιστα κλικ και οι εμφανίσεις μετρώνται κατά τη ρύθμιση του "
|
2589 |
+
#~ "προγράμματος. Κάθε πρόγραμμα μπορεί να έχει το δικό του όριο!"
|
2590 |
+
|
2591 |
+
#~ msgid "Weight:"
|
2592 |
+
#~ msgstr "Βάρος:"
|
2593 |
+
|
2594 |
+
#, fuzzy
|
2595 |
+
#~ msgid "AdRotate Pro only"
|
2596 |
+
#~ msgstr "AdRotate Pro"
|
2597 |
+
|
2598 |
+
#~ msgid "Sortorder:"
|
2599 |
+
#~ msgstr "Σειρά ταξινόμησης:"
|
2600 |
+
|
2601 |
+
#, fuzzy
|
2602 |
+
#~ msgid "Cities/States:"
|
2603 |
+
#~ msgstr "Πόλεις:"
|
2604 |
+
|
2605 |
+
#, fuzzy
|
2606 |
+
#~ msgid "Countries:"
|
2607 |
+
#~ msgstr "Πόλεις:"
|
2608 |
+
|
2609 |
+
#~ msgid "Name:"
|
2610 |
+
#~ msgstr "Όνομα:"
|
2611 |
+
|
2612 |
+
#~ msgid "Include ads in categories?"
|
2613 |
+
#~ msgstr "Να συμπεριληφθούν οι διαφημίσεις σε κατηγορίες;"
|
2614 |
+
|
2615 |
+
#~ msgid "Include ads in pages?"
|
2616 |
+
#~ msgstr "Περιλογή διαφημίσεων στις σελίδες;"
|
2617 |
+
|
2618 |
+
#~ msgid "Before ad"
|
2619 |
+
#~ msgstr "Πριν τη διαφήμιση"
|
2620 |
+
|
2621 |
+
#~ msgid "After ad"
|
2622 |
+
#~ msgstr "Μετά τη διαφήμιση"
|
2623 |
+
|
2624 |
+
#~ msgid "Select Ads"
|
2625 |
+
#~ msgstr "Επιλέξτε Διαφημίσεις"
|
2626 |
+
|
2627 |
#, fuzzy
|
2628 |
#~ msgid "Enable stats"
|
2629 |
#~ msgstr "Στατιστικά"
|
3020 |
#~ msgid "Track clicks from logged in users."
|
3021 |
#~ msgstr "Παρακολουθήστε κλικ από συνδεδεμένους χρήστες."
|
3022 |
|
|
|
|
|
|
|
3023 |
#~ msgid "Geographic Tracking"
|
3024 |
#~ msgstr "Γεωγραφική Παρακολούθηση"
|
3025 |
|
3048 |
#~ msgid "Enable GeoTargeting for this group."
|
3049 |
#~ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
|
3050 |
|
|
|
|
|
|
|
|
|
|
|
3051 |
#~ msgid "Fallback group"
|
3052 |
#~ msgstr "Ομάδα υποβάθμισης"
|
3053 |
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
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"
|
@@ -16,22 +16,22 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.7.5\n"
|
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,169 +105,169 @@ 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. Everything related to AdRotate is in "
|
193 |
"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:151
|
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 |
#, fuzzy
|
239 |
msgid "Help AdRotate Grow"
|
240 |
msgstr "Bloqué avec AdRotate? Je peux vous aider!"
|
241 |
|
242 |
-
#: adrotate-output.php:
|
243 |
#, fuzzy
|
244 |
msgid "Brought to you by"
|
245 |
msgstr "Présenté par"
|
246 |
|
247 |
-
#: adrotate-output.php:
|
248 |
msgid ""
|
249 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
250 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: adrotate-output.php:
|
254 |
msgid "If you find AdRotate useful please leave your honest"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
msgid "rating"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: adrotate-output.php:
|
262 |
#, fuzzy
|
263 |
msgid "review"
|
264 |
msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: adrotate-output.php:
|
271 |
#, fuzzy
|
272 |
msgid ""
|
273 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
@@ -276,32 +276,32 @@ msgstr ""
|
|
276 |
"Votre guichet unique pour le développement Web, le consulting et toutes les "
|
277 |
"façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
|
278 |
|
279 |
-
#: adrotate-output.php:
|
280 |
#, fuzzy
|
281 |
msgid "Visit the"
|
282 |
msgstr "Visitez le"
|
283 |
|
284 |
-
#: adrotate-output.php:
|
285 |
#, fuzzy
|
286 |
msgid "website"
|
287 |
msgstr "site"
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
#, fuzzy
|
291 |
msgid "Available in AdRotate Pro"
|
292 |
msgstr "Disponible dans Adrotate Pro"
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
#, fuzzy
|
296 |
msgid "More information..."
|
297 |
msgstr "Plus d'informations..."
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
#, fuzzy
|
301 |
msgid "This feature is available in AdRotate Pro"
|
302 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
#, fuzzy
|
306 |
msgid "Learn more"
|
307 |
msgstr "En savoir plus"
|
@@ -440,7 +440,7 @@ msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
|
|
440 |
msgid "Choose what you want to use this widget for"
|
441 |
msgstr "Choisissez le fonction de ce widget"
|
442 |
|
443 |
-
#: adrotate-widget.php:137
|
444 |
#, fuzzy
|
445 |
msgid "ID:"
|
446 |
msgstr "ID :"
|
@@ -595,7 +595,7 @@ msgid "Group including it's Ads deleted"
|
|
595 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
596 |
|
597 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
598 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
599 |
#, fuzzy
|
600 |
msgid "Report"
|
601 |
msgstr "Rapport"
|
@@ -615,7 +615,7 @@ msgstr ""
|
|
615 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
616 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
617 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
618 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
619 |
#, fuzzy
|
620 |
msgid "More information"
|
621 |
msgstr "Plus d'informations..."
|
@@ -639,6 +639,7 @@ msgstr "Aller"
|
|
639 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
640 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
641 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
642 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
643 |
#, fuzzy
|
644 |
msgid "ID"
|
@@ -685,13 +686,13 @@ msgid "Upgrade today!"
|
|
685 |
msgstr "Mettre à jour aujourd'hui"
|
686 |
|
687 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
688 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
689 |
#, fuzzy
|
690 |
msgid "Expires soon."
|
691 |
msgstr "Expire bientôt."
|
692 |
|
693 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
694 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
695 |
#, fuzzy
|
696 |
msgid "Has expired."
|
697 |
msgstr "A expiré."
|
@@ -752,8 +753,8 @@ msgstr ""
|
|
752 |
"tailles d'écran."
|
753 |
|
754 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
755 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
756 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
757 |
#, fuzzy
|
758 |
msgid "Example:"
|
759 |
msgstr "Exemple :"
|
@@ -776,7 +777,8 @@ msgstr "Image :"
|
|
776 |
msgid "Available banner images in"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
780 |
#, fuzzy
|
781 |
msgid "Name"
|
782 |
msgstr "Nom"
|
@@ -896,7 +898,7 @@ msgstr "Rôle pour supprimer les groupes."
|
|
896 |
msgid "Update Options"
|
897 |
msgstr "Mettre à jour les options"
|
898 |
|
899 |
-
#: adrotate.php:691
|
900 |
#, fuzzy
|
901 |
msgid "Statistics"
|
902 |
msgstr "Statistiques"
|
@@ -905,8 +907,8 @@ msgstr "Statistiques"
|
|
905 |
msgid "How to track stats"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
909 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
910 |
#, fuzzy
|
911 |
msgid "Disabled"
|
912 |
msgstr "Désactivé"
|
@@ -1841,14 +1843,16 @@ msgid "Edit Advert"
|
|
1841 |
msgstr "Modifier la pub"
|
1842 |
|
1843 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
|
|
|
|
|
|
1844 |
#, fuzzy
|
1845 |
-
msgid "Title
|
1846 |
msgstr "Titre :"
|
1847 |
|
1848 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1849 |
-
|
1850 |
-
|
1851 |
-
msgstr "Code :"
|
1852 |
|
1853 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1854 |
#, fuzzy
|
@@ -1856,7 +1860,7 @@ msgid "Basic Examples:"
|
|
1856 |
msgstr "Exemples de base :"
|
1857 |
|
1858 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1859 |
-
msgid "Useful tags
|
1860 |
msgstr ""
|
1861 |
|
1862 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1890,9 +1894,8 @@ msgid ""
|
|
1890 |
msgstr ""
|
1891 |
|
1892 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1893 |
-
|
1894 |
-
|
1895 |
-
msgstr "Image :"
|
1896 |
|
1897 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1898 |
msgid "WordPress media:"
|
@@ -1931,10 +1934,6 @@ msgstr ""
|
|
1931 |
"Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
|
1932 |
"valeur, ce champ a la priorité."
|
1933 |
|
1934 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1935 |
-
msgid "Statistics:"
|
1936 |
-
msgstr ""
|
1937 |
-
|
1938 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1939 |
msgid "Enable click and impression tracking for this advert."
|
1940 |
msgstr ""
|
@@ -1947,8 +1946,9 @@ msgid ""
|
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
|
|
1950 |
#, fuzzy
|
1951 |
-
msgid "Activate
|
1952 |
msgstr "Activer"
|
1953 |
|
1954 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
@@ -1964,7 +1964,7 @@ msgstr "Non, cette publicité ne sera pas utilisée"
|
|
1964 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1965 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1966 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1967 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1968 |
#, fuzzy
|
1969 |
msgid "Get more features with AdRotate Pro."
|
1970 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
@@ -1982,8 +1982,8 @@ msgstr "Sauvegarder la pub"
|
|
1982 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1983 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1984 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1985 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1986 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1987 |
#, fuzzy
|
1988 |
msgid "Cancel"
|
1989 |
msgstr "Annuller"
|
@@ -2013,7 +2013,7 @@ msgstr ""
|
|
2013 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
2014 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
2015 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
2016 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2017 |
#, fuzzy
|
2018 |
msgid "Usage"
|
2019 |
msgstr "Usage"
|
@@ -2021,8 +2021,8 @@ msgstr "Usage"
|
|
2021 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
2022 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
2023 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
2024 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2025 |
-
msgid "Widget
|
2026 |
msgstr ""
|
2027 |
|
2028 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -2035,47 +2035,40 @@ msgstr ""
|
|
2035 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
2036 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
2037 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
2038 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2039 |
-
|
2040 |
-
|
2041 |
-
msgstr "Insérer des publicités au début ou à la fin de l'article/page."
|
2042 |
|
2043 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
2044 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
2045 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
2046 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2047 |
-
|
2048 |
-
|
2049 |
-
msgstr "Directement dans un thème :"
|
2050 |
|
2051 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
2052 |
msgid "Schedule your advert"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
2056 |
-
|
2057 |
-
|
2058 |
-
msgstr "Date de début (jour/mois/année) :"
|
2059 |
|
2060 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
2061 |
-
|
2062 |
-
|
2063 |
-
msgstr "Date de fin (jour/mois/année) :"
|
2064 |
|
2065 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
2066 |
-
|
2067 |
-
|
2068 |
-
msgstr "Début (hh:mm) :"
|
2069 |
|
2070 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgstr "Fin (hh:mm) :"
|
2074 |
|
2075 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
2076 |
-
|
2077 |
-
|
2078 |
-
msgstr "Nombre de clicks max :"
|
2079 |
|
2080 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
2081 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -2084,31 +2077,19 @@ msgid "Leave empty or 0 to skip this."
|
|
2084 |
msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
|
2085 |
|
2086 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
2087 |
-
|
2088 |
-
|
2089 |
-
msgstr "Nombre max de vues :"
|
2090 |
|
2091 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
2092 |
-
|
2093 |
-
msgid ""
|
2094 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
2095 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
2096 |
-
"hours. 6AM is 6:00 hours."
|
2097 |
msgstr ""
|
2098 |
-
"L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes habitués "
|
2099 |
-
"au système de AM/PM, gardez cela en tête : si l'heure de début ou de fin est "
|
2100 |
-
"après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
|
2101 |
-
"6:00). "
|
2102 |
|
2103 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
2104 |
-
#, fuzzy
|
2105 |
msgid ""
|
2106 |
-
"
|
2107 |
-
"
|
|
|
2108 |
msgstr ""
|
2109 |
-
"Le nombre maximum de clics et d'impressions est mesuré pour le calendrier en "
|
2110 |
-
"question uniquement. Tous les calendriers peuvent avoir leurs propres "
|
2111 |
-
"limites!"
|
2112 |
|
2113 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
2114 |
#, fuzzy
|
@@ -2118,7 +2099,7 @@ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
|
2118 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
2119 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
2120 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
2121 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2122 |
#, fuzzy
|
2123 |
msgid "Upgrade today"
|
2124 |
msgstr "Mettre à jour aujourd'hui"
|
@@ -2135,9 +2116,8 @@ msgid "Everything below is optional."
|
|
2135 |
msgstr "Tous les paramètres ci-dessous sont optionels."
|
2136 |
|
2137 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
2138 |
-
|
2139 |
-
|
2140 |
-
msgstr "Responsive :"
|
2141 |
|
2142 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
2143 |
#, fuzzy
|
@@ -2157,15 +2137,12 @@ msgstr ""
|
|
2157 |
"fluide."
|
2158 |
|
2159 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
|
|
|
|
2160 |
#, fuzzy
|
2161 |
-
msgid "Weight
|
2162 |
msgstr "Importance"
|
2163 |
|
2164 |
-
#: dashboard/publisher/adrotate-ads-edit.php:313
|
2165 |
-
#, fuzzy
|
2166 |
-
msgid "AdRotate Pro only"
|
2167 |
-
msgstr "AdRotate Pro"
|
2168 |
-
|
2169 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
2170 |
#, fuzzy
|
2171 |
msgid "Barely visible"
|
@@ -2190,13 +2167,12 @@ msgid "Best visibility"
|
|
2190 |
msgstr ""
|
2191 |
|
2192 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
2193 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2194 |
-
|
2195 |
-
|
2196 |
-
msgstr "Ordre de tri :"
|
2197 |
|
2198 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
2199 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2200 |
#, fuzzy
|
2201 |
msgid "For administrative purposes set a sortorder."
|
2202 |
msgstr "Pour des raisons administratives définir un ordre de tri."
|
@@ -2224,7 +2200,7 @@ msgid ""
|
|
2224 |
msgstr ""
|
2225 |
|
2226 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
2227 |
-
msgid "Cities/States
|
2228 |
msgstr ""
|
2229 |
|
2230 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
@@ -2240,7 +2216,7 @@ msgid ""
|
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
2243 |
-
msgid "Countries
|
2244 |
msgstr ""
|
2245 |
|
2246 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
@@ -2304,21 +2280,20 @@ msgid "grid"
|
|
2304 |
msgstr "grille"
|
2305 |
|
2306 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2307 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2308 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2309 |
#, fuzzy
|
2310 |
msgid "Post Injection"
|
2311 |
msgstr "Injection dans l'article"
|
2312 |
|
2313 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2314 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2315 |
#, fuzzy
|
2316 |
msgid "Geolocation"
|
2317 |
msgstr "Géolocalisation"
|
2318 |
|
2319 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2320 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2321 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2322 |
#, fuzzy
|
2323 |
msgid "Mode"
|
2324 |
msgstr "Mode"
|
@@ -2328,11 +2303,6 @@ msgstr "Mode"
|
|
2328 |
msgid "Disabled Ads"
|
2329 |
msgstr "Pubs inactives"
|
2330 |
|
2331 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2332 |
-
#, fuzzy
|
2333 |
-
msgid "Activate"
|
2334 |
-
msgstr "Activer"
|
2335 |
-
|
2336 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2337 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2338 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2347,16 +2317,9 @@ msgstr "Mettre à zéro les statistiques"
|
|
2347 |
msgid "Start / End"
|
2348 |
msgstr "Début / Fin"
|
2349 |
|
2350 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2351 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2352 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2353 |
-
#, fuzzy
|
2354 |
-
msgid "Title"
|
2355 |
-
msgstr "Titre :"
|
2356 |
-
|
2357 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2358 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2359 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2360 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2361 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2362 |
#, fuzzy
|
@@ -2366,7 +2329,7 @@ msgstr "Vues"
|
|
2366 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2367 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2368 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2369 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2370 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2371 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2372 |
#, fuzzy
|
@@ -2384,7 +2347,7 @@ msgstr "CTR"
|
|
2384 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2385 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2386 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2387 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2388 |
#, fuzzy
|
2389 |
msgid "Edit"
|
2390 |
msgstr "Modifier"
|
@@ -2444,7 +2407,7 @@ msgid "For 7 days"
|
|
2444 |
msgstr "Pour 7 jours"
|
2445 |
|
2446 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2447 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2448 |
#, fuzzy
|
2449 |
msgid "Configuration errors."
|
2450 |
msgstr "Erreurs de configuration."
|
@@ -2458,12 +2421,6 @@ msgstr "Pubs Activées"
|
|
2458 |
msgid "Export to XML"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2462 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2463 |
-
#, fuzzy
|
2464 |
-
msgid "Weight"
|
2465 |
-
msgstr "Importance"
|
2466 |
-
|
2467 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2468 |
#, fuzzy
|
2469 |
msgid "Shown"
|
@@ -2531,11 +2488,6 @@ msgstr "Nouveau Groupe"
|
|
2531 |
msgid "Edit Group"
|
2532 |
msgstr "Modifier Groupe"
|
2533 |
|
2534 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2535 |
-
#, fuzzy
|
2536 |
-
msgid "Name:"
|
2537 |
-
msgstr "Nom"
|
2538 |
-
|
2539 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2540 |
#, fuzzy
|
2541 |
msgid "Default - Show one ad at a time"
|
@@ -2637,15 +2589,15 @@ msgstr ""
|
|
2637 |
"intervalle. La valeur par défaut est : 6."
|
2638 |
|
2639 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2640 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2641 |
msgid ""
|
2642 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2643 |
"\" and enter ID"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2647 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2648 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2649 |
#, fuzzy
|
2650 |
msgid "Save Group"
|
2651 |
msgstr "Sauvegarder groupe"
|
@@ -2705,174 +2657,190 @@ msgid ""
|
|
2705 |
"setting. Not every theme supports this feature."
|
2706 |
msgstr ""
|
2707 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2708 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2709 |
#, fuzzy
|
2710 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2711 |
msgstr ""
|
2712 |
"Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
|
2713 |
"défaut de l'identifiant du groupe."
|
2714 |
|
2715 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2716 |
-
|
2717 |
-
msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
|
2718 |
msgstr ""
|
2719 |
-
"Mettre en place un groupe de secours, et utiliser la localisation "
|
2720 |
-
"géographique dans AdRotate Pro"
|
2721 |
|
2722 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2723 |
-
|
2724 |
-
|
2725 |
-
msgstr "Intégrer les publicités dans les catégories?"
|
2726 |
|
2727 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2728 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2729 |
#, fuzzy
|
2730 |
msgid "Before content"
|
2731 |
msgstr "Avant le contenu"
|
2732 |
|
2733 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2734 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2735 |
#, fuzzy
|
2736 |
msgid "After content"
|
2737 |
msgstr "Après le contenu"
|
2738 |
|
2739 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2740 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2741 |
#, fuzzy
|
2742 |
msgid "Before and after content"
|
2743 |
msgstr "Avant et après le contenu"
|
2744 |
|
2745 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2746 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2747 |
#, fuzzy
|
2748 |
msgid "After..."
|
2749 |
msgstr "Après..."
|
2750 |
|
2751 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2752 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2753 |
#, fuzzy
|
2754 |
msgid "the first paragraph"
|
2755 |
msgstr "le premier parapgraphe"
|
2756 |
|
2757 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2758 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2759 |
msgid "the second paragraph"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2763 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2764 |
msgid "the third paragraph"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2768 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2769 |
msgid "the fourth paragraph"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2773 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2774 |
#, fuzzy
|
2775 |
msgid "every 2nd paragraph"
|
2776 |
msgstr "chaque second paragraphe"
|
2777 |
|
2778 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2779 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2780 |
#, fuzzy
|
2781 |
msgid "every 3rd paragraph"
|
2782 |
msgstr "chaque 3ème paragraphe"
|
2783 |
|
2784 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2785 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2786 |
#, fuzzy
|
2787 |
msgid "every 4th paragraph"
|
2788 |
msgstr "chaque 4ème paragraphe"
|
2789 |
|
2790 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2791 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2792 |
#, fuzzy
|
2793 |
msgid "every 5th paragraph"
|
2794 |
msgstr "chaque 5ème paragraphe"
|
2795 |
|
2796 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2797 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2798 |
#, fuzzy
|
2799 |
msgid "every 6th paragraph"
|
2800 |
msgstr "chaque 6ème paragraphe"
|
2801 |
|
2802 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2803 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2804 |
#, fuzzy
|
2805 |
msgid "every 7th paragraph"
|
2806 |
msgstr "chaque 7ème paragraphe"
|
2807 |
|
2808 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2809 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2810 |
#, fuzzy
|
2811 |
msgid "every 8th paragraph"
|
2812 |
msgstr "chaque 8ème paragraphe"
|
2813 |
|
2814 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2815 |
#, fuzzy
|
2816 |
msgid "Which categories?"
|
2817 |
msgstr "Quelles catégories?"
|
2818 |
|
2819 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2820 |
#, fuzzy
|
2821 |
msgid "Click the categories posts you want the adverts to show in."
|
2822 |
msgstr ""
|
2823 |
"Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
|
2824 |
"pulicités."
|
2825 |
|
2826 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2827 |
-
|
2828 |
-
|
2829 |
-
msgstr "Intégrer les publicités dans les pages?"
|
2830 |
|
2831 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2832 |
#, fuzzy
|
2833 |
msgid "Which pages?"
|
2834 |
msgstr "Quelles pages?"
|
2835 |
|
2836 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2837 |
#, fuzzy
|
2838 |
msgid "Click the pages you want the adverts to show in."
|
2839 |
msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
|
2840 |
|
2841 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2842 |
#, fuzzy
|
2843 |
msgid "Wrapper code"
|
2844 |
msgstr "Code enveloppant"
|
2845 |
|
2846 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2847 |
-
msgid "Wraps around each
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2851 |
-
|
2852 |
-
|
2853 |
-
msgstr "Avant la pub"
|
2854 |
|
2855 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2856 |
#, fuzzy
|
2857 |
msgid "Options:"
|
2858 |
msgstr "Options :"
|
2859 |
|
2860 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2861 |
-
|
2862 |
-
|
2863 |
-
msgstr "Après la pub"
|
2864 |
|
2865 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2866 |
-
|
2867 |
-
|
2868 |
-
msgstr "Choisir les pubs"
|
2869 |
|
2870 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2871 |
#, fuzzy
|
2872 |
msgid "Visible until"
|
2873 |
msgstr "Visible jusqu'à"
|
2874 |
|
2875 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2876 |
#, fuzzy
|
2877 |
msgid "No ads created!"
|
2878 |
msgstr "Aucune pub créée!"
|
@@ -2902,7 +2870,7 @@ msgstr "Ceci ne peux pas être défait!"
|
|
2902 |
msgid "Code"
|
2903 |
msgstr "Code"
|
2904 |
|
2905 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2906 |
#, fuzzy
|
2907 |
msgid "No groups created!"
|
2908 |
msgstr "Aucun groupe n'a été créé!"
|
@@ -2912,6 +2880,120 @@ msgstr "Aucun groupe n'a été créé!"
|
|
2912 |
msgid "Statistics for group"
|
2913 |
msgstr "Statistiques pour le groupe"
|
2914 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2915 |
#, fuzzy
|
2916 |
#~ msgid "Enable stats"
|
2917 |
#~ msgstr "Statistiques activés"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
16 |
"X-Generator: Poedit 1.7.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:801
|
20 |
#, fuzzy
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
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:737
|
30 |
#, fuzzy
|
31 |
msgid "Oh no! Something went wrong!"
|
32 |
msgstr "Oh no! Un problème est survenu!"
|
33 |
|
34 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
52 |
#, fuzzy
|
53 |
msgid "Contact support if the issue persists:"
|
54 |
msgstr "Contactez le support si le soucis persiste :"
|
55 |
|
56 |
+
#: adrotate-output.php:758
|
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:760
|
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:767 adrotate-output.php:769
|
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:775
|
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:781
|
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:786
|
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:792
|
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:792
|
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:798
|
116 |
#, fuzzy
|
117 |
msgid "An unknown error occured."
|
118 |
msgstr "Une erreur inconnue s'est produite."
|
119 |
|
120 |
+
#: adrotate-output.php:823
|
121 |
#, fuzzy
|
122 |
msgid "active ad(s) expired."
|
123 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
124 |
|
125 |
+
#: adrotate-output.php:823
|
126 |
#, fuzzy
|
127 |
msgid "Take action now"
|
128 |
msgstr "Agir maintenant"
|
129 |
|
130 |
+
#: adrotate-output.php:825
|
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:825
|
136 |
#, fuzzy
|
137 |
msgid "Check it out"
|
138 |
msgstr "Vérifier-le"
|
139 |
|
140 |
+
#: adrotate-output.php:827
|
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:827
|
146 |
#, fuzzy
|
147 |
msgid "Solve this"
|
148 |
msgstr "Résoudre"
|
149 |
|
150 |
+
#: adrotate-output.php:829
|
151 |
#, fuzzy
|
152 |
msgid "ad(s) expired."
|
153 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
154 |
|
155 |
+
#: adrotate-output.php:829
|
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:829
|
161 |
#, fuzzy
|
162 |
msgid "ad(s) with configuration errors."
|
163 |
msgstr "publicité(s) avec des erreurs de configuration."
|
164 |
|
165 |
+
#: adrotate-output.php:829
|
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:841
|
171 |
#, fuzzy
|
172 |
msgid "Learn More"
|
173 |
msgstr "En savoir plus"
|
174 |
|
175 |
+
#: adrotate-output.php:842
|
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:842
|
182 |
msgid "Get more features to even better run your advertising campaigns."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: adrotate-output.php:842
|
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:886
|
191 |
msgid ""
|
192 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
193 |
"this menu. Check out the"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:886
|
197 |
msgid "manuals"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
201 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
202 |
msgid "and"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: adrotate-output.php:886
|
206 |
msgid "forums"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: adrotate-output.php:922
|
210 |
msgid "Useful Links"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: adrotate-output.php:923
|
214 |
msgid "Useful links to learn more about AdRotate"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:925
|
218 |
#, fuzzy
|
219 |
msgid "AdRotate Page"
|
220 |
msgstr "AdRotate Pro"
|
221 |
|
222 |
+
#: adrotate-output.php:926
|
223 |
#, fuzzy
|
224 |
msgid "Getting Started With AdRotate"
|
225 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
226 |
|
227 |
+
#: adrotate-output.php:927
|
228 |
#, fuzzy
|
229 |
msgid "AdRotate manuals"
|
230 |
msgstr "Informations sur Adrotate"
|
231 |
|
232 |
+
#: adrotate-output.php:928
|
233 |
#, fuzzy
|
234 |
msgid "AdRotate Support Forum"
|
235 |
msgstr "Magasin AdRotate"
|
236 |
|
237 |
+
#: adrotate-output.php:954
|
238 |
#, fuzzy
|
239 |
msgid "Help AdRotate Grow"
|
240 |
msgstr "Bloqué avec AdRotate? Je peux vous aider!"
|
241 |
|
242 |
+
#: adrotate-output.php:955
|
243 |
#, fuzzy
|
244 |
msgid "Brought to you by"
|
245 |
msgstr "Présenté par"
|
246 |
|
247 |
+
#: adrotate-output.php:962
|
248 |
msgid ""
|
249 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
250 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:962
|
254 |
msgid "If you find AdRotate useful please leave your honest"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:962
|
258 |
msgid "rating"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:962
|
262 |
#, fuzzy
|
263 |
msgid "review"
|
264 |
msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
|
265 |
|
266 |
+
#: adrotate-output.php:962
|
267 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: adrotate-output.php:965
|
271 |
#, fuzzy
|
272 |
msgid ""
|
273 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
276 |
"Votre guichet unique pour le développement Web, le consulting et toutes les "
|
277 |
"façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
|
278 |
|
279 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
280 |
#, fuzzy
|
281 |
msgid "Visit the"
|
282 |
msgstr "Visitez le"
|
283 |
|
284 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
285 |
#, fuzzy
|
286 |
msgid "website"
|
287 |
msgstr "site"
|
288 |
|
289 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
290 |
#, fuzzy
|
291 |
msgid "Available in AdRotate Pro"
|
292 |
msgstr "Disponible dans Adrotate Pro"
|
293 |
|
294 |
+
#: adrotate-output.php:995
|
295 |
#, fuzzy
|
296 |
msgid "More information..."
|
297 |
msgstr "Plus d'informations..."
|
298 |
|
299 |
+
#: adrotate-output.php:996
|
300 |
#, fuzzy
|
301 |
msgid "This feature is available in AdRotate Pro"
|
302 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
303 |
|
304 |
+
#: adrotate-output.php:996
|
305 |
#, fuzzy
|
306 |
msgid "Learn more"
|
307 |
msgstr "En savoir plus"
|
440 |
msgid "Choose what you want to use this widget for"
|
441 |
msgstr "Choisissez le fonction de ce widget"
|
442 |
|
443 |
+
#: adrotate-widget.php:137
|
444 |
#, fuzzy
|
445 |
msgid "ID:"
|
446 |
msgstr "ID :"
|
595 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
596 |
|
597 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
598 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
599 |
#, fuzzy
|
600 |
msgid "Report"
|
601 |
msgstr "Rapport"
|
615 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
616 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
617 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
618 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
619 |
#, fuzzy
|
620 |
msgid "More information"
|
621 |
msgstr "Plus d'informations..."
|
639 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
640 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
641 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
642 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
643 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
644 |
#, fuzzy
|
645 |
msgid "ID"
|
686 |
msgstr "Mettre à jour aujourd'hui"
|
687 |
|
688 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
689 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
690 |
#, fuzzy
|
691 |
msgid "Expires soon."
|
692 |
msgstr "Expire bientôt."
|
693 |
|
694 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
695 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
696 |
#, fuzzy
|
697 |
msgid "Has expired."
|
698 |
msgstr "A expiré."
|
753 |
"tailles d'écran."
|
754 |
|
755 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
756 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
757 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
758 |
#, fuzzy
|
759 |
msgid "Example:"
|
760 |
msgstr "Exemple :"
|
777 |
msgid "Available banner images in"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
781 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
782 |
#, fuzzy
|
783 |
msgid "Name"
|
784 |
msgstr "Nom"
|
898 |
msgid "Update Options"
|
899 |
msgstr "Mettre à jour les options"
|
900 |
|
901 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
902 |
#, fuzzy
|
903 |
msgid "Statistics"
|
904 |
msgstr "Statistiques"
|
907 |
msgid "How to track stats"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
911 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
912 |
#, fuzzy
|
913 |
msgid "Disabled"
|
914 |
msgstr "Désactivé"
|
1843 |
msgstr "Modifier la pub"
|
1844 |
|
1845 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1846 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1847 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1848 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1849 |
#, fuzzy
|
1850 |
+
msgid "Title"
|
1851 |
msgstr "Titre :"
|
1852 |
|
1853 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1854 |
+
msgid "AdCode"
|
1855 |
+
msgstr ""
|
|
|
1856 |
|
1857 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1858 |
#, fuzzy
|
1860 |
msgstr "Exemples de base :"
|
1861 |
|
1862 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1863 |
+
msgid "Useful tags"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1897 |
+
msgid "Banner image"
|
1898 |
+
msgstr ""
|
|
|
1899 |
|
1900 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1901 |
msgid "WordPress media:"
|
1934 |
"Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
|
1935 |
"valeur, ce champ a la priorité."
|
1936 |
|
|
|
|
|
|
|
|
|
1937 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1938 |
msgid "Enable click and impression tracking for this advert."
|
1939 |
msgstr ""
|
1946 |
msgstr ""
|
1947 |
|
1948 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1949 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1950 |
#, fuzzy
|
1951 |
+
msgid "Activate"
|
1952 |
msgstr "Activer"
|
1953 |
|
1954 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1964 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1965 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1966 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1967 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1968 |
#, fuzzy
|
1969 |
msgid "Get more features with AdRotate Pro."
|
1970 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
1982 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1983 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1984 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1985 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1986 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1987 |
#, fuzzy
|
1988 |
msgid "Cancel"
|
1989 |
msgstr "Annuller"
|
2013 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
2014 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
2015 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
2016 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
2017 |
#, fuzzy
|
2018 |
msgid "Usage"
|
2019 |
msgstr "Usage"
|
2021 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
2022 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
2023 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
2024 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
2025 |
+
msgid "Widget"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
2035 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
2036 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
2037 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
2038 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
2039 |
+
msgid "In a post or page"
|
2040 |
+
msgstr ""
|
|
|
2041 |
|
2042 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
2043 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
2044 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
2045 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
2046 |
+
msgid "Directly in a theme"
|
2047 |
+
msgstr ""
|
|
|
2048 |
|
2049 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
2050 |
msgid "Schedule your advert"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
2054 |
+
msgid "Start date (day/month/year)"
|
2055 |
+
msgstr ""
|
|
|
2056 |
|
2057 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
2058 |
+
msgid "End date (day/month/year)"
|
2059 |
+
msgstr ""
|
|
|
2060 |
|
2061 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
2062 |
+
msgid "Start time (hh:mm)"
|
2063 |
+
msgstr ""
|
|
|
2064 |
|
2065 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
2066 |
+
msgid "End time (hh:mm)"
|
2067 |
+
msgstr ""
|
|
|
2068 |
|
2069 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
2070 |
+
msgid "Maximum Clicks"
|
2071 |
+
msgstr ""
|
|
|
2072 |
|
2073 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
2074 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
2077 |
msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
|
2078 |
|
2079 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
2080 |
+
msgid "Maximum Impressions"
|
2081 |
+
msgstr ""
|
|
|
2082 |
|
2083 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
2084 |
+
msgid "Important"
|
|
|
|
|
|
|
|
|
2085 |
msgstr ""
|
|
|
|
|
|
|
|
|
2086 |
|
2087 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
|
|
2088 |
msgid ""
|
2089 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
2090 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2091 |
+
"14:00 hours. 6AM is 6:00 hours."
|
2092 |
msgstr ""
|
|
|
|
|
|
|
2093 |
|
2094 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
2095 |
#, fuzzy
|
2099 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
2100 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
2101 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
2102 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2103 |
#, fuzzy
|
2104 |
msgid "Upgrade today"
|
2105 |
msgstr "Mettre à jour aujourd'hui"
|
2116 |
msgstr "Tous les paramètres ci-dessous sont optionels."
|
2117 |
|
2118 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
2119 |
+
msgid "Responsive"
|
2120 |
+
msgstr ""
|
|
|
2121 |
|
2122 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
2123 |
#, fuzzy
|
2137 |
"fluide."
|
2138 |
|
2139 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
2140 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
2141 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
2142 |
#, fuzzy
|
2143 |
+
msgid "Weight"
|
2144 |
msgstr "Importance"
|
2145 |
|
|
|
|
|
|
|
|
|
|
|
2146 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
2147 |
#, fuzzy
|
2148 |
msgid "Barely visible"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
2170 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
2171 |
+
msgid "Sortorder"
|
2172 |
+
msgstr ""
|
|
|
2173 |
|
2174 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
2175 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2176 |
#, fuzzy
|
2177 |
msgid "For administrative purposes set a sortorder."
|
2178 |
msgstr "Pour des raisons administratives définir un ordre de tri."
|
2200 |
msgstr ""
|
2201 |
|
2202 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
2203 |
+
msgid "Cities/States"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
2216 |
msgstr ""
|
2217 |
|
2218 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
2219 |
+
msgid "Countries"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
2280 |
msgstr "grille"
|
2281 |
|
2282 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2283 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
2284 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2285 |
#, fuzzy
|
2286 |
msgid "Post Injection"
|
2287 |
msgstr "Injection dans l'article"
|
2288 |
|
2289 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2290 |
#, fuzzy
|
2291 |
msgid "Geolocation"
|
2292 |
msgstr "Géolocalisation"
|
2293 |
|
2294 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2295 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2296 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2297 |
#, fuzzy
|
2298 |
msgid "Mode"
|
2299 |
msgstr "Mode"
|
2303 |
msgid "Disabled Ads"
|
2304 |
msgstr "Pubs inactives"
|
2305 |
|
|
|
|
|
|
|
|
|
|
|
2306 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2307 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2308 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2317 |
msgid "Start / End"
|
2318 |
msgstr "Début / Fin"
|
2319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2320 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2321 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2322 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2323 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2324 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2325 |
#, fuzzy
|
2329 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2330 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2331 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2332 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2333 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2334 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2335 |
#, fuzzy
|
2347 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2348 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2349 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2350 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2351 |
#, fuzzy
|
2352 |
msgid "Edit"
|
2353 |
msgstr "Modifier"
|
2407 |
msgstr "Pour 7 jours"
|
2408 |
|
2409 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2410 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2411 |
#, fuzzy
|
2412 |
msgid "Configuration errors."
|
2413 |
msgstr "Erreurs de configuration."
|
2421 |
msgid "Export to XML"
|
2422 |
msgstr ""
|
2423 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2424 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2425 |
#, fuzzy
|
2426 |
msgid "Shown"
|
2488 |
msgid "Edit Group"
|
2489 |
msgstr "Modifier Groupe"
|
2490 |
|
|
|
|
|
|
|
|
|
|
|
2491 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2492 |
#, fuzzy
|
2493 |
msgid "Default - Show one ad at a time"
|
2589 |
"intervalle. La valeur par défaut est : 6."
|
2590 |
|
2591 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2592 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2593 |
msgid ""
|
2594 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2595 |
"\" and enter ID"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2599 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2600 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2601 |
#, fuzzy
|
2602 |
msgid "Save Group"
|
2603 |
msgstr "Sauvegarder groupe"
|
2657 |
"setting. Not every theme supports this feature."
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2661 |
+
msgid "Geo Targeting"
|
2662 |
+
msgstr ""
|
2663 |
+
|
2664 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2665 |
+
msgid "Enable Geo Targeting for this group."
|
2666 |
+
msgstr ""
|
2667 |
+
|
2668 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2669 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2670 |
+
msgstr ""
|
2671 |
+
|
2672 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2673 |
+
msgid "Mobile support"
|
2674 |
+
msgstr ""
|
2675 |
+
|
2676 |
+
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2677 |
+
msgid "Enable mobile support for this group."
|
2678 |
+
msgstr ""
|
2679 |
+
|
2680 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2681 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2682 |
+
msgstr ""
|
2683 |
+
|
2684 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2685 |
#, fuzzy
|
2686 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2687 |
msgstr ""
|
2688 |
"Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
|
2689 |
"défaut de l'identifiant du groupe."
|
2690 |
|
2691 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2692 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
|
|
2693 |
msgstr ""
|
|
|
|
|
2694 |
|
2695 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2696 |
+
msgid "In categories?"
|
2697 |
+
msgstr ""
|
|
|
2698 |
|
2699 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2700 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2701 |
#, fuzzy
|
2702 |
msgid "Before content"
|
2703 |
msgstr "Avant le contenu"
|
2704 |
|
2705 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2706 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2707 |
#, fuzzy
|
2708 |
msgid "After content"
|
2709 |
msgstr "Après le contenu"
|
2710 |
|
2711 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2712 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2713 |
#, fuzzy
|
2714 |
msgid "Before and after content"
|
2715 |
msgstr "Avant et après le contenu"
|
2716 |
|
2717 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2718 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2719 |
#, fuzzy
|
2720 |
msgid "After..."
|
2721 |
msgstr "Après..."
|
2722 |
|
2723 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2724 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2725 |
#, fuzzy
|
2726 |
msgid "the first paragraph"
|
2727 |
msgstr "le premier parapgraphe"
|
2728 |
|
2729 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2730 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2731 |
msgid "the second paragraph"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2735 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2736 |
msgid "the third paragraph"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2740 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2741 |
msgid "the fourth paragraph"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2745 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2746 |
#, fuzzy
|
2747 |
msgid "every 2nd paragraph"
|
2748 |
msgstr "chaque second paragraphe"
|
2749 |
|
2750 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2751 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2752 |
#, fuzzy
|
2753 |
msgid "every 3rd paragraph"
|
2754 |
msgstr "chaque 3ème paragraphe"
|
2755 |
|
2756 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2757 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2758 |
#, fuzzy
|
2759 |
msgid "every 4th paragraph"
|
2760 |
msgstr "chaque 4ème paragraphe"
|
2761 |
|
2762 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2763 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2764 |
#, fuzzy
|
2765 |
msgid "every 5th paragraph"
|
2766 |
msgstr "chaque 5ème paragraphe"
|
2767 |
|
2768 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2769 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2770 |
#, fuzzy
|
2771 |
msgid "every 6th paragraph"
|
2772 |
msgstr "chaque 6ème paragraphe"
|
2773 |
|
2774 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2775 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2776 |
#, fuzzy
|
2777 |
msgid "every 7th paragraph"
|
2778 |
msgstr "chaque 7ème paragraphe"
|
2779 |
|
2780 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2781 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2782 |
#, fuzzy
|
2783 |
msgid "every 8th paragraph"
|
2784 |
msgstr "chaque 8ème paragraphe"
|
2785 |
|
2786 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2787 |
#, fuzzy
|
2788 |
msgid "Which categories?"
|
2789 |
msgstr "Quelles catégories?"
|
2790 |
|
2791 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2792 |
#, fuzzy
|
2793 |
msgid "Click the categories posts you want the adverts to show in."
|
2794 |
msgstr ""
|
2795 |
"Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
|
2796 |
"pulicités."
|
2797 |
|
2798 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2799 |
+
msgid "In pages?"
|
2800 |
+
msgstr ""
|
|
|
2801 |
|
2802 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2803 |
#, fuzzy
|
2804 |
msgid "Which pages?"
|
2805 |
msgstr "Quelles pages?"
|
2806 |
|
2807 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2808 |
#, fuzzy
|
2809 |
msgid "Click the pages you want the adverts to show in."
|
2810 |
msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
|
2811 |
|
2812 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2813 |
#, fuzzy
|
2814 |
msgid "Wrapper code"
|
2815 |
msgstr "Code enveloppant"
|
2816 |
|
2817 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2818 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2822 |
+
msgid "Before advert"
|
2823 |
+
msgstr ""
|
|
|
2824 |
|
2825 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2826 |
#, fuzzy
|
2827 |
msgid "Options:"
|
2828 |
msgstr "Options :"
|
2829 |
|
2830 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2831 |
+
msgid "After advert"
|
2832 |
+
msgstr ""
|
|
|
2833 |
|
2834 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2835 |
+
msgid "Select adverts"
|
2836 |
+
msgstr ""
|
|
|
2837 |
|
2838 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2839 |
#, fuzzy
|
2840 |
msgid "Visible until"
|
2841 |
msgstr "Visible jusqu'à"
|
2842 |
|
2843 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2844 |
#, fuzzy
|
2845 |
msgid "No ads created!"
|
2846 |
msgstr "Aucune pub créée!"
|
2870 |
msgid "Code"
|
2871 |
msgstr "Code"
|
2872 |
|
2873 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2874 |
#, fuzzy
|
2875 |
msgid "No groups created!"
|
2876 |
msgstr "Aucun groupe n'a été créé!"
|
2880 |
msgid "Statistics for group"
|
2881 |
msgstr "Statistiques pour le groupe"
|
2882 |
|
2883 |
+
#, fuzzy
|
2884 |
+
#~ msgid "Title:"
|
2885 |
+
#~ msgstr "Titre :"
|
2886 |
+
|
2887 |
+
#, fuzzy
|
2888 |
+
#~ msgid "AdCode:"
|
2889 |
+
#~ msgstr "Code :"
|
2890 |
+
|
2891 |
+
#, fuzzy
|
2892 |
+
#~ msgid "Banner image:"
|
2893 |
+
#~ msgstr "Image :"
|
2894 |
+
|
2895 |
+
#, fuzzy
|
2896 |
+
#~ msgid "Activate:"
|
2897 |
+
#~ msgstr "Activer"
|
2898 |
+
|
2899 |
+
#, fuzzy
|
2900 |
+
#~ msgid "In a post or page:"
|
2901 |
+
#~ msgstr "Insérer des publicités au début ou à la fin de l'article/page."
|
2902 |
+
|
2903 |
+
#, fuzzy
|
2904 |
+
#~ msgid "Directly in a theme:"
|
2905 |
+
#~ msgstr "Directement dans un thème :"
|
2906 |
+
|
2907 |
+
#, fuzzy
|
2908 |
+
#~ msgid "Start date (day/month/year):"
|
2909 |
+
#~ msgstr "Date de début (jour/mois/année) :"
|
2910 |
+
|
2911 |
+
#, fuzzy
|
2912 |
+
#~ msgid "End date (day/month/year):"
|
2913 |
+
#~ msgstr "Date de fin (jour/mois/année) :"
|
2914 |
+
|
2915 |
+
#, fuzzy
|
2916 |
+
#~ msgid "Start time (hh:mm):"
|
2917 |
+
#~ msgstr "Début (hh:mm) :"
|
2918 |
+
|
2919 |
+
#, fuzzy
|
2920 |
+
#~ msgid "End time (hh:mm):"
|
2921 |
+
#~ msgstr "Fin (hh:mm) :"
|
2922 |
+
|
2923 |
+
#, fuzzy
|
2924 |
+
#~ msgid "Maximum Clicks:"
|
2925 |
+
#~ msgstr "Nombre de clicks max :"
|
2926 |
+
|
2927 |
+
#, fuzzy
|
2928 |
+
#~ msgid "Maximum Impressions:"
|
2929 |
+
#~ msgstr "Nombre max de vues :"
|
2930 |
+
|
2931 |
+
#, fuzzy
|
2932 |
+
#~ msgid ""
|
2933 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2934 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2935 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2936 |
+
#~ msgstr ""
|
2937 |
+
#~ "L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes "
|
2938 |
+
#~ "habitués au système de AM/PM, gardez cela en tête : si l'heure de début "
|
2939 |
+
#~ "ou de fin est après midi, ajoutez 12 heures (par exemple, 2PM est égal à "
|
2940 |
+
#~ "14:00 et 6AM est 6:00). "
|
2941 |
+
|
2942 |
+
#, fuzzy
|
2943 |
+
#~ msgid ""
|
2944 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2945 |
+
#~ "only. Every schedule can have it's own limit!"
|
2946 |
+
#~ msgstr ""
|
2947 |
+
#~ "Le nombre maximum de clics et d'impressions est mesuré pour le calendrier "
|
2948 |
+
#~ "en question uniquement. Tous les calendriers peuvent avoir leurs propres "
|
2949 |
+
#~ "limites!"
|
2950 |
+
|
2951 |
+
#, fuzzy
|
2952 |
+
#~ msgid "Responsive:"
|
2953 |
+
#~ msgstr "Responsive :"
|
2954 |
+
|
2955 |
+
#, fuzzy
|
2956 |
+
#~ msgid "Weight:"
|
2957 |
+
#~ msgstr "Importance"
|
2958 |
+
|
2959 |
+
#, fuzzy
|
2960 |
+
#~ msgid "AdRotate Pro only"
|
2961 |
+
#~ msgstr "AdRotate Pro"
|
2962 |
+
|
2963 |
+
#, fuzzy
|
2964 |
+
#~ msgid "Sortorder:"
|
2965 |
+
#~ msgstr "Ordre de tri :"
|
2966 |
+
|
2967 |
+
#, fuzzy
|
2968 |
+
#~ msgid "Name:"
|
2969 |
+
#~ msgstr "Nom"
|
2970 |
+
|
2971 |
+
#, fuzzy
|
2972 |
+
#~ msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
|
2973 |
+
#~ msgstr ""
|
2974 |
+
#~ "Mettre en place un groupe de secours, et utiliser la localisation "
|
2975 |
+
#~ "géographique dans AdRotate Pro"
|
2976 |
+
|
2977 |
+
#, fuzzy
|
2978 |
+
#~ msgid "Include ads in categories?"
|
2979 |
+
#~ msgstr "Intégrer les publicités dans les catégories?"
|
2980 |
+
|
2981 |
+
#, fuzzy
|
2982 |
+
#~ msgid "Include ads in pages?"
|
2983 |
+
#~ msgstr "Intégrer les publicités dans les pages?"
|
2984 |
+
|
2985 |
+
#, fuzzy
|
2986 |
+
#~ msgid "Before ad"
|
2987 |
+
#~ msgstr "Avant la pub"
|
2988 |
+
|
2989 |
+
#, fuzzy
|
2990 |
+
#~ msgid "After ad"
|
2991 |
+
#~ msgstr "Après la pub"
|
2992 |
+
|
2993 |
+
#, fuzzy
|
2994 |
+
#~ msgid "Select Ads"
|
2995 |
+
#~ msgstr "Choisir les pubs"
|
2996 |
+
|
2997 |
#, fuzzy
|
2998 |
#~ msgid "Enable stats"
|
2999 |
#~ msgstr "Statistiques activés"
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
@@ -17,19 +17,19 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
-
#: adrotate-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,155 +93,155 @@ 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. Everything related to AdRotate is in "
|
167 |
"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:151
|
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 |
#, fuzzy
|
214 |
msgid "Help AdRotate Grow"
|
215 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
216 |
|
217 |
-
#: adrotate-output.php:
|
218 |
msgid "Brought to you by"
|
219 |
msgstr "Presentado por"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid ""
|
223 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
224 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "If you find AdRotate useful please leave your honest"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "rating"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
#, fuzzy
|
237 |
msgid "review"
|
238 |
msgstr "Revise el anuncio aquí:"
|
239 |
|
240 |
-
#: adrotate-output.php:
|
241 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
msgid ""
|
246 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
247 |
"out more about what I can do for you!"
|
@@ -249,27 +249,27 @@ msgstr ""
|
|
249 |
"Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
|
250 |
"WordPress! Para saber más sobre lo que puedo hacer por usted!"
|
251 |
|
252 |
-
#: adrotate-output.php:
|
253 |
msgid "Visit the"
|
254 |
msgstr "Visite la"
|
255 |
|
256 |
-
#: adrotate-output.php:
|
257 |
msgid "website"
|
258 |
msgstr "página web"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid "Available in AdRotate Pro"
|
262 |
msgstr "Disponible en AdRotate Pro"
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
msgid "More information..."
|
266 |
msgstr "Más información..."
|
267 |
|
268 |
-
#: adrotate-output.php:
|
269 |
msgid "This feature is available in AdRotate Pro"
|
270 |
msgstr "Esta función está disponible en AdRotate Pro"
|
271 |
|
272 |
-
#: adrotate-output.php:
|
273 |
msgid "Learn more"
|
274 |
msgstr "Aprender más"
|
275 |
|
@@ -382,7 +382,7 @@ msgstr "Grupo de Anuncios - Utilizar ID de grupo"
|
|
382 |
msgid "Choose what you want to use this widget for"
|
383 |
msgstr "Elija lo que desea utilizar en este widget para"
|
384 |
|
385 |
-
#: adrotate-widget.php:137
|
386 |
msgid "ID:"
|
387 |
msgstr "ID:"
|
388 |
|
@@ -510,7 +510,7 @@ msgid "Group including it's Ads deleted"
|
|
510 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
511 |
|
512 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
513 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
514 |
msgid "Report"
|
515 |
msgstr "Informe"
|
516 |
|
@@ -529,7 +529,7 @@ msgstr ""
|
|
529 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
530 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
531 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
532 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
533 |
#, fuzzy
|
534 |
msgid "More information"
|
535 |
msgstr "Más información..."
|
@@ -551,6 +551,7 @@ msgstr "Aplicar"
|
|
551 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
552 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
553 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
554 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
555 |
msgid "ID"
|
556 |
msgstr "ID"
|
@@ -594,12 +595,12 @@ msgid "Upgrade today!"
|
|
594 |
msgstr "Hoy"
|
595 |
|
596 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
597 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
598 |
msgid "Expires soon."
|
599 |
msgstr "Caduca pronto."
|
600 |
|
601 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
602 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
603 |
msgid "Has expired."
|
604 |
msgstr "Ha expirado."
|
605 |
|
@@ -671,8 +672,8 @@ msgstr ""
|
|
671 |
"diferentes visores."
|
672 |
|
673 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
674 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
675 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
676 |
msgid "Example:"
|
677 |
msgstr "Ejemplo:"
|
678 |
|
@@ -695,7 +696,8 @@ msgstr "Subir imagen"
|
|
695 |
msgid "Available banner images in"
|
696 |
msgstr "Los banners estan disponibles en"
|
697 |
|
698 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
699 |
msgid "Name"
|
700 |
msgstr "Nombre"
|
701 |
|
@@ -797,7 +799,7 @@ msgstr "Perfil para eliminar grupos"
|
|
797 |
msgid "Update Options"
|
798 |
msgstr "Actualizar Opciones"
|
799 |
|
800 |
-
#: adrotate.php:691
|
801 |
msgid "Statistics"
|
802 |
msgstr "Estadísticas"
|
803 |
|
@@ -805,8 +807,8 @@ msgstr "Estadísticas"
|
|
805 |
msgid "How to track stats"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
809 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
810 |
msgid "Disabled"
|
811 |
msgstr "Desactivado"
|
812 |
|
@@ -1614,19 +1616,22 @@ msgid "Edit Advert"
|
|
1614 |
msgstr "Editar Anuncio"
|
1615 |
|
1616 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1617 |
-
|
1618 |
-
|
|
|
|
|
|
|
1619 |
|
1620 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1621 |
-
msgid "AdCode
|
1622 |
-
msgstr "
|
1623 |
|
1624 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1625 |
msgid "Basic Examples:"
|
1626 |
msgstr "Ejemplos Básicos:"
|
1627 |
|
1628 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1629 |
-
msgid "Useful tags
|
1630 |
msgstr ""
|
1631 |
|
1632 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1660,8 +1665,8 @@ msgid ""
|
|
1660 |
msgstr ""
|
1661 |
|
1662 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1663 |
-
msgid "Banner image
|
1664 |
-
msgstr "
|
1665 |
|
1666 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1667 |
msgid "WordPress media:"
|
@@ -1696,10 +1701,6 @@ msgstr ""
|
|
1696 |
"Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
|
1697 |
"un contenido, ese campo tiene prioridad."
|
1698 |
|
1699 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1700 |
-
msgid "Statistics:"
|
1701 |
-
msgstr ""
|
1702 |
-
|
1703 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1704 |
msgid "Enable click and impression tracking for this advert."
|
1705 |
msgstr ""
|
@@ -1712,8 +1713,9 @@ msgid ""
|
|
1712 |
msgstr ""
|
1713 |
|
1714 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1715 |
-
|
1716 |
-
|
|
|
1717 |
|
1718 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1719 |
msgid "Yes, this ad will be used"
|
@@ -1726,7 +1728,7 @@ msgstr "No, no mostrar este anuncio en cualquier lugar"
|
|
1726 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1727 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1728 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1729 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1730 |
#, fuzzy
|
1731 |
msgid "Get more features with AdRotate Pro."
|
1732 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
@@ -1743,8 +1745,8 @@ msgstr "Guardar Anuncio"
|
|
1743 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1744 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1745 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1746 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1747 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1748 |
msgid "Cancel"
|
1749 |
msgstr "Cancelar"
|
1750 |
|
@@ -1770,15 +1772,15 @@ msgstr ""
|
|
1770 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1771 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1772 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1773 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1774 |
msgid "Usage"
|
1775 |
msgstr "Utilización"
|
1776 |
|
1777 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1778 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1779 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1780 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1781 |
-
msgid "Widget
|
1782 |
msgstr ""
|
1783 |
|
1784 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1791,40 +1793,40 @@ msgstr ""
|
|
1791 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1792 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1793 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1794 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1795 |
-
msgid "In a post or page
|
1796 |
-
msgstr "
|
1797 |
|
1798 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1799 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1800 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1801 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1802 |
-
msgid "Directly in a theme
|
1803 |
-
msgstr "
|
1804 |
|
1805 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1806 |
msgid "Schedule your advert"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1810 |
-
msgid "Start date (day/month/year)
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1814 |
-
msgid "End date (day/month/year)
|
1815 |
-
msgstr "
|
1816 |
|
1817 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1818 |
-
msgid "Start time (hh:mm)
|
1819 |
-
msgstr "
|
1820 |
|
1821 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1822 |
-
msgid "End time (hh:mm)
|
1823 |
-
msgstr "
|
1824 |
|
1825 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1826 |
-
msgid "Maximum Clicks
|
1827 |
-
msgstr "
|
1828 |
|
1829 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1830 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1832,27 +1834,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1832 |
msgstr "Dejar en blanco o 0 para omitir."
|
1833 |
|
1834 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1835 |
-
msgid "Maximum Impressions
|
1836 |
-
msgstr "
|
1837 |
|
1838 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1839 |
-
msgid ""
|
1840 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1841 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1842 |
-
"hours. 6AM is 6:00 hours."
|
1843 |
msgstr ""
|
1844 |
-
"Para el Tiempo se utiliza un reloj de 24 horas. Tengalo en cuenta si esta "
|
1845 |
-
"acostumbrado al sistema de AM/PM: Si el inicio o el fin del tiempo es "
|
1846 |
-
"después del mediodia debe añadir añadir 12 horas. Por ejemplo, las 2PM son "
|
1847 |
-
"las 14:00. Las 6AM son las 06:00 horas."
|
1848 |
|
1849 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1850 |
msgid ""
|
1851 |
-
"
|
1852 |
-
"
|
|
|
1853 |
msgstr ""
|
1854 |
-
"Los clics y las impresiones máximas solo se valorarán en el horario "
|
1855 |
-
"establecido. Cada programación puede tener su propio límite!"
|
1856 |
|
1857 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1858 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1861,7 +1855,7 @@ msgstr ""
|
|
1861 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1862 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1863 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1864 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1865 |
#, fuzzy
|
1866 |
msgid "Upgrade today"
|
1867 |
msgstr "Hoy"
|
@@ -1876,8 +1870,8 @@ msgid "Everything below is optional."
|
|
1876 |
msgstr "Todo lo siguiente es opcional."
|
1877 |
|
1878 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1879 |
-
msgid "Responsive
|
1880 |
-
msgstr "
|
1881 |
|
1882 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1883 |
msgid "Enable responsive support for this advert."
|
@@ -1894,13 +1888,10 @@ msgstr ""
|
|
1894 |
"conjunto de imágenes del mismo tamaño."
|
1895 |
|
1896 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
#, fuzzy
|
1902 |
-
msgid "AdRotate Pro only"
|
1903 |
-
msgstr "AdRotate Pro"
|
1904 |
|
1905 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1906 |
msgid "Barely visible"
|
@@ -1923,12 +1914,12 @@ msgid "Best visibility"
|
|
1923 |
msgstr "La mejor visibilidad"
|
1924 |
|
1925 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1926 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1927 |
-
msgid "Sortorder
|
1928 |
-
msgstr "
|
1929 |
|
1930 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1931 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1932 |
msgid "For administrative purposes set a sortorder."
|
1933 |
msgstr "A efectos administrativos, establecer una Clasificación normal."
|
1934 |
|
@@ -1952,9 +1943,8 @@ msgid ""
|
|
1952 |
msgstr ""
|
1953 |
|
1954 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1955 |
-
|
1956 |
-
|
1957 |
-
msgstr "Ciudades"
|
1958 |
|
1959 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1960 |
msgid ""
|
@@ -1972,9 +1962,8 @@ msgstr ""
|
|
1972 |
"escribirlos correctamente!"
|
1973 |
|
1974 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1975 |
-
|
1976 |
-
|
1977 |
-
msgstr "Países"
|
1978 |
|
1979 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1980 |
msgid "Select the countries you want the adverts to show in."
|
@@ -2026,19 +2015,18 @@ msgid "grid"
|
|
2026 |
msgstr "cuadrícula"
|
2027 |
|
2028 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2029 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2030 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2031 |
msgid "Post Injection"
|
2032 |
msgstr "Integrarlo después"
|
2033 |
|
2034 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2035 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2036 |
msgid "Geolocation"
|
2037 |
msgstr "Geolocalización"
|
2038 |
|
2039 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2040 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2041 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2042 |
msgid "Mode"
|
2043 |
msgstr "Modalidad"
|
2044 |
|
@@ -2046,10 +2034,6 @@ msgstr "Modalidad"
|
|
2046 |
msgid "Disabled Ads"
|
2047 |
msgstr "Desactivar Anuncios"
|
2048 |
|
2049 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2050 |
-
msgid "Activate"
|
2051 |
-
msgstr "Activar"
|
2052 |
-
|
2053 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2054 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2055 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2062,15 +2046,9 @@ msgstr "Resetear Estadísticas"
|
|
2062 |
msgid "Start / End"
|
2063 |
msgstr "Inio / Final"
|
2064 |
|
2065 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2066 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2067 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2068 |
-
msgid "Title"
|
2069 |
-
msgstr "Título"
|
2070 |
-
|
2071 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2072 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2073 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2074 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2075 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2076 |
msgid "Impressions"
|
@@ -2079,7 +2057,7 @@ msgstr "Impresiones"
|
|
2079 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2080 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2081 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2082 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2083 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2084 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2085 |
msgid "Clicks"
|
@@ -2095,7 +2073,7 @@ msgstr "CTR"
|
|
2095 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2096 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2097 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2098 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2099 |
msgid "Edit"
|
2100 |
msgstr "Editar"
|
2101 |
|
@@ -2146,7 +2124,7 @@ msgid "For 7 days"
|
|
2146 |
msgstr "Por 7 días"
|
2147 |
|
2148 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2149 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2150 |
msgid "Configuration errors."
|
2151 |
msgstr "Errores de configuración."
|
2152 |
|
@@ -2159,11 +2137,6 @@ msgstr "Anuncios Activos"
|
|
2159 |
msgid "Export to XML"
|
2160 |
msgstr "Exportar"
|
2161 |
|
2162 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2163 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2164 |
-
msgid "Weight"
|
2165 |
-
msgstr "Prioridad"
|
2166 |
-
|
2167 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2168 |
msgid "Shown"
|
2169 |
msgstr "Mostrado"
|
@@ -2220,10 +2193,6 @@ msgstr "Nuevo Grupo"
|
|
2220 |
msgid "Edit Group"
|
2221 |
msgstr "Editar Grupo"
|
2222 |
|
2223 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2224 |
-
msgid "Name:"
|
2225 |
-
msgstr "Nombre:"
|
2226 |
-
|
2227 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2228 |
msgid "Default - Show one ad at a time"
|
2229 |
msgstr "Predeterminado - Mostrar un anuncio a la vez"
|
@@ -2314,15 +2283,15 @@ msgstr ""
|
|
2314 |
"Predeterminado: 6."
|
2315 |
|
2316 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2317 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2318 |
msgid ""
|
2319 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2320 |
"\" and enter ID"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2324 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2325 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2326 |
msgid "Save Group"
|
2327 |
msgstr "Guardar Grupo"
|
2328 |
|
@@ -2376,144 +2345,168 @@ msgid ""
|
|
2376 |
"setting. Not every theme supports this feature."
|
2377 |
msgstr ""
|
2378 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2379 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2380 |
-
msgid "
|
|
|
|
|
|
|
|
|
2381 |
msgstr ""
|
2382 |
-
"Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
|
2383 |
|
2384 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2385 |
-
msgid "
|
|
|
|
|
|
|
|
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2389 |
-
msgid "
|
2390 |
-
msgstr "
|
|
|
2391 |
|
2392 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2394 |
msgid "Before content"
|
2395 |
msgstr "Antes del contenido"
|
2396 |
|
2397 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2398 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2399 |
msgid "After content"
|
2400 |
msgstr "Después del contenido"
|
2401 |
|
2402 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2403 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2404 |
msgid "Before and after content"
|
2405 |
msgstr "Antes y después del contenido"
|
2406 |
|
2407 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2408 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2409 |
msgid "After..."
|
2410 |
msgstr "Después..."
|
2411 |
|
2412 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2413 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2414 |
msgid "the first paragraph"
|
2415 |
msgstr "el primer párrafo"
|
2416 |
|
2417 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2418 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2419 |
msgid "the second paragraph"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2423 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2424 |
msgid "the third paragraph"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2428 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2429 |
msgid "the fourth paragraph"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2433 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2434 |
msgid "every 2nd paragraph"
|
2435 |
msgstr "cada segundo párrafo"
|
2436 |
|
2437 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2438 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2439 |
msgid "every 3rd paragraph"
|
2440 |
msgstr "cada tercer párrafo"
|
2441 |
|
2442 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2443 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2444 |
msgid "every 4th paragraph"
|
2445 |
msgstr "cada cuarto párrafo"
|
2446 |
|
2447 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2448 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2449 |
msgid "every 5th paragraph"
|
2450 |
msgstr "cada quinto párrafo"
|
2451 |
|
2452 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2453 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2454 |
msgid "every 6th paragraph"
|
2455 |
msgstr "cada sexto párrafo"
|
2456 |
|
2457 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2458 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2459 |
msgid "every 7th paragraph"
|
2460 |
msgstr "cada septimo párrafo"
|
2461 |
|
2462 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2463 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2464 |
msgid "every 8th paragraph"
|
2465 |
msgstr "cada octavo párrafo"
|
2466 |
|
2467 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2468 |
msgid "Which categories?"
|
2469 |
msgstr "¿En qué categorías?"
|
2470 |
|
2471 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2472 |
msgid "Click the categories posts you want the adverts to show in."
|
2473 |
msgstr ""
|
2474 |
"Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
|
2475 |
|
2476 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2477 |
-
msgid "
|
2478 |
-
msgstr "
|
2479 |
|
2480 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2481 |
msgid "Which pages?"
|
2482 |
msgstr "¿En qué páginas?"
|
2483 |
|
2484 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2485 |
msgid "Click the pages you want the adverts to show in."
|
2486 |
msgstr "Haga clic en las páginas en las que mostrar los anuncios."
|
2487 |
|
2488 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2489 |
msgid "Wrapper code"
|
2490 |
msgstr "Código"
|
2491 |
|
2492 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2493 |
-
msgid "Wraps around each
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2497 |
-
msgid "Before
|
2498 |
-
msgstr "
|
2499 |
|
2500 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2501 |
msgid "Options:"
|
2502 |
msgstr "Opciones:"
|
2503 |
|
2504 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2505 |
-
msgid "After
|
2506 |
-
msgstr "
|
2507 |
|
2508 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2509 |
-
msgid "Select
|
2510 |
-
msgstr "
|
2511 |
|
2512 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2513 |
msgid "Visible until"
|
2514 |
msgstr "Visible hasta"
|
2515 |
|
2516 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2517 |
msgid "No ads created!"
|
2518 |
msgstr "No hay anuncios creados!"
|
2519 |
|
@@ -2537,7 +2530,7 @@ msgstr "Esta acción no se puede deshacerse!"
|
|
2537 |
msgid "Code"
|
2538 |
msgstr "Código"
|
2539 |
|
2540 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2541 |
msgid "No groups created!"
|
2542 |
msgstr "No hay grupos creados!"
|
2543 |
|
@@ -2545,6 +2538,98 @@ msgstr "No hay grupos creados!"
|
|
2545 |
msgid "Statistics for group"
|
2546 |
msgstr "Estadisticas por Grupo"
|
2547 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2548 |
#~ msgid "Enable stats"
|
2549 |
#~ msgstr "Habilitar las estadísticas"
|
2550 |
|
@@ -3129,9 +3214,6 @@ msgstr "Estadisticas por Grupo"
|
|
3129 |
#~ msgid "Track clicks from logged in users."
|
3130 |
#~ msgstr "Seguimiento de los clics de los usuarios registrados."
|
3131 |
|
3132 |
-
#~ msgid "Geo Targeting"
|
3133 |
-
#~ msgstr "Geo Targeting"
|
3134 |
-
|
3135 |
#~ msgid "Geographic Tracking"
|
3136 |
#~ msgstr "Seguimiento geográfico"
|
3137 |
|
@@ -3181,10 +3263,6 @@ msgstr "Estadisticas por Grupo"
|
|
3181 |
#~ msgid "Enable GeoTargeting for this group."
|
3182 |
#~ msgstr "Activar GeoTargeting para este grupo."
|
3183 |
|
3184 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
3185 |
-
#~ msgstr ""
|
3186 |
-
#~ "No se olvide indicar en que zonas que se deben mostrar los anuncios."
|
3187 |
-
|
3188 |
#~ msgid "Fallback group"
|
3189 |
#~ msgstr "Retroceder a grupo"
|
3190 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:801
|
21 |
msgid "No files found"
|
22 |
msgstr "No se han encontrado contenidos"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "La carpeta no se encuentra o no es accesible"
|
27 |
|
28 |
+
#: adrotate-output.php:737
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "¡Oh, no! Algo salió mal!"
|
31 |
|
32 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
49 |
msgid "Contact support if the issue persists:"
|
50 |
msgstr "Si el problema persiste, contacte con el soporte:"
|
51 |
|
52 |
+
#: adrotate-output.php:758
|
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:760
|
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:767 adrotate-output.php:769
|
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:775
|
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:781
|
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:786
|
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:792
|
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:792
|
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:798
|
101 |
msgid "An unknown error occured."
|
102 |
msgstr "Ha ocurrido un error desconocido."
|
103 |
|
104 |
+
#: adrotate-output.php:823
|
105 |
msgid "active ad(s) expired."
|
106 |
msgstr "anuncio(s) activo(s) caducó."
|
107 |
|
108 |
+
#: adrotate-output.php:823
|
109 |
msgid "Take action now"
|
110 |
msgstr "Tomar medidas ahora"
|
111 |
|
112 |
+
#: adrotate-output.php:825
|
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:825
|
117 |
msgid "Check it out"
|
118 |
msgstr "Compruébelo"
|
119 |
|
120 |
+
#: adrotate-output.php:827
|
121 |
msgid "active ad(s) with configuration errors."
|
122 |
msgstr "anuncio(s) activo(s) con errores de configuración."
|
123 |
|
124 |
+
#: adrotate-output.php:827
|
125 |
msgid "Solve this"
|
126 |
msgstr "Solucione este"
|
127 |
|
128 |
+
#: adrotate-output.php:829
|
129 |
msgid "ad(s) expired."
|
130 |
msgstr "anuncio(s) caducado."
|
131 |
|
132 |
+
#: adrotate-output.php:829
|
133 |
msgid "ad(s) are about to expire."
|
134 |
msgstr "anuncio(s) están a punto de caducar."
|
135 |
|
136 |
+
#: adrotate-output.php:829
|
137 |
msgid "ad(s) with configuration errors."
|
138 |
msgstr "anuncio(s) con errores de configuración."
|
139 |
|
140 |
+
#: adrotate-output.php:829
|
141 |
msgid "Fix this as soon as possible"
|
142 |
msgstr "Solucionar esto en cuanto sea posible"
|
143 |
|
144 |
+
#: adrotate-output.php:841
|
145 |
#, fuzzy
|
146 |
msgid "Learn More"
|
147 |
msgstr "Aprender más"
|
148 |
|
149 |
+
#: adrotate-output.php:842
|
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:842
|
156 |
msgid "Get more features to even better run your advertising campaigns."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:842
|
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:886
|
165 |
msgid ""
|
166 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
167 |
"this menu. Check out the"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: adrotate-output.php:886
|
171 |
msgid "manuals"
|
172 |
msgstr "manuales"
|
173 |
|
174 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
175 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
176 |
msgid "and"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: adrotate-output.php:886
|
180 |
msgid "forums"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:922
|
184 |
#, fuzzy
|
185 |
msgid "Useful Links"
|
186 |
msgstr "Enlaces de interés"
|
187 |
|
188 |
+
#: adrotate-output.php:923
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: adrotate-output.php:925
|
193 |
#, fuzzy
|
194 |
msgid "AdRotate Page"
|
195 |
msgstr "AdRotate Pro"
|
196 |
|
197 |
+
#: adrotate-output.php:926
|
198 |
#, fuzzy
|
199 |
msgid "Getting Started With AdRotate"
|
200 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
201 |
|
202 |
+
#: adrotate-output.php:927
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate manuals"
|
205 |
msgstr "Información de AdRotate"
|
206 |
|
207 |
+
#: adrotate-output.php:928
|
208 |
#, fuzzy
|
209 |
msgid "AdRotate Support Forum"
|
210 |
msgstr "Tienda AdRotate"
|
211 |
|
212 |
+
#: adrotate-output.php:954
|
213 |
#, fuzzy
|
214 |
msgid "Help AdRotate Grow"
|
215 |
msgstr "Atascado con AdRotate? Yo te ayudaré!"
|
216 |
|
217 |
+
#: adrotate-output.php:955
|
218 |
msgid "Brought to you by"
|
219 |
msgstr "Presentado por"
|
220 |
|
221 |
+
#: adrotate-output.php:962
|
222 |
msgid ""
|
223 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
224 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: adrotate-output.php:962
|
228 |
msgid "If you find AdRotate useful please leave your honest"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: adrotate-output.php:962
|
232 |
msgid "rating"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: adrotate-output.php:962
|
236 |
#, fuzzy
|
237 |
msgid "review"
|
238 |
msgstr "Revise el anuncio aquí:"
|
239 |
|
240 |
+
#: adrotate-output.php:962
|
241 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: adrotate-output.php:965
|
245 |
msgid ""
|
246 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
247 |
"out more about what I can do for you!"
|
249 |
"Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
|
250 |
"WordPress! Para saber más sobre lo que puedo hacer por usted!"
|
251 |
|
252 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
253 |
msgid "Visit the"
|
254 |
msgstr "Visite la"
|
255 |
|
256 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
257 |
msgid "website"
|
258 |
msgstr "página web"
|
259 |
|
260 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
261 |
msgid "Available in AdRotate Pro"
|
262 |
msgstr "Disponible en AdRotate Pro"
|
263 |
|
264 |
+
#: adrotate-output.php:995
|
265 |
msgid "More information..."
|
266 |
msgstr "Más información..."
|
267 |
|
268 |
+
#: adrotate-output.php:996
|
269 |
msgid "This feature is available in AdRotate Pro"
|
270 |
msgstr "Esta función está disponible en AdRotate Pro"
|
271 |
|
272 |
+
#: adrotate-output.php:996
|
273 |
msgid "Learn more"
|
274 |
msgstr "Aprender más"
|
275 |
|
382 |
msgid "Choose what you want to use this widget for"
|
383 |
msgstr "Elija lo que desea utilizar en este widget para"
|
384 |
|
385 |
+
#: adrotate-widget.php:137
|
386 |
msgid "ID:"
|
387 |
msgstr "ID:"
|
388 |
|
510 |
msgstr "Grupo incluyendo sus anuncios eliminados"
|
511 |
|
512 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
513 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
514 |
msgid "Report"
|
515 |
msgstr "Informe"
|
516 |
|
529 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
530 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
531 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
532 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
533 |
#, fuzzy
|
534 |
msgid "More information"
|
535 |
msgstr "Más información..."
|
551 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
552 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
553 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
554 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
555 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
556 |
msgid "ID"
|
557 |
msgstr "ID"
|
595 |
msgstr "Hoy"
|
596 |
|
597 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
598 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
599 |
msgid "Expires soon."
|
600 |
msgstr "Caduca pronto."
|
601 |
|
602 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
603 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
604 |
msgid "Has expired."
|
605 |
msgstr "Ha expirado."
|
606 |
|
672 |
"diferentes visores."
|
673 |
|
674 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
675 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
676 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
677 |
msgid "Example:"
|
678 |
msgstr "Ejemplo:"
|
679 |
|
696 |
msgid "Available banner images in"
|
697 |
msgstr "Los banners estan disponibles en"
|
698 |
|
699 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
700 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
701 |
msgid "Name"
|
702 |
msgstr "Nombre"
|
703 |
|
799 |
msgid "Update Options"
|
800 |
msgstr "Actualizar Opciones"
|
801 |
|
802 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
803 |
msgid "Statistics"
|
804 |
msgstr "Estadísticas"
|
805 |
|
807 |
msgid "How to track stats"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
811 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
812 |
msgid "Disabled"
|
813 |
msgstr "Desactivado"
|
814 |
|
1616 |
msgstr "Editar Anuncio"
|
1617 |
|
1618 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1619 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1620 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1621 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1622 |
+
msgid "Title"
|
1623 |
+
msgstr "Título"
|
1624 |
|
1625 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1626 |
+
msgid "AdCode"
|
1627 |
+
msgstr ""
|
1628 |
|
1629 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1630 |
msgid "Basic Examples:"
|
1631 |
msgstr "Ejemplos Básicos:"
|
1632 |
|
1633 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1634 |
+
msgid "Useful tags"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1665 |
msgstr ""
|
1666 |
|
1667 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1668 |
+
msgid "Banner image"
|
1669 |
+
msgstr ""
|
1670 |
|
1671 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1672 |
msgid "WordPress media:"
|
1701 |
"Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
|
1702 |
"un contenido, ese campo tiene prioridad."
|
1703 |
|
|
|
|
|
|
|
|
|
1704 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1705 |
msgid "Enable click and impression tracking for this advert."
|
1706 |
msgstr ""
|
1713 |
msgstr ""
|
1714 |
|
1715 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1716 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1717 |
+
msgid "Activate"
|
1718 |
+
msgstr "Activar"
|
1719 |
|
1720 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1721 |
msgid "Yes, this ad will be used"
|
1728 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1729 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1730 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1731 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1732 |
#, fuzzy
|
1733 |
msgid "Get more features with AdRotate Pro."
|
1734 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
1745 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1746 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1747 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1748 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1749 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1750 |
msgid "Cancel"
|
1751 |
msgstr "Cancelar"
|
1752 |
|
1772 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1773 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1774 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1775 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1776 |
msgid "Usage"
|
1777 |
msgstr "Utilización"
|
1778 |
|
1779 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1780 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1781 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1782 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1783 |
+
msgid "Widget"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1793 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1794 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1795 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1796 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1797 |
+
msgid "In a post or page"
|
1798 |
+
msgstr ""
|
1799 |
|
1800 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1801 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1802 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1803 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1804 |
+
msgid "Directly in a theme"
|
1805 |
+
msgstr ""
|
1806 |
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1808 |
msgid "Schedule your advert"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1812 |
+
msgid "Start date (day/month/year)"
|
1813 |
+
msgstr ""
|
1814 |
|
1815 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1816 |
+
msgid "End date (day/month/year)"
|
1817 |
+
msgstr ""
|
1818 |
|
1819 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1820 |
+
msgid "Start time (hh:mm)"
|
1821 |
+
msgstr ""
|
1822 |
|
1823 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1824 |
+
msgid "End time (hh:mm)"
|
1825 |
+
msgstr ""
|
1826 |
|
1827 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1828 |
+
msgid "Maximum Clicks"
|
1829 |
+
msgstr ""
|
1830 |
|
1831 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1832 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1834 |
msgstr "Dejar en blanco o 0 para omitir."
|
1835 |
|
1836 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1837 |
+
msgid "Maximum Impressions"
|
1838 |
+
msgstr ""
|
1839 |
|
1840 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1841 |
+
msgid "Important"
|
|
|
|
|
|
|
1842 |
msgstr ""
|
|
|
|
|
|
|
|
|
1843 |
|
1844 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1845 |
msgid ""
|
1846 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1847 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1848 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1849 |
msgstr ""
|
|
|
|
|
1850 |
|
1851 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1852 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1855 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1856 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1857 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1858 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1859 |
#, fuzzy
|
1860 |
msgid "Upgrade today"
|
1861 |
msgstr "Hoy"
|
1870 |
msgstr "Todo lo siguiente es opcional."
|
1871 |
|
1872 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1873 |
+
msgid "Responsive"
|
1874 |
+
msgstr ""
|
1875 |
|
1876 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1877 |
msgid "Enable responsive support for this advert."
|
1888 |
"conjunto de imágenes del mismo tamaño."
|
1889 |
|
1890 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1891 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1892 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1893 |
+
msgid "Weight"
|
1894 |
+
msgstr "Prioridad"
|
|
|
|
|
|
|
1895 |
|
1896 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1897 |
msgid "Barely visible"
|
1914 |
msgstr "La mejor visibilidad"
|
1915 |
|
1916 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1917 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1918 |
+
msgid "Sortorder"
|
1919 |
+
msgstr ""
|
1920 |
|
1921 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1922 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1923 |
msgid "For administrative purposes set a sortorder."
|
1924 |
msgstr "A efectos administrativos, establecer una Clasificación normal."
|
1925 |
|
1943 |
msgstr ""
|
1944 |
|
1945 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1946 |
+
msgid "Cities/States"
|
1947 |
+
msgstr ""
|
|
|
1948 |
|
1949 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1950 |
msgid ""
|
1962 |
"escribirlos correctamente!"
|
1963 |
|
1964 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1965 |
+
msgid "Countries"
|
1966 |
+
msgstr ""
|
|
|
1967 |
|
1968 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1969 |
msgid "Select the countries you want the adverts to show in."
|
2015 |
msgstr "cuadrícula"
|
2016 |
|
2017 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2018 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
2019 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2020 |
msgid "Post Injection"
|
2021 |
msgstr "Integrarlo después"
|
2022 |
|
2023 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2024 |
msgid "Geolocation"
|
2025 |
msgstr "Geolocalización"
|
2026 |
|
2027 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2028 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2029 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2030 |
msgid "Mode"
|
2031 |
msgstr "Modalidad"
|
2032 |
|
2034 |
msgid "Disabled Ads"
|
2035 |
msgstr "Desactivar Anuncios"
|
2036 |
|
|
|
|
|
|
|
|
|
2037 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2038 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2039 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2046 |
msgid "Start / End"
|
2047 |
msgstr "Inio / Final"
|
2048 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2049 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2050 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2051 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2052 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2053 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2054 |
msgid "Impressions"
|
2057 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2058 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2059 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2060 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2061 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2062 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2063 |
msgid "Clicks"
|
2073 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2074 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2075 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2076 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2077 |
msgid "Edit"
|
2078 |
msgstr "Editar"
|
2079 |
|
2124 |
msgstr "Por 7 días"
|
2125 |
|
2126 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2127 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2128 |
msgid "Configuration errors."
|
2129 |
msgstr "Errores de configuración."
|
2130 |
|
2137 |
msgid "Export to XML"
|
2138 |
msgstr "Exportar"
|
2139 |
|
|
|
|
|
|
|
|
|
|
|
2140 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2141 |
msgid "Shown"
|
2142 |
msgstr "Mostrado"
|
2193 |
msgid "Edit Group"
|
2194 |
msgstr "Editar Grupo"
|
2195 |
|
|
|
|
|
|
|
|
|
2196 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2197 |
msgid "Default - Show one ad at a time"
|
2198 |
msgstr "Predeterminado - Mostrar un anuncio a la vez"
|
2283 |
"Predeterminado: 6."
|
2284 |
|
2285 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2286 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2287 |
msgid ""
|
2288 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2289 |
"\" and enter ID"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2293 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2294 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2295 |
msgid "Save Group"
|
2296 |
msgstr "Guardar Grupo"
|
2297 |
|
2345 |
"setting. Not every theme supports this feature."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2349 |
+
msgid "Geo Targeting"
|
2350 |
+
msgstr "Geo Targeting"
|
2351 |
+
|
2352 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2353 |
+
msgid "Enable Geo Targeting for this group."
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2357 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2358 |
+
msgstr "No se olvide indicar en que zonas que se deben mostrar los anuncios."
|
2359 |
+
|
2360 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2361 |
+
msgid "Mobile support"
|
2362 |
msgstr ""
|
|
|
2363 |
|
2364 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2365 |
+
msgid "Enable mobile support for this group."
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2369 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2373 |
+
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2374 |
+
msgstr ""
|
2375 |
+
"Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
|
2376 |
|
2377 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2378 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2379 |
+
msgstr ""
|
2380 |
+
|
2381 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2382 |
+
msgid "In categories?"
|
2383 |
+
msgstr ""
|
2384 |
+
|
2385 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2386 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2387 |
msgid "Before content"
|
2388 |
msgstr "Antes del contenido"
|
2389 |
|
2390 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2391 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2392 |
msgid "After content"
|
2393 |
msgstr "Después del contenido"
|
2394 |
|
2395 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2396 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2397 |
msgid "Before and after content"
|
2398 |
msgstr "Antes y después del contenido"
|
2399 |
|
2400 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2401 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2402 |
msgid "After..."
|
2403 |
msgstr "Después..."
|
2404 |
|
2405 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2406 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2407 |
msgid "the first paragraph"
|
2408 |
msgstr "el primer párrafo"
|
2409 |
|
2410 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2411 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2412 |
msgid "the second paragraph"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2416 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2417 |
msgid "the third paragraph"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2421 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2422 |
msgid "the fourth paragraph"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2426 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2427 |
msgid "every 2nd paragraph"
|
2428 |
msgstr "cada segundo párrafo"
|
2429 |
|
2430 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2431 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2432 |
msgid "every 3rd paragraph"
|
2433 |
msgstr "cada tercer párrafo"
|
2434 |
|
2435 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2436 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2437 |
msgid "every 4th paragraph"
|
2438 |
msgstr "cada cuarto párrafo"
|
2439 |
|
2440 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2441 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2442 |
msgid "every 5th paragraph"
|
2443 |
msgstr "cada quinto párrafo"
|
2444 |
|
2445 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2446 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2447 |
msgid "every 6th paragraph"
|
2448 |
msgstr "cada sexto párrafo"
|
2449 |
|
2450 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2451 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2452 |
msgid "every 7th paragraph"
|
2453 |
msgstr "cada septimo párrafo"
|
2454 |
|
2455 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2456 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2457 |
msgid "every 8th paragraph"
|
2458 |
msgstr "cada octavo párrafo"
|
2459 |
|
2460 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2461 |
msgid "Which categories?"
|
2462 |
msgstr "¿En qué categorías?"
|
2463 |
|
2464 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2465 |
msgid "Click the categories posts you want the adverts to show in."
|
2466 |
msgstr ""
|
2467 |
"Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
|
2468 |
|
2469 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2470 |
+
msgid "In pages?"
|
2471 |
+
msgstr ""
|
2472 |
|
2473 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2474 |
msgid "Which pages?"
|
2475 |
msgstr "¿En qué páginas?"
|
2476 |
|
2477 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2478 |
msgid "Click the pages you want the adverts to show in."
|
2479 |
msgstr "Haga clic en las páginas en las que mostrar los anuncios."
|
2480 |
|
2481 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2482 |
msgid "Wrapper code"
|
2483 |
msgstr "Código"
|
2484 |
|
2485 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2486 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2490 |
+
msgid "Before advert"
|
2491 |
+
msgstr ""
|
2492 |
|
2493 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2494 |
msgid "Options:"
|
2495 |
msgstr "Opciones:"
|
2496 |
|
2497 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2498 |
+
msgid "After advert"
|
2499 |
+
msgstr ""
|
2500 |
|
2501 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2502 |
+
msgid "Select adverts"
|
2503 |
+
msgstr ""
|
2504 |
|
2505 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2506 |
msgid "Visible until"
|
2507 |
msgstr "Visible hasta"
|
2508 |
|
2509 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2510 |
msgid "No ads created!"
|
2511 |
msgstr "No hay anuncios creados!"
|
2512 |
|
2530 |
msgid "Code"
|
2531 |
msgstr "Código"
|
2532 |
|
2533 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2534 |
msgid "No groups created!"
|
2535 |
msgstr "No hay grupos creados!"
|
2536 |
|
2538 |
msgid "Statistics for group"
|
2539 |
msgstr "Estadisticas por Grupo"
|
2540 |
|
2541 |
+
#~ msgid "Title:"
|
2542 |
+
#~ msgstr "Título:"
|
2543 |
+
|
2544 |
+
#~ msgid "AdCode:"
|
2545 |
+
#~ msgstr "AdCode:"
|
2546 |
+
|
2547 |
+
#~ msgid "Banner image:"
|
2548 |
+
#~ msgstr "Imagen Banner:"
|
2549 |
+
|
2550 |
+
#~ msgid "Activate:"
|
2551 |
+
#~ msgstr "Activar:"
|
2552 |
+
|
2553 |
+
#~ msgid "In a post or page:"
|
2554 |
+
#~ msgstr "En un post o página:"
|
2555 |
+
|
2556 |
+
#~ msgid "Directly in a theme:"
|
2557 |
+
#~ msgstr "Directamente en la plantilla (theme):"
|
2558 |
+
|
2559 |
+
#~ msgid "Start date (day/month/year):"
|
2560 |
+
#~ msgstr "Fecha de inicio (día/mes/año)"
|
2561 |
+
|
2562 |
+
#~ msgid "End date (day/month/year):"
|
2563 |
+
#~ msgstr "Fecha de finalización (día/mes/año)"
|
2564 |
+
|
2565 |
+
#~ msgid "Start time (hh:mm):"
|
2566 |
+
#~ msgstr "Hora de inicio (hh:mm)"
|
2567 |
+
|
2568 |
+
#~ msgid "End time (hh:mm):"
|
2569 |
+
#~ msgstr "Hora de finalización (hh:mm)"
|
2570 |
+
|
2571 |
+
#~ msgid "Maximum Clicks:"
|
2572 |
+
#~ msgstr "Clics Máximos:"
|
2573 |
+
|
2574 |
+
#~ msgid "Maximum Impressions:"
|
2575 |
+
#~ msgstr "Impresiones Maximas:"
|
2576 |
+
|
2577 |
+
#~ msgid ""
|
2578 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2579 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2580 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2581 |
+
#~ msgstr ""
|
2582 |
+
#~ "Para el Tiempo se utiliza un reloj de 24 horas. Tengalo en cuenta si esta "
|
2583 |
+
#~ "acostumbrado al sistema de AM/PM: Si el inicio o el fin del tiempo es "
|
2584 |
+
#~ "después del mediodia debe añadir añadir 12 horas. Por ejemplo, las 2PM "
|
2585 |
+
#~ "son las 14:00. Las 6AM son las 06:00 horas."
|
2586 |
+
|
2587 |
+
#~ msgid ""
|
2588 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2589 |
+
#~ "only. Every schedule can have it's own limit!"
|
2590 |
+
#~ msgstr ""
|
2591 |
+
#~ "Los clics y las impresiones máximas solo se valorarán en el horario "
|
2592 |
+
#~ "establecido. Cada programación puede tener su propio límite!"
|
2593 |
+
|
2594 |
+
#~ msgid "Responsive:"
|
2595 |
+
#~ msgstr "Adaptable:"
|
2596 |
+
|
2597 |
+
#~ msgid "Weight:"
|
2598 |
+
#~ msgstr "Prioridad:"
|
2599 |
+
|
2600 |
+
#, fuzzy
|
2601 |
+
#~ msgid "AdRotate Pro only"
|
2602 |
+
#~ msgstr "AdRotate Pro"
|
2603 |
+
|
2604 |
+
#~ msgid "Sortorder:"
|
2605 |
+
#~ msgstr "Clasificación normal:"
|
2606 |
+
|
2607 |
+
#, fuzzy
|
2608 |
+
#~ msgid "Cities/States:"
|
2609 |
+
#~ msgstr "Ciudades"
|
2610 |
+
|
2611 |
+
#, fuzzy
|
2612 |
+
#~ msgid "Countries:"
|
2613 |
+
#~ msgstr "Países"
|
2614 |
+
|
2615 |
+
#~ msgid "Name:"
|
2616 |
+
#~ msgstr "Nombre:"
|
2617 |
+
|
2618 |
+
#~ msgid "Include ads in categories?"
|
2619 |
+
#~ msgstr "¿Incluir los anuncios en las categorías?"
|
2620 |
+
|
2621 |
+
#~ msgid "Include ads in pages?"
|
2622 |
+
#~ msgstr "¿Incluir los anuncios en las páginas?"
|
2623 |
+
|
2624 |
+
#~ msgid "Before ad"
|
2625 |
+
#~ msgstr "Antés del anuncio"
|
2626 |
+
|
2627 |
+
#~ msgid "After ad"
|
2628 |
+
#~ msgstr "Después del anuncio"
|
2629 |
+
|
2630 |
+
#~ msgid "Select Ads"
|
2631 |
+
#~ msgstr "Seleccione Anuncios"
|
2632 |
+
|
2633 |
#~ msgid "Enable stats"
|
2634 |
#~ msgstr "Habilitar las estadísticas"
|
2635 |
|
3214 |
#~ msgid "Track clicks from logged in users."
|
3215 |
#~ msgstr "Seguimiento de los clics de los usuarios registrados."
|
3216 |
|
|
|
|
|
|
|
3217 |
#~ msgid "Geographic Tracking"
|
3218 |
#~ msgstr "Seguimiento geográfico"
|
3219 |
|
3263 |
#~ msgid "Enable GeoTargeting for this group."
|
3264 |
#~ msgstr "Activar GeoTargeting para este grupo."
|
3265 |
|
|
|
|
|
|
|
|
|
3266 |
#~ msgid "Fallback group"
|
3267 |
#~ msgstr "Retroceder a grupo"
|
3268 |
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
|
9 |
"Language: en_US\n"
|
@@ -17,19 +17,19 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
|
27 |
|
28 |
-
#: adrotate-output.php:
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "Oh no! Un problème est survenu!"
|
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,17 +38,17 @@ msgstr ""
|
|
38 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
39 |
"votre navigateur."
|
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 "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
46 |
|
47 |
-
#: adrotate-output.php:
|
48 |
msgid "Contact support if the issue persists:"
|
49 |
msgstr "Contactez le support si le soucis persiste :"
|
50 |
|
51 |
-
#: adrotate-output.php:
|
52 |
msgid ""
|
53 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
54 |
"restrictions or does not exist!"
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
57 |
"horaires/géographiques ou n'existe pas!"
|
58 |
|
59 |
-
#: adrotate-output.php:
|
60 |
msgid ""
|
61 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
62 |
"restrictions!"
|
@@ -64,7 +64,7 @@ msgstr ""
|
|
64 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
65 |
"horaires/géographiques!"
|
66 |
|
67 |
-
#: adrotate-output.php:
|
68 |
msgid ""
|
69 |
"Either there are no banners, they are disabled or none qualified for this "
|
70 |
"location!"
|
@@ -72,19 +72,19 @@ msgstr ""
|
|
72 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
73 |
"cet endroit!"
|
74 |
|
75 |
-
#: adrotate-output.php:
|
76 |
msgid "Error, no Ad ID set! Check your syntax!"
|
77 |
msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
|
78 |
|
79 |
-
#: adrotate-output.php:
|
80 |
msgid "Error, no group ID set! Check your syntax!"
|
81 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
82 |
|
83 |
-
#: adrotate-output.php:
|
84 |
msgid "Error, group does not exist! Check your syntax!"
|
85 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
86 |
|
87 |
-
#: adrotate-output.php:
|
88 |
msgid ""
|
89 |
"There was an error locating the database tables for AdRotate. Please "
|
90 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -93,151 +93,151 @@ msgstr ""
|
|
93 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
94 |
"extensions. "
|
95 |
|
96 |
-
#: adrotate-output.php:
|
97 |
msgid "If this does not solve the issue please seek support at"
|
98 |
msgstr ""
|
99 |
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
100 |
"support à"
|
101 |
|
102 |
-
#: adrotate-output.php:
|
103 |
msgid "An unknown error occured."
|
104 |
msgstr "Une erreur inconnue s'est produite."
|
105 |
|
106 |
-
#: adrotate-output.php:
|
107 |
msgid "active ad(s) expired."
|
108 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
109 |
|
110 |
-
#: adrotate-output.php:
|
111 |
msgid "Take action now"
|
112 |
msgstr "Agir maintenant"
|
113 |
|
114 |
-
#: adrotate-output.php:
|
115 |
msgid "active ad(s) are about to expire."
|
116 |
msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
117 |
|
118 |
-
#: adrotate-output.php:
|
119 |
msgid "Check it out"
|
120 |
msgstr "Vérifier-le"
|
121 |
|
122 |
-
#: adrotate-output.php:
|
123 |
msgid "active ad(s) with configuration errors."
|
124 |
msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
125 |
|
126 |
-
#: adrotate-output.php:
|
127 |
msgid "Solve this"
|
128 |
msgstr "Résoudre"
|
129 |
|
130 |
-
#: adrotate-output.php:
|
131 |
msgid "ad(s) expired."
|
132 |
msgstr "publicité(s) expirée(s)"
|
133 |
|
134 |
-
#: adrotate-output.php:
|
135 |
msgid "ad(s) are about to expire."
|
136 |
msgstr "publicité(s) sont sur le point d'expirer"
|
137 |
|
138 |
-
#: adrotate-output.php:
|
139 |
msgid "ad(s) with configuration errors."
|
140 |
msgstr "publicité(s) avec des erreurs de configuration."
|
141 |
|
142 |
-
#: adrotate-output.php:
|
143 |
msgid "Fix this as soon as possible"
|
144 |
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
145 |
|
146 |
-
#: adrotate-output.php:
|
147 |
#, fuzzy
|
148 |
msgid "Learn More"
|
149 |
msgstr "En savoir plus"
|
150 |
|
151 |
-
#: adrotate-output.php:
|
152 |
msgid ""
|
153 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
154 |
"to the <strong>PRO</strong> version"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: adrotate-output.php:
|
158 |
msgid "Get more features to even better run your advertising campaigns."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: adrotate-output.php:
|
162 |
msgid "Thank you for your consideration!"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: adrotate-output.php:
|
166 |
msgid ""
|
167 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
168 |
"this menu. Check out the"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: adrotate-output.php:
|
172 |
msgid "manuals"
|
173 |
msgstr "manuels"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
177 |
msgid "and"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: adrotate-output.php:
|
181 |
msgid "forums"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: adrotate-output.php:
|
185 |
msgid "Useful Links"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: adrotate-output.php:
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
msgid "AdRotate Page"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: adrotate-output.php:
|
197 |
msgid "Getting Started With AdRotate"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: adrotate-output.php:
|
201 |
msgid "AdRotate manuals"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: adrotate-output.php:
|
205 |
msgid "AdRotate Support Forum"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: adrotate-output.php:
|
209 |
#, fuzzy
|
210 |
msgid "Help AdRotate Grow"
|
211 |
msgstr "AdRotate Pro"
|
212 |
|
213 |
-
#: adrotate-output.php:
|
214 |
msgid "Brought to you by"
|
215 |
msgstr "Présenté par"
|
216 |
|
217 |
-
#: adrotate-output.php:
|
218 |
msgid ""
|
219 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
220 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "If you find AdRotate useful please leave your honest"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "rating"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
#, fuzzy
|
233 |
msgid "review"
|
234 |
msgstr "En avant-première"
|
235 |
|
236 |
-
#: adrotate-output.php:
|
237 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: adrotate-output.php:
|
241 |
msgid ""
|
242 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
243 |
"out more about what I can do for you!"
|
@@ -245,27 +245,27 @@ msgstr ""
|
|
245 |
"Votre guichet unique pour le développement Web, le consulting et toutes les "
|
246 |
"façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
msgid "Visit the"
|
250 |
msgstr "Visitez le"
|
251 |
|
252 |
-
#: adrotate-output.php:
|
253 |
msgid "website"
|
254 |
msgstr "site"
|
255 |
|
256 |
-
#: adrotate-output.php:
|
257 |
msgid "Available in AdRotate Pro"
|
258 |
msgstr "Disponible dans Adrotate Pro"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid "More information..."
|
262 |
msgstr "Plus d'informations..."
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
msgid "This feature is available in AdRotate Pro"
|
266 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
267 |
|
268 |
-
#: adrotate-output.php:
|
269 |
msgid "Learn more"
|
270 |
msgstr "En savoir plus"
|
271 |
|
@@ -379,7 +379,7 @@ msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
|
|
379 |
msgid "Choose what you want to use this widget for"
|
380 |
msgstr "Choisissez le fonction de ce widget"
|
381 |
|
382 |
-
#: adrotate-widget.php:137
|
383 |
msgid "ID:"
|
384 |
msgstr "ID :"
|
385 |
|
@@ -507,7 +507,7 @@ msgid "Group including it's Ads deleted"
|
|
507 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
508 |
|
509 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
510 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
511 |
msgid "Report"
|
512 |
msgstr "Rapport"
|
513 |
|
@@ -527,7 +527,7 @@ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
|
527 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
528 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
529 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
530 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
531 |
msgid "More information"
|
532 |
msgstr "Plus d'information"
|
533 |
|
@@ -548,6 +548,7 @@ msgstr "Aller"
|
|
548 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
549 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
550 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
551 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
552 |
msgid "ID"
|
553 |
msgstr "ID"
|
@@ -592,12 +593,12 @@ msgid "Upgrade today!"
|
|
592 |
msgstr "Mettre à jour aujourd'hui"
|
593 |
|
594 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
595 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
596 |
msgid "Expires soon."
|
597 |
msgstr "Expire bientôt."
|
598 |
|
599 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
600 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
601 |
msgid "Has expired."
|
602 |
msgstr "A expiré."
|
603 |
|
@@ -662,8 +663,8 @@ msgstr ""
|
|
662 |
"tailles d'écran."
|
663 |
|
664 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
665 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
666 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
667 |
msgid "Example:"
|
668 |
msgstr "Exemple :"
|
669 |
|
@@ -684,7 +685,8 @@ msgstr ""
|
|
684 |
msgid "Available banner images in"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
688 |
msgid "Name"
|
689 |
msgstr "Nom"
|
690 |
|
@@ -785,7 +787,7 @@ msgstr "Rôle pour supprimer les groupes."
|
|
785 |
msgid "Update Options"
|
786 |
msgstr "Mettre à jour les options"
|
787 |
|
788 |
-
#: adrotate.php:691
|
789 |
msgid "Statistics"
|
790 |
msgstr "Statistiques"
|
791 |
|
@@ -793,8 +795,8 @@ msgstr "Statistiques"
|
|
793 |
msgid "How to track stats"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
797 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
798 |
msgid "Disabled"
|
799 |
msgstr "Désactivé"
|
800 |
|
@@ -1598,19 +1600,22 @@ msgid "Edit Advert"
|
|
1598 |
msgstr "Modifier la pub"
|
1599 |
|
1600 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1601 |
-
|
1602 |
-
|
|
|
|
|
|
|
1603 |
|
1604 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1605 |
-
msgid "AdCode
|
1606 |
-
msgstr "
|
1607 |
|
1608 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1609 |
msgid "Basic Examples:"
|
1610 |
msgstr "Exemples de base :"
|
1611 |
|
1612 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1613 |
-
msgid "Useful tags
|
1614 |
msgstr ""
|
1615 |
|
1616 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1644,8 +1649,8 @@ msgid ""
|
|
1644 |
msgstr ""
|
1645 |
|
1646 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1647 |
-
msgid "Banner image
|
1648 |
-
msgstr "
|
1649 |
|
1650 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1651 |
msgid "WordPress media:"
|
@@ -1679,10 +1684,6 @@ msgstr ""
|
|
1679 |
"Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
|
1680 |
"valeur, ce champ a la priorité."
|
1681 |
|
1682 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1683 |
-
msgid "Statistics:"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1687 |
msgid "Enable click and impression tracking for this advert."
|
1688 |
msgstr ""
|
@@ -1695,7 +1696,8 @@ msgid ""
|
|
1695 |
msgstr ""
|
1696 |
|
1697 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1698 |
-
|
|
|
1699 |
msgstr "Activer"
|
1700 |
|
1701 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
@@ -1709,7 +1711,7 @@ msgstr "Non, cette publicité ne sera pas utilisée"
|
|
1709 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1710 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1711 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1712 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1713 |
msgid "Get more features with AdRotate Pro."
|
1714 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
1715 |
|
@@ -1725,8 +1727,8 @@ msgstr "Sauvegarder la pub"
|
|
1725 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1726 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1727 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1728 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1729 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1730 |
msgid "Cancel"
|
1731 |
msgstr "Annuller"
|
1732 |
|
@@ -1752,15 +1754,15 @@ msgstr ""
|
|
1752 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1753 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1754 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1755 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1756 |
msgid "Usage"
|
1757 |
msgstr "Usage"
|
1758 |
|
1759 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1760 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1761 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1762 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1763 |
-
msgid "Widget
|
1764 |
msgstr ""
|
1765 |
|
1766 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1773,40 +1775,40 @@ msgstr ""
|
|
1773 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1774 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1775 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1776 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1777 |
-
msgid "In a post or page
|
1778 |
-
msgstr "
|
1779 |
|
1780 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1781 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1782 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1783 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1784 |
-
msgid "Directly in a theme
|
1785 |
-
msgstr "
|
1786 |
|
1787 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1788 |
msgid "Schedule your advert"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1792 |
-
msgid "Start date (day/month/year)
|
1793 |
-
msgstr "
|
1794 |
|
1795 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1796 |
-
msgid "End date (day/month/year)
|
1797 |
-
msgstr "
|
1798 |
|
1799 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1800 |
-
msgid "Start time (hh:mm)
|
1801 |
-
msgstr "
|
1802 |
|
1803 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1804 |
-
msgid "End time (hh:mm)
|
1805 |
-
msgstr "
|
1806 |
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1808 |
-
msgid "Maximum Clicks
|
1809 |
-
msgstr "
|
1810 |
|
1811 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1812 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1814,28 +1816,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1814 |
msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
|
1815 |
|
1816 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1817 |
-
msgid "Maximum Impressions
|
1818 |
-
msgstr "
|
1819 |
|
1820 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1821 |
-
msgid ""
|
1822 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1823 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1824 |
-
"hours. 6AM is 6:00 hours."
|
1825 |
msgstr ""
|
1826 |
-
"L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes habitués "
|
1827 |
-
"au système de AM/PM, gardez cela en tête : si l'heure de début ou de fin est "
|
1828 |
-
"après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
|
1829 |
-
"6:00). "
|
1830 |
|
1831 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1832 |
msgid ""
|
1833 |
-
"
|
1834 |
-
"
|
|
|
1835 |
msgstr ""
|
1836 |
-
"Le nombre maximum de clics et d'impressions est mesuré pour le calendrier en "
|
1837 |
-
"question uniquement. Tous les calendriers peuvent avoir leurs propres "
|
1838 |
-
"limites!"
|
1839 |
|
1840 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1841 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1844,7 +1837,7 @@ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
|
|
1844 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1845 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1846 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1847 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1848 |
msgid "Upgrade today"
|
1849 |
msgstr "Mettre à jour aujourd'hui"
|
1850 |
|
@@ -1858,8 +1851,8 @@ msgid "Everything below is optional."
|
|
1858 |
msgstr "Tous les paramètres ci-dessous sont optionels."
|
1859 |
|
1860 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1861 |
-
msgid "Responsive
|
1862 |
-
msgstr "
|
1863 |
|
1864 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1865 |
msgid "Enable responsive support for this advert."
|
@@ -1877,15 +1870,11 @@ msgstr ""
|
|
1877 |
"fluide."
|
1878 |
|
1879 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1880 |
-
|
1881 |
-
|
|
|
1882 |
msgstr "Importance"
|
1883 |
|
1884 |
-
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1885 |
-
#, fuzzy
|
1886 |
-
msgid "AdRotate Pro only"
|
1887 |
-
msgstr "AdRotate Pro"
|
1888 |
-
|
1889 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1890 |
msgid "Barely visible"
|
1891 |
msgstr ""
|
@@ -1907,12 +1896,12 @@ msgid "Best visibility"
|
|
1907 |
msgstr ""
|
1908 |
|
1909 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1910 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1911 |
-
msgid "Sortorder
|
1912 |
-
msgstr "
|
1913 |
|
1914 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1915 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1916 |
msgid "For administrative purposes set a sortorder."
|
1917 |
msgstr "Pour des raisons administratives définir un ordre de tri."
|
1918 |
|
@@ -1938,7 +1927,7 @@ msgid ""
|
|
1938 |
msgstr ""
|
1939 |
|
1940 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1941 |
-
msgid "Cities/States
|
1942 |
msgstr ""
|
1943 |
|
1944 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
@@ -1954,7 +1943,7 @@ msgid ""
|
|
1954 |
msgstr ""
|
1955 |
|
1956 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1957 |
-
msgid "Countries
|
1958 |
msgstr ""
|
1959 |
|
1960 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
@@ -2008,19 +1997,18 @@ msgid "grid"
|
|
2008 |
msgstr "grille"
|
2009 |
|
2010 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2011 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2012 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2013 |
msgid "Post Injection"
|
2014 |
msgstr "Injection dans l'article"
|
2015 |
|
2016 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2017 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2018 |
msgid "Geolocation"
|
2019 |
msgstr "Géolocalisation"
|
2020 |
|
2021 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2022 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2023 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2024 |
msgid "Mode"
|
2025 |
msgstr "Mode"
|
2026 |
|
@@ -2028,10 +2016,6 @@ msgstr "Mode"
|
|
2028 |
msgid "Disabled Ads"
|
2029 |
msgstr "Pubs inactives"
|
2030 |
|
2031 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2032 |
-
msgid "Activate"
|
2033 |
-
msgstr "Activer"
|
2034 |
-
|
2035 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2036 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2037 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2044,15 +2028,9 @@ msgstr "Mettre à zéro les statistiques"
|
|
2044 |
msgid "Start / End"
|
2045 |
msgstr "Début / Fin"
|
2046 |
|
2047 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2048 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2049 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2050 |
-
msgid "Title"
|
2051 |
-
msgstr "Titre"
|
2052 |
-
|
2053 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2054 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2055 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2056 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2057 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2058 |
msgid "Impressions"
|
@@ -2061,7 +2039,7 @@ msgstr "Vues"
|
|
2061 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2062 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2063 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2064 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2065 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2066 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2067 |
msgid "Clicks"
|
@@ -2077,7 +2055,7 @@ msgstr "CTR"
|
|
2077 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2078 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2079 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2080 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2081 |
msgid "Edit"
|
2082 |
msgstr "Modifier"
|
2083 |
|
@@ -2128,7 +2106,7 @@ msgid "For 7 days"
|
|
2128 |
msgstr "Pour 7 jours"
|
2129 |
|
2130 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2131 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2132 |
msgid "Configuration errors."
|
2133 |
msgstr "Erreurs de configuration."
|
2134 |
|
@@ -2140,11 +2118,6 @@ msgstr "Pubs Activées"
|
|
2140 |
msgid "Export to XML"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2144 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2145 |
-
msgid "Weight"
|
2146 |
-
msgstr "Importance"
|
2147 |
-
|
2148 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2149 |
msgid "Shown"
|
2150 |
msgstr "Montré"
|
@@ -2201,10 +2174,6 @@ msgstr "Nouveau Groupe"
|
|
2201 |
msgid "Edit Group"
|
2202 |
msgstr "Modifier Groupe"
|
2203 |
|
2204 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2205 |
-
msgid "Name:"
|
2206 |
-
msgstr "Nom :"
|
2207 |
-
|
2208 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2209 |
msgid "Default - Show one ad at a time"
|
2210 |
msgstr "Par defaut - Montrer une pub "
|
@@ -2291,15 +2260,15 @@ msgstr ""
|
|
2291 |
"intervalle. La valeur par défaut est : 6."
|
2292 |
|
2293 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2294 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2295 |
msgid ""
|
2296 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2297 |
"\" and enter ID"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2301 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2302 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2303 |
msgid "Save Group"
|
2304 |
msgstr "Sauvegarder groupe"
|
2305 |
|
@@ -2351,148 +2320,170 @@ msgid ""
|
|
2351 |
"setting. Not every theme supports this feature."
|
2352 |
msgstr ""
|
2353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2354 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2355 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2356 |
msgstr ""
|
2357 |
"Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
|
2358 |
"défaut de l'identifiant du groupe."
|
2359 |
|
2360 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2361 |
-
msgid "Set up
|
2362 |
msgstr ""
|
2363 |
-
"Mettre en place un groupe de secours, et utiliser la localisation "
|
2364 |
-
"géographique dans AdRotate Pro"
|
2365 |
|
2366 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2367 |
-
msgid "
|
2368 |
-
msgstr "
|
2369 |
|
2370 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2371 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2372 |
msgid "Before content"
|
2373 |
msgstr "Avant le contenu"
|
2374 |
|
2375 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2376 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2377 |
msgid "After content"
|
2378 |
msgstr "Après le contenu"
|
2379 |
|
2380 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2381 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2382 |
msgid "Before and after content"
|
2383 |
msgstr "Avant et après le contenu"
|
2384 |
|
2385 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2386 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2387 |
msgid "After..."
|
2388 |
msgstr "Après..."
|
2389 |
|
2390 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2391 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2392 |
msgid "the first paragraph"
|
2393 |
msgstr "le premier parapgraphe"
|
2394 |
|
2395 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2396 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2397 |
msgid "the second paragraph"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2401 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2402 |
msgid "the third paragraph"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2406 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2407 |
msgid "the fourth paragraph"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2411 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2412 |
msgid "every 2nd paragraph"
|
2413 |
msgstr "chaque second paragraphe"
|
2414 |
|
2415 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2416 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2417 |
msgid "every 3rd paragraph"
|
2418 |
msgstr "chaque 3ème paragraphe"
|
2419 |
|
2420 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2421 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2422 |
msgid "every 4th paragraph"
|
2423 |
msgstr "chaque 4ème paragraphe"
|
2424 |
|
2425 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2426 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2427 |
msgid "every 5th paragraph"
|
2428 |
msgstr "chaque 5ème paragraphe"
|
2429 |
|
2430 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2431 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2432 |
msgid "every 6th paragraph"
|
2433 |
msgstr "chaque 6ème paragraphe"
|
2434 |
|
2435 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2436 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2437 |
msgid "every 7th paragraph"
|
2438 |
msgstr "chaque 7ème paragraphe"
|
2439 |
|
2440 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2441 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2442 |
msgid "every 8th paragraph"
|
2443 |
msgstr "chaque 8ème paragraphe"
|
2444 |
|
2445 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2446 |
msgid "Which categories?"
|
2447 |
msgstr "Quelles catégories?"
|
2448 |
|
2449 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2450 |
msgid "Click the categories posts you want the adverts to show in."
|
2451 |
msgstr ""
|
2452 |
"Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
|
2453 |
"pulicités."
|
2454 |
|
2455 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2456 |
-
msgid "
|
2457 |
-
msgstr "
|
2458 |
|
2459 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2460 |
msgid "Which pages?"
|
2461 |
msgstr "Quelles pages?"
|
2462 |
|
2463 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2464 |
msgid "Click the pages you want the adverts to show in."
|
2465 |
msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
|
2466 |
|
2467 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2468 |
msgid "Wrapper code"
|
2469 |
msgstr "Code enveloppant"
|
2470 |
|
2471 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2472 |
-
msgid "Wraps around each
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2476 |
-
msgid "Before
|
2477 |
-
msgstr "
|
2478 |
|
2479 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2480 |
msgid "Options:"
|
2481 |
msgstr "Options :"
|
2482 |
|
2483 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2484 |
-
msgid "After
|
2485 |
-
msgstr "
|
2486 |
|
2487 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2488 |
-
msgid "Select
|
2489 |
-
msgstr "
|
2490 |
|
2491 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2492 |
msgid "Visible until"
|
2493 |
msgstr "Visible jusqu'à"
|
2494 |
|
2495 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2496 |
msgid "No ads created!"
|
2497 |
msgstr "Aucune pub créée!"
|
2498 |
|
@@ -2516,7 +2507,7 @@ msgstr "Ceci ne peux pas être défait!"
|
|
2516 |
msgid "Code"
|
2517 |
msgstr "Code"
|
2518 |
|
2519 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2520 |
msgid "No groups created!"
|
2521 |
msgstr "Aucun groupe n'a été créé!"
|
2522 |
|
@@ -2524,6 +2515,97 @@ msgstr "Aucun groupe n'a été créé!"
|
|
2524 |
msgid "Statistics for group"
|
2525 |
msgstr "Statistiques pour le groupe"
|
2526 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2527 |
#~ msgid "Enable stats"
|
2528 |
#~ msgstr "Statistiques activés"
|
2529 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+0100\n"
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
|
9 |
"Language: en_US\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:801
|
21 |
msgid "No files found"
|
22 |
msgstr "Aucun fichier n'a été trouvé"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
|
27 |
|
28 |
+
#: adrotate-output.php:737
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "Oh no! Un problème est survenu!"
|
31 |
|
32 |
+
#: adrotate-output.php:738
|
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 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
39 |
"votre navigateur."
|
40 |
|
41 |
+
#: adrotate-output.php:739
|
42 |
msgid ""
|
43 |
"If you have received the url you want to visit via email, you are being "
|
44 |
"tricked!"
|
45 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
46 |
|
47 |
+
#: adrotate-output.php:740
|
48 |
msgid "Contact support if the issue persists:"
|
49 |
msgstr "Contactez le support si le soucis persiste :"
|
50 |
|
51 |
+
#: adrotate-output.php:758
|
52 |
msgid ""
|
53 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
54 |
"restrictions or does not exist!"
|
56 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
57 |
"horaires/géographiques ou n'existe pas!"
|
58 |
|
59 |
+
#: adrotate-output.php:760
|
60 |
msgid ""
|
61 |
"Error, Ad is not available at this time due to schedule/geolocation "
|
62 |
"restrictions!"
|
64 |
"Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
|
65 |
"horaires/géographiques!"
|
66 |
|
67 |
+
#: adrotate-output.php:767 adrotate-output.php:769
|
68 |
msgid ""
|
69 |
"Either there are no banners, they are disabled or none qualified for this "
|
70 |
"location!"
|
72 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
73 |
"cet endroit!"
|
74 |
|
75 |
+
#: adrotate-output.php:775
|
76 |
msgid "Error, no Ad ID set! Check your syntax!"
|
77 |
msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
|
78 |
|
79 |
+
#: adrotate-output.php:781
|
80 |
msgid "Error, no group ID set! Check your syntax!"
|
81 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
82 |
|
83 |
+
#: adrotate-output.php:786
|
84 |
msgid "Error, group does not exist! Check your syntax!"
|
85 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
86 |
|
87 |
+
#: adrotate-output.php:792
|
88 |
msgid ""
|
89 |
"There was an error locating the database tables for AdRotate. Please "
|
90 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
93 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
|
94 |
"extensions. "
|
95 |
|
96 |
+
#: adrotate-output.php:792
|
97 |
msgid "If this does not solve the issue please seek support at"
|
98 |
msgstr ""
|
99 |
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
100 |
"support à"
|
101 |
|
102 |
+
#: adrotate-output.php:798
|
103 |
msgid "An unknown error occured."
|
104 |
msgstr "Une erreur inconnue s'est produite."
|
105 |
|
106 |
+
#: adrotate-output.php:823
|
107 |
msgid "active ad(s) expired."
|
108 |
msgstr "publicité(s) active(s) ont expirée(s)."
|
109 |
|
110 |
+
#: adrotate-output.php:823
|
111 |
msgid "Take action now"
|
112 |
msgstr "Agir maintenant"
|
113 |
|
114 |
+
#: adrotate-output.php:825
|
115 |
msgid "active ad(s) are about to expire."
|
116 |
msgstr "publicité(s) active(s) sont sur le point d'expirer"
|
117 |
|
118 |
+
#: adrotate-output.php:825
|
119 |
msgid "Check it out"
|
120 |
msgstr "Vérifier-le"
|
121 |
|
122 |
+
#: adrotate-output.php:827
|
123 |
msgid "active ad(s) with configuration errors."
|
124 |
msgstr "publicité(s) active(s) avec des erreurs de configuration."
|
125 |
|
126 |
+
#: adrotate-output.php:827
|
127 |
msgid "Solve this"
|
128 |
msgstr "Résoudre"
|
129 |
|
130 |
+
#: adrotate-output.php:829
|
131 |
msgid "ad(s) expired."
|
132 |
msgstr "publicité(s) expirée(s)"
|
133 |
|
134 |
+
#: adrotate-output.php:829
|
135 |
msgid "ad(s) are about to expire."
|
136 |
msgstr "publicité(s) sont sur le point d'expirer"
|
137 |
|
138 |
+
#: adrotate-output.php:829
|
139 |
msgid "ad(s) with configuration errors."
|
140 |
msgstr "publicité(s) avec des erreurs de configuration."
|
141 |
|
142 |
+
#: adrotate-output.php:829
|
143 |
msgid "Fix this as soon as possible"
|
144 |
msgstr "Résoudre ce soucis dans les meilleurs délais"
|
145 |
|
146 |
+
#: adrotate-output.php:841
|
147 |
#, fuzzy
|
148 |
msgid "Learn More"
|
149 |
msgstr "En savoir plus"
|
150 |
|
151 |
+
#: adrotate-output.php:842
|
152 |
msgid ""
|
153 |
"You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
|
154 |
"to the <strong>PRO</strong> version"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: adrotate-output.php:842
|
158 |
msgid "Get more features to even better run your advertising campaigns."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: adrotate-output.php:842
|
162 |
msgid "Thank you for your consideration!"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: adrotate-output.php:886
|
166 |
msgid ""
|
167 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
168 |
"this menu. Check out the"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: adrotate-output.php:886
|
172 |
msgid "manuals"
|
173 |
msgstr "manuels"
|
174 |
|
175 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
176 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
177 |
msgid "and"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: adrotate-output.php:886
|
181 |
msgid "forums"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: adrotate-output.php:922
|
185 |
msgid "Useful Links"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: adrotate-output.php:923
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: adrotate-output.php:925
|
193 |
msgid "AdRotate Page"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:926
|
197 |
msgid "Getting Started With AdRotate"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: adrotate-output.php:927
|
201 |
msgid "AdRotate manuals"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: adrotate-output.php:928
|
205 |
msgid "AdRotate Support Forum"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: adrotate-output.php:954
|
209 |
#, fuzzy
|
210 |
msgid "Help AdRotate Grow"
|
211 |
msgstr "AdRotate Pro"
|
212 |
|
213 |
+
#: adrotate-output.php:955
|
214 |
msgid "Brought to you by"
|
215 |
msgstr "Présenté par"
|
216 |
|
217 |
+
#: adrotate-output.php:962
|
218 |
msgid ""
|
219 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
220 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: adrotate-output.php:962
|
224 |
msgid "If you find AdRotate useful please leave your honest"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: adrotate-output.php:962
|
228 |
msgid "rating"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: adrotate-output.php:962
|
232 |
#, fuzzy
|
233 |
msgid "review"
|
234 |
msgstr "En avant-première"
|
235 |
|
236 |
+
#: adrotate-output.php:962
|
237 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: adrotate-output.php:965
|
241 |
msgid ""
|
242 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
243 |
"out more about what I can do for you!"
|
245 |
"Votre guichet unique pour le développement Web, le consulting et toutes les "
|
246 |
"façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
|
247 |
|
248 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
249 |
msgid "Visit the"
|
250 |
msgstr "Visitez le"
|
251 |
|
252 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
253 |
msgid "website"
|
254 |
msgstr "site"
|
255 |
|
256 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
257 |
msgid "Available in AdRotate Pro"
|
258 |
msgstr "Disponible dans Adrotate Pro"
|
259 |
|
260 |
+
#: adrotate-output.php:995
|
261 |
msgid "More information..."
|
262 |
msgstr "Plus d'informations..."
|
263 |
|
264 |
+
#: adrotate-output.php:996
|
265 |
msgid "This feature is available in AdRotate Pro"
|
266 |
msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
|
267 |
|
268 |
+
#: adrotate-output.php:996
|
269 |
msgid "Learn more"
|
270 |
msgstr "En savoir plus"
|
271 |
|
379 |
msgid "Choose what you want to use this widget for"
|
380 |
msgstr "Choisissez le fonction de ce widget"
|
381 |
|
382 |
+
#: adrotate-widget.php:137
|
383 |
msgid "ID:"
|
384 |
msgstr "ID :"
|
385 |
|
507 |
msgstr "Le gruop ainsi que ses publicités ont été supprimés"
|
508 |
|
509 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
510 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
511 |
msgid "Report"
|
512 |
msgstr "Rapport"
|
513 |
|
527 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
528 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
529 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
530 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
531 |
msgid "More information"
|
532 |
msgstr "Plus d'information"
|
533 |
|
548 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
549 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
550 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
551 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
552 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
553 |
msgid "ID"
|
554 |
msgstr "ID"
|
593 |
msgstr "Mettre à jour aujourd'hui"
|
594 |
|
595 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
596 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
597 |
msgid "Expires soon."
|
598 |
msgstr "Expire bientôt."
|
599 |
|
600 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
601 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
602 |
msgid "Has expired."
|
603 |
msgstr "A expiré."
|
604 |
|
663 |
"tailles d'écran."
|
664 |
|
665 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
666 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
667 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
668 |
msgid "Example:"
|
669 |
msgstr "Exemple :"
|
670 |
|
685 |
msgid "Available banner images in"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
689 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
690 |
msgid "Name"
|
691 |
msgstr "Nom"
|
692 |
|
787 |
msgid "Update Options"
|
788 |
msgstr "Mettre à jour les options"
|
789 |
|
790 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
791 |
msgid "Statistics"
|
792 |
msgstr "Statistiques"
|
793 |
|
795 |
msgid "How to track stats"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
799 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
800 |
msgid "Disabled"
|
801 |
msgstr "Désactivé"
|
802 |
|
1600 |
msgstr "Modifier la pub"
|
1601 |
|
1602 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1603 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1604 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1605 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1606 |
+
msgid "Title"
|
1607 |
+
msgstr "Titre"
|
1608 |
|
1609 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1610 |
+
msgid "AdCode"
|
1611 |
+
msgstr ""
|
1612 |
|
1613 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1614 |
msgid "Basic Examples:"
|
1615 |
msgstr "Exemples de base :"
|
1616 |
|
1617 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1618 |
+
msgid "Useful tags"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1652 |
+
msgid "Banner image"
|
1653 |
+
msgstr ""
|
1654 |
|
1655 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1656 |
msgid "WordPress media:"
|
1684 |
"Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
|
1685 |
"valeur, ce champ a la priorité."
|
1686 |
|
|
|
|
|
|
|
|
|
1687 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1688 |
msgid "Enable click and impression tracking for this advert."
|
1689 |
msgstr ""
|
1696 |
msgstr ""
|
1697 |
|
1698 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1699 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1700 |
+
msgid "Activate"
|
1701 |
msgstr "Activer"
|
1702 |
|
1703 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1711 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1712 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1713 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1714 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1715 |
msgid "Get more features with AdRotate Pro."
|
1716 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
1717 |
|
1727 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1728 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1729 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1730 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1731 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1732 |
msgid "Cancel"
|
1733 |
msgstr "Annuller"
|
1734 |
|
1754 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1755 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1756 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1757 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1758 |
msgid "Usage"
|
1759 |
msgstr "Usage"
|
1760 |
|
1761 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1762 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1763 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1764 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1765 |
+
msgid "Widget"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1775 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1776 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1777 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1778 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1779 |
+
msgid "In a post or page"
|
1780 |
+
msgstr ""
|
1781 |
|
1782 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1783 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1784 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1785 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1786 |
+
msgid "Directly in a theme"
|
1787 |
+
msgstr ""
|
1788 |
|
1789 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1790 |
msgid "Schedule your advert"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1794 |
+
msgid "Start date (day/month/year)"
|
1795 |
+
msgstr ""
|
1796 |
|
1797 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1798 |
+
msgid "End date (day/month/year)"
|
1799 |
+
msgstr ""
|
1800 |
|
1801 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1802 |
+
msgid "Start time (hh:mm)"
|
1803 |
+
msgstr ""
|
1804 |
|
1805 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1806 |
+
msgid "End time (hh:mm)"
|
1807 |
+
msgstr ""
|
1808 |
|
1809 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1810 |
+
msgid "Maximum Clicks"
|
1811 |
+
msgstr ""
|
1812 |
|
1813 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1814 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1816 |
msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
|
1817 |
|
1818 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1819 |
+
msgid "Maximum Impressions"
|
1820 |
+
msgstr ""
|
1821 |
|
1822 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1823 |
+
msgid "Important"
|
|
|
|
|
|
|
1824 |
msgstr ""
|
|
|
|
|
|
|
|
|
1825 |
|
1826 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1827 |
msgid ""
|
1828 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1829 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1830 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1831 |
msgstr ""
|
|
|
|
|
|
|
1832 |
|
1833 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1834 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1837 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1838 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1839 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1840 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1841 |
msgid "Upgrade today"
|
1842 |
msgstr "Mettre à jour aujourd'hui"
|
1843 |
|
1851 |
msgstr "Tous les paramètres ci-dessous sont optionels."
|
1852 |
|
1853 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1854 |
+
msgid "Responsive"
|
1855 |
+
msgstr ""
|
1856 |
|
1857 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1858 |
msgid "Enable responsive support for this advert."
|
1870 |
"fluide."
|
1871 |
|
1872 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1873 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1874 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1875 |
+
msgid "Weight"
|
1876 |
msgstr "Importance"
|
1877 |
|
|
|
|
|
|
|
|
|
|
|
1878 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1879 |
msgid "Barely visible"
|
1880 |
msgstr ""
|
1896 |
msgstr ""
|
1897 |
|
1898 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1899 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1900 |
+
msgid "Sortorder"
|
1901 |
+
msgstr ""
|
1902 |
|
1903 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1904 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1905 |
msgid "For administrative purposes set a sortorder."
|
1906 |
msgstr "Pour des raisons administratives définir un ordre de tri."
|
1907 |
|
1927 |
msgstr ""
|
1928 |
|
1929 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1930 |
+
msgid "Cities/States"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1943 |
msgstr ""
|
1944 |
|
1945 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1946 |
+
msgid "Countries"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1997 |
msgstr "grille"
|
1998 |
|
1999 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2000 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
2001 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2002 |
msgid "Post Injection"
|
2003 |
msgstr "Injection dans l'article"
|
2004 |
|
2005 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2006 |
msgid "Geolocation"
|
2007 |
msgstr "Géolocalisation"
|
2008 |
|
2009 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2010 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2011 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2012 |
msgid "Mode"
|
2013 |
msgstr "Mode"
|
2014 |
|
2016 |
msgid "Disabled Ads"
|
2017 |
msgstr "Pubs inactives"
|
2018 |
|
|
|
|
|
|
|
|
|
2019 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2020 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2021 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2028 |
msgid "Start / End"
|
2029 |
msgstr "Début / Fin"
|
2030 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2031 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2032 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2033 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2034 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2035 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2036 |
msgid "Impressions"
|
2039 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2040 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2041 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2042 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2043 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2044 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2045 |
msgid "Clicks"
|
2055 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2056 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2057 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2058 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2059 |
msgid "Edit"
|
2060 |
msgstr "Modifier"
|
2061 |
|
2106 |
msgstr "Pour 7 jours"
|
2107 |
|
2108 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2109 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2110 |
msgid "Configuration errors."
|
2111 |
msgstr "Erreurs de configuration."
|
2112 |
|
2118 |
msgid "Export to XML"
|
2119 |
msgstr ""
|
2120 |
|
|
|
|
|
|
|
|
|
|
|
2121 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2122 |
msgid "Shown"
|
2123 |
msgstr "Montré"
|
2174 |
msgid "Edit Group"
|
2175 |
msgstr "Modifier Groupe"
|
2176 |
|
|
|
|
|
|
|
|
|
2177 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2178 |
msgid "Default - Show one ad at a time"
|
2179 |
msgstr "Par defaut - Montrer une pub "
|
2260 |
"intervalle. La valeur par défaut est : 6."
|
2261 |
|
2262 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2263 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2264 |
msgid ""
|
2265 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2266 |
"\" and enter ID"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2270 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2271 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2272 |
msgid "Save Group"
|
2273 |
msgstr "Sauvegarder groupe"
|
2274 |
|
2320 |
"setting. Not every theme supports this feature."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2324 |
+
msgid "Geo Targeting"
|
2325 |
+
msgstr ""
|
2326 |
+
|
2327 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2328 |
+
msgid "Enable Geo Targeting for this group."
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2332 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2336 |
+
msgid "Mobile support"
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2340 |
+
msgid "Enable mobile support for this group."
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2344 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2348 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2349 |
msgstr ""
|
2350 |
"Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
|
2351 |
"défaut de l'identifiant du groupe."
|
2352 |
|
2353 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2354 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2355 |
msgstr ""
|
|
|
|
|
2356 |
|
2357 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2358 |
+
msgid "In categories?"
|
2359 |
+
msgstr ""
|
2360 |
|
2361 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2362 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2363 |
msgid "Before content"
|
2364 |
msgstr "Avant le contenu"
|
2365 |
|
2366 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2367 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2368 |
msgid "After content"
|
2369 |
msgstr "Après le contenu"
|
2370 |
|
2371 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2372 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2373 |
msgid "Before and after content"
|
2374 |
msgstr "Avant et après le contenu"
|
2375 |
|
2376 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2377 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2378 |
msgid "After..."
|
2379 |
msgstr "Après..."
|
2380 |
|
2381 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2382 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2383 |
msgid "the first paragraph"
|
2384 |
msgstr "le premier parapgraphe"
|
2385 |
|
2386 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2387 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2388 |
msgid "the second paragraph"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2392 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2393 |
msgid "the third paragraph"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2397 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2398 |
msgid "the fourth paragraph"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2402 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2403 |
msgid "every 2nd paragraph"
|
2404 |
msgstr "chaque second paragraphe"
|
2405 |
|
2406 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2407 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2408 |
msgid "every 3rd paragraph"
|
2409 |
msgstr "chaque 3ème paragraphe"
|
2410 |
|
2411 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2412 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2413 |
msgid "every 4th paragraph"
|
2414 |
msgstr "chaque 4ème paragraphe"
|
2415 |
|
2416 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2417 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2418 |
msgid "every 5th paragraph"
|
2419 |
msgstr "chaque 5ème paragraphe"
|
2420 |
|
2421 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2422 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2423 |
msgid "every 6th paragraph"
|
2424 |
msgstr "chaque 6ème paragraphe"
|
2425 |
|
2426 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2427 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2428 |
msgid "every 7th paragraph"
|
2429 |
msgstr "chaque 7ème paragraphe"
|
2430 |
|
2431 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2432 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2433 |
msgid "every 8th paragraph"
|
2434 |
msgstr "chaque 8ème paragraphe"
|
2435 |
|
2436 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2437 |
msgid "Which categories?"
|
2438 |
msgstr "Quelles catégories?"
|
2439 |
|
2440 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2441 |
msgid "Click the categories posts you want the adverts to show in."
|
2442 |
msgstr ""
|
2443 |
"Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
|
2444 |
"pulicités."
|
2445 |
|
2446 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2447 |
+
msgid "In pages?"
|
2448 |
+
msgstr ""
|
2449 |
|
2450 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2451 |
msgid "Which pages?"
|
2452 |
msgstr "Quelles pages?"
|
2453 |
|
2454 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2455 |
msgid "Click the pages you want the adverts to show in."
|
2456 |
msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
|
2457 |
|
2458 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2459 |
msgid "Wrapper code"
|
2460 |
msgstr "Code enveloppant"
|
2461 |
|
2462 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2463 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2467 |
+
msgid "Before advert"
|
2468 |
+
msgstr ""
|
2469 |
|
2470 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2471 |
msgid "Options:"
|
2472 |
msgstr "Options :"
|
2473 |
|
2474 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2475 |
+
msgid "After advert"
|
2476 |
+
msgstr ""
|
2477 |
|
2478 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2479 |
+
msgid "Select adverts"
|
2480 |
+
msgstr ""
|
2481 |
|
2482 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2483 |
msgid "Visible until"
|
2484 |
msgstr "Visible jusqu'à"
|
2485 |
|
2486 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2487 |
msgid "No ads created!"
|
2488 |
msgstr "Aucune pub créée!"
|
2489 |
|
2507 |
msgid "Code"
|
2508 |
msgstr "Code"
|
2509 |
|
2510 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2511 |
msgid "No groups created!"
|
2512 |
msgstr "Aucun groupe n'a été créé!"
|
2513 |
|
2515 |
msgid "Statistics for group"
|
2516 |
msgstr "Statistiques pour le groupe"
|
2517 |
|
2518 |
+
#~ msgid "Title:"
|
2519 |
+
#~ msgstr "Titre :"
|
2520 |
+
|
2521 |
+
#~ msgid "AdCode:"
|
2522 |
+
#~ msgstr "Code :"
|
2523 |
+
|
2524 |
+
#~ msgid "Banner image:"
|
2525 |
+
#~ msgstr "Image :"
|
2526 |
+
|
2527 |
+
#~ msgid "Activate:"
|
2528 |
+
#~ msgstr "Activer"
|
2529 |
+
|
2530 |
+
#~ msgid "In a post or page:"
|
2531 |
+
#~ msgstr "Dans un article ou une page :"
|
2532 |
+
|
2533 |
+
#~ msgid "Directly in a theme:"
|
2534 |
+
#~ msgstr "Directement dans un thème :"
|
2535 |
+
|
2536 |
+
#~ msgid "Start date (day/month/year):"
|
2537 |
+
#~ msgstr "Date de début (jour/mois/année) :"
|
2538 |
+
|
2539 |
+
#~ msgid "End date (day/month/year):"
|
2540 |
+
#~ msgstr "Date de fin (jour/mois/année) :"
|
2541 |
+
|
2542 |
+
#~ msgid "Start time (hh:mm):"
|
2543 |
+
#~ msgstr "Début (hh:mm) :"
|
2544 |
+
|
2545 |
+
#~ msgid "End time (hh:mm):"
|
2546 |
+
#~ msgstr "Fin (hh:mm) :"
|
2547 |
+
|
2548 |
+
#~ msgid "Maximum Clicks:"
|
2549 |
+
#~ msgstr "Nombre de clicks max :"
|
2550 |
+
|
2551 |
+
#~ msgid "Maximum Impressions:"
|
2552 |
+
#~ msgstr "Nombre max de vues :"
|
2553 |
+
|
2554 |
+
#~ msgid ""
|
2555 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2556 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2557 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2558 |
+
#~ msgstr ""
|
2559 |
+
#~ "L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes "
|
2560 |
+
#~ "habitués au système de AM/PM, gardez cela en tête : si l'heure de début "
|
2561 |
+
#~ "ou de fin est après midi, ajoutez 12 heures (par exemple, 2PM est égal à "
|
2562 |
+
#~ "14:00 et 6AM est 6:00). "
|
2563 |
+
|
2564 |
+
#~ msgid ""
|
2565 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2566 |
+
#~ "only. Every schedule can have it's own limit!"
|
2567 |
+
#~ msgstr ""
|
2568 |
+
#~ "Le nombre maximum de clics et d'impressions est mesuré pour le calendrier "
|
2569 |
+
#~ "en question uniquement. Tous les calendriers peuvent avoir leurs propres "
|
2570 |
+
#~ "limites!"
|
2571 |
+
|
2572 |
+
#~ msgid "Responsive:"
|
2573 |
+
#~ msgstr "Responsive :"
|
2574 |
+
|
2575 |
+
#, fuzzy
|
2576 |
+
#~ msgid "Weight:"
|
2577 |
+
#~ msgstr "Importance"
|
2578 |
+
|
2579 |
+
#, fuzzy
|
2580 |
+
#~ msgid "AdRotate Pro only"
|
2581 |
+
#~ msgstr "AdRotate Pro"
|
2582 |
+
|
2583 |
+
#~ msgid "Sortorder:"
|
2584 |
+
#~ msgstr "Ordre de tri :"
|
2585 |
+
|
2586 |
+
#~ msgid "Name:"
|
2587 |
+
#~ msgstr "Nom :"
|
2588 |
+
|
2589 |
+
#~ msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
|
2590 |
+
#~ msgstr ""
|
2591 |
+
#~ "Mettre en place un groupe de secours, et utiliser la localisation "
|
2592 |
+
#~ "géographique dans AdRotate Pro"
|
2593 |
+
|
2594 |
+
#~ msgid "Include ads in categories?"
|
2595 |
+
#~ msgstr "Intégrer les publicités dans les catégories?"
|
2596 |
+
|
2597 |
+
#~ msgid "Include ads in pages?"
|
2598 |
+
#~ msgstr "Intégrer les publicités dans les pages?"
|
2599 |
+
|
2600 |
+
#~ msgid "Before ad"
|
2601 |
+
#~ msgstr "Avant la pub"
|
2602 |
+
|
2603 |
+
#~ msgid "After ad"
|
2604 |
+
#~ msgstr "Après la pub"
|
2605 |
+
|
2606 |
+
#~ msgid "Select Ads"
|
2607 |
+
#~ msgstr "Choisir les pubs"
|
2608 |
+
|
2609 |
#~ msgid "Enable stats"
|
2610 |
#~ msgstr "Statistiques activés"
|
2611 |
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -16,19 +16,19 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.7.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
-
#: adrotate-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,160 +99,160 @@ 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. Everything related to AdRotate is in "
|
175 |
"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:151
|
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 |
#, fuzzy
|
225 |
msgid "Help AdRotate Grow"
|
226 |
msgstr "AdRotate Blog"
|
227 |
|
228 |
-
#: adrotate-output.php:
|
229 |
msgid "Brought to you by"
|
230 |
msgstr "サービス紹介"
|
231 |
|
232 |
-
#: adrotate-output.php:
|
233 |
msgid ""
|
234 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
235 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: adrotate-output.php:
|
239 |
msgid "If you find AdRotate useful please leave your honest"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: adrotate-output.php:
|
243 |
msgid "rating"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: adrotate-output.php:
|
247 |
#, fuzzy
|
248 |
msgid "review"
|
249 |
msgstr "全般レポートを見れる権限"
|
250 |
|
251 |
-
#: adrotate-output.php:
|
252 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: adrotate-output.php:
|
256 |
#, fuzzy
|
257 |
msgid ""
|
258 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
@@ -262,7 +262,7 @@ msgstr ""
|
|
262 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
263 |
"さい。英語ですが。"
|
264 |
|
265 |
-
#: adrotate-output.php:
|
266 |
#, fuzzy
|
267 |
msgid "Visit the"
|
268 |
msgstr ""
|
@@ -270,27 +270,27 @@ msgstr ""
|
|
270 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
271 |
"さい。英語ですが。"
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
#, fuzzy
|
275 |
msgid "website"
|
276 |
msgstr "開発者のWEBサイトは以下です。"
|
277 |
|
278 |
-
#: adrotate-output.php:
|
279 |
#, fuzzy
|
280 |
msgid "Available in AdRotate Pro"
|
281 |
msgstr "AdRotate Blog"
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
#, fuzzy
|
285 |
msgid "More information..."
|
286 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
287 |
|
288 |
-
#: adrotate-output.php:
|
289 |
#, fuzzy
|
290 |
msgid "This feature is available in AdRotate Pro"
|
291 |
msgstr "この機能は使いません。"
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
#, fuzzy
|
295 |
msgid "Learn more"
|
296 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
@@ -406,7 +406,7 @@ msgstr "広告グループ - グループIDを使ってください。"
|
|
406 |
msgid "Choose what you want to use this widget for"
|
407 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
408 |
|
409 |
-
#: adrotate-widget.php:137
|
410 |
#, fuzzy
|
411 |
msgid "ID:"
|
412 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
@@ -539,7 +539,7 @@ msgid "Group including it's Ads deleted"
|
|
539 |
msgstr "削除された広告がグループに含まれています。"
|
540 |
|
541 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
542 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
543 |
msgid "Report"
|
544 |
msgstr "レポート"
|
545 |
|
@@ -559,7 +559,7 @@ msgstr "この機能は使いません。"
|
|
559 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
560 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
561 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
562 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
563 |
#, fuzzy
|
564 |
msgid "More information"
|
565 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
@@ -581,6 +581,7 @@ msgstr "実行"
|
|
581 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
582 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
583 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
584 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
585 |
#, fuzzy
|
586 |
msgid "ID"
|
@@ -627,13 +628,13 @@ msgid "Upgrade today!"
|
|
627 |
msgstr "本日"
|
628 |
|
629 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
630 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
631 |
#, fuzzy
|
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:
|
637 |
#, fuzzy
|
638 |
msgid "Has expired."
|
639 |
msgstr "個の広告が期限切れです。"
|
@@ -693,8 +694,8 @@ msgid ""
|
|
693 |
msgstr ""
|
694 |
|
695 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
696 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
697 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
698 |
msgid "Example:"
|
699 |
msgstr "例:"
|
700 |
|
@@ -714,7 +715,8 @@ msgstr "バナー画像"
|
|
714 |
msgid "Available banner images in"
|
715 |
msgstr "バナー画像"
|
716 |
|
717 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
718 |
msgid "Name"
|
719 |
msgstr "名前"
|
720 |
|
@@ -816,7 +818,7 @@ msgstr "グループを削除できる権限"
|
|
816 |
msgid "Update Options"
|
817 |
msgstr "設定の更新"
|
818 |
|
819 |
-
#: adrotate.php:691
|
820 |
msgid "Statistics"
|
821 |
msgstr "統計"
|
822 |
|
@@ -824,8 +826,8 @@ msgstr "統計"
|
|
824 |
msgid "How to track stats"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
828 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
829 |
#, fuzzy
|
830 |
msgid "Disabled"
|
831 |
msgstr "掲載不可広告"
|
@@ -1629,19 +1631,22 @@ msgid "Edit Advert"
|
|
1629 |
msgstr "編集"
|
1630 |
|
1631 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1632 |
-
|
1633 |
-
|
|
|
|
|
|
|
1634 |
|
1635 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1636 |
-
msgid "AdCode
|
1637 |
-
msgstr "
|
1638 |
|
1639 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1640 |
msgid "Basic Examples:"
|
1641 |
msgstr "設定例:"
|
1642 |
|
1643 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1644 |
-
msgid "Useful tags
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1675,8 +1680,8 @@ msgid ""
|
|
1675 |
msgstr ""
|
1676 |
|
1677 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1678 |
-
msgid "Banner image
|
1679 |
-
msgstr "
|
1680 |
|
1681 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1682 |
msgid "WordPress media:"
|
@@ -1713,10 +1718,6 @@ msgstr ""
|
|
1713 |
"上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
|
1714 |
"合はそちらが優先されます。"
|
1715 |
|
1716 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1717 |
-
msgid "Statistics:"
|
1718 |
-
msgstr ""
|
1719 |
-
|
1720 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1721 |
msgid "Enable click and impression tracking for this advert."
|
1722 |
msgstr ""
|
@@ -1729,8 +1730,9 @@ msgid ""
|
|
1729 |
msgstr ""
|
1730 |
|
1731 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1732 |
-
|
1733 |
-
|
|
|
1734 |
|
1735 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1736 |
msgid "Yes, this ad will be used"
|
@@ -1744,7 +1746,7 @@ msgstr "表示できるデータがありません。"
|
|
1744 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1745 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1746 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1747 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1748 |
#, fuzzy
|
1749 |
msgid "Get more features with AdRotate Pro."
|
1750 |
msgstr ""
|
@@ -1764,8 +1766,8 @@ msgstr "保存"
|
|
1764 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1765 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1766 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1767 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1768 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1769 |
msgid "Cancel"
|
1770 |
msgstr "キャンセル"
|
1771 |
|
@@ -1791,15 +1793,15 @@ msgstr ""
|
|
1791 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1792 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1793 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1794 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1795 |
msgid "Usage"
|
1796 |
msgstr "利用タグ"
|
1797 |
|
1798 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1799 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1800 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1801 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1802 |
-
msgid "Widget
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1812,44 +1814,40 @@ msgstr ""
|
|
1812 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1813 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1814 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1815 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1816 |
-
msgid "In a post or page
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1820 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1821 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1822 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1823 |
-
msgid "Directly in a theme
|
1824 |
-
msgstr "
|
1825 |
|
1826 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1827 |
msgid "Schedule your advert"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1831 |
-
|
1832 |
-
|
1833 |
-
msgstr "1年間"
|
1834 |
|
1835 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1836 |
-
|
1837 |
-
|
1838 |
-
msgstr "1年間"
|
1839 |
|
1840 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1841 |
-
|
1842 |
-
|
1843 |
-
msgstr "選ばれた期間が見つかりません。"
|
1844 |
|
1845 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1846 |
-
|
1847 |
-
|
1848 |
-
msgstr "選ばれた期間が見つかりません。"
|
1849 |
|
1850 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1851 |
-
msgid "Maximum Clicks
|
1852 |
-
msgstr "
|
1853 |
|
1854 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1855 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1857,26 +1855,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1857 |
msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
|
1858 |
|
1859 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1860 |
-
msgid "Maximum Impressions
|
1861 |
-
msgstr "
|
1862 |
|
1863 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1864 |
-
|
1865 |
-
msgid ""
|
1866 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1867 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1868 |
-
"hours. 6AM is 6:00 hours."
|
1869 |
msgstr ""
|
1870 |
-
"必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
|
1871 |
-
"合、メール通知は無効になります。"
|
1872 |
|
1873 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1874 |
msgid ""
|
1875 |
-
"
|
1876 |
-
"
|
|
|
1877 |
msgstr ""
|
1878 |
-
"最大のクリック数と表示回数が設定されたスケジュールのみで測定されています。そ"
|
1879 |
-
"れぞれのスケジュールで上限を設定できます!"
|
1880 |
|
1881 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1882 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1885,7 +1876,7 @@ msgstr ""
|
|
1885 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1886 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1887 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1888 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1889 |
#, fuzzy
|
1890 |
msgid "Upgrade today"
|
1891 |
msgstr "本日"
|
@@ -1902,7 +1893,7 @@ msgid "Everything below is optional."
|
|
1902 |
msgstr "タイトル(オプション):"
|
1903 |
|
1904 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1905 |
-
msgid "Responsive
|
1906 |
msgstr ""
|
1907 |
|
1908 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
@@ -1918,13 +1909,10 @@ msgid ""
|
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
#, fuzzy
|
1926 |
-
msgid "AdRotate Pro only"
|
1927 |
-
msgstr "AdRotate Blog"
|
1928 |
|
1929 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1930 |
msgid "Barely visible"
|
@@ -1947,12 +1935,12 @@ msgid "Best visibility"
|
|
1947 |
msgstr "優先表示(100~90%程度)"
|
1948 |
|
1949 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1950 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1951 |
-
msgid "Sortorder
|
1952 |
-
msgstr "
|
1953 |
|
1954 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1955 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1956 |
msgid "For administrative purposes set a sortorder."
|
1957 |
msgstr "管理目的で順序を設定できます。"
|
1958 |
|
@@ -1976,7 +1964,7 @@ msgid ""
|
|
1976 |
msgstr ""
|
1977 |
|
1978 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1979 |
-
msgid "Cities/States
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
@@ -1992,7 +1980,7 @@ msgid ""
|
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1995 |
-
msgid "Countries
|
1996 |
msgstr ""
|
1997 |
|
1998 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
@@ -2054,20 +2042,19 @@ msgstr ""
|
|
2054 |
"列です。)"
|
2055 |
|
2056 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2057 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2058 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2059 |
#, fuzzy
|
2060 |
msgid "Post Injection"
|
2061 |
msgstr "投稿及びページ内掲載する場合:"
|
2062 |
|
2063 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2064 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2065 |
msgid "Geolocation"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2069 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2070 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2071 |
#, fuzzy
|
2072 |
msgid "Mode"
|
2073 |
msgstr "承認待ち"
|
@@ -2076,10 +2063,6 @@ msgstr "承認待ち"
|
|
2076 |
msgid "Disabled Ads"
|
2077 |
msgstr "掲載不可広告"
|
2078 |
|
2079 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2080 |
-
msgid "Activate"
|
2081 |
-
msgstr "利用可能"
|
2082 |
-
|
2083 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2084 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2085 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2092,15 +2075,9 @@ msgstr "統計リセット"
|
|
2092 |
msgid "Start / End"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2096 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2097 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2098 |
-
msgid "Title"
|
2099 |
-
msgstr "タイトル"
|
2100 |
-
|
2101 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2102 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2103 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2104 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2105 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2106 |
msgid "Impressions"
|
@@ -2109,7 +2086,7 @@ msgstr "表示数"
|
|
2109 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2110 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2111 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2112 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2113 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2114 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2115 |
msgid "Clicks"
|
@@ -2125,7 +2102,7 @@ msgstr ""
|
|
2125 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2126 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2127 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2128 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2129 |
msgid "Edit"
|
2130 |
msgstr "編集"
|
2131 |
|
@@ -2177,7 +2154,7 @@ msgid "For 7 days"
|
|
2177 |
msgstr "1週間(7日)"
|
2178 |
|
2179 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2180 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2181 |
#, fuzzy
|
2182 |
msgid "Configuration errors."
|
2183 |
msgstr "個の広告が設定エラーになっています。"
|
@@ -2191,11 +2168,6 @@ msgstr "利用可能な広告"
|
|
2191 |
msgid "Export to XML"
|
2192 |
msgstr "エクスポートオプション"
|
2193 |
|
2194 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2195 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2196 |
-
msgid "Weight"
|
2197 |
-
msgstr "表示頻度"
|
2198 |
-
|
2199 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2200 |
#, fuzzy
|
2201 |
msgid "Shown"
|
@@ -2256,10 +2228,6 @@ msgstr "新規追加"
|
|
2256 |
msgid "Edit Group"
|
2257 |
msgstr "グループ編集"
|
2258 |
|
2259 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2260 |
-
msgid "Name:"
|
2261 |
-
msgstr "グループ名:"
|
2262 |
-
|
2263 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2264 |
#, fuzzy
|
2265 |
msgid "Default - Show one ad at a time"
|
@@ -2354,15 +2322,15 @@ msgid ""
|
|
2354 |
msgstr "新規追加"
|
2355 |
|
2356 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2357 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2358 |
msgid ""
|
2359 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2360 |
"\" and enter ID"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2364 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2365 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2366 |
#, fuzzy
|
2367 |
msgid "Save Group"
|
2368 |
msgstr "保存"
|
@@ -2420,151 +2388,176 @@ msgid ""
|
|
2420 |
"setting. Not every theme supports this feature."
|
2421 |
msgstr ""
|
2422 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2423 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2424 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2425 |
msgstr ""
|
2426 |
"この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
|
2427 |
"す。"
|
2428 |
|
2429 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2430 |
-
msgid "Set up
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2434 |
-
msgid "
|
2435 |
-
msgstr "
|
2436 |
|
2437 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2438 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2439 |
#, fuzzy
|
2440 |
msgid "Before content"
|
2441 |
msgstr "投稿内容の前"
|
2442 |
|
2443 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2444 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2445 |
#, fuzzy
|
2446 |
msgid "After content"
|
2447 |
msgstr "コンテンツの前と後ろ"
|
2448 |
|
2449 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2450 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2451 |
#, fuzzy
|
2452 |
msgid "Before and after content"
|
2453 |
msgstr "コンテンツの前と後ろ"
|
2454 |
|
2455 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2456 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2457 |
#, fuzzy
|
2458 |
msgid "After..."
|
2459 |
msgstr "広告の後に入れるタグ"
|
2460 |
|
2461 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2462 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2463 |
msgid "the first paragraph"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2467 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2468 |
msgid "the second paragraph"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2472 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2473 |
msgid "the third paragraph"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2477 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2478 |
msgid "the fourth paragraph"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2482 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2483 |
msgid "every 2nd paragraph"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2487 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2488 |
msgid "every 3rd paragraph"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2492 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2493 |
msgid "every 4th paragraph"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2497 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2498 |
msgid "every 5th paragraph"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2502 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2503 |
msgid "every 6th paragraph"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2507 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2508 |
msgid "every 7th paragraph"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2512 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2513 |
msgid "every 8th paragraph"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2517 |
msgid "Which categories?"
|
2518 |
msgstr "どのカテゴリーですか?"
|
2519 |
|
2520 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2521 |
#, fuzzy
|
2522 |
msgid "Click the categories posts you want the adverts to show in."
|
2523 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
2524 |
|
2525 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2526 |
-
msgid "
|
2527 |
-
msgstr "
|
2528 |
|
2529 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2530 |
msgid "Which pages?"
|
2531 |
msgstr "どのページですか?"
|
2532 |
|
2533 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2534 |
#, fuzzy
|
2535 |
msgid "Click the pages you want the adverts to show in."
|
2536 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
2537 |
|
2538 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2539 |
#, fuzzy
|
2540 |
msgid "Wrapper code"
|
2541 |
msgstr "Wrapper code (Optional) - 各広告を囲みます。"
|
2542 |
|
2543 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2544 |
-
msgid "Wraps around each
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2548 |
-
msgid "Before
|
2549 |
-
msgstr "
|
2550 |
|
2551 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2552 |
msgid "Options:"
|
2553 |
msgstr "オプション:"
|
2554 |
|
2555 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2556 |
-
msgid "After
|
2557 |
-
msgstr "
|
2558 |
|
2559 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2560 |
-
msgid "Select
|
2561 |
-
msgstr "
|
2562 |
|
2563 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2564 |
msgid "Visible until"
|
2565 |
msgstr "掲載期限"
|
2566 |
|
2567 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2568 |
msgid "No ads created!"
|
2569 |
msgstr "広告が作成されていません!"
|
2570 |
|
@@ -2588,7 +2581,7 @@ msgstr "この処理は復旧できません。注意して下さい。"
|
|
2588 |
msgid "Code"
|
2589 |
msgstr "コード"
|
2590 |
|
2591 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2592 |
msgid "No groups created!"
|
2593 |
msgstr "グループがまだ作られていません。"
|
2594 |
|
@@ -2597,6 +2590,90 @@ msgstr "グループがまだ作られていません。"
|
|
2597 |
msgid "Statistics for group"
|
2598 |
msgstr "統計 "
|
2599 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2600 |
#, fuzzy
|
2601 |
#~ msgid "Enable stats"
|
2602 |
#~ msgstr "統計リセット"
|
@@ -3094,10 +3171,6 @@ msgstr "統計 "
|
|
3094 |
#~ msgid "Enable GeoTargeting for this group."
|
3095 |
#~ msgstr "グループの管理"
|
3096 |
|
3097 |
-
#, fuzzy
|
3098 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
3099 |
-
#~ msgstr "どのカテゴリーですか?"
|
3100 |
-
|
3101 |
#, fuzzy
|
3102 |
#~ msgid "Fallback group"
|
3103 |
#~ msgstr "代替"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
16 |
"X-Generator: Poedit 1.7.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:801
|
20 |
msgid "No files found"
|
21 |
msgstr "ファイルが見つかりません。"
|
22 |
|
23 |
+
#: adrotate-functions.php:804
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "フォルダーが存在しないかアクセス出来ません。"
|
26 |
|
27 |
+
#: adrotate-output.php:737
|
28 |
msgid "Oh no! Something went wrong!"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
49 |
#, fuzzy
|
50 |
msgid "Contact support if the issue persists:"
|
51 |
msgstr ""
|
52 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
53 |
"さい。"
|
54 |
|
55 |
+
#: adrotate-output.php:758
|
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:760
|
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:767 adrotate-output.php:769
|
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:775
|
78 |
#, fuzzy
|
79 |
msgid "Error, no Ad ID set! Check your syntax!"
|
80 |
msgstr "広告 - 広告IDを使ってください。"
|
81 |
|
82 |
+
#: adrotate-output.php:781
|
83 |
#, fuzzy
|
84 |
msgid "Error, no group ID set! Check your syntax!"
|
85 |
msgstr "広告グループ - グループIDを使ってください。"
|
86 |
|
87 |
+
#: adrotate-output.php:786
|
88 |
#, fuzzy
|
89 |
msgid "Error, group does not exist! Check your syntax!"
|
90 |
msgstr ""
|
91 |
"あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
|
92 |
"クスをオンにします。"
|
93 |
|
94 |
+
#: adrotate-output.php:792
|
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:792
|
103 |
msgid "If this does not solve the issue please seek support at"
|
104 |
msgstr ""
|
105 |
"もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
|
106 |
"さい。"
|
107 |
|
108 |
+
#: adrotate-output.php:798
|
109 |
msgid "An unknown error occured."
|
110 |
msgstr "理解できないエラーが起こっています。"
|
111 |
|
112 |
+
#: adrotate-output.php:823
|
113 |
msgid "active ad(s) expired."
|
114 |
msgstr "個の広告が期限切れです。"
|
115 |
|
116 |
+
#: adrotate-output.php:823
|
117 |
msgid "Take action now"
|
118 |
msgstr "継続する場合は対応して下さい。"
|
119 |
|
120 |
+
#: adrotate-output.php:825
|
121 |
msgid "active ad(s) are about to expire."
|
122 |
msgstr "個の広告がまもなく期限切れです。"
|
123 |
|
124 |
+
#: adrotate-output.php:825
|
125 |
msgid "Check it out"
|
126 |
msgstr "チェックして下さい。"
|
127 |
|
128 |
+
#: adrotate-output.php:827
|
129 |
msgid "active ad(s) with configuration errors."
|
130 |
msgstr "個の広告が設定エラーになっています。"
|
131 |
|
132 |
+
#: adrotate-output.php:827
|
133 |
msgid "Solve this"
|
134 |
msgstr "これを解決して下さい。"
|
135 |
|
136 |
+
#: adrotate-output.php:829
|
137 |
msgid "ad(s) expired."
|
138 |
msgstr "個の広告が期限切れです。"
|
139 |
|
140 |
+
#: adrotate-output.php:829
|
141 |
msgid "ad(s) are about to expire."
|
142 |
msgstr "個の広告がまもなく期限切れです。"
|
143 |
|
144 |
+
#: adrotate-output.php:829
|
145 |
msgid "ad(s) with configuration errors."
|
146 |
msgstr "個の広告が設定エラーになっています。"
|
147 |
|
148 |
+
#: adrotate-output.php:829
|
149 |
msgid "Fix this as soon as possible"
|
150 |
msgstr "これは出来る限り早く修正して下さい。"
|
151 |
|
152 |
+
#: adrotate-output.php:841
|
153 |
#, fuzzy
|
154 |
msgid "Learn More"
|
155 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
156 |
|
157 |
+
#: adrotate-output.php:842
|
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:842
|
164 |
msgid "Get more features to even better run your advertising campaigns."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: adrotate-output.php:842
|
168 |
#, fuzzy
|
169 |
msgid "Thank you for your consideration!"
|
170 |
msgstr "データベースのバックアップを取りましたか?"
|
171 |
|
172 |
+
#: adrotate-output.php:886
|
173 |
msgid ""
|
174 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
175 |
"this menu. Check out the"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: adrotate-output.php:886
|
179 |
msgid "manuals"
|
180 |
msgstr "マニュアル(英語サイト)"
|
181 |
|
182 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
183 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
184 |
msgid "and"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:886
|
188 |
#, fuzzy
|
189 |
msgid "forums"
|
190 |
msgstr "フォーラム"
|
191 |
|
192 |
+
#: adrotate-output.php:922
|
193 |
#, fuzzy
|
194 |
msgid "Useful Links"
|
195 |
msgstr "役に立つ情報"
|
196 |
|
197 |
+
#: adrotate-output.php:923
|
198 |
msgid "Useful links to learn more about AdRotate"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: adrotate-output.php:925
|
202 |
#, fuzzy
|
203 |
msgid "AdRotate Page"
|
204 |
msgstr "AdRotate Blog"
|
205 |
|
206 |
+
#: adrotate-output.php:926
|
207 |
#, fuzzy
|
208 |
msgid "Getting Started With AdRotate"
|
209 |
msgstr ""
|
210 |
"通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
|
211 |
"にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
|
212 |
|
213 |
+
#: adrotate-output.php:927
|
214 |
#, fuzzy
|
215 |
msgid "AdRotate manuals"
|
216 |
msgstr "AdRotate Blog"
|
217 |
|
218 |
+
#: adrotate-output.php:928
|
219 |
#, fuzzy
|
220 |
msgid "AdRotate Support Forum"
|
221 |
msgstr "AdRotate Blog"
|
222 |
|
223 |
+
#: adrotate-output.php:954
|
224 |
#, fuzzy
|
225 |
msgid "Help AdRotate Grow"
|
226 |
msgstr "AdRotate Blog"
|
227 |
|
228 |
+
#: adrotate-output.php:955
|
229 |
msgid "Brought to you by"
|
230 |
msgstr "サービス紹介"
|
231 |
|
232 |
+
#: adrotate-output.php:962
|
233 |
msgid ""
|
234 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
235 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: adrotate-output.php:962
|
239 |
msgid "If you find AdRotate useful please leave your honest"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: adrotate-output.php:962
|
243 |
msgid "rating"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: adrotate-output.php:962
|
247 |
#, fuzzy
|
248 |
msgid "review"
|
249 |
msgstr "全般レポートを見れる権限"
|
250 |
|
251 |
+
#: adrotate-output.php:962
|
252 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: adrotate-output.php:965
|
256 |
#, fuzzy
|
257 |
msgid ""
|
258 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
262 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
263 |
"さい。英語ですが。"
|
264 |
|
265 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
266 |
#, fuzzy
|
267 |
msgid "Visit the"
|
268 |
msgstr ""
|
270 |
"手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
|
271 |
"さい。英語ですが。"
|
272 |
|
273 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
274 |
#, fuzzy
|
275 |
msgid "website"
|
276 |
msgstr "開発者のWEBサイトは以下です。"
|
277 |
|
278 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
279 |
#, fuzzy
|
280 |
msgid "Available in AdRotate Pro"
|
281 |
msgstr "AdRotate Blog"
|
282 |
|
283 |
+
#: adrotate-output.php:995
|
284 |
#, fuzzy
|
285 |
msgid "More information..."
|
286 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
287 |
|
288 |
+
#: adrotate-output.php:996
|
289 |
#, fuzzy
|
290 |
msgid "This feature is available in AdRotate Pro"
|
291 |
msgstr "この機能は使いません。"
|
292 |
|
293 |
+
#: adrotate-output.php:996
|
294 |
#, fuzzy
|
295 |
msgid "Learn more"
|
296 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
406 |
msgid "Choose what you want to use this widget for"
|
407 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
408 |
|
409 |
+
#: adrotate-widget.php:137
|
410 |
#, fuzzy
|
411 |
msgid "ID:"
|
412 |
msgstr "広告ブロック - ブロックIDを使ってください。"
|
539 |
msgstr "削除された広告がグループに含まれています。"
|
540 |
|
541 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
542 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
543 |
msgid "Report"
|
544 |
msgstr "レポート"
|
545 |
|
559 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
560 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
561 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
562 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
563 |
#, fuzzy
|
564 |
msgid "More information"
|
565 |
msgstr "ユーザーえー助演について知りたい方はこちらから。"
|
581 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
582 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
583 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
584 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
585 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
586 |
#, fuzzy
|
587 |
msgid "ID"
|
628 |
msgstr "本日"
|
629 |
|
630 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
631 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
632 |
#, fuzzy
|
633 |
msgid "Expires soon."
|
634 |
msgstr "これは出来る限り早く修正して下さい。"
|
635 |
|
636 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
637 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
638 |
#, fuzzy
|
639 |
msgid "Has expired."
|
640 |
msgstr "個の広告が期限切れです。"
|
694 |
msgstr ""
|
695 |
|
696 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
697 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
698 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
699 |
msgid "Example:"
|
700 |
msgstr "例:"
|
701 |
|
715 |
msgid "Available banner images in"
|
716 |
msgstr "バナー画像"
|
717 |
|
718 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
719 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
720 |
msgid "Name"
|
721 |
msgstr "名前"
|
722 |
|
818 |
msgid "Update Options"
|
819 |
msgstr "設定の更新"
|
820 |
|
821 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
822 |
msgid "Statistics"
|
823 |
msgstr "統計"
|
824 |
|
826 |
msgid "How to track stats"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
830 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
831 |
#, fuzzy
|
832 |
msgid "Disabled"
|
833 |
msgstr "掲載不可広告"
|
1631 |
msgstr "編集"
|
1632 |
|
1633 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1634 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1635 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1636 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1637 |
+
msgid "Title"
|
1638 |
+
msgstr "タイトル"
|
1639 |
|
1640 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1641 |
+
msgid "AdCode"
|
1642 |
+
msgstr ""
|
1643 |
|
1644 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1645 |
msgid "Basic Examples:"
|
1646 |
msgstr "設定例:"
|
1647 |
|
1648 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1649 |
+
msgid "Useful tags"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1680 |
msgstr ""
|
1681 |
|
1682 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1683 |
+
msgid "Banner image"
|
1684 |
+
msgstr ""
|
1685 |
|
1686 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1687 |
msgid "WordPress media:"
|
1718 |
"上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
|
1719 |
"合はそちらが優先されます。"
|
1720 |
|
|
|
|
|
|
|
|
|
1721 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1722 |
msgid "Enable click and impression tracking for this advert."
|
1723 |
msgstr ""
|
1730 |
msgstr ""
|
1731 |
|
1732 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1733 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1734 |
+
msgid "Activate"
|
1735 |
+
msgstr "利用可能"
|
1736 |
|
1737 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1738 |
msgid "Yes, this ad will be used"
|
1746 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1747 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1748 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1749 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1750 |
#, fuzzy
|
1751 |
msgid "Get more features with AdRotate Pro."
|
1752 |
msgstr ""
|
1766 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1767 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1768 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1769 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1770 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1771 |
msgid "Cancel"
|
1772 |
msgstr "キャンセル"
|
1773 |
|
1793 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1794 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1795 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1796 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1797 |
msgid "Usage"
|
1798 |
msgstr "利用タグ"
|
1799 |
|
1800 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1801 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1802 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1803 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1804 |
+
msgid "Widget"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1814 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1815 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1816 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1817 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1818 |
+
msgid "In a post or page"
|
1819 |
+
msgstr ""
|
1820 |
|
1821 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1822 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1823 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1824 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1825 |
+
msgid "Directly in a theme"
|
1826 |
+
msgstr ""
|
1827 |
|
1828 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1829 |
msgid "Schedule your advert"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1833 |
+
msgid "Start date (day/month/year)"
|
1834 |
+
msgstr ""
|
|
|
1835 |
|
1836 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1837 |
+
msgid "End date (day/month/year)"
|
1838 |
+
msgstr ""
|
|
|
1839 |
|
1840 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1841 |
+
msgid "Start time (hh:mm)"
|
1842 |
+
msgstr ""
|
|
|
1843 |
|
1844 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1845 |
+
msgid "End time (hh:mm)"
|
1846 |
+
msgstr ""
|
|
|
1847 |
|
1848 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1849 |
+
msgid "Maximum Clicks"
|
1850 |
+
msgstr ""
|
1851 |
|
1852 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1853 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1855 |
msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
|
1856 |
|
1857 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1858 |
+
msgid "Maximum Impressions"
|
1859 |
+
msgstr ""
|
1860 |
|
1861 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1862 |
+
msgid "Important"
|
|
|
|
|
|
|
|
|
1863 |
msgstr ""
|
|
|
|
|
1864 |
|
1865 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1866 |
msgid ""
|
1867 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1868 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1869 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1870 |
msgstr ""
|
|
|
|
|
1871 |
|
1872 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1873 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1876 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1877 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1878 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1879 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1880 |
#, fuzzy
|
1881 |
msgid "Upgrade today"
|
1882 |
msgstr "本日"
|
1893 |
msgstr "タイトル(オプション):"
|
1894 |
|
1895 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1896 |
+
msgid "Responsive"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1909 |
msgstr ""
|
1910 |
|
1911 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1912 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1913 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1914 |
+
msgid "Weight"
|
1915 |
+
msgstr "表示頻度"
|
|
|
|
|
|
|
1916 |
|
1917 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1918 |
msgid "Barely visible"
|
1935 |
msgstr "優先表示(100~90%程度)"
|
1936 |
|
1937 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1938 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1939 |
+
msgid "Sortorder"
|
1940 |
+
msgstr ""
|
1941 |
|
1942 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1943 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1944 |
msgid "For administrative purposes set a sortorder."
|
1945 |
msgstr "管理目的で順序を設定できます。"
|
1946 |
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1967 |
+
msgid "Cities/States"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1983 |
+
msgid "Countries"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
2042 |
"列です。)"
|
2043 |
|
2044 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2045 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
2046 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2047 |
#, fuzzy
|
2048 |
msgid "Post Injection"
|
2049 |
msgstr "投稿及びページ内掲載する場合:"
|
2050 |
|
2051 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2052 |
msgid "Geolocation"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2056 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2057 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2058 |
#, fuzzy
|
2059 |
msgid "Mode"
|
2060 |
msgstr "承認待ち"
|
2063 |
msgid "Disabled Ads"
|
2064 |
msgstr "掲載不可広告"
|
2065 |
|
|
|
|
|
|
|
|
|
2066 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2067 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2068 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2075 |
msgid "Start / End"
|
2076 |
msgstr ""
|
2077 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2078 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2079 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2080 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2081 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2082 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2083 |
msgid "Impressions"
|
2086 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2087 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2088 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2089 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2090 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2091 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2092 |
msgid "Clicks"
|
2102 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2103 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2104 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2105 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2106 |
msgid "Edit"
|
2107 |
msgstr "編集"
|
2108 |
|
2154 |
msgstr "1週間(7日)"
|
2155 |
|
2156 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2157 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2158 |
#, fuzzy
|
2159 |
msgid "Configuration errors."
|
2160 |
msgstr "個の広告が設定エラーになっています。"
|
2168 |
msgid "Export to XML"
|
2169 |
msgstr "エクスポートオプション"
|
2170 |
|
|
|
|
|
|
|
|
|
|
|
2171 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2172 |
#, fuzzy
|
2173 |
msgid "Shown"
|
2228 |
msgid "Edit Group"
|
2229 |
msgstr "グループ編集"
|
2230 |
|
|
|
|
|
|
|
|
|
2231 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2232 |
#, fuzzy
|
2233 |
msgid "Default - Show one ad at a time"
|
2322 |
msgstr "新規追加"
|
2323 |
|
2324 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2325 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2326 |
msgid ""
|
2327 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2328 |
"\" and enter ID"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2332 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2333 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2334 |
#, fuzzy
|
2335 |
msgid "Save Group"
|
2336 |
msgstr "保存"
|
2388 |
"setting. Not every theme supports this feature."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2392 |
+
msgid "Geo Targeting"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2396 |
+
msgid "Enable Geo Targeting for this group."
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2400 |
+
#, fuzzy
|
2401 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2402 |
+
msgstr "どのカテゴリーですか?"
|
2403 |
+
|
2404 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2405 |
+
msgid "Mobile support"
|
2406 |
+
msgstr ""
|
2407 |
+
|
2408 |
+
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2409 |
+
msgid "Enable mobile support for this group."
|
2410 |
+
msgstr ""
|
2411 |
+
|
2412 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2413 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2414 |
+
msgstr ""
|
2415 |
+
|
2416 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2417 |
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2418 |
msgstr ""
|
2419 |
"この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
|
2420 |
"す。"
|
2421 |
|
2422 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2423 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2427 |
+
msgid "In categories?"
|
2428 |
+
msgstr ""
|
2429 |
|
2430 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2431 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2432 |
#, fuzzy
|
2433 |
msgid "Before content"
|
2434 |
msgstr "投稿内容の前"
|
2435 |
|
2436 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2437 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2438 |
#, fuzzy
|
2439 |
msgid "After content"
|
2440 |
msgstr "コンテンツの前と後ろ"
|
2441 |
|
2442 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2443 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2444 |
#, fuzzy
|
2445 |
msgid "Before and after content"
|
2446 |
msgstr "コンテンツの前と後ろ"
|
2447 |
|
2448 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2449 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2450 |
#, fuzzy
|
2451 |
msgid "After..."
|
2452 |
msgstr "広告の後に入れるタグ"
|
2453 |
|
2454 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2455 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2456 |
msgid "the first paragraph"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2460 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2461 |
msgid "the second paragraph"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2465 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2466 |
msgid "the third paragraph"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2470 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2471 |
msgid "the fourth paragraph"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2475 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2476 |
msgid "every 2nd paragraph"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2480 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2481 |
msgid "every 3rd paragraph"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2485 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2486 |
msgid "every 4th paragraph"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2490 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2491 |
msgid "every 5th paragraph"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2495 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2496 |
msgid "every 6th paragraph"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2500 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2501 |
msgid "every 7th paragraph"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2505 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2506 |
msgid "every 8th paragraph"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2510 |
msgid "Which categories?"
|
2511 |
msgstr "どのカテゴリーですか?"
|
2512 |
|
2513 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2514 |
#, fuzzy
|
2515 |
msgid "Click the categories posts you want the adverts to show in."
|
2516 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
2517 |
|
2518 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2519 |
+
msgid "In pages?"
|
2520 |
+
msgstr ""
|
2521 |
|
2522 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2523 |
msgid "Which pages?"
|
2524 |
msgstr "どのページですか?"
|
2525 |
|
2526 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2527 |
#, fuzzy
|
2528 |
msgid "Click the pages you want the adverts to show in."
|
2529 |
msgstr "このウィジェットに使いたい物を選んで下さい。"
|
2530 |
|
2531 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2532 |
#, fuzzy
|
2533 |
msgid "Wrapper code"
|
2534 |
msgstr "Wrapper code (Optional) - 各広告を囲みます。"
|
2535 |
|
2536 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2537 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2541 |
+
msgid "Before advert"
|
2542 |
+
msgstr ""
|
2543 |
|
2544 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2545 |
msgid "Options:"
|
2546 |
msgstr "オプション:"
|
2547 |
|
2548 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2549 |
+
msgid "After advert"
|
2550 |
+
msgstr ""
|
2551 |
|
2552 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2553 |
+
msgid "Select adverts"
|
2554 |
+
msgstr ""
|
2555 |
|
2556 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2557 |
msgid "Visible until"
|
2558 |
msgstr "掲載期限"
|
2559 |
|
2560 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2561 |
msgid "No ads created!"
|
2562 |
msgstr "広告が作成されていません!"
|
2563 |
|
2581 |
msgid "Code"
|
2582 |
msgstr "コード"
|
2583 |
|
2584 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2585 |
msgid "No groups created!"
|
2586 |
msgstr "グループがまだ作られていません。"
|
2587 |
|
2590 |
msgid "Statistics for group"
|
2591 |
msgstr "統計 "
|
2592 |
|
2593 |
+
#~ msgid "Title:"
|
2594 |
+
#~ msgstr "広告タイトル:"
|
2595 |
+
|
2596 |
+
#~ msgid "AdCode:"
|
2597 |
+
#~ msgstr "広告コード[AdCode](タグ含む):"
|
2598 |
+
|
2599 |
+
#~ msgid "Banner image:"
|
2600 |
+
#~ msgstr "バナー画像"
|
2601 |
+
|
2602 |
+
#~ msgid "Activate:"
|
2603 |
+
#~ msgstr "掲載状況:"
|
2604 |
+
|
2605 |
+
#~ msgid "In a post or page:"
|
2606 |
+
#~ msgstr "投稿及びページ内掲載する場合:"
|
2607 |
+
|
2608 |
+
#~ msgid "Directly in a theme:"
|
2609 |
+
#~ msgstr "テーマ内に直接設定する場合:"
|
2610 |
+
|
2611 |
+
#, fuzzy
|
2612 |
+
#~ msgid "Start date (day/month/year):"
|
2613 |
+
#~ msgstr "1年間"
|
2614 |
+
|
2615 |
+
#, fuzzy
|
2616 |
+
#~ msgid "End date (day/month/year):"
|
2617 |
+
#~ msgstr "1年間"
|
2618 |
+
|
2619 |
+
#, fuzzy
|
2620 |
+
#~ msgid "Start time (hh:mm):"
|
2621 |
+
#~ msgstr "選ばれた期間が見つかりません。"
|
2622 |
+
|
2623 |
+
#, fuzzy
|
2624 |
+
#~ msgid "End time (hh:mm):"
|
2625 |
+
#~ msgstr "選ばれた期間が見つかりません。"
|
2626 |
+
|
2627 |
+
#~ msgid "Maximum Clicks:"
|
2628 |
+
#~ msgstr "クリック数上限設定:"
|
2629 |
+
|
2630 |
+
#~ msgid "Maximum Impressions:"
|
2631 |
+
#~ msgstr "表示数上限設定:"
|
2632 |
+
|
2633 |
+
#, fuzzy
|
2634 |
+
#~ msgid ""
|
2635 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2636 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2637 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2638 |
+
#~ msgstr ""
|
2639 |
+
#~ "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である"
|
2640 |
+
#~ "場合、メール通知は無効になります。"
|
2641 |
+
|
2642 |
+
#~ msgid ""
|
2643 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2644 |
+
#~ "only. Every schedule can have it's own limit!"
|
2645 |
+
#~ msgstr ""
|
2646 |
+
#~ "最大のクリック数と表示回数が設定されたスケジュールのみで測定されています。"
|
2647 |
+
#~ "それぞれのスケジュールで上限を設定できます!"
|
2648 |
+
|
2649 |
+
#~ msgid "Weight:"
|
2650 |
+
#~ msgstr "表示頻度:"
|
2651 |
+
|
2652 |
+
#, fuzzy
|
2653 |
+
#~ msgid "AdRotate Pro only"
|
2654 |
+
#~ msgstr "AdRotate Blog"
|
2655 |
+
|
2656 |
+
#~ msgid "Sortorder:"
|
2657 |
+
#~ msgstr "並び(ソート)順:"
|
2658 |
+
|
2659 |
+
#~ msgid "Name:"
|
2660 |
+
#~ msgstr "グループ名:"
|
2661 |
+
|
2662 |
+
#~ msgid "Include ads in categories?"
|
2663 |
+
#~ msgstr "カテゴリーに広告を含めますか?"
|
2664 |
+
|
2665 |
+
#~ msgid "Include ads in pages?"
|
2666 |
+
#~ msgstr "固有ページに広告を含めますか?"
|
2667 |
+
|
2668 |
+
#~ msgid "Before ad"
|
2669 |
+
#~ msgstr "広告の前に入れるタグ"
|
2670 |
+
|
2671 |
+
#~ msgid "After ad"
|
2672 |
+
#~ msgstr "広告の後に入れるタグ"
|
2673 |
+
|
2674 |
+
#~ msgid "Select Ads"
|
2675 |
+
#~ msgstr "広告選択"
|
2676 |
+
|
2677 |
#, fuzzy
|
2678 |
#~ msgid "Enable stats"
|
2679 |
#~ msgstr "統計リセット"
|
3171 |
#~ msgid "Enable GeoTargeting for this group."
|
3172 |
#~ msgstr "グループの管理"
|
3173 |
|
|
|
|
|
|
|
|
|
3174 |
#, fuzzy
|
3175 |
#~ msgid "Fallback group"
|
3176 |
#~ msgstr "代替"
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -20,19 +20,19 @@ msgstr ""
|
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
-
#: adrotate-functions.php:
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
-
#: adrotate-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,157 +96,157 @@ 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. Everything related to AdRotate is in "
|
171 |
"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:151
|
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 |
#, fuzzy
|
218 |
msgid "Help AdRotate Grow"
|
219 |
msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid "Brought to you by"
|
223 |
msgstr "Dostarczone przez "
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
msgid ""
|
227 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
228 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "If you find AdRotate useful please leave your honest"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "rating"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
#, fuzzy
|
241 |
msgid "review"
|
242 |
msgstr ""
|
243 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
244 |
|
245 |
-
#: adrotate-output.php:
|
246 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: adrotate-output.php:
|
250 |
msgid ""
|
251 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
252 |
"out more about what I can do for you!"
|
@@ -255,27 +255,27 @@ msgstr ""
|
|
255 |
"informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
|
256 |
"więcej dla Wordpress'a."
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
msgid "Visit the"
|
260 |
msgstr "Odwiedź"
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
msgid "website"
|
264 |
msgstr "strone internetową"
|
265 |
|
266 |
-
#: adrotate-output.php:
|
267 |
msgid "Available in AdRotate Pro"
|
268 |
msgstr "Dostępne w wersji AdRotate Pro"
|
269 |
|
270 |
-
#: adrotate-output.php:
|
271 |
msgid "More information..."
|
272 |
msgstr "Więcej informacji"
|
273 |
|
274 |
-
#: adrotate-output.php:
|
275 |
msgid "This feature is available in AdRotate Pro"
|
276 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
277 |
|
278 |
-
#: adrotate-output.php:
|
279 |
msgid "Learn more"
|
280 |
msgstr "Dowiedź się więcej"
|
281 |
|
@@ -387,7 +387,7 @@ msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
|
|
387 |
msgid "Choose what you want to use this widget for"
|
388 |
msgstr "Wybierz do czego chcesz użyć tego widżetu"
|
389 |
|
390 |
-
#: adrotate-widget.php:137
|
391 |
msgid "ID:"
|
392 |
msgstr "ID:"
|
393 |
|
@@ -515,7 +515,7 @@ msgid "Group including it's Ads deleted"
|
|
515 |
msgstr "Grupa wraz z reklamami usunięta"
|
516 |
|
517 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
518 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
519 |
msgid "Report"
|
520 |
msgstr "Raport"
|
521 |
|
@@ -534,7 +534,7 @@ msgstr ""
|
|
534 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
535 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
536 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
537 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
538 |
#, fuzzy
|
539 |
msgid "More information"
|
540 |
msgstr "Więcej informacji"
|
@@ -556,6 +556,7 @@ msgstr "Idź"
|
|
556 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
557 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
558 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
559 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
560 |
msgid "ID"
|
561 |
msgstr "ID"
|
@@ -599,12 +600,12 @@ msgid "Upgrade today!"
|
|
599 |
msgstr "Dziś"
|
600 |
|
601 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
602 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
603 |
msgid "Expires soon."
|
604 |
msgstr "Wygasa wkrótce."
|
605 |
|
606 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
607 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
608 |
msgid "Has expired."
|
609 |
msgstr "Wygasła."
|
610 |
|
@@ -667,8 +668,8 @@ msgstr ""
|
|
667 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
668 |
|
669 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
670 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
671 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
672 |
msgid "Example:"
|
673 |
msgstr "Przykład:"
|
674 |
|
@@ -690,7 +691,8 @@ msgstr "Obraz banera:"
|
|
690 |
msgid "Available banner images in"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
694 |
msgid "Name"
|
695 |
msgstr "Nazwa"
|
696 |
|
@@ -789,7 +791,7 @@ msgstr "Uprawnienia do usuwania grup"
|
|
789 |
msgid "Update Options"
|
790 |
msgstr "Zapisz opcje"
|
791 |
|
792 |
-
#: adrotate.php:691
|
793 |
msgid "Statistics"
|
794 |
msgstr "Statystyki"
|
795 |
|
@@ -797,8 +799,8 @@ msgstr "Statystyki"
|
|
797 |
msgid "How to track stats"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
801 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
802 |
msgid "Disabled"
|
803 |
msgstr "Wyłącz"
|
804 |
|
@@ -1601,19 +1603,22 @@ msgid "Edit Advert"
|
|
1601 |
msgstr "Edytuj reklamę"
|
1602 |
|
1603 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1604 |
-
|
1605 |
-
|
|
|
|
|
|
|
1606 |
|
1607 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1608 |
-
msgid "AdCode
|
1609 |
-
msgstr "
|
1610 |
|
1611 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1612 |
msgid "Basic Examples:"
|
1613 |
msgstr "Proste przykłady:"
|
1614 |
|
1615 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1616 |
-
msgid "Useful tags
|
1617 |
msgstr ""
|
1618 |
|
1619 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1647,8 +1652,8 @@ msgid ""
|
|
1647 |
msgstr ""
|
1648 |
|
1649 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1650 |
-
msgid "Banner image
|
1651 |
-
msgstr "
|
1652 |
|
1653 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1654 |
msgid "WordPress media:"
|
@@ -1682,10 +1687,6 @@ msgstr ""
|
|
1682 |
"Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
|
1683 |
"zawiera treści, te pole ma pierwszeństwo."
|
1684 |
|
1685 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1686 |
-
msgid "Statistics:"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1690 |
msgid "Enable click and impression tracking for this advert."
|
1691 |
msgstr ""
|
@@ -1698,8 +1699,9 @@ msgid ""
|
|
1698 |
msgstr ""
|
1699 |
|
1700 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1701 |
-
|
1702 |
-
|
|
|
1703 |
|
1704 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1705 |
msgid "Yes, this ad will be used"
|
@@ -1712,7 +1714,7 @@ msgstr "Niepokazuj tej reklamy."
|
|
1712 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1713 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1714 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1715 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1716 |
#, fuzzy
|
1717 |
msgid "Get more features with AdRotate Pro."
|
1718 |
msgstr "Więcej ustawień z AdRotate Pro"
|
@@ -1729,8 +1731,8 @@ msgstr "Zapisz reklamę"
|
|
1729 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1730 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1731 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1732 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1733 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1734 |
msgid "Cancel"
|
1735 |
msgstr "Anuluj"
|
1736 |
|
@@ -1756,15 +1758,15 @@ msgstr ""
|
|
1756 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1757 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1758 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1759 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1760 |
msgid "Usage"
|
1761 |
msgstr "Użycie"
|
1762 |
|
1763 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1764 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1765 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1766 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1767 |
-
msgid "Widget
|
1768 |
msgstr ""
|
1769 |
|
1770 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1777,40 +1779,40 @@ msgstr ""
|
|
1777 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1778 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1779 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1780 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1781 |
-
msgid "In a post or page
|
1782 |
-
msgstr "
|
1783 |
|
1784 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1785 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1786 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1787 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1788 |
-
msgid "Directly in a theme
|
1789 |
-
msgstr "
|
1790 |
|
1791 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1792 |
msgid "Schedule your advert"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1796 |
-
msgid "Start date (day/month/year)
|
1797 |
-
msgstr "
|
1798 |
|
1799 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1800 |
-
msgid "End date (day/month/year)
|
1801 |
-
msgstr "
|
1802 |
|
1803 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1804 |
-
msgid "Start time (hh:mm)
|
1805 |
-
msgstr "
|
1806 |
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1808 |
-
msgid "End time (hh:mm)
|
1809 |
-
msgstr "
|
1810 |
|
1811 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1812 |
-
msgid "Maximum Clicks
|
1813 |
-
msgstr "
|
1814 |
|
1815 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1816 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1818,23 +1820,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1818 |
msgstr "Pozostaw puste albo wpisz 0 ."
|
1819 |
|
1820 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1821 |
-
msgid "Maximum Impressions
|
1822 |
-
msgstr "
|
1823 |
|
1824 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1825 |
-
msgid ""
|
1826 |
-
|
1827 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1828 |
-
"hours. 6AM is 6:00 hours."
|
1829 |
-
msgstr "Zegar używa 24 godzinnego systemu. "
|
1830 |
|
1831 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1832 |
msgid ""
|
1833 |
-
"
|
1834 |
-
"
|
|
|
1835 |
msgstr ""
|
1836 |
-
"Maksymalna liczba kliknięc i wyświetleń jest mierzona w obrębie ustalonego "
|
1837 |
-
"harmonogramu. Każdy harmonogram możę mięć swoje własne ustawienia i limity."
|
1838 |
|
1839 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1840 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1843,7 +1841,7 @@ msgstr ""
|
|
1843 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1844 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1845 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1846 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1847 |
#, fuzzy
|
1848 |
msgid "Upgrade today"
|
1849 |
msgstr "Dziś"
|
@@ -1858,8 +1856,8 @@ msgid "Everything below is optional."
|
|
1858 |
msgstr "Wszystkie opcje poniżej są opcjonalne."
|
1859 |
|
1860 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1861 |
-
msgid "Responsive
|
1862 |
-
msgstr "
|
1863 |
|
1864 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1865 |
msgid "Enable responsive support for this advert."
|
@@ -1876,13 +1874,10 @@ msgstr ""
|
|
1876 |
"pełnego wachlarza rozmiarów.'"
|
1877 |
|
1878 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
#, fuzzy
|
1884 |
-
msgid "AdRotate Pro only"
|
1885 |
-
msgstr "AdRotate Pro"
|
1886 |
|
1887 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1888 |
msgid "Barely visible"
|
@@ -1905,12 +1900,12 @@ msgid "Best visibility"
|
|
1905 |
msgstr "Najlepsza widoczność"
|
1906 |
|
1907 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1908 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1909 |
-
msgid "Sortorder
|
1910 |
-
msgstr "
|
1911 |
|
1912 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1913 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1914 |
msgid "For administrative purposes set a sortorder."
|
1915 |
msgstr "Dla celów administracyjnych ustaw sortowanie."
|
1916 |
|
@@ -1935,9 +1930,8 @@ msgid ""
|
|
1935 |
msgstr ""
|
1936 |
|
1937 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1938 |
-
|
1939 |
-
|
1940 |
-
msgstr "Miasta:"
|
1941 |
|
1942 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1943 |
msgid ""
|
@@ -1952,9 +1946,8 @@ msgid ""
|
|
1952 |
msgstr ""
|
1953 |
|
1954 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1955 |
-
|
1956 |
-
|
1957 |
-
msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
|
1958 |
|
1959 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1960 |
msgid "Select the countries you want the adverts to show in."
|
@@ -2006,19 +1999,18 @@ msgid "grid"
|
|
2006 |
msgstr "siatka"
|
2007 |
|
2008 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2009 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2010 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2011 |
msgid "Post Injection"
|
2012 |
msgstr "Umieszczanie we wpisach"
|
2013 |
|
2014 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2015 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2016 |
msgid "Geolocation"
|
2017 |
msgstr "Geolokalizacja"
|
2018 |
|
2019 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2020 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2021 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2022 |
msgid "Mode"
|
2023 |
msgstr "Tryb"
|
2024 |
|
@@ -2026,10 +2018,6 @@ msgstr "Tryb"
|
|
2026 |
msgid "Disabled Ads"
|
2027 |
msgstr "Wyłączone reklamy"
|
2028 |
|
2029 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2030 |
-
msgid "Activate"
|
2031 |
-
msgstr "Aktywuj"
|
2032 |
-
|
2033 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2034 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2035 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2042,15 +2030,9 @@ msgstr "Resetuj statystyki"
|
|
2042 |
msgid "Start / End"
|
2043 |
msgstr "Start / Koniec"
|
2044 |
|
2045 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2046 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2047 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2048 |
-
msgid "Title"
|
2049 |
-
msgstr "tytuł"
|
2050 |
-
|
2051 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2052 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2053 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2054 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2055 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2056 |
msgid "Impressions"
|
@@ -2059,7 +2041,7 @@ msgstr "Wyświetlenia"
|
|
2059 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2060 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2061 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2062 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2063 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2064 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2065 |
msgid "Clicks"
|
@@ -2075,7 +2057,7 @@ msgstr "CTR"
|
|
2075 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2076 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2077 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2078 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2079 |
msgid "Edit"
|
2080 |
msgstr "Edytuj"
|
2081 |
|
@@ -2126,7 +2108,7 @@ msgid "For 7 days"
|
|
2126 |
msgstr "Na 7 dni"
|
2127 |
|
2128 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2129 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2130 |
msgid "Configuration errors."
|
2131 |
msgstr "Błedy konfiguracji."
|
2132 |
|
@@ -2139,11 +2121,6 @@ msgstr "Aktywne reklamy"
|
|
2139 |
msgid "Export to XML"
|
2140 |
msgstr "Eksportuj ustawienia"
|
2141 |
|
2142 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2143 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2144 |
-
msgid "Weight"
|
2145 |
-
msgstr "Waga"
|
2146 |
-
|
2147 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2148 |
msgid "Shown"
|
2149 |
msgstr "Wyświetlane"
|
@@ -2200,10 +2177,6 @@ msgstr "Nowa grupa"
|
|
2200 |
msgid "Edit Group"
|
2201 |
msgstr "Edytuj grupę"
|
2202 |
|
2203 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2204 |
-
msgid "Name:"
|
2205 |
-
msgstr "Nazwa:"
|
2206 |
-
|
2207 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2208 |
msgid "Default - Show one ad at a time"
|
2209 |
msgstr "Domyśłne - pokazuj jedną na raz"
|
@@ -2294,15 +2267,15 @@ msgstr ""
|
|
2294 |
"Domyślnie 6."
|
2295 |
|
2296 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2297 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2298 |
msgid ""
|
2299 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2300 |
"\" and enter ID"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2304 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2305 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2306 |
msgid "Save Group"
|
2307 |
msgstr "Zapisz grupę"
|
2308 |
|
@@ -2357,143 +2330,169 @@ msgid ""
|
|
2357 |
"setting. Not every theme supports this feature."
|
2358 |
msgstr ""
|
2359 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2360 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2361 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2362 |
msgstr ""
|
2363 |
-
"Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
|
2364 |
|
2365 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2366 |
-
msgid "
|
|
|
|
|
|
|
|
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2370 |
-
msgid "
|
2371 |
-
msgstr "
|
|
|
2372 |
|
2373 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2374 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2375 |
msgid "Before content"
|
2376 |
msgstr "Przed treścią"
|
2377 |
|
2378 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2379 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2380 |
msgid "After content"
|
2381 |
msgstr "Po treści"
|
2382 |
|
2383 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2384 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2385 |
msgid "Before and after content"
|
2386 |
msgstr "Przed i po treści"
|
2387 |
|
2388 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2389 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2390 |
msgid "After..."
|
2391 |
msgstr "Po ..."
|
2392 |
|
2393 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2394 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2395 |
msgid "the first paragraph"
|
2396 |
msgstr "Pierwszy akapit"
|
2397 |
|
2398 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2399 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2400 |
msgid "the second paragraph"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2404 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2405 |
msgid "the third paragraph"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2409 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2410 |
msgid "the fourth paragraph"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2414 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2415 |
msgid "every 2nd paragraph"
|
2416 |
msgstr "Każdy drugi akapit"
|
2417 |
|
2418 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2419 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2420 |
msgid "every 3rd paragraph"
|
2421 |
msgstr "Każdy trzeci akapit"
|
2422 |
|
2423 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2424 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2425 |
msgid "every 4th paragraph"
|
2426 |
msgstr "każdy czwarty akapit"
|
2427 |
|
2428 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2429 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2430 |
msgid "every 5th paragraph"
|
2431 |
msgstr "każdu piąty akapit"
|
2432 |
|
2433 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2434 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2435 |
msgid "every 6th paragraph"
|
2436 |
msgstr "każdy szósty akapit"
|
2437 |
|
2438 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2439 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2440 |
msgid "every 7th paragraph"
|
2441 |
msgstr "każdy siódmy akapit"
|
2442 |
|
2443 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2444 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2445 |
msgid "every 8th paragraph"
|
2446 |
msgstr "każdy ósmy akapit"
|
2447 |
|
2448 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2449 |
msgid "Which categories?"
|
2450 |
msgstr "Która kategoria?"
|
2451 |
|
2452 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2453 |
msgid "Click the categories posts you want the adverts to show in."
|
2454 |
msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
|
2455 |
|
2456 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2457 |
-
msgid "
|
2458 |
-
msgstr "
|
2459 |
|
2460 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2461 |
msgid "Which pages?"
|
2462 |
msgstr "Które strony?"
|
2463 |
|
2464 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2465 |
msgid "Click the pages you want the adverts to show in."
|
2466 |
msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
|
2467 |
|
2468 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2469 |
msgid "Wrapper code"
|
2470 |
msgstr "Kod wrappera"
|
2471 |
|
2472 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2473 |
-
msgid "Wraps around each
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2477 |
-
msgid "Before
|
2478 |
-
msgstr "
|
2479 |
|
2480 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2481 |
msgid "Options:"
|
2482 |
msgstr "Opcje:"
|
2483 |
|
2484 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2485 |
-
msgid "After
|
2486 |
-
msgstr "
|
2487 |
|
2488 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2489 |
-
msgid "Select
|
2490 |
-
msgstr "
|
2491 |
|
2492 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2493 |
msgid "Visible until"
|
2494 |
msgstr "Widoczne do"
|
2495 |
|
2496 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2497 |
msgid "No ads created!"
|
2498 |
msgstr "Nie utworzono reklam!"
|
2499 |
|
@@ -2517,7 +2516,7 @@ msgstr "Nie można cofnąć tego ruchu!"
|
|
2517 |
msgid "Code"
|
2518 |
msgstr "Kod"
|
2519 |
|
2520 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2521 |
msgid "No groups created!"
|
2522 |
msgstr "Nie utworzono grupy!"
|
2523 |
|
@@ -2525,6 +2524,95 @@ msgstr "Nie utworzono grupy!"
|
|
2525 |
msgid "Statistics for group"
|
2526 |
msgstr "Statystyki dla grupy"
|
2527 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2528 |
#~ msgid "Enable stats"
|
2529 |
#~ msgstr "Włącz statystyki"
|
2530 |
|
@@ -3071,9 +3159,6 @@ msgstr "Statystyki dla grupy"
|
|
3071 |
#~ msgid "Track clicks from logged in users."
|
3072 |
#~ msgstr "Śledz kliknięcia - zalogowanych użytkowników."
|
3073 |
|
3074 |
-
#~ msgid "Geo Targeting"
|
3075 |
-
#~ msgstr "Geo Targeting"
|
3076 |
-
|
3077 |
#~ msgid "Geographic Tracking"
|
3078 |
#~ msgstr "Geographic Tracking"
|
3079 |
|
@@ -3121,11 +3206,6 @@ msgstr "Statystyki dla grupy"
|
|
3121 |
#~ msgid "Enable GeoTargeting for this group."
|
3122 |
#~ msgstr "Włącz geolokalizację dla tej grupy."
|
3123 |
|
3124 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
3125 |
-
#~ msgstr ""
|
3126 |
-
#~ "Nie zapomnij ustawić gdzie mają być wyświetlane jakie reklamy i w jakich "
|
3127 |
-
#~ "miejscach."
|
3128 |
-
|
3129 |
#~ msgid "Fallback group"
|
3130 |
#~ msgstr "Grupa awaryjna"
|
3131 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
+
#: adrotate-functions.php:801
|
24 |
msgid "No files found"
|
25 |
msgstr "Nie odnaleziono pliku"
|
26 |
|
27 |
+
#: adrotate-functions.php:804
|
28 |
msgid "Folder not found or not accessible"
|
29 |
msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
|
30 |
|
31 |
+
#: adrotate-output.php:737
|
32 |
msgid "Oh no! Something went wrong!"
|
33 |
msgstr "Uwaga ! Coś poszło nie tak !"
|
34 |
|
35 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
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:758
|
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:760
|
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:767 adrotate-output.php:769
|
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:775
|
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:781
|
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:786
|
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:792
|
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:792
|
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:798
|
105 |
msgid "An unknown error occured."
|
106 |
msgstr "Pojawił się nieznany błąd."
|
107 |
|
108 |
+
#: adrotate-output.php:823
|
109 |
msgid "active ad(s) expired."
|
110 |
msgstr "Aktywne reklamy wygasły."
|
111 |
|
112 |
+
#: adrotate-output.php:823
|
113 |
msgid "Take action now"
|
114 |
msgstr "Uruchom natymiastowo."
|
115 |
|
116 |
+
#: adrotate-output.php:825
|
117 |
msgid "active ad(s) are about to expire."
|
118 |
msgstr "Aktywne reklamy niedługo wygasną."
|
119 |
|
120 |
+
#: adrotate-output.php:825
|
121 |
msgid "Check it out"
|
122 |
msgstr "Sprawdz to"
|
123 |
|
124 |
+
#: adrotate-output.php:827
|
125 |
msgid "active ad(s) with configuration errors."
|
126 |
msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
|
127 |
|
128 |
+
#: adrotate-output.php:827
|
129 |
msgid "Solve this"
|
130 |
msgstr "Napraw to"
|
131 |
|
132 |
+
#: adrotate-output.php:829
|
133 |
msgid "ad(s) expired."
|
134 |
msgstr "Reklama wygasła."
|
135 |
|
136 |
+
#: adrotate-output.php:829
|
137 |
msgid "ad(s) are about to expire."
|
138 |
msgstr "Reklama które wygasną."
|
139 |
|
140 |
+
#: adrotate-output.php:829
|
141 |
msgid "ad(s) with configuration errors."
|
142 |
msgstr "Reklamy z błędami konfuguracyjnymi."
|
143 |
|
144 |
+
#: adrotate-output.php:829
|
145 |
msgid "Fix this as soon as possible"
|
146 |
msgstr "Napraw to tak szybko jak to możliwe"
|
147 |
|
148 |
+
#: adrotate-output.php:841
|
149 |
#, fuzzy
|
150 |
msgid "Learn More"
|
151 |
msgstr "Dowiedź się więcej"
|
152 |
|
153 |
+
#: adrotate-output.php:842
|
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:842
|
160 |
msgid "Get more features to even better run your advertising campaigns."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: adrotate-output.php:842
|
164 |
#, fuzzy
|
165 |
msgid "Thank you for your consideration!"
|
166 |
msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
|
167 |
|
168 |
+
#: adrotate-output.php:886
|
169 |
msgid ""
|
170 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
171 |
"this menu. Check out the"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: adrotate-output.php:886
|
175 |
msgid "manuals"
|
176 |
msgstr "instrukcje"
|
177 |
|
178 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
179 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
180 |
msgid "and"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:886
|
184 |
msgid "forums"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:922
|
188 |
#, fuzzy
|
189 |
msgid "Useful Links"
|
190 |
msgstr "Użyteczne odnośniki."
|
191 |
|
192 |
+
#: adrotate-output.php:923
|
193 |
msgid "Useful links to learn more about AdRotate"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:925
|
197 |
#, fuzzy
|
198 |
msgid "AdRotate Page"
|
199 |
msgstr "AdRotate Pro"
|
200 |
|
201 |
+
#: adrotate-output.php:926
|
202 |
#, fuzzy
|
203 |
msgid "Getting Started With AdRotate"
|
204 |
msgstr "Więcej ustawień z AdRotate Pro"
|
205 |
|
206 |
+
#: adrotate-output.php:927
|
207 |
#, fuzzy
|
208 |
msgid "AdRotate manuals"
|
209 |
msgstr "Informacja AdRotate "
|
210 |
|
211 |
+
#: adrotate-output.php:928
|
212 |
#, fuzzy
|
213 |
msgid "AdRotate Support Forum"
|
214 |
msgstr "Sklep AdRotate"
|
215 |
|
216 |
+
#: adrotate-output.php:954
|
217 |
#, fuzzy
|
218 |
msgid "Help AdRotate Grow"
|
219 |
msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
|
220 |
|
221 |
+
#: adrotate-output.php:955
|
222 |
msgid "Brought to you by"
|
223 |
msgstr "Dostarczone przez "
|
224 |
|
225 |
+
#: adrotate-output.php:962
|
226 |
msgid ""
|
227 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
228 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: adrotate-output.php:962
|
232 |
msgid "If you find AdRotate useful please leave your honest"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: adrotate-output.php:962
|
236 |
msgid "rating"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:962
|
240 |
#, fuzzy
|
241 |
msgid "review"
|
242 |
msgstr ""
|
243 |
"Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
|
244 |
|
245 |
+
#: adrotate-output.php:962
|
246 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: adrotate-output.php:965
|
250 |
msgid ""
|
251 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
252 |
"out more about what I can do for you!"
|
255 |
"informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
|
256 |
"więcej dla Wordpress'a."
|
257 |
|
258 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
259 |
msgid "Visit the"
|
260 |
msgstr "Odwiedź"
|
261 |
|
262 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
263 |
msgid "website"
|
264 |
msgstr "strone internetową"
|
265 |
|
266 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
267 |
msgid "Available in AdRotate Pro"
|
268 |
msgstr "Dostępne w wersji AdRotate Pro"
|
269 |
|
270 |
+
#: adrotate-output.php:995
|
271 |
msgid "More information..."
|
272 |
msgstr "Więcej informacji"
|
273 |
|
274 |
+
#: adrotate-output.php:996
|
275 |
msgid "This feature is available in AdRotate Pro"
|
276 |
msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
|
277 |
|
278 |
+
#: adrotate-output.php:996
|
279 |
msgid "Learn more"
|
280 |
msgstr "Dowiedź się więcej"
|
281 |
|
387 |
msgid "Choose what you want to use this widget for"
|
388 |
msgstr "Wybierz do czego chcesz użyć tego widżetu"
|
389 |
|
390 |
+
#: adrotate-widget.php:137
|
391 |
msgid "ID:"
|
392 |
msgstr "ID:"
|
393 |
|
515 |
msgstr "Grupa wraz z reklamami usunięta"
|
516 |
|
517 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
518 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
519 |
msgid "Report"
|
520 |
msgstr "Raport"
|
521 |
|
534 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
535 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
536 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
537 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
538 |
#, fuzzy
|
539 |
msgid "More information"
|
540 |
msgstr "Więcej informacji"
|
556 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
557 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
558 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
559 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
560 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
561 |
msgid "ID"
|
562 |
msgstr "ID"
|
600 |
msgstr "Dziś"
|
601 |
|
602 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
603 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
604 |
msgid "Expires soon."
|
605 |
msgstr "Wygasa wkrótce."
|
606 |
|
607 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
608 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
609 |
msgid "Has expired."
|
610 |
msgstr "Wygasła."
|
611 |
|
668 |
"\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
|
669 |
|
670 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
671 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
672 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
673 |
msgid "Example:"
|
674 |
msgstr "Przykład:"
|
675 |
|
691 |
msgid "Available banner images in"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
695 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
696 |
msgid "Name"
|
697 |
msgstr "Nazwa"
|
698 |
|
791 |
msgid "Update Options"
|
792 |
msgstr "Zapisz opcje"
|
793 |
|
794 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
795 |
msgid "Statistics"
|
796 |
msgstr "Statystyki"
|
797 |
|
799 |
msgid "How to track stats"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
803 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
804 |
msgid "Disabled"
|
805 |
msgstr "Wyłącz"
|
806 |
|
1603 |
msgstr "Edytuj reklamę"
|
1604 |
|
1605 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1606 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1607 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1608 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1609 |
+
msgid "Title"
|
1610 |
+
msgstr "tytuł"
|
1611 |
|
1612 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1613 |
+
msgid "AdCode"
|
1614 |
+
msgstr ""
|
1615 |
|
1616 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1617 |
msgid "Basic Examples:"
|
1618 |
msgstr "Proste przykłady:"
|
1619 |
|
1620 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1621 |
+
msgid "Useful tags"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1652 |
msgstr ""
|
1653 |
|
1654 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1655 |
+
msgid "Banner image"
|
1656 |
+
msgstr ""
|
1657 |
|
1658 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1659 |
msgid "WordPress media:"
|
1687 |
"Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
|
1688 |
"zawiera treści, te pole ma pierwszeństwo."
|
1689 |
|
|
|
|
|
|
|
|
|
1690 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1691 |
msgid "Enable click and impression tracking for this advert."
|
1692 |
msgstr ""
|
1699 |
msgstr ""
|
1700 |
|
1701 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1702 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1703 |
+
msgid "Activate"
|
1704 |
+
msgstr "Aktywuj"
|
1705 |
|
1706 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1707 |
msgid "Yes, this ad will be used"
|
1714 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1715 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1716 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1717 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1718 |
#, fuzzy
|
1719 |
msgid "Get more features with AdRotate Pro."
|
1720 |
msgstr "Więcej ustawień z AdRotate Pro"
|
1731 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1732 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1733 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1734 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1735 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1736 |
msgid "Cancel"
|
1737 |
msgstr "Anuluj"
|
1738 |
|
1758 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1759 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1760 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1761 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1762 |
msgid "Usage"
|
1763 |
msgstr "Użycie"
|
1764 |
|
1765 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1766 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1767 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1768 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1769 |
+
msgid "Widget"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1779 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1780 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1781 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1782 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1783 |
+
msgid "In a post or page"
|
1784 |
+
msgstr ""
|
1785 |
|
1786 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1787 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1788 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1789 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1790 |
+
msgid "Directly in a theme"
|
1791 |
+
msgstr ""
|
1792 |
|
1793 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1794 |
msgid "Schedule your advert"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1798 |
+
msgid "Start date (day/month/year)"
|
1799 |
+
msgstr ""
|
1800 |
|
1801 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1802 |
+
msgid "End date (day/month/year)"
|
1803 |
+
msgstr ""
|
1804 |
|
1805 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1806 |
+
msgid "Start time (hh:mm)"
|
1807 |
+
msgstr ""
|
1808 |
|
1809 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1810 |
+
msgid "End time (hh:mm)"
|
1811 |
+
msgstr ""
|
1812 |
|
1813 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1814 |
+
msgid "Maximum Clicks"
|
1815 |
+
msgstr ""
|
1816 |
|
1817 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1818 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1820 |
msgstr "Pozostaw puste albo wpisz 0 ."
|
1821 |
|
1822 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1823 |
+
msgid "Maximum Impressions"
|
1824 |
+
msgstr ""
|
1825 |
|
1826 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1827 |
+
msgid "Important"
|
1828 |
+
msgstr ""
|
|
|
|
|
|
|
1829 |
|
1830 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1831 |
msgid ""
|
1832 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1833 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1834 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1835 |
msgstr ""
|
|
|
|
|
1836 |
|
1837 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1838 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1841 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1842 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1843 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1844 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1845 |
#, fuzzy
|
1846 |
msgid "Upgrade today"
|
1847 |
msgstr "Dziś"
|
1856 |
msgstr "Wszystkie opcje poniżej są opcjonalne."
|
1857 |
|
1858 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1859 |
+
msgid "Responsive"
|
1860 |
+
msgstr ""
|
1861 |
|
1862 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1863 |
msgid "Enable responsive support for this advert."
|
1874 |
"pełnego wachlarza rozmiarów.'"
|
1875 |
|
1876 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1877 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1878 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1879 |
+
msgid "Weight"
|
1880 |
+
msgstr "Waga"
|
|
|
|
|
|
|
1881 |
|
1882 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1883 |
msgid "Barely visible"
|
1900 |
msgstr "Najlepsza widoczność"
|
1901 |
|
1902 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1903 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1904 |
+
msgid "Sortorder"
|
1905 |
+
msgstr ""
|
1906 |
|
1907 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1908 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1909 |
msgid "For administrative purposes set a sortorder."
|
1910 |
msgstr "Dla celów administracyjnych ustaw sortowanie."
|
1911 |
|
1930 |
msgstr ""
|
1931 |
|
1932 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1933 |
+
msgid "Cities/States"
|
1934 |
+
msgstr ""
|
|
|
1935 |
|
1936 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1937 |
msgid ""
|
1946 |
msgstr ""
|
1947 |
|
1948 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1949 |
+
msgid "Countries"
|
1950 |
+
msgstr ""
|
|
|
1951 |
|
1952 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1953 |
msgid "Select the countries you want the adverts to show in."
|
1999 |
msgstr "siatka"
|
2000 |
|
2001 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2002 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
2003 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2004 |
msgid "Post Injection"
|
2005 |
msgstr "Umieszczanie we wpisach"
|
2006 |
|
2007 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2008 |
msgid "Geolocation"
|
2009 |
msgstr "Geolokalizacja"
|
2010 |
|
2011 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2012 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2013 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2014 |
msgid "Mode"
|
2015 |
msgstr "Tryb"
|
2016 |
|
2018 |
msgid "Disabled Ads"
|
2019 |
msgstr "Wyłączone reklamy"
|
2020 |
|
|
|
|
|
|
|
|
|
2021 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2022 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2023 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2030 |
msgid "Start / End"
|
2031 |
msgstr "Start / Koniec"
|
2032 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2033 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2034 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2035 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2036 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2037 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2038 |
msgid "Impressions"
|
2041 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2042 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2043 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2044 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2045 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2046 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2047 |
msgid "Clicks"
|
2057 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2058 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2059 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2060 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2061 |
msgid "Edit"
|
2062 |
msgstr "Edytuj"
|
2063 |
|
2108 |
msgstr "Na 7 dni"
|
2109 |
|
2110 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2111 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2112 |
msgid "Configuration errors."
|
2113 |
msgstr "Błedy konfiguracji."
|
2114 |
|
2121 |
msgid "Export to XML"
|
2122 |
msgstr "Eksportuj ustawienia"
|
2123 |
|
|
|
|
|
|
|
|
|
|
|
2124 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2125 |
msgid "Shown"
|
2126 |
msgstr "Wyświetlane"
|
2177 |
msgid "Edit Group"
|
2178 |
msgstr "Edytuj grupę"
|
2179 |
|
|
|
|
|
|
|
|
|
2180 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2181 |
msgid "Default - Show one ad at a time"
|
2182 |
msgstr "Domyśłne - pokazuj jedną na raz"
|
2267 |
"Domyślnie 6."
|
2268 |
|
2269 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2270 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2271 |
msgid ""
|
2272 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2273 |
"\" and enter ID"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2277 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2278 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2279 |
msgid "Save Group"
|
2280 |
msgstr "Zapisz grupę"
|
2281 |
|
2330 |
"setting. Not every theme supports this feature."
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2334 |
+
msgid "Geo Targeting"
|
2335 |
+
msgstr "Geo Targeting"
|
2336 |
+
|
2337 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2338 |
+
msgid "Enable Geo Targeting for this group."
|
2339 |
+
msgstr ""
|
2340 |
+
|
2341 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2342 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2343 |
+
msgstr ""
|
2344 |
+
"Nie zapomnij ustawić gdzie mają być wyświetlane jakie reklamy i w jakich "
|
2345 |
+
"miejscach."
|
2346 |
+
|
2347 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2348 |
+
msgid "Mobile support"
|
2349 |
msgstr ""
|
|
|
2350 |
|
2351 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2352 |
+
msgid "Enable mobile support for this group."
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2356 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2360 |
+
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2361 |
+
msgstr ""
|
2362 |
+
"Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
|
2363 |
|
2364 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2365 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2369 |
+
msgid "In categories?"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2373 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2374 |
msgid "Before content"
|
2375 |
msgstr "Przed treścią"
|
2376 |
|
2377 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2378 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2379 |
msgid "After content"
|
2380 |
msgstr "Po treści"
|
2381 |
|
2382 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2383 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2384 |
msgid "Before and after content"
|
2385 |
msgstr "Przed i po treści"
|
2386 |
|
2387 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2388 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2389 |
msgid "After..."
|
2390 |
msgstr "Po ..."
|
2391 |
|
2392 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2393 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2394 |
msgid "the first paragraph"
|
2395 |
msgstr "Pierwszy akapit"
|
2396 |
|
2397 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2398 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2399 |
msgid "the second paragraph"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2403 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2404 |
msgid "the third paragraph"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2408 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2409 |
msgid "the fourth paragraph"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2413 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2414 |
msgid "every 2nd paragraph"
|
2415 |
msgstr "Każdy drugi akapit"
|
2416 |
|
2417 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2418 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2419 |
msgid "every 3rd paragraph"
|
2420 |
msgstr "Każdy trzeci akapit"
|
2421 |
|
2422 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2423 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2424 |
msgid "every 4th paragraph"
|
2425 |
msgstr "każdy czwarty akapit"
|
2426 |
|
2427 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2428 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2429 |
msgid "every 5th paragraph"
|
2430 |
msgstr "każdu piąty akapit"
|
2431 |
|
2432 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2433 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2434 |
msgid "every 6th paragraph"
|
2435 |
msgstr "każdy szósty akapit"
|
2436 |
|
2437 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2438 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2439 |
msgid "every 7th paragraph"
|
2440 |
msgstr "każdy siódmy akapit"
|
2441 |
|
2442 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2443 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2444 |
msgid "every 8th paragraph"
|
2445 |
msgstr "każdy ósmy akapit"
|
2446 |
|
2447 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2448 |
msgid "Which categories?"
|
2449 |
msgstr "Która kategoria?"
|
2450 |
|
2451 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2452 |
msgid "Click the categories posts you want the adverts to show in."
|
2453 |
msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
|
2454 |
|
2455 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2456 |
+
msgid "In pages?"
|
2457 |
+
msgstr ""
|
2458 |
|
2459 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2460 |
msgid "Which pages?"
|
2461 |
msgstr "Które strony?"
|
2462 |
|
2463 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2464 |
msgid "Click the pages you want the adverts to show in."
|
2465 |
msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
|
2466 |
|
2467 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2468 |
msgid "Wrapper code"
|
2469 |
msgstr "Kod wrappera"
|
2470 |
|
2471 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2472 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2476 |
+
msgid "Before advert"
|
2477 |
+
msgstr ""
|
2478 |
|
2479 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2480 |
msgid "Options:"
|
2481 |
msgstr "Opcje:"
|
2482 |
|
2483 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2484 |
+
msgid "After advert"
|
2485 |
+
msgstr ""
|
2486 |
|
2487 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2488 |
+
msgid "Select adverts"
|
2489 |
+
msgstr ""
|
2490 |
|
2491 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2492 |
msgid "Visible until"
|
2493 |
msgstr "Widoczne do"
|
2494 |
|
2495 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2496 |
msgid "No ads created!"
|
2497 |
msgstr "Nie utworzono reklam!"
|
2498 |
|
2516 |
msgid "Code"
|
2517 |
msgstr "Kod"
|
2518 |
|
2519 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2520 |
msgid "No groups created!"
|
2521 |
msgstr "Nie utworzono grupy!"
|
2522 |
|
2524 |
msgid "Statistics for group"
|
2525 |
msgstr "Statystyki dla grupy"
|
2526 |
|
2527 |
+
#~ msgid "Title:"
|
2528 |
+
#~ msgstr "Tytuł:"
|
2529 |
+
|
2530 |
+
#~ msgid "AdCode:"
|
2531 |
+
#~ msgstr "Kod reklamy:"
|
2532 |
+
|
2533 |
+
#~ msgid "Banner image:"
|
2534 |
+
#~ msgstr "Obraz banera:"
|
2535 |
+
|
2536 |
+
#~ msgid "Activate:"
|
2537 |
+
#~ msgstr "Aktywuj:"
|
2538 |
+
|
2539 |
+
#~ msgid "In a post or page:"
|
2540 |
+
#~ msgstr "We wpis lub stronę"
|
2541 |
+
|
2542 |
+
#~ msgid "Directly in a theme:"
|
2543 |
+
#~ msgstr "Bezpośrednio w szablon:"
|
2544 |
+
|
2545 |
+
#~ msgid "Start date (day/month/year):"
|
2546 |
+
#~ msgstr "Data początkowa (dzień/miesiąc/rok):"
|
2547 |
+
|
2548 |
+
#~ msgid "End date (day/month/year):"
|
2549 |
+
#~ msgstr "Data końcowa (dzień/miesiąc/rok):"
|
2550 |
+
|
2551 |
+
#~ msgid "Start time (hh:mm):"
|
2552 |
+
#~ msgstr "Początek czasu (hh:mm):"
|
2553 |
+
|
2554 |
+
#~ msgid "End time (hh:mm):"
|
2555 |
+
#~ msgstr "Koniec czasu (hh:mm):"
|
2556 |
+
|
2557 |
+
#~ msgid "Maximum Clicks:"
|
2558 |
+
#~ msgstr "Maksymalna ilość kliknięć:"
|
2559 |
+
|
2560 |
+
#~ msgid "Maximum Impressions:"
|
2561 |
+
#~ msgstr "Maksymnalna ilość wyświetleń:"
|
2562 |
+
|
2563 |
+
#~ msgid ""
|
2564 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2565 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2566 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2567 |
+
#~ msgstr "Zegar używa 24 godzinnego systemu. "
|
2568 |
+
|
2569 |
+
#~ msgid ""
|
2570 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2571 |
+
#~ "only. Every schedule can have it's own limit!"
|
2572 |
+
#~ msgstr ""
|
2573 |
+
#~ "Maksymalna liczba kliknięc i wyświetleń jest mierzona w obrębie "
|
2574 |
+
#~ "ustalonego harmonogramu. Każdy harmonogram możę mięć swoje własne "
|
2575 |
+
#~ "ustawienia i limity."
|
2576 |
+
|
2577 |
+
#~ msgid "Responsive:"
|
2578 |
+
#~ msgstr "Responsywny wygląd:"
|
2579 |
+
|
2580 |
+
#~ msgid "Weight:"
|
2581 |
+
#~ msgstr "Waga:"
|
2582 |
+
|
2583 |
+
#, fuzzy
|
2584 |
+
#~ msgid "AdRotate Pro only"
|
2585 |
+
#~ msgstr "AdRotate Pro"
|
2586 |
+
|
2587 |
+
#~ msgid "Sortorder:"
|
2588 |
+
#~ msgstr "Sortowanie:"
|
2589 |
+
|
2590 |
+
#, fuzzy
|
2591 |
+
#~ msgid "Cities/States:"
|
2592 |
+
#~ msgstr "Miasta:"
|
2593 |
+
|
2594 |
+
#, fuzzy
|
2595 |
+
#~ msgid "Countries:"
|
2596 |
+
#~ msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
|
2597 |
+
|
2598 |
+
#~ msgid "Name:"
|
2599 |
+
#~ msgstr "Nazwa:"
|
2600 |
+
|
2601 |
+
#~ msgid "Include ads in categories?"
|
2602 |
+
#~ msgstr "Wyświetlać reklamy w kategoriach?"
|
2603 |
+
|
2604 |
+
#~ msgid "Include ads in pages?"
|
2605 |
+
#~ msgstr "Wyświetlać reklamy na stronach?"
|
2606 |
+
|
2607 |
+
#~ msgid "Before ad"
|
2608 |
+
#~ msgstr "Przed reklamą"
|
2609 |
+
|
2610 |
+
#~ msgid "After ad"
|
2611 |
+
#~ msgstr "Po reklamie"
|
2612 |
+
|
2613 |
+
#~ msgid "Select Ads"
|
2614 |
+
#~ msgstr "Wybierz reklamy"
|
2615 |
+
|
2616 |
#~ msgid "Enable stats"
|
2617 |
#~ msgstr "Włącz statystyki"
|
2618 |
|
3159 |
#~ msgid "Track clicks from logged in users."
|
3160 |
#~ msgstr "Śledz kliknięcia - zalogowanych użytkowników."
|
3161 |
|
|
|
|
|
|
|
3162 |
#~ msgid "Geographic Tracking"
|
3163 |
#~ msgstr "Geographic Tracking"
|
3164 |
|
3206 |
#~ msgid "Enable GeoTargeting for this group."
|
3207 |
#~ msgstr "Włącz geolokalizację dla tej grupy."
|
3208 |
|
|
|
|
|
|
|
|
|
|
|
3209 |
#~ msgid "Fallback group"
|
3210 |
#~ msgstr "Grupa awaryjna"
|
3211 |
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
@@ -16,19 +16,19 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.7.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: adrotate-functions.php:
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
-
#: adrotate-functions.php:
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
-
#: adrotate-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,154 +89,154 @@ 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. Everything related to AdRotate is in "
|
162 |
"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:151
|
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 |
#, fuzzy
|
209 |
msgid "Help AdRotate Grow"
|
210 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
211 |
|
212 |
-
#: adrotate-output.php:
|
213 |
msgid "Brought to you by"
|
214 |
msgstr "Za tebe od"
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
msgid ""
|
218 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
219 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
msgid "If you find AdRotate useful please leave your honest"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid "rating"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
#, fuzzy
|
232 |
msgid "review"
|
233 |
msgstr "Dajte ocenu i komentar"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
#, fuzzy
|
241 |
msgid ""
|
242 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
@@ -247,28 +247,28 @@ msgstr ""
|
|
247 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
248 |
"detalja !"
|
249 |
|
250 |
-
#: adrotate-output.php:
|
251 |
msgid "Visit the"
|
252 |
msgstr "Posetite"
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
msgid "website"
|
256 |
msgstr "websajt"
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
msgid "Available in AdRotate Pro"
|
260 |
msgstr "Dostupno u AdRotate Pro"
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
#, fuzzy
|
264 |
msgid "More information..."
|
265 |
msgstr "Saznajte više"
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid "This feature is available in AdRotate Pro"
|
269 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid "Learn more"
|
273 |
msgstr "Saznajte više"
|
274 |
|
@@ -382,7 +382,7 @@ msgstr "Gupni oglasi - Koristite grupni ID"
|
|
382 |
msgid "Choose what you want to use this widget for"
|
383 |
msgstr "Izaberite za šta želite da koristite ovaj widget "
|
384 |
|
385 |
-
#: adrotate-widget.php:137
|
386 |
msgid "ID:"
|
387 |
msgstr "ID:"
|
388 |
|
@@ -511,7 +511,7 @@ msgid "Group including it's Ads deleted"
|
|
511 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
512 |
|
513 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
514 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
515 |
msgid "Report"
|
516 |
msgstr "Izveštaj"
|
517 |
|
@@ -531,7 +531,7 @@ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
|
531 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
532 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
533 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
534 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
535 |
#, fuzzy
|
536 |
msgid "More information"
|
537 |
msgstr "Saznajte više"
|
@@ -553,6 +553,7 @@ msgstr "Kreni"
|
|
553 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
554 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
555 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
556 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
557 |
msgid "ID"
|
558 |
msgstr "ID"
|
@@ -598,12 +599,12 @@ msgid "Upgrade today!"
|
|
598 |
msgstr "Danas"
|
599 |
|
600 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
601 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
602 |
msgid "Expires soon."
|
603 |
msgstr "Ističe uskoro."
|
604 |
|
605 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
606 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
607 |
msgid "Has expired."
|
608 |
msgstr "Isteklo je."
|
609 |
|
@@ -660,8 +661,8 @@ msgid ""
|
|
660 |
msgstr ""
|
661 |
|
662 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
663 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
664 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
665 |
msgid "Example:"
|
666 |
msgstr "Primer"
|
667 |
|
@@ -680,7 +681,8 @@ msgstr "Slika banera:"
|
|
680 |
msgid "Available banner images in"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
684 |
msgid "Name"
|
685 |
msgstr "Ime"
|
686 |
|
@@ -779,7 +781,7 @@ msgstr "Uloga za brisanje grupe ."
|
|
779 |
msgid "Update Options"
|
780 |
msgstr "Update opcije"
|
781 |
|
782 |
-
#: adrotate.php:691
|
783 |
msgid "Statistics"
|
784 |
msgstr "Statistike"
|
785 |
|
@@ -787,8 +789,8 @@ msgstr "Statistike"
|
|
787 |
msgid "How to track stats"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
791 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
792 |
#, fuzzy
|
793 |
msgid "Disabled"
|
794 |
msgstr "Onemogući odgovore"
|
@@ -1604,19 +1606,22 @@ msgid "Edit Advert"
|
|
1604 |
msgstr "Edituj"
|
1605 |
|
1606 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1607 |
-
|
1608 |
-
|
|
|
|
|
|
|
1609 |
|
1610 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1611 |
-
msgid "AdCode
|
1612 |
-
msgstr "
|
1613 |
|
1614 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1615 |
msgid "Basic Examples:"
|
1616 |
msgstr "Osnovni Primeri :"
|
1617 |
|
1618 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1619 |
-
msgid "Useful tags
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1650,8 +1655,8 @@ msgid ""
|
|
1650 |
msgstr ""
|
1651 |
|
1652 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1653 |
-
msgid "Banner image
|
1654 |
-
msgstr "
|
1655 |
|
1656 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1657 |
msgid "WordPress media:"
|
@@ -1686,10 +1691,6 @@ msgstr ""
|
|
1686 |
"Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
|
1687 |
"polje ima prioritet ."
|
1688 |
|
1689 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1690 |
-
msgid "Statistics:"
|
1691 |
-
msgstr ""
|
1692 |
-
|
1693 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1694 |
msgid "Enable click and impression tracking for this advert."
|
1695 |
msgstr ""
|
@@ -1702,8 +1703,9 @@ msgid ""
|
|
1702 |
msgstr ""
|
1703 |
|
1704 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1705 |
-
|
1706 |
-
|
|
|
1707 |
|
1708 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1709 |
msgid "Yes, this ad will be used"
|
@@ -1716,7 +1718,7 @@ msgstr "Ne , ne pokazuju nigde ovaj oglas"
|
|
1716 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1717 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1718 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1719 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1720 |
#, fuzzy
|
1721 |
msgid "Get more features with AdRotate Pro."
|
1722 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
@@ -1733,8 +1735,8 @@ msgstr "Sačuvaj oglas"
|
|
1733 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1734 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1735 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1736 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1737 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1738 |
msgid "Cancel"
|
1739 |
msgstr "Ukini"
|
1740 |
|
@@ -1758,15 +1760,15 @@ msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
|
|
1758 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1759 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1760 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1761 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1762 |
msgid "Usage"
|
1763 |
msgstr "upotreba"
|
1764 |
|
1765 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1766 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1767 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1768 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1769 |
-
msgid "Widget
|
1770 |
msgstr ""
|
1771 |
|
1772 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1779,40 +1781,40 @@ msgstr ""
|
|
1779 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1780 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1781 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1782 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1783 |
-
msgid "In a post or page
|
1784 |
-
msgstr "
|
1785 |
|
1786 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1787 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1788 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1789 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1790 |
-
msgid "Directly in a theme
|
1791 |
-
msgstr "
|
1792 |
|
1793 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1794 |
msgid "Schedule your advert"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1798 |
-
msgid "Start date (day/month/year)
|
1799 |
-
msgstr "
|
1800 |
|
1801 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1802 |
-
msgid "End date (day/month/year)
|
1803 |
-
msgstr "
|
1804 |
|
1805 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1806 |
-
msgid "Start time (hh:mm)
|
1807 |
-
msgstr "
|
1808 |
|
1809 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1810 |
-
msgid "End time (hh:mm)
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1814 |
-
msgid "Maximum Clicks
|
1815 |
-
msgstr "
|
1816 |
|
1817 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1818 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1820,26 +1822,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1820 |
msgstr "Ostavite prazno ili 0 da preskoči ovo."
|
1821 |
|
1822 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1823 |
-
msgid "Maximum Impressions
|
1824 |
-
msgstr "
|
1825 |
|
1826 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1827 |
-
msgid ""
|
1828 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1829 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1830 |
-
"hours. 6AM is 6:00 hours."
|
1831 |
msgstr ""
|
1832 |
-
"Sat koristi 24 -časovni sat . Kada se koristi za AM / PM sistem imajte ovo "
|
1833 |
-
"na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
|
1834 |
-
"2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
|
1835 |
|
1836 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1837 |
msgid ""
|
1838 |
-
"
|
1839 |
-
"
|
|
|
1840 |
msgstr ""
|
1841 |
-
"Maksimalne klikovi i prikazi praćeni tokom postavljenom rasporedu samo . "
|
1842 |
-
"Svaki raspored može da ima svoju granicu !"
|
1843 |
|
1844 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1845 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1848,7 +1843,7 @@ msgstr ""
|
|
1848 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1849 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1850 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1851 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1852 |
#, fuzzy
|
1853 |
msgid "Upgrade today"
|
1854 |
msgstr "Danas"
|
@@ -1864,7 +1859,7 @@ msgid "Everything below is optional."
|
|
1864 |
msgstr "Naslov (opcionalno):"
|
1865 |
|
1866 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1867 |
-
msgid "Responsive
|
1868 |
msgstr ""
|
1869 |
|
1870 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
@@ -1880,13 +1875,10 @@ msgid ""
|
|
1880 |
msgstr ""
|
1881 |
|
1882 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
#, fuzzy
|
1888 |
-
msgid "AdRotate Pro only"
|
1889 |
-
msgstr "AdRotate Pro"
|
1890 |
|
1891 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1892 |
#, fuzzy
|
@@ -1918,12 +1910,12 @@ msgid "Best visibility"
|
|
1918 |
msgstr "Vidljivo do"
|
1919 |
|
1920 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1921 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1922 |
-
msgid "Sortorder
|
1923 |
-
msgstr "
|
1924 |
|
1925 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1926 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1927 |
msgid "For administrative purposes set a sortorder."
|
1928 |
msgstr "Za administrativne svrhe postavili sortorder ."
|
1929 |
|
@@ -1947,9 +1939,8 @@ msgid ""
|
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1950 |
-
|
1951 |
-
|
1952 |
-
msgstr "Gradovi:"
|
1953 |
|
1954 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1955 |
msgid ""
|
@@ -1964,9 +1955,8 @@ msgid ""
|
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1967 |
-
|
1968 |
-
|
1969 |
-
msgstr "Zemlje:"
|
1970 |
|
1971 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1972 |
#, fuzzy
|
@@ -2027,21 +2017,20 @@ msgstr ""
|
|
2027 |
"Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
|
2028 |
|
2029 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2030 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2031 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2032 |
#, fuzzy
|
2033 |
msgid "Post Injection"
|
2034 |
msgstr "U post ili stranicu:"
|
2035 |
|
2036 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2037 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2038 |
#, fuzzy
|
2039 |
msgid "Geolocation"
|
2040 |
msgstr "GeoLocation"
|
2041 |
|
2042 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2043 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2044 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2045 |
msgid "Mode"
|
2046 |
msgstr "Mod"
|
2047 |
|
@@ -2049,10 +2038,6 @@ msgstr "Mod"
|
|
2049 |
msgid "Disabled Ads"
|
2050 |
msgstr "Onemogući odgovore"
|
2051 |
|
2052 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2053 |
-
msgid "Activate"
|
2054 |
-
msgstr "Aktiviraj"
|
2055 |
-
|
2056 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2057 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2058 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2069,15 +2054,9 @@ msgstr ""
|
|
2069 |
"na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
|
2070 |
"2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
|
2071 |
|
2072 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2073 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2074 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2075 |
-
msgid "Title"
|
2076 |
-
msgstr "Naslov"
|
2077 |
-
|
2078 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2079 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2080 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2081 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2082 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2083 |
msgid "Impressions"
|
@@ -2086,7 +2065,7 @@ msgstr "Utisci"
|
|
2086 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2087 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2088 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2089 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2090 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2091 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2092 |
msgid "Clicks"
|
@@ -2102,7 +2081,7 @@ msgstr "CTR"
|
|
2102 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2103 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2104 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2105 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2106 |
msgid "Edit"
|
2107 |
msgstr "Edituj"
|
2108 |
|
@@ -2153,7 +2132,7 @@ msgid "For 7 days"
|
|
2153 |
msgstr "Za 7 dana"
|
2154 |
|
2155 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2156 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2157 |
msgid "Configuration errors."
|
2158 |
msgstr "Konfiguracione greške."
|
2159 |
|
@@ -2166,11 +2145,6 @@ msgstr "Aktivni oglasi"
|
|
2166 |
msgid "Export to XML"
|
2167 |
msgstr "Izlazne opcije za"
|
2168 |
|
2169 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2170 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2171 |
-
msgid "Weight"
|
2172 |
-
msgstr "Težina"
|
2173 |
-
|
2174 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2175 |
#, fuzzy
|
2176 |
msgid "Shown"
|
@@ -2230,10 +2204,6 @@ msgstr "Dodati novi"
|
|
2230 |
msgid "Edit Group"
|
2231 |
msgstr "Edituj grupu"
|
2232 |
|
2233 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2234 |
-
msgid "Name:"
|
2235 |
-
msgstr "Ime:"
|
2236 |
-
|
2237 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2238 |
msgid "Default - Show one ad at a time"
|
2239 |
msgstr "Default - Prikazati po jedan oglas"
|
@@ -2328,15 +2298,15 @@ msgstr ""
|
|
2328 |
"Default: 6."
|
2329 |
|
2330 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2331 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2332 |
msgid ""
|
2333 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2334 |
"\" and enter ID"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2338 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2339 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2340 |
#, fuzzy
|
2341 |
msgid "Save Group"
|
2342 |
msgstr "Sačuvati"
|
@@ -2392,147 +2362,173 @@ msgid ""
|
|
2392 |
"setting. Not every theme supports this feature."
|
2393 |
msgstr ""
|
2394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2395 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2396 |
-
|
2397 |
-
|
|
|
|
|
|
|
|
|
|
|
2398 |
|
2399 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2400 |
-
msgid "
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2404 |
-
msgid "
|
2405 |
-
msgstr "
|
|
|
|
|
|
|
|
|
2406 |
|
2407 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2409 |
#, fuzzy
|
2410 |
msgid "Before content"
|
2411 |
msgstr "Pre objavljenog sadržaja"
|
2412 |
|
2413 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2414 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2415 |
#, fuzzy
|
2416 |
msgid "After content"
|
2417 |
msgstr "Pre i posle sadržaju"
|
2418 |
|
2419 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2420 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2421 |
#, fuzzy
|
2422 |
msgid "Before and after content"
|
2423 |
msgstr "Pre i posle sadržaju"
|
2424 |
|
2425 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2426 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2427 |
#, fuzzy
|
2428 |
msgid "After..."
|
2429 |
msgstr "Posle oglasa"
|
2430 |
|
2431 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2432 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2433 |
msgid "the first paragraph"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2437 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2438 |
msgid "the second paragraph"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2442 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2443 |
msgid "the third paragraph"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2447 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2448 |
msgid "the fourth paragraph"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2452 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2453 |
msgid "every 2nd paragraph"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2457 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2458 |
msgid "every 3rd paragraph"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2462 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2463 |
msgid "every 4th paragraph"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2467 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2468 |
msgid "every 5th paragraph"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2472 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2473 |
msgid "every 6th paragraph"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2477 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2478 |
msgid "every 7th paragraph"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2482 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2483 |
msgid "every 8th paragraph"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2487 |
msgid "Which categories?"
|
2488 |
msgstr "Koje kategorije?"
|
2489 |
|
2490 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2491 |
msgid "Click the categories posts you want the adverts to show in."
|
2492 |
msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
|
2493 |
|
2494 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2495 |
-
msgid "
|
2496 |
-
msgstr "
|
2497 |
|
2498 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2499 |
msgid "Which pages?"
|
2500 |
msgstr "Koje stranice ?"
|
2501 |
|
2502 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2503 |
msgid "Click the pages you want the adverts to show in."
|
2504 |
msgstr "Izaberite stranice koje želite da reklama pokaže"
|
2505 |
|
2506 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2507 |
#, fuzzy
|
2508 |
msgid "Wrapper code"
|
2509 |
msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
|
2510 |
|
2511 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2512 |
-
msgid "Wraps around each
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2516 |
-
msgid "Before
|
2517 |
-
msgstr "
|
2518 |
|
2519 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2520 |
msgid "Options:"
|
2521 |
msgstr "Opcije :"
|
2522 |
|
2523 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2524 |
-
msgid "After
|
2525 |
-
msgstr "
|
2526 |
|
2527 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2528 |
-
msgid "Select
|
2529 |
-
msgstr "
|
2530 |
|
2531 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2532 |
msgid "Visible until"
|
2533 |
msgstr "Vidljivo do"
|
2534 |
|
2535 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2536 |
msgid "No ads created!"
|
2537 |
msgstr "Nema oglasa stvorio!"
|
2538 |
|
@@ -2556,7 +2552,7 @@ msgstr "Ovo delo se ne može povratiti!"
|
|
2556 |
msgid "Code"
|
2557 |
msgstr "Kod"
|
2558 |
|
2559 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2560 |
msgid "No groups created!"
|
2561 |
msgstr "Grupa nije napravljena!"
|
2562 |
|
@@ -2565,6 +2561,94 @@ msgstr "Grupa nije napravljena!"
|
|
2565 |
msgid "Statistics for group"
|
2566 |
msgstr "Sttistike za"
|
2567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2568 |
#, fuzzy
|
2569 |
#~ msgid "Enable stats"
|
2570 |
#~ msgstr "Statistika"
|
@@ -2994,10 +3078,6 @@ msgstr "Sttistike za"
|
|
2994 |
#~ msgid "Track clicks from logged in users."
|
2995 |
#~ msgstr "Pratite klikove ulogovani korisnici ."
|
2996 |
|
2997 |
-
#, fuzzy
|
2998 |
-
#~ msgid "Geo Targeting"
|
2999 |
-
#~ msgstr "GeoTargeting"
|
3000 |
-
|
3001 |
#, fuzzy
|
3002 |
#~ msgid "Geographic Tracking"
|
3003 |
#~ msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
|
@@ -3049,10 +3129,6 @@ msgstr "Sttistike za"
|
|
3049 |
#~ msgid "Enable GeoTargeting for this group."
|
3050 |
#~ msgstr "Omogući oglašivače"
|
3051 |
|
3052 |
-
#, fuzzy
|
3053 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
3054 |
-
#~ msgstr "Ne , ne pokazuju nigde ovaj oglas"
|
3055 |
-
|
3056 |
#, fuzzy
|
3057 |
#~ msgid "Fallback group"
|
3058 |
#~ msgstr "Rezervna"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
16 |
"X-Generator: Poedit 1.7.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: adrotate-functions.php:801
|
20 |
msgid "No files found"
|
21 |
msgstr "Nijedan fajl nije pronadjen"
|
22 |
|
23 |
+
#: adrotate-functions.php:804
|
24 |
msgid "Folder not found or not accessible"
|
25 |
msgstr "Folder nije pronadjen ili nije prihvatljiv"
|
26 |
|
27 |
+
#: adrotate-output.php:737
|
28 |
msgid "Oh no! Something went wrong!"
|
29 |
msgstr "O ne! Nešto nije kako treba!"
|
30 |
|
31 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
47 |
msgid "Contact support if the issue persists:"
|
48 |
msgstr "Kontaktirajte podršku ako se problem nastavi:"
|
49 |
|
50 |
+
#: adrotate-output.php:758
|
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:760
|
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:767 adrotate-output.php:769
|
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:775
|
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:781
|
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:786
|
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:792
|
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:792
|
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:798
|
97 |
msgid "An unknown error occured."
|
98 |
msgstr "Nepoznati error se ukazao."
|
99 |
|
100 |
+
#: adrotate-output.php:823
|
101 |
msgid "active ad(s) expired."
|
102 |
msgstr "aktivni ad-ovi su istekli."
|
103 |
|
104 |
+
#: adrotate-output.php:823
|
105 |
msgid "Take action now"
|
106 |
msgstr "Reagujte odmah"
|
107 |
|
108 |
+
#: adrotate-output.php:825
|
109 |
msgid "active ad(s) are about to expire."
|
110 |
msgstr "aktivni ad-ovi će uskoro da isteknu."
|
111 |
|
112 |
+
#: adrotate-output.php:825
|
113 |
msgid "Check it out"
|
114 |
msgstr "Pogledajte ovde"
|
115 |
|
116 |
+
#: adrotate-output.php:827
|
117 |
msgid "active ad(s) with configuration errors."
|
118 |
msgstr "aktivni ad-ovi sa konfiguracionim greškama."
|
119 |
|
120 |
+
#: adrotate-output.php:827
|
121 |
msgid "Solve this"
|
122 |
msgstr "Reši ovo"
|
123 |
|
124 |
+
#: adrotate-output.php:829
|
125 |
msgid "ad(s) expired."
|
126 |
msgstr "ad-ovi su istekli."
|
127 |
|
128 |
+
#: adrotate-output.php:829
|
129 |
msgid "ad(s) are about to expire."
|
130 |
msgstr "ad-ovi će uskoro da isteknu."
|
131 |
|
132 |
+
#: adrotate-output.php:829
|
133 |
msgid "ad(s) with configuration errors."
|
134 |
msgstr "ad-ovi sa konfiguracionim greškama."
|
135 |
|
136 |
+
#: adrotate-output.php:829
|
137 |
msgid "Fix this as soon as possible"
|
138 |
msgstr "Popravi ovo što pre je moguće"
|
139 |
|
140 |
+
#: adrotate-output.php:841
|
141 |
#, fuzzy
|
142 |
msgid "Learn More"
|
143 |
msgstr "Saznajte više"
|
144 |
|
145 |
+
#: adrotate-output.php:842
|
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:842
|
152 |
msgid "Get more features to even better run your advertising campaigns."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: adrotate-output.php:842
|
156 |
msgid "Thank you for your consideration!"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:886
|
160 |
msgid ""
|
161 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
162 |
"this menu. Check out the"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: adrotate-output.php:886
|
166 |
msgid "manuals"
|
167 |
msgstr "priručnici"
|
168 |
|
169 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
170 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
171 |
msgid "and"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: adrotate-output.php:886
|
175 |
msgid "forums"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: adrotate-output.php:922
|
179 |
#, fuzzy
|
180 |
msgid "Useful Links"
|
181 |
msgstr "Korisni linkovi"
|
182 |
|
183 |
+
#: adrotate-output.php:923
|
184 |
msgid "Useful links to learn more about AdRotate"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: adrotate-output.php:925
|
188 |
#, fuzzy
|
189 |
msgid "AdRotate Page"
|
190 |
msgstr "AdRotate Pro"
|
191 |
|
192 |
+
#: adrotate-output.php:926
|
193 |
#, fuzzy
|
194 |
msgid "Getting Started With AdRotate"
|
195 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
196 |
|
197 |
+
#: adrotate-output.php:927
|
198 |
#, fuzzy
|
199 |
msgid "AdRotate manuals"
|
200 |
msgstr "AdRotate informacije"
|
201 |
|
202 |
+
#: adrotate-output.php:928
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate Support Forum"
|
205 |
msgstr "AdRotate prodavnica"
|
206 |
|
207 |
+
#: adrotate-output.php:954
|
208 |
#, fuzzy
|
209 |
msgid "Help AdRotate Grow"
|
210 |
msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
|
211 |
|
212 |
+
#: adrotate-output.php:955
|
213 |
msgid "Brought to you by"
|
214 |
msgstr "Za tebe od"
|
215 |
|
216 |
+
#: adrotate-output.php:962
|
217 |
msgid ""
|
218 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
219 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: adrotate-output.php:962
|
223 |
msgid "If you find AdRotate useful please leave your honest"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: adrotate-output.php:962
|
227 |
msgid "rating"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: adrotate-output.php:962
|
231 |
#, fuzzy
|
232 |
msgid "review"
|
233 |
msgstr "Dajte ocenu i komentar"
|
234 |
|
235 |
+
#: adrotate-output.php:962
|
236 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: adrotate-output.php:965
|
240 |
#, fuzzy
|
241 |
msgid ""
|
242 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
247 |
"je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
|
248 |
"detalja !"
|
249 |
|
250 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
251 |
msgid "Visit the"
|
252 |
msgstr "Posetite"
|
253 |
|
254 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
255 |
msgid "website"
|
256 |
msgstr "websajt"
|
257 |
|
258 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
259 |
msgid "Available in AdRotate Pro"
|
260 |
msgstr "Dostupno u AdRotate Pro"
|
261 |
|
262 |
+
#: adrotate-output.php:995
|
263 |
#, fuzzy
|
264 |
msgid "More information..."
|
265 |
msgstr "Saznajte više"
|
266 |
|
267 |
+
#: adrotate-output.php:996
|
268 |
msgid "This feature is available in AdRotate Pro"
|
269 |
msgstr "Ova karakteristika je dostupna na AdRotate Pro"
|
270 |
|
271 |
+
#: adrotate-output.php:996
|
272 |
msgid "Learn more"
|
273 |
msgstr "Saznajte više"
|
274 |
|
382 |
msgid "Choose what you want to use this widget for"
|
383 |
msgstr "Izaberite za šta želite da koristite ovaj widget "
|
384 |
|
385 |
+
#: adrotate-widget.php:137
|
386 |
msgid "ID:"
|
387 |
msgstr "ID:"
|
388 |
|
511 |
msgstr "Grupa koja podrazumeva obrisane oglase"
|
512 |
|
513 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
514 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
515 |
msgid "Report"
|
516 |
msgstr "Izveštaj"
|
517 |
|
531 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
532 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
533 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
534 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
535 |
#, fuzzy
|
536 |
msgid "More information"
|
537 |
msgstr "Saznajte više"
|
553 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
554 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
555 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
556 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
557 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
558 |
msgid "ID"
|
559 |
msgstr "ID"
|
599 |
msgstr "Danas"
|
600 |
|
601 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
602 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
603 |
msgid "Expires soon."
|
604 |
msgstr "Ističe uskoro."
|
605 |
|
606 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
607 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
608 |
msgid "Has expired."
|
609 |
msgstr "Isteklo je."
|
610 |
|
661 |
msgstr ""
|
662 |
|
663 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
664 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
665 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
666 |
msgid "Example:"
|
667 |
msgstr "Primer"
|
668 |
|
681 |
msgid "Available banner images in"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
685 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
686 |
msgid "Name"
|
687 |
msgstr "Ime"
|
688 |
|
781 |
msgid "Update Options"
|
782 |
msgstr "Update opcije"
|
783 |
|
784 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
785 |
msgid "Statistics"
|
786 |
msgstr "Statistike"
|
787 |
|
789 |
msgid "How to track stats"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
793 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
794 |
#, fuzzy
|
795 |
msgid "Disabled"
|
796 |
msgstr "Onemogući odgovore"
|
1606 |
msgstr "Edituj"
|
1607 |
|
1608 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1609 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1610 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1611 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1612 |
+
msgid "Title"
|
1613 |
+
msgstr "Naslov"
|
1614 |
|
1615 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1616 |
+
msgid "AdCode"
|
1617 |
+
msgstr ""
|
1618 |
|
1619 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1620 |
msgid "Basic Examples:"
|
1621 |
msgstr "Osnovni Primeri :"
|
1622 |
|
1623 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1624 |
+
msgid "Useful tags"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1655 |
msgstr ""
|
1656 |
|
1657 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1658 |
+
msgid "Banner image"
|
1659 |
+
msgstr ""
|
1660 |
|
1661 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1662 |
msgid "WordPress media:"
|
1691 |
"Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
|
1692 |
"polje ima prioritet ."
|
1693 |
|
|
|
|
|
|
|
|
|
1694 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1695 |
msgid "Enable click and impression tracking for this advert."
|
1696 |
msgstr ""
|
1703 |
msgstr ""
|
1704 |
|
1705 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1706 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1707 |
+
msgid "Activate"
|
1708 |
+
msgstr "Aktiviraj"
|
1709 |
|
1710 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1711 |
msgid "Yes, this ad will be used"
|
1718 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1719 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1720 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1721 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1722 |
#, fuzzy
|
1723 |
msgid "Get more features with AdRotate Pro."
|
1724 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
1735 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1736 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1737 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1738 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1739 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1740 |
msgid "Cancel"
|
1741 |
msgstr "Ukini"
|
1742 |
|
1760 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1761 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1762 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1763 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1764 |
msgid "Usage"
|
1765 |
msgstr "upotreba"
|
1766 |
|
1767 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1768 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1769 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1770 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1771 |
+
msgid "Widget"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1781 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1782 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1783 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1784 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1785 |
+
msgid "In a post or page"
|
1786 |
+
msgstr ""
|
1787 |
|
1788 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1789 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1790 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1791 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1792 |
+
msgid "Directly in a theme"
|
1793 |
+
msgstr ""
|
1794 |
|
1795 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1796 |
msgid "Schedule your advert"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1800 |
+
msgid "Start date (day/month/year)"
|
1801 |
+
msgstr ""
|
1802 |
|
1803 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1804 |
+
msgid "End date (day/month/year)"
|
1805 |
+
msgstr ""
|
1806 |
|
1807 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1808 |
+
msgid "Start time (hh:mm)"
|
1809 |
+
msgstr ""
|
1810 |
|
1811 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1812 |
+
msgid "End time (hh:mm)"
|
1813 |
+
msgstr ""
|
1814 |
|
1815 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1816 |
+
msgid "Maximum Clicks"
|
1817 |
+
msgstr ""
|
1818 |
|
1819 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1820 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1822 |
msgstr "Ostavite prazno ili 0 da preskoči ovo."
|
1823 |
|
1824 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1825 |
+
msgid "Maximum Impressions"
|
1826 |
+
msgstr ""
|
1827 |
|
1828 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1829 |
+
msgid "Important"
|
|
|
|
|
|
|
1830 |
msgstr ""
|
|
|
|
|
|
|
1831 |
|
1832 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1833 |
msgid ""
|
1834 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1835 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1836 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1837 |
msgstr ""
|
|
|
|
|
1838 |
|
1839 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1840 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1843 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1844 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1845 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1846 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1847 |
#, fuzzy
|
1848 |
msgid "Upgrade today"
|
1849 |
msgstr "Danas"
|
1859 |
msgstr "Naslov (opcionalno):"
|
1860 |
|
1861 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1862 |
+
msgid "Responsive"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1875 |
msgstr ""
|
1876 |
|
1877 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1878 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1879 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1880 |
+
msgid "Weight"
|
1881 |
+
msgstr "Težina"
|
|
|
|
|
|
|
1882 |
|
1883 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1884 |
#, fuzzy
|
1910 |
msgstr "Vidljivo do"
|
1911 |
|
1912 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1913 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1914 |
+
msgid "Sortorder"
|
1915 |
+
msgstr ""
|
1916 |
|
1917 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1918 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1919 |
msgid "For administrative purposes set a sortorder."
|
1920 |
msgstr "Za administrativne svrhe postavili sortorder ."
|
1921 |
|
1939 |
msgstr ""
|
1940 |
|
1941 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1942 |
+
msgid "Cities/States"
|
1943 |
+
msgstr ""
|
|
|
1944 |
|
1945 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1946 |
msgid ""
|
1955 |
msgstr ""
|
1956 |
|
1957 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1958 |
+
msgid "Countries"
|
1959 |
+
msgstr ""
|
|
|
1960 |
|
1961 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1962 |
#, fuzzy
|
2017 |
"Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
|
2018 |
|
2019 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
2020 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
2021 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2022 |
#, fuzzy
|
2023 |
msgid "Post Injection"
|
2024 |
msgstr "U post ili stranicu:"
|
2025 |
|
2026 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
2027 |
#, fuzzy
|
2028 |
msgid "Geolocation"
|
2029 |
msgstr "GeoLocation"
|
2030 |
|
2031 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2032 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2033 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2034 |
msgid "Mode"
|
2035 |
msgstr "Mod"
|
2036 |
|
2038 |
msgid "Disabled Ads"
|
2039 |
msgstr "Onemogući odgovore"
|
2040 |
|
|
|
|
|
|
|
|
|
2041 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2042 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2043 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2054 |
"na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
|
2055 |
"2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
|
2056 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2057 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2058 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2059 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2060 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2061 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2062 |
msgid "Impressions"
|
2065 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2066 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2067 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2068 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2069 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2070 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2071 |
msgid "Clicks"
|
2081 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2082 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2083 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2084 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2085 |
msgid "Edit"
|
2086 |
msgstr "Edituj"
|
2087 |
|
2132 |
msgstr "Za 7 dana"
|
2133 |
|
2134 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2135 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2136 |
msgid "Configuration errors."
|
2137 |
msgstr "Konfiguracione greške."
|
2138 |
|
2145 |
msgid "Export to XML"
|
2146 |
msgstr "Izlazne opcije za"
|
2147 |
|
|
|
|
|
|
|
|
|
|
|
2148 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2149 |
#, fuzzy
|
2150 |
msgid "Shown"
|
2204 |
msgid "Edit Group"
|
2205 |
msgstr "Edituj grupu"
|
2206 |
|
|
|
|
|
|
|
|
|
2207 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2208 |
msgid "Default - Show one ad at a time"
|
2209 |
msgstr "Default - Prikazati po jedan oglas"
|
2298 |
"Default: 6."
|
2299 |
|
2300 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2301 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2302 |
msgid ""
|
2303 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2304 |
"\" and enter ID"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2308 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2309 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2310 |
#, fuzzy
|
2311 |
msgid "Save Group"
|
2312 |
msgstr "Sačuvati"
|
2362 |
"setting. Not every theme supports this feature."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2366 |
+
#, fuzzy
|
2367 |
+
msgid "Geo Targeting"
|
2368 |
+
msgstr "GeoTargeting"
|
2369 |
+
|
2370 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2371 |
+
msgid "Enable Geo Targeting for this group."
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2375 |
+
#, fuzzy
|
2376 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2377 |
+
msgstr "Ne , ne pokazuju nigde ovaj oglas"
|
2378 |
+
|
2379 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2380 |
+
msgid "Mobile support"
|
2381 |
+
msgstr ""
|
2382 |
|
2383 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2384 |
+
msgid "Enable mobile support for this group."
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2388 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2392 |
+
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2393 |
+
msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
|
2394 |
|
2395 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2396 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2400 |
+
msgid "In categories?"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2404 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2405 |
#, fuzzy
|
2406 |
msgid "Before content"
|
2407 |
msgstr "Pre objavljenog sadržaja"
|
2408 |
|
2409 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2410 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2411 |
#, fuzzy
|
2412 |
msgid "After content"
|
2413 |
msgstr "Pre i posle sadržaju"
|
2414 |
|
2415 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2416 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2417 |
#, fuzzy
|
2418 |
msgid "Before and after content"
|
2419 |
msgstr "Pre i posle sadržaju"
|
2420 |
|
2421 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2422 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2423 |
#, fuzzy
|
2424 |
msgid "After..."
|
2425 |
msgstr "Posle oglasa"
|
2426 |
|
2427 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2428 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2429 |
msgid "the first paragraph"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2433 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2434 |
msgid "the second paragraph"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2438 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2439 |
msgid "the third paragraph"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2443 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2444 |
msgid "the fourth paragraph"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2448 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2449 |
msgid "every 2nd paragraph"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2453 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2454 |
msgid "every 3rd paragraph"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2458 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2459 |
msgid "every 4th paragraph"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2463 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2464 |
msgid "every 5th paragraph"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2468 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2469 |
msgid "every 6th paragraph"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2473 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2474 |
msgid "every 7th paragraph"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2478 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2479 |
msgid "every 8th paragraph"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2483 |
msgid "Which categories?"
|
2484 |
msgstr "Koje kategorije?"
|
2485 |
|
2486 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2487 |
msgid "Click the categories posts you want the adverts to show in."
|
2488 |
msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
|
2489 |
|
2490 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2491 |
+
msgid "In pages?"
|
2492 |
+
msgstr ""
|
2493 |
|
2494 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2495 |
msgid "Which pages?"
|
2496 |
msgstr "Koje stranice ?"
|
2497 |
|
2498 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2499 |
msgid "Click the pages you want the adverts to show in."
|
2500 |
msgstr "Izaberite stranice koje želite da reklama pokaže"
|
2501 |
|
2502 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2503 |
#, fuzzy
|
2504 |
msgid "Wrapper code"
|
2505 |
msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
|
2506 |
|
2507 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2508 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2512 |
+
msgid "Before advert"
|
2513 |
+
msgstr ""
|
2514 |
|
2515 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2516 |
msgid "Options:"
|
2517 |
msgstr "Opcije :"
|
2518 |
|
2519 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2520 |
+
msgid "After advert"
|
2521 |
+
msgstr ""
|
2522 |
|
2523 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2524 |
+
msgid "Select adverts"
|
2525 |
+
msgstr ""
|
2526 |
|
2527 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2528 |
msgid "Visible until"
|
2529 |
msgstr "Vidljivo do"
|
2530 |
|
2531 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2532 |
msgid "No ads created!"
|
2533 |
msgstr "Nema oglasa stvorio!"
|
2534 |
|
2552 |
msgid "Code"
|
2553 |
msgstr "Kod"
|
2554 |
|
2555 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2556 |
msgid "No groups created!"
|
2557 |
msgstr "Grupa nije napravljena!"
|
2558 |
|
2561 |
msgid "Statistics for group"
|
2562 |
msgstr "Sttistike za"
|
2563 |
|
2564 |
+
#~ msgid "Title:"
|
2565 |
+
#~ msgstr "Naslov :"
|
2566 |
+
|
2567 |
+
#~ msgid "AdCode:"
|
2568 |
+
#~ msgstr "AdCode:"
|
2569 |
+
|
2570 |
+
#~ msgid "Banner image:"
|
2571 |
+
#~ msgstr "Slika banera:"
|
2572 |
+
|
2573 |
+
#~ msgid "Activate:"
|
2574 |
+
#~ msgstr "Aktiviranje :"
|
2575 |
+
|
2576 |
+
#~ msgid "In a post or page:"
|
2577 |
+
#~ msgstr "U post ili stranicu:"
|
2578 |
+
|
2579 |
+
#~ msgid "Directly in a theme:"
|
2580 |
+
#~ msgstr "Direktno na temu :"
|
2581 |
+
|
2582 |
+
#~ msgid "Start date (day/month/year):"
|
2583 |
+
#~ msgstr "Datum početka (dan/mesec/godina):"
|
2584 |
+
|
2585 |
+
#~ msgid "End date (day/month/year):"
|
2586 |
+
#~ msgstr "Datum završetka (dan/mesec/godina)"
|
2587 |
+
|
2588 |
+
#~ msgid "Start time (hh:mm):"
|
2589 |
+
#~ msgstr "Početno vreme (hh:mm):"
|
2590 |
+
|
2591 |
+
#~ msgid "End time (hh:mm):"
|
2592 |
+
#~ msgstr "Završno vreme (hh:mm):"
|
2593 |
+
|
2594 |
+
#~ msgid "Maximum Clicks:"
|
2595 |
+
#~ msgstr "Maksimum klikovi:"
|
2596 |
+
|
2597 |
+
#~ msgid "Maximum Impressions:"
|
2598 |
+
#~ msgstr "Maksimalni utisci:"
|
2599 |
+
|
2600 |
+
#~ msgid ""
|
2601 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2602 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2603 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2604 |
+
#~ msgstr ""
|
2605 |
+
#~ "Sat koristi 24 -časovni sat . Kada se koristi za AM / PM sistem imajte "
|
2606 |
+
#~ "ovo na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 "
|
2607 |
+
#~ "sati . 2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
|
2608 |
+
|
2609 |
+
#~ msgid ""
|
2610 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2611 |
+
#~ "only. Every schedule can have it's own limit!"
|
2612 |
+
#~ msgstr ""
|
2613 |
+
#~ "Maksimalne klikovi i prikazi praćeni tokom postavljenom rasporedu samo . "
|
2614 |
+
#~ "Svaki raspored može da ima svoju granicu !"
|
2615 |
+
|
2616 |
+
#~ msgid "Weight:"
|
2617 |
+
#~ msgstr "Težina:"
|
2618 |
+
|
2619 |
+
#, fuzzy
|
2620 |
+
#~ msgid "AdRotate Pro only"
|
2621 |
+
#~ msgstr "AdRotate Pro"
|
2622 |
+
|
2623 |
+
#~ msgid "Sortorder:"
|
2624 |
+
#~ msgstr "Poredak:"
|
2625 |
+
|
2626 |
+
#, fuzzy
|
2627 |
+
#~ msgid "Cities/States:"
|
2628 |
+
#~ msgstr "Gradovi:"
|
2629 |
+
|
2630 |
+
#, fuzzy
|
2631 |
+
#~ msgid "Countries:"
|
2632 |
+
#~ msgstr "Zemlje:"
|
2633 |
+
|
2634 |
+
#~ msgid "Name:"
|
2635 |
+
#~ msgstr "Ime:"
|
2636 |
+
|
2637 |
+
#~ msgid "Include ads in categories?"
|
2638 |
+
#~ msgstr "Uključiti oglase u kategorije?"
|
2639 |
+
|
2640 |
+
#~ msgid "Include ads in pages?"
|
2641 |
+
#~ msgstr "Uključite oglase na stranicama ?"
|
2642 |
+
|
2643 |
+
#~ msgid "Before ad"
|
2644 |
+
#~ msgstr "Pre ad"
|
2645 |
+
|
2646 |
+
#~ msgid "After ad"
|
2647 |
+
#~ msgstr "Posle oglasa"
|
2648 |
+
|
2649 |
+
#~ msgid "Select Ads"
|
2650 |
+
#~ msgstr "Izaberite oglase"
|
2651 |
+
|
2652 |
#, fuzzy
|
2653 |
#~ msgid "Enable stats"
|
2654 |
#~ msgstr "Statistika"
|
3078 |
#~ msgid "Track clicks from logged in users."
|
3079 |
#~ msgstr "Pratite klikove ulogovani korisnici ."
|
3080 |
|
|
|
|
|
|
|
|
|
3081 |
#, fuzzy
|
3082 |
#~ msgid "Geographic Tracking"
|
3083 |
#~ msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
|
3129 |
#~ msgid "Enable GeoTargeting for this group."
|
3130 |
#~ msgstr "Omogući oglašivače"
|
3131 |
|
|
|
|
|
|
|
|
|
3132 |
#, fuzzy
|
3133 |
#~ msgid "Fallback group"
|
3134 |
#~ msgstr "Rezervna"
|
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-05-
|
6 |
-
"PO-Revision-Date: 2015-05-
|
7 |
"Last-Translator: Arnan de Gans <info@ajdg.net>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
@@ -17,19 +17,19 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
-
#: adrotate-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,155 +93,155 @@ 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. Everything related to AdRotate is in "
|
167 |
"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:151
|
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 |
#, fuzzy
|
214 |
msgid "Help AdRotate Grow"
|
215 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
216 |
|
217 |
-
#: adrotate-output.php:
|
218 |
msgid "Brought to you by"
|
219 |
msgstr "Presenteras av"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid ""
|
223 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
224 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid "If you find AdRotate useful please leave your honest"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: adrotate-output.php:
|
232 |
msgid "rating"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
#, fuzzy
|
237 |
msgid "review"
|
238 |
msgstr "Betygsätt och omdöme"
|
239 |
|
240 |
-
#: adrotate-output.php:
|
241 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: adrotate-output.php:
|
245 |
msgid ""
|
246 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
247 |
"out more about what I can do for you!"
|
@@ -249,28 +249,28 @@ msgstr ""
|
|
249 |
"Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
|
250 |
"mer om vad jag kan göra för dig!"
|
251 |
|
252 |
-
#: adrotate-output.php:
|
253 |
msgid "Visit the"
|
254 |
msgstr "Besök"
|
255 |
|
256 |
-
#: adrotate-output.php:
|
257 |
msgid "website"
|
258 |
msgstr "hemsida"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid "Available in AdRotate Pro"
|
262 |
msgstr "Tillgänglig i AdRotate Pro"
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
#, fuzzy
|
266 |
msgid "More information..."
|
267 |
msgstr "Mer info"
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
msgid "This feature is available in AdRotate Pro"
|
271 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
#, fuzzy
|
275 |
msgid "Learn more"
|
276 |
msgstr "Läs mer om"
|
@@ -384,7 +384,7 @@ msgstr "Grupp av annonser - Använd grupp-ID"
|
|
384 |
msgid "Choose what you want to use this widget for"
|
385 |
msgstr "Välj vad du vill använda denna widget för"
|
386 |
|
387 |
-
#: adrotate-widget.php:137
|
388 |
msgid "ID:"
|
389 |
msgstr "ID:"
|
390 |
|
@@ -513,7 +513,7 @@ msgid "Group including it's Ads deleted"
|
|
513 |
msgstr "Grupp inklusive dess annonser raderade"
|
514 |
|
515 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
516 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
517 |
msgid "Report"
|
518 |
msgstr "Rapport"
|
519 |
|
@@ -533,7 +533,7 @@ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
|
533 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
534 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
535 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
536 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
537 |
#, fuzzy
|
538 |
msgid "More information"
|
539 |
msgstr "Mer info"
|
@@ -555,6 +555,7 @@ msgstr "Gå"
|
|
555 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
556 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
557 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
|
|
558 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
559 |
msgid "ID"
|
560 |
msgstr "ID"
|
@@ -598,12 +599,12 @@ msgid "Upgrade today!"
|
|
598 |
msgstr "i dag"
|
599 |
|
600 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
601 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
602 |
msgid "Expires soon."
|
603 |
msgstr "Utgår inom kort."
|
604 |
|
605 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
606 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
607 |
msgid "Has expired."
|
608 |
msgstr "Har gått ut."
|
609 |
|
@@ -661,8 +662,8 @@ msgid ""
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
664 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
665 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
666 |
msgid "Example:"
|
667 |
msgstr "Exempel:"
|
668 |
|
@@ -681,7 +682,8 @@ msgstr "Överföring ofullständig."
|
|
681 |
msgid "Available banner images in"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adrotate.php:548 dashboard/publisher/adrotate-groups-
|
|
|
685 |
msgid "Name"
|
686 |
msgstr "Namn"
|
687 |
|
@@ -780,7 +782,7 @@ msgstr "Role att ta bort grupper."
|
|
780 |
msgid "Update Options"
|
781 |
msgstr "Update Options"
|
782 |
|
783 |
-
#: adrotate.php:691
|
784 |
msgid "Statistics"
|
785 |
msgstr "Statistik"
|
786 |
|
@@ -788,8 +790,8 @@ msgstr "Statistik"
|
|
788 |
msgid "How to track stats"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:
|
792 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
793 |
#, fuzzy
|
794 |
msgid "Disabled"
|
795 |
msgstr "Inaktivera annonser"
|
@@ -1582,19 +1584,22 @@ msgid "Edit Advert"
|
|
1582 |
msgstr "Redigera annons"
|
1583 |
|
1584 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1585 |
-
|
1586 |
-
|
|
|
|
|
|
|
1587 |
|
1588 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1589 |
-
msgid "AdCode
|
1590 |
-
msgstr "
|
1591 |
|
1592 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1593 |
msgid "Basic Examples:"
|
1594 |
msgstr "Grundläggande Exempel:"
|
1595 |
|
1596 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1597 |
-
msgid "Useful tags
|
1598 |
msgstr ""
|
1599 |
|
1600 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
@@ -1628,8 +1633,8 @@ msgid ""
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1631 |
-
msgid "Banner image
|
1632 |
-
msgstr "
|
1633 |
|
1634 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1635 |
msgid "WordPress media:"
|
@@ -1663,10 +1668,6 @@ msgstr ""
|
|
1663 |
"Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
|
1664 |
"området har företräde."
|
1665 |
|
1666 |
-
#: dashboard/publisher/adrotate-ads-edit.php:156
|
1667 |
-
msgid "Statistics:"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1671 |
msgid "Enable click and impression tracking for this advert."
|
1672 |
msgstr ""
|
@@ -1679,8 +1680,9 @@ msgid ""
|
|
1679 |
msgstr ""
|
1680 |
|
1681 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1682 |
-
|
1683 |
-
|
|
|
1684 |
|
1685 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1686 |
msgid "Yes, this ad will be used"
|
@@ -1693,7 +1695,7 @@ msgstr "Nej, inte visa denna annons någonstans"
|
|
1693 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1694 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1695 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1696 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
1697 |
#, fuzzy
|
1698 |
msgid "Get more features with AdRotate Pro."
|
1699 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
@@ -1710,8 +1712,8 @@ msgstr "Spara annons"
|
|
1710 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1711 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1712 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1713 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1714 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1715 |
msgid "Cancel"
|
1716 |
msgstr "Avbryt"
|
1717 |
|
@@ -1736,15 +1738,15 @@ msgstr ""
|
|
1736 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1737 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1738 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1739 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1740 |
msgid "Usage"
|
1741 |
msgstr "Användning"
|
1742 |
|
1743 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1744 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1745 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1746 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1747 |
-
msgid "Widget
|
1748 |
msgstr ""
|
1749 |
|
1750 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
@@ -1757,40 +1759,40 @@ msgstr ""
|
|
1757 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1758 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1759 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1760 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1761 |
-
msgid "In a post or page
|
1762 |
-
msgstr "
|
1763 |
|
1764 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1765 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1766 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1767 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1768 |
-
msgid "Directly in a theme
|
1769 |
-
msgstr "
|
1770 |
|
1771 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1772 |
msgid "Schedule your advert"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1776 |
-
msgid "Start date (day/month/year)
|
1777 |
-
msgstr "
|
1778 |
|
1779 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1780 |
-
msgid "End date (day/month/year)
|
1781 |
-
msgstr "
|
1782 |
|
1783 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1784 |
-
msgid "Start time (hh:mm)
|
1785 |
-
msgstr "
|
1786 |
|
1787 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1788 |
-
msgid "End time (hh:mm)
|
1789 |
-
msgstr "
|
1790 |
|
1791 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1792 |
-
msgid "Maximum Clicks
|
1793 |
-
msgstr "
|
1794 |
|
1795 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1796 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
@@ -1798,26 +1800,19 @@ msgid "Leave empty or 0 to skip this."
|
|
1798 |
msgstr "Lämna tomt eller 0 för att hoppa över detta."
|
1799 |
|
1800 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1801 |
-
msgid "Maximum Impressions
|
1802 |
-
msgstr "
|
1803 |
|
1804 |
-
#: dashboard/publisher/adrotate-ads-edit.php:
|
1805 |
-
msgid ""
|
1806 |
-
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1807 |
-
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1808 |
-
"hours. 6AM is 6:00 hours."
|
1809 |
msgstr ""
|
1810 |
-
"Tiden använder en 24-timmarsklocka. När du är van vid AM / PM-systemet ha "
|
1811 |
-
"detta i åtanke: Om start-eller sluttiden är efter lunch, lägga till 12 "
|
1812 |
-
"timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
|
1813 |
|
1814 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1815 |
msgid ""
|
1816 |
-
"
|
1817 |
-
"
|
|
|
1818 |
msgstr ""
|
1819 |
-
"De maximala klick och visningar mäts över den inställda schema. Varje schema "
|
1820 |
-
"kan få en egen gräns!"
|
1821 |
|
1822 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1823 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
@@ -1826,7 +1821,7 @@ msgstr ""
|
|
1826 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1827 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1828 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1829 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1830 |
#, fuzzy
|
1831 |
msgid "Upgrade today"
|
1832 |
msgstr "i dag"
|
@@ -1841,7 +1836,7 @@ msgid "Everything below is optional."
|
|
1841 |
msgstr "Allt nedan är frivillig."
|
1842 |
|
1843 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1844 |
-
msgid "Responsive
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
@@ -1857,13 +1852,10 @@ msgid ""
|
|
1857 |
msgstr ""
|
1858 |
|
1859 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
#, fuzzy
|
1865 |
-
msgid "AdRotate Pro only"
|
1866 |
-
msgstr "AdRotate Pro"
|
1867 |
|
1868 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1869 |
msgid "Barely visible"
|
@@ -1886,12 +1878,12 @@ msgid "Best visibility"
|
|
1886 |
msgstr "Bästa synlighet"
|
1887 |
|
1888 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1889 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1890 |
-
msgid "Sortorder
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1894 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
1895 |
msgid "For administrative purposes set a sortorder."
|
1896 |
msgstr "För administrativa ändamål sätt en sortorder."
|
1897 |
|
@@ -1916,9 +1908,8 @@ msgid ""
|
|
1916 |
msgstr ""
|
1917 |
|
1918 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1919 |
-
|
1920 |
-
|
1921 |
-
msgstr "Städer"
|
1922 |
|
1923 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1924 |
msgid ""
|
@@ -1936,9 +1927,8 @@ msgstr ""
|
|
1936 |
"rätt!"
|
1937 |
|
1938 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1939 |
-
|
1940 |
-
|
1941 |
-
msgstr "Länder"
|
1942 |
|
1943 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1944 |
#, fuzzy
|
@@ -1996,19 +1986,18 @@ msgstr ""
|
|
1996 |
"(Standard: 2/2)"
|
1997 |
|
1998 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
1999 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2000 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
2001 |
msgid "Post Injection"
|
2002 |
msgstr "Post injektion"
|
2003 |
|
2004 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
2005 |
-
#: dashboard/publisher/adrotate-groups-main.php:65
|
2006 |
msgid "Geolocation"
|
2007 |
msgstr "Geolocation"
|
2008 |
|
2009 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
2010 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2011 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2012 |
msgid "Mode"
|
2013 |
msgstr "läge"
|
2014 |
|
@@ -2016,10 +2005,6 @@ msgstr "läge"
|
|
2016 |
msgid "Disabled Ads"
|
2017 |
msgstr "Inaktivera annonser"
|
2018 |
|
2019 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
2020 |
-
msgid "Activate"
|
2021 |
-
msgstr "Aktivera"
|
2022 |
-
|
2023 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2024 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2025 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
@@ -2036,15 +2021,9 @@ msgstr ""
|
|
2036 |
"detta i åtanke: Om start-eller sluttiden är efter lunch, lägga till 12 "
|
2037 |
"timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
|
2038 |
|
2039 |
-
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
2040 |
-
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
2041 |
-
#: dashboard/publisher/adrotate-ads-main.php:41
|
2042 |
-
msgid "Title"
|
2043 |
-
msgstr "Titel"
|
2044 |
-
|
2045 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2046 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2047 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2048 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2049 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2050 |
msgid "Impressions"
|
@@ -2053,7 +2032,7 @@ msgstr "Intryck"
|
|
2053 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2054 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2055 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2056 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2057 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2058 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2059 |
msgid "Clicks"
|
@@ -2069,7 +2048,7 @@ msgstr "CTR"
|
|
2069 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2070 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2071 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2072 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2073 |
msgid "Edit"
|
2074 |
msgstr "Ändra"
|
2075 |
|
@@ -2120,7 +2099,7 @@ msgid "For 7 days"
|
|
2120 |
msgstr "För 7 dagar"
|
2121 |
|
2122 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2123 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2124 |
msgid "Configuration errors."
|
2125 |
msgstr "Konfigurations fel."
|
2126 |
|
@@ -2133,11 +2112,6 @@ msgstr "aktiva annonser"
|
|
2133 |
msgid "Export to XML"
|
2134 |
msgstr "Exportera"
|
2135 |
|
2136 |
-
#: dashboard/publisher/adrotate-ads-main.php:42
|
2137 |
-
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2138 |
-
msgid "Weight"
|
2139 |
-
msgstr "Vikt"
|
2140 |
-
|
2141 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2142 |
msgid "Shown"
|
2143 |
msgstr "Visa"
|
@@ -2194,10 +2168,6 @@ msgstr "Ny grupp"
|
|
2194 |
msgid "Edit Group"
|
2195 |
msgstr "Redigera grupp"
|
2196 |
|
2197 |
-
#: dashboard/publisher/adrotate-groups-edit.php:55
|
2198 |
-
msgid "Name:"
|
2199 |
-
msgstr "Namn:"
|
2200 |
-
|
2201 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2202 |
msgid "Default - Show one ad at a time"
|
2203 |
msgstr "Standard - Visa en annons i taget"
|
@@ -2286,15 +2256,15 @@ msgstr ""
|
|
2286 |
"Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
|
2287 |
|
2288 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2289 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2290 |
msgid ""
|
2291 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2292 |
"\" and enter ID"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2296 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2297 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2298 |
#, fuzzy
|
2299 |
msgid "Save Group"
|
2300 |
msgstr "Spara"
|
@@ -2350,147 +2320,171 @@ msgid ""
|
|
2350 |
"setting. Not every theme supports this feature."
|
2351 |
msgstr ""
|
2352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2353 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2354 |
-
msgid "
|
|
|
|
|
|
|
|
|
2355 |
msgstr ""
|
2356 |
-
"Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
|
2357 |
|
2358 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2359 |
-
msgid "
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2363 |
-
msgid "
|
2364 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
2365 |
|
2366 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2367 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2368 |
#, fuzzy
|
2369 |
msgid "Before content"
|
2370 |
msgstr "Innan publicerat innehåll"
|
2371 |
|
2372 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2373 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2374 |
#, fuzzy
|
2375 |
msgid "After content"
|
2376 |
msgstr "Före och efter innehållet"
|
2377 |
|
2378 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2379 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2380 |
#, fuzzy
|
2381 |
msgid "Before and after content"
|
2382 |
msgstr "Före och efter innehållet"
|
2383 |
|
2384 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2385 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2386 |
#, fuzzy
|
2387 |
msgid "After..."
|
2388 |
msgstr "Efter annons"
|
2389 |
|
2390 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2391 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2392 |
msgid "the first paragraph"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2396 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2397 |
msgid "the second paragraph"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2401 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2402 |
msgid "the third paragraph"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2406 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2407 |
msgid "the fourth paragraph"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2411 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2412 |
msgid "every 2nd paragraph"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2416 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2417 |
msgid "every 3rd paragraph"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2421 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2422 |
msgid "every 4th paragraph"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2426 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2427 |
msgid "every 5th paragraph"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2431 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2432 |
msgid "every 6th paragraph"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2436 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2437 |
msgid "every 7th paragraph"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2441 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2442 |
msgid "every 8th paragraph"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2446 |
msgid "Which categories?"
|
2447 |
msgstr "Vilka kategorier?"
|
2448 |
|
2449 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2450 |
msgid "Click the categories posts you want the adverts to show in."
|
2451 |
msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
|
2452 |
|
2453 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2454 |
-
msgid "
|
2455 |
-
msgstr "
|
2456 |
|
2457 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2458 |
msgid "Which pages?"
|
2459 |
msgstr "Vilka sidor?"
|
2460 |
|
2461 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2462 |
msgid "Click the pages you want the adverts to show in."
|
2463 |
msgstr "Klicka på de sidor du vill annonserna att visa i."
|
2464 |
|
2465 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2466 |
msgid "Wrapper code"
|
2467 |
msgstr "Wrapper kod"
|
2468 |
|
2469 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2470 |
-
msgid "Wraps around each
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2474 |
-
msgid "Before
|
2475 |
-
msgstr "
|
2476 |
|
2477 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2478 |
msgid "Options:"
|
2479 |
msgstr "Options:"
|
2480 |
|
2481 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2482 |
-
msgid "After
|
2483 |
-
msgstr "
|
2484 |
|
2485 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2486 |
-
msgid "Select
|
2487 |
-
msgstr "
|
2488 |
|
2489 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2490 |
msgid "Visible until"
|
2491 |
msgstr "Synlig tills"
|
2492 |
|
2493 |
-
#: dashboard/publisher/adrotate-groups-edit.php:
|
2494 |
msgid "No ads created!"
|
2495 |
msgstr "Inga annonser skapat!"
|
2496 |
|
@@ -2514,7 +2508,7 @@ msgstr "Denna åtgärd kan inte ångras!"
|
|
2514 |
msgid "Code"
|
2515 |
msgstr "Kod"
|
2516 |
|
2517 |
-
#: dashboard/publisher/adrotate-groups-main.php:
|
2518 |
msgid "No groups created!"
|
2519 |
msgstr "Inga grupper skapas!"
|
2520 |
|
@@ -2522,6 +2516,94 @@ msgstr "Inga grupper skapas!"
|
|
2522 |
msgid "Statistics for group"
|
2523 |
msgstr "Statistik för grupp"
|
2524 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2525 |
#, fuzzy
|
2526 |
#~ msgid "Enable stats"
|
2527 |
#~ msgstr "Statistik"
|
@@ -2964,9 +3046,6 @@ msgstr "Statistik för grupp"
|
|
2964 |
#~ msgid "Track clicks from logged in users."
|
2965 |
#~ msgstr "Spår klick från inloggade användare."
|
2966 |
|
2967 |
-
#~ msgid "Geo Targeting"
|
2968 |
-
#~ msgstr "Geo Targeting"
|
2969 |
-
|
2970 |
#~ msgid "Geographic Tracking"
|
2971 |
#~ msgstr "Geographic Spårning"
|
2972 |
|
@@ -3026,10 +3105,6 @@ msgstr "Statistik för grupp"
|
|
3026 |
#~ msgid "Enable GeoTargeting for this group."
|
3027 |
#~ msgstr "Enable GeoTargeting för denna grupp."
|
3028 |
|
3029 |
-
#~ msgid "Do not forget to tell the adverts for which areas they should show."
|
3030 |
-
#~ msgstr ""
|
3031 |
-
#~ "Glöm inte att tala om för de annonser för vilka områden de ska visa."
|
3032 |
-
|
3033 |
#~ msgid "Fallback group"
|
3034 |
#~ msgstr "Reserv grupp"
|
3035 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-15 01:46+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-05-15 01:46+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"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:801
|
21 |
msgid "No files found"
|
22 |
msgstr "Inga filer hittades"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Folder not found or not accessible"
|
26 |
msgstr "Folder inte hittas eller inte tillgänglig"
|
27 |
|
28 |
+
#: adrotate-output.php:737
|
29 |
msgid "Oh no! Something went wrong!"
|
30 |
msgstr "Åh nej! Något gick fel!"
|
31 |
|
32 |
+
#: adrotate-output.php:738
|
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:739
|
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:740
|
49 |
msgid "Contact support if the issue persists:"
|
50 |
msgstr "Kontakta support om problemet kvarstår:"
|
51 |
|
52 |
+
#: adrotate-output.php:758
|
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:760
|
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:767 adrotate-output.php:769
|
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:775
|
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:781
|
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:786
|
85 |
msgid "Error, group does not exist! Check your syntax!"
|
86 |
msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
|
87 |
|
88 |
+
#: adrotate-output.php:792
|
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:792
|
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:798
|
101 |
msgid "An unknown error occured."
|
102 |
msgstr "Ett okänt fel uppstod."
|
103 |
|
104 |
+
#: adrotate-output.php:823
|
105 |
msgid "active ad(s) expired."
|
106 |
msgstr "aktiv annons (er) gått ut."
|
107 |
|
108 |
+
#: adrotate-output.php:823
|
109 |
msgid "Take action now"
|
110 |
msgstr "Agera nu"
|
111 |
|
112 |
+
#: adrotate-output.php:825
|
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:825
|
117 |
msgid "Check it out"
|
118 |
msgstr "Kolla in det"
|
119 |
|
120 |
+
#: adrotate-output.php:827
|
121 |
msgid "active ad(s) with configuration errors."
|
122 |
msgstr "aktiv annons(er) med konfigurationsfel."
|
123 |
|
124 |
+
#: adrotate-output.php:827
|
125 |
msgid "Solve this"
|
126 |
msgstr "Lös det här"
|
127 |
|
128 |
+
#: adrotate-output.php:829
|
129 |
msgid "ad(s) expired."
|
130 |
msgstr "annons(er) gått ut."
|
131 |
|
132 |
+
#: adrotate-output.php:829
|
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:829
|
137 |
msgid "ad(s) with configuration errors."
|
138 |
msgstr "annons (er) med konfigurationsfel."
|
139 |
|
140 |
+
#: adrotate-output.php:829
|
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:841
|
145 |
#, fuzzy
|
146 |
msgid "Learn More"
|
147 |
msgstr "Läs mer om"
|
148 |
|
149 |
+
#: adrotate-output.php:842
|
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:842
|
156 |
msgid "Get more features to even better run your advertising campaigns."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: adrotate-output.php:842
|
160 |
#, fuzzy
|
161 |
msgid "Thank you for your consideration!"
|
162 |
msgstr "Tack. Din licens är nu aktiv"
|
163 |
|
164 |
+
#: adrotate-output.php:886
|
165 |
msgid ""
|
166 |
"Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
|
167 |
"this menu. Check out the"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: adrotate-output.php:886
|
171 |
msgid "manuals"
|
172 |
msgstr "manual"
|
173 |
|
174 |
+
#: adrotate-output.php:886 adrotate-output.php:962
|
175 |
#: dashboard/publisher/adrotate-ads-edit.php:151
|
176 |
msgid "and"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: adrotate-output.php:886
|
180 |
msgid "forums"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: adrotate-output.php:922
|
184 |
#, fuzzy
|
185 |
msgid "Useful Links"
|
186 |
msgstr "Nyttiga länkar"
|
187 |
|
188 |
+
#: adrotate-output.php:923
|
189 |
msgid "Useful links to learn more about AdRotate"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: adrotate-output.php:925
|
193 |
#, fuzzy
|
194 |
msgid "AdRotate Page"
|
195 |
msgstr "AdRotate Pro"
|
196 |
|
197 |
+
#: adrotate-output.php:926
|
198 |
#, fuzzy
|
199 |
msgid "Getting Started With AdRotate"
|
200 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
201 |
|
202 |
+
#: adrotate-output.php:927
|
203 |
#, fuzzy
|
204 |
msgid "AdRotate manuals"
|
205 |
msgstr "AdRotate Information"
|
206 |
|
207 |
+
#: adrotate-output.php:928
|
208 |
#, fuzzy
|
209 |
msgid "AdRotate Support Forum"
|
210 |
msgstr "AdRotate butik"
|
211 |
|
212 |
+
#: adrotate-output.php:954
|
213 |
#, fuzzy
|
214 |
msgid "Help AdRotate Grow"
|
215 |
msgstr "Fastnat med AdRotate? Jag hjälper!"
|
216 |
|
217 |
+
#: adrotate-output.php:955
|
218 |
msgid "Brought to you by"
|
219 |
msgstr "Presenteras av"
|
220 |
|
221 |
+
#: adrotate-output.php:962
|
222 |
msgid ""
|
223 |
"A lot of users only think to review AdRotate when something goes wrong while "
|
224 |
"thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: adrotate-output.php:962
|
228 |
msgid "If you find AdRotate useful please leave your honest"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: adrotate-output.php:962
|
232 |
msgid "rating"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: adrotate-output.php:962
|
236 |
#, fuzzy
|
237 |
msgid "review"
|
238 |
msgstr "Betygsätt och omdöme"
|
239 |
|
240 |
+
#: adrotate-output.php:962
|
241 |
msgid "on WordPress.org to help AdRotate grow in a positive way"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: adrotate-output.php:965
|
245 |
msgid ""
|
246 |
"Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
|
247 |
"out more about what I can do for you!"
|
249 |
"Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
|
250 |
"mer om vad jag kan göra för dig!"
|
251 |
|
252 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
253 |
msgid "Visit the"
|
254 |
msgstr "Besök"
|
255 |
|
256 |
+
#: adrotate-output.php:965 dashboard/adrotate-info.php:171
|
257 |
msgid "website"
|
258 |
msgstr "hemsida"
|
259 |
|
260 |
+
#: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
|
261 |
msgid "Available in AdRotate Pro"
|
262 |
msgstr "Tillgänglig i AdRotate Pro"
|
263 |
|
264 |
+
#: adrotate-output.php:995
|
265 |
#, fuzzy
|
266 |
msgid "More information..."
|
267 |
msgstr "Mer info"
|
268 |
|
269 |
+
#: adrotate-output.php:996
|
270 |
msgid "This feature is available in AdRotate Pro"
|
271 |
msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
|
272 |
|
273 |
+
#: adrotate-output.php:996
|
274 |
#, fuzzy
|
275 |
msgid "Learn more"
|
276 |
msgstr "Läs mer om"
|
384 |
msgid "Choose what you want to use this widget for"
|
385 |
msgstr "Välj vad du vill använda denna widget för"
|
386 |
|
387 |
+
#: adrotate-widget.php:137
|
388 |
msgid "ID:"
|
389 |
msgstr "ID:"
|
390 |
|
513 |
msgstr "Grupp inklusive dess annonser raderade"
|
514 |
|
515 |
#: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
|
516 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
517 |
msgid "Report"
|
518 |
msgstr "Rapport"
|
519 |
|
533 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
534 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
535 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
536 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
537 |
#, fuzzy
|
538 |
msgid "More information"
|
539 |
msgstr "Mer info"
|
555 |
#: adrotate.php:459 dashboard/publisher/adrotate-ads-main-disabled.php:35
|
556 |
#: dashboard/publisher/adrotate-ads-main-error.php:39
|
557 |
#: dashboard/publisher/adrotate-ads-main.php:39
|
558 |
+
#: dashboard/publisher/adrotate-groups-edit.php:51
|
559 |
#: dashboard/publisher/adrotate-groups-main.php:32
|
560 |
msgid "ID"
|
561 |
msgstr "ID"
|
599 |
msgstr "i dag"
|
600 |
|
601 |
#: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
|
602 |
+
#: dashboard/publisher/adrotate-groups-edit.php:393
|
603 |
msgid "Expires soon."
|
604 |
msgstr "Utgår inom kort."
|
605 |
|
606 |
#: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
|
607 |
+
#: dashboard/publisher/adrotate-groups-edit.php:394
|
608 |
msgid "Has expired."
|
609 |
msgstr "Har gått ut."
|
610 |
|
662 |
msgstr ""
|
663 |
|
664 |
#: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
|
665 |
+
#: dashboard/publisher/adrotate-groups-edit.php:318
|
666 |
+
#: dashboard/publisher/adrotate-groups-edit.php:326
|
667 |
msgid "Example:"
|
668 |
msgstr "Exempel:"
|
669 |
|
682 |
msgid "Available banner images in"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: adrotate.php:548 dashboard/publisher/adrotate-groups-edit.php:55
|
686 |
+
#: dashboard/publisher/adrotate-groups-main.php:33
|
687 |
msgid "Name"
|
688 |
msgstr "Namn"
|
689 |
|
782 |
msgid "Update Options"
|
783 |
msgstr "Update Options"
|
784 |
|
785 |
+
#: adrotate.php:691 dashboard/publisher/adrotate-ads-edit.php:156
|
786 |
msgid "Statistics"
|
787 |
msgstr "Statistik"
|
788 |
|
790 |
msgid "How to track stats"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:209
|
794 |
+
#: dashboard/publisher/adrotate-groups-edit.php:250
|
795 |
#, fuzzy
|
796 |
msgid "Disabled"
|
797 |
msgstr "Inaktivera annonser"
|
1584 |
msgstr "Redigera annons"
|
1585 |
|
1586 |
#: dashboard/publisher/adrotate-ads-edit.php:115
|
1587 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:37
|
1588 |
+
#: dashboard/publisher/adrotate-ads-main-error.php:41
|
1589 |
+
#: dashboard/publisher/adrotate-ads-main.php:41
|
1590 |
+
msgid "Title"
|
1591 |
+
msgstr "Titel"
|
1592 |
|
1593 |
#: dashboard/publisher/adrotate-ads-edit.php:121
|
1594 |
+
msgid "AdCode"
|
1595 |
+
msgstr ""
|
1596 |
|
1597 |
#: dashboard/publisher/adrotate-ads-edit.php:126
|
1598 |
msgid "Basic Examples:"
|
1599 |
msgstr "Grundläggande Exempel:"
|
1600 |
|
1601 |
#: dashboard/publisher/adrotate-ads-edit.php:133
|
1602 |
+
msgid "Useful tags"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
#: dashboard/publisher/adrotate-ads-edit.php:135
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: dashboard/publisher/adrotate-ads-edit.php:139
|
1636 |
+
msgid "Banner image"
|
1637 |
+
msgstr ""
|
1638 |
|
1639 |
#: dashboard/publisher/adrotate-ads-edit.php:142
|
1640 |
msgid "WordPress media:"
|
1668 |
"Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
|
1669 |
"området har företräde."
|
1670 |
|
|
|
|
|
|
|
|
|
1671 |
#: dashboard/publisher/adrotate-ads-edit.php:158
|
1672 |
msgid "Enable click and impression tracking for this advert."
|
1673 |
msgstr ""
|
1680 |
msgstr ""
|
1681 |
|
1682 |
#: dashboard/publisher/adrotate-ads-edit.php:165
|
1683 |
+
#: dashboard/publisher/adrotate-ads-main-disabled.php:21
|
1684 |
+
msgid "Activate"
|
1685 |
+
msgstr "Aktivera"
|
1686 |
|
1687 |
#: dashboard/publisher/adrotate-ads-edit.php:169
|
1688 |
msgid "Yes, this ad will be used"
|
1695 |
#: dashboard/publisher/adrotate-ads-edit.php:177
|
1696 |
#: dashboard/publisher/adrotate-ads-main.php:114
|
1697 |
#: dashboard/publisher/adrotate-groups-edit.php:75
|
1698 |
+
#: dashboard/publisher/adrotate-groups-main.php:91
|
1699 |
#, fuzzy
|
1700 |
msgid "Get more features with AdRotate Pro."
|
1701 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
1712 |
#: dashboard/publisher/adrotate-ads-edit.php:396
|
1713 |
#: dashboard/publisher/adrotate-ads-edit.php:437
|
1714 |
#: dashboard/publisher/adrotate-groups-edit.php:154
|
1715 |
+
#: dashboard/publisher/adrotate-groups-edit.php:307
|
1716 |
+
#: dashboard/publisher/adrotate-groups-edit.php:399
|
1717 |
msgid "Cancel"
|
1718 |
msgstr "Avbryt"
|
1719 |
|
1738 |
#: dashboard/publisher/adrotate-ads-edit.php:199
|
1739 |
#: dashboard/publisher/adrotate-ads-edit.php:378
|
1740 |
#: dashboard/publisher/adrotate-groups-edit.php:136
|
1741 |
+
#: dashboard/publisher/adrotate-groups-edit.php:289
|
1742 |
msgid "Usage"
|
1743 |
msgstr "Användning"
|
1744 |
|
1745 |
#: dashboard/publisher/adrotate-ads-edit.php:203
|
1746 |
#: dashboard/publisher/adrotate-ads-edit.php:382
|
1747 |
#: dashboard/publisher/adrotate-groups-edit.php:140
|
1748 |
+
#: dashboard/publisher/adrotate-groups-edit.php:293
|
1749 |
+
msgid "Widget"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
#: dashboard/publisher/adrotate-ads-edit.php:204
|
1759 |
#: dashboard/publisher/adrotate-ads-edit.php:207
|
1760 |
#: dashboard/publisher/adrotate-ads-edit.php:386
|
1761 |
#: dashboard/publisher/adrotate-groups-edit.php:144
|
1762 |
+
#: dashboard/publisher/adrotate-groups-edit.php:297
|
1763 |
+
msgid "In a post or page"
|
1764 |
+
msgstr ""
|
1765 |
|
1766 |
#: dashboard/publisher/adrotate-ads-edit.php:209
|
1767 |
#: dashboard/publisher/adrotate-ads-edit.php:388
|
1768 |
#: dashboard/publisher/adrotate-groups-edit.php:146
|
1769 |
+
#: dashboard/publisher/adrotate-groups-edit.php:299
|
1770 |
+
msgid "Directly in a theme"
|
1771 |
+
msgstr ""
|
1772 |
|
1773 |
#: dashboard/publisher/adrotate-ads-edit.php:215
|
1774 |
msgid "Schedule your advert"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
#: dashboard/publisher/adrotate-ads-edit.php:219
|
1778 |
+
msgid "Start date (day/month/year)"
|
1779 |
+
msgstr ""
|
1780 |
|
1781 |
#: dashboard/publisher/adrotate-ads-edit.php:240
|
1782 |
+
msgid "End date (day/month/year)"
|
1783 |
+
msgstr ""
|
1784 |
|
1785 |
#: dashboard/publisher/adrotate-ads-edit.php:263
|
1786 |
+
msgid "Start time (hh:mm)"
|
1787 |
+
msgstr ""
|
1788 |
|
1789 |
#: dashboard/publisher/adrotate-ads-edit.php:270
|
1790 |
+
msgid "End time (hh:mm)"
|
1791 |
+
msgstr ""
|
1792 |
|
1793 |
#: dashboard/publisher/adrotate-ads-edit.php:280
|
1794 |
+
msgid "Maximum Clicks"
|
1795 |
+
msgstr ""
|
1796 |
|
1797 |
#: dashboard/publisher/adrotate-ads-edit.php:281
|
1798 |
#: dashboard/publisher/adrotate-ads-edit.php:283
|
1800 |
msgstr "Lämna tomt eller 0 för att hoppa över detta."
|
1801 |
|
1802 |
#: dashboard/publisher/adrotate-ads-edit.php:282
|
1803 |
+
msgid "Maximum Impressions"
|
1804 |
+
msgstr ""
|
1805 |
|
1806 |
+
#: dashboard/publisher/adrotate-ads-edit.php:287
|
1807 |
+
msgid "Important"
|
|
|
|
|
|
|
1808 |
msgstr ""
|
|
|
|
|
|
|
1809 |
|
1810 |
#: dashboard/publisher/adrotate-ads-edit.php:288
|
1811 |
msgid ""
|
1812 |
+
"Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
|
1813 |
+
"this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
1814 |
+
"14:00 hours. 6AM is 6:00 hours."
|
1815 |
msgstr ""
|
|
|
|
|
1816 |
|
1817 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1818 |
msgid "Create multiple schedules for each advert with AdRotate Pro."
|
1821 |
#: dashboard/publisher/adrotate-ads-edit.php:292
|
1822 |
#: dashboard/publisher/adrotate-ads-edit.php:332
|
1823 |
#: dashboard/publisher/adrotate-ads-edit.php:376
|
1824 |
+
#: dashboard/publisher/adrotate-groups-edit.php:200
|
1825 |
#, fuzzy
|
1826 |
msgid "Upgrade today"
|
1827 |
msgstr "i dag"
|
1836 |
msgstr "Allt nedan är frivillig."
|
1837 |
|
1838 |
#: dashboard/publisher/adrotate-ads-edit.php:304
|
1839 |
+
msgid "Responsive"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: dashboard/publisher/adrotate-ads-edit.php:306
|
1852 |
msgstr ""
|
1853 |
|
1854 |
#: dashboard/publisher/adrotate-ads-edit.php:313
|
1855 |
+
#: dashboard/publisher/adrotate-ads-main.php:42
|
1856 |
+
#: dashboard/publisher/adrotate-groups-edit.php:342
|
1857 |
+
msgid "Weight"
|
1858 |
+
msgstr "Vikt"
|
|
|
|
|
|
|
1859 |
|
1860 |
#: dashboard/publisher/adrotate-ads-edit.php:316
|
1861 |
msgid "Barely visible"
|
1878 |
msgstr "Bästa synlighet"
|
1879 |
|
1880 |
#: dashboard/publisher/adrotate-ads-edit.php:325
|
1881 |
+
#: dashboard/publisher/adrotate-groups-edit.php:194
|
1882 |
+
msgid "Sortorder"
|
1883 |
+
msgstr ""
|
1884 |
|
1885 |
#: dashboard/publisher/adrotate-ads-edit.php:327
|
1886 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
1887 |
msgid "For administrative purposes set a sortorder."
|
1888 |
msgstr "För administrativa ändamål sätt en sortorder."
|
1889 |
|
1908 |
msgstr ""
|
1909 |
|
1910 |
#: dashboard/publisher/adrotate-ads-edit.php:339
|
1911 |
+
msgid "Cities/States"
|
1912 |
+
msgstr ""
|
|
|
1913 |
|
1914 |
#: dashboard/publisher/adrotate-ads-edit.php:342
|
1915 |
msgid ""
|
1927 |
"rätt!"
|
1928 |
|
1929 |
#: dashboard/publisher/adrotate-ads-edit.php:346
|
1930 |
+
msgid "Countries"
|
1931 |
+
msgstr ""
|
|
|
1932 |
|
1933 |
#: dashboard/publisher/adrotate-ads-edit.php:371
|
1934 |
#, fuzzy
|
1986 |
"(Standard: 2/2)"
|
1987 |
|
1988 |
#: dashboard/publisher/adrotate-ads-edit.php:418
|
1989 |
+
#: dashboard/publisher/adrotate-groups-edit.php:202
|
1990 |
#: dashboard/publisher/adrotate-groups-main.php:64
|
1991 |
msgid "Post Injection"
|
1992 |
msgstr "Post injektion"
|
1993 |
|
1994 |
#: dashboard/publisher/adrotate-ads-edit.php:419
|
|
|
1995 |
msgid "Geolocation"
|
1996 |
msgstr "Geolocation"
|
1997 |
|
1998 |
#: dashboard/publisher/adrotate-ads-edit.php:425
|
1999 |
#: dashboard/publisher/adrotate-groups-edit.php:61
|
2000 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2001 |
msgid "Mode"
|
2002 |
msgstr "läge"
|
2003 |
|
2005 |
msgid "Disabled Ads"
|
2006 |
msgstr "Inaktivera annonser"
|
2007 |
|
|
|
|
|
|
|
|
|
2008 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:23
|
2009 |
#: dashboard/publisher/adrotate-ads-main-error.php:22
|
2010 |
#: dashboard/publisher/adrotate-ads-main.php:23
|
2021 |
"detta i åtanke: Om start-eller sluttiden är efter lunch, lägga till 12 "
|
2022 |
"timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
|
2023 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2024 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:38
|
2025 |
#: dashboard/publisher/adrotate-ads-report.php:34
|
2026 |
+
#: dashboard/publisher/adrotate-groups-edit.php:339
|
2027 |
#: dashboard/publisher/adrotate-groups-main.php:36
|
2028 |
#: dashboard/publisher/adrotate-groups-report.php:40
|
2029 |
msgid "Impressions"
|
2032 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:39
|
2033 |
#: dashboard/publisher/adrotate-ads-main.php:46
|
2034 |
#: dashboard/publisher/adrotate-ads-report.php:35
|
2035 |
+
#: dashboard/publisher/adrotate-groups-edit.php:340
|
2036 |
#: dashboard/publisher/adrotate-groups-main.php:38
|
2037 |
#: dashboard/publisher/adrotate-groups-report.php:41
|
2038 |
msgid "Clicks"
|
2048 |
#: dashboard/publisher/adrotate-ads-main-disabled.php:74
|
2049 |
#: dashboard/publisher/adrotate-ads-main-error.php:64
|
2050 |
#: dashboard/publisher/adrotate-ads-main.php:87
|
2051 |
+
#: dashboard/publisher/adrotate-groups-main.php:71
|
2052 |
msgid "Edit"
|
2053 |
msgstr "Ändra"
|
2054 |
|
2099 |
msgstr "För 7 dagar"
|
2100 |
|
2101 |
#: dashboard/publisher/adrotate-ads-main-error.php:73
|
2102 |
+
#: dashboard/publisher/adrotate-groups-edit.php:392
|
2103 |
msgid "Configuration errors."
|
2104 |
msgstr "Konfigurations fel."
|
2105 |
|
2112 |
msgid "Export to XML"
|
2113 |
msgstr "Exportera"
|
2114 |
|
|
|
|
|
|
|
|
|
|
|
2115 |
#: dashboard/publisher/adrotate-ads-main.php:44
|
2116 |
msgid "Shown"
|
2117 |
msgstr "Visa"
|
2168 |
msgid "Edit Group"
|
2169 |
msgstr "Redigera grupp"
|
2170 |
|
|
|
|
|
|
|
|
|
2171 |
#: dashboard/publisher/adrotate-groups-edit.php:64
|
2172 |
msgid "Default - Show one ad at a time"
|
2173 |
msgstr "Standard - Visa en annons i taget"
|
2256 |
"Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
|
2257 |
|
2258 |
#: dashboard/publisher/adrotate-groups-edit.php:141
|
2259 |
+
#: dashboard/publisher/adrotate-groups-edit.php:294
|
2260 |
msgid ""
|
2261 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
|
2262 |
"\" and enter ID"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
#: dashboard/publisher/adrotate-groups-edit.php:153
|
2266 |
+
#: dashboard/publisher/adrotate-groups-edit.php:306
|
2267 |
+
#: dashboard/publisher/adrotate-groups-edit.php:398
|
2268 |
#, fuzzy
|
2269 |
msgid "Save Group"
|
2270 |
msgstr "Spara"
|
2320 |
"setting. Not every theme supports this feature."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: dashboard/publisher/adrotate-groups-edit.php:184
|
2324 |
+
msgid "Geo Targeting"
|
2325 |
+
msgstr "Geo Targeting"
|
2326 |
+
|
2327 |
+
#: dashboard/publisher/adrotate-groups-edit.php:185
|
2328 |
+
msgid "Enable Geo Targeting for this group."
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
#: dashboard/publisher/adrotate-groups-edit.php:186
|
2332 |
+
msgid "Do not forget to tell the adverts for which areas they should show."
|
2333 |
+
msgstr "Glöm inte att tala om för de annonser för vilka områden de ska visa."
|
2334 |
+
|
2335 |
+
#: dashboard/publisher/adrotate-groups-edit.php:189
|
2336 |
+
msgid "Mobile support"
|
2337 |
msgstr ""
|
|
|
2338 |
|
2339 |
#: dashboard/publisher/adrotate-groups-edit.php:190
|
2340 |
+
msgid "Enable mobile support for this group."
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: dashboard/publisher/adrotate-groups-edit.php:191
|
2344 |
+
msgid "Do not forget to put at least one mobile advert in this group."
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: dashboard/publisher/adrotate-groups-edit.php:196
|
2348 |
+
msgid "Leave empty or 0 to skip this. Will default to group id."
|
2349 |
+
msgstr ""
|
2350 |
+
"Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
|
2351 |
|
2352 |
#: dashboard/publisher/adrotate-groups-edit.php:200
|
2353 |
+
msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: dashboard/publisher/adrotate-groups-edit.php:205
|
2357 |
+
msgid "In categories?"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: dashboard/publisher/adrotate-groups-edit.php:210
|
2361 |
+
#: dashboard/publisher/adrotate-groups-edit.php:251
|
2362 |
#, fuzzy
|
2363 |
msgid "Before content"
|
2364 |
msgstr "Innan publicerat innehåll"
|
2365 |
|
2366 |
+
#: dashboard/publisher/adrotate-groups-edit.php:211
|
2367 |
+
#: dashboard/publisher/adrotate-groups-edit.php:252
|
2368 |
#, fuzzy
|
2369 |
msgid "After content"
|
2370 |
msgstr "Före och efter innehållet"
|
2371 |
|
2372 |
+
#: dashboard/publisher/adrotate-groups-edit.php:212
|
2373 |
+
#: dashboard/publisher/adrotate-groups-edit.php:253
|
2374 |
#, fuzzy
|
2375 |
msgid "Before and after content"
|
2376 |
msgstr "Före och efter innehållet"
|
2377 |
|
2378 |
+
#: dashboard/publisher/adrotate-groups-edit.php:213
|
2379 |
+
#: dashboard/publisher/adrotate-groups-edit.php:254
|
2380 |
#, fuzzy
|
2381 |
msgid "After..."
|
2382 |
msgstr "Efter annons"
|
2383 |
|
2384 |
+
#: dashboard/publisher/adrotate-groups-edit.php:219
|
2385 |
+
#: dashboard/publisher/adrotate-groups-edit.php:260
|
2386 |
msgid "the first paragraph"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: dashboard/publisher/adrotate-groups-edit.php:220
|
2390 |
+
#: dashboard/publisher/adrotate-groups-edit.php:261
|
2391 |
msgid "the second paragraph"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: dashboard/publisher/adrotate-groups-edit.php:221
|
2395 |
+
#: dashboard/publisher/adrotate-groups-edit.php:262
|
2396 |
msgid "the third paragraph"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: dashboard/publisher/adrotate-groups-edit.php:222
|
2400 |
+
#: dashboard/publisher/adrotate-groups-edit.php:263
|
2401 |
msgid "the fourth paragraph"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: dashboard/publisher/adrotate-groups-edit.php:224
|
2405 |
+
#: dashboard/publisher/adrotate-groups-edit.php:265
|
2406 |
msgid "every 2nd paragraph"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: dashboard/publisher/adrotate-groups-edit.php:225
|
2410 |
+
#: dashboard/publisher/adrotate-groups-edit.php:266
|
2411 |
msgid "every 3rd paragraph"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: dashboard/publisher/adrotate-groups-edit.php:226
|
2415 |
+
#: dashboard/publisher/adrotate-groups-edit.php:267
|
2416 |
msgid "every 4th paragraph"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: dashboard/publisher/adrotate-groups-edit.php:227
|
2420 |
+
#: dashboard/publisher/adrotate-groups-edit.php:268
|
2421 |
msgid "every 5th paragraph"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: dashboard/publisher/adrotate-groups-edit.php:228
|
2425 |
+
#: dashboard/publisher/adrotate-groups-edit.php:269
|
2426 |
msgid "every 6th paragraph"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: dashboard/publisher/adrotate-groups-edit.php:229
|
2430 |
+
#: dashboard/publisher/adrotate-groups-edit.php:270
|
2431 |
msgid "every 7th paragraph"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: dashboard/publisher/adrotate-groups-edit.php:230
|
2435 |
+
#: dashboard/publisher/adrotate-groups-edit.php:271
|
2436 |
msgid "every 8th paragraph"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: dashboard/publisher/adrotate-groups-edit.php:236
|
2440 |
msgid "Which categories?"
|
2441 |
msgstr "Vilka kategorier?"
|
2442 |
|
2443 |
+
#: dashboard/publisher/adrotate-groups-edit.php:241
|
2444 |
msgid "Click the categories posts you want the adverts to show in."
|
2445 |
msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
|
2446 |
|
2447 |
+
#: dashboard/publisher/adrotate-groups-edit.php:246
|
2448 |
+
msgid "In pages?"
|
2449 |
+
msgstr ""
|
2450 |
|
2451 |
+
#: dashboard/publisher/adrotate-groups-edit.php:277
|
2452 |
msgid "Which pages?"
|
2453 |
msgstr "Vilka sidor?"
|
2454 |
|
2455 |
+
#: dashboard/publisher/adrotate-groups-edit.php:282
|
2456 |
msgid "Click the pages you want the adverts to show in."
|
2457 |
msgstr "Klicka på de sidor du vill annonserna att visa i."
|
2458 |
|
2459 |
+
#: dashboard/publisher/adrotate-groups-edit.php:310
|
2460 |
msgid "Wrapper code"
|
2461 |
msgstr "Wrapper kod"
|
2462 |
|
2463 |
+
#: dashboard/publisher/adrotate-groups-edit.php:311
|
2464 |
+
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: dashboard/publisher/adrotate-groups-edit.php:315
|
2468 |
+
msgid "Before advert"
|
2469 |
+
msgstr ""
|
2470 |
|
2471 |
+
#: dashboard/publisher/adrotate-groups-edit.php:319
|
2472 |
msgid "Options:"
|
2473 |
msgstr "Options:"
|
2474 |
|
2475 |
+
#: dashboard/publisher/adrotate-groups-edit.php:323
|
2476 |
+
msgid "After advert"
|
2477 |
+
msgstr ""
|
2478 |
|
2479 |
+
#: dashboard/publisher/adrotate-groups-edit.php:332
|
2480 |
+
msgid "Select adverts"
|
2481 |
+
msgstr ""
|
2482 |
|
2483 |
+
#: dashboard/publisher/adrotate-groups-edit.php:343
|
2484 |
msgid "Visible until"
|
2485 |
msgstr "Synlig tills"
|
2486 |
|
2487 |
+
#: dashboard/publisher/adrotate-groups-edit.php:385
|
2488 |
msgid "No ads created!"
|
2489 |
msgstr "Inga annonser skapat!"
|
2490 |
|
2508 |
msgid "Code"
|
2509 |
msgstr "Kod"
|
2510 |
|
2511 |
+
#: dashboard/publisher/adrotate-groups-main.php:86
|
2512 |
msgid "No groups created!"
|
2513 |
msgstr "Inga grupper skapas!"
|
2514 |
|
2516 |
msgid "Statistics for group"
|
2517 |
msgstr "Statistik för grupp"
|
2518 |
|
2519 |
+
#~ msgid "Title:"
|
2520 |
+
#~ msgstr "Titel:"
|
2521 |
+
|
2522 |
+
#~ msgid "AdCode:"
|
2523 |
+
#~ msgstr "AdCode:"
|
2524 |
+
|
2525 |
+
#~ msgid "Banner image:"
|
2526 |
+
#~ msgstr "Banner image:"
|
2527 |
+
|
2528 |
+
#~ msgid "Activate:"
|
2529 |
+
#~ msgstr "Aktivera:"
|
2530 |
+
|
2531 |
+
#~ msgid "In a post or page:"
|
2532 |
+
#~ msgstr "I ett inlägg eller sida:"
|
2533 |
+
|
2534 |
+
#~ msgid "Directly in a theme:"
|
2535 |
+
#~ msgstr "Direkt i ett tema:"
|
2536 |
+
|
2537 |
+
#~ msgid "Start date (day/month/year):"
|
2538 |
+
#~ msgstr "Startdatum (dag / månad / år):"
|
2539 |
+
|
2540 |
+
#~ msgid "End date (day/month/year):"
|
2541 |
+
#~ msgstr "Slutdatum (dag / månad / år):"
|
2542 |
+
|
2543 |
+
#~ msgid "Start time (hh:mm):"
|
2544 |
+
#~ msgstr "Starttid (hh: mm):"
|
2545 |
+
|
2546 |
+
#~ msgid "End time (hh:mm):"
|
2547 |
+
#~ msgstr "Avsluta tid (hh: mm):"
|
2548 |
+
|
2549 |
+
#~ msgid "Maximum Clicks:"
|
2550 |
+
#~ msgstr "Max Klick:"
|
2551 |
+
|
2552 |
+
#~ msgid "Maximum Impressions:"
|
2553 |
+
#~ msgstr "Maximala Intryck:"
|
2554 |
+
|
2555 |
+
#~ msgid ""
|
2556 |
+
#~ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this "
|
2557 |
+
#~ "in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
|
2558 |
+
#~ "14:00 hours. 6AM is 6:00 hours."
|
2559 |
+
#~ msgstr ""
|
2560 |
+
#~ "Tiden använder en 24-timmarsklocka. När du är van vid AM / PM-systemet ha "
|
2561 |
+
#~ "detta i åtanke: Om start-eller sluttiden är efter lunch, lägga till 12 "
|
2562 |
+
#~ "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
|
2563 |
+
|
2564 |
+
#~ msgid ""
|
2565 |
+
#~ "The maximum clicks and impressions are measured over the set schedule "
|
2566 |
+
#~ "only. Every schedule can have it's own limit!"
|
2567 |
+
#~ msgstr ""
|
2568 |
+
#~ "De maximala klick och visningar mäts över den inställda schema. Varje "
|
2569 |
+
#~ "schema kan få en egen gräns!"
|
2570 |
+
|
2571 |
+
#~ msgid "Weight:"
|
2572 |
+
#~ msgstr "Vikt:"
|
2573 |
+
|
2574 |
+
#, fuzzy
|
2575 |
+
#~ msgid "AdRotate Pro only"
|
2576 |
+
#~ msgstr "AdRotate Pro"
|
2577 |
+
|
2578 |
+
#~ msgid "Sortorder:"
|
2579 |
+
#~ msgstr "Sorteringsordning:"
|
2580 |
+
|
2581 |
+
#, fuzzy
|
2582 |
+
#~ msgid "Cities/States:"
|
2583 |
+
#~ msgstr "Städer"
|
2584 |
+
|
2585 |
+
#, fuzzy
|
2586 |
+
#~ msgid "Countries:"
|
2587 |
+
#~ msgstr "Länder"
|
2588 |
+
|
2589 |
+
#~ msgid "Name:"
|
2590 |
+
#~ msgstr "Namn:"
|
2591 |
+
|
2592 |
+
#~ msgid "Include ads in categories?"
|
2593 |
+
#~ msgstr "Inkludera annonser i kategorierna?"
|
2594 |
+
|
2595 |
+
#~ msgid "Include ads in pages?"
|
2596 |
+
#~ msgstr "Inkludera annonser på sidor?"
|
2597 |
+
|
2598 |
+
#~ msgid "Before ad"
|
2599 |
+
#~ msgstr "Innan annons"
|
2600 |
+
|
2601 |
+
#~ msgid "After ad"
|
2602 |
+
#~ msgstr "Efter annons"
|
2603 |
+
|
2604 |
+
#~ msgid "Select Ads"
|
2605 |
+
#~ msgstr "Välj Annonser"
|
2606 |
+
|
2607 |
#, fuzzy
|
2608 |
#~ msgid "Enable stats"
|
2609 |
#~ msgstr "Statistik"
|
3046 |
#~ msgid "Track clicks from logged in users."
|
3047 |
#~ msgstr "Spår klick från inloggade användare."
|
3048 |
|
|
|
|
|
|
|
3049 |
#~ msgid "Geographic Tracking"
|
3050 |
#~ msgstr "Geographic Spårning"
|
3051 |
|
3105 |
#~ msgid "Enable GeoTargeting for this group."
|
3106 |
#~ msgstr "Enable GeoTargeting för denna grupp."
|
3107 |
|
|
|
|
|
|
|
|
|
3108 |
#~ msgid "Fallback group"
|
3109 |
#~ msgstr "Reserv grupp"
|
3110 |
|
library/dashboard.css
CHANGED
@@ -26,4 +26,15 @@
|
|
26 |
.postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
|
27 |
.postbox-adrotate h3 { margin:0; padding:7px 10px 7px 10px; box-shadow:#ddd 0px 1px 0px 0px; -moz-box-shadow:inset 0 1px 0 #ddd; -webkit-box-shadow:#ddd 0px 1px 0px 0px; line-height:15px; }
|
28 |
.postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
|
29 |
-
.inside { padding:6px 10px 12px; clear:both; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
.postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
|
27 |
.postbox-adrotate h3 { margin:0; padding:7px 10px 7px 10px; box-shadow:#ddd 0px 1px 0px 0px; -moz-box-shadow:inset 0 1px 0 #ddd; -webkit-box-shadow:#ddd 0px 1px 0px 0px; line-height:15px; }
|
28 |
.postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
|
29 |
+
.inside { padding:6px 10px 12px; clear:both; }
|
30 |
+
|
31 |
+
/* Pushover */
|
32 |
+
.pushover-button {
|
33 |
+
box-sizing: border-box; background-color: #eee;
|
34 |
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAJQCeAPHNVUx7AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wEPAh02ee0QVwAAACZpVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVAgb24gYSBNYWOV5F9bAAABqElEQVQ4y62TvUtbURjGf+fek2vQpMF2ED9QkfpR6VLaDoIEF0UKWQRBQ+yQP6GDU0Xw4y/obOgg6dDSJVS61MlBcXFQB6M1BsF+IES9NnrzcRy8xpvrBwH7bOflfc553+d5jsCF9tiRDwgBEaDXLi8B80AiGQ2Yzn7hIo8Cce5HOBkNfLo6aA7ydAVkgLjdez3BrS8rRbBJEmyU+AyBVVDE1i1SJ6psEmHvfOLktj0SjL/2snKQx8wpNg+LBJt0RjoN+j6bqOvN/ZotWAldtYK5gWpmV84YbPUw2ePlb7bI73+Kep+OLFONkGarXcK7l16+7+V57BW8qJMs7Ob5k4VQm4fVXzlyquyGiHRYBcC+WWQxnSP63AAgtn7O0FNJ9xOd0W+nbkF7pbsytXxOQw30N0t2MgX6Wzy8qtMJL5zy81jdsETaIXnjLL7trkLqGl+2svxI5/mwZt1l6ZJmJ6yEGqkYbveQOioQ2yiz7TbMa0DCWRnuMPBXaXzcsJx23YWEZmc7fJkqxdgzg8xZka/bFhVE2hSuKL+nMswko4GJ//KZxEO/8wVmfpjJTWeCTQAAAABJRU5ErkJggg==) 2px 2px no-repeat, linear-gradient(#FFF, #DEDEDE);
|
35 |
+
border: 1px solid #CCC; border-radius: 3px; color: #333; display: inline-block;
|
36 |
+
font: 11px/18px "Helvetica Neue",Arial,sans-serif; font-weight: bold;
|
37 |
+
cursor: pointer; height: 22px; padding-left: 20px; padding-right: 5px;
|
38 |
+
overflow: hidden; text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
|
39 |
+
text-decoration: none; vertical-align: middle;
|
40 |
+
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme&pk_kw
|
|
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.2.2
|
7 |
-
Stable tag: 3.11.
|
8 |
|
9 |
Used on over a hundred thousand websites and by even more people! With over a million downloads AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
|
10 |
|
@@ -33,12 +33,14 @@ Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.so
|
|
33 |
* Automated Javascript cycles of ads with Dynamic Groups
|
34 |
* Have your advertisers add/edit/manage their own ads
|
35 |
* Geo Targeting for adverts
|
|
|
36 |
* Detect ad blockers in browser and nag visitors about it
|
37 |
* Works with Google AdSense, DFP and most other referrer/ad servers
|
38 |
* Get push notifications right on your iOS or Android device about adverts and important events
|
39 |
* Get email notifications when your ads need you
|
40 |
* Perfectly suited for any size of advertisement, including 125x125, 468x60, 729x90, 160x600 and much more
|
41 |
* Easy to use stats so you can follow how each advert is performing
|
|
|
42 |
* Daily, monthly and yearly stats
|
43 |
* Couple ads to users so that user can follow his personalized stats
|
44 |
* Advertisers can easily contact you from their dashboard
|
@@ -88,28 +90,28 @@ If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
-
= 3.11.
|
92 |
-
* [
|
93 |
-
* [fix]
|
94 |
-
* [fix]
|
95 |
-
* [fix]
|
96 |
-
* [
|
97 |
-
* [tweak] Changed "upgrade" button to "update now"
|
98 |
-
* [tweak] Clearer error status for responsive adverts
|
99 |
|
100 |
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/?pk_campaign=adrotatefree-readme&pk_kwd=features).
|
101 |
|
102 |
-
= 3.12.
|
103 |
-
* [new]
|
104 |
-
* [new]
|
105 |
-
* [
|
106 |
-
* [
|
107 |
-
* [fix]
|
108 |
-
* [fix]
|
109 |
-
* [fix]
|
110 |
-
* [
|
111 |
-
* [
|
112 |
-
* [
|
|
|
|
|
113 |
|
114 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
|
115 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
|
@@ -118,14 +120,12 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
|
|
118 |
|
119 |
== Upgrade Notice ==
|
120 |
|
121 |
-
= 3.11.
|
122 |
-
* [
|
123 |
-
* [fix]
|
124 |
-
* [fix]
|
125 |
-
* [fix]
|
126 |
-
* [
|
127 |
-
* [tweak] Changed "upgrade" button to "update now"
|
128 |
-
* [tweak] Clearer error status for responsive adverts
|
129 |
|
130 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
|
131 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
|
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.2.2
|
7 |
+
Stable tag: 3.11.5
|
8 |
|
9 |
Used on over a hundred thousand websites and by even more people! With over a million downloads AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
|
10 |
|
33 |
* Automated Javascript cycles of ads with Dynamic Groups
|
34 |
* Have your advertisers add/edit/manage their own ads
|
35 |
* Geo Targeting for adverts
|
36 |
+
* Mobile adverts
|
37 |
* Detect ad blockers in browser and nag visitors about it
|
38 |
* Works with Google AdSense, DFP and most other referrer/ad servers
|
39 |
* Get push notifications right on your iOS or Android device about adverts and important events
|
40 |
* Get email notifications when your ads need you
|
41 |
* Perfectly suited for any size of advertisement, including 125x125, 468x60, 729x90, 160x600 and much more
|
42 |
* Easy to use stats so you can follow how each advert is performing
|
43 |
+
* Responsive adverts
|
44 |
* Daily, monthly and yearly stats
|
45 |
* Couple ads to users so that user can follow his personalized stats
|
46 |
* Advertisers can easily contact you from their dashboard
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 3.11.5 FREE =
|
94 |
+
* [tweak] Minor tweaks and improvements to dashboards
|
95 |
+
* [fix] More accurate regexes for AdRotate Tracker
|
96 |
+
* [fix] Ambiguous array match in post injection
|
97 |
+
* [fix] Unwanted advert after content with post injection on some settings
|
98 |
+
* [i18n] Updated strings for all language files
|
|
|
|
|
99 |
|
100 |
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/?pk_campaign=adrotatefree-readme&pk_kwd=features).
|
101 |
|
102 |
+
= 3.12.7 PRO =
|
103 |
+
* [new] Show select adverts on mobile only when in a group
|
104 |
+
* [new] Budget, CPC and CPM visible on advert overview
|
105 |
+
* [new] Budget, CPC and CPM visible for advertisers
|
106 |
+
* [tweak] Minor tweaks and improvements to dashboards
|
107 |
+
* [fix] Serialize error when exporting multiple adverts
|
108 |
+
* [fix] Geo data not serialized when importing CSV file
|
109 |
+
* [fix] Advertiser summary stats navigation now works
|
110 |
+
* [fix] Advertiser ads with errors not listed in regular dashboard
|
111 |
+
* [fix] More accurate regexes for AdRotate Tracker
|
112 |
+
* [fix] Ambiguous array match in post injection
|
113 |
+
* [fix] Unwanted advert after content with post injection on some settings
|
114 |
+
* [i18n] Updated strings for all language files
|
115 |
|
116 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
|
117 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
|
120 |
|
121 |
== Upgrade Notice ==
|
122 |
|
123 |
+
= 3.11.5 FREE =
|
124 |
+
* [tweak] Minor tweaks and improvements to dashboards
|
125 |
+
* [fix] More accurate regexes for AdRotate Tracker
|
126 |
+
* [fix] Ambiguous array match in post injection
|
127 |
+
* [fix] Unwanted advert after content with post injection on some settings
|
128 |
+
* [i18n] Updated strings for all language files
|
|
|
|
|
129 |
|
130 |
The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
|
131 |
Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
|