Version Description
FREE = * [fix] Showing correct stats for adverts below graphs * [i18n] Added missing strings in dashboard notifications * [i18n] Corrected/included lots of missing strings
Download this release
Release Info
Developer | adegans |
Plugin | AdRotate Banner Manager |
Version | 4.7 |
Comparing to | |
See all releases |
Code changes from version 4.6.3 to 4.7
- adrotate-functions.php +2 -2
- adrotate-output.php +8 -8
- adrotate-statistics.php +8 -8
- adrotate.php +3 -3
- dashboard/publisher/adverts-edit.php +9 -9
- dashboard/publisher/groups-edit.php +32 -32
- dashboard/publisher/statistics-main.php +3 -5
- dashboard/settings/maintenance.php +10 -10
- language/adrotate-bg_BG.mo +0 -0
- language/adrotate-bg_BG.po +33 -16
- language/adrotate-el.mo +0 -0
- language/adrotate-el.po +33 -16
- language/adrotate-en_US.mo +0 -0
- language/adrotate-en_US.po +44 -43
- language/adrotate-es_ES.mo +0 -0
- language/adrotate-es_ES.po +33 -13
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +33 -13
- language/adrotate-id_ID.mo +0 -0
- language/adrotate-id_ID.po +35 -16
- language/adrotate-ja.mo +0 -0
- language/adrotate-ja.po +30 -17
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +33 -13
- language/adrotate-sr_RS.mo +0 -0
- language/adrotate-sr_RS.po +33 -16
- language/adrotate-sv_SV.mo +0 -0
- language/adrotate-sv_SV.po +33 -16
- readme.txt +11 -7
adrotate-functions.php
CHANGED
@@ -712,10 +712,10 @@ function adrotate_folder_contents($current, $kind = 'all') {
|
|
712 |
}
|
713 |
}
|
714 |
} else {
|
715 |
-
$output .= "<option disabled> ".__('No files found', 'adrotate
|
716 |
}
|
717 |
} else {
|
718 |
-
$output .= "<option disabled> ".__('Folder not found or not accessible', 'adrotate
|
719 |
}
|
720 |
|
721 |
return $output;
|
712 |
}
|
713 |
}
|
714 |
} else {
|
715 |
+
$output .= "<option disabled> ".__('No files found', 'adrotate')."</option>";
|
716 |
}
|
717 |
} else {
|
718 |
+
$output .= "<option disabled> ".__('Folder not found or not accessible', 'adrotate')."</option>";
|
719 |
}
|
720 |
|
721 |
return $output;
|
adrotate-output.php
CHANGED
@@ -625,27 +625,27 @@ function adrotate_dashboard_error() {
|
|
625 |
$adrotate_notifications = get_option("adrotate_notifications");
|
626 |
if($adrotate_notifications['notification_dash'] == "Y") {
|
627 |
if($status['expired'] > 0 AND $adrotate_notifications['notification_dash_expired'] == "Y") {
|
628 |
-
$error['advert_expired'] = sprintf(_n('One advert is expired.', '%1$s adverts expired!', $status['expired'], 'adrotate
|
629 |
}
|
630 |
if($status['expiressoon'] > 0 AND $adrotate_notifications['notification_dash_soon'] == "Y") {
|
631 |
-
$error['advert_soon'] = sprintf(_n('One advert expires soon.', '%1$s adverts are almost expiring!', $status['expiressoon'], 'adrotate
|
632 |
}
|
633 |
}
|
634 |
if($status['error'] > 0) {
|
635 |
-
$error['advert_config'] = sprintf(_n('One advert with configuration errors.', '%1$s adverts have configuration errors!', $status['error'], 'adrotate
|
636 |
}
|
637 |
|
638 |
// Caching
|
639 |
if($adrotate_config['w3caching'] == "Y" AND !is_plugin_active('w3-total-cache/w3-total-cache.php')) {
|
640 |
-
$error['w3tc_not_active'] = __('You have enable caching support but W3 Total Cache is not active on your site!', 'adrotate').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">Disable Caching Support</a> or <a href="'.admin_url('/plugins.php').'">Enable W3 Total Cache</a>.';
|
641 |
}
|
642 |
if($adrotate_config['w3caching'] == "Y" AND !defined('W3TC_DYNAMIC_SECURITY')) {
|
643 |
-
$error['w3tc_no_hash'] = __('You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is not set.', 'adrotate').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">How to configure W3 Total Cache</a>.';
|
644 |
}
|
645 |
|
646 |
// Misc
|
647 |
if(!is_writable(WP_CONTENT_DIR."/".$adrotate_config['banner_folder'])) {
|
648 |
-
$error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/?utm_campaign=adrotate-manual&utm_medium=dashboard-notification&utm_source=adrotate-free" target="_blank">Set up your banner folder</a>.';
|
649 |
}
|
650 |
|
651 |
$error = (isset($error) AND is_array($error)) ? $error : false;
|
@@ -664,7 +664,7 @@ function adrotate_notifications_dashboard() {
|
|
664 |
if($adrotate_has_error) {
|
665 |
echo '<div class="error" style="padding: 0; margin: 0;">';
|
666 |
echo ' <div class="ajdg_notification">';
|
667 |
-
echo ' <div class="text">AdRotate has detected '._n('one issue that requires', 'several issues that require', count($adrotate_has_error), 'adrotate
|
668 |
foreach($adrotate_has_error as $error => $message) {
|
669 |
echo '» '.$message.'<br />';
|
670 |
}
|
@@ -707,7 +707,7 @@ function adrotate_notifications_dashboard() {
|
|
707 |
echo '<div class="updated" style="padding: 0; margin: 0;">';
|
708 |
echo ' <div class="ajdg_notification">';
|
709 |
echo ' <div class="button_div"><a class="button button_large" data-slug="adrotate-switch" href="'.admin_url('plugin-install.php?tab=search&s=adrotate+switch').'" aria-label="Install AdRotate Switch now" data-name="AdRotate Switch">Install AdRotate Switch</a></div>';
|
710 |
-
echo ' <div class="text">AdRotate found '._n('one plugin', 'several plugins', count($adrotate_has_competition), 'adrotate
|
711 |
foreach($adrotate_has_competition as $plugin) {
|
712 |
echo '» '.$plugin.'<br />';
|
713 |
}
|
625 |
$adrotate_notifications = get_option("adrotate_notifications");
|
626 |
if($adrotate_notifications['notification_dash'] == "Y") {
|
627 |
if($status['expired'] > 0 AND $adrotate_notifications['notification_dash_expired'] == "Y") {
|
628 |
+
$error['advert_expired'] = sprintf(_n('One advert is expired.', '%1$s adverts expired!', $status['expired'], 'adrotate'), $status['expired']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate').'</a>!';
|
629 |
}
|
630 |
if($status['expiressoon'] > 0 AND $adrotate_notifications['notification_dash_soon'] == "Y") {
|
631 |
+
$error['advert_soon'] = sprintf(_n('One advert expires soon.', '%1$s adverts are almost expiring!', $status['expiressoon'], 'adrotate'), $status['expiressoon']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate').'</a>!';
|
632 |
}
|
633 |
}
|
634 |
if($status['error'] > 0) {
|
635 |
+
$error['advert_config'] = sprintf(_n('One advert with configuration errors.', '%1$s adverts have configuration errors!', $status['error'], 'adrotate'), $status['error']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate').'</a>!';
|
636 |
}
|
637 |
|
638 |
// Caching
|
639 |
if($adrotate_config['w3caching'] == "Y" AND !is_plugin_active('w3-total-cache/w3-total-cache.php')) {
|
640 |
+
$error['w3tc_not_active'] = __('You have enable caching support but W3 Total Cache is not active on your site!', 'adrotate').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">Disable Caching Support</a> or <a href="'.admin_url('/plugins.php').'">'.__('Enable W3 Total Cache', 'adrotate').'</a>.';
|
641 |
}
|
642 |
if($adrotate_config['w3caching'] == "Y" AND !defined('W3TC_DYNAMIC_SECURITY')) {
|
643 |
+
$error['w3tc_no_hash'] = __('You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is not set.', 'adrotate').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">'.__('How to configure W3 Total Cache', 'adrotate').'</a>.';
|
644 |
}
|
645 |
|
646 |
// Misc
|
647 |
if(!is_writable(WP_CONTENT_DIR."/".$adrotate_config['banner_folder'])) {
|
648 |
+
$error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/?utm_campaign=adrotate-manual&utm_medium=dashboard-notification&utm_source=adrotate-free" target="_blank">'.__('Set up your banner folder', 'adrotate').'</a>.';
|
649 |
}
|
650 |
|
651 |
$error = (isset($error) AND is_array($error)) ? $error : false;
|
664 |
if($adrotate_has_error) {
|
665 |
echo '<div class="error" style="padding: 0; margin: 0;">';
|
666 |
echo ' <div class="ajdg_notification">';
|
667 |
+
echo ' <div class="text">AdRotate has detected '._n('one issue that requires', 'several issues that require', count($adrotate_has_error), 'adrotate').' '.__('your attention:', 'adrotate').'<br /><span>';
|
668 |
foreach($adrotate_has_error as $error => $message) {
|
669 |
echo '» '.$message.'<br />';
|
670 |
}
|
707 |
echo '<div class="updated" style="padding: 0; margin: 0;">';
|
708 |
echo ' <div class="ajdg_notification">';
|
709 |
echo ' <div class="button_div"><a class="button button_large" data-slug="adrotate-switch" href="'.admin_url('plugin-install.php?tab=search&s=adrotate+switch').'" aria-label="Install AdRotate Switch now" data-name="AdRotate Switch">Install AdRotate Switch</a></div>';
|
710 |
+
echo ' <div class="text">AdRotate found '._n('one plugin', 'several plugins', count($adrotate_has_competition), 'adrotate').' that can be imported:<br /><span>';
|
711 |
foreach($adrotate_has_competition as $plugin) {
|
712 |
echo '» '.$plugin.'<br />';
|
713 |
}
|
adrotate-statistics.php
CHANGED
@@ -92,7 +92,7 @@ function adrotate_draw_graph($id = 0, $labels = 0, $clicks = 0, $impressions = 0
|
|
92 |
Purpose: Generate latest number of clicks and impressions
|
93 |
Since: 3.8
|
94 |
-------------------------------------------------------------*/
|
95 |
-
function adrotate_stats($ad, $when = 0, $until = 0) {
|
96 |
global $wpdb;
|
97 |
|
98 |
if($when > 0 AND is_numeric($when) AND $until > 0 AND is_numeric($until)) { // date range
|
@@ -152,7 +152,7 @@ function adrotate_stats_nav($type, $id, $month, $year) {
|
|
152 |
$nextmonth = 1;
|
153 |
$nextyear = $year + 1;
|
154 |
}
|
155 |
-
$months = array(__('January', 'adrotate
|
156 |
|
157 |
$page = '';
|
158 |
if($type == 'ads') $page = 'adrotate-statistics&view=advert&id='.$id;
|
@@ -161,10 +161,10 @@ function adrotate_stats_nav($type, $id, $month, $year) {
|
|
161 |
if($type == 'advertiser') $page = 'adrotate-advertiser&view=report&ad='.$id;
|
162 |
if($type == 'advertiserfull') $page = 'adrotate-advertiser';
|
163 |
|
164 |
-
$nav = '<a href="admin.php?page='.$page.'&month='.$lastmonth.'&year='.$lastyear.'"><< '.__('Previous', 'adrotate
|
165 |
$nav .= '<strong>'.$months[$month-1].' '.$year.'</strong> - ';
|
166 |
-
$nav .= '(<a href="admin.php?page='.$page.'">'.__('This month', 'adrotate
|
167 |
-
$nav .= '<a href="admin.php?page='.$page.'&month='.$nextmonth.'&year='.$nextyear.'">'. __('Next', 'adrotate
|
168 |
|
169 |
return $nav;
|
170 |
}
|
@@ -259,7 +259,7 @@ function adrotate_stats_graph($type, $archive = false, $id, $chartid, $start, $e
|
|
259 |
$output .= adrotate_draw_graph($chartid, $dates, $clicks, $impressions);
|
260 |
unset($stats, $graph, $dates, $clicks, $impressions);
|
261 |
} else {
|
262 |
-
$output = __('No data to show!', 'adrotate
|
263 |
}
|
264 |
|
265 |
return $output;
|
@@ -336,8 +336,8 @@ function adrotate_prepare_advertiser_report($user, $ads) {
|
|
336 |
$stats['ad_amount'] = count($ads);
|
337 |
if(empty($stats['total_impressions'])) $stats['total_impressions'] = 0;
|
338 |
if(empty($stats['total_clicks'])) $stats['total_clicks'] = 0;
|
339 |
-
if(empty($stats['thebest'])) $stats['thebest'] = array('id' => 0, 'title' => __('Not found', 'adrotate
|
340 |
-
if(empty($stats['theworst'])) $stats['theworst'] = array('id' => 0, 'title' => __('Not found', 'adrotate
|
341 |
|
342 |
foreach($ads as $ad) {
|
343 |
$result = adrotate_stats($ad['id']);
|
92 |
Purpose: Generate latest number of clicks and impressions
|
93 |
Since: 3.8
|
94 |
-------------------------------------------------------------*/
|
95 |
+
function adrotate_stats($ad, $archive = false, $when = 0, $until = 0) {
|
96 |
global $wpdb;
|
97 |
|
98 |
if($when > 0 AND is_numeric($when) AND $until > 0 AND is_numeric($until)) { // date range
|
152 |
$nextmonth = 1;
|
153 |
$nextyear = $year + 1;
|
154 |
}
|
155 |
+
$months = array(__('January', 'adrotate'), __('February', 'adrotate'), __('March', 'adrotate'), __('April', 'adrotate'), __('May', 'adrotate'), __('June', 'adrotate'), __('July', 'adrotate'), __('August', 'adrotate'), __('September', 'adrotate'), __('October', 'adrotate'), __('November', 'adrotate'), __('December', 'adrotate'));
|
156 |
|
157 |
$page = '';
|
158 |
if($type == 'ads') $page = 'adrotate-statistics&view=advert&id='.$id;
|
161 |
if($type == 'advertiser') $page = 'adrotate-advertiser&view=report&ad='.$id;
|
162 |
if($type == 'advertiserfull') $page = 'adrotate-advertiser';
|
163 |
|
164 |
+
$nav = '<a href="admin.php?page='.$page.'&month='.$lastmonth.'&year='.$lastyear.'"><< '.__('Previous', 'adrotate').'</a> - ';
|
165 |
$nav .= '<strong>'.$months[$month-1].' '.$year.'</strong> - ';
|
166 |
+
$nav .= '(<a href="admin.php?page='.$page.'">'.__('This month', 'adrotate').'</a>) - ';
|
167 |
+
$nav .= '<a href="admin.php?page='.$page.'&month='.$nextmonth.'&year='.$nextyear.'">'. __('Next', 'adrotate').' >></a>';
|
168 |
|
169 |
return $nav;
|
170 |
}
|
259 |
$output .= adrotate_draw_graph($chartid, $dates, $clicks, $impressions);
|
260 |
unset($stats, $graph, $dates, $clicks, $impressions);
|
261 |
} else {
|
262 |
+
$output = __('No data to show!', 'adrotate');
|
263 |
}
|
264 |
|
265 |
return $output;
|
336 |
$stats['ad_amount'] = count($ads);
|
337 |
if(empty($stats['total_impressions'])) $stats['total_impressions'] = 0;
|
338 |
if(empty($stats['total_clicks'])) $stats['total_clicks'] = 0;
|
339 |
+
if(empty($stats['thebest'])) $stats['thebest'] = array('id' => 0, 'title' => __('Not found', 'adrotate'), 'clicks' => 0);
|
340 |
+
if(empty($stats['theworst'])) $stats['theworst'] = array('id' => 0, 'title' => __('Not found', 'adrotate'), 'clicks' => 0);
|
341 |
|
342 |
foreach($ads as $ad) {
|
343 |
$result = adrotate_stats($ad['id']);
|
adrotate.php
CHANGED
@@ -7,7 +7,7 @@ Author URI: http://ajdg.solutions/?utm_campaign=homepage&utm_medium=plugin-info&
|
|
7 |
Description: Monetise your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 4.
|
11 |
License: GPLv3
|
12 |
*/
|
13 |
|
@@ -22,7 +22,7 @@ License: GPLv3
|
|
22 |
------------------------------------------------------------------------------------ */
|
23 |
|
24 |
/*--- AdRotate values ---------------------------------------*/
|
25 |
-
define("ADROTATE_DISPLAY", '4.
|
26 |
define("ADROTATE_VERSION", 391);
|
27 |
define("ADROTATE_DB_VERSION", 64);
|
28 |
$plugin_folder = plugin_dir_path(__FILE__);
|
@@ -183,7 +183,7 @@ function adrotate_manage() {
|
|
183 |
$year = date("Y");
|
184 |
}
|
185 |
$monthstart = mktime(0, 0, 0, $month, 1, $year);
|
186 |
-
$monthend = mktime(0, 0, 0, $month+1, 0, $year);
|
187 |
?>
|
188 |
<div class="wrap">
|
189 |
<h1><?php _e('Advert Management', 'adrotate'); ?></h1>
|
7 |
Description: Monetise your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 4.7
|
11 |
License: GPLv3
|
12 |
*/
|
13 |
|
22 |
------------------------------------------------------------------------------------ */
|
23 |
|
24 |
/*--- AdRotate values ---------------------------------------*/
|
25 |
+
define("ADROTATE_DISPLAY", '4.7');
|
26 |
define("ADROTATE_VERSION", 391);
|
27 |
define("ADROTATE_DB_VERSION", 64);
|
28 |
$plugin_folder = plugin_dir_path(__FILE__);
|
183 |
$year = date("Y");
|
184 |
}
|
185 |
$monthstart = mktime(0, 0, 0, $month, 1, $year);
|
186 |
+
$monthend = mktime(0, 0, 0, $month+1, 0, $year);
|
187 |
?>
|
188 |
<div class="wrap">
|
189 |
<h1><?php _e('Advert Management', 'adrotate'); ?></h1>
|
dashboard/publisher/adverts-edit.php
CHANGED
@@ -48,10 +48,10 @@ if($ad_edit_id) {
|
|
48 |
echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
|
49 |
|
50 |
if(!preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image != '')
|
51 |
-
echo '<div class="error"><p>'. __('You did not use %asset% (or %image%) in your AdCode but did select a file to use!', 'adrotate
|
52 |
|
53 |
if(preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image == '')
|
54 |
-
echo '<div class="error"><p>'. __('You did use %asset% (or %image%) in your AdCode but did not select a file to use!', 'adrotate
|
55 |
|
56 |
if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
|
57 |
echo '<div class="error"><p>'. __('There is a problem saving the image. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
|
@@ -341,23 +341,23 @@ if($edit_banner->imagetype == "field") {
|
|
341 |
</td>
|
342 |
</tr>
|
343 |
<tr>
|
344 |
-
<th width="15%" valign="top"><?php _e('Mobile OS', 'adrotate
|
345 |
<td>
|
346 |
-
<label for="adrotate_ios"><center><input disabled type="checkbox" name="adrotate_ios" checked="1" /><br /><?php _e('iOS', 'adrotate
|
347 |
</td>
|
348 |
<td>
|
349 |
-
<label for="adrotate_android"><center><input disabled type="checkbox" name="adrotate_android" checked="1" /><br /><?php _e('Android', 'adrotate
|
350 |
</td>
|
351 |
<td>
|
352 |
-
<label for="adrotate_other"><center><input disabled type="checkbox" name="adrotate_other" checked="1" /><br /><?php _e('Others', 'adrotate
|
353 |
</td>
|
354 |
</tr>
|
355 |
</tbody>
|
356 |
</table>
|
357 |
<center><?php _e('With AdRotate Pro you can easily select which devices and mobile operating systems the advert should show on!', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!</center>
|
358 |
|
359 |
-
<h2><?php _e('Geo Targeting', 'adrotate
|
360 |
-
<p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate
|
361 |
|
362 |
<div id="dashboard-widgets-wrap">
|
363 |
<div id="dashboard-widgets" class="metabox-holder">
|
@@ -415,7 +415,7 @@ if($edit_banner->imagetype == "field") {
|
|
415 |
|
416 |
<p><strong>Enter cities, metro IDs, States or State ISO codes</strong></p>
|
417 |
<textarea name="adrotate_geo_cities" cols="40" rows="6" disabled>Amsterdam, 29022, Noord Holland, New York, California, Tokyo, London, CA, NY, Ohio</textarea><br />
|
418 |
-
<p><em><?php _e('A comma separated list of items:', 'adrotate
|
419 |
</div>
|
420 |
</div>
|
421 |
|
48 |
echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
|
49 |
|
50 |
if(!preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image != '')
|
51 |
+
echo '<div class="error"><p>'. __('You did not use %asset% (or %image%) in your AdCode but did select a file to use!', 'adrotate').'</p></div>';
|
52 |
|
53 |
if(preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image == '')
|
54 |
+
echo '<div class="error"><p>'. __('You did use %asset% (or %image%) in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
|
55 |
|
56 |
if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
|
57 |
echo '<div class="error"><p>'. __('There is a problem saving the image. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
|
341 |
</td>
|
342 |
</tr>
|
343 |
<tr>
|
344 |
+
<th width="15%" valign="top"><?php _e('Mobile OS', 'adrotate'); ?></th>
|
345 |
<td>
|
346 |
+
<label for="adrotate_ios"><center><input disabled type="checkbox" name="adrotate_ios" checked="1" /><br /><?php _e('iOS', 'adrotate'); ?></center></label>
|
347 |
</td>
|
348 |
<td>
|
349 |
+
<label for="adrotate_android"><center><input disabled type="checkbox" name="adrotate_android" checked="1" /><br /><?php _e('Android', 'adrotate'); ?></center></label>
|
350 |
</td>
|
351 |
<td>
|
352 |
+
<label for="adrotate_other"><center><input disabled type="checkbox" name="adrotate_other" checked="1" /><br /><?php _e('Others', 'adrotate'); ?></center></label>
|
353 |
</td>
|
354 |
</tr>
|
355 |
</tbody>
|
356 |
</table>
|
357 |
<center><?php _e('With AdRotate Pro you can easily select which devices and mobile operating systems the advert should show on!', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!</center>
|
358 |
|
359 |
+
<h2><?php _e('Geo Targeting', 'adrotate'); ?></h2>
|
360 |
+
<p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?></em></p>
|
361 |
|
362 |
<div id="dashboard-widgets-wrap">
|
363 |
<div id="dashboard-widgets" class="metabox-holder">
|
415 |
|
416 |
<p><strong>Enter cities, metro IDs, States or State ISO codes</strong></p>
|
417 |
<textarea name="adrotate_geo_cities" cols="40" rows="6" disabled>Amsterdam, 29022, Noord Holland, New York, California, Tokyo, London, CA, NY, Ohio</textarea><br />
|
418 |
+
<p><em><?php _e('A comma separated list of items:', 'adrotate'); ?> (Alkmaar, New York, Manila, Tokyo) <?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate'); ?></em></p>
|
419 |
</div>
|
420 |
</div>
|
421 |
|
dashboard/publisher/groups-edit.php
CHANGED
@@ -196,31 +196,31 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
196 |
<div id="postbox-container-1" class="postbox-container" style="width:50%;">
|
197 |
<div class="meta-box-sortables">
|
198 |
|
199 |
-
<h2><?php _e('Post Injection', 'adrotate
|
200 |
<div class="postbox-ajdg">
|
201 |
<div class="inside">
|
202 |
<p><label for="adrotate_cat_location">
|
203 |
<select tabindex="18" name="adrotate_cat_location">
|
204 |
-
<option value="0" <?php if($edit_group->cat_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate
|
205 |
-
<option value="5" <?php if($edit_group->cat_loc == 5) { echo 'selected'; } ?>><?php _e('Widget', 'adrotate
|
206 |
-
<option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate
|
207 |
-
<option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate
|
208 |
-
<option value="3" <?php if($edit_group->cat_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate
|
209 |
-
<option value="4" <?php if($edit_group->cat_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate
|
210 |
</select>
|
211 |
</label>
|
212 |
<label for="adrotate_cat_paragraph">
|
213 |
<select tabindex="19" name="adrotate_cat_paragraph">
|
214 |
<option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
|
215 |
-
<option value="99" <?php if($edit_group->cat_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate
|
216 |
-
<option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate
|
217 |
-
<option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate
|
218 |
-
<option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate
|
219 |
-
<option value="4" <?php if($edit_group->cat_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate
|
220 |
-
<option value="5" <?php if($edit_group->cat_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate
|
221 |
-
<option value="6" <?php if($edit_group->cat_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate
|
222 |
-
<option value="7" <?php if($edit_group->cat_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate
|
223 |
-
<option value="8" <?php if($edit_group->cat_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate
|
224 |
</select>
|
225 |
</label></p>
|
226 |
<p><strong>Select Categories</strong></p>
|
@@ -236,31 +236,31 @@ if(!is_array($meta_array)) $meta_array = array();
|
|
236 |
<div id="postbox-container-3" class="postbox-container" style="width:50%;">
|
237 |
<div class="meta-box-sortables">
|
238 |
|
239 |
-
<h2><?php _e('Page Injection', 'adrotate
|
240 |
<div class="postbox-ajdg">
|
241 |
<div class="inside">
|
242 |
<p><label for="adrotate_page_location">
|
243 |
<select tabindex="20" name="adrotate_page_location">
|
244 |
-
<option value="0" <?php if($edit_group->page_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate
|
245 |
-
<option value="5" <?php if($edit_group->page_loc == 5) { echo 'selected'; } ?>><?php _e('Widget', 'adrotate
|
246 |
-
<option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate
|
247 |
-
<option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate
|
248 |
-
<option value="3" <?php if($edit_group->page_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate
|
249 |
-
<option value="4" <?php if($edit_group->page_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate
|
250 |
</select>
|
251 |
</label>
|
252 |
<label for="adrotate_page_paragraph">
|
253 |
<select tabindex="21" name="adrotate_page_paragraph">
|
254 |
<option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
|
255 |
-
<option value="99" <?php if($edit_group->page_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate
|
256 |
-
<option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate
|
257 |
-
<option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate
|
258 |
-
<option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate
|
259 |
-
<option value="4" <?php if($edit_group->page_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate
|
260 |
-
<option value="5" <?php if($edit_group->page_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate
|
261 |
-
<option value="6" <?php if($edit_group->page_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate
|
262 |
-
<option value="7" <?php if($edit_group->page_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate
|
263 |
-
<option value="8" <?php if($edit_group->page_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate
|
264 |
</select>
|
265 |
</label></p>
|
266 |
|
196 |
<div id="postbox-container-1" class="postbox-container" style="width:50%;">
|
197 |
<div class="meta-box-sortables">
|
198 |
|
199 |
+
<h2><?php _e('Post Injection', 'adrotate'); ?></h2>
|
200 |
<div class="postbox-ajdg">
|
201 |
<div class="inside">
|
202 |
<p><label for="adrotate_cat_location">
|
203 |
<select tabindex="18" name="adrotate_cat_location">
|
204 |
+
<option value="0" <?php if($edit_group->cat_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
|
205 |
+
<option value="5" <?php if($edit_group->cat_loc == 5) { echo 'selected'; } ?>><?php _e('Widget', 'adrotate'); ?></option>
|
206 |
+
<option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
|
207 |
+
<option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
|
208 |
+
<option value="3" <?php if($edit_group->cat_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
|
209 |
+
<option value="4" <?php if($edit_group->cat_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate'); ?></option>
|
210 |
</select>
|
211 |
</label>
|
212 |
<label for="adrotate_cat_paragraph">
|
213 |
<select tabindex="19" name="adrotate_cat_paragraph">
|
214 |
<option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
|
215 |
+
<option value="99" <?php if($edit_group->cat_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate'); ?></option>
|
216 |
+
<option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate'); ?></option>
|
217 |
+
<option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate'); ?></option>
|
218 |
+
<option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate'); ?></option>
|
219 |
+
<option value="4" <?php if($edit_group->cat_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate'); ?></option>
|
220 |
+
<option value="5" <?php if($edit_group->cat_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate'); ?></option>
|
221 |
+
<option value="6" <?php if($edit_group->cat_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate'); ?></option>
|
222 |
+
<option value="7" <?php if($edit_group->cat_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate'); ?></option>
|
223 |
+
<option value="8" <?php if($edit_group->cat_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate'); ?></option>
|
224 |
</select>
|
225 |
</label></p>
|
226 |
<p><strong>Select Categories</strong></p>
|
236 |
<div id="postbox-container-3" class="postbox-container" style="width:50%;">
|
237 |
<div class="meta-box-sortables">
|
238 |
|
239 |
+
<h2><?php _e('Page Injection', 'adrotate'); ?></h2>
|
240 |
<div class="postbox-ajdg">
|
241 |
<div class="inside">
|
242 |
<p><label for="adrotate_page_location">
|
243 |
<select tabindex="20" name="adrotate_page_location">
|
244 |
+
<option value="0" <?php if($edit_group->page_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
|
245 |
+
<option value="5" <?php if($edit_group->page_loc == 5) { echo 'selected'; } ?>><?php _e('Widget', 'adrotate'); ?></option>
|
246 |
+
<option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
|
247 |
+
<option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
|
248 |
+
<option value="3" <?php if($edit_group->page_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
|
249 |
+
<option value="4" <?php if($edit_group->page_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate'); ?></option>
|
250 |
</select>
|
251 |
</label>
|
252 |
<label for="adrotate_page_paragraph">
|
253 |
<select tabindex="21" name="adrotate_page_paragraph">
|
254 |
<option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
|
255 |
+
<option value="99" <?php if($edit_group->page_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate'); ?></option>
|
256 |
+
<option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate'); ?></option>
|
257 |
+
<option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate'); ?></option>
|
258 |
+
<option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate'); ?></option>
|
259 |
+
<option value="4" <?php if($edit_group->page_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate'); ?></option>
|
260 |
+
<option value="5" <?php if($edit_group->page_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate'); ?></option>
|
261 |
+
<option value="6" <?php if($edit_group->page_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate'); ?></option>
|
262 |
+
<option value="7" <?php if($edit_group->page_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate'); ?></option>
|
263 |
+
<option value="8" <?php if($edit_group->page_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate'); ?></option>
|
264 |
</select>
|
265 |
</label></p>
|
266 |
|
dashboard/publisher/statistics-main.php
CHANGED
@@ -52,7 +52,6 @@
|
|
52 |
|
53 |
<h2><?php _e('Monthly overview of clicks and impressions', 'adrotate'); ?></h2>
|
54 |
<table class="widefat" style="margin-top: .5em">
|
55 |
-
|
56 |
<tbody>
|
57 |
<tr>
|
58 |
<th colspan="3">
|
@@ -61,12 +60,11 @@
|
|
61 |
</th>
|
62 |
</tr>
|
63 |
<tr>
|
64 |
-
<td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate
|
65 |
-
<td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate
|
66 |
-
<td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate
|
67 |
</tr>
|
68 |
</tbody>
|
69 |
-
|
70 |
</table>
|
71 |
|
72 |
<p><center>
|
52 |
|
53 |
<h2><?php _e('Monthly overview of clicks and impressions', 'adrotate'); ?></h2>
|
54 |
<table class="widefat" style="margin-top: .5em">
|
|
|
55 |
<tbody>
|
56 |
<tr>
|
57 |
<th colspan="3">
|
60 |
</th>
|
61 |
</tr>
|
62 |
<tr>
|
63 |
+
<td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
|
64 |
+
<td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate'); ?><br /><div class="number_large"><?php echo $stats_graph_month['clicks']; ?></div></div></td>
|
65 |
+
<td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate'); ?><br /><div class="number_large"><?php echo $ctr_graph_month; ?> %</div></div></td>
|
66 |
</tr>
|
67 |
</tbody>
|
|
|
68 |
</table>
|
69 |
|
70 |
<p><center>
|
dashboard/settings/maintenance.php
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
<input type="submit" id="post-role-submit" name="adrotate_db_cleanup_submit" value="<?php _e('Clean-up Database', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to clean up your database. This may delete expired schedules, older statistics and try to delete export files', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n<?php _e('THIS ACTION CAN NOT BE UNDONE!', 'adrotate'); ?>')" /><br />
|
31 |
<label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 356 days.', 'adrotate'); ?></label><br />
|
32 |
<label for="adrotate_db_cleanup_exportfiles"><input type="checkbox" name="adrotate_db_cleanup_exportfiles" value="1" /> <?php _e('Delete leftover export files.', 'adrotate'); ?></label><br />
|
33 |
-
<span class="description"><?php _e('For when you create an advert, group or schedule and it does not save or keep changes you make.', 'adrotate
|
34 |
</td>
|
35 |
</tr>
|
36 |
<tr>
|
@@ -64,31 +64,31 @@
|
|
64 |
<td colspan="3"><?php _e('Normal', 'adrotate'); ?>: <?php echo $advert_status['normal']; ?>, <?php _e('Error', 'adrotate'); ?>: <?php echo $advert_status['error']; ?>, <?php _e('Expired', 'adrotate'); ?>: <?php echo $advert_status['expired']; ?>, <?php _e('Expires Soon', 'adrotate'); ?>: <?php echo $advert_status['expiressoon']; ?>, <?php _e('Unknown', 'adrotate'); ?>: <?php echo $advert_status['unknown']; ?>.</td>
|
65 |
</tr>
|
66 |
<tr>
|
67 |
-
<th width="15%"><?php _e('Banners/assets Folder', 'adrotate
|
68 |
<td colspan="3">
|
69 |
<?php
|
70 |
echo WP_CONTENT_DIR.'/'.$adrotate_config['banner_folder'].'/ -> ';
|
71 |
-
echo (is_writeable(WP_CONTENT_DIR.'/'.$adrotate_config['banner_folder']).'/') ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate
|
72 |
?>
|
73 |
</td>
|
74 |
</tr>
|
75 |
<tr>
|
76 |
-
<th width="15%"><?php _e('Reports Folder', 'adrotate
|
77 |
<td colspan="3">
|
78 |
<?php
|
79 |
echo WP_CONTENT_DIR.'/reports/'.' -> ';
|
80 |
-
echo (is_writable(WP_CONTENT_DIR.'/reports/')) ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate
|
81 |
?>
|
82 |
</td>
|
83 |
</tr>
|
84 |
<tr>
|
85 |
<th width="15%"><?php _e('Advert evaluation', 'adrotate'); ?></th>
|
86 |
-
<td><?php if(!$adevaluate) '<span style="color:#CC2900;">'._e('Not scheduled! Re-activate the plugin from the plugins page.', 'adrotate
|
87 |
-
<th width="15%"><?php _e('Clean Trackerdata', 'adrotate
|
88 |
-
<td><?php if(!$tracker) '<span style="color:#CC2900;">'._e('Not scheduled!', 'adrotate
|
89 |
</tr>
|
90 |
<tr>
|
91 |
-
<th valign="top"><?php _e('Background tasks', 'adrotate
|
92 |
<td colspan="3">
|
93 |
<a class="button" href="admin.php?page=adrotate&tasks=1"><?php _e('Reset background tasks', 'adrotate'); ?></a>
|
94 |
</td>
|
@@ -105,7 +105,7 @@
|
|
105 |
<td><?php _e('Current:', 'adrotate'); ?> <?php echo '<span style="color:#009900;">'.$adrotate_db_version['current'].'</span>'; ?> <?php if($adrotate_db_version['current'] != ADROTATE_DB_VERSION) { echo '<span style="color:#CC2900;">'; _e('Should be:', 'adrotate'); echo ' '.ADROTATE_DB_VERSION; echo '</span>'; } ?><br /><?php _e('Previous:', 'adrotate'); ?> <?php echo $adrotate_db_version['previous']; ?></td>
|
106 |
</tr>
|
107 |
<tr>
|
108 |
-
<th valign="top"><?php _e('Manual upgrade', 'adrotate
|
109 |
<td colspan="3">
|
110 |
<a class="button" href="admin.php?page=adrotate&upgrade=1" onclick="return confirm('<?php _e('YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE.', 'adrotate'); ?>\n<?php _e('Make sure you have a database backup!', 'adrotate'); ?>\n\n<?php _e('This might take a while and may slow down your site during this action!', 'adrotate'); ?>\n\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')"><?php _e('Run updater', 'adrotate'); ?></a>
|
111 |
</td>
|
30 |
<input type="submit" id="post-role-submit" name="adrotate_db_cleanup_submit" value="<?php _e('Clean-up Database', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to clean up your database. This may delete expired schedules, older statistics and try to delete export files', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n<?php _e('THIS ACTION CAN NOT BE UNDONE!', 'adrotate'); ?>')" /><br />
|
31 |
<label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 356 days.', 'adrotate'); ?></label><br />
|
32 |
<label for="adrotate_db_cleanup_exportfiles"><input type="checkbox" name="adrotate_db_cleanup_exportfiles" value="1" /> <?php _e('Delete leftover export files.', 'adrotate'); ?></label><br />
|
33 |
+
<span class="description"><?php _e('For when you create an advert, group or schedule and it does not save or keep changes you make.', 'adrotate'); ?><br /><?php _e('Additionally you can delete statistics and/or unused export files. This will improve the speed of your site.', 'adrotate'); ?></span>
|
34 |
</td>
|
35 |
</tr>
|
36 |
<tr>
|
64 |
<td colspan="3"><?php _e('Normal', 'adrotate'); ?>: <?php echo $advert_status['normal']; ?>, <?php _e('Error', 'adrotate'); ?>: <?php echo $advert_status['error']; ?>, <?php _e('Expired', 'adrotate'); ?>: <?php echo $advert_status['expired']; ?>, <?php _e('Expires Soon', 'adrotate'); ?>: <?php echo $advert_status['expiressoon']; ?>, <?php _e('Unknown', 'adrotate'); ?>: <?php echo $advert_status['unknown']; ?>.</td>
|
65 |
</tr>
|
66 |
<tr>
|
67 |
+
<th width="15%"><?php _e('Banners/assets Folder', 'adrotate'); ?></th>
|
68 |
<td colspan="3">
|
69 |
<?php
|
70 |
echo WP_CONTENT_DIR.'/'.$adrotate_config['banner_folder'].'/ -> ';
|
71 |
+
echo (is_writeable(WP_CONTENT_DIR.'/'.$adrotate_config['banner_folder']).'/') ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate').'</span>' : '<span style="color:#CC2900;">'.__('Not writable or does not exist', 'adrotate').'</span>';
|
72 |
?>
|
73 |
</td>
|
74 |
</tr>
|
75 |
<tr>
|
76 |
+
<th width="15%"><?php _e('Reports Folder', 'adrotate'); ?></th>
|
77 |
<td colspan="3">
|
78 |
<?php
|
79 |
echo WP_CONTENT_DIR.'/reports/'.' -> ';
|
80 |
+
echo (is_writable(WP_CONTENT_DIR.'/reports/')) ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate').'</span>' : '<span style="color:#CC2900;">'.__('Not writable or does not exist', 'adrotate').'</span>';
|
81 |
?>
|
82 |
</td>
|
83 |
</tr>
|
84 |
<tr>
|
85 |
<th width="15%"><?php _e('Advert evaluation', 'adrotate'); ?></th>
|
86 |
+
<td><?php if(!$adevaluate) '<span style="color:#CC2900;">'._e('Not scheduled! Re-activate the plugin from the plugins page.', 'adrotate').'</span>'; else echo '<span style="color:#009900;">'.date_i18n(get_option('date_format')." H:i", $adevaluate).'</span>'; ?></td>
|
87 |
+
<th width="15%"><?php _e('Clean Trackerdata', 'adrotate'); ?></th>
|
88 |
+
<td><?php if(!$tracker) '<span style="color:#CC2900;">'._e('Not scheduled!', 'adrotate').'</span>'; else echo '<span style="color:#009900;">'.date_i18n(get_option('date_format')." H:i", $tracker).'</span>'; ?></td>
|
89 |
</tr>
|
90 |
<tr>
|
91 |
+
<th valign="top"><?php _e('Background tasks', 'adrotate'); ?></th>
|
92 |
<td colspan="3">
|
93 |
<a class="button" href="admin.php?page=adrotate&tasks=1"><?php _e('Reset background tasks', 'adrotate'); ?></a>
|
94 |
</td>
|
105 |
<td><?php _e('Current:', 'adrotate'); ?> <?php echo '<span style="color:#009900;">'.$adrotate_db_version['current'].'</span>'; ?> <?php if($adrotate_db_version['current'] != ADROTATE_DB_VERSION) { echo '<span style="color:#CC2900;">'; _e('Should be:', 'adrotate'); echo ' '.ADROTATE_DB_VERSION; echo '</span>'; } ?><br /><?php _e('Previous:', 'adrotate'); ?> <?php echo $adrotate_db_version['previous']; ?></td>
|
106 |
</tr>
|
107 |
<tr>
|
108 |
+
<th valign="top"><?php _e('Manual upgrade', 'adrotate'); ?></th>
|
109 |
<td colspan="3">
|
110 |
<a class="button" href="admin.php?page=adrotate&upgrade=1" onclick="return confirm('<?php _e('YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE.', 'adrotate'); ?>\n<?php _e('Make sure you have a database backup!', 'adrotate'); ?>\n\n<?php _e('This might take a while and may slow down your site during this action!', 'adrotate'); ?>\n\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')"><?php _e('Run updater', 'adrotate'); ?></a>
|
111 |
</td>
|
language/adrotate-bg_BG.mo
CHANGED
Binary file
|
language/adrotate-bg_BG.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -210,16 +210,36 @@ msgid ""
|
|
210 |
"site!"
|
211 |
msgstr ""
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
#: adrotate-output.php:643
|
214 |
msgid ""
|
215 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
216 |
"not set."
|
217 |
msgstr ""
|
218 |
|
|
|
|
|
|
|
|
|
219 |
#: adrotate-output.php:648
|
220 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
221 |
msgstr ""
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
224 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
225 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -827,11 +847,11 @@ msgstr ""
|
|
827 |
msgid "Join the Media.net advertising network"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: dashboard/info.php:
|
831 |
msgid "Sponsored offers"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: dashboard/info.php:
|
835 |
msgid ""
|
836 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
837 |
"and AdRotate a lot!"
|
@@ -922,7 +942,7 @@ msgstr "Показана"
|
|
922 |
#: dashboard/publisher/statistics-main.php:29
|
923 |
#: dashboard/publisher/statistics-main.php:43
|
924 |
#: dashboard/publisher/statistics-main.php:47
|
925 |
-
#: dashboard/publisher/statistics-main.php:
|
926 |
msgid "Clicks"
|
927 |
msgstr "Кликове"
|
928 |
|
@@ -941,7 +961,7 @@ msgstr "Кликове"
|
|
941 |
#: dashboard/publisher/statistics-main.php:30
|
942 |
#: dashboard/publisher/statistics-main.php:44
|
943 |
#: dashboard/publisher/statistics-main.php:48
|
944 |
-
#: dashboard/publisher/statistics-main.php:
|
945 |
msgid "CTR"
|
946 |
msgstr "CTR"
|
947 |
|
@@ -1166,7 +1186,7 @@ msgstr "Получете по-голяма функционалност с AdRot
|
|
1166 |
#: dashboard/publisher/schedules-main.php:89
|
1167 |
#: dashboard/publisher/statistics-advert.php:140
|
1168 |
#: dashboard/publisher/statistics-group.php:112
|
1169 |
-
#: dashboard/publisher/statistics-main.php:
|
1170 |
#, fuzzy
|
1171 |
#| msgid "Upgrade today"
|
1172 |
msgid "Upgrade now"
|
@@ -2112,7 +2132,7 @@ msgstr ""
|
|
2112 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2113 |
#: dashboard/publisher/statistics-advert.php:140
|
2114 |
#: dashboard/publisher/statistics-group.php:112
|
2115 |
-
#: dashboard/publisher/statistics-main.php:
|
2116 |
msgid "Get more features with AdRotate Pro"
|
2117 |
msgstr "Получете по-голяма функционалност с AdRotate Pro"
|
2118 |
|
@@ -2212,7 +2232,7 @@ msgstr "Таймер за кликове"
|
|
2212 |
#: dashboard/publisher/statistics-main.php:28
|
2213 |
#: dashboard/publisher/statistics-main.php:42
|
2214 |
#: dashboard/publisher/statistics-main.php:46
|
2215 |
-
#: dashboard/publisher/statistics-main.php:
|
2216 |
msgid "Impressions"
|
2217 |
msgstr "Импресии"
|
2218 |
|
@@ -2260,7 +2280,7 @@ msgstr "Максимум импресии"
|
|
2260 |
|
2261 |
#: dashboard/publisher/statistics-advert.php:141
|
2262 |
#: dashboard/publisher/statistics-group.php:113
|
2263 |
-
#: dashboard/publisher/statistics-main.php:
|
2264 |
#: dashboard/settings/notifications.php:60
|
2265 |
#: dashboard/settings/notifications.php:90
|
2266 |
msgid "Note:"
|
@@ -2268,7 +2288,7 @@ msgstr "Забележка:"
|
|
2268 |
|
2269 |
#: dashboard/publisher/statistics-advert.php:141
|
2270 |
#: dashboard/publisher/statistics-group.php:113
|
2271 |
-
#: dashboard/publisher/statistics-main.php:
|
2272 |
msgid ""
|
2273 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2274 |
"counted by other parties."
|
@@ -4501,9 +4521,6 @@ msgstr ""
|
|
4501 |
#~ "Активирайте вашият AdRotate Лиценз, за да попучавате бърза, индивидуална "
|
4502 |
#~ "помощ, чрез системата за докладване на проблеми."
|
4503 |
|
4504 |
-
#~ msgid "Where are your banner ads?"
|
4505 |
-
#~ msgstr "Къде се намират вашите рекламни банери?"
|
4506 |
-
|
4507 |
#~ msgid ""
|
4508 |
#~ "Check this box if you use WP Super Cache on your site. It is reported by "
|
4509 |
#~ "users that if you have version 1.4 or newer this option may not work."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:02+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:02+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
|
9 |
"Language: bg_BG\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
210 |
"site!"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: adrotate-output.php:640
|
214 |
+
#, fuzzy
|
215 |
+
#| msgid "W3 Total Caching"
|
216 |
+
msgid "Enable W3 Total Cache"
|
217 |
+
msgstr "W3 Total Caching"
|
218 |
+
|
219 |
#: adrotate-output.php:643
|
220 |
msgid ""
|
221 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
222 |
"not set."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: adrotate-output.php:643
|
226 |
+
msgid "How to configure W3 Total Cache"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
#: adrotate-output.php:648
|
230 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: adrotate-output.php:648
|
234 |
+
#, fuzzy
|
235 |
+
#| msgid "Where are your banner ads?"
|
236 |
+
msgid "Set up your banner folder"
|
237 |
+
msgstr "Къде се намират вашите рекламни банери?"
|
238 |
+
|
239 |
+
#: adrotate-output.php:667
|
240 |
+
msgid "your attention:"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
244 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
245 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
847 |
msgid "Join the Media.net advertising network"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: dashboard/info.php:129
|
851 |
msgid "Sponsored offers"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: dashboard/info.php:135
|
855 |
msgid ""
|
856 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
857 |
"and AdRotate a lot!"
|
942 |
#: dashboard/publisher/statistics-main.php:29
|
943 |
#: dashboard/publisher/statistics-main.php:43
|
944 |
#: dashboard/publisher/statistics-main.php:47
|
945 |
+
#: dashboard/publisher/statistics-main.php:64
|
946 |
msgid "Clicks"
|
947 |
msgstr "Кликове"
|
948 |
|
961 |
#: dashboard/publisher/statistics-main.php:30
|
962 |
#: dashboard/publisher/statistics-main.php:44
|
963 |
#: dashboard/publisher/statistics-main.php:48
|
964 |
+
#: dashboard/publisher/statistics-main.php:65
|
965 |
msgid "CTR"
|
966 |
msgstr "CTR"
|
967 |
|
1186 |
#: dashboard/publisher/schedules-main.php:89
|
1187 |
#: dashboard/publisher/statistics-advert.php:140
|
1188 |
#: dashboard/publisher/statistics-group.php:112
|
1189 |
+
#: dashboard/publisher/statistics-main.php:71
|
1190 |
#, fuzzy
|
1191 |
#| msgid "Upgrade today"
|
1192 |
msgid "Upgrade now"
|
2132 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2133 |
#: dashboard/publisher/statistics-advert.php:140
|
2134 |
#: dashboard/publisher/statistics-group.php:112
|
2135 |
+
#: dashboard/publisher/statistics-main.php:71
|
2136 |
msgid "Get more features with AdRotate Pro"
|
2137 |
msgstr "Получете по-голяма функционалност с AdRotate Pro"
|
2138 |
|
2232 |
#: dashboard/publisher/statistics-main.php:28
|
2233 |
#: dashboard/publisher/statistics-main.php:42
|
2234 |
#: dashboard/publisher/statistics-main.php:46
|
2235 |
+
#: dashboard/publisher/statistics-main.php:63
|
2236 |
msgid "Impressions"
|
2237 |
msgstr "Импресии"
|
2238 |
|
2280 |
|
2281 |
#: dashboard/publisher/statistics-advert.php:141
|
2282 |
#: dashboard/publisher/statistics-group.php:113
|
2283 |
+
#: dashboard/publisher/statistics-main.php:72
|
2284 |
#: dashboard/settings/notifications.php:60
|
2285 |
#: dashboard/settings/notifications.php:90
|
2286 |
msgid "Note:"
|
2288 |
|
2289 |
#: dashboard/publisher/statistics-advert.php:141
|
2290 |
#: dashboard/publisher/statistics-group.php:113
|
2291 |
+
#: dashboard/publisher/statistics-main.php:72
|
2292 |
msgid ""
|
2293 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2294 |
"counted by other parties."
|
4521 |
#~ "Активирайте вашият AdRotate Лиценз, за да попучавате бърза, индивидуална "
|
4522 |
#~ "помощ, чрез системата за докладване на проблеми."
|
4523 |
|
|
|
|
|
|
|
4524 |
#~ msgid ""
|
4525 |
#~ "Check this box if you use WP Super Cache on your site. It is reported by "
|
4526 |
#~ "users that if you have version 1.4 or newer this option may not work."
|
language/adrotate-el.mo
CHANGED
Binary file
|
language/adrotate-el.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
10 |
"Language: el\n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Generator: Poedit 2.0.
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
@@ -222,16 +222,36 @@ msgid ""
|
|
222 |
"site!"
|
223 |
msgstr ""
|
224 |
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
#: adrotate-output.php:643
|
226 |
msgid ""
|
227 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
228 |
"not set."
|
229 |
msgstr ""
|
230 |
|
|
|
|
|
|
|
|
|
231 |
#: adrotate-output.php:648
|
232 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
233 |
msgstr ""
|
234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
236 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
237 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -833,11 +853,11 @@ msgstr ""
|
|
833 |
msgid "Join the Media.net advertising network"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: dashboard/info.php:
|
837 |
msgid "Sponsored offers"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: dashboard/info.php:
|
841 |
msgid ""
|
842 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
843 |
"and AdRotate a lot!"
|
@@ -933,7 +953,7 @@ msgstr "Εμφανίζονται"
|
|
933 |
#: dashboard/publisher/statistics-main.php:29
|
934 |
#: dashboard/publisher/statistics-main.php:43
|
935 |
#: dashboard/publisher/statistics-main.php:47
|
936 |
-
#: dashboard/publisher/statistics-main.php:
|
937 |
msgid "Clicks"
|
938 |
msgstr "Clicks"
|
939 |
|
@@ -952,7 +972,7 @@ msgstr "Clicks"
|
|
952 |
#: dashboard/publisher/statistics-main.php:30
|
953 |
#: dashboard/publisher/statistics-main.php:44
|
954 |
#: dashboard/publisher/statistics-main.php:48
|
955 |
-
#: dashboard/publisher/statistics-main.php:
|
956 |
msgid "CTR"
|
957 |
msgstr "CTR"
|
958 |
|
@@ -1182,7 +1202,7 @@ msgstr "Για περισσότερες δυνατότητες αποκτήστ
|
|
1182 |
#: dashboard/publisher/schedules-main.php:89
|
1183 |
#: dashboard/publisher/statistics-advert.php:140
|
1184 |
#: dashboard/publisher/statistics-group.php:112
|
1185 |
-
#: dashboard/publisher/statistics-main.php:
|
1186 |
#, fuzzy
|
1187 |
msgid "Upgrade now"
|
1188 |
msgstr "Σήμερα"
|
@@ -2136,7 +2156,7 @@ msgstr ""
|
|
2136 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2137 |
#: dashboard/publisher/statistics-advert.php:140
|
2138 |
#: dashboard/publisher/statistics-group.php:112
|
2139 |
-
#: dashboard/publisher/statistics-main.php:
|
2140 |
#, fuzzy
|
2141 |
msgid "Get more features with AdRotate Pro"
|
2142 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
@@ -2237,7 +2257,7 @@ msgstr "Χρονομετρητής εμφανίσεων"
|
|
2237 |
#: dashboard/publisher/statistics-main.php:28
|
2238 |
#: dashboard/publisher/statistics-main.php:42
|
2239 |
#: dashboard/publisher/statistics-main.php:46
|
2240 |
-
#: dashboard/publisher/statistics-main.php:
|
2241 |
msgid "Impressions"
|
2242 |
msgstr "Εμφανίσεις"
|
2243 |
|
@@ -2285,7 +2305,7 @@ msgstr "Max Impressions"
|
|
2285 |
|
2286 |
#: dashboard/publisher/statistics-advert.php:141
|
2287 |
#: dashboard/publisher/statistics-group.php:113
|
2288 |
-
#: dashboard/publisher/statistics-main.php:
|
2289 |
#: dashboard/settings/notifications.php:60
|
2290 |
#: dashboard/settings/notifications.php:90
|
2291 |
msgid "Note:"
|
@@ -2293,7 +2313,7 @@ msgstr "Σημείωση:"
|
|
2293 |
|
2294 |
#: dashboard/publisher/statistics-advert.php:141
|
2295 |
#: dashboard/publisher/statistics-group.php:113
|
2296 |
-
#: dashboard/publisher/statistics-main.php:
|
2297 |
msgid ""
|
2298 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2299 |
"counted by other parties."
|
@@ -4215,9 +4235,6 @@ msgstr ""
|
|
4215 |
#~ msgid "AJdG Solutions"
|
4216 |
#~ msgstr "AJdG Solutions"
|
4217 |
|
4218 |
-
#~ msgid "Where are your banner ads?"
|
4219 |
-
#~ msgstr "Που βρίσκονται τα μπάνερ σας;"
|
4220 |
-
|
4221 |
#, fuzzy
|
4222 |
#~ msgid ""
|
4223 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:02+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:02+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
|
9 |
"<info@netglobe.eu>\n"
|
10 |
"Language: el\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 2.0.3\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
222 |
"site!"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: adrotate-output.php:640
|
226 |
+
#, fuzzy
|
227 |
+
#| msgid "W3 Total Caching"
|
228 |
+
msgid "Enable W3 Total Cache"
|
229 |
+
msgstr "W3 Total Caching"
|
230 |
+
|
231 |
#: adrotate-output.php:643
|
232 |
msgid ""
|
233 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
234 |
"not set."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:643
|
238 |
+
msgid "How to configure W3 Total Cache"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
#: adrotate-output.php:648
|
242 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: adrotate-output.php:648
|
246 |
+
#, fuzzy
|
247 |
+
#| msgid "Where are your banner ads?"
|
248 |
+
msgid "Set up your banner folder"
|
249 |
+
msgstr "Που βρίσκονται τα μπάνερ σας;"
|
250 |
+
|
251 |
+
#: adrotate-output.php:667
|
252 |
+
msgid "your attention:"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
256 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
257 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
853 |
msgid "Join the Media.net advertising network"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: dashboard/info.php:129
|
857 |
msgid "Sponsored offers"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: dashboard/info.php:135
|
861 |
msgid ""
|
862 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
863 |
"and AdRotate a lot!"
|
953 |
#: dashboard/publisher/statistics-main.php:29
|
954 |
#: dashboard/publisher/statistics-main.php:43
|
955 |
#: dashboard/publisher/statistics-main.php:47
|
956 |
+
#: dashboard/publisher/statistics-main.php:64
|
957 |
msgid "Clicks"
|
958 |
msgstr "Clicks"
|
959 |
|
972 |
#: dashboard/publisher/statistics-main.php:30
|
973 |
#: dashboard/publisher/statistics-main.php:44
|
974 |
#: dashboard/publisher/statistics-main.php:48
|
975 |
+
#: dashboard/publisher/statistics-main.php:65
|
976 |
msgid "CTR"
|
977 |
msgstr "CTR"
|
978 |
|
1202 |
#: dashboard/publisher/schedules-main.php:89
|
1203 |
#: dashboard/publisher/statistics-advert.php:140
|
1204 |
#: dashboard/publisher/statistics-group.php:112
|
1205 |
+
#: dashboard/publisher/statistics-main.php:71
|
1206 |
#, fuzzy
|
1207 |
msgid "Upgrade now"
|
1208 |
msgstr "Σήμερα"
|
2156 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2157 |
#: dashboard/publisher/statistics-advert.php:140
|
2158 |
#: dashboard/publisher/statistics-group.php:112
|
2159 |
+
#: dashboard/publisher/statistics-main.php:71
|
2160 |
#, fuzzy
|
2161 |
msgid "Get more features with AdRotate Pro"
|
2162 |
msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
|
2257 |
#: dashboard/publisher/statistics-main.php:28
|
2258 |
#: dashboard/publisher/statistics-main.php:42
|
2259 |
#: dashboard/publisher/statistics-main.php:46
|
2260 |
+
#: dashboard/publisher/statistics-main.php:63
|
2261 |
msgid "Impressions"
|
2262 |
msgstr "Εμφανίσεις"
|
2263 |
|
2305 |
|
2306 |
#: dashboard/publisher/statistics-advert.php:141
|
2307 |
#: dashboard/publisher/statistics-group.php:113
|
2308 |
+
#: dashboard/publisher/statistics-main.php:72
|
2309 |
#: dashboard/settings/notifications.php:60
|
2310 |
#: dashboard/settings/notifications.php:90
|
2311 |
msgid "Note:"
|
2313 |
|
2314 |
#: dashboard/publisher/statistics-advert.php:141
|
2315 |
#: dashboard/publisher/statistics-group.php:113
|
2316 |
+
#: dashboard/publisher/statistics-main.php:72
|
2317 |
msgid ""
|
2318 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2319 |
"counted by other parties."
|
4235 |
#~ msgid "AJdG Solutions"
|
4236 |
#~ msgstr "AJdG Solutions"
|
4237 |
|
|
|
|
|
|
|
4238 |
#, fuzzy
|
4239 |
#~ msgid ""
|
4240 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
language/adrotate-en_US.mo
CHANGED
Binary file
|
language/adrotate-en_US.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: en_US\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -199,16 +199,32 @@ msgid ""
|
|
199 |
"site!"
|
200 |
msgstr ""
|
201 |
|
|
|
|
|
|
|
|
|
202 |
#: adrotate-output.php:643
|
203 |
msgid ""
|
204 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
205 |
"not set."
|
206 |
msgstr ""
|
207 |
|
|
|
|
|
|
|
|
|
208 |
#: adrotate-output.php:648
|
209 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
210 |
msgstr ""
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
213 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
214 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -233,9 +249,8 @@ msgid ""
|
|
233 |
msgstr ""
|
234 |
|
235 |
#: adrotate-output.php:686
|
236 |
-
#, fuzzy
|
237 |
msgid "Thank you for your support!"
|
238 |
-
msgstr "
|
239 |
|
240 |
#: adrotate-output.php:747
|
241 |
msgid ""
|
@@ -469,9 +484,8 @@ msgid "Groups"
|
|
469 |
msgstr ""
|
470 |
|
471 |
#: adrotate.php:107 adrotate.php:348
|
472 |
-
#, fuzzy
|
473 |
msgid "Schedules"
|
474 |
-
msgstr "
|
475 |
|
476 |
#: adrotate.php:108 adrotate.php:388 dashboard/publisher/adverts-edit.php:167
|
477 |
#: dashboard/publisher/statistics-main.php:12
|
@@ -480,9 +494,8 @@ msgid "Statistics"
|
|
480 |
msgstr ""
|
481 |
|
482 |
#: adrotate.php:109
|
483 |
-
#, fuzzy
|
484 |
msgid "Media"
|
485 |
-
msgstr "
|
486 |
|
487 |
#: adrotate.php:110
|
488 |
msgid "Settings"
|
@@ -527,9 +540,8 @@ msgid ""
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: adrotate.php:446 dashboard/publisher/schedules-main.php:13
|
530 |
-
#, fuzzy
|
531 |
msgid "Get more features"
|
532 |
-
msgstr "
|
533 |
|
534 |
#: adrotate.php:446 dashboard/publisher/schedules-main.php:13
|
535 |
#, fuzzy
|
@@ -787,11 +799,11 @@ msgstr ""
|
|
787 |
msgid "Join the Media.net advertising network"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: dashboard/info.php:
|
791 |
msgid "Sponsored offers"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: dashboard/info.php:
|
795 |
msgid ""
|
796 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
797 |
"and AdRotate a lot!"
|
@@ -882,7 +894,7 @@ msgstr ""
|
|
882 |
#: dashboard/publisher/statistics-main.php:29
|
883 |
#: dashboard/publisher/statistics-main.php:43
|
884 |
#: dashboard/publisher/statistics-main.php:47
|
885 |
-
#: dashboard/publisher/statistics-main.php:
|
886 |
msgid "Clicks"
|
887 |
msgstr ""
|
888 |
|
@@ -901,7 +913,7 @@ msgstr ""
|
|
901 |
#: dashboard/publisher/statistics-main.php:30
|
902 |
#: dashboard/publisher/statistics-main.php:44
|
903 |
#: dashboard/publisher/statistics-main.php:48
|
904 |
-
#: dashboard/publisher/statistics-main.php:
|
905 |
msgid "CTR"
|
906 |
msgstr ""
|
907 |
|
@@ -1119,7 +1131,7 @@ msgstr ""
|
|
1119 |
#: dashboard/publisher/schedules-main.php:89
|
1120 |
#: dashboard/publisher/statistics-advert.php:140
|
1121 |
#: dashboard/publisher/statistics-group.php:112
|
1122 |
-
#: dashboard/publisher/statistics-main.php:
|
1123 |
msgid "Upgrade now"
|
1124 |
msgstr ""
|
1125 |
|
@@ -1256,9 +1268,8 @@ msgid "Normal impressions"
|
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: dashboard/publisher/adverts-edit.php:319
|
1259 |
-
#, fuzzy
|
1260 |
msgid "More than average"
|
1261 |
-
msgstr "
|
1262 |
|
1263 |
#: dashboard/publisher/adverts-edit.php:324
|
1264 |
msgid "Many impressions"
|
@@ -1494,9 +1505,8 @@ msgstr ""
|
|
1494 |
#: dashboard/publisher/adverts-generator.php:67
|
1495 |
#: dashboard/publisher/adverts-generator.php:73
|
1496 |
#: dashboard/publisher/adverts-generator.php:119
|
1497 |
-
#, fuzzy
|
1498 |
msgid "Available in AdRotate Pro."
|
1499 |
-
msgstr "
|
1500 |
|
1501 |
#: dashboard/publisher/adverts-generator.php:67
|
1502 |
msgid "Open the target website in a new window?"
|
@@ -1953,9 +1963,8 @@ msgid "No groups created!"
|
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: dashboard/publisher/media.php:17
|
1956 |
-
#, fuzzy
|
1957 |
msgid "Upload new file"
|
1958 |
-
msgstr "
|
1959 |
|
1960 |
#: dashboard/publisher/media.php:18
|
1961 |
#, fuzzy
|
@@ -1983,9 +1992,8 @@ msgid ""
|
|
1983 |
msgstr ""
|
1984 |
|
1985 |
#: dashboard/publisher/media.php:21
|
1986 |
-
#, fuzzy
|
1987 |
msgid "Upload file"
|
1988 |
-
msgstr "
|
1989 |
|
1990 |
#: dashboard/publisher/media.php:21
|
1991 |
msgid "Click only once per file!"
|
@@ -2011,10 +2019,9 @@ msgstr ""
|
|
2011 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2012 |
#: dashboard/publisher/statistics-advert.php:140
|
2013 |
#: dashboard/publisher/statistics-group.php:112
|
2014 |
-
#: dashboard/publisher/statistics-main.php:
|
2015 |
-
#, fuzzy
|
2016 |
msgid "Get more features with AdRotate Pro"
|
2017 |
-
msgstr "
|
2018 |
|
2019 |
#: dashboard/publisher/schedules-main.php:12
|
2020 |
msgid "Manage Schedules"
|
@@ -2034,9 +2041,8 @@ msgstr ""
|
|
2034 |
|
2035 |
#: dashboard/publisher/schedules-main.php:37
|
2036 |
#: dashboard/publisher/statistics-advert.php:114
|
2037 |
-
#, fuzzy
|
2038 |
msgid "Max Clicks"
|
2039 |
-
msgstr "
|
2040 |
|
2041 |
#: dashboard/publisher/schedules-main.php:70
|
2042 |
msgid "Mon:"
|
@@ -2071,9 +2077,8 @@ msgid "Between:"
|
|
2071 |
msgstr ""
|
2072 |
|
2073 |
#: dashboard/publisher/schedules-main.php:70
|
2074 |
-
#, fuzzy
|
2075 |
msgid "Impression spread:"
|
2076 |
-
msgstr "
|
2077 |
|
2078 |
#: dashboard/publisher/schedules-main.php:70
|
2079 |
msgid "Auto Delete:"
|
@@ -2107,7 +2112,7 @@ msgstr "Interval de clicks"
|
|
2107 |
#: dashboard/publisher/statistics-main.php:28
|
2108 |
#: dashboard/publisher/statistics-main.php:42
|
2109 |
#: dashboard/publisher/statistics-main.php:46
|
2110 |
-
#: dashboard/publisher/statistics-main.php:
|
2111 |
msgid "Impressions"
|
2112 |
msgstr ""
|
2113 |
|
@@ -2124,14 +2129,12 @@ msgid "Monthly overview of clicks and impressions"
|
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#: dashboard/publisher/statistics-advert.php:108
|
2127 |
-
#, fuzzy
|
2128 |
msgid "Periodic overview of clicks and impressions"
|
2129 |
-
msgstr "
|
2130 |
|
2131 |
#: dashboard/publisher/statistics-advert.php:112
|
2132 |
-
#, fuzzy
|
2133 |
msgid "Shown from"
|
2134 |
-
msgstr "
|
2135 |
|
2136 |
#: dashboard/publisher/statistics-advert.php:113
|
2137 |
#, fuzzy
|
@@ -2144,13 +2147,12 @@ msgid "Used"
|
|
2144 |
msgstr ""
|
2145 |
|
2146 |
#: dashboard/publisher/statistics-advert.php:115
|
2147 |
-
#, fuzzy
|
2148 |
msgid "Max Impressions"
|
2149 |
-
msgstr "
|
2150 |
|
2151 |
#: dashboard/publisher/statistics-advert.php:141
|
2152 |
#: dashboard/publisher/statistics-group.php:113
|
2153 |
-
#: dashboard/publisher/statistics-main.php:
|
2154 |
#: dashboard/settings/notifications.php:60
|
2155 |
#: dashboard/settings/notifications.php:90
|
2156 |
msgid "Note:"
|
@@ -2158,7 +2160,7 @@ msgstr ""
|
|
2158 |
|
2159 |
#: dashboard/publisher/statistics-advert.php:141
|
2160 |
#: dashboard/publisher/statistics-group.php:113
|
2161 |
-
#: dashboard/publisher/statistics-main.php:
|
2162 |
msgid ""
|
2163 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2164 |
"counted by other parties."
|
@@ -2670,9 +2672,8 @@ msgid "Clean Trackerdata"
|
|
2670 |
msgstr ""
|
2671 |
|
2672 |
#: dashboard/settings/maintenance.php:88
|
2673 |
-
#, fuzzy
|
2674 |
msgid "Not scheduled!"
|
2675 |
-
msgstr "
|
2676 |
|
2677 |
#: dashboard/settings/maintenance.php:91
|
2678 |
msgid "Background tasks"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:02+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:02+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: en_US\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
199 |
"site!"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: adrotate-output.php:640
|
203 |
+
msgid "Enable W3 Total Cache"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
#: adrotate-output.php:643
|
207 |
msgid ""
|
208 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
209 |
"not set."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: adrotate-output.php:643
|
213 |
+
msgid "How to configure W3 Total Cache"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
#: adrotate-output.php:648
|
217 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: adrotate-output.php:648
|
221 |
+
msgid "Set up your banner folder"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: adrotate-output.php:667
|
225 |
+
msgid "your attention:"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
229 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
230 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
249 |
msgstr ""
|
250 |
|
251 |
#: adrotate-output.php:686
|
|
|
252 |
msgid "Thank you for your support!"
|
253 |
+
msgstr ""
|
254 |
|
255 |
#: adrotate-output.php:747
|
256 |
msgid ""
|
484 |
msgstr ""
|
485 |
|
486 |
#: adrotate.php:107 adrotate.php:348
|
|
|
487 |
msgid "Schedules"
|
488 |
+
msgstr ""
|
489 |
|
490 |
#: adrotate.php:108 adrotate.php:388 dashboard/publisher/adverts-edit.php:167
|
491 |
#: dashboard/publisher/statistics-main.php:12
|
494 |
msgstr ""
|
495 |
|
496 |
#: adrotate.php:109
|
|
|
497 |
msgid "Media"
|
498 |
+
msgstr ""
|
499 |
|
500 |
#: adrotate.php:110
|
501 |
msgid "Settings"
|
540 |
msgstr ""
|
541 |
|
542 |
#: adrotate.php:446 dashboard/publisher/schedules-main.php:13
|
|
|
543 |
msgid "Get more features"
|
544 |
+
msgstr ""
|
545 |
|
546 |
#: adrotate.php:446 dashboard/publisher/schedules-main.php:13
|
547 |
#, fuzzy
|
799 |
msgid "Join the Media.net advertising network"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: dashboard/info.php:129
|
803 |
msgid "Sponsored offers"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: dashboard/info.php:135
|
807 |
msgid ""
|
808 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
809 |
"and AdRotate a lot!"
|
894 |
#: dashboard/publisher/statistics-main.php:29
|
895 |
#: dashboard/publisher/statistics-main.php:43
|
896 |
#: dashboard/publisher/statistics-main.php:47
|
897 |
+
#: dashboard/publisher/statistics-main.php:64
|
898 |
msgid "Clicks"
|
899 |
msgstr ""
|
900 |
|
913 |
#: dashboard/publisher/statistics-main.php:30
|
914 |
#: dashboard/publisher/statistics-main.php:44
|
915 |
#: dashboard/publisher/statistics-main.php:48
|
916 |
+
#: dashboard/publisher/statistics-main.php:65
|
917 |
msgid "CTR"
|
918 |
msgstr ""
|
919 |
|
1131 |
#: dashboard/publisher/schedules-main.php:89
|
1132 |
#: dashboard/publisher/statistics-advert.php:140
|
1133 |
#: dashboard/publisher/statistics-group.php:112
|
1134 |
+
#: dashboard/publisher/statistics-main.php:71
|
1135 |
msgid "Upgrade now"
|
1136 |
msgstr ""
|
1137 |
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: dashboard/publisher/adverts-edit.php:319
|
|
|
1271 |
msgid "More than average"
|
1272 |
+
msgstr ""
|
1273 |
|
1274 |
#: dashboard/publisher/adverts-edit.php:324
|
1275 |
msgid "Many impressions"
|
1505 |
#: dashboard/publisher/adverts-generator.php:67
|
1506 |
#: dashboard/publisher/adverts-generator.php:73
|
1507 |
#: dashboard/publisher/adverts-generator.php:119
|
|
|
1508 |
msgid "Available in AdRotate Pro."
|
1509 |
+
msgstr ""
|
1510 |
|
1511 |
#: dashboard/publisher/adverts-generator.php:67
|
1512 |
msgid "Open the target website in a new window?"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: dashboard/publisher/media.php:17
|
|
|
1966 |
msgid "Upload new file"
|
1967 |
+
msgstr ""
|
1968 |
|
1969 |
#: dashboard/publisher/media.php:18
|
1970 |
#, fuzzy
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: dashboard/publisher/media.php:21
|
|
|
1995 |
msgid "Upload file"
|
1996 |
+
msgstr ""
|
1997 |
|
1998 |
#: dashboard/publisher/media.php:21
|
1999 |
msgid "Click only once per file!"
|
2019 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2020 |
#: dashboard/publisher/statistics-advert.php:140
|
2021 |
#: dashboard/publisher/statistics-group.php:112
|
2022 |
+
#: dashboard/publisher/statistics-main.php:71
|
|
|
2023 |
msgid "Get more features with AdRotate Pro"
|
2024 |
+
msgstr ""
|
2025 |
|
2026 |
#: dashboard/publisher/schedules-main.php:12
|
2027 |
msgid "Manage Schedules"
|
2041 |
|
2042 |
#: dashboard/publisher/schedules-main.php:37
|
2043 |
#: dashboard/publisher/statistics-advert.php:114
|
|
|
2044 |
msgid "Max Clicks"
|
2045 |
+
msgstr ""
|
2046 |
|
2047 |
#: dashboard/publisher/schedules-main.php:70
|
2048 |
msgid "Mon:"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
#: dashboard/publisher/schedules-main.php:70
|
|
|
2080 |
msgid "Impression spread:"
|
2081 |
+
msgstr ""
|
2082 |
|
2083 |
#: dashboard/publisher/schedules-main.php:70
|
2084 |
msgid "Auto Delete:"
|
2112 |
#: dashboard/publisher/statistics-main.php:28
|
2113 |
#: dashboard/publisher/statistics-main.php:42
|
2114 |
#: dashboard/publisher/statistics-main.php:46
|
2115 |
+
#: dashboard/publisher/statistics-main.php:63
|
2116 |
msgid "Impressions"
|
2117 |
msgstr ""
|
2118 |
|
2129 |
msgstr ""
|
2130 |
|
2131 |
#: dashboard/publisher/statistics-advert.php:108
|
|
|
2132 |
msgid "Periodic overview of clicks and impressions"
|
2133 |
+
msgstr ""
|
2134 |
|
2135 |
#: dashboard/publisher/statistics-advert.php:112
|
|
|
2136 |
msgid "Shown from"
|
2137 |
+
msgstr ""
|
2138 |
|
2139 |
#: dashboard/publisher/statistics-advert.php:113
|
2140 |
#, fuzzy
|
2147 |
msgstr ""
|
2148 |
|
2149 |
#: dashboard/publisher/statistics-advert.php:115
|
|
|
2150 |
msgid "Max Impressions"
|
2151 |
+
msgstr ""
|
2152 |
|
2153 |
#: dashboard/publisher/statistics-advert.php:141
|
2154 |
#: dashboard/publisher/statistics-group.php:113
|
2155 |
+
#: dashboard/publisher/statistics-main.php:72
|
2156 |
#: dashboard/settings/notifications.php:60
|
2157 |
#: dashboard/settings/notifications.php:90
|
2158 |
msgid "Note:"
|
2160 |
|
2161 |
#: dashboard/publisher/statistics-advert.php:141
|
2162 |
#: dashboard/publisher/statistics-group.php:113
|
2163 |
+
#: dashboard/publisher/statistics-main.php:72
|
2164 |
msgid ""
|
2165 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2166 |
"counted by other parties."
|
2672 |
msgstr ""
|
2673 |
|
2674 |
#: dashboard/settings/maintenance.php:88
|
|
|
2675 |
msgid "Not scheduled!"
|
2676 |
+
msgstr ""
|
2677 |
|
2678 |
#: dashboard/settings/maintenance.php:91
|
2679 |
msgid "Background tasks"
|
language/adrotate-es_ES.mo
CHANGED
Binary file
|
language/adrotate-es_ES.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -214,16 +214,36 @@ msgid ""
|
|
214 |
"site!"
|
215 |
msgstr ""
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
#: adrotate-output.php:643
|
218 |
msgid ""
|
219 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
220 |
"not set."
|
221 |
msgstr ""
|
222 |
|
|
|
|
|
|
|
|
|
223 |
#: adrotate-output.php:648
|
224 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
225 |
msgstr ""
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
228 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
229 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -826,11 +846,11 @@ msgstr ""
|
|
826 |
msgid "Join the Media.net advertising network"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: dashboard/info.php:
|
830 |
msgid "Sponsored offers"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: dashboard/info.php:
|
834 |
msgid ""
|
835 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
836 |
"and AdRotate a lot!"
|
@@ -921,7 +941,7 @@ msgstr "Mostrado"
|
|
921 |
#: dashboard/publisher/statistics-main.php:29
|
922 |
#: dashboard/publisher/statistics-main.php:43
|
923 |
#: dashboard/publisher/statistics-main.php:47
|
924 |
-
#: dashboard/publisher/statistics-main.php:
|
925 |
msgid "Clicks"
|
926 |
msgstr "Clics"
|
927 |
|
@@ -940,7 +960,7 @@ msgstr "Clics"
|
|
940 |
#: dashboard/publisher/statistics-main.php:30
|
941 |
#: dashboard/publisher/statistics-main.php:44
|
942 |
#: dashboard/publisher/statistics-main.php:48
|
943 |
-
#: dashboard/publisher/statistics-main.php:
|
944 |
msgid "CTR"
|
945 |
msgstr "CTR"
|
946 |
|
@@ -1168,7 +1188,7 @@ msgstr "Obtenga más funciones con AdRotate Pro"
|
|
1168 |
#: dashboard/publisher/schedules-main.php:89
|
1169 |
#: dashboard/publisher/statistics-advert.php:140
|
1170 |
#: dashboard/publisher/statistics-group.php:112
|
1171 |
-
#: dashboard/publisher/statistics-main.php:
|
1172 |
#, fuzzy
|
1173 |
msgid "Upgrade now"
|
1174 |
msgstr "Hoy"
|
@@ -2114,7 +2134,7 @@ msgstr ""
|
|
2114 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2115 |
#: dashboard/publisher/statistics-advert.php:140
|
2116 |
#: dashboard/publisher/statistics-group.php:112
|
2117 |
-
#: dashboard/publisher/statistics-main.php:
|
2118 |
msgid "Get more features with AdRotate Pro"
|
2119 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
2120 |
|
@@ -2215,7 +2235,7 @@ msgstr "Temporizador de Clics"
|
|
2215 |
#: dashboard/publisher/statistics-main.php:28
|
2216 |
#: dashboard/publisher/statistics-main.php:42
|
2217 |
#: dashboard/publisher/statistics-main.php:46
|
2218 |
-
#: dashboard/publisher/statistics-main.php:
|
2219 |
msgid "Impressions"
|
2220 |
msgstr "Impresiones"
|
2221 |
|
@@ -2263,7 +2283,7 @@ msgstr "Número máximo de Impresiones"
|
|
2263 |
|
2264 |
#: dashboard/publisher/statistics-advert.php:141
|
2265 |
#: dashboard/publisher/statistics-group.php:113
|
2266 |
-
#: dashboard/publisher/statistics-main.php:
|
2267 |
#: dashboard/settings/notifications.php:60
|
2268 |
#: dashboard/settings/notifications.php:90
|
2269 |
msgid "Note:"
|
@@ -2271,7 +2291,7 @@ msgstr "Nota:"
|
|
2271 |
|
2272 |
#: dashboard/publisher/statistics-advert.php:141
|
2273 |
#: dashboard/publisher/statistics-group.php:113
|
2274 |
-
#: dashboard/publisher/statistics-main.php:
|
2275 |
msgid ""
|
2276 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2277 |
"counted by other parties."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate v 3.10.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:02+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:02+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
214 |
"site!"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:640
|
218 |
+
#, fuzzy
|
219 |
+
#| msgid "W3 Total Caching"
|
220 |
+
msgid "Enable W3 Total Cache"
|
221 |
+
msgstr "W3 Total Cache"
|
222 |
+
|
223 |
#: adrotate-output.php:643
|
224 |
msgid ""
|
225 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
226 |
"not set."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: adrotate-output.php:643
|
230 |
+
msgid "How to configure W3 Total Cache"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
#: adrotate-output.php:648
|
234 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:648
|
238 |
+
#, fuzzy
|
239 |
+
#| msgid "Banner folder:"
|
240 |
+
msgid "Set up your banner folder"
|
241 |
+
msgstr "Carpeta Banner:"
|
242 |
+
|
243 |
+
#: adrotate-output.php:667
|
244 |
+
msgid "your attention:"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
248 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
249 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
846 |
msgid "Join the Media.net advertising network"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: dashboard/info.php:129
|
850 |
msgid "Sponsored offers"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: dashboard/info.php:135
|
854 |
msgid ""
|
855 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
856 |
"and AdRotate a lot!"
|
941 |
#: dashboard/publisher/statistics-main.php:29
|
942 |
#: dashboard/publisher/statistics-main.php:43
|
943 |
#: dashboard/publisher/statistics-main.php:47
|
944 |
+
#: dashboard/publisher/statistics-main.php:64
|
945 |
msgid "Clicks"
|
946 |
msgstr "Clics"
|
947 |
|
960 |
#: dashboard/publisher/statistics-main.php:30
|
961 |
#: dashboard/publisher/statistics-main.php:44
|
962 |
#: dashboard/publisher/statistics-main.php:48
|
963 |
+
#: dashboard/publisher/statistics-main.php:65
|
964 |
msgid "CTR"
|
965 |
msgstr "CTR"
|
966 |
|
1188 |
#: dashboard/publisher/schedules-main.php:89
|
1189 |
#: dashboard/publisher/statistics-advert.php:140
|
1190 |
#: dashboard/publisher/statistics-group.php:112
|
1191 |
+
#: dashboard/publisher/statistics-main.php:71
|
1192 |
#, fuzzy
|
1193 |
msgid "Upgrade now"
|
1194 |
msgstr "Hoy"
|
2134 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2135 |
#: dashboard/publisher/statistics-advert.php:140
|
2136 |
#: dashboard/publisher/statistics-group.php:112
|
2137 |
+
#: dashboard/publisher/statistics-main.php:71
|
2138 |
msgid "Get more features with AdRotate Pro"
|
2139 |
msgstr "Obtenga más funciones con AdRotate Pro"
|
2140 |
|
2235 |
#: dashboard/publisher/statistics-main.php:28
|
2236 |
#: dashboard/publisher/statistics-main.php:42
|
2237 |
#: dashboard/publisher/statistics-main.php:46
|
2238 |
+
#: dashboard/publisher/statistics-main.php:63
|
2239 |
msgid "Impressions"
|
2240 |
msgstr "Impresiones"
|
2241 |
|
2283 |
|
2284 |
#: dashboard/publisher/statistics-advert.php:141
|
2285 |
#: dashboard/publisher/statistics-group.php:113
|
2286 |
+
#: dashboard/publisher/statistics-main.php:72
|
2287 |
#: dashboard/settings/notifications.php:60
|
2288 |
#: dashboard/settings/notifications.php:90
|
2289 |
msgid "Note:"
|
2291 |
|
2292 |
#: dashboard/publisher/statistics-advert.php:141
|
2293 |
#: dashboard/publisher/statistics-group.php:113
|
2294 |
+
#: dashboard/publisher/statistics-main.php:72
|
2295 |
msgid ""
|
2296 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2297 |
"counted by other parties."
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -218,16 +218,36 @@ msgid ""
|
|
218 |
"site!"
|
219 |
msgstr ""
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: adrotate-output.php:643
|
222 |
msgid ""
|
223 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
224 |
"not set."
|
225 |
msgstr ""
|
226 |
|
|
|
|
|
|
|
|
|
227 |
#: adrotate-output.php:648
|
228 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
229 |
msgstr ""
|
230 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
232 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
233 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -824,11 +844,11 @@ msgstr ""
|
|
824 |
msgid "Join the Media.net advertising network"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: dashboard/info.php:
|
828 |
msgid "Sponsored offers"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: dashboard/info.php:
|
832 |
msgid ""
|
833 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
834 |
"and AdRotate a lot!"
|
@@ -919,7 +939,7 @@ msgstr "Montré"
|
|
919 |
#: dashboard/publisher/statistics-main.php:29
|
920 |
#: dashboard/publisher/statistics-main.php:43
|
921 |
#: dashboard/publisher/statistics-main.php:47
|
922 |
-
#: dashboard/publisher/statistics-main.php:
|
923 |
msgid "Clicks"
|
924 |
msgstr "Clicks"
|
925 |
|
@@ -938,7 +958,7 @@ msgstr "Clicks"
|
|
938 |
#: dashboard/publisher/statistics-main.php:30
|
939 |
#: dashboard/publisher/statistics-main.php:44
|
940 |
#: dashboard/publisher/statistics-main.php:48
|
941 |
-
#: dashboard/publisher/statistics-main.php:
|
942 |
msgid "CTR"
|
943 |
msgstr "CTR"
|
944 |
|
@@ -1166,7 +1186,7 @@ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
|
1166 |
#: dashboard/publisher/schedules-main.php:89
|
1167 |
#: dashboard/publisher/statistics-advert.php:140
|
1168 |
#: dashboard/publisher/statistics-group.php:112
|
1169 |
-
#: dashboard/publisher/statistics-main.php:
|
1170 |
#, fuzzy
|
1171 |
#| msgid "Upgrade today"
|
1172 |
msgid "Upgrade now"
|
@@ -2093,7 +2113,7 @@ msgstr ""
|
|
2093 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2094 |
#: dashboard/publisher/statistics-advert.php:140
|
2095 |
#: dashboard/publisher/statistics-group.php:112
|
2096 |
-
#: dashboard/publisher/statistics-main.php:
|
2097 |
msgid "Get more features with AdRotate Pro"
|
2098 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
2099 |
|
@@ -2195,7 +2215,7 @@ msgstr "Interval de clicks"
|
|
2195 |
#: dashboard/publisher/statistics-main.php:28
|
2196 |
#: dashboard/publisher/statistics-main.php:42
|
2197 |
#: dashboard/publisher/statistics-main.php:46
|
2198 |
-
#: dashboard/publisher/statistics-main.php:
|
2199 |
msgid "Impressions"
|
2200 |
msgstr "Vues"
|
2201 |
|
@@ -2243,7 +2263,7 @@ msgstr "Nombre max de vues :"
|
|
2243 |
|
2244 |
#: dashboard/publisher/statistics-advert.php:141
|
2245 |
#: dashboard/publisher/statistics-group.php:113
|
2246 |
-
#: dashboard/publisher/statistics-main.php:
|
2247 |
#: dashboard/settings/notifications.php:60
|
2248 |
#: dashboard/settings/notifications.php:90
|
2249 |
msgid "Note:"
|
@@ -2251,7 +2271,7 @@ msgstr "Note :"
|
|
2251 |
|
2252 |
#: dashboard/publisher/statistics-advert.php:141
|
2253 |
#: dashboard/publisher/statistics-group.php:113
|
2254 |
-
#: dashboard/publisher/statistics-main.php:
|
2255 |
msgid ""
|
2256 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2257 |
"counted by other parties."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate 3.10.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:02+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:02+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
218 |
"site!"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: adrotate-output.php:640
|
222 |
+
#, fuzzy
|
223 |
+
#| msgid "W3 Total Caching"
|
224 |
+
msgid "Enable W3 Total Cache"
|
225 |
+
msgstr "W3 Total Caching"
|
226 |
+
|
227 |
#: adrotate-output.php:643
|
228 |
msgid ""
|
229 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
230 |
"not set."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: adrotate-output.php:643
|
234 |
+
msgid "How to configure W3 Total Cache"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
#: adrotate-output.php:648
|
238 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: adrotate-output.php:648
|
242 |
+
#, fuzzy
|
243 |
+
#| msgid "Banner folder:"
|
244 |
+
msgid "Set up your banner folder"
|
245 |
+
msgstr "Dossier de bannières :"
|
246 |
+
|
247 |
+
#: adrotate-output.php:667
|
248 |
+
msgid "your attention:"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
252 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
253 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
844 |
msgid "Join the Media.net advertising network"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: dashboard/info.php:129
|
848 |
msgid "Sponsored offers"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: dashboard/info.php:135
|
852 |
msgid ""
|
853 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
854 |
"and AdRotate a lot!"
|
939 |
#: dashboard/publisher/statistics-main.php:29
|
940 |
#: dashboard/publisher/statistics-main.php:43
|
941 |
#: dashboard/publisher/statistics-main.php:47
|
942 |
+
#: dashboard/publisher/statistics-main.php:64
|
943 |
msgid "Clicks"
|
944 |
msgstr "Clicks"
|
945 |
|
958 |
#: dashboard/publisher/statistics-main.php:30
|
959 |
#: dashboard/publisher/statistics-main.php:44
|
960 |
#: dashboard/publisher/statistics-main.php:48
|
961 |
+
#: dashboard/publisher/statistics-main.php:65
|
962 |
msgid "CTR"
|
963 |
msgstr "CTR"
|
964 |
|
1186 |
#: dashboard/publisher/schedules-main.php:89
|
1187 |
#: dashboard/publisher/statistics-advert.php:140
|
1188 |
#: dashboard/publisher/statistics-group.php:112
|
1189 |
+
#: dashboard/publisher/statistics-main.php:71
|
1190 |
#, fuzzy
|
1191 |
#| msgid "Upgrade today"
|
1192 |
msgid "Upgrade now"
|
2113 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2114 |
#: dashboard/publisher/statistics-advert.php:140
|
2115 |
#: dashboard/publisher/statistics-group.php:112
|
2116 |
+
#: dashboard/publisher/statistics-main.php:71
|
2117 |
msgid "Get more features with AdRotate Pro"
|
2118 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
2119 |
|
2215 |
#: dashboard/publisher/statistics-main.php:28
|
2216 |
#: dashboard/publisher/statistics-main.php:42
|
2217 |
#: dashboard/publisher/statistics-main.php:46
|
2218 |
+
#: dashboard/publisher/statistics-main.php:63
|
2219 |
msgid "Impressions"
|
2220 |
msgstr "Vues"
|
2221 |
|
2263 |
|
2264 |
#: dashboard/publisher/statistics-advert.php:141
|
2265 |
#: dashboard/publisher/statistics-group.php:113
|
2266 |
+
#: dashboard/publisher/statistics-main.php:72
|
2267 |
#: dashboard/settings/notifications.php:60
|
2268 |
#: dashboard/settings/notifications.php:90
|
2269 |
msgid "Note:"
|
2271 |
|
2272 |
#: dashboard/publisher/statistics-advert.php:141
|
2273 |
#: dashboard/publisher/statistics-group.php:113
|
2274 |
+
#: dashboard/publisher/statistics-main.php:72
|
2275 |
msgid ""
|
2276 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2277 |
"counted by other parties."
|
language/adrotate-id_ID.mo
CHANGED
Binary file
|
language/adrotate-id_ID.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -218,6 +218,12 @@ msgstr ""
|
|
218 |
"Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
|
219 |
"di situs Anda!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: adrotate-output.php:643
|
222 |
msgid ""
|
223 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
@@ -226,10 +232,26 @@ msgstr ""
|
|
226 |
"Anda memiliki mengaktifkan dukungan caching tetapi definisi "
|
227 |
"W3TC_DYNAMIC_SECURITY tidak diatur."
|
228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
#: adrotate-output.php:648
|
230 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
231 |
msgstr "Anda folder AdRotate Banner tidak dapat ditulis atau tidak ada."
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
234 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
235 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -881,11 +903,11 @@ msgstr ""
|
|
881 |
msgid "Join the Media.net advertising network"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: dashboard/info.php:
|
885 |
msgid "Sponsored offers"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: dashboard/info.php:
|
889 |
msgid ""
|
890 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
891 |
"and AdRotate a lot!"
|
@@ -976,7 +998,7 @@ msgstr "Tampil"
|
|
976 |
#: dashboard/publisher/statistics-main.php:29
|
977 |
#: dashboard/publisher/statistics-main.php:43
|
978 |
#: dashboard/publisher/statistics-main.php:47
|
979 |
-
#: dashboard/publisher/statistics-main.php:
|
980 |
msgid "Clicks"
|
981 |
msgstr "klik"
|
982 |
|
@@ -995,7 +1017,7 @@ msgstr "klik"
|
|
995 |
#: dashboard/publisher/statistics-main.php:30
|
996 |
#: dashboard/publisher/statistics-main.php:44
|
997 |
#: dashboard/publisher/statistics-main.php:48
|
998 |
-
#: dashboard/publisher/statistics-main.php:
|
999 |
msgid "CTR"
|
1000 |
msgstr "CTR"
|
1001 |
|
@@ -1234,7 +1256,7 @@ msgstr "Dapatkan lebih banyak fitur dengan AdRotate Pro."
|
|
1234 |
#: dashboard/publisher/schedules-main.php:89
|
1235 |
#: dashboard/publisher/statistics-advert.php:140
|
1236 |
#: dashboard/publisher/statistics-group.php:112
|
1237 |
-
#: dashboard/publisher/statistics-main.php:
|
1238 |
#, fuzzy
|
1239 |
#| msgid "Upgrade today"
|
1240 |
msgid "Upgrade now"
|
@@ -2203,7 +2225,7 @@ msgstr ""
|
|
2203 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2204 |
#: dashboard/publisher/statistics-advert.php:140
|
2205 |
#: dashboard/publisher/statistics-group.php:112
|
2206 |
-
#: dashboard/publisher/statistics-main.php:
|
2207 |
msgid "Get more features with AdRotate Pro"
|
2208 |
msgstr "Получете по-голяма функционалност с AdRotate Pro"
|
2209 |
|
@@ -2303,7 +2325,7 @@ msgstr "klik Timer"
|
|
2303 |
#: dashboard/publisher/statistics-main.php:28
|
2304 |
#: dashboard/publisher/statistics-main.php:42
|
2305 |
#: dashboard/publisher/statistics-main.php:46
|
2306 |
-
#: dashboard/publisher/statistics-main.php:
|
2307 |
msgid "Impressions"
|
2308 |
msgstr "tayangan"
|
2309 |
|
@@ -2351,7 +2373,7 @@ msgstr "Максимум импресии"
|
|
2351 |
|
2352 |
#: dashboard/publisher/statistics-advert.php:141
|
2353 |
#: dashboard/publisher/statistics-group.php:113
|
2354 |
-
#: dashboard/publisher/statistics-main.php:
|
2355 |
#: dashboard/settings/notifications.php:60
|
2356 |
#: dashboard/settings/notifications.php:90
|
2357 |
msgid "Note:"
|
@@ -2359,7 +2381,7 @@ msgstr "catatan:"
|
|
2359 |
|
2360 |
#: dashboard/publisher/statistics-advert.php:141
|
2361 |
#: dashboard/publisher/statistics-group.php:113
|
2362 |
-
#: dashboard/publisher/statistics-main.php:
|
2363 |
msgid ""
|
2364 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2365 |
"counted by other parties."
|
@@ -4776,9 +4798,6 @@ msgstr ""
|
|
4776 |
#~ "Активирайте вашият AdRotate Лиценз, за да попучавате бърза, индивидуална "
|
4777 |
#~ "помощ, чрез системата за докладване на проблеми."
|
4778 |
|
4779 |
-
#~ msgid "Where are your banner ads?"
|
4780 |
-
#~ msgstr "Къде се намират вашите рекламни банери?"
|
4781 |
-
|
4782 |
#~ msgid ""
|
4783 |
#~ "Check this box if you use WP Super Cache on your site. It is reported by "
|
4784 |
#~ "users that if you have version 1.4 or newer this option may not work."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:01+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:02+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
218 |
"Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
|
219 |
"di situs Anda!"
|
220 |
|
221 |
+
#: adrotate-output.php:640
|
222 |
+
#, fuzzy
|
223 |
+
#| msgid "W3 Total Caching"
|
224 |
+
msgid "Enable W3 Total Cache"
|
225 |
+
msgstr "W3 Jumlah Caching"
|
226 |
+
|
227 |
#: adrotate-output.php:643
|
228 |
msgid ""
|
229 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
232 |
"Anda memiliki mengaktifkan dukungan caching tetapi definisi "
|
233 |
"W3TC_DYNAMIC_SECURITY tidak diatur."
|
234 |
|
235 |
+
#: adrotate-output.php:643
|
236 |
+
#, fuzzy
|
237 |
+
#| msgid "Set up W3 Total Caching"
|
238 |
+
msgid "How to configure W3 Total Cache"
|
239 |
+
msgstr "Mengatur W3 Jumlah Caching"
|
240 |
+
|
241 |
#: adrotate-output.php:648
|
242 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
243 |
msgstr "Anda folder AdRotate Banner tidak dapat ditulis atau tidak ada."
|
244 |
|
245 |
+
#: adrotate-output.php:648
|
246 |
+
#, fuzzy
|
247 |
+
#| msgid "Where are your banner ads?"
|
248 |
+
msgid "Set up your banner folder"
|
249 |
+
msgstr "Къде се намират вашите рекламни банери?"
|
250 |
+
|
251 |
+
#: adrotate-output.php:667
|
252 |
+
msgid "your attention:"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
256 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
257 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
903 |
msgid "Join the Media.net advertising network"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: dashboard/info.php:129
|
907 |
msgid "Sponsored offers"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: dashboard/info.php:135
|
911 |
msgid ""
|
912 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
913 |
"and AdRotate a lot!"
|
998 |
#: dashboard/publisher/statistics-main.php:29
|
999 |
#: dashboard/publisher/statistics-main.php:43
|
1000 |
#: dashboard/publisher/statistics-main.php:47
|
1001 |
+
#: dashboard/publisher/statistics-main.php:64
|
1002 |
msgid "Clicks"
|
1003 |
msgstr "klik"
|
1004 |
|
1017 |
#: dashboard/publisher/statistics-main.php:30
|
1018 |
#: dashboard/publisher/statistics-main.php:44
|
1019 |
#: dashboard/publisher/statistics-main.php:48
|
1020 |
+
#: dashboard/publisher/statistics-main.php:65
|
1021 |
msgid "CTR"
|
1022 |
msgstr "CTR"
|
1023 |
|
1256 |
#: dashboard/publisher/schedules-main.php:89
|
1257 |
#: dashboard/publisher/statistics-advert.php:140
|
1258 |
#: dashboard/publisher/statistics-group.php:112
|
1259 |
+
#: dashboard/publisher/statistics-main.php:71
|
1260 |
#, fuzzy
|
1261 |
#| msgid "Upgrade today"
|
1262 |
msgid "Upgrade now"
|
2225 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2226 |
#: dashboard/publisher/statistics-advert.php:140
|
2227 |
#: dashboard/publisher/statistics-group.php:112
|
2228 |
+
#: dashboard/publisher/statistics-main.php:71
|
2229 |
msgid "Get more features with AdRotate Pro"
|
2230 |
msgstr "Получете по-голяма функционалност с AdRotate Pro"
|
2231 |
|
2325 |
#: dashboard/publisher/statistics-main.php:28
|
2326 |
#: dashboard/publisher/statistics-main.php:42
|
2327 |
#: dashboard/publisher/statistics-main.php:46
|
2328 |
+
#: dashboard/publisher/statistics-main.php:63
|
2329 |
msgid "Impressions"
|
2330 |
msgstr "tayangan"
|
2331 |
|
2373 |
|
2374 |
#: dashboard/publisher/statistics-advert.php:141
|
2375 |
#: dashboard/publisher/statistics-group.php:113
|
2376 |
+
#: dashboard/publisher/statistics-main.php:72
|
2377 |
#: dashboard/settings/notifications.php:60
|
2378 |
#: dashboard/settings/notifications.php:90
|
2379 |
msgid "Note:"
|
2381 |
|
2382 |
#: dashboard/publisher/statistics-advert.php:141
|
2383 |
#: dashboard/publisher/statistics-group.php:113
|
2384 |
+
#: dashboard/publisher/statistics-main.php:72
|
2385 |
msgid ""
|
2386 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2387 |
"counted by other parties."
|
4798 |
#~ "Активирайте вашият AdRotate Лиценз, за да попучавате бърза, индивидуална "
|
4799 |
#~ "помощ, чрез системата за докладване на проблеми."
|
4800 |
|
|
|
|
|
|
|
4801 |
#~ msgid ""
|
4802 |
#~ "Check this box if you use WP Super Cache on your site. It is reported by "
|
4803 |
#~ "users that if you have version 1.4 or newer this option may not work."
|
language/adrotate-ja.mo
CHANGED
Binary file
|
language/adrotate-ja.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: adrotate-functions.php:715
|
@@ -223,16 +223,33 @@ msgid ""
|
|
223 |
"site!"
|
224 |
msgstr ""
|
225 |
|
|
|
|
|
|
|
|
|
226 |
#: adrotate-output.php:643
|
227 |
msgid ""
|
228 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
229 |
"not set."
|
230 |
msgstr ""
|
231 |
|
|
|
|
|
|
|
|
|
232 |
#: adrotate-output.php:648
|
233 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
234 |
msgstr ""
|
235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
237 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
238 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -858,11 +875,11 @@ msgstr ""
|
|
858 |
msgid "Join the Media.net advertising network"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: dashboard/info.php:
|
862 |
msgid "Sponsored offers"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: dashboard/info.php:
|
866 |
msgid ""
|
867 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
868 |
"and AdRotate a lot!"
|
@@ -955,7 +972,7 @@ msgstr "この広告は期限切れで現在サイトに表示されていませ
|
|
955 |
#: dashboard/publisher/statistics-main.php:29
|
956 |
#: dashboard/publisher/statistics-main.php:43
|
957 |
#: dashboard/publisher/statistics-main.php:47
|
958 |
-
#: dashboard/publisher/statistics-main.php:
|
959 |
msgid "Clicks"
|
960 |
msgstr "クリック"
|
961 |
|
@@ -974,7 +991,7 @@ msgstr "クリック"
|
|
974 |
#: dashboard/publisher/statistics-main.php:30
|
975 |
#: dashboard/publisher/statistics-main.php:44
|
976 |
#: dashboard/publisher/statistics-main.php:48
|
977 |
-
#: dashboard/publisher/statistics-main.php:
|
978 |
msgid "CTR"
|
979 |
msgstr ""
|
980 |
|
@@ -1208,7 +1225,7 @@ msgstr ""
|
|
1208 |
#: dashboard/publisher/schedules-main.php:89
|
1209 |
#: dashboard/publisher/statistics-advert.php:140
|
1210 |
#: dashboard/publisher/statistics-group.php:112
|
1211 |
-
#: dashboard/publisher/statistics-main.php:
|
1212 |
#, fuzzy
|
1213 |
msgid "Upgrade now"
|
1214 |
msgstr "本日"
|
@@ -2168,7 +2185,7 @@ msgstr ""
|
|
2168 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2169 |
#: dashboard/publisher/statistics-advert.php:140
|
2170 |
#: dashboard/publisher/statistics-group.php:112
|
2171 |
-
#: dashboard/publisher/statistics-main.php:
|
2172 |
#, fuzzy
|
2173 |
msgid "Get more features with AdRotate Pro"
|
2174 |
msgstr ""
|
@@ -2272,7 +2289,7 @@ msgstr "表示時間"
|
|
2272 |
#: dashboard/publisher/statistics-main.php:28
|
2273 |
#: dashboard/publisher/statistics-main.php:42
|
2274 |
#: dashboard/publisher/statistics-main.php:46
|
2275 |
-
#: dashboard/publisher/statistics-main.php:
|
2276 |
msgid "Impressions"
|
2277 |
msgstr "表示数"
|
2278 |
|
@@ -2319,7 +2336,7 @@ msgstr "表示数"
|
|
2319 |
|
2320 |
#: dashboard/publisher/statistics-advert.php:141
|
2321 |
#: dashboard/publisher/statistics-group.php:113
|
2322 |
-
#: dashboard/publisher/statistics-main.php:
|
2323 |
#: dashboard/settings/notifications.php:60
|
2324 |
#: dashboard/settings/notifications.php:90
|
2325 |
msgid "Note:"
|
@@ -2327,7 +2344,7 @@ msgstr "注意:"
|
|
2327 |
|
2328 |
#: dashboard/publisher/statistics-advert.php:141
|
2329 |
#: dashboard/publisher/statistics-group.php:113
|
2330 |
-
#: dashboard/publisher/statistics-main.php:
|
2331 |
msgid ""
|
2332 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2333 |
"counted by other parties."
|
@@ -4308,10 +4325,6 @@ msgstr "この数字は、0やマイナスや3600以上ではいけません。"
|
|
4308 |
#~ "personal ticket system."
|
4309 |
#~ msgstr "掲載状況:"
|
4310 |
|
4311 |
-
#, fuzzy
|
4312 |
-
#~ msgid "Where are your banner ads?"
|
4313 |
-
#~ msgstr "バナー画像"
|
4314 |
-
|
4315 |
#, fuzzy
|
4316 |
#~ msgid ""
|
4317 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:01+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:01+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: ja_JP\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: adrotate-functions.php:715
|
223 |
"site!"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: adrotate-output.php:640
|
227 |
+
msgid "Enable W3 Total Cache"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
#: adrotate-output.php:643
|
231 |
msgid ""
|
232 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
233 |
"not set."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: adrotate-output.php:643
|
237 |
+
msgid "How to configure W3 Total Cache"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
#: adrotate-output.php:648
|
241 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: adrotate-output.php:648
|
245 |
+
#, fuzzy
|
246 |
+
msgid "Set up your banner folder"
|
247 |
+
msgstr "バナー画像"
|
248 |
+
|
249 |
+
#: adrotate-output.php:667
|
250 |
+
msgid "your attention:"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
254 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
255 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
875 |
msgid "Join the Media.net advertising network"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: dashboard/info.php:129
|
879 |
msgid "Sponsored offers"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: dashboard/info.php:135
|
883 |
msgid ""
|
884 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
885 |
"and AdRotate a lot!"
|
972 |
#: dashboard/publisher/statistics-main.php:29
|
973 |
#: dashboard/publisher/statistics-main.php:43
|
974 |
#: dashboard/publisher/statistics-main.php:47
|
975 |
+
#: dashboard/publisher/statistics-main.php:64
|
976 |
msgid "Clicks"
|
977 |
msgstr "クリック"
|
978 |
|
991 |
#: dashboard/publisher/statistics-main.php:30
|
992 |
#: dashboard/publisher/statistics-main.php:44
|
993 |
#: dashboard/publisher/statistics-main.php:48
|
994 |
+
#: dashboard/publisher/statistics-main.php:65
|
995 |
msgid "CTR"
|
996 |
msgstr ""
|
997 |
|
1225 |
#: dashboard/publisher/schedules-main.php:89
|
1226 |
#: dashboard/publisher/statistics-advert.php:140
|
1227 |
#: dashboard/publisher/statistics-group.php:112
|
1228 |
+
#: dashboard/publisher/statistics-main.php:71
|
1229 |
#, fuzzy
|
1230 |
msgid "Upgrade now"
|
1231 |
msgstr "本日"
|
2185 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2186 |
#: dashboard/publisher/statistics-advert.php:140
|
2187 |
#: dashboard/publisher/statistics-group.php:112
|
2188 |
+
#: dashboard/publisher/statistics-main.php:71
|
2189 |
#, fuzzy
|
2190 |
msgid "Get more features with AdRotate Pro"
|
2191 |
msgstr ""
|
2289 |
#: dashboard/publisher/statistics-main.php:28
|
2290 |
#: dashboard/publisher/statistics-main.php:42
|
2291 |
#: dashboard/publisher/statistics-main.php:46
|
2292 |
+
#: dashboard/publisher/statistics-main.php:63
|
2293 |
msgid "Impressions"
|
2294 |
msgstr "表示数"
|
2295 |
|
2336 |
|
2337 |
#: dashboard/publisher/statistics-advert.php:141
|
2338 |
#: dashboard/publisher/statistics-group.php:113
|
2339 |
+
#: dashboard/publisher/statistics-main.php:72
|
2340 |
#: dashboard/settings/notifications.php:60
|
2341 |
#: dashboard/settings/notifications.php:90
|
2342 |
msgid "Note:"
|
2344 |
|
2345 |
#: dashboard/publisher/statistics-advert.php:141
|
2346 |
#: dashboard/publisher/statistics-group.php:113
|
2347 |
+
#: dashboard/publisher/statistics-main.php:72
|
2348 |
msgid ""
|
2349 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2350 |
"counted by other parties."
|
4325 |
#~ "personal ticket system."
|
4326 |
#~ msgstr "掲載状況:"
|
4327 |
|
|
|
|
|
|
|
|
|
4328 |
#, fuzzy
|
4329 |
#~ msgid ""
|
4330 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
language/adrotate-pl_PL.mo
CHANGED
Binary file
|
language/adrotate-pl_PL.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Generator: Poedit 2.0.
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
@@ -242,16 +242,32 @@ msgid ""
|
|
242 |
"site!"
|
243 |
msgstr ""
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
#: adrotate-output.php:643
|
246 |
msgid ""
|
247 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
248 |
"not set."
|
249 |
msgstr ""
|
250 |
|
|
|
|
|
|
|
|
|
251 |
#: adrotate-output.php:648
|
252 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
253 |
msgstr ""
|
254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
#: adrotate-output.php:667
|
256 |
msgid "one issue that requires"
|
257 |
msgid_plural "several issues that require"
|
@@ -259,6 +275,10 @@ msgstr[0] ""
|
|
259 |
msgstr[1] ""
|
260 |
msgstr[2] ""
|
261 |
|
|
|
|
|
|
|
|
|
262 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
263 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
264 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -866,11 +886,11 @@ msgstr ""
|
|
866 |
msgid "Join the Media.net advertising network"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: dashboard/info.php:
|
870 |
msgid "Sponsored offers"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: dashboard/info.php:
|
874 |
msgid ""
|
875 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
876 |
"and AdRotate a lot!"
|
@@ -961,7 +981,7 @@ msgstr "Wyświetlane"
|
|
961 |
#: dashboard/publisher/statistics-main.php:29
|
962 |
#: dashboard/publisher/statistics-main.php:43
|
963 |
#: dashboard/publisher/statistics-main.php:47
|
964 |
-
#: dashboard/publisher/statistics-main.php:
|
965 |
msgid "Clicks"
|
966 |
msgstr "Kliknięcia"
|
967 |
|
@@ -980,7 +1000,7 @@ msgstr "Kliknięcia"
|
|
980 |
#: dashboard/publisher/statistics-main.php:30
|
981 |
#: dashboard/publisher/statistics-main.php:44
|
982 |
#: dashboard/publisher/statistics-main.php:48
|
983 |
-
#: dashboard/publisher/statistics-main.php:
|
984 |
msgid "CTR"
|
985 |
msgstr "CTR"
|
986 |
|
@@ -1208,7 +1228,7 @@ msgstr "Więcej ustawień z AdRotate Pro"
|
|
1208 |
#: dashboard/publisher/schedules-main.php:89
|
1209 |
#: dashboard/publisher/statistics-advert.php:140
|
1210 |
#: dashboard/publisher/statistics-group.php:112
|
1211 |
-
#: dashboard/publisher/statistics-main.php:
|
1212 |
#, fuzzy
|
1213 |
msgid "Upgrade now"
|
1214 |
msgstr "Dziś"
|
@@ -2147,7 +2167,7 @@ msgstr ""
|
|
2147 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2148 |
#: dashboard/publisher/statistics-advert.php:140
|
2149 |
#: dashboard/publisher/statistics-group.php:112
|
2150 |
-
#: dashboard/publisher/statistics-main.php:
|
2151 |
msgid "Get more features with AdRotate Pro"
|
2152 |
msgstr "Więcej ustawień z AdRotate Pro"
|
2153 |
|
@@ -2248,7 +2268,7 @@ msgstr "Licznik kliknięć"
|
|
2248 |
#: dashboard/publisher/statistics-main.php:28
|
2249 |
#: dashboard/publisher/statistics-main.php:42
|
2250 |
#: dashboard/publisher/statistics-main.php:46
|
2251 |
-
#: dashboard/publisher/statistics-main.php:
|
2252 |
msgid "Impressions"
|
2253 |
msgstr "Wyświetlenia"
|
2254 |
|
@@ -2295,7 +2315,7 @@ msgstr "Maksymalna liczba wyświetleń"
|
|
2295 |
|
2296 |
#: dashboard/publisher/statistics-advert.php:141
|
2297 |
#: dashboard/publisher/statistics-group.php:113
|
2298 |
-
#: dashboard/publisher/statistics-main.php:
|
2299 |
#: dashboard/settings/notifications.php:60
|
2300 |
#: dashboard/settings/notifications.php:90
|
2301 |
msgid "Note:"
|
@@ -2303,7 +2323,7 @@ msgstr "Notatka:"
|
|
2303 |
|
2304 |
#: dashboard/publisher/statistics-advert.php:141
|
2305 |
#: dashboard/publisher/statistics-group.php:113
|
2306 |
-
#: dashboard/publisher/statistics-main.php:
|
2307 |
msgid ""
|
2308 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2309 |
"counted by other parties."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:01+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:01+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Generator: Poedit 2.0.3\n"
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
242 |
"site!"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: adrotate-output.php:640
|
246 |
+
#, fuzzy
|
247 |
+
#| msgid "W3 Total Caching"
|
248 |
+
msgid "Enable W3 Total Cache"
|
249 |
+
msgstr "W3 Total Caching"
|
250 |
+
|
251 |
#: adrotate-output.php:643
|
252 |
msgid ""
|
253 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
254 |
"not set."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:643
|
258 |
+
msgid "How to configure W3 Total Cache"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
#: adrotate-output.php:648
|
262 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:648
|
266 |
+
#, fuzzy
|
267 |
+
#| msgid "Banner folder:"
|
268 |
+
msgid "Set up your banner folder"
|
269 |
+
msgstr "Folder banerów:"
|
270 |
+
|
271 |
#: adrotate-output.php:667
|
272 |
msgid "one issue that requires"
|
273 |
msgid_plural "several issues that require"
|
275 |
msgstr[1] ""
|
276 |
msgstr[2] ""
|
277 |
|
278 |
+
#: adrotate-output.php:667
|
279 |
+
msgid "your attention:"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
283 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
284 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
886 |
msgid "Join the Media.net advertising network"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: dashboard/info.php:129
|
890 |
msgid "Sponsored offers"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: dashboard/info.php:135
|
894 |
msgid ""
|
895 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
896 |
"and AdRotate a lot!"
|
981 |
#: dashboard/publisher/statistics-main.php:29
|
982 |
#: dashboard/publisher/statistics-main.php:43
|
983 |
#: dashboard/publisher/statistics-main.php:47
|
984 |
+
#: dashboard/publisher/statistics-main.php:64
|
985 |
msgid "Clicks"
|
986 |
msgstr "Kliknięcia"
|
987 |
|
1000 |
#: dashboard/publisher/statistics-main.php:30
|
1001 |
#: dashboard/publisher/statistics-main.php:44
|
1002 |
#: dashboard/publisher/statistics-main.php:48
|
1003 |
+
#: dashboard/publisher/statistics-main.php:65
|
1004 |
msgid "CTR"
|
1005 |
msgstr "CTR"
|
1006 |
|
1228 |
#: dashboard/publisher/schedules-main.php:89
|
1229 |
#: dashboard/publisher/statistics-advert.php:140
|
1230 |
#: dashboard/publisher/statistics-group.php:112
|
1231 |
+
#: dashboard/publisher/statistics-main.php:71
|
1232 |
#, fuzzy
|
1233 |
msgid "Upgrade now"
|
1234 |
msgstr "Dziś"
|
2167 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2168 |
#: dashboard/publisher/statistics-advert.php:140
|
2169 |
#: dashboard/publisher/statistics-group.php:112
|
2170 |
+
#: dashboard/publisher/statistics-main.php:71
|
2171 |
msgid "Get more features with AdRotate Pro"
|
2172 |
msgstr "Więcej ustawień z AdRotate Pro"
|
2173 |
|
2268 |
#: dashboard/publisher/statistics-main.php:28
|
2269 |
#: dashboard/publisher/statistics-main.php:42
|
2270 |
#: dashboard/publisher/statistics-main.php:46
|
2271 |
+
#: dashboard/publisher/statistics-main.php:63
|
2272 |
msgid "Impressions"
|
2273 |
msgstr "Wyświetlenia"
|
2274 |
|
2315 |
|
2316 |
#: dashboard/publisher/statistics-advert.php:141
|
2317 |
#: dashboard/publisher/statistics-group.php:113
|
2318 |
+
#: dashboard/publisher/statistics-main.php:72
|
2319 |
#: dashboard/settings/notifications.php:60
|
2320 |
#: dashboard/settings/notifications.php:90
|
2321 |
msgid "Note:"
|
2323 |
|
2324 |
#: dashboard/publisher/statistics-advert.php:141
|
2325 |
#: dashboard/publisher/statistics-group.php:113
|
2326 |
+
#: dashboard/publisher/statistics-main.php:72
|
2327 |
msgid ""
|
2328 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2329 |
"counted by other parties."
|
language/adrotate-sr_RS.mo
CHANGED
Binary file
|
language/adrotate-sr_RS.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: adrotate-functions.php:715
|
@@ -210,16 +210,36 @@ msgid ""
|
|
210 |
"site!"
|
211 |
msgstr ""
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
#: adrotate-output.php:643
|
214 |
msgid ""
|
215 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
216 |
"not set."
|
217 |
msgstr ""
|
218 |
|
|
|
|
|
|
|
|
|
219 |
#: adrotate-output.php:648
|
220 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
221 |
msgstr ""
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
224 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
225 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -820,11 +840,11 @@ msgstr ""
|
|
820 |
msgid "Join the Media.net advertising network"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: dashboard/info.php:
|
824 |
msgid "Sponsored offers"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: dashboard/info.php:
|
828 |
msgid ""
|
829 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
830 |
"and AdRotate a lot!"
|
@@ -920,7 +940,7 @@ msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
|
|
920 |
#: dashboard/publisher/statistics-main.php:29
|
921 |
#: dashboard/publisher/statistics-main.php:43
|
922 |
#: dashboard/publisher/statistics-main.php:47
|
923 |
-
#: dashboard/publisher/statistics-main.php:
|
924 |
msgid "Clicks"
|
925 |
msgstr "Klikovi"
|
926 |
|
@@ -939,7 +959,7 @@ msgstr "Klikovi"
|
|
939 |
#: dashboard/publisher/statistics-main.php:30
|
940 |
#: dashboard/publisher/statistics-main.php:44
|
941 |
#: dashboard/publisher/statistics-main.php:48
|
942 |
-
#: dashboard/publisher/statistics-main.php:
|
943 |
msgid "CTR"
|
944 |
msgstr "CTR"
|
945 |
|
@@ -1170,7 +1190,7 @@ msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
|
1170 |
#: dashboard/publisher/schedules-main.php:89
|
1171 |
#: dashboard/publisher/statistics-advert.php:140
|
1172 |
#: dashboard/publisher/statistics-group.php:112
|
1173 |
-
#: dashboard/publisher/statistics-main.php:
|
1174 |
#, fuzzy
|
1175 |
msgid "Upgrade now"
|
1176 |
msgstr "Danas"
|
@@ -2133,7 +2153,7 @@ msgstr ""
|
|
2133 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2134 |
#: dashboard/publisher/statistics-advert.php:140
|
2135 |
#: dashboard/publisher/statistics-group.php:112
|
2136 |
-
#: dashboard/publisher/statistics-main.php:
|
2137 |
#, fuzzy
|
2138 |
msgid "Get more features with AdRotate Pro"
|
2139 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
@@ -2235,7 +2255,7 @@ msgstr "Utisci tajmer"
|
|
2235 |
#: dashboard/publisher/statistics-main.php:28
|
2236 |
#: dashboard/publisher/statistics-main.php:42
|
2237 |
#: dashboard/publisher/statistics-main.php:46
|
2238 |
-
#: dashboard/publisher/statistics-main.php:
|
2239 |
msgid "Impressions"
|
2240 |
msgstr "Utisci"
|
2241 |
|
@@ -2284,7 +2304,7 @@ msgstr "Utisci"
|
|
2284 |
|
2285 |
#: dashboard/publisher/statistics-advert.php:141
|
2286 |
#: dashboard/publisher/statistics-group.php:113
|
2287 |
-
#: dashboard/publisher/statistics-main.php:
|
2288 |
#: dashboard/settings/notifications.php:60
|
2289 |
#: dashboard/settings/notifications.php:90
|
2290 |
msgid "Note:"
|
@@ -2292,7 +2312,7 @@ msgstr "Beleška:"
|
|
2292 |
|
2293 |
#: dashboard/publisher/statistics-advert.php:141
|
2294 |
#: dashboard/publisher/statistics-group.php:113
|
2295 |
-
#: dashboard/publisher/statistics-main.php:
|
2296 |
msgid ""
|
2297 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2298 |
"counted by other parties."
|
@@ -4303,9 +4323,6 @@ msgstr ""
|
|
4303 |
#~ "personal ticket system."
|
4304 |
#~ msgstr "AdRotate podrška"
|
4305 |
|
4306 |
-
#~ msgid "Where are your banner ads?"
|
4307 |
-
#~ msgstr "Gde su ti baneri ?"
|
4308 |
-
|
4309 |
#, fuzzy
|
4310 |
#~ msgid ""
|
4311 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:01+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:01+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: sr_RS\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: adrotate-functions.php:715
|
210 |
"site!"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: adrotate-output.php:640
|
214 |
+
#, fuzzy
|
215 |
+
#| msgid "W3 Total Caching"
|
216 |
+
msgid "Enable W3 Total Cache"
|
217 |
+
msgstr "W3 Total Caching"
|
218 |
+
|
219 |
#: adrotate-output.php:643
|
220 |
msgid ""
|
221 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
222 |
"not set."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: adrotate-output.php:643
|
226 |
+
msgid "How to configure W3 Total Cache"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
#: adrotate-output.php:648
|
230 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: adrotate-output.php:648
|
234 |
+
#, fuzzy
|
235 |
+
#| msgid "Where are your banner ads?"
|
236 |
+
msgid "Set up your banner folder"
|
237 |
+
msgstr "Gde su ti baneri ?"
|
238 |
+
|
239 |
+
#: adrotate-output.php:667
|
240 |
+
msgid "your attention:"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
244 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
245 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
840 |
msgid "Join the Media.net advertising network"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: dashboard/info.php:129
|
844 |
msgid "Sponsored offers"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: dashboard/info.php:135
|
848 |
msgid ""
|
849 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
850 |
"and AdRotate a lot!"
|
940 |
#: dashboard/publisher/statistics-main.php:29
|
941 |
#: dashboard/publisher/statistics-main.php:43
|
942 |
#: dashboard/publisher/statistics-main.php:47
|
943 |
+
#: dashboard/publisher/statistics-main.php:64
|
944 |
msgid "Clicks"
|
945 |
msgstr "Klikovi"
|
946 |
|
959 |
#: dashboard/publisher/statistics-main.php:30
|
960 |
#: dashboard/publisher/statistics-main.php:44
|
961 |
#: dashboard/publisher/statistics-main.php:48
|
962 |
+
#: dashboard/publisher/statistics-main.php:65
|
963 |
msgid "CTR"
|
964 |
msgstr "CTR"
|
965 |
|
1190 |
#: dashboard/publisher/schedules-main.php:89
|
1191 |
#: dashboard/publisher/statistics-advert.php:140
|
1192 |
#: dashboard/publisher/statistics-group.php:112
|
1193 |
+
#: dashboard/publisher/statistics-main.php:71
|
1194 |
#, fuzzy
|
1195 |
msgid "Upgrade now"
|
1196 |
msgstr "Danas"
|
2153 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2154 |
#: dashboard/publisher/statistics-advert.php:140
|
2155 |
#: dashboard/publisher/statistics-group.php:112
|
2156 |
+
#: dashboard/publisher/statistics-main.php:71
|
2157 |
#, fuzzy
|
2158 |
msgid "Get more features with AdRotate Pro"
|
2159 |
msgstr "Nabvite jos karakteristika! AdRotate Pro."
|
2255 |
#: dashboard/publisher/statistics-main.php:28
|
2256 |
#: dashboard/publisher/statistics-main.php:42
|
2257 |
#: dashboard/publisher/statistics-main.php:46
|
2258 |
+
#: dashboard/publisher/statistics-main.php:63
|
2259 |
msgid "Impressions"
|
2260 |
msgstr "Utisci"
|
2261 |
|
2304 |
|
2305 |
#: dashboard/publisher/statistics-advert.php:141
|
2306 |
#: dashboard/publisher/statistics-group.php:113
|
2307 |
+
#: dashboard/publisher/statistics-main.php:72
|
2308 |
#: dashboard/settings/notifications.php:60
|
2309 |
#: dashboard/settings/notifications.php:90
|
2310 |
msgid "Note:"
|
2312 |
|
2313 |
#: dashboard/publisher/statistics-advert.php:141
|
2314 |
#: dashboard/publisher/statistics-group.php:113
|
2315 |
+
#: dashboard/publisher/statistics-main.php:72
|
2316 |
msgid ""
|
2317 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2318 |
"counted by other parties."
|
4323 |
#~ "personal ticket system."
|
4324 |
#~ msgstr "AdRotate podrška"
|
4325 |
|
|
|
|
|
|
|
4326 |
#, fuzzy
|
4327 |
#~ msgid ""
|
4328 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
language/adrotate-sv_SV.mo
CHANGED
Binary file
|
language/adrotate-sv_SV.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator: Arnan de Gans <
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -214,16 +214,36 @@ msgid ""
|
|
214 |
"site!"
|
215 |
msgstr ""
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
#: adrotate-output.php:643
|
218 |
msgid ""
|
219 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
220 |
"not set."
|
221 |
msgstr ""
|
222 |
|
|
|
|
|
|
|
|
|
223 |
#: adrotate-output.php:648
|
224 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
225 |
msgstr ""
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
228 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
229 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
@@ -826,11 +846,11 @@ msgstr ""
|
|
826 |
msgid "Join the Media.net advertising network"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: dashboard/info.php:
|
830 |
msgid "Sponsored offers"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: dashboard/info.php:
|
834 |
msgid ""
|
835 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
836 |
"and AdRotate a lot!"
|
@@ -925,7 +945,7 @@ msgstr "Visa"
|
|
925 |
#: dashboard/publisher/statistics-main.php:29
|
926 |
#: dashboard/publisher/statistics-main.php:43
|
927 |
#: dashboard/publisher/statistics-main.php:47
|
928 |
-
#: dashboard/publisher/statistics-main.php:
|
929 |
msgid "Clicks"
|
930 |
msgstr "Klick"
|
931 |
|
@@ -944,7 +964,7 @@ msgstr "Klick"
|
|
944 |
#: dashboard/publisher/statistics-main.php:30
|
945 |
#: dashboard/publisher/statistics-main.php:44
|
946 |
#: dashboard/publisher/statistics-main.php:48
|
947 |
-
#: dashboard/publisher/statistics-main.php:
|
948 |
msgid "CTR"
|
949 |
msgstr "CTR"
|
950 |
|
@@ -1172,7 +1192,7 @@ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
|
1172 |
#: dashboard/publisher/schedules-main.php:89
|
1173 |
#: dashboard/publisher/statistics-advert.php:140
|
1174 |
#: dashboard/publisher/statistics-group.php:112
|
1175 |
-
#: dashboard/publisher/statistics-main.php:
|
1176 |
#, fuzzy
|
1177 |
msgid "Upgrade now"
|
1178 |
msgstr "i dag"
|
@@ -2123,7 +2143,7 @@ msgstr ""
|
|
2123 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2124 |
#: dashboard/publisher/statistics-advert.php:140
|
2125 |
#: dashboard/publisher/statistics-group.php:112
|
2126 |
-
#: dashboard/publisher/statistics-main.php:
|
2127 |
#, fuzzy
|
2128 |
msgid "Get more features with AdRotate Pro"
|
2129 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
@@ -2224,7 +2244,7 @@ msgstr "Intryck timer"
|
|
2224 |
#: dashboard/publisher/statistics-main.php:28
|
2225 |
#: dashboard/publisher/statistics-main.php:42
|
2226 |
#: dashboard/publisher/statistics-main.php:46
|
2227 |
-
#: dashboard/publisher/statistics-main.php:
|
2228 |
msgid "Impressions"
|
2229 |
msgstr "Intryck"
|
2230 |
|
@@ -2272,7 +2292,7 @@ msgstr "Max Intryck"
|
|
2272 |
|
2273 |
#: dashboard/publisher/statistics-advert.php:141
|
2274 |
#: dashboard/publisher/statistics-group.php:113
|
2275 |
-
#: dashboard/publisher/statistics-main.php:
|
2276 |
#: dashboard/settings/notifications.php:60
|
2277 |
#: dashboard/settings/notifications.php:90
|
2278 |
msgid "Note:"
|
@@ -2280,7 +2300,7 @@ msgstr "Notera:"
|
|
2280 |
|
2281 |
#: dashboard/publisher/statistics-advert.php:141
|
2282 |
#: dashboard/publisher/statistics-group.php:113
|
2283 |
-
#: dashboard/publisher/statistics-main.php:
|
2284 |
msgid ""
|
2285 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2286 |
"counted by other parties."
|
@@ -4301,9 +4321,6 @@ msgstr ""
|
|
4301 |
#~ "Aktivera din AdRotate Licens här för att få stöd via den snabba och "
|
4302 |
#~ "personliga ticket system."
|
4303 |
|
4304 |
-
#~ msgid "Where are your banner ads?"
|
4305 |
-
#~ msgstr "Var är dina bannerannonser?"
|
4306 |
-
|
4307 |
#, fuzzy
|
4308 |
#~ msgid ""
|
4309 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-08 02:01+0800\n"
|
6 |
+
"PO-Revision-Date: 2017-11-08 02:01+0800\n"
|
7 |
+
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: sv_SE\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.3\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
214 |
"site!"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:640
|
218 |
+
#, fuzzy
|
219 |
+
#| msgid "W3 Total Caching"
|
220 |
+
msgid "Enable W3 Total Cache"
|
221 |
+
msgstr "W3 Total Caching"
|
222 |
+
|
223 |
#: adrotate-output.php:643
|
224 |
msgid ""
|
225 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
226 |
"not set."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: adrotate-output.php:643
|
230 |
+
msgid "How to configure W3 Total Cache"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
#: adrotate-output.php:648
|
234 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:648
|
238 |
+
#, fuzzy
|
239 |
+
#| msgid "Where are your banner ads?"
|
240 |
+
msgid "Set up your banner folder"
|
241 |
+
msgstr "Var är dina bannerannonser?"
|
242 |
+
|
243 |
+
#: adrotate-output.php:667
|
244 |
+
msgid "your attention:"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
#: adrotate-output.php:685 dashboard/adrotatepro.php:100
|
248 |
#: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
|
249 |
#: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
|
846 |
msgid "Join the Media.net advertising network"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: dashboard/info.php:129
|
850 |
msgid "Sponsored offers"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: dashboard/info.php:135
|
854 |
msgid ""
|
855 |
"These are affiliate banners, clicking them costs you nothing but it helps me "
|
856 |
"and AdRotate a lot!"
|
945 |
#: dashboard/publisher/statistics-main.php:29
|
946 |
#: dashboard/publisher/statistics-main.php:43
|
947 |
#: dashboard/publisher/statistics-main.php:47
|
948 |
+
#: dashboard/publisher/statistics-main.php:64
|
949 |
msgid "Clicks"
|
950 |
msgstr "Klick"
|
951 |
|
964 |
#: dashboard/publisher/statistics-main.php:30
|
965 |
#: dashboard/publisher/statistics-main.php:44
|
966 |
#: dashboard/publisher/statistics-main.php:48
|
967 |
+
#: dashboard/publisher/statistics-main.php:65
|
968 |
msgid "CTR"
|
969 |
msgstr "CTR"
|
970 |
|
1192 |
#: dashboard/publisher/schedules-main.php:89
|
1193 |
#: dashboard/publisher/statistics-advert.php:140
|
1194 |
#: dashboard/publisher/statistics-group.php:112
|
1195 |
+
#: dashboard/publisher/statistics-main.php:71
|
1196 |
#, fuzzy
|
1197 |
msgid "Upgrade now"
|
1198 |
msgstr "i dag"
|
2143 |
#: dashboard/publisher/media.php:73 dashboard/publisher/schedules-main.php:89
|
2144 |
#: dashboard/publisher/statistics-advert.php:140
|
2145 |
#: dashboard/publisher/statistics-group.php:112
|
2146 |
+
#: dashboard/publisher/statistics-main.php:71
|
2147 |
#, fuzzy
|
2148 |
msgid "Get more features with AdRotate Pro"
|
2149 |
msgstr "Få fler funktioner! Skaffa AdRotate Pro."
|
2244 |
#: dashboard/publisher/statistics-main.php:28
|
2245 |
#: dashboard/publisher/statistics-main.php:42
|
2246 |
#: dashboard/publisher/statistics-main.php:46
|
2247 |
+
#: dashboard/publisher/statistics-main.php:63
|
2248 |
msgid "Impressions"
|
2249 |
msgstr "Intryck"
|
2250 |
|
2292 |
|
2293 |
#: dashboard/publisher/statistics-advert.php:141
|
2294 |
#: dashboard/publisher/statistics-group.php:113
|
2295 |
+
#: dashboard/publisher/statistics-main.php:72
|
2296 |
#: dashboard/settings/notifications.php:60
|
2297 |
#: dashboard/settings/notifications.php:90
|
2298 |
msgid "Note:"
|
2300 |
|
2301 |
#: dashboard/publisher/statistics-advert.php:141
|
2302 |
#: dashboard/publisher/statistics-group.php:113
|
2303 |
+
#: dashboard/publisher/statistics-main.php:72
|
2304 |
msgid ""
|
2305 |
"All statistics are indicative. They do not nessesarily reflect results "
|
2306 |
"counted by other parties."
|
4321 |
#~ "Aktivera din AdRotate Licens här för att få stöd via den snabba och "
|
4322 |
#~ "personliga ticket system."
|
4323 |
|
|
|
|
|
|
|
4324 |
#, fuzzy
|
4325 |
#~ msgid ""
|
4326 |
#~ "The jQuery.jshowoff.adrotate library is required for Dynamic Groups. This "
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: adegans
|
|
3 |
Donate link: http://www.arnan.me/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
|
4 |
Tags: ad, advert, adsense, advertising, doubleclick, responsive, ad rotator, ad manager, banner manager, advert manager, analytics, advertisement,
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.
|
8 |
License: GPLv3
|
9 |
|
10 |
Monetise your website with adverts while keeping things simple. Start making money today!
|
@@ -99,17 +99,21 @@ You can also post your questions on the [forum](https://ajdg.solutions/forums/?u
|
|
99 |
Be a Professional and go Pro. With [AdRotate Professional](https://ajdg.solutions/plugins/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
|
100 |
|
101 |
|
102 |
-
= 4.
|
103 |
-
* [
|
|
|
|
|
104 |
|
105 |
-
= 4.
|
106 |
-
* [
|
107 |
|
108 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/plugins/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
|
109 |
|
110 |
== Upgrade Notice ==
|
111 |
|
112 |
-
* [
|
|
|
|
|
113 |
|
114 |
== Screenshots ==
|
115 |
|
3 |
Donate link: http://www.arnan.me/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
|
4 |
Tags: ad, advert, adsense, advertising, doubleclick, responsive, ad rotator, ad manager, banner manager, advert manager, analytics, advertisement,
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 4.7
|
8 |
License: GPLv3
|
9 |
|
10 |
Monetise your website with adverts while keeping things simple. Start making money today!
|
99 |
Be a Professional and go Pro. With [AdRotate Professional](https://ajdg.solutions/plugins/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
|
100 |
|
101 |
|
102 |
+
= 4.7 FREE =
|
103 |
+
* [fix] Showing correct stats for adverts below graphs
|
104 |
+
* [i18n] Added missing strings in dashboard notifications
|
105 |
+
* [i18n] Corrected/included lots of missing strings
|
106 |
|
107 |
+
= 4.10.1 PRO =
|
108 |
+
* [i18n] Corrected/included some of missing strings
|
109 |
|
110 |
All recent changes are available on the [AdRotate website](https://ajdg.solutions/plugins/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
|
111 |
|
112 |
== Upgrade Notice ==
|
113 |
|
114 |
+
* [fix] Showing correct stats for adverts below graphs
|
115 |
+
* [i18n] Added missing strings in dashboard notifications
|
116 |
+
* [i18n] Corrected/included lots of missing strings
|
117 |
|
118 |
== Screenshots ==
|
119 |
|