Simple Download Monitor - Version 3.8.2

Version Description

  • Added action hooks for password protected downloads (when a download request is submitted without a password or incorrect password).
  • Added the Norwegian language translation files. Thanks to Tore sterlie.
  • Regenerated the translation POT file.
  • Wordpress 5.3 compatibility.
Download this release

Release Info

Developer mra13
Plugin Icon 128x128 Simple Download Monitor
Version 3.8.2
Comparing to
See all releases

Code changes from version 3.7.9.1 to 3.8.2

css/sdm_wp_styles.css CHANGED
@@ -59,6 +59,37 @@
59
  .sdm-g-recaptcha{
60
  margin-bottom: 10px;
61
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  /********************************************/
63
  /*** Individual Download Item View Styles ***/
64
  /********************************************/
59
  .sdm-g-recaptcha{
60
  margin-bottom: 10px;
61
  }
62
+
63
+ /************************************/
64
+ /*** Various Colored Boxes Styles ***/
65
+ /************************************/
66
+ .sdm_yellow_box {
67
+ background: #FFF6D5;
68
+ border: 1px solid #D1B655;
69
+ color: #3F2502;
70
+ margin: 10px 0px 10px 0px;
71
+ padding: 5px 5px 5px 10px;
72
+ text-shadow: 1px 1px #FFFFFF;
73
+ }
74
+
75
+ .sdm_grey_box{
76
+ background: #ECECEC;
77
+ border: 1px solid #CFCFCF;
78
+ color: #363636;
79
+ margin: 10px 0px 15px 0px;
80
+ padding: 5px 5px 5px 10px;
81
+ text-shadow: 1px 1px #FFFFFF;
82
+ }
83
+
84
+ .sdm_blue_box{
85
+ background: #D7E7F5;
86
+ border: 1px solid #AACEE6;
87
+ color: #1D263B;
88
+ margin: 10px 0px 15px 0px;
89
+ padding: 5px 5px 5px 10px;
90
+ text-shadow: 1px 1px #FFFFFF;
91
+ }
92
+
93
  /********************************************/
94
  /*** Individual Download Item View Styles ***/
95
  /********************************************/
images/addons/sdm-emember-integration.png ADDED
Binary file
includes/admin-side/sdm-admin-add-ons-page.php CHANGED
@@ -12,19 +12,19 @@ echo '<link type="text/css" rel="stylesheet" href="' . WP_SIMPLE_DL_MONITOR_URL
12
  $addons_data = array();
13
 
14
  $addon_1 = array(
15
- "name" => "Amazon S3 Integration",
16
- "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-amazon-s3-addon-icon.png",
17
- "description" => "Allows you to securely store and deliver digital downloads using Amazon's Simple Storage Service (S3)",
18
- "page_url" => "https://simple-download-monitor.com/amazon-s3-integration-addon/",
19
- );
20
- array_push($addons_data, $addon_1);
21
-
22
- $addon_2 = array(
23
  "name" => "Squeeze Form Addon",
24
  "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-squeeze-form-addon-icon.png",
25
  "description" => "This addone lets you collect visitor's name and email address in exchange for a downloadable item of your site.",
26
  "page_url" => "https://simple-download-monitor.com/squeeze-form-addon-for-simple-download-monitor/",
27
  );
 
 
 
 
 
 
 
 
28
  array_push($addons_data, $addon_2);
29
 
30
  $addon_3 = array(
@@ -34,12 +34,12 @@ echo '<link type="text/css" rel="stylesheet" href="' . WP_SIMPLE_DL_MONITOR_URL
34
  "page_url" => "https://simple-download-monitor.com/hidden-downloads-for-simple-download-monitor/",
35
  );
36
  array_push($addons_data, $addon_3);
37
-
38
  $addon_4 = array(
39
- "name" => "Email on Download",
40
- "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-email-on-download-addon-icon.png",
41
- "description" => "The Email Notification Addon sends you (the site admin) an email whenever one of your files is downloaded.",
42
- "page_url" => "https://simple-download-monitor.com/email-notification-on-download-addon-for-the-simple-download-monitor/",
43
  );
44
  array_push($addons_data, $addon_4);
45
 
@@ -57,7 +57,15 @@ echo '<link type="text/css" rel="stylesheet" href="' . WP_SIMPLE_DL_MONITOR_URL
57
  "description" => "Allows you to configure downloads from your Dropbox account so the visitors can download it from your site.",
58
  "page_url" => "https://simple-download-monitor.com/dropbox-addon-for-the-simple-download-monitor/",
59
  );
60
- array_push($addons_data, $addon_6);
 
 
 
 
 
 
 
 
61
 
62
  /*** Show the addons list ***/
63
  foreach ($addons_data as $addon) {
12
  $addons_data = array();
13
 
14
  $addon_1 = array(
 
 
 
 
 
 
 
 
15
  "name" => "Squeeze Form Addon",
16
  "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-squeeze-form-addon-icon.png",
17
  "description" => "This addone lets you collect visitor's name and email address in exchange for a downloadable item of your site.",
18
  "page_url" => "https://simple-download-monitor.com/squeeze-form-addon-for-simple-download-monitor/",
19
  );
20
+ array_push($addons_data, $addon_1);
21
+
22
+ $addon_2 = array(
23
+ "name" => "Email on Download",
24
+ "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-email-on-download-addon-icon.png",
25
+ "description" => "The Email Notification Addon sends you (the site admin) an email whenever one of your files is downloaded.",
26
+ "page_url" => "https://simple-download-monitor.com/email-notification-on-download-addon-for-the-simple-download-monitor/",
27
+ );
28
  array_push($addons_data, $addon_2);
29
 
30
  $addon_3 = array(
34
  "page_url" => "https://simple-download-monitor.com/hidden-downloads-for-simple-download-monitor/",
35
  );
36
  array_push($addons_data, $addon_3);
37
+
38
  $addon_4 = array(
39
+ "name" => "Amazon S3 Integration",
40
+ "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-amazon-s3-addon-icon.png",
41
+ "description" => "Allows you to securely store and deliver digital downloads using Amazon's Simple Storage Service (S3)",
42
+ "page_url" => "https://simple-download-monitor.com/amazon-s3-integration-addon/",
43
  );
44
  array_push($addons_data, $addon_4);
45
 
57
  "description" => "Allows you to configure downloads from your Dropbox account so the visitors can download it from your site.",
58
  "page_url" => "https://simple-download-monitor.com/dropbox-addon-for-the-simple-download-monitor/",
59
  );
60
+ array_push($addons_data, $addon_6);
61
+
62
+ $addon_7 = array(
63
+ "name" => "WP eMember Integration",
64
+ "thumbnail" => WP_SIMPLE_DL_MONITOR_URL . "/images/addons/sdm-emember-integration.png",
65
+ "description" => "Allows you to view which member is downloading which item(s). So you can create more downloads that members will like.",
66
+ "page_url" => "https://simple-download-monitor.com/tracking-member-downloads/",
67
+ );
68
+ array_push($addons_data, $addon_7);
69
 
70
  /*** Show the addons list ***/
71
  foreach ($addons_data as $addon) {
includes/sdm-admin-menu-handler.php CHANGED
@@ -21,10 +21,11 @@ add_filter( 'whitelist_options', 'sdm_admin_menu_function_hook' );
21
  * @return string
22
  */
23
  function sdm_admin_menu_function_hook( $whitelist_options = array() ) {
24
- $whitelist_options[ 'recaptcha_options_section' ] = array( 'sdm_advanced_options' );
25
- $whitelist_options[ 'termscond_options_section' ] = array( 'sdm_advanced_options' );
26
- $whitelist_options[ 'adsense_options_section' ] = array( 'sdm_advanced_options' );
27
-
 
28
  return $whitelist_options;
29
  }
30
 
@@ -155,7 +156,6 @@ function sdm_create_settings_page() {
155
  <h3 class="hndle"><label for="title"><?php _e( 'Social', 'simple-download-monitor' ); ?></label></h3>
156
  <div class="inside">
157
  <?php echo sprintf( __( '<a target="_blank" href="%s">Facebook</a>', 'simple-download-monitor' ), 'https://www.facebook.com/Tips-and-Tricks-HQ-681802408532789/' ); ?> |
158
- <?php echo sprintf( __( '<a target="_blank" href="%s">Google Plus</a>', 'simple-download-monitor' ), 'https://plus.google.com/+Tipsandtricks-hq/' ); ?> |
159
  <?php echo sprintf( __( '<a target="_blank" href="%s">Twitter</a>', 'simple-download-monitor' ), 'https://twitter.com/TipsAndTricksHQ' ); ?>
160
  </div>
161
  </div>
@@ -245,7 +245,7 @@ function sdm_admin_menu_general_settings() {
245
  jQuery(location).attr('href', '<?php echo get_admin_url() . 'plugins.php'; ?>');
246
  return true;
247
  } else {
248
- alert('<?php echo __( 'Error occured.', 'simple-download-monitor' ); ?>');
249
  }
250
  });
251
  } else {
@@ -268,7 +268,6 @@ function sdm_admin_menu_general_settings() {
268
 
269
  function sdm_admin_menu_advanced_settings() {
270
  //More advanced options will be added here in the future.
271
-
272
  // This prints out all hidden setting fields
273
  do_settings_sections( 'recaptcha_options_section' );
274
  settings_fields( 'recaptcha_options_section' );
@@ -281,59 +280,63 @@ function sdm_admin_menu_advanced_settings() {
281
  do_settings_sections( 'adsense_options_section' );
282
  settings_fields( 'adsense_options_section' );
283
  submit_button();
284
-
 
 
 
285
  }
286
 
287
  /*
288
  * * Logs menu page
289
  */
290
- function sdm_create_logs_page(){
291
- if (!current_user_can('manage_options')) {
292
- wp_die('You do not have permission to access this settings page.');
 
293
  }
294
 
295
  echo '<div class="wrap">';
296
-
297
  $sdm_logs_menu_tabs = array(
298
- 'sdm-logs' => __('Main Logs', 'simple-download-monitor'),
299
- 'sdm-logs&action=sdm-logs-by-download' => __('Specific Item Logs', 'simple-download-monitor'),
300
  );
301
 
302
  $current = "";
303
- if (isset($_GET['page'])) {
304
- $current = sanitize_text_field($_GET['page']);
305
- if (isset($_GET['action'])) {
306
- $current .= "&action=" . sanitize_text_field($_GET['action']);
307
- }
308
  }
309
  $content = '';
310
  $content .= '<h2 class="nav-tab-wrapper">';
311
- foreach ($sdm_logs_menu_tabs as $location => $tabname) {
312
- if ($current == $location) {
313
- $class = ' nav-tab-active';
314
- } else {
315
- $class = '';
316
- }
317
- $content .= '<a class="nav-tab' . $class . '" href="?post_type=sdm_downloads&page=' . $location . '">' . $tabname . '</a>';
318
  }
319
  $content .= '</h2>';
320
  echo $content;
321
-
322
- if (isset($_GET['action'])) {
323
- switch ($_GET['action']) {
324
- case 'sdm-logs-by-download':
325
- include_once (WP_SIMPLE_DL_MONITOR_PATH . 'includes/admin-side/sdm-admin-individual-item-logs-page.php');
326
- sdm_handle_individual_logs_tab_page();
327
- break;
328
  default:
329
- sdm_handle_logs_main_tab_page();
330
- break;
331
- }
332
  } else {
333
- sdm_handle_logs_main_tab_page();
334
  }
335
-
336
- echo '</div>';//<!-- end of wrap -->
337
  }
338
 
339
  function sdm_handle_logs_main_tab_page() {
@@ -365,46 +368,46 @@ function sdm_handle_logs_main_tab_page() {
365
  $sdmListTable->prepare_items();
366
  ?>
367
 
368
- <h2><?php _e( 'Download Logs', 'simple-download-monitor' ); ?></h2>
369
 
370
- <div style="background:#ECECEC;border:1px solid #CCC;padding:0 10px;margin-top:5px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;">
371
- <p><?php _e( 'This page lists all tracked downloads.', 'simple-download-monitor' ); ?></p>
372
- </div>
373
 
374
- <div id="poststuff"><div id="post-body">
375
 
376
- <!-- Log export button -->
377
- <div class="postbox">
378
- <h3 class="hndle"><label for="title"><?php _e( 'Export Download Log Entries', 'simple-download-monitor' ); ?></label></h3>
379
- <div class="inside">
380
- <form method="post" action="" onSubmit="return confirm('Are you sure you want to export all the log entries?');" >
381
- <div class="submit">
382
- <input type="submit" class="button" name="sdm_export_log_entries" value="<?php _e( 'Export Log Entries to CSV File', 'simple-download-monitor' ); ?>" />
383
- </div>
384
- </form>
385
- </div>
386
- </div>
387
 
388
- <!-- Log reset button -->
389
- <div class="postbox">
390
- <h3 class="hndle"><label for="title"><?php _e( 'Reset Download Log Entries', 'simple-download-monitor' ); ?></label></h3>
391
- <div class="inside">
392
- <form method="post" action="" onSubmit="return confirm('Are you sure you want to reset all the log entries to a CSV file?');" >
393
- <div class="submit">
394
- <input type="submit" class="button" name="sdm_reset_log_entries" value="<?php _e( 'Reset Log Entries', 'simple-download-monitor' ); ?>" />
395
- </div>
396
- </form>
397
- </div>
398
- </div>
399
 
400
- </div></div><!-- end of .poststuff and .post-body -->
401
 
402
- <!-- Forms are NOT created automatically, so you need to wrap the table in one to use features like bulk actions -->
403
- <form id="sdm_downloads-filter" method="post">
404
- <input type="hidden" name="page" value="<?php echo esc_attr( $_REQUEST[ 'page' ] ) ?>" />
405
- <!-- Now we can render the completed list table -->
406
- <?php $sdmListTable->display() ?>
407
- </form>
408
 
409
  <script type="text/javascript">
410
  jQuery(document).ready(function ($) {
@@ -449,7 +452,22 @@ function sdm_create_stats_page() {
449
  $downloads_by_date = sdm_get_downloads_by_date( $start_date, $end_date );
450
 
451
  $downloads_by_country = sdm_get_downloads_by_country( $start_date, $end_date );
 
 
 
 
 
 
 
452
  ?>
 
 
 
 
 
 
 
 
453
  <div class="wrap">
454
  <h2><?php _e( 'Stats', 'simple-download-monitor' ); ?></h2>
455
  <div id="poststuff"><div id="post-body">
@@ -477,14 +495,54 @@ function sdm_create_stats_page() {
477
  <div class="nav-tab-wrapper sdm-tabs">
478
  <a href="edit.php?post_type=sdm_downloads&page=stats&sdm_active_tab=datechart" class="nav-tab<?php echo ($active_tab == 'datechart' ? ' nav-tab-active' : ''); ?>" data-tab-name="datechart"><?php _e( 'Downloads by date', 'simple-download-monitor' ); ?></a>
479
  <a href="edit.php?post_type=sdm_downloads&page=stats&sdm_active_tab=geochart" href="" class="nav-tab<?php echo ($active_tab == 'geochart' ? ' nav-tab-active' : ''); ?>" data-tab-name="geochart"><?php _e( 'Downloads by country', 'simple-download-monitor' ); ?></a>
 
480
  </div>
481
  <div class="sdm-tabs-content-wrapper" style="height: 500px;margin-top: 10px;">
482
  <div data-tab-name="datechart" class="sdm-tab"<?php echo ($active_tab == 'datechart' ? '' : ' style="display:none;"'); ?>>
483
  <div id="downloads_chart" style="width: 700px;"></div>
484
  </div>
485
  <div data-tab-name="geochart" class="sdm-tab"<?php echo ($active_tab == 'geochart' ? '' : ' style="display:none;"'); ?>>
 
 
 
 
 
 
 
486
  <div id="country_chart" style="width: 700px;height:437px;"></div>
487
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  </div>
489
  </div></div>
490
  </div>
@@ -493,18 +551,27 @@ function sdm_create_stats_page() {
493
  sdm.datechart = false;
494
  sdm.geochart = false;
495
  sdm.activeTab = '<?php echo $active_tab; ?>';
 
496
  jQuery('#sdm_date_buttons button').click(function (e) {
497
  jQuery('#sdm_choose_date').find('input[name="sdm_stats_start_date"]').val(jQuery(this).attr('data-start-date'));
498
  jQuery('#sdm_choose_date').find('input[name="sdm_stats_end_date"]').val(jQuery(this).attr('data-end-date'));
499
  });
500
  function sdm_init_chart(tab) {
501
- if (!sdm.datechart && tab == 'datechart') {
502
  sdm.datechart = true;
503
  google.charts.load('current', {'packages': ['corechart']});
504
  google.charts.setOnLoadCallback(sdm_drawDateChart);
505
- } else if (!sdm.geochart && tab == 'geochart') {
506
  sdm.geochart = true;
507
- google.charts.load('current', {'packages': ['geochart'], 'mapsApiKey': 'AIzaSyAjtHaEc8TX3JbzxWgjS96MiN7p7ePQilM'});
 
 
 
 
 
 
 
 
508
  google.charts.setOnLoadCallback(sdm_drawGeoChart);
509
  }
510
  }
@@ -518,7 +585,7 @@ function sdm_create_stats_page() {
518
  sdm_dateChart.draw(sdm_dateData, {width: 700, height: 300, title: '<?php _e( 'Downloads by Date', 'simple-download-monitor' ); ?>', colors: ['#3366CC', '#9AA2B4', '#FFE1C9'],
519
  hAxis: {title: 'Date', titleTextStyle: {color: 'black'}},
520
  vAxis: {title: 'Downloads', titleTextStyle: {color: 'black'}},
521
- legend: 'top',
522
  });
523
  }
524
  function sdm_drawGeoChart() {
21
  * @return string
22
  */
23
  function sdm_admin_menu_function_hook( $whitelist_options = array() ) {
24
+ $whitelist_options[ 'recaptcha_options_section' ] = array( 'sdm_advanced_options' );
25
+ $whitelist_options[ 'termscond_options_section' ] = array( 'sdm_advanced_options' );
26
+ $whitelist_options[ 'adsense_options_section' ] = array( 'sdm_advanced_options' );
27
+ $whitelist_options[ 'maps_api_options_section' ] = array( 'sdm_advanced_options' );
28
+
29
  return $whitelist_options;
30
  }
31
 
156
  <h3 class="hndle"><label for="title"><?php _e( 'Social', 'simple-download-monitor' ); ?></label></h3>
157
  <div class="inside">
158
  <?php echo sprintf( __( '<a target="_blank" href="%s">Facebook</a>', 'simple-download-monitor' ), 'https://www.facebook.com/Tips-and-Tricks-HQ-681802408532789/' ); ?> |
 
159
  <?php echo sprintf( __( '<a target="_blank" href="%s">Twitter</a>', 'simple-download-monitor' ), 'https://twitter.com/TipsAndTricksHQ' ); ?>
160
  </div>
161
  </div>
245
  jQuery(location).attr('href', '<?php echo get_admin_url() . 'plugins.php'; ?>');
246
  return true;
247
  } else {
248
+ alert('<?php echo __( 'Error occurred.', 'simple-download-monitor' ); ?>');
249
  }
250
  });
251
  } else {
268
 
269
  function sdm_admin_menu_advanced_settings() {
270
  //More advanced options will be added here in the future.
 
271
  // This prints out all hidden setting fields
272
  do_settings_sections( 'recaptcha_options_section' );
273
  settings_fields( 'recaptcha_options_section' );
280
  do_settings_sections( 'adsense_options_section' );
281
  settings_fields( 'adsense_options_section' );
282
  submit_button();
283
+
284
+ do_settings_sections( 'maps_api_options_section' );
285
+ settings_fields( 'maps_api_options_section' );
286
+ submit_button();
287
  }
288
 
289
  /*
290
  * * Logs menu page
291
  */
292
+
293
+ function sdm_create_logs_page() {
294
+ if ( ! current_user_can( 'manage_options' ) ) {
295
+ wp_die( 'You do not have permission to access this settings page.' );
296
  }
297
 
298
  echo '<div class="wrap">';
299
+
300
  $sdm_logs_menu_tabs = array(
301
+ 'sdm-logs' => __( 'Main Logs', 'simple-download-monitor' ),
302
+ 'sdm-logs&action=sdm-logs-by-download' => __( 'Specific Item Logs', 'simple-download-monitor' ),
303
  );
304
 
305
  $current = "";
306
+ if ( isset( $_GET[ 'page' ] ) ) {
307
+ $current = sanitize_text_field( $_GET[ 'page' ] );
308
+ if ( isset( $_GET[ 'action' ] ) ) {
309
+ $current .= "&action=" . sanitize_text_field( $_GET[ 'action' ] );
310
+ }
311
  }
312
  $content = '';
313
  $content .= '<h2 class="nav-tab-wrapper">';
314
+ foreach ( $sdm_logs_menu_tabs as $location => $tabname ) {
315
+ if ( $current == $location ) {
316
+ $class = ' nav-tab-active';
317
+ } else {
318
+ $class = '';
319
+ }
320
+ $content .= '<a class="nav-tab' . $class . '" href="?post_type=sdm_downloads&page=' . $location . '">' . $tabname . '</a>';
321
  }
322
  $content .= '</h2>';
323
  echo $content;
324
+
325
+ if ( isset( $_GET[ 'action' ] ) ) {
326
+ switch ( $_GET[ 'action' ] ) {
327
+ case 'sdm-logs-by-download':
328
+ include_once (WP_SIMPLE_DL_MONITOR_PATH . 'includes/admin-side/sdm-admin-individual-item-logs-page.php');
329
+ sdm_handle_individual_logs_tab_page();
330
+ break;
331
  default:
332
+ sdm_handle_logs_main_tab_page();
333
+ break;
334
+ }
335
  } else {
336
+ sdm_handle_logs_main_tab_page();
337
  }
338
+
339
+ echo '</div>'; //<!-- end of wrap -->
340
  }
341
 
342
  function sdm_handle_logs_main_tab_page() {
368
  $sdmListTable->prepare_items();
369
  ?>
370
 
371
+ <h2><?php _e( 'Download Logs', 'simple-download-monitor' ); ?></h2>
372
 
373
+ <div style="background:#ECECEC;border:1px solid #CCC;padding:0 10px;margin-top:5px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;">
374
+ <p><?php _e( 'This page lists all tracked downloads.', 'simple-download-monitor' ); ?></p>
375
+ </div>
376
 
377
+ <div id="poststuff"><div id="post-body">
378
 
379
+ <!-- Log export button -->
380
+ <div class="postbox">
381
+ <h3 class="hndle"><label for="title"><?php _e( 'Export Download Log Entries', 'simple-download-monitor' ); ?></label></h3>
382
+ <div class="inside">
383
+ <form method="post" action="" onSubmit="return confirm('Are you sure you want to export all the log entries?');" >
384
+ <div class="submit">
385
+ <input type="submit" class="button" name="sdm_export_log_entries" value="<?php _e( 'Export Log Entries to CSV File', 'simple-download-monitor' ); ?>" />
386
+ </div>
387
+ </form>
388
+ </div>
389
+ </div>
390
 
391
+ <!-- Log reset button -->
392
+ <div class="postbox">
393
+ <h3 class="hndle"><label for="title"><?php _e( 'Reset Download Log Entries', 'simple-download-monitor' ); ?></label></h3>
394
+ <div class="inside">
395
+ <form method="post" action="" onSubmit="return confirm('Are you sure you want to reset all the log entries to a CSV file?');" >
396
+ <div class="submit">
397
+ <input type="submit" class="button" name="sdm_reset_log_entries" value="<?php _e( 'Reset Log Entries', 'simple-download-monitor' ); ?>" />
398
+ </div>
399
+ </form>
400
+ </div>
401
+ </div>
402
 
403
+ </div></div><!-- end of .poststuff and .post-body -->
404
 
405
+ <!-- Forms are NOT created automatically, so you need to wrap the table in one to use features like bulk actions -->
406
+ <form id="sdm_downloads-filter" method="post">
407
+ <input type="hidden" name="page" value="<?php echo esc_attr( $_REQUEST[ 'page' ] ) ?>" />
408
+ <!-- Now we can render the completed list table -->
409
+ <?php $sdmListTable->display() ?>
410
+ </form>
411
 
412
  <script type="text/javascript">
413
  jQuery(document).ready(function ($) {
452
  $downloads_by_date = sdm_get_downloads_by_date( $start_date, $end_date );
453
 
454
  $downloads_by_country = sdm_get_downloads_by_country( $start_date, $end_date );
455
+
456
+ $adv_opts = get_option( 'sdm_advanced_options' );
457
+
458
+ $api_key = '';
459
+ if ( isset( $adv_opts[ 'maps_api_key' ] ) ) {
460
+ $api_key = $adv_opts[ 'maps_api_key' ];
461
+ }
462
  ?>
463
+ <style>
464
+ #sdm-api-key-warning {
465
+ padding: 5px 0;
466
+ width: auto;
467
+ margin: 5px 0;
468
+ display: none;
469
+ }
470
+ </style>
471
  <div class="wrap">
472
  <h2><?php _e( 'Stats', 'simple-download-monitor' ); ?></h2>
473
  <div id="poststuff"><div id="post-body">
495
  <div class="nav-tab-wrapper sdm-tabs">
496
  <a href="edit.php?post_type=sdm_downloads&page=stats&sdm_active_tab=datechart" class="nav-tab<?php echo ($active_tab == 'datechart' ? ' nav-tab-active' : ''); ?>" data-tab-name="datechart"><?php _e( 'Downloads by date', 'simple-download-monitor' ); ?></a>
497
  <a href="edit.php?post_type=sdm_downloads&page=stats&sdm_active_tab=geochart" href="" class="nav-tab<?php echo ($active_tab == 'geochart' ? ' nav-tab-active' : ''); ?>" data-tab-name="geochart"><?php _e( 'Downloads by country', 'simple-download-monitor' ); ?></a>
498
+ <a href="edit.php?post_type=sdm_downloads&page=stats&sdm_active_tab=countrylistchart" href="" class="nav-tab<?php echo ($active_tab == 'countrylistchart' ? ' nav-tab-active' : ''); ?>" data-tab-name="countrylistchart"><?php _e('Downloads by country list', 'simple-download-monitor'); ?></a>
499
  </div>
500
  <div class="sdm-tabs-content-wrapper" style="height: 500px;margin-top: 10px;">
501
  <div data-tab-name="datechart" class="sdm-tab"<?php echo ($active_tab == 'datechart' ? '' : ' style="display:none;"'); ?>>
502
  <div id="downloads_chart" style="width: 700px;"></div>
503
  </div>
504
  <div data-tab-name="geochart" class="sdm-tab"<?php echo ($active_tab == 'geochart' ? '' : ' style="display:none;"'); ?>>
505
+ <div id="sdm-api-key-warning">
506
+ <div class="sdm_yellow_box">
507
+ <span class="dashicons dashicons-warning" style="color: #ffae42;"></span>
508
+ <?php _e( 'Enter your Google Maps API Key <a href="edit.php?post_type=sdm_downloads&page=sdm-settings&action=advanced-settings#maps_api_key" target="_blank">in the settings</a> to properly display the chart.', 'simple-download-monitor' ); ?>
509
+ </div>
510
+ </div>
511
+
512
  <div id="country_chart" style="width: 700px;height:437px;"></div>
513
  </div>
514
+
515
+ <div data-tab-name="countrylistchart" class="sdm-tab"<?php echo ($active_tab == 'countrylistchart' ? '' : ' style="display:none;"'); ?>>
516
+ <div class="wrap">
517
+ <table class="widefat">
518
+ <thead>
519
+ <th><strong><?php _e('Country Name', 'simple-download-monitor'); ?></strong></th>
520
+ <th><strong><?php _e('Total Downloads', 'simple-download-monitor'); ?></strong></th>
521
+ </thead>
522
+ <tbody>
523
+ <?php
524
+ //An array containing the downloads.
525
+ $downloads_by_country_array = sdm_get_downloads_by_country($start_date, $end_date, false);
526
+ foreach ($downloads_by_country_array as $item) {
527
+ if(empty($item['country'])){
528
+ //Lets skip any unknown country rows
529
+ continue;
530
+ }
531
+ echo '<tr>';
532
+ echo '<td>' . $item['country'] . '</td>';
533
+ echo '<td>' . $item['cnt'] . '</td>';
534
+ echo '</tr>';
535
+ }
536
+ ?>
537
+ </tbody>
538
+ <tfoot>
539
+ <th><strong><?php _e('Country Name', 'simple-download-monitor'); ?></strong></th>
540
+ <th><strong><?php _e('Total Downloads', 'simple-download-monitor'); ?></strong></th>
541
+ </tfoot>
542
+ </table>
543
+ </div>
544
+ </div><!-- end of countrylistchart -->
545
+
546
  </div>
547
  </div></div>
548
  </div>
551
  sdm.datechart = false;
552
  sdm.geochart = false;
553
  sdm.activeTab = '<?php echo $active_tab; ?>';
554
+ sdm.apiKey = '<?php echo esc_js( $api_key ); ?>';
555
  jQuery('#sdm_date_buttons button').click(function (e) {
556
  jQuery('#sdm_choose_date').find('input[name="sdm_stats_start_date"]').val(jQuery(this).attr('data-start-date'));
557
  jQuery('#sdm_choose_date').find('input[name="sdm_stats_end_date"]').val(jQuery(this).attr('data-end-date'));
558
  });
559
  function sdm_init_chart(tab) {
560
+ if (!sdm.datechart && tab === 'datechart') {
561
  sdm.datechart = true;
562
  google.charts.load('current', {'packages': ['corechart']});
563
  google.charts.setOnLoadCallback(sdm_drawDateChart);
564
+ } else if (!sdm.geochart && tab === 'geochart') {
565
  sdm.geochart = true;
566
+ var chartOpts = {};
567
+ chartOpts.packages = ['geochart'];
568
+ if (sdm.apiKey) {
569
+ chartOpts.mapsApiKey = sdm.apiKey;
570
+ } else {
571
+ //show API Key warning
572
+ jQuery('#sdm-api-key-warning').fadeIn('slow');
573
+ }
574
+ google.charts.load('current', chartOpts);
575
  google.charts.setOnLoadCallback(sdm_drawGeoChart);
576
  }
577
  }
585
  sdm_dateChart.draw(sdm_dateData, {width: 700, height: 300, title: '<?php _e( 'Downloads by Date', 'simple-download-monitor' ); ?>', colors: ['#3366CC', '#9AA2B4', '#FFE1C9'],
586
  hAxis: {title: 'Date', titleTextStyle: {color: 'black'}},
587
  vAxis: {title: 'Downloads', titleTextStyle: {color: 'black'}},
588
+ legend: 'top'
589
  });
590
  }
591
  function sdm_drawGeoChart() {
includes/sdm-download-request-handler.php CHANGED
@@ -24,6 +24,8 @@ function handle_sdm_download_via_direct_post() {
24
  if ( ! empty( $post_pass ) ) {//This download item has a password. So validate the password.
25
  $pass_val = $_REQUEST[ 'pass_text' ];
26
  if ( empty( $pass_val ) ) {//No password was submitted with the downoad request.
 
 
27
  $dl_post_url = get_permalink( $download_id );
28
  $error_msg = __( 'Error! This download requires a password.', 'simple-download-monitor' );
29
  $error_msg .= '<p>';
@@ -34,6 +36,8 @@ function handle_sdm_download_via_direct_post() {
34
  }
35
  if ( $post_pass != $pass_val ) {
36
  //Incorrect password submitted.
 
 
37
  wp_die( __( 'Error! Incorrect password. This download requires a valid password.', 'simple-download-monitor' ) );
38
  } else {
39
  //Password is valid. Go ahead with the download
24
  if ( ! empty( $post_pass ) ) {//This download item has a password. So validate the password.
25
  $pass_val = $_REQUEST[ 'pass_text' ];
26
  if ( empty( $pass_val ) ) {//No password was submitted with the downoad request.
27
+ do_action( 'sdm_process_download_request_no_password');
28
+
29
  $dl_post_url = get_permalink( $download_id );
30
  $error_msg = __( 'Error! This download requires a password.', 'simple-download-monitor' );
31
  $error_msg .= '<p>';
36
  }
37
  if ( $post_pass != $pass_val ) {
38
  //Incorrect password submitted.
39
+ do_action( 'sdm_process_download_request_incorrect_password');
40
+
41
  wp_die( __( 'Error! Incorrect password. This download requires a valid password.', 'simple-download-monitor' ) );
42
  } else {
43
  //Password is valid. Go ahead with the download
languages/simple-download-monitor-nb_NO.mo ADDED
Binary file
languages/simple-download-monitor-nb_NO.po ADDED
@@ -0,0 +1,1406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Simple Download Monitor\n"
4
+ "POT-Creation-Date: 2019-09-11 10:45+0200\n"
5
+ "PO-Revision-Date: 2019-09-12 15:04+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: nb_NO\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: main.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
+
24
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:5
25
+ msgid "Specific Download Item Logs"
26
+ msgstr "Logg for bestemte nedlastingsobjekter"
27
+
28
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:22
29
+ msgid "This menu allows you to view the download logs of individual items."
30
+ msgstr "Denne menyen lar deg se nedlastingslogg for individuelle objekter."
31
+
32
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:28
33
+ msgid "View Specific Item Logs"
34
+ msgstr "Vis logg for spesifikke objekter"
35
+
36
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:31
37
+ msgid "Enter the Download ID of the item: "
38
+ msgstr "Angi nedlastings ID for objektet: "
39
+
40
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:34
41
+ msgid ""
42
+ "You can find the Download ID of an item from the Downloads menu of the "
43
+ "plugin."
44
+ msgstr ""
45
+ "Du kan finne nedlastings ID for et objekt fra nedlastingsmenyen i denne "
46
+ "utvidelsen."
47
+
48
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:37
49
+ msgid "View Logs"
50
+ msgstr "Vis logger"
51
+
52
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:54
53
+ msgid ""
54
+ "The following table shows the download logs of the item with Download ID: "
55
+ msgstr ""
56
+ "Følgende tabell viser nedlastingsloggene for elementet med nedlastings ID: "
57
+
58
+ #: includes/sdm-admin-menu-handler.php:9
59
+ msgid "Logs"
60
+ msgstr "Logger"
61
+
62
+ #: includes/sdm-admin-menu-handler.php:10
63
+ #: includes/sdm-admin-menu-handler.php:472
64
+ msgid "Stats"
65
+ msgstr "Statistikk"
66
+
67
+ #: includes/sdm-admin-menu-handler.php:11 main.php:187
68
+ msgid "Settings"
69
+ msgstr "Innstillinger"
70
+
71
+ #: includes/sdm-admin-menu-handler.php:12
72
+ #: includes/sdm-admin-menu-handler.php:129
73
+ msgid "Add-ons"
74
+ msgstr "Tillegg"
75
+
76
+ #: includes/sdm-admin-menu-handler.php:74
77
+ msgid "Simple Download Monitor Settings Page"
78
+ msgstr "Simple Download Monitor - Innstillinger"
79
+
80
+ #: includes/sdm-admin-menu-handler.php:79
81
+ msgid "General Settings"
82
+ msgstr "Generelle innstillinger"
83
+
84
+ #: includes/sdm-admin-menu-handler.php:80
85
+ msgid "Advanced Settings"
86
+ msgstr "Avanserte innstillinger"
87
+
88
+ #: includes/sdm-admin-menu-handler.php:123
89
+ msgid "Plugin Documentation"
90
+ msgstr "Plugin Dokumentasjon"
91
+
92
+ #: includes/sdm-admin-menu-handler.php:125
93
+ #, php-format
94
+ msgid ""
95
+ "Please read the <a target=\"_blank\" href=\"%s\">Simple Download Monitor</a> "
96
+ "plugin setup instructions and tutorials to learn how to configure and use it."
97
+ msgstr ""
98
+ "Vennligst les <a target=\"_blank\" href=\"%s\">Simplee Download Monitor</a> "
99
+ "plugin installasjonsinstruksjoner og opplæringsprogrammer for å lære hvordan "
100
+ "du konfigurerer og bruker den."
101
+
102
+ #: includes/sdm-admin-menu-handler.php:131
103
+ #, php-format
104
+ msgid ""
105
+ "Want additional functionality? Check out our <a target=\"_blank\" href=\"%s"
106
+ "\">Add-Ons!</a>"
107
+ msgstr ""
108
+ "Vil du ha mer funksjonalitet? Sjekk ut våre <a target=\"_blank\" href=\"%s"
109
+ "\">tillegg!</a>"
110
+
111
+ #: includes/sdm-admin-menu-handler.php:135
112
+ msgid "Rate Us"
113
+ msgstr "Ranger oss"
114
+
115
+ #: includes/sdm-admin-menu-handler.php:137
116
+ #, php-format
117
+ msgid ""
118
+ "Like the plugin? Please give us a <a href=\"%s\" target=\"_blank\">rating!</"
119
+ "a>"
120
+ msgstr ""
121
+ "Liker du utvidelsen? Vennligst gi oss en <a href=\"%s\" target=\"_blank"
122
+ "\">vurdering!</a>"
123
+
124
+ #: includes/sdm-admin-menu-handler.php:150
125
+ msgid "Our Other Plugins"
126
+ msgstr "Våre andre utvidelser"
127
+
128
+ #: includes/sdm-admin-menu-handler.php:152
129
+ #, php-format
130
+ msgid "Check out <a target=\"_blank\" href=\"%s\">our other plugins</a>"
131
+ msgstr "Sjekk ut <a target=\"_blank\" href=\"%s\">våre andre utvidelser</a>"
132
+
133
+ #: includes/sdm-admin-menu-handler.php:156
134
+ msgid "Social"
135
+ msgstr "Sosial"
136
+
137
+ #: includes/sdm-admin-menu-handler.php:158
138
+ #, php-format
139
+ msgid "<a target=\"_blank\" href=\"%s\">Facebook</a>"
140
+ msgstr "<a target=\"_blank\" href=\"%s\">Facebook</a>"
141
+
142
+ #: includes/sdm-admin-menu-handler.php:159
143
+ #, php-format
144
+ msgid "<a target=\"_blank\" href=\"%s\">Twitter</a>"
145
+ msgstr "<a target=\"_blank\" href=\"%s\">Twitter</a>"
146
+
147
+ #: includes/sdm-admin-menu-handler.php:166
148
+ msgid ""
149
+ "If you need a feature rich and supported plugin for selling your digital "
150
+ "items then checkout our"
151
+ msgstr ""
152
+ "Hvis du trenger en funksjonsrik og supported utvidelse for å selge dine "
153
+ "digitale objekter bør du sjekke ut vår"
154
+
155
+ #: includes/sdm-admin-menu-handler.php:166
156
+ msgid "WP eStore Plugin"
157
+ msgstr "WP eStore Plugin"
158
+
159
+ #: includes/sdm-admin-menu-handler.php:239
160
+ msgid "Are you sure want to delete all plugin's data and deactivate plugin?"
161
+ msgstr "Er du sikker på at vil slette alle data og deaktivere utvidelsen?"
162
+
163
+ #: includes/sdm-admin-menu-handler.php:244
164
+ msgid ""
165
+ "Data has been deleted and plugin deactivated. Click OK to go to Plugins page."
166
+ msgstr ""
167
+ "Data har blitt slettet og utvidelsen deaktivert. Klikk OK for å gå til siden "
168
+ "for utvidelsen."
169
+
170
+ #: includes/sdm-admin-menu-handler.php:248
171
+ msgid "Error occurred."
172
+ msgstr "Det oppstod en feil."
173
+
174
+ #: includes/sdm-admin-menu-handler.php:301
175
+ msgid "Main Logs"
176
+ msgstr "Hovedlogger"
177
+
178
+ #: includes/sdm-admin-menu-handler.php:302
179
+ msgid "Specific Item Logs"
180
+ msgstr "Logg for spesifikke objekter"
181
+
182
+ #: includes/sdm-admin-menu-handler.php:349
183
+ msgid "Log entries exported! Click on the following link to download the file."
184
+ msgstr ""
185
+ "Loggoppføringer eksportert! Klikk på følgende link for å laste ned filen."
186
+
187
+ #: includes/sdm-admin-menu-handler.php:350
188
+ msgid "Download Logs CSV File"
189
+ msgstr "Last ned logger som CSV-fil"
190
+
191
+ #: includes/sdm-admin-menu-handler.php:360
192
+ msgid "Download log entries deleted!"
193
+ msgstr "Oppføringer i nedlastingslogg slettet!"
194
+
195
+ #: includes/sdm-admin-menu-handler.php:371
196
+ msgid "Download Logs"
197
+ msgstr "Nedlastingslogger"
198
+
199
+ #: includes/sdm-admin-menu-handler.php:374
200
+ msgid "This page lists all tracked downloads."
201
+ msgstr "Denne siden viser alle sporede nedlastinger."
202
+
203
+ #: includes/sdm-admin-menu-handler.php:381
204
+ msgid "Export Download Log Entries"
205
+ msgstr "Eksporter oppføringer i nedlastingslogg"
206
+
207
+ #: includes/sdm-admin-menu-handler.php:385
208
+ msgid "Export Log Entries to CSV File"
209
+ msgstr "Eksporter loggoppføringer til CSV-fil"
210
+
211
+ #: includes/sdm-admin-menu-handler.php:393
212
+ msgid "Reset Download Log Entries"
213
+ msgstr "Tilbakestill oppføringer i nedlastingslogg"
214
+
215
+ #: includes/sdm-admin-menu-handler.php:397
216
+ msgid "Reset Log Entries"
217
+ msgstr "Tilbakestill loggoppføringer"
218
+
219
+ #: includes/sdm-admin-menu-handler.php:476
220
+ msgid "Choose Date Range (yyyy-mm-dd)"
221
+ msgstr "Velg datointervall (ÅÅÅÅ-MM-DD)"
222
+
223
+ #: includes/sdm-admin-menu-handler.php:480
224
+ msgid "Start Date: "
225
+ msgstr "Start dato: "
226
+
227
+ #: includes/sdm-admin-menu-handler.php:481
228
+ msgid "End Date: "
229
+ msgstr "Sluttdato: "
230
+
231
+ #: includes/sdm-admin-menu-handler.php:483
232
+ msgid "This Month"
233
+ msgstr "Denne måneden"
234
+
235
+ #: includes/sdm-admin-menu-handler.php:484
236
+ msgid "Last Month"
237
+ msgstr "Siste måned"
238
+
239
+ #: includes/sdm-admin-menu-handler.php:485
240
+ msgid "This Year"
241
+ msgstr "Dette året"
242
+
243
+ #: includes/sdm-admin-menu-handler.php:486
244
+ msgid "Last Year"
245
+ msgstr "Siste ar"
246
+
247
+ #: includes/sdm-admin-menu-handler.php:487
248
+ msgid "All Time"
249
+ msgstr "Siden starten"
250
+
251
+ #: includes/sdm-admin-menu-handler.php:490
252
+ msgid "View Stats"
253
+ msgstr "Vis statistikk"
254
+
255
+ #: includes/sdm-admin-menu-handler.php:496
256
+ msgid "Downloads by date"
257
+ msgstr "Nedlastinger etter dato"
258
+
259
+ #: includes/sdm-admin-menu-handler.php:497
260
+ msgid "Downloads by country"
261
+ msgstr "Nedlastinger etter land"
262
+
263
+ #: includes/sdm-admin-menu-handler.php:498
264
+ msgid "Downloads by country list"
265
+ msgstr "Nedlastinger etter liste for land"
266
+
267
+ #: includes/sdm-admin-menu-handler.php:508
268
+ msgid ""
269
+ "Enter your Google Maps API Key <a href=\"edit.php?"
270
+ "post_type=sdm_downloads&page=sdm-settings&action=advanced-"
271
+ "settings#maps_api_key\" target=\"_blank\">in the settings</a> to properly "
272
+ "display the chart."
273
+ msgstr ""
274
+ "Angi Google karts API-nøkkel <a href=\"edit.php?"
275
+ "post_type=sdm_downloads&page=sdm-settings&action=advanced-"
276
+ "settings#maps_api_key\" target=\"_blank\">i innstillingene</a> for å vise "
277
+ "diagrammet på riktig måte."
278
+
279
+ #: includes/sdm-admin-menu-handler.php:519
280
+ #: includes/sdm-admin-menu-handler.php:539
281
+ msgid "Country Name"
282
+ msgstr "Navn på land"
283
+
284
+ #: includes/sdm-admin-menu-handler.php:520
285
+ #: includes/sdm-admin-menu-handler.php:540
286
+ msgid "Total Downloads"
287
+ msgstr "Totalt antall nedlastinger"
288
+
289
+ #: includes/sdm-admin-menu-handler.php:580 includes/sdm-logs-list-table.php:73
290
+ msgid "Date"
291
+ msgstr "Dato"
292
+
293
+ #: includes/sdm-admin-menu-handler.php:581
294
+ msgid "Number of downloads"
295
+ msgstr "Antall nedlastinger"
296
+
297
+ #: includes/sdm-admin-menu-handler.php:585
298
+ msgid "Downloads by Date"
299
+ msgstr "Nedlastinger etter dato"
300
+
301
+ #: includes/sdm-blocks.php:28
302
+ msgid "Default"
303
+ msgstr "Standard"
304
+
305
+ #: includes/sdm-blocks.php:37
306
+ msgid "SDM Download"
307
+ msgstr "SDM-nedlasting"
308
+
309
+ #: includes/sdm-blocks.php:38
310
+ msgid "Download Item"
311
+ msgstr "Last ned objekt"
312
+
313
+ #: includes/sdm-blocks.php:39
314
+ msgid "Select download item."
315
+ msgstr "Velg nedlastingsobjekt."
316
+
317
+ #: includes/sdm-blocks.php:40
318
+ msgid "Button Text"
319
+ msgstr "Tekst for knapp"
320
+
321
+ #: includes/sdm-blocks.php:41
322
+ msgid ""
323
+ "Customized text for the download button. Leave it blank to use default text."
324
+ msgstr ""
325
+ "Tilpasset tekst for nedlasting-knappen. La det stå tomt hvis du vil bruke "
326
+ "standardtekst."
327
+
328
+ #: includes/sdm-blocks.php:42
329
+ msgid "Template"
330
+ msgstr "Mal"
331
+
332
+ #: includes/sdm-blocks.php:43
333
+ msgid "Select download item template."
334
+ msgstr "Velg mal for nedlastingsobjekt."
335
+
336
+ #: includes/sdm-blocks.php:44
337
+ msgid "Open Download in a New Window"
338
+ msgstr "Åpne nedlasting i et nytt vindu"
339
+
340
+ #: includes/sdm-blocks.php:45 main.php:268
341
+ msgid "Button Color"
342
+ msgstr "Knappefarge"
343
+
344
+ #: includes/sdm-blocks.php:46
345
+ msgid ""
346
+ "Select button color. Note that this option may not work for some templates."
347
+ msgstr ""
348
+ "Velg farge på knap. Vær oppmerksom på at dette alternativet kanskje ikke "
349
+ "fungerer i enkelte maler."
350
+
351
+ #: includes/sdm-blocks.php:86
352
+ msgid "Select item to view"
353
+ msgstr "Velg objekt du vil se"
354
+
355
+ #: includes/sdm-blocks.php:107
356
+ msgid "(Select item)"
357
+ msgstr "(Velg objekt)"
358
+
359
+ #: includes/sdm-download-request-handler.php:13
360
+ msgid "Error! Incorrect download item id."
361
+ msgstr "Feil! Feil ID for nedlastingsobjekt."
362
+
363
+ #: includes/sdm-download-request-handler.php:16
364
+ #, php-format
365
+ msgid ""
366
+ "Error! This download item (%s) does not have any download link. Edit this "
367
+ "item and specify a downloadable file URL for it."
368
+ msgstr ""
369
+ "Feil! Dette nedlastingsobjektet ( %s) har ingen lenke for nedlasting. "
370
+ "Rediger dette objektet, og angi en nedlastbar URL-adresse for filen."
371
+
372
+ #: includes/sdm-download-request-handler.php:28
373
+ msgid "Error! This download requires a password."
374
+ msgstr "Feil! Denne nedlastingen krever et passord."
375
+
376
+ #: includes/sdm-download-request-handler.php:30 main.php:890 main.php:892
377
+ msgid "Click here"
378
+ msgstr "Klikk her"
379
+
380
+ #: includes/sdm-download-request-handler.php:31
381
+ msgid " and enter a valid password for this item"
382
+ msgstr " og skriv inn et gyldig passord for dette objektet"
383
+
384
+ #: includes/sdm-download-request-handler.php:37
385
+ msgid "Error! Incorrect password. This download requires a valid password."
386
+ msgstr "Feil! Feil passord. Denne nedlastingen krever et gyldig passord."
387
+
388
+ #: includes/sdm-download-request-handler.php:75
389
+ msgid "__Click here__ to go to login page."
390
+ msgstr "__Klikk her__ for å gå til påloggingssiden."
391
+
392
+ #: includes/sdm-download-request-handler.php:78
393
+ msgid "You need to be logged in to download this file."
394
+ msgstr "Du må være innlogget for å laste ned denne filen."
395
+
396
+ #: includes/sdm-download-request-handler.php:82
397
+ msgid "Not Logged In"
398
+ msgstr "Ikke pålogget"
399
+
400
+ #: includes/sdm-download-request-handler.php:140
401
+ msgid "Error! Failed to log the download request in the database table"
402
+ msgstr "Feil! Kan ikke logge forespørselen om nedlasting i databasetabellen"
403
+
404
+ #: includes/sdm-download-request-handler.php:212
405
+ #: includes/sdm-download-request-handler.php:216
406
+ msgid "ERROR:"
407
+ msgstr "FEIL:"
408
+
409
+ #: includes/sdm-download-request-handler.php:212
410
+ #: includes/sdm-download-request-handler.php:216
411
+ msgid "Google reCAPTCHA verification failed."
412
+ msgstr "Google reCAPTCHA-verifisering mislyktes."
413
+
414
+ #: includes/sdm-download-request-handler.php:212
415
+ #: includes/sdm-download-request-handler.php:216
416
+ msgid "Back"
417
+ msgstr "Tilbake"
418
+
419
+ #: includes/sdm-download-request-handler.php:216
420
+ msgid "Do you have JavaScript enabled?"
421
+ msgstr "Har du aktivert JavaScript?"
422
+
423
+ #: includes/sdm-latest-downloads.php:43 includes/sdm-popular-downloads.php:43
424
+ msgid "There are no download items matching this shortcode criteria."
425
+ msgstr ""
426
+ "Der er ingen nedlastingsobjeketer som passer til denne kortkodekriterie."
427
+
428
+ #: includes/sdm-logs-list-table.php:19
429
+ #: includes/templates/fancy1/sdm-fancy-1.php:140
430
+ #: sdm-post-type-content-handler.php:98 sdm-shortcodes.php:172
431
+ msgid "Download"
432
+ msgstr "Last ned"
433
+
434
+ #: includes/sdm-logs-list-table.php:20
435
+ #: includes/templates/fancy1/sdm-fancy-1.php:140 main.php:1160
436
+ #: sdm-post-type-and-taxonomy.php:7 sdm-post-type-and-taxonomy.php:8
437
+ #: sdm-post-type-and-taxonomy.php:13 sdm-post-type-and-taxonomy.php:19
438
+ #: sdm-post-type-content-handler.php:98 sdm-shortcodes.php:172
439
+ msgid "Downloads"
440
+ msgstr "Nedlastinger"
441
+
442
+ #: includes/sdm-logs-list-table.php:45
443
+ msgid "Edit"
444
+ msgstr "Rediger"
445
+
446
+ #: includes/sdm-logs-list-table.php:46
447
+ msgid "Delete"
448
+ msgstr "Slett"
449
+
450
+ #: includes/sdm-logs-list-table.php:70 main.php:1154
451
+ msgid "Title"
452
+ msgstr "Tittel"
453
+
454
+ #: includes/sdm-logs-list-table.php:71 main.php:1157
455
+ msgid "File"
456
+ msgstr "Fil"
457
+
458
+ #: includes/sdm-logs-list-table.php:72
459
+ msgid "Visitor IP"
460
+ msgstr "Besøkendes IP"
461
+
462
+ #: includes/sdm-logs-list-table.php:74
463
+ msgid "Country"
464
+ msgstr "Land"
465
+
466
+ #: includes/sdm-logs-list-table.php:75
467
+ msgid "Username"
468
+ msgstr "Brukernavn"
469
+
470
+ #: includes/sdm-logs-list-table.php:96
471
+ msgid "Delete Permanently"
472
+ msgstr "Slett permanent"
473
+
474
+ #: includes/sdm-logs-list-table.php:111 includes/sdm-logs-list-table.php:142
475
+ msgid "Nope! Security check failed!"
476
+ msgstr "Nei! Sikkerhetskontrollen mislyktes!"
477
+
478
+ #: includes/sdm-logs-list-table.php:115
479
+ msgid "No entries were selected."
480
+ msgstr "Ingen oppføringer ble valgt."
481
+
482
+ #: includes/sdm-logs-list-table.php:115 includes/sdm-logs-list-table.php:129
483
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:151
484
+ #: includes/sdm-logs-list-table.php:153
485
+ msgid "Click to Dismiss"
486
+ msgstr "Klikk for å forkaste"
487
+
488
+ #: includes/sdm-logs-list-table.php:122
489
+ msgid "Error! The row id value of a log entry must be numeric."
490
+ msgstr "Feil! Rad-ID-verdien for en loggoppføring må være numerisk."
491
+
492
+ #: includes/sdm-logs-list-table.php:129
493
+ msgid "Entries Deleted!"
494
+ msgstr "Oppføringer slettet!"
495
+
496
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:153
497
+ msgid "Error"
498
+ msgstr "Feil"
499
+
500
+ #: includes/sdm-logs-list-table.php:151
501
+ msgid "Entry Deleted!"
502
+ msgstr "Oppføring slettet!"
503
+
504
+ #: includes/sdm-search-shortcode-handler.php:65
505
+ msgid "Showing search results for "
506
+ msgstr "Viser søkeresultater for "
507
+
508
+ #: includes/sdm-search-shortcode-handler.php:66
509
+ msgid "Number of items found: "
510
+ msgstr "Antall objekter funnet: "
511
+
512
+ #: includes/sdm-search-shortcode-handler.php:67
513
+ msgid "Keywords searched: "
514
+ msgstr "Søkt nøkkelord: "
515
+
516
+ #: includes/sdm-search-shortcode-handler.php:70
517
+ msgid "Nothing found for "
518
+ msgstr "Ingenting funnet for "
519
+
520
+ #: includes/sdm-utility-functions.php:9
521
+ msgid "Green"
522
+ msgstr "Grønn"
523
+
524
+ #: includes/sdm-utility-functions.php:10
525
+ msgid "Blue"
526
+ msgstr "Blå"
527
+
528
+ #: includes/sdm-utility-functions.php:11
529
+ msgid "Purple"
530
+ msgstr "Lilla"
531
+
532
+ #: includes/sdm-utility-functions.php:12
533
+ msgid "Teal"
534
+ msgstr "Turkis"
535
+
536
+ #: includes/sdm-utility-functions.php:13
537
+ msgid "Dark Blue"
538
+ msgstr "Mørkeblå"
539
+
540
+ #: includes/sdm-utility-functions.php:14
541
+ msgid "Black"
542
+ msgstr "Svart"
543
+
544
+ #: includes/sdm-utility-functions.php:15
545
+ msgid "Grey"
546
+ msgstr "Grå"
547
+
548
+ #: includes/sdm-utility-functions.php:16
549
+ msgid "Pink"
550
+ msgstr "Rosa"
551
+
552
+ #: includes/sdm-utility-functions.php:17
553
+ msgid "Orange"
554
+ msgstr "Oransje"
555
+
556
+ #: includes/sdm-utility-functions.php:18
557
+ msgid "White"
558
+ msgstr "Hvit"
559
+
560
+ #: includes/sdm-utility-functions.php:57
561
+ msgid "Enter Password to Download:"
562
+ msgstr "Skriv inn passord for å laste ned:"
563
+
564
+ #: includes/sdm-utility-functions.php:263
565
+ msgid "I agree to the "
566
+ msgstr "Jeg godtar "
567
+
568
+ #: includes/sdm-utility-functions.php:263
569
+ msgid "terms and conditions"
570
+ msgstr "vilkår og betingelser"
571
+
572
+ #: includes/sdm-utility-functions.php:298
573
+ #: includes/templates/fancy0/sdm-fancy-0.php:97
574
+ #: includes/templates/fancy1/sdm-fancy-1.php:56
575
+ #: includes/templates/fancy2/sdm-fancy-2.php:82 sdm-shortcodes.php:186
576
+ msgid "Download Now!"
577
+ msgstr "Last ned"
578
+
579
+ #: includes/sdm-utility-functions.php:338
580
+ msgid ""
581
+ "Error! The URL value is empty. Please specify a correct URL value to "
582
+ "redirect to!"
583
+ msgstr "Feil! URL-verdien er tom. Angi en riktig URL-verdi å omadressere til!"
584
+
585
+ #: includes/templates/fancy0/sdm-fancy-0.php:84
586
+ #: sdm-post-type-content-handler.php:56
587
+ msgid "green"
588
+ msgstr "grønn"
589
+
590
+ #: includes/templates/fancy1/sdm-fancy-1.php:159
591
+ #: includes/templates/fancy2/sdm-fancy-2.php:176
592
+ #: sdm-post-type-content-handler.php:135
593
+ msgid "Size: "
594
+ msgstr "Størrelse: "
595
+
596
+ #: includes/templates/fancy1/sdm-fancy-1.php:166
597
+ #: includes/templates/fancy2/sdm-fancy-2.php:183 main.php:508
598
+ #: sdm-post-type-content-handler.php:142
599
+ msgid "Version: "
600
+ msgstr "Versjon: "
601
+
602
+ #: includes/templates/fancy1/sdm-fancy-1.php:173
603
+ #: includes/templates/fancy2/sdm-fancy-2.php:190
604
+ #: sdm-post-type-content-handler.php:149
605
+ msgid "Published: "
606
+ msgstr "Publisert: "
607
+
608
+ #: includes/templates/fancy3/sdm-fancy-3.php:55
609
+ #: includes/templates/fancy3/sdm-fancy-3.php:86
610
+ msgid "View Details"
611
+ msgstr "Se detaljer"
612
+
613
+ #: main.php:249 main.php:345
614
+ msgid "Select File"
615
+ msgstr "Velg fil"
616
+
617
+ #: main.php:250
618
+ msgid "Select Thumbnail"
619
+ msgstr "Velg miniatyrbilde"
620
+
621
+ #: main.php:251
622
+ msgid "Insert"
623
+ msgstr "Sett inn"
624
+
625
+ #: main.php:252
626
+ msgid "Image Successfully Removed"
627
+ msgstr "Bildet er fjernet"
628
+
629
+ #: main.php:253
630
+ msgid "Error with AJAX"
631
+ msgstr "Feil med AJAX"
632
+
633
+ #: main.php:264
634
+ msgid "Please select a Download Item:"
635
+ msgstr "Velg et objekt for nedlasting:"
636
+
637
+ #: main.php:265
638
+ msgid "Download Title"
639
+ msgstr "Nedlastingstittel"
640
+
641
+ #: main.php:266
642
+ msgid "Include Fancy Box"
643
+ msgstr "Inkluder Fancy Box"
644
+
645
+ #: main.php:267
646
+ msgid "Open New Window"
647
+ msgstr "Åpne nytt vindu"
648
+
649
+ #: main.php:269
650
+ msgid "Insert SDM Shortcode"
651
+ msgstr "Sett inn SDM kortkode"
652
+
653
+ #: main.php:311
654
+ msgid "Description"
655
+ msgstr "Beskrivelse"
656
+
657
+ #: main.php:312
658
+ msgid "Downloadable File (Visitors will download this item)"
659
+ msgstr "Nedlastbar fil (besøkende vil laste ned dette objektet)"
660
+
661
+ #: main.php:313
662
+ msgid "PHP Dispatch or Redirect"
663
+ msgstr "PHP utsending eller omdirigere"
664
+
665
+ #: main.php:314
666
+ msgid "Miscellaneous Download Item Properties"
667
+ msgstr "Diverse egenskaper for nedlastingsobjekt"
668
+
669
+ #: main.php:315
670
+ msgid "File Thumbnail (Optional)"
671
+ msgstr "Miniatyrbilde for fil (valgfritt)"
672
+
673
+ #: main.php:316
674
+ msgid "Statistics"
675
+ msgstr "Statistikk"
676
+
677
+ #: main.php:318
678
+ msgid "Other Details (Optional)"
679
+ msgstr "Andre detaljer (valgfritt)"
680
+
681
+ #: main.php:319
682
+ msgid "Shortcodes"
683
+ msgstr "Kortkoder"
684
+
685
+ #: main.php:323
686
+ msgid "Add a description for this download item."
687
+ msgstr "Legg til en beskrivelse for dette nedlastingsobjektet."
688
+
689
+ #: main.php:337
690
+ msgid ""
691
+ "Manually enter a valid URL of the file in the text box below, or click "
692
+ "\"Select File\" button to upload (or choose) the downloadable file."
693
+ msgstr ""
694
+ "Skriv inn en gyldig URL for filen manuelt i tekstboksen nedenfor, eller "
695
+ "klikk på \"Velg fil\"-knappen for å laste opp (eller velge) den nedlastbare "
696
+ "filen."
697
+
698
+ #: main.php:348
699
+ msgid "Steps to upload a file or choose one from your media library:"
700
+ msgstr ""
701
+ "Fremgangsmåte for å laste opp en fil eller velge en fra mediebiblioteket:"
702
+
703
+ #: main.php:350
704
+ msgid "Hit the \"Select File\" button."
705
+ msgstr "Trykk på \"Velg fil\"-knappen."
706
+
707
+ #: main.php:351
708
+ msgid "Upload a new file or choose an existing one from your media library."
709
+ msgstr "Last opp en ny fil eller velg en eksisterende fra mediebiblioteket."
710
+
711
+ #: main.php:352
712
+ msgid ""
713
+ "Click the \"Insert\" button, this will populate the uploaded file's URL in "
714
+ "the above text field."
715
+ msgstr ""
716
+ "Klikk på \"Sett inn\"-knappen, dette vil fylle URL-en til den opplastede "
717
+ "filen i tekstfeltet ovenfor."
718
+
719
+ #: main.php:373
720
+ msgid ""
721
+ "Dispatch the file via PHP directly instead of redirecting to it. PHP "
722
+ "Dispatching keeps the download URL hidden. Dispatching works only for local "
723
+ "files (files that you uploaded to this site via this plugin or media "
724
+ "library)."
725
+ msgstr ""
726
+ "Send filen via PHP direkte i stedet for å omdirigere til den. PHP utsendelse "
727
+ "holder nedlastings-URL'en skjult. Utsendelse fungerer bare for lokale filer "
728
+ "(filer som du lastet opp til dette nettstedet via denne plugin eller "
729
+ "mediabiblioteket)."
730
+
731
+ #: main.php:397
732
+ msgid "Open download in a new window."
733
+ msgstr "Åpne nedlastingen i et nytt vindu."
734
+
735
+ #: main.php:403
736
+ msgid "Hide the download button on the single download page of this item."
737
+ msgstr ""
738
+ "Skjul nedlastningsknappen på den ene nedlastingssiden for dette elementet."
739
+
740
+ #: main.php:409
741
+ msgid "Disable the single download page for this download item. "
742
+ msgstr "Deaktiver nedlastingssiden for dette nedlastingsobjektet. "
743
+
744
+ #: main.php:410
745
+ msgid "This can be useful if you are using an addon like the "
746
+ msgstr "Dette kan være nyttig hvis du bruker et tillegg som "
747
+
748
+ #: main.php:421
749
+ msgid ""
750
+ "Manually enter a valid URL, or click \"Select Image\" to upload (or choose) "
751
+ "the file thumbnail image."
752
+ msgstr ""
753
+ "Angi en gyldig URL-adresse manuelt, eller klikk \"Velg bilde\" for å laste "
754
+ "opp (eller velge) miniatyrbilde for filen."
755
+
756
+ #: main.php:426
757
+ msgid "Select Image"
758
+ msgstr "Velg bilde"
759
+
760
+ #: main.php:427
761
+ msgid "Remove Image"
762
+ msgstr "Fjern bilde"
763
+
764
+ #: main.php:441
765
+ msgid ""
766
+ "This thumbnail image will be used to create a fancy file download box if you "
767
+ "want to use it."
768
+ msgstr ""
769
+ "Dette miniatyrbildet vil bli brukt til å lage en fancy nedlastingsboks for "
770
+ "filen hvis du vil bruke det."
771
+
772
+ #: main.php:455
773
+ msgid "These are the statistics for this download item."
774
+ msgstr "Dette er statistikken for nedlastingsobjektet."
775
+
776
+ #: main.php:462
777
+ msgid "Number of Downloads:"
778
+ msgstr "Antall nedlastinger:"
779
+
780
+ #: main.php:467
781
+ msgid "Offset Count: "
782
+ msgstr "Antall utenfor: "
783
+
784
+ #: main.php:470
785
+ msgid ""
786
+ "Enter any positive or negative numerical value; to offset the download count "
787
+ "shown to the visitors (when using the download counter shortcode)."
788
+ msgstr ""
789
+ "Angi en positiv eller negativ numerisk verdi.for å oppveie "
790
+ "nedlastningstallet som vises for besøkende (når du bruker "
791
+ "nedlastningstellerens kortkode)."
792
+
793
+ #: main.php:477
794
+ msgid "Disable download logging for this item."
795
+ msgstr "Deaktiver nedlasting logging for dette elementet."
796
+
797
+ #: main.php:498
798
+ msgid "File Size: "
799
+ msgstr "Filstørrelse: "
800
+
801
+ #: main.php:501
802
+ msgid "Enter the size of this file (example value: 2.15 MB)."
803
+ msgstr "Angi størrelsen på denne filen (eksempel verdi: 2,15 MB)."
804
+
805
+ #: main.php:503
806
+ msgid "Show file size in fancy display."
807
+ msgstr "Vis filstørrelse i fancy display."
808
+
809
+ #: main.php:511
810
+ msgid "Enter the version number for this item if any (example value: v2.5.10)."
811
+ msgstr ""
812
+ "Angi versjonsnummeret for dette objektet hvis det finnes (eksempel verdi: v "
813
+ "2.5.10)."
814
+
815
+ #: main.php:513
816
+ msgid "Show version number in fancy display."
817
+ msgstr "Vis versjonsnummer i fancy visning."
818
+
819
+ #: main.php:518
820
+ msgid "Publish Date: "
821
+ msgstr "Publiseringsdato: "
822
+
823
+ #: main.php:520
824
+ msgid "Show download published date in fancy display."
825
+ msgstr "Vis publisert dato for nedlastingen i fancy display."
826
+
827
+ #: main.php:525
828
+ msgid "Download Button Text: "
829
+ msgstr "Tekst for nedlastingsknapp: "
830
+
831
+ #: main.php:528
832
+ msgid ""
833
+ "You can use this field to customize the download now button text of this "
834
+ "item."
835
+ msgstr ""
836
+ "Du kan bruke dette feltet for å tilpasse teksten på \"Last ned nå\" knappen "
837
+ "for dette objektet."
838
+
839
+ #: main.php:535
840
+ msgid ""
841
+ "The following shortcode can be used on posts or pages to embed a download "
842
+ "now button for this file. You can also use the shortcode inserter (in the "
843
+ "post editor) to add this shortcode to a post or page."
844
+ msgstr ""
845
+ "Følende kortkode kan brukes på innlegg og sider for å bygge inn en \"Last "
846
+ "ned nå\" knapp for denne filen. Du kan også bruke sett-inn-kortkode (i "
847
+ "innleggets redigeringsmodul) for å legge til denne kortkoden i et innlegg "
848
+ "eller side."
849
+
850
+ #: main.php:541
851
+ msgid ""
852
+ "The following shortcode can be used to show a download counter for this item."
853
+ msgstr ""
854
+ "Følgende kortkode kan brukes for å vise en nedlastingsteller for dette "
855
+ "objektet."
856
+
857
+ #: main.php:547
858
+ msgid ""
859
+ "Read the full shortcode usage documentation <a href=\"https://www."
860
+ "tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
861
+ "\"_blank\">here</a>."
862
+ msgstr ""
863
+ "Lese hele dokumentasjonen for bruken av kortkoder <a href=\"https://www."
864
+ "tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
865
+ "\"_blank\">her</a>."
866
+
867
+ #: main.php:684
868
+ msgid "General Options"
869
+ msgstr "Generelle innstillinger"
870
+
871
+ #: main.php:685
872
+ msgid "User Login Related"
873
+ msgstr "Brukerrelatert innlogging"
874
+
875
+ #: main.php:686
876
+ msgid "Admin Options"
877
+ msgstr "Alternativer for administrasjon"
878
+
879
+ #: main.php:688
880
+ msgid "Colors"
881
+ msgstr "Farger"
882
+
883
+ #: main.php:689
884
+ msgid "Debug"
885
+ msgstr "Debug"
886
+
887
+ #: main.php:690
888
+ msgid "Delete Plugin Data"
889
+ msgstr "Slett plugin data"
890
+
891
+ #: main.php:693
892
+ msgid "Hide Download Count"
893
+ msgstr "Skjul nedlastingsteller"
894
+
895
+ #: main.php:694
896
+ msgid "PHP Dispatching"
897
+ msgstr "PHP utsendelse"
898
+
899
+ #: main.php:696
900
+ msgid "Only Allow Logged-in Users to Download"
901
+ msgstr "Tillat kun påloggede brukere å laste ned"
902
+
903
+ #: main.php:697
904
+ msgid "Login Page URL"
905
+ msgstr "URL-adresse til påloggingsside"
906
+
907
+ #: main.php:698
908
+ msgid "Redirect Users to Download Page"
909
+ msgstr "Omadresser brukere til nedlastingssiden"
910
+
911
+ #: main.php:700
912
+ msgid "Remove Tinymce Button"
913
+ msgstr "Fjern TinyMCE knapp"
914
+
915
+ #: main.php:701
916
+ msgid "Log Unique IP"
917
+ msgstr "Logg unik IP"
918
+
919
+ #: main.php:702
920
+ msgid "Do Not Capture IP Address"
921
+ msgstr "Ikke Registrer IP-adresse"
922
+
923
+ #: main.php:703
924
+ msgid "Do Not Count Downloads from Bots"
925
+ msgstr "Ikke tell nedlastinger fra roboter"
926
+
927
+ #: main.php:704
928
+ msgid "Disable Download Logs"
929
+ msgstr "Deaktiver nedlastingslogg"
930
+
931
+ #: main.php:706
932
+ msgid "Download Button Color"
933
+ msgstr "Farge på nedlastingsknapp"
934
+
935
+ #: main.php:708
936
+ msgid "Enable Debug"
937
+ msgstr "Aktiver feilsøking"
938
+
939
+ #: main.php:714
940
+ msgid "Google Captcha (reCAPTCHA)"
941
+ msgstr "Google captcha (reCAPTCHA)"
942
+
943
+ #: main.php:715
944
+ msgid "Terms and Conditions"
945
+ msgstr "Vilkår og betingelser"
946
+
947
+ #: main.php:716
948
+ msgid "Adsense/Ad Insertion"
949
+ msgstr "AdSense/annonseinnsetting"
950
+
951
+ #: main.php:717
952
+ msgid "Google Maps API Key"
953
+ msgstr "Google Maps API-nøkkel"
954
+
955
+ #: main.php:720
956
+ msgid "Enable reCAPTCHA"
957
+ msgstr "Aktiver Google Recaptcha"
958
+
959
+ #: main.php:721
960
+ msgid "Site Key"
961
+ msgstr "Nøkkel for nettstedet"
962
+
963
+ #: main.php:722
964
+ msgid "Secret Key"
965
+ msgstr "Hemmelig nøkkel"
966
+
967
+ #: main.php:725
968
+ msgid "Enable Terms and Conditions"
969
+ msgstr "Aktivere vilkår og betingelser"
970
+
971
+ #: main.php:726
972
+ msgid "Terms Page URL"
973
+ msgstr "URL for vilkårsside"
974
+
975
+ #: main.php:729
976
+ msgid "Below Download Description"
977
+ msgstr "Beskrivelse av nedlasting nedenfor"
978
+
979
+ #: main.php:732
980
+ msgid "API Key"
981
+ msgstr "API-nøkkel"
982
+
983
+ #: main.php:737
984
+ msgid "General options settings"
985
+ msgstr "Innstillinger for generelle alternativer"
986
+
987
+ #: main.php:742
988
+ msgid ""
989
+ "Visitor login related settings (useful if you only want to allow logged-in "
990
+ "users to be able to download files."
991
+ msgstr ""
992
+ "Besøksrelaterte innloggingsinnstillinger (nyttig hvis du bare vil tillate "
993
+ "innloggede brukere å kunne laste ned filer."
994
+
995
+ #: main.php:747
996
+ msgid "Admin options settings"
997
+ msgstr "Innstillinger for administratoralternativer"
998
+
999
+ #: main.php:752
1000
+ msgid "Front End colors settings"
1001
+ msgstr "Innstillinger for front end-farger"
1002
+
1003
+ #: main.php:757
1004
+ msgid "Debug settings"
1005
+ msgstr "Innstillinger for feilsøking"
1006
+
1007
+ #: main.php:762
1008
+ msgid ""
1009
+ "You can delete all the data related to this plugin from database using the "
1010
+ "button below. Useful when you're uninstalling the plugin and don't want any "
1011
+ "leftovers remaining."
1012
+ msgstr ""
1013
+ "Du kan slette alle data relatert til denne plugin fra databasen ved hjelp av "
1014
+ "knappen nedenfor. Nyttig når du avinstallerer utvidelsen og ikke ønsker at "
1015
+ "noe skal ligge igjen."
1016
+
1017
+ #: main.php:763
1018
+ msgid "Warning"
1019
+ msgstr "Advarsel"
1020
+
1021
+ #: main.php:763
1022
+ msgid ""
1023
+ "this can't be undone. All settings, download items, download logs will be "
1024
+ "deleted."
1025
+ msgstr ""
1026
+ "dette kan ikke angres. Alle innstillinger, nedlastingsobjekter og logger vil "
1027
+ "bli slettet."
1028
+
1029
+ #: main.php:764
1030
+ msgid "Delete all data and deactivate plugin"
1031
+ msgstr "Slett alle data og deaktiver utvidelsen"
1032
+
1033
+ #: main.php:770
1034
+ msgid "Google Captcha (reCAPTCHA) options"
1035
+ msgstr "Google captcha (reCAPTCHA) alternativer"
1036
+
1037
+ #: main.php:779
1038
+ msgid ""
1039
+ "You can use this section to insert adsense or other ad code inside the "
1040
+ "download item output"
1041
+ msgstr ""
1042
+ "Du kan bruke denne delen til å sette inn AdSense eller annen annonsekode i "
1043
+ "nedlastingsobjektet"
1044
+
1045
+ #: main.php:783
1046
+ msgid ""
1047
+ "Google Maps API key is required to display the \"Downloads by Country\" "
1048
+ "chart."
1049
+ msgstr ""
1050
+ "Google Maps API-nøkkel er påkrevd for å vise diagrammet «nedlastinger etter "
1051
+ "land»."
1052
+
1053
+ #: main.php:789
1054
+ msgid ""
1055
+ "Check this box if you want to use <a href=\"https://www.google.com/recaptcha/"
1056
+ "admin\" target=\"_blank\">reCAPTCHA</a>. "
1057
+ msgstr ""
1058
+ "Merk av i denne boksen hvis du vil bruke <a href=\"https://www.google.com/"
1059
+ "recaptcha/admin\" target=\"_blank\">reCAPTCHA</a>. "
1060
+
1061
+ #: main.php:790
1062
+ msgid "The captcha option adds a captcha to the download now buttons."
1063
+ msgstr ""
1064
+ "Captcha alternativet legger til en CAPTCHA til \"Last ned nå\" knappene."
1065
+
1066
+ #: main.php:797
1067
+ msgid "The site key for the reCAPTCHA API"
1068
+ msgstr "Nettstedsnøkkel for reCAPTCHA API'en"
1069
+
1070
+ #: main.php:804
1071
+ msgid "The secret key for the reCAPTCHA API"
1072
+ msgstr "Hemmelig nøkkel for reCAPTCHA API'en"
1073
+
1074
+ #: main.php:810
1075
+ msgid "Hide the download count that is shown in some of the fancy templates."
1076
+ msgstr "Skjul nedlastingsteller som vises i enkelte av Fancy-malene."
1077
+
1078
+ #: main.php:817
1079
+ msgid ""
1080
+ "When you create a new download item, The PHP Dispatching option should be "
1081
+ "enabled by default. PHP Dispatching keeps the URL of the downloadable files "
1082
+ "hidden."
1083
+ msgstr ""
1084
+ "Når du oppretter et nytt objekt for nedlasting, bør alternativet PHP "
1085
+ "utsending være aktivert som standard. PHP utsending holder nettadressen til "
1086
+ "den nedlastbare filer skjult."
1087
+
1088
+ #: main.php:824
1089
+ msgid ""
1090
+ "Enable this option if you want to allow downloads only for logged-in users. "
1091
+ "When enabled, anonymous users clicking on the download button will receive "
1092
+ "an error message."
1093
+ msgstr ""
1094
+ "Aktiver dette alternativet hvis du bare vil tillate nedlastinger for "
1095
+ "påloggede brukere. Når det er aktivert, vil anonyme brukere som klikker på "
1096
+ "Last ned-knappen, få en feilmelding."
1097
+
1098
+ #: main.php:831
1099
+ msgid ""
1100
+ "Only works if you have set a Login Page URL value above. Enable this option "
1101
+ "if you want to redirect the users to the download page after they log into "
1102
+ "the site."
1103
+ msgstr ""
1104
+ "Fungerer kun hvis du har lagt inn en URL-adresse for innlogging ovenfor. "
1105
+ "Aktiver dette alternativet hvis du vil omdirigere brukerne til "
1106
+ "nedlastingssiden etter at de har logget på nettstedet."
1107
+
1108
+ #: main.php:838
1109
+ msgid ""
1110
+ "(Optional) Specify a login page URL where users can login. This is useful if "
1111
+ "you only allow logged in users to be able to download. This link will be "
1112
+ "added to the message that is shown to anonymous users."
1113
+ msgstr ""
1114
+ "(Valgfritt) Angi en URL-adresse for påloggingsside der brukere kan logge "
1115
+ "inn. Dette er nyttig hvis du bare tillater påloggede brukere å kunne laste "
1116
+ "ned. Denne koblingen vil bli lagt til meldingen som vises for anonyme "
1117
+ "brukere."
1118
+
1119
+ #: main.php:844
1120
+ msgid "Removes the SDM Downloads button from the WP content editor."
1121
+ msgstr ""
1122
+ "Fjerner knappen SDM-nedlastinger fra redigeringsprogrammet for WP-innhold."
1123
+
1124
+ #: main.php:850
1125
+ msgid "Only logs downloads from unique IP addresses."
1126
+ msgstr "Logger bare nedlastinger fra unike IP-adresser."
1127
+
1128
+ #: main.php:856
1129
+ msgid ""
1130
+ "Use this if you do not want to capture the IP address and Country of the "
1131
+ "visitors when they download an item."
1132
+ msgstr ""
1133
+ "Bruk denne hvis du ikke ønsker å logge IP-adressen og land for besøkende når "
1134
+ "de laster ned et objekt."
1135
+
1136
+ #: main.php:862
1137
+ msgid "When enabled, the plugin won't count and log downloads from bots."
1138
+ msgstr ""
1139
+ "Når aktivert, vil utvidelsen ikke telle eller logge nedlastinger fra roboter."
1140
+
1141
+ #: main.php:868
1142
+ msgid ""
1143
+ "Disables all download logs. (This global option overrides the individual "
1144
+ "download item option.)"
1145
+ msgstr ""
1146
+ "Deaktiverer alle nedlastingslogger. (Dette globale alternativet overstyrer "
1147
+ "det individuelle alternativet for nedlasting av objekter.)"
1148
+
1149
+ #: main.php:882
1150
+ msgid "Adjusts the color of the \"Download Now\" button."
1151
+ msgstr "Justerer fargen på \"Last ned nå\"-knappen."
1152
+
1153
+ #: main.php:888
1154
+ msgid "Check this option to enable debug logging."
1155
+ msgstr "Merk av for dette alternativet for å aktivere feilsøkingslogging."
1156
+
1157
+ #: main.php:891
1158
+ msgid " to view log file."
1159
+ msgstr " for å vise loggfilen."
1160
+
1161
+ #: main.php:893
1162
+ msgid " to reset log file."
1163
+ msgstr " tilbakestill loggfil."
1164
+
1165
+ #: main.php:899
1166
+ msgid ""
1167
+ "You can use this option to make the visitors agree to your terms before they "
1168
+ "can download the item."
1169
+ msgstr ""
1170
+ "Du kan bruke dette alternativet til å få de besøkende til å godta vilkårene "
1171
+ "dine før de kan laste ned objektet."
1172
+
1173
+ #: main.php:906
1174
+ msgid "Enter the URL of your terms and conditions page."
1175
+ msgstr "Skriv inn nettadressen til vilkår og betingelser-siden."
1176
+
1177
+ #: main.php:914
1178
+ msgid ""
1179
+ "Enter the Adsense or Ad code that you want to show below the download item "
1180
+ "description."
1181
+ msgstr ""
1182
+ "Legg inn AdSense eller annonse-koden som du ønsker å vise under beskrivelsen "
1183
+ "av nedlastingsobjektet."
1184
+
1185
+ #: main.php:921
1186
+ msgid ""
1187
+ "Enter your Google Maps API key. You can create new API key using <a href="
1188
+ "\"https://developers.google.com/maps/documentation/javascript/get-api-key\" "
1189
+ "target=\"_blank\">this instruction</a>."
1190
+ msgstr ""
1191
+ "Angi Google Maps API-nøkkelen. Du kan opprette en ny API-nøkkel ved å følge "
1192
+ "<a href=\"https://developers.google.com/maps/documentation/javascript/get-"
1193
+ "api-key\" target=\"_blank\">denne instruksjonen</a>."
1194
+
1195
+ #: main.php:928
1196
+ msgid "Clone"
1197
+ msgstr "Klone"
1198
+
1199
+ #: main.php:954
1200
+ msgid "No post to duplicate has been supplied!"
1201
+ msgstr "Intet innlegg å duplisere ble lagt til!"
1202
+
1203
+ #: main.php:1040
1204
+ msgid "Post creation failed, could not find original post: "
1205
+ msgstr ""
1206
+ "Opprettelse av innlegg mislyktes, kunne ikke finne opprinnelig innlegg: "
1207
+
1208
+ #: main.php:1079
1209
+ msgid "Permission denied!"
1210
+ msgstr "Tillatelse avslått!"
1211
+
1212
+ #: main.php:1155
1213
+ msgid "Image"
1214
+ msgstr "Bilde"
1215
+
1216
+ #: main.php:1156
1217
+ msgid "ID"
1218
+ msgstr "ID"
1219
+
1220
+ #: main.php:1158 sdm-post-type-and-taxonomy.php:56
1221
+ msgid "Categories"
1222
+ msgstr "Kategorier"
1223
+
1224
+ #: main.php:1159 sdm-post-type-and-taxonomy.php:80
1225
+ msgid "Tags"
1226
+ msgstr "Stikkord"
1227
+
1228
+ #: main.php:1161
1229
+ msgid "Date Posted"
1230
+ msgstr "Postet dato"
1231
+
1232
+ #: sdm-post-type-and-taxonomy.php:9 sdm-post-type-and-taxonomy.php:10
1233
+ msgid "Add New"
1234
+ msgstr "Legg til ny"
1235
+
1236
+ #: sdm-post-type-and-taxonomy.php:11
1237
+ msgid "Edit Download"
1238
+ msgstr "Rediger nedlastning"
1239
+
1240
+ #: sdm-post-type-and-taxonomy.php:12
1241
+ msgid "New Download"
1242
+ msgstr "Ny nedlastning"
1243
+
1244
+ #: sdm-post-type-and-taxonomy.php:14
1245
+ msgid "View Download"
1246
+ msgstr "Vis nedlastning"
1247
+
1248
+ #: sdm-post-type-and-taxonomy.php:15
1249
+ msgid "Search Downloads"
1250
+ msgstr "Søk i nedlastinger"
1251
+
1252
+ #: sdm-post-type-and-taxonomy.php:16
1253
+ msgid "No Downloads found"
1254
+ msgstr "Ingen nedlastinger funnet"
1255
+
1256
+ #: sdm-post-type-and-taxonomy.php:17
1257
+ msgid "No Downloads found in Trash"
1258
+ msgstr "Ingen nedlastinger funnet i papirkurven"
1259
+
1260
+ #: sdm-post-type-and-taxonomy.php:18
1261
+ msgid "Parent Download"
1262
+ msgstr "Nedlasting av overordnede"
1263
+
1264
+ #: sdm-post-type-and-taxonomy.php:46
1265
+ msgid "Download Categories"
1266
+ msgstr "Netlastingskategorier"
1267
+
1268
+ #: sdm-post-type-and-taxonomy.php:47
1269
+ msgid "Download Category"
1270
+ msgstr "Nedlastingskategori"
1271
+
1272
+ #: sdm-post-type-and-taxonomy.php:48
1273
+ msgid "Search Categories"
1274
+ msgstr "Søk kategorier"
1275
+
1276
+ #: sdm-post-type-and-taxonomy.php:49
1277
+ msgid "All Categories"
1278
+ msgstr "Alle kategorier"
1279
+
1280
+ #: sdm-post-type-and-taxonomy.php:50
1281
+ msgid "Categories Genre"
1282
+ msgstr "Kategorier Sjanger"
1283
+
1284
+ #: sdm-post-type-and-taxonomy.php:51
1285
+ msgid "Categories Genre:"
1286
+ msgstr "Kategorier Sjanger:"
1287
+
1288
+ #: sdm-post-type-and-taxonomy.php:52
1289
+ msgid "Edit Category"
1290
+ msgstr "Redigér kategori"
1291
+
1292
+ #: sdm-post-type-and-taxonomy.php:53
1293
+ msgid "Update Category"
1294
+ msgstr "Oppdatér kategori"
1295
+
1296
+ #: sdm-post-type-and-taxonomy.php:54
1297
+ msgid "Add New Category"
1298
+ msgstr "Legg til ny Kategori"
1299
+
1300
+ #: sdm-post-type-and-taxonomy.php:55
1301
+ msgid "New Category"
1302
+ msgstr "Ny Kategori"
1303
+
1304
+ #: sdm-post-type-and-taxonomy.php:70
1305
+ msgid "Download Tags"
1306
+ msgstr "Stikkord for nedlastinger"
1307
+
1308
+ #: sdm-post-type-and-taxonomy.php:71
1309
+ msgid "Download Tag"
1310
+ msgstr "Stikkord for nedlasting"
1311
+
1312
+ #: sdm-post-type-and-taxonomy.php:72
1313
+ msgid "Search Tags"
1314
+ msgstr "Søk etter stikkord"
1315
+
1316
+ #: sdm-post-type-and-taxonomy.php:73
1317
+ msgid "All Tags"
1318
+ msgstr "Alle stikkord"
1319
+
1320
+ #: sdm-post-type-and-taxonomy.php:74
1321
+ msgid "Tags Genre"
1322
+ msgstr "Stikkord sjanger"
1323
+
1324
+ #: sdm-post-type-and-taxonomy.php:75
1325
+ msgid "Tags Genre:"
1326
+ msgstr "Stikkord sjanger:"
1327
+
1328
+ #: sdm-post-type-and-taxonomy.php:76
1329
+ msgid "Edit Tag"
1330
+ msgstr "Rediger Stikkord"
1331
+
1332
+ #: sdm-post-type-and-taxonomy.php:77
1333
+ msgid "Update Tag"
1334
+ msgstr "Oppdater stikkord"
1335
+
1336
+ #: sdm-post-type-and-taxonomy.php:78
1337
+ msgid "Add New Tag"
1338
+ msgstr "Legg til nytt stikkord"
1339
+
1340
+ #: sdm-post-type-and-taxonomy.php:79
1341
+ msgid "New Tag"
1342
+ msgstr "Nytt Stikkord"
1343
+
1344
+ #: sdm-post-type-content-handler.php:19
1345
+ msgid "The admin of this site has disabled this download item page."
1346
+ msgstr ""
1347
+ "Administratoren av dette nettstedet har deaktivert siden for "
1348
+ "nedlastingsobjektet."
1349
+
1350
+ #: sdm-post-type-content-handler.php:126
1351
+ msgid "The admin of this site has disabled the download button for this page."
1352
+ msgstr ""
1353
+ "Administratoren av dette nettstedet har deaktivert nedlastingsknappen på "
1354
+ "denne siden."
1355
+
1356
+ #: sdm-shortcodes.php:82 sdm-shortcodes.php:152 sdm-shortcodes.php:166
1357
+ msgid "Error! Please enter an ID value with this shortcode."
1358
+ msgstr "Feil! Vennligst skriv inn en ID-verdi med denne kortkoden."
1359
+
1360
+ #: sdm-shortcodes.php:199
1361
+ msgid ""
1362
+ "Error! You must enter a category slug OR a category id with this shortcode. "
1363
+ "Refer to the documentation for usage instructions."
1364
+ msgstr ""
1365
+ "Feil! Du må angi en kategori Slug eller en kategori-ID med denne kortkoden. "
1366
+ "Se dokumentasjonen for instruksjoner om bruk."
1367
+
1368
+ #: sdm-shortcodes.php:204
1369
+ msgid "Error! Please enter a category slug OR id; not both."
1370
+ msgstr "Feil! Vennligst skriv inn en kategori Slug eller ID; ikke begge."
1371
+
1372
+ #: sdm-shortcodes.php:240
1373
+ msgid ""
1374
+ "Error! You must enter a numeric number for the \"pagination\" parameter of "
1375
+ "the shortcode. Refer to the usage documentation."
1376
+ msgstr ""
1377
+ "Feil! Du må angi et numerisk nummer for \"paginering\" parameter for "
1378
+ "kortkoden. Se brukerdokumentasjonen."
1379
+
1380
+ #: sdm-shortcodes.php:265
1381
+ msgid "There are no download items matching this category criteria."
1382
+ msgstr "Det er ingen nedlastingsobjekter i denne kategorien."
1383
+
1384
+ #. Plugin Name of the plugin/theme
1385
+ msgid "Simple Download Monitor"
1386
+ msgstr "Simple Download Monitor"
1387
+
1388
+ #. Plugin URI of the plugin/theme
1389
+ msgid "https://simple-download-monitor.com/"
1390
+ msgstr "https://simple-download-monitor.com/"
1391
+
1392
+ #. Description of the plugin/theme
1393
+ msgid ""
1394
+ "Easily manage downloadable files and monitor downloads of your digital files "
1395
+ "from your WordPress site."
1396
+ msgstr ""
1397
+ "Administrer enkelt nedlastbare filer og overvåke nedlastinger av digitale "
1398
+ "filer fra WordPress-nettstedet."
1399
+
1400
+ #. Author of the plugin/theme
1401
+ msgid "Tips and Tricks HQ, Ruhul Amin, Josh Lobe"
1402
+ msgstr "Tips og triks HQ, Ruhul Amin, Josh flik"
1403
+
1404
+ #. Author URI of the plugin/theme
1405
+ msgid "https://www.tipsandtricks-hq.com/development-center"
1406
+ msgstr "https://www.tipsandtricks-hq.com/development-center"
languages/simple-download-monitor.pot CHANGED
@@ -1,991 +1,1301 @@
 
1
  msgid ""
2
  msgstr ""
 
3
  "Project-Id-Version: Simple Download Monitor\n"
4
- "POT-Creation-Date: 2018-05-10 12:59+1000\n"
5
- "PO-Revision-Date: 2018-05-10 12:59+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.5.7\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
 
 
 
 
 
14
  "X-Poedit-SearchPath-0: .\n"
 
15
 
16
- #: main.php:182 includes/sdm-admin-menu-handler.php:11
17
- msgid "Settings"
18
- msgstr ""
19
-
20
- #: main.php:238 main.php:332
21
- msgid "Select File"
22
  msgstr ""
23
 
24
- #: main.php:239
25
- msgid "Select Thumbnail"
26
- msgstr ""
27
-
28
- #: main.php:240
29
- msgid "Insert"
30
  msgstr ""
31
 
32
- #: main.php:241
33
- msgid "Image Successfully Removed"
34
  msgstr ""
35
 
36
- #: main.php:242
37
- msgid "Error with AJAX"
38
  msgstr ""
39
 
40
- #: main.php:253
41
- msgid "Please select a Download Item:"
 
 
42
  msgstr ""
43
 
44
- #: main.php:254
45
- msgid "Download Title"
46
  msgstr ""
47
 
48
- #: main.php:255
49
- msgid "Include Fancy Box"
 
50
  msgstr ""
51
 
52
- #: main.php:256
53
- msgid "Open New Window"
54
  msgstr ""
55
 
56
- #: main.php:257
57
- msgid "Button Color"
 
58
  msgstr ""
59
 
60
- #: main.php:258
61
- msgid "Insert SDM Shortcode"
62
  msgstr ""
63
 
64
- #: main.php:300
65
- msgid "Description"
 
66
  msgstr ""
67
 
68
- #: main.php:301
69
- msgid "Downloadable File (Visitors will download this item)"
70
  msgstr ""
71
 
72
- #: main.php:302
73
- msgid "PHP Dispatch or Redirect"
74
  msgstr ""
75
 
76
- #: main.php:303
77
- msgid "File Thumbnail (Optional)"
78
  msgstr ""
79
 
80
- #: main.php:304
81
- msgid "Statistics"
82
  msgstr ""
83
 
84
- #: main.php:305
85
- msgid "Other Details (Optional)"
 
 
 
86
  msgstr ""
87
 
88
- #: main.php:306
89
- msgid "Shortcodes"
 
 
 
90
  msgstr ""
91
 
92
- #: main.php:310
93
- msgid "Add a description for this download item."
94
  msgstr ""
95
 
96
- #: main.php:324
 
97
  msgid ""
98
- "Manually enter a valid URL of the file in the text box below, or click "
99
- "\"Select File\" button to upload (or choose) the downloadable file."
100
  msgstr ""
101
 
102
- #: main.php:335
103
- msgid "Steps to upload a file or choose one from your media library:"
104
  msgstr ""
105
 
106
- #: main.php:337
107
- msgid "Hit the \"Select File\" button."
 
108
  msgstr ""
109
 
110
- #: main.php:338
111
- msgid "Upload a new file or choose an existing one from your media library."
112
  msgstr ""
113
 
114
- #: main.php:339
115
- msgid ""
116
- "Click the \"Insert\" button, this will populate the uploaded file's URL in "
117
- "the above text field."
118
  msgstr ""
119
 
120
- #: main.php:360
121
- msgid ""
122
- "Dispatch the file via PHP directly instead of redirecting to it. PHP "
123
- "Dispatching keeps the download URL hidden. Dispatching works only for local "
124
- "files (files that you uploaded to this site via this plugin or media "
125
- "library)."
126
  msgstr ""
127
 
128
- #: main.php:368
129
  msgid ""
130
- "Manually enter a valid URL, or click \"Select Image\" to upload (or choose) "
131
- "the file thumbnail image."
132
  msgstr ""
133
 
134
- #: main.php:373
135
- msgid "Select Image"
136
  msgstr ""
137
 
138
- #: main.php:374
139
- msgid "Remove Image"
140
  msgstr ""
141
 
142
- #: main.php:388
143
  msgid ""
144
- "This thumbnail image will be used to create a fancy file download box if you "
145
- "want to use it."
146
  msgstr ""
147
 
148
- #: main.php:402
149
- msgid "These are the statistics for this download item."
150
  msgstr ""
151
 
152
- #: main.php:409
153
- msgid "Number of Downloads:"
154
  msgstr ""
155
 
156
- #: main.php:414
157
- msgid "Offset Count: "
158
  msgstr ""
159
 
160
- #: main.php:417
161
- msgid ""
162
- "Enter any positive or negative numerical value; to offset the download count "
163
- "shown to the visitors (when using the download counter shortcode)."
164
  msgstr ""
165
 
166
- #: main.php:424
167
- msgid "Disable download logging for this item."
168
  msgstr ""
169
 
170
- #: main.php:438
171
- msgid "File Size: "
172
  msgstr ""
173
 
174
- #: main.php:441
175
- msgid ""
176
- "Enter the size of this file (example value: 2.15 MB). You can show this "
177
- "value in the fancy display by using a shortcode parameter."
178
  msgstr ""
179
 
180
- #: main.php:445 sdm-post-type-content-handler.php:108
181
- #: includes/templates/fancy1/sdm-fancy-1.php:134
182
- #: includes/templates/fancy2/sdm-fancy-2.php:146
183
- msgid "Version: "
184
  msgstr ""
185
 
186
- #: main.php:448
187
- msgid ""
188
- "Enter the version number for this item if any (example value: v2.5.10). You "
189
- "can show this value in the fancy display by using a shortcode parameter."
190
  msgstr ""
191
 
192
- #: main.php:455
193
- msgid ""
194
- "The following shortcode can be used on posts or pages to embed a download "
195
- "now button for this file. You can also use the shortcode inserter (in the "
196
- "post editor) to add this shortcode to a post or page."
197
  msgstr ""
198
 
199
- #: main.php:461
200
- msgid ""
201
- "The following shortcode can be used to show a download counter for this item."
202
  msgstr ""
203
 
204
- #: main.php:467
205
- msgid ""
206
- "Read the full shortcode usage documentation <a href=\"https://www."
207
- "tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
208
- "\"_blank\">here</a>."
209
  msgstr ""
210
 
211
- #: main.php:569
212
- msgid "General Options"
213
  msgstr ""
214
 
215
- #: main.php:570
216
- msgid "Admin Options"
217
  msgstr ""
218
 
219
- #: main.php:573
220
- msgid "Google Captcha (reCAPTCHA)"
221
  msgstr ""
222
 
223
- #: main.php:574
224
- msgid "Terms and Conditions"
225
  msgstr ""
226
 
227
- #: main.php:576
228
- msgid "Colors"
229
  msgstr ""
230
 
231
- #: main.php:577
232
- msgid "Debug"
233
  msgstr ""
234
 
235
- #: main.php:578
236
- msgid "Delete Plugin Data"
237
  msgstr ""
238
 
239
- #: main.php:581
240
- msgid "Hide Download Count"
241
  msgstr ""
242
 
243
- #: main.php:582
244
- msgid "PHP Dispatching"
245
  msgstr ""
246
 
247
- #: main.php:583
248
- msgid "Only Allow Logged-in Users to Download"
249
  msgstr ""
250
 
251
- #: main.php:584
252
- msgid "Login Page URL"
253
  msgstr ""
254
 
255
- #: main.php:586
256
- msgid "Remove Tinymce Button"
257
  msgstr ""
258
 
259
- #: main.php:587
260
- msgid "Log Unique IP"
 
 
 
 
261
  msgstr ""
262
 
263
- #: main.php:588
264
- msgid "Do Not Capture IP Address"
 
265
  msgstr ""
266
 
267
- #: main.php:589
268
- msgid "Do Not Count Downloads from Bots"
 
269
  msgstr ""
270
 
271
- #: main.php:590
272
- msgid "Disable Download Logs"
273
  msgstr ""
274
 
275
- #: main.php:592
276
- msgid "Download Button Color"
277
  msgstr ""
278
 
279
- #: main.php:594
280
- msgid "Enable Debug"
281
  msgstr ""
282
 
283
- #: main.php:597
284
- msgid "Enable reCAPTCHA"
285
  msgstr ""
286
 
287
- #: main.php:598
288
- msgid "Site Key"
289
  msgstr ""
290
 
291
- #: main.php:599
292
- msgid "Secret Key"
293
  msgstr ""
294
 
295
- #: main.php:602
296
- msgid "Enable Terms and Conditions"
297
  msgstr ""
298
 
299
- #: main.php:603
300
- msgid "Terms Page URL"
301
  msgstr ""
302
 
303
- #: main.php:608
304
- msgid "General options settings"
 
305
  msgstr ""
306
 
307
- #: main.php:613
308
- msgid "Admin options settings"
309
  msgstr ""
310
 
311
- #: main.php:618
312
- msgid "Front End colors settings"
313
  msgstr ""
314
 
315
- #: main.php:623
316
- msgid "Debug settings"
317
  msgstr ""
318
 
319
- #: main.php:628
320
- msgid ""
321
- "You can delete all the data related to this plugin from database using the "
322
- "button below. Useful when you're uninstalling the plugin and don't want any "
323
- "leftovers remaining."
324
  msgstr ""
325
 
326
- #: main.php:629
327
- msgid "Warning"
 
328
  msgstr ""
329
 
330
- #: main.php:629
331
- msgid ""
332
- "this can't be undone. All settings, download items, download logs will be "
333
- "deleted."
334
  msgstr ""
335
 
336
- #: main.php:630
337
- msgid "Delete all data and deactivate plugin"
338
  msgstr ""
339
 
340
- #: main.php:636
341
- msgid "Google Captcha (reCAPTCHA) options"
342
  msgstr ""
343
 
344
- #: main.php:646
 
345
  msgid ""
346
- "Check this box if you want to use <a href=\"https://www.google.com/recaptcha/"
347
- "admin\" target=\"_blank\">reCAPTCHA</a>. "
348
  msgstr ""
349
 
350
- #: main.php:647
351
- msgid "The captcha option adds a captcha to the download now buttons."
352
  msgstr ""
353
 
354
- #: main.php:654
355
- msgid "The site key for the reCAPTCHA API"
356
  msgstr ""
357
 
358
- #: main.php:661
359
- msgid "The secret key for the reCAPTCHA API"
360
  msgstr ""
361
 
362
- #: main.php:667
363
- msgid "Hide the download count that is shown in some of the fancy templates."
364
  msgstr ""
365
 
366
- #: main.php:674
367
- msgid ""
368
- "When you create a new download item, The PHP Dispatching option should be "
369
- "enabled by default. PHP Dispatching keeps the URL of the downloadable files "
370
- "hidden."
371
  msgstr ""
372
 
373
- #: main.php:681
374
- msgid ""
375
- "Enable this option if you want to allow downloads only for logged-in users. "
376
- "When enabled, anonymous users clicking on the download button will receive "
377
- "an error message."
378
  msgstr ""
379
 
380
- #: main.php:688
381
- msgid ""
382
- "(Optional) Specify a login page URL where users can login. This is useful if "
383
- "you only allow logged in users to be able to download. This link will be "
384
- "added to the message that is shown to anonymous users."
385
  msgstr ""
386
 
387
- #: main.php:694
388
- msgid "Removes the SDM Downloads button from the WP content editor."
389
  msgstr ""
390
 
391
- #: main.php:700
392
- msgid "Only logs downloads from unique IP addresses."
 
393
  msgstr ""
394
 
395
- #: main.php:706
396
- msgid ""
397
- "Use this if you do not want to capture the IP address and Country of the "
398
- "visitors when they download an item."
399
  msgstr ""
400
 
401
- #: main.php:712
402
- msgid "When enabled, the plugin won't count and log downloads from bots."
 
403
  msgstr ""
404
 
405
- #: main.php:718
406
- msgid ""
407
- "Disables all download logs. (This global option overrides the individual "
408
- "download item option.)"
409
  msgstr ""
410
 
411
- #: main.php:738
412
- msgid "Check this option to enable debug logging."
413
  msgstr ""
414
 
415
- #: main.php:740 main.php:742 includes/sdm-download-request-handler.php:30
416
- msgid "Click here"
 
 
417
  msgstr ""
418
 
419
- #: main.php:741
420
- msgid " to view log file."
 
 
 
 
421
  msgstr ""
422
 
423
- #: main.php:743
424
- msgid " to reset log file."
425
  msgstr ""
426
 
427
- #: main.php:749
428
- msgid ""
429
- "You can use this option to make the visitors agree to your terms before they "
430
- "can download the item."
431
  msgstr ""
432
 
433
- #: main.php:756
434
- msgid "Enter the URL of your terms and conditions page."
435
  msgstr ""
436
 
437
- #: main.php:793
438
- msgid "Permission denied!"
439
  msgstr ""
440
 
441
- #: main.php:869
442
- msgid "Image"
443
  msgstr ""
444
 
445
- #: main.php:870 includes/sdm-logs-list-table.php:70
446
- msgid "Title"
447
  msgstr ""
448
 
449
- #: main.php:871
450
- msgid "ID"
451
  msgstr ""
452
 
453
- #: main.php:872 includes/sdm-logs-list-table.php:71
454
- msgid "File"
455
  msgstr ""
456
 
457
- #: main.php:873 sdm-post-type-and-taxonomy.php:56
458
- msgid "Categories"
459
  msgstr ""
460
 
461
- #: main.php:874 sdm-post-type-and-taxonomy.php:80
462
- msgid "Tags"
463
  msgstr ""
464
 
465
- #: main.php:875 sdm-post-type-and-taxonomy.php:7
466
- #: sdm-post-type-and-taxonomy.php:8 sdm-post-type-and-taxonomy.php:13
467
- #: sdm-post-type-and-taxonomy.php:19 sdm-post-type-content-handler.php:77
468
- #: sdm-shortcodes.php:162 includes/sdm-logs-list-table.php:20
469
- #: includes/templates/fancy1/sdm-fancy-1.php:111
470
- msgid "Downloads"
471
  msgstr ""
472
 
473
- #: main.php:876
474
- msgid "Date Posted"
475
  msgstr ""
476
 
477
- #: sdm-post-type-and-taxonomy.php:9 sdm-post-type-and-taxonomy.php:10
478
- msgid "Add New"
479
  msgstr ""
480
 
481
- #: sdm-post-type-and-taxonomy.php:11
482
- msgid "Edit Download"
483
  msgstr ""
484
 
485
- #: sdm-post-type-and-taxonomy.php:12
486
- msgid "New Download"
487
  msgstr ""
488
 
489
- #: sdm-post-type-and-taxonomy.php:14
490
- msgid "View Download"
491
  msgstr ""
492
 
493
- #: sdm-post-type-and-taxonomy.php:15
494
- msgid "Search Downloads"
495
  msgstr ""
496
 
497
- #: sdm-post-type-and-taxonomy.php:16
498
- msgid "No Downloads found"
499
  msgstr ""
500
 
501
- #: sdm-post-type-and-taxonomy.php:17
502
- msgid "No Downloads found in Trash"
503
  msgstr ""
504
 
505
- #: sdm-post-type-and-taxonomy.php:18
506
- msgid "Parent Download"
507
  msgstr ""
508
 
509
- #: sdm-post-type-and-taxonomy.php:46
510
- msgid "Download Categories"
511
  msgstr ""
512
 
513
- #: sdm-post-type-and-taxonomy.php:47
514
- msgid "Download Category"
515
  msgstr ""
516
 
517
- #: sdm-post-type-and-taxonomy.php:48
518
- msgid "Search Categories"
519
  msgstr ""
520
 
521
- #: sdm-post-type-and-taxonomy.php:49
522
- msgid "All Categories"
523
  msgstr ""
524
 
525
- #: sdm-post-type-and-taxonomy.php:50
526
- msgid "Categories Genre"
527
  msgstr ""
528
 
529
- #: sdm-post-type-and-taxonomy.php:51
530
- msgid "Categories Genre:"
531
  msgstr ""
532
 
533
- #: sdm-post-type-and-taxonomy.php:52
534
- msgid "Edit Category"
535
  msgstr ""
536
 
537
- #: sdm-post-type-and-taxonomy.php:53
538
- msgid "Update Category"
539
  msgstr ""
540
 
541
- #: sdm-post-type-and-taxonomy.php:54
542
- msgid "Add New Category"
543
  msgstr ""
544
 
545
- #: sdm-post-type-and-taxonomy.php:55
546
- msgid "New Category"
547
  msgstr ""
548
 
549
- #: sdm-post-type-and-taxonomy.php:70
550
- msgid "Download Tags"
551
  msgstr ""
552
 
553
- #: sdm-post-type-and-taxonomy.php:71
554
- msgid "Download Tag"
555
  msgstr ""
556
 
557
- #: sdm-post-type-and-taxonomy.php:72
558
- msgid "Search Tags"
 
 
 
559
  msgstr ""
560
 
561
- #: sdm-post-type-and-taxonomy.php:73
562
- msgid "All Tags"
 
 
563
  msgstr ""
564
 
565
- #: sdm-post-type-and-taxonomy.php:74
566
- msgid "Tags Genre"
 
567
  msgstr ""
568
 
569
- #: sdm-post-type-and-taxonomy.php:75
570
- msgid "Tags Genre:"
 
 
571
  msgstr ""
572
 
573
- #: sdm-post-type-and-taxonomy.php:76
574
- msgid "Edit Tag"
 
 
575
  msgstr ""
576
 
577
- #: sdm-post-type-and-taxonomy.php:77
578
- msgid "Update Tag"
 
 
579
  msgstr ""
580
 
581
- #: sdm-post-type-and-taxonomy.php:78
582
- msgid "Add New Tag"
 
583
  msgstr ""
584
 
585
- #: sdm-post-type-and-taxonomy.php:79
586
- msgid "New Tag"
587
  msgstr ""
588
 
589
- #: sdm-post-type-content-handler.php:39
590
- #: includes/templates/fancy0/sdm-fancy-0.php:64
591
- msgid "green"
592
  msgstr ""
593
 
594
- #: sdm-post-type-content-handler.php:44 sdm-shortcodes.php:68
595
- #: sdm-shortcodes.php:176 includes/sdm-utility-functions.php:62
596
- #: includes/sdm-utility-functions.php:228
597
- #: includes/sdm-utility-functions.php:278
598
- #: includes/templates/fancy0/sdm-fancy-0.php:75
599
- #: includes/templates/fancy1/sdm-fancy-1.php:43
600
- #: includes/templates/fancy2/sdm-fancy-2.php:60
601
- msgid "Download Now!"
602
  msgstr ""
603
 
604
- #: sdm-post-type-content-handler.php:77 sdm-shortcodes.php:162
605
- #: includes/sdm-logs-list-table.php:19
606
- #: includes/templates/fancy1/sdm-fancy-1.php:111
607
- msgid "Download"
608
  msgstr ""
609
 
610
- #: sdm-post-type-content-handler.php:101
611
- #: includes/templates/fancy1/sdm-fancy-1.php:127
612
- #: includes/templates/fancy2/sdm-fancy-2.php:139
613
- msgid "Size: "
614
  msgstr ""
615
 
616
- #: sdm-shortcodes.php:81 sdm-shortcodes.php:142 sdm-shortcodes.php:156
617
- msgid "Error! Please enter an ID value with this shortcode."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
618
  msgstr ""
619
 
620
- #: sdm-shortcodes.php:189
621
- msgid ""
622
- "Error! You must enter a category slug OR a category id with this shortcode. "
623
- "Refer to the documentation for usage instructions."
624
  msgstr ""
625
 
626
- #: sdm-shortcodes.php:194
627
- msgid "Error! Please enter a category slug OR id; not both."
628
  msgstr ""
629
 
630
- #: sdm-shortcodes.php:224
631
- msgid ""
632
- "Error! You must enter a numeric number for the \"pagination\" parameter of "
633
- "the shortcode. Refer to the usage documentation."
634
  msgstr ""
635
 
636
- #: sdm-shortcodes.php:249
637
- msgid "There are no download items matching this category criteria."
638
  msgstr ""
639
 
640
- #: includes/sdm-admin-menu-handler.php:9
641
- msgid "Logs"
642
  msgstr ""
643
 
644
- #: includes/sdm-admin-menu-handler.php:10
645
- #: includes/sdm-admin-menu-handler.php:325
646
- msgid "Stats"
 
647
  msgstr ""
648
 
649
- #: includes/sdm-admin-menu-handler.php:12
650
- msgid "Add-ons"
651
  msgstr ""
652
 
653
- #: includes/sdm-admin-menu-handler.php:40
654
- msgid "Simple Download Monitor Settings Page"
655
  msgstr ""
656
 
657
- #: includes/sdm-admin-menu-handler.php:43
658
- msgid ""
659
- "Read the full plugin usage documentation <a href=\"https://simple-download-"
660
- "monitor.com/download-monitor-tutorials/\" target=\"_blank\">here</a>."
661
  msgstr ""
662
 
663
- #: includes/sdm-admin-menu-handler.php:44
664
  msgid ""
665
- "You can also <a href=\"https://www.tipsandtricks-hq.com/development-center\" "
666
- "target=\"_blank\">"
 
667
  msgstr ""
668
 
669
- #: includes/sdm-admin-menu-handler.php:44
670
- msgid "follow us"
671
  msgstr ""
672
 
673
- #: includes/sdm-admin-menu-handler.php:44
674
  msgid ""
675
- "on Twitter, Google+ or via Email to stay upto date about the new features of "
676
- "this plugin."
677
  msgstr ""
678
 
679
- #: includes/sdm-admin-menu-handler.php:52
680
- msgid "General Settings"
681
  msgstr ""
682
 
683
- #: includes/sdm-admin-menu-handler.php:53
684
- msgid "Advanced Settings"
685
  msgstr ""
686
 
687
- #: includes/sdm-admin-menu-handler.php:90
688
  msgid ""
689
- "If you need a feature rich and supported plugin for selling your digital "
690
- "items then checkout our"
691
- msgstr ""
692
-
693
- #: includes/sdm-admin-menu-handler.php:90
694
- msgid "WP eStore Plugin"
695
  msgstr ""
696
 
697
- #: includes/sdm-admin-menu-handler.php:155
698
- msgid "Are you sure want to delete all plugin's data and deactivate plugin?"
 
 
699
  msgstr ""
700
 
701
- #: includes/sdm-admin-menu-handler.php:160
702
  msgid ""
703
- "Data has been deleted and plugin deactivated. Click OK to go to Plugins page."
 
704
  msgstr ""
705
 
706
- #: includes/sdm-admin-menu-handler.php:164
707
- msgid "Error occured."
708
  msgstr ""
709
 
710
- #: includes/sdm-admin-menu-handler.php:217
711
- msgid "Log entries exported! Click on the following link to download the file."
712
  msgstr ""
713
 
714
- #: includes/sdm-admin-menu-handler.php:218
715
- msgid "Download Logs CSV File"
716
  msgstr ""
717
 
718
- #: includes/sdm-admin-menu-handler.php:228
719
- msgid "Download log entries deleted!"
720
  msgstr ""
721
 
722
- #: includes/sdm-admin-menu-handler.php:240
723
- msgid "Download Logs"
 
 
 
724
  msgstr ""
725
 
726
- #: includes/sdm-admin-menu-handler.php:243
727
- msgid "This page lists all tracked downloads."
 
 
 
728
  msgstr ""
729
 
730
- #: includes/sdm-admin-menu-handler.php:250
731
- msgid "Export Download Log Entries"
 
 
 
732
  msgstr ""
733
 
734
- #: includes/sdm-admin-menu-handler.php:254
735
- msgid "Export Log Entries to CSV File"
 
 
 
736
  msgstr ""
737
 
738
- #: includes/sdm-admin-menu-handler.php:261
739
- msgid "Reset Download Log Entries"
740
  msgstr ""
741
 
742
- #: includes/sdm-admin-menu-handler.php:265
743
- msgid "Reset Log Entries"
744
  msgstr ""
745
 
746
- #: includes/sdm-admin-menu-handler.php:329
747
- msgid "Choose Date Range (yyyy-mm-dd)"
 
 
748
  msgstr ""
749
 
750
- #: includes/sdm-admin-menu-handler.php:333
751
- msgid "Start Date: "
752
  msgstr ""
753
 
754
- #: includes/sdm-admin-menu-handler.php:334
755
- msgid "End Date: "
 
 
756
  msgstr ""
757
 
758
- #: includes/sdm-admin-menu-handler.php:336
759
- msgid "This Month"
760
  msgstr ""
761
 
762
- #: includes/sdm-admin-menu-handler.php:337
763
- msgid "Last Month"
764
  msgstr ""
765
 
766
- #: includes/sdm-admin-menu-handler.php:338
767
- msgid "This Year"
768
  msgstr ""
769
 
770
- #: includes/sdm-admin-menu-handler.php:339
771
- msgid "Last Year"
772
  msgstr ""
773
 
774
- #: includes/sdm-admin-menu-handler.php:340
775
- msgid "All Time"
 
 
776
  msgstr ""
777
 
778
- #: includes/sdm-admin-menu-handler.php:343
779
- msgid "View Stats"
780
  msgstr ""
781
 
782
- #: includes/sdm-admin-menu-handler.php:349
783
- msgid "Downloads by date"
 
 
784
  msgstr ""
785
 
786
- #: includes/sdm-admin-menu-handler.php:350
787
- msgid "Downloads by country"
 
 
 
788
  msgstr ""
789
 
790
- #: includes/sdm-admin-menu-handler.php:384 includes/sdm-logs-list-table.php:73
791
- msgid "Date"
792
  msgstr ""
793
 
794
- #: includes/sdm-admin-menu-handler.php:385
795
- msgid "Number of downloads"
796
  msgstr ""
797
 
798
- #: includes/sdm-admin-menu-handler.php:389
799
- msgid "Downloads by Date"
800
  msgstr ""
801
 
802
- #: includes/sdm-download-request-handler.php:13
803
- msgid "Error! Incorrect download item id."
804
  msgstr ""
805
 
806
- #: includes/sdm-download-request-handler.php:16
807
- msgid "Error! This download item ("
808
  msgstr ""
809
 
810
- #: includes/sdm-download-request-handler.php:28
811
- msgid "Error! This download requires a password."
812
  msgstr ""
813
 
814
- #: includes/sdm-download-request-handler.php:31
815
- msgid " and enter a valid password for this item"
816
  msgstr ""
817
 
818
- #: includes/sdm-download-request-handler.php:37
819
- msgid "Error! Incorrect password. This download requires a valid password."
820
  msgstr ""
821
 
822
- #: includes/sdm-download-request-handler.php:65
823
- msgid "__Click here__ to go to login page."
824
  msgstr ""
825
 
826
- #: includes/sdm-download-request-handler.php:68
827
- msgid "You need to be logged in to download this file."
828
  msgstr ""
829
 
830
- #: includes/sdm-download-request-handler.php:72
831
- msgid "Not Logged In"
832
  msgstr ""
833
 
834
- #: includes/sdm-download-request-handler.php:130
835
- msgid "Error! Failed to log the download request in the database table"
836
  msgstr ""
837
 
838
- #: includes/sdm-download-request-handler.php:162
839
- msgid ""
840
- "Error! The URL value is empty. Please specify a correct URL value to "
841
- "redirect to!"
842
  msgstr ""
843
 
844
- #: includes/sdm-download-request-handler.php:225
845
- #: includes/sdm-download-request-handler.php:229
846
- msgid "ERROR:"
847
  msgstr ""
848
 
849
- #: includes/sdm-download-request-handler.php:225
850
- #: includes/sdm-download-request-handler.php:229
851
- msgid "Google reCAPTCHA verification failed."
852
  msgstr ""
853
 
854
- #: includes/sdm-download-request-handler.php:225
855
- #: includes/sdm-download-request-handler.php:229
856
- msgid "Back"
857
  msgstr ""
858
 
859
- #: includes/sdm-download-request-handler.php:229
860
- msgid "Do you have JavaScript enabled?"
861
  msgstr ""
862
 
863
- #: includes/sdm-latest-downloads.php:43
864
- msgid "There are no download items matching this shortcode criteria."
865
  msgstr ""
866
 
867
- #: includes/sdm-logs-list-table.php:45
868
- msgid "Edit"
869
  msgstr ""
870
 
871
- #: includes/sdm-logs-list-table.php:46
872
- msgid "Delete"
873
  msgstr ""
874
 
875
- #: includes/sdm-logs-list-table.php:72
876
- msgid "Visitor IP"
877
  msgstr ""
878
 
879
- #: includes/sdm-logs-list-table.php:74
880
- msgid "Country"
881
  msgstr ""
882
 
883
- #: includes/sdm-logs-list-table.php:75
884
- msgid "Username"
885
  msgstr ""
886
 
887
- #: includes/sdm-logs-list-table.php:96
888
- msgid "Delete Permanently"
889
  msgstr ""
890
 
891
- #: includes/sdm-logs-list-table.php:111 includes/sdm-logs-list-table.php:142
892
- msgid "Nope! Security check failed!"
893
  msgstr ""
894
 
895
- #: includes/sdm-logs-list-table.php:115
896
- msgid "No entries were selected."
897
  msgstr ""
898
 
899
- #: includes/sdm-logs-list-table.php:115 includes/sdm-logs-list-table.php:129
900
- #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:151
901
- #: includes/sdm-logs-list-table.php:153
902
- msgid "Click to Dismiss"
903
  msgstr ""
904
 
905
- #: includes/sdm-logs-list-table.php:122
906
- msgid "Error! The row id value of a log entry must be numeric."
907
  msgstr ""
908
 
909
- #: includes/sdm-logs-list-table.php:129
910
- msgid "Entries Deleted!"
911
  msgstr ""
912
 
913
- #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:153
914
- msgid "Error"
915
  msgstr ""
916
 
917
- #: includes/sdm-logs-list-table.php:151
918
- msgid "Entry Deleted!"
919
  msgstr ""
920
 
921
- #: includes/sdm-search-shortcode-handler.php:65
922
- msgid "Showing search results for "
923
  msgstr ""
924
 
925
- #: includes/sdm-search-shortcode-handler.php:66
926
- msgid "Number of items found: "
927
  msgstr ""
928
 
929
- #: includes/sdm-search-shortcode-handler.php:67
930
- msgid "Keywords searched: "
931
  msgstr ""
932
 
933
- #: includes/sdm-search-shortcode-handler.php:70
934
- msgid "Nothing found for "
935
  msgstr ""
936
 
937
- #: includes/sdm-utility-functions.php:9
938
- msgid "Green"
939
  msgstr ""
940
 
941
- #: includes/sdm-utility-functions.php:10
942
- msgid "Blue"
943
  msgstr ""
944
 
945
- #: includes/sdm-utility-functions.php:11
946
- msgid "Purple"
947
  msgstr ""
948
 
949
- #: includes/sdm-utility-functions.php:12
950
- msgid "Teal"
951
  msgstr ""
952
 
953
- #: includes/sdm-utility-functions.php:13
954
- msgid "Dark Blue"
955
  msgstr ""
956
 
957
- #: includes/sdm-utility-functions.php:14
958
- msgid "Black"
 
 
959
  msgstr ""
960
 
961
- #: includes/sdm-utility-functions.php:15
962
- msgid "Grey"
963
  msgstr ""
964
 
965
- #: includes/sdm-utility-functions.php:16
966
- msgid "Pink"
 
 
967
  msgstr ""
968
 
969
- #: includes/sdm-utility-functions.php:17
970
- msgid "Orange"
971
  msgstr ""
972
 
973
- #: includes/sdm-utility-functions.php:18
974
- msgid "White"
975
  msgstr ""
976
 
977
- #: includes/sdm-utility-functions.php:69
978
- msgid "Enter Password to Download:"
979
  msgstr ""
980
 
981
- #: includes/sdm-utility-functions.php:264
982
- msgid "I agree to the "
 
 
983
  msgstr ""
984
 
985
- #: includes/sdm-utility-functions.php:264
986
- msgid "terms and conditions"
987
  msgstr ""
988
 
 
 
 
989
 
990
  ### Translation strings for the addons
991
  # Squeeze form addon
@@ -997,4 +1307,5 @@ msgid "Name"
997
  msgstr ""
998
 
999
  msgid "Email"
1000
- msgstr ""
 
1
+ #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Simple Download Monitor\n"
6
+ "POT-Creation-Date: 2019-10-25 18:15+1100\n"
7
+ "PO-Revision-Date: 2019-10-25 18:14+1100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2.3\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: main.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
 
24
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:5
25
+ msgid "Specific Download Item Logs"
 
 
 
 
26
  msgstr ""
27
 
28
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:22
29
+ msgid "This menu allows you to view the download logs of individual items."
 
 
 
 
30
  msgstr ""
31
 
32
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:28
33
+ msgid "View Specific Item Logs"
34
  msgstr ""
35
 
36
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:31
37
+ msgid "Enter the Download ID of the item: "
38
  msgstr ""
39
 
40
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:34
41
+ msgid ""
42
+ "You can find the Download ID of an item from the Downloads menu of the "
43
+ "plugin."
44
  msgstr ""
45
 
46
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:37
47
+ msgid "View Logs"
48
  msgstr ""
49
 
50
+ #: includes/admin-side/sdm-admin-individual-item-logs-page.php:54
51
+ msgid ""
52
+ "The following table shows the download logs of the item with Download ID: "
53
  msgstr ""
54
 
55
+ #: includes/sdm-admin-menu-handler.php:9
56
+ msgid "Logs"
57
  msgstr ""
58
 
59
+ #: includes/sdm-admin-menu-handler.php:10
60
+ #: includes/sdm-admin-menu-handler.php:472
61
+ msgid "Stats"
62
  msgstr ""
63
 
64
+ #: includes/sdm-admin-menu-handler.php:11 main.php:187
65
+ msgid "Settings"
66
  msgstr ""
67
 
68
+ #: includes/sdm-admin-menu-handler.php:12
69
+ #: includes/sdm-admin-menu-handler.php:129
70
+ msgid "Add-ons"
71
  msgstr ""
72
 
73
+ #: includes/sdm-admin-menu-handler.php:74
74
+ msgid "Simple Download Monitor Settings Page"
75
  msgstr ""
76
 
77
+ #: includes/sdm-admin-menu-handler.php:79
78
+ msgid "General Settings"
79
  msgstr ""
80
 
81
+ #: includes/sdm-admin-menu-handler.php:80
82
+ msgid "Advanced Settings"
83
  msgstr ""
84
 
85
+ #: includes/sdm-admin-menu-handler.php:123
86
+ msgid "Plugin Documentation"
87
  msgstr ""
88
 
89
+ #: includes/sdm-admin-menu-handler.php:125
90
+ #, php-format
91
+ msgid ""
92
+ "Please read the <a target=\"_blank\" href=\"%s\">Simple Download Monitor</a> "
93
+ "plugin setup instructions and tutorials to learn how to configure and use it."
94
  msgstr ""
95
 
96
+ #: includes/sdm-admin-menu-handler.php:131
97
+ #, php-format
98
+ msgid ""
99
+ "Want additional functionality? Check out our <a target=\"_blank\" href=\"%s"
100
+ "\">Add-Ons!</a>"
101
  msgstr ""
102
 
103
+ #: includes/sdm-admin-menu-handler.php:135
104
+ msgid "Rate Us"
105
  msgstr ""
106
 
107
+ #: includes/sdm-admin-menu-handler.php:137
108
+ #, php-format
109
  msgid ""
110
+ "Like the plugin? Please give us a <a href=\"%s\" target=\"_blank\">rating!</"
111
+ "a>"
112
  msgstr ""
113
 
114
+ #: includes/sdm-admin-menu-handler.php:150
115
+ msgid "Our Other Plugins"
116
  msgstr ""
117
 
118
+ #: includes/sdm-admin-menu-handler.php:152
119
+ #, php-format
120
+ msgid "Check out <a target=\"_blank\" href=\"%s\">our other plugins</a>"
121
  msgstr ""
122
 
123
+ #: includes/sdm-admin-menu-handler.php:156
124
+ msgid "Social"
125
  msgstr ""
126
 
127
+ #: includes/sdm-admin-menu-handler.php:158
128
+ #, php-format
129
+ msgid "<a target=\"_blank\" href=\"%s\">Facebook</a>"
 
130
  msgstr ""
131
 
132
+ #: includes/sdm-admin-menu-handler.php:159
133
+ #, php-format
134
+ msgid "<a target=\"_blank\" href=\"%s\">Twitter</a>"
 
 
 
135
  msgstr ""
136
 
137
+ #: includes/sdm-admin-menu-handler.php:166
138
  msgid ""
139
+ "If you need a feature rich and supported plugin for selling your digital "
140
+ "items then checkout our"
141
  msgstr ""
142
 
143
+ #: includes/sdm-admin-menu-handler.php:166
144
+ msgid "WP eStore Plugin"
145
  msgstr ""
146
 
147
+ #: includes/sdm-admin-menu-handler.php:239
148
+ msgid "Are you sure want to delete all plugin's data and deactivate plugin?"
149
  msgstr ""
150
 
151
+ #: includes/sdm-admin-menu-handler.php:244
152
  msgid ""
153
+ "Data has been deleted and plugin deactivated. Click OK to go to Plugins page."
 
154
  msgstr ""
155
 
156
+ #: includes/sdm-admin-menu-handler.php:248
157
+ msgid "Error occurred."
158
  msgstr ""
159
 
160
+ #: includes/sdm-admin-menu-handler.php:301
161
+ msgid "Main Logs"
162
  msgstr ""
163
 
164
+ #: includes/sdm-admin-menu-handler.php:302
165
+ msgid "Specific Item Logs"
166
  msgstr ""
167
 
168
+ #: includes/sdm-admin-menu-handler.php:349
169
+ msgid "Log entries exported! Click on the following link to download the file."
 
 
170
  msgstr ""
171
 
172
+ #: includes/sdm-admin-menu-handler.php:350
173
+ msgid "Download Logs CSV File"
174
  msgstr ""
175
 
176
+ #: includes/sdm-admin-menu-handler.php:360
177
+ msgid "Download log entries deleted!"
178
  msgstr ""
179
 
180
+ #: includes/sdm-admin-menu-handler.php:371
181
+ msgid "Download Logs"
 
 
182
  msgstr ""
183
 
184
+ #: includes/sdm-admin-menu-handler.php:374
185
+ msgid "This page lists all tracked downloads."
 
 
186
  msgstr ""
187
 
188
+ #: includes/sdm-admin-menu-handler.php:381
189
+ msgid "Export Download Log Entries"
 
 
190
  msgstr ""
191
 
192
+ #: includes/sdm-admin-menu-handler.php:385
193
+ msgid "Export Log Entries to CSV File"
 
 
 
194
  msgstr ""
195
 
196
+ #: includes/sdm-admin-menu-handler.php:393
197
+ msgid "Reset Download Log Entries"
 
198
  msgstr ""
199
 
200
+ #: includes/sdm-admin-menu-handler.php:397
201
+ msgid "Reset Log Entries"
 
 
 
202
  msgstr ""
203
 
204
+ #: includes/sdm-admin-menu-handler.php:476
205
+ msgid "Choose Date Range (yyyy-mm-dd)"
206
  msgstr ""
207
 
208
+ #: includes/sdm-admin-menu-handler.php:480
209
+ msgid "Start Date: "
210
  msgstr ""
211
 
212
+ #: includes/sdm-admin-menu-handler.php:481
213
+ msgid "End Date: "
214
  msgstr ""
215
 
216
+ #: includes/sdm-admin-menu-handler.php:483
217
+ msgid "This Month"
218
  msgstr ""
219
 
220
+ #: includes/sdm-admin-menu-handler.php:484
221
+ msgid "Last Month"
222
  msgstr ""
223
 
224
+ #: includes/sdm-admin-menu-handler.php:485
225
+ msgid "This Year"
226
  msgstr ""
227
 
228
+ #: includes/sdm-admin-menu-handler.php:486
229
+ msgid "Last Year"
230
  msgstr ""
231
 
232
+ #: includes/sdm-admin-menu-handler.php:487
233
+ msgid "All Time"
234
  msgstr ""
235
 
236
+ #: includes/sdm-admin-menu-handler.php:490
237
+ msgid "View Stats"
238
  msgstr ""
239
 
240
+ #: includes/sdm-admin-menu-handler.php:496
241
+ msgid "Downloads by date"
242
  msgstr ""
243
 
244
+ #: includes/sdm-admin-menu-handler.php:497
245
+ msgid "Downloads by country"
246
  msgstr ""
247
 
248
+ #: includes/sdm-admin-menu-handler.php:498
249
+ msgid "Downloads by country list"
250
  msgstr ""
251
 
252
+ #: includes/sdm-admin-menu-handler.php:508
253
+ msgid ""
254
+ "Enter your Google Maps API Key <a href=\"edit.php?"
255
+ "post_type=sdm_downloads&page=sdm-settings&action=advanced-"
256
+ "settings#maps_api_key\" target=\"_blank\">in the settings</a> to properly "
257
+ "display the chart."
258
  msgstr ""
259
 
260
+ #: includes/sdm-admin-menu-handler.php:519
261
+ #: includes/sdm-admin-menu-handler.php:539
262
+ msgid "Country Name"
263
  msgstr ""
264
 
265
+ #: includes/sdm-admin-menu-handler.php:520
266
+ #: includes/sdm-admin-menu-handler.php:540
267
+ msgid "Total Downloads"
268
  msgstr ""
269
 
270
+ #: includes/sdm-admin-menu-handler.php:580 includes/sdm-logs-list-table.php:73
271
+ msgid "Date"
272
  msgstr ""
273
 
274
+ #: includes/sdm-admin-menu-handler.php:581
275
+ msgid "Number of downloads"
276
  msgstr ""
277
 
278
+ #: includes/sdm-admin-menu-handler.php:585
279
+ msgid "Downloads by Date"
280
  msgstr ""
281
 
282
+ #: includes/sdm-blocks.php:28
283
+ msgid "Default"
284
  msgstr ""
285
 
286
+ #: includes/sdm-blocks.php:37
287
+ msgid "SDM Download"
288
  msgstr ""
289
 
290
+ #: includes/sdm-blocks.php:38
291
+ msgid "Download Item"
292
  msgstr ""
293
 
294
+ #: includes/sdm-blocks.php:39
295
+ msgid "Select download item."
296
  msgstr ""
297
 
298
+ #: includes/sdm-blocks.php:40
299
+ msgid "Button Text"
300
  msgstr ""
301
 
302
+ #: includes/sdm-blocks.php:41
303
+ msgid ""
304
+ "Customized text for the download button. Leave it blank to use default text."
305
  msgstr ""
306
 
307
+ #: includes/sdm-blocks.php:42
308
+ msgid "Template"
309
  msgstr ""
310
 
311
+ #: includes/sdm-blocks.php:43
312
+ msgid "Select download item template."
313
  msgstr ""
314
 
315
+ #: includes/sdm-blocks.php:44
316
+ msgid "Open Download in a New Window"
317
  msgstr ""
318
 
319
+ #: includes/sdm-blocks.php:45 main.php:268
320
+ msgid "Button Color"
 
 
 
321
  msgstr ""
322
 
323
+ #: includes/sdm-blocks.php:46
324
+ msgid ""
325
+ "Select button color. Note that this option may not work for some templates."
326
  msgstr ""
327
 
328
+ #: includes/sdm-blocks.php:86
329
+ msgid "Select item to view"
 
 
330
  msgstr ""
331
 
332
+ #: includes/sdm-blocks.php:107
333
+ msgid "(Select item)"
334
  msgstr ""
335
 
336
+ #: includes/sdm-download-request-handler.php:13
337
+ msgid "Error! Incorrect download item id."
338
  msgstr ""
339
 
340
+ #: includes/sdm-download-request-handler.php:16
341
+ #, php-format
342
  msgid ""
343
+ "Error! This download item (%s) does not have any download link. Edit this "
344
+ "item and specify a downloadable file URL for it."
345
  msgstr ""
346
 
347
+ #: includes/sdm-download-request-handler.php:30
348
+ msgid "Error! This download requires a password."
349
  msgstr ""
350
 
351
+ #: includes/sdm-download-request-handler.php:32 main.php:890 main.php:892
352
+ msgid "Click here"
353
  msgstr ""
354
 
355
+ #: includes/sdm-download-request-handler.php:33
356
+ msgid " and enter a valid password for this item"
357
  msgstr ""
358
 
359
+ #: includes/sdm-download-request-handler.php:41
360
+ msgid "Error! Incorrect password. This download requires a valid password."
361
  msgstr ""
362
 
363
+ #: includes/sdm-download-request-handler.php:79
364
+ msgid "__Click here__ to go to login page."
 
 
 
365
  msgstr ""
366
 
367
+ #: includes/sdm-download-request-handler.php:82
368
+ msgid "You need to be logged in to download this file."
 
 
 
369
  msgstr ""
370
 
371
+ #: includes/sdm-download-request-handler.php:86
372
+ msgid "Not Logged In"
 
 
 
373
  msgstr ""
374
 
375
+ #: includes/sdm-download-request-handler.php:144
376
+ msgid "Error! Failed to log the download request in the database table"
377
  msgstr ""
378
 
379
+ #: includes/sdm-download-request-handler.php:216
380
+ #: includes/sdm-download-request-handler.php:220
381
+ msgid "ERROR:"
382
  msgstr ""
383
 
384
+ #: includes/sdm-download-request-handler.php:216
385
+ #: includes/sdm-download-request-handler.php:220
386
+ msgid "Google reCAPTCHA verification failed."
 
387
  msgstr ""
388
 
389
+ #: includes/sdm-download-request-handler.php:216
390
+ #: includes/sdm-download-request-handler.php:220
391
+ msgid "Back"
392
  msgstr ""
393
 
394
+ #: includes/sdm-download-request-handler.php:220
395
+ msgid "Do you have JavaScript enabled?"
 
 
396
  msgstr ""
397
 
398
+ #: includes/sdm-latest-downloads.php:43 includes/sdm-popular-downloads.php:43
399
+ msgid "There are no download items matching this shortcode criteria."
400
  msgstr ""
401
 
402
+ #: includes/sdm-logs-list-table.php:19
403
+ #: includes/templates/fancy1/sdm-fancy-1.php:140
404
+ #: sdm-post-type-content-handler.php:98 sdm-shortcodes.php:172
405
+ msgid "Download"
406
  msgstr ""
407
 
408
+ #: includes/sdm-logs-list-table.php:20
409
+ #: includes/templates/fancy1/sdm-fancy-1.php:140 main.php:1160
410
+ #: sdm-post-type-and-taxonomy.php:7 sdm-post-type-and-taxonomy.php:8
411
+ #: sdm-post-type-and-taxonomy.php:13 sdm-post-type-and-taxonomy.php:19
412
+ #: sdm-post-type-content-handler.php:98 sdm-shortcodes.php:172
413
+ msgid "Downloads"
414
  msgstr ""
415
 
416
+ #: includes/sdm-logs-list-table.php:45
417
+ msgid "Edit"
418
  msgstr ""
419
 
420
+ #: includes/sdm-logs-list-table.php:46
421
+ msgid "Delete"
 
 
422
  msgstr ""
423
 
424
+ #: includes/sdm-logs-list-table.php:70 main.php:1154
425
+ msgid "Title"
426
  msgstr ""
427
 
428
+ #: includes/sdm-logs-list-table.php:71 main.php:1157
429
+ msgid "File"
430
  msgstr ""
431
 
432
+ #: includes/sdm-logs-list-table.php:72
433
+ msgid "Visitor IP"
434
  msgstr ""
435
 
436
+ #: includes/sdm-logs-list-table.php:74
437
+ msgid "Country"
438
  msgstr ""
439
 
440
+ #: includes/sdm-logs-list-table.php:75
441
+ msgid "Username"
442
  msgstr ""
443
 
444
+ #: includes/sdm-logs-list-table.php:96
445
+ msgid "Delete Permanently"
446
  msgstr ""
447
 
448
+ #: includes/sdm-logs-list-table.php:111 includes/sdm-logs-list-table.php:142
449
+ msgid "Nope! Security check failed!"
450
  msgstr ""
451
 
452
+ #: includes/sdm-logs-list-table.php:115
453
+ msgid "No entries were selected."
454
  msgstr ""
455
 
456
+ #: includes/sdm-logs-list-table.php:115 includes/sdm-logs-list-table.php:129
457
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:151
458
+ #: includes/sdm-logs-list-table.php:153
459
+ msgid "Click to Dismiss"
 
 
460
  msgstr ""
461
 
462
+ #: includes/sdm-logs-list-table.php:122
463
+ msgid "Error! The row id value of a log entry must be numeric."
464
  msgstr ""
465
 
466
+ #: includes/sdm-logs-list-table.php:129
467
+ msgid "Entries Deleted!"
468
  msgstr ""
469
 
470
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:153
471
+ msgid "Error"
472
  msgstr ""
473
 
474
+ #: includes/sdm-logs-list-table.php:151
475
+ msgid "Entry Deleted!"
476
  msgstr ""
477
 
478
+ #: includes/sdm-search-shortcode-handler.php:65
479
+ msgid "Showing search results for "
480
  msgstr ""
481
 
482
+ #: includes/sdm-search-shortcode-handler.php:66
483
+ msgid "Number of items found: "
484
  msgstr ""
485
 
486
+ #: includes/sdm-search-shortcode-handler.php:67
487
+ msgid "Keywords searched: "
488
  msgstr ""
489
 
490
+ #: includes/sdm-search-shortcode-handler.php:70
491
+ msgid "Nothing found for "
492
  msgstr ""
493
 
494
+ #: includes/sdm-utility-functions.php:9
495
+ msgid "Green"
496
  msgstr ""
497
 
498
+ #: includes/sdm-utility-functions.php:10
499
+ msgid "Blue"
500
  msgstr ""
501
 
502
+ #: includes/sdm-utility-functions.php:11
503
+ msgid "Purple"
504
  msgstr ""
505
 
506
+ #: includes/sdm-utility-functions.php:12
507
+ msgid "Teal"
508
  msgstr ""
509
 
510
+ #: includes/sdm-utility-functions.php:13
511
+ msgid "Dark Blue"
512
  msgstr ""
513
 
514
+ #: includes/sdm-utility-functions.php:14
515
+ msgid "Black"
516
  msgstr ""
517
 
518
+ #: includes/sdm-utility-functions.php:15
519
+ msgid "Grey"
520
  msgstr ""
521
 
522
+ #: includes/sdm-utility-functions.php:16
523
+ msgid "Pink"
524
  msgstr ""
525
 
526
+ #: includes/sdm-utility-functions.php:17
527
+ msgid "Orange"
528
  msgstr ""
529
 
530
+ #: includes/sdm-utility-functions.php:18
531
+ msgid "White"
532
  msgstr ""
533
 
534
+ #: includes/sdm-utility-functions.php:57
535
+ msgid "Enter Password to Download:"
536
  msgstr ""
537
 
538
+ #: includes/sdm-utility-functions.php:263
539
+ msgid "I agree to the "
540
  msgstr ""
541
 
542
+ #: includes/sdm-utility-functions.php:263
543
+ msgid "terms and conditions"
544
  msgstr ""
545
 
546
+ #: includes/sdm-utility-functions.php:298
547
+ #: includes/templates/fancy0/sdm-fancy-0.php:97
548
+ #: includes/templates/fancy1/sdm-fancy-1.php:56
549
+ #: includes/templates/fancy2/sdm-fancy-2.php:82 sdm-shortcodes.php:186
550
+ msgid "Download Now!"
551
  msgstr ""
552
 
553
+ #: includes/sdm-utility-functions.php:338
554
+ msgid ""
555
+ "Error! The URL value is empty. Please specify a correct URL value to "
556
+ "redirect to!"
557
  msgstr ""
558
 
559
+ #: includes/templates/fancy0/sdm-fancy-0.php:84
560
+ #: sdm-post-type-content-handler.php:56
561
+ msgid "green"
562
  msgstr ""
563
 
564
+ #: includes/templates/fancy1/sdm-fancy-1.php:159
565
+ #: includes/templates/fancy2/sdm-fancy-2.php:176
566
+ #: sdm-post-type-content-handler.php:135
567
+ msgid "Size: "
568
  msgstr ""
569
 
570
+ #: includes/templates/fancy1/sdm-fancy-1.php:166
571
+ #: includes/templates/fancy2/sdm-fancy-2.php:183 main.php:508
572
+ #: sdm-post-type-content-handler.php:142
573
+ msgid "Version: "
574
  msgstr ""
575
 
576
+ #: includes/templates/fancy1/sdm-fancy-1.php:173
577
+ #: includes/templates/fancy2/sdm-fancy-2.php:190
578
+ #: sdm-post-type-content-handler.php:149
579
+ msgid "Published: "
580
  msgstr ""
581
 
582
+ #: includes/templates/fancy3/sdm-fancy-3.php:55
583
+ #: includes/templates/fancy3/sdm-fancy-3.php:86
584
+ msgid "View Details"
585
  msgstr ""
586
 
587
+ #: main.php:249 main.php:345
588
+ msgid "Select File"
589
  msgstr ""
590
 
591
+ #: main.php:250
592
+ msgid "Select Thumbnail"
 
593
  msgstr ""
594
 
595
+ #: main.php:251
596
+ msgid "Insert"
 
 
 
 
 
 
597
  msgstr ""
598
 
599
+ #: main.php:252
600
+ msgid "Image Successfully Removed"
 
 
601
  msgstr ""
602
 
603
+ #: main.php:253
604
+ msgid "Error with AJAX"
 
 
605
  msgstr ""
606
 
607
+ #: main.php:264
608
+ msgid "Please select a Download Item:"
609
+ msgstr ""
610
+
611
+ #: main.php:265
612
+ msgid "Download Title"
613
+ msgstr ""
614
+
615
+ #: main.php:266
616
+ msgid "Include Fancy Box"
617
+ msgstr ""
618
+
619
+ #: main.php:267
620
+ msgid "Open New Window"
621
+ msgstr ""
622
+
623
+ #: main.php:269
624
+ msgid "Insert SDM Shortcode"
625
+ msgstr ""
626
+
627
+ #: main.php:311
628
+ msgid "Description"
629
+ msgstr ""
630
+
631
+ #: main.php:312
632
+ msgid "Downloadable File (Visitors will download this item)"
633
+ msgstr ""
634
+
635
+ #: main.php:313
636
+ msgid "PHP Dispatch or Redirect"
637
+ msgstr ""
638
+
639
+ #: main.php:314
640
+ msgid "Miscellaneous Download Item Properties"
641
+ msgstr ""
642
+
643
+ #: main.php:315
644
+ msgid "File Thumbnail (Optional)"
645
+ msgstr ""
646
+
647
+ #: main.php:316
648
+ msgid "Statistics"
649
+ msgstr ""
650
+
651
+ #: main.php:318
652
+ msgid "Other Details (Optional)"
653
+ msgstr ""
654
+
655
+ #: main.php:319
656
+ msgid "Shortcodes"
657
+ msgstr ""
658
+
659
+ #: main.php:323
660
+ msgid "Add a description for this download item."
661
+ msgstr ""
662
+
663
+ #: main.php:337
664
+ msgid ""
665
+ "Manually enter a valid URL of the file in the text box below, or click "
666
+ "\"Select File\" button to upload (or choose) the downloadable file."
667
+ msgstr ""
668
+
669
+ #: main.php:348
670
+ msgid "Steps to upload a file or choose one from your media library:"
671
+ msgstr ""
672
+
673
+ #: main.php:350
674
+ msgid "Hit the \"Select File\" button."
675
+ msgstr ""
676
+
677
+ #: main.php:351
678
+ msgid "Upload a new file or choose an existing one from your media library."
679
+ msgstr ""
680
+
681
+ #: main.php:352
682
+ msgid ""
683
+ "Click the \"Insert\" button, this will populate the uploaded file's URL in "
684
+ "the above text field."
685
+ msgstr ""
686
+
687
+ #: main.php:373
688
+ msgid ""
689
+ "Dispatch the file via PHP directly instead of redirecting to it. PHP "
690
+ "Dispatching keeps the download URL hidden. Dispatching works only for local "
691
+ "files (files that you uploaded to this site via this plugin or media "
692
+ "library)."
693
+ msgstr ""
694
+
695
+ #: main.php:397
696
+ msgid "Open download in a new window."
697
+ msgstr ""
698
+
699
+ #: main.php:403
700
+ msgid "Hide the download button on the single download page of this item."
701
+ msgstr ""
702
+
703
+ #: main.php:409
704
+ msgid "Disable the single download page for this download item. "
705
+ msgstr ""
706
+
707
+ #: main.php:410
708
+ msgid "This can be useful if you are using an addon like the "
709
+ msgstr ""
710
+
711
+ #: main.php:421
712
+ msgid ""
713
+ "Manually enter a valid URL, or click \"Select Image\" to upload (or choose) "
714
+ "the file thumbnail image."
715
+ msgstr ""
716
+
717
+ #: main.php:426
718
+ msgid "Select Image"
719
+ msgstr ""
720
+
721
+ #: main.php:427
722
+ msgid "Remove Image"
723
+ msgstr ""
724
+
725
+ #: main.php:441
726
+ msgid ""
727
+ "This thumbnail image will be used to create a fancy file download box if you "
728
+ "want to use it."
729
+ msgstr ""
730
+
731
+ #: main.php:455
732
+ msgid "These are the statistics for this download item."
733
+ msgstr ""
734
+
735
+ #: main.php:462
736
+ msgid "Number of Downloads:"
737
+ msgstr ""
738
+
739
+ #: main.php:467
740
+ msgid "Offset Count: "
741
+ msgstr ""
742
+
743
+ #: main.php:470
744
+ msgid ""
745
+ "Enter any positive or negative numerical value; to offset the download count "
746
+ "shown to the visitors (when using the download counter shortcode)."
747
+ msgstr ""
748
+
749
+ #: main.php:477
750
+ msgid "Disable download logging for this item."
751
+ msgstr ""
752
+
753
+ #: main.php:498
754
+ msgid "File Size: "
755
+ msgstr ""
756
+
757
+ #: main.php:501
758
+ msgid "Enter the size of this file (example value: 2.15 MB)."
759
+ msgstr ""
760
+
761
+ #: main.php:503
762
+ msgid "Show file size in fancy display."
763
+ msgstr ""
764
+
765
+ #: main.php:511
766
+ msgid "Enter the version number for this item if any (example value: v2.5.10)."
767
+ msgstr ""
768
+
769
+ #: main.php:513
770
+ msgid "Show version number in fancy display."
771
+ msgstr ""
772
+
773
+ #: main.php:518
774
+ msgid "Publish Date: "
775
+ msgstr ""
776
+
777
+ #: main.php:520
778
+ msgid "Show download published date in fancy display."
779
+ msgstr ""
780
+
781
+ #: main.php:525
782
+ msgid "Download Button Text: "
783
+ msgstr ""
784
+
785
+ #: main.php:528
786
+ msgid ""
787
+ "You can use this field to customize the download now button text of this "
788
+ "item."
789
+ msgstr ""
790
+
791
+ #: main.php:535
792
+ msgid ""
793
+ "The following shortcode can be used on posts or pages to embed a download "
794
+ "now button for this file. You can also use the shortcode inserter (in the "
795
+ "post editor) to add this shortcode to a post or page."
796
+ msgstr ""
797
+
798
+ #: main.php:541
799
+ msgid ""
800
+ "The following shortcode can be used to show a download counter for this item."
801
+ msgstr ""
802
+
803
+ #: main.php:547
804
+ msgid ""
805
+ "Read the full shortcode usage documentation <a href=\"https://www."
806
+ "tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
807
+ "\"_blank\">here</a>."
808
+ msgstr ""
809
+
810
+ #: main.php:684
811
+ msgid "General Options"
812
+ msgstr ""
813
+
814
+ #: main.php:685
815
+ msgid "User Login Related"
816
+ msgstr ""
817
+
818
+ #: main.php:686
819
+ msgid "Admin Options"
820
+ msgstr ""
821
+
822
+ #: main.php:688
823
+ msgid "Colors"
824
+ msgstr ""
825
+
826
+ #: main.php:689
827
+ msgid "Debug"
828
+ msgstr ""
829
+
830
+ #: main.php:690
831
+ msgid "Delete Plugin Data"
832
+ msgstr ""
833
+
834
+ #: main.php:693
835
+ msgid "Hide Download Count"
836
+ msgstr ""
837
+
838
+ #: main.php:694
839
+ msgid "PHP Dispatching"
840
+ msgstr ""
841
+
842
+ #: main.php:696
843
+ msgid "Only Allow Logged-in Users to Download"
844
+ msgstr ""
845
+
846
+ #: main.php:697
847
+ msgid "Login Page URL"
848
+ msgstr ""
849
+
850
+ #: main.php:698
851
+ msgid "Redirect Users to Download Page"
852
+ msgstr ""
853
+
854
+ #: main.php:700
855
+ msgid "Remove Tinymce Button"
856
+ msgstr ""
857
+
858
+ #: main.php:701
859
+ msgid "Log Unique IP"
860
+ msgstr ""
861
+
862
+ #: main.php:702
863
+ msgid "Do Not Capture IP Address"
864
+ msgstr ""
865
+
866
+ #: main.php:703
867
+ msgid "Do Not Count Downloads from Bots"
868
+ msgstr ""
869
+
870
+ #: main.php:704
871
+ msgid "Disable Download Logs"
872
+ msgstr ""
873
+
874
+ #: main.php:706
875
+ msgid "Download Button Color"
876
+ msgstr ""
877
+
878
+ #: main.php:708
879
+ msgid "Enable Debug"
880
+ msgstr ""
881
+
882
+ #: main.php:714
883
+ msgid "Google Captcha (reCAPTCHA)"
884
+ msgstr ""
885
+
886
+ #: main.php:715
887
+ msgid "Terms and Conditions"
888
+ msgstr ""
889
+
890
+ #: main.php:716
891
+ msgid "Adsense/Ad Insertion"
892
+ msgstr ""
893
+
894
+ #: main.php:717
895
+ msgid "Google Maps API Key"
896
+ msgstr ""
897
+
898
+ #: main.php:720
899
+ msgid "Enable reCAPTCHA"
900
+ msgstr ""
901
+
902
+ #: main.php:721
903
+ msgid "Site Key"
904
+ msgstr ""
905
+
906
+ #: main.php:722
907
+ msgid "Secret Key"
908
  msgstr ""
909
 
910
+ #: main.php:725
911
+ msgid "Enable Terms and Conditions"
 
 
912
  msgstr ""
913
 
914
+ #: main.php:726
915
+ msgid "Terms Page URL"
916
  msgstr ""
917
 
918
+ #: main.php:729
919
+ msgid "Below Download Description"
 
 
920
  msgstr ""
921
 
922
+ #: main.php:732
923
+ msgid "API Key"
924
  msgstr ""
925
 
926
+ #: main.php:737
927
+ msgid "General options settings"
928
  msgstr ""
929
 
930
+ #: main.php:742
931
+ msgid ""
932
+ "Visitor login related settings (useful if you only want to allow logged-in "
933
+ "users to be able to download files."
934
  msgstr ""
935
 
936
+ #: main.php:747
937
+ msgid "Admin options settings"
938
  msgstr ""
939
 
940
+ #: main.php:752
941
+ msgid "Front End colors settings"
942
  msgstr ""
943
 
944
+ #: main.php:757
945
+ msgid "Debug settings"
 
 
946
  msgstr ""
947
 
948
+ #: main.php:762
949
  msgid ""
950
+ "You can delete all the data related to this plugin from database using the "
951
+ "button below. Useful when you're uninstalling the plugin and don't want any "
952
+ "leftovers remaining."
953
  msgstr ""
954
 
955
+ #: main.php:763
956
+ msgid "Warning"
957
  msgstr ""
958
 
959
+ #: main.php:763
960
  msgid ""
961
+ "this can't be undone. All settings, download items, download logs will be "
962
+ "deleted."
963
  msgstr ""
964
 
965
+ #: main.php:764
966
+ msgid "Delete all data and deactivate plugin"
967
  msgstr ""
968
 
969
+ #: main.php:770
970
+ msgid "Google Captcha (reCAPTCHA) options"
971
  msgstr ""
972
 
973
+ #: main.php:779
974
  msgid ""
975
+ "You can use this section to insert adsense or other ad code inside the "
976
+ "download item output"
 
 
 
 
977
  msgstr ""
978
 
979
+ #: main.php:783
980
+ msgid ""
981
+ "Google Maps API key is required to display the \"Downloads by Country\" "
982
+ "chart."
983
  msgstr ""
984
 
985
+ #: main.php:789
986
  msgid ""
987
+ "Check this box if you want to use <a href=\"https://www.google.com/recaptcha/"
988
+ "admin\" target=\"_blank\">reCAPTCHA</a>. "
989
  msgstr ""
990
 
991
+ #: main.php:790
992
+ msgid "The captcha option adds a captcha to the download now buttons."
993
  msgstr ""
994
 
995
+ #: main.php:797
996
+ msgid "The site key for the reCAPTCHA API"
997
  msgstr ""
998
 
999
+ #: main.php:804
1000
+ msgid "The secret key for the reCAPTCHA API"
1001
  msgstr ""
1002
 
1003
+ #: main.php:810
1004
+ msgid "Hide the download count that is shown in some of the fancy templates."
1005
  msgstr ""
1006
 
1007
+ #: main.php:817
1008
+ msgid ""
1009
+ "When you create a new download item, The PHP Dispatching option should be "
1010
+ "enabled by default. PHP Dispatching keeps the URL of the downloadable files "
1011
+ "hidden."
1012
  msgstr ""
1013
 
1014
+ #: main.php:824
1015
+ msgid ""
1016
+ "Enable this option if you want to allow downloads only for logged-in users. "
1017
+ "When enabled, anonymous users clicking on the download button will receive "
1018
+ "an error message."
1019
  msgstr ""
1020
 
1021
+ #: main.php:831
1022
+ msgid ""
1023
+ "Only works if you have set a Login Page URL value above. Enable this option "
1024
+ "if you want to redirect the users to the download page after they log into "
1025
+ "the site."
1026
  msgstr ""
1027
 
1028
+ #: main.php:838
1029
+ msgid ""
1030
+ "(Optional) Specify a login page URL where users can login. This is useful if "
1031
+ "you only allow logged in users to be able to download. This link will be "
1032
+ "added to the message that is shown to anonymous users."
1033
  msgstr ""
1034
 
1035
+ #: main.php:844
1036
+ msgid "Removes the SDM Downloads button from the WP content editor."
1037
  msgstr ""
1038
 
1039
+ #: main.php:850
1040
+ msgid "Only logs downloads from unique IP addresses."
1041
  msgstr ""
1042
 
1043
+ #: main.php:856
1044
+ msgid ""
1045
+ "Use this if you do not want to capture the IP address and Country of the "
1046
+ "visitors when they download an item."
1047
  msgstr ""
1048
 
1049
+ #: main.php:862
1050
+ msgid "When enabled, the plugin won't count and log downloads from bots."
1051
  msgstr ""
1052
 
1053
+ #: main.php:868
1054
+ msgid ""
1055
+ "Disables all download logs. (This global option overrides the individual "
1056
+ "download item option.)"
1057
  msgstr ""
1058
 
1059
+ #: main.php:882
1060
+ msgid "Adjusts the color of the \"Download Now\" button."
1061
  msgstr ""
1062
 
1063
+ #: main.php:888
1064
+ msgid "Check this option to enable debug logging."
1065
  msgstr ""
1066
 
1067
+ #: main.php:891
1068
+ msgid " to view log file."
1069
  msgstr ""
1070
 
1071
+ #: main.php:893
1072
+ msgid " to reset log file."
1073
  msgstr ""
1074
 
1075
+ #: main.php:899
1076
+ msgid ""
1077
+ "You can use this option to make the visitors agree to your terms before they "
1078
+ "can download the item."
1079
  msgstr ""
1080
 
1081
+ #: main.php:906
1082
+ msgid "Enter the URL of your terms and conditions page."
1083
  msgstr ""
1084
 
1085
+ #: main.php:914
1086
+ msgid ""
1087
+ "Enter the Adsense or Ad code that you want to show below the download item "
1088
+ "description."
1089
  msgstr ""
1090
 
1091
+ #: main.php:921
1092
+ msgid ""
1093
+ "Enter your Google Maps API key. You can create new API key using <a href="
1094
+ "\"https://developers.google.com/maps/documentation/javascript/get-api-key\" "
1095
+ "target=\"_blank\">this instruction</a>."
1096
  msgstr ""
1097
 
1098
+ #: main.php:928
1099
+ msgid "Clone"
1100
  msgstr ""
1101
 
1102
+ #: main.php:954
1103
+ msgid "No post to duplicate has been supplied!"
1104
  msgstr ""
1105
 
1106
+ #: main.php:1040
1107
+ msgid "Post creation failed, could not find original post: "
1108
  msgstr ""
1109
 
1110
+ #: main.php:1079
1111
+ msgid "Permission denied!"
1112
  msgstr ""
1113
 
1114
+ #: main.php:1155
1115
+ msgid "Image"
1116
  msgstr ""
1117
 
1118
+ #: main.php:1156
1119
+ msgid "ID"
1120
  msgstr ""
1121
 
1122
+ #: main.php:1158 sdm-post-type-and-taxonomy.php:56
1123
+ msgid "Categories"
1124
  msgstr ""
1125
 
1126
+ #: main.php:1159 sdm-post-type-and-taxonomy.php:80
1127
+ msgid "Tags"
1128
  msgstr ""
1129
 
1130
+ #: main.php:1161
1131
+ msgid "Date Posted"
1132
  msgstr ""
1133
 
1134
+ #: sdm-post-type-and-taxonomy.php:9 sdm-post-type-and-taxonomy.php:10
1135
+ msgid "Add New"
1136
  msgstr ""
1137
 
1138
+ #: sdm-post-type-and-taxonomy.php:11
1139
+ msgid "Edit Download"
1140
  msgstr ""
1141
 
1142
+ #: sdm-post-type-and-taxonomy.php:12
1143
+ msgid "New Download"
1144
  msgstr ""
1145
 
1146
+ #: sdm-post-type-and-taxonomy.php:14
1147
+ msgid "View Download"
 
 
1148
  msgstr ""
1149
 
1150
+ #: sdm-post-type-and-taxonomy.php:15
1151
+ msgid "Search Downloads"
 
1152
  msgstr ""
1153
 
1154
+ #: sdm-post-type-and-taxonomy.php:16
1155
+ msgid "No Downloads found"
 
1156
  msgstr ""
1157
 
1158
+ #: sdm-post-type-and-taxonomy.php:17
1159
+ msgid "No Downloads found in Trash"
 
1160
  msgstr ""
1161
 
1162
+ #: sdm-post-type-and-taxonomy.php:18
1163
+ msgid "Parent Download"
1164
  msgstr ""
1165
 
1166
+ #: sdm-post-type-and-taxonomy.php:46
1167
+ msgid "Download Categories"
1168
  msgstr ""
1169
 
1170
+ #: sdm-post-type-and-taxonomy.php:47
1171
+ msgid "Download Category"
1172
  msgstr ""
1173
 
1174
+ #: sdm-post-type-and-taxonomy.php:48
1175
+ msgid "Search Categories"
1176
  msgstr ""
1177
 
1178
+ #: sdm-post-type-and-taxonomy.php:49
1179
+ msgid "All Categories"
1180
  msgstr ""
1181
 
1182
+ #: sdm-post-type-and-taxonomy.php:50
1183
+ msgid "Categories Genre"
1184
  msgstr ""
1185
 
1186
+ #: sdm-post-type-and-taxonomy.php:51
1187
+ msgid "Categories Genre:"
1188
  msgstr ""
1189
 
1190
+ #: sdm-post-type-and-taxonomy.php:52
1191
+ msgid "Edit Category"
1192
  msgstr ""
1193
 
1194
+ #: sdm-post-type-and-taxonomy.php:53
1195
+ msgid "Update Category"
1196
  msgstr ""
1197
 
1198
+ #: sdm-post-type-and-taxonomy.php:54
1199
+ msgid "Add New Category"
1200
  msgstr ""
1201
 
1202
+ #: sdm-post-type-and-taxonomy.php:55
1203
+ msgid "New Category"
 
 
1204
  msgstr ""
1205
 
1206
+ #: sdm-post-type-and-taxonomy.php:70
1207
+ msgid "Download Tags"
1208
  msgstr ""
1209
 
1210
+ #: sdm-post-type-and-taxonomy.php:71
1211
+ msgid "Download Tag"
1212
  msgstr ""
1213
 
1214
+ #: sdm-post-type-and-taxonomy.php:72
1215
+ msgid "Search Tags"
1216
  msgstr ""
1217
 
1218
+ #: sdm-post-type-and-taxonomy.php:73
1219
+ msgid "All Tags"
1220
  msgstr ""
1221
 
1222
+ #: sdm-post-type-and-taxonomy.php:74
1223
+ msgid "Tags Genre"
1224
  msgstr ""
1225
 
1226
+ #: sdm-post-type-and-taxonomy.php:75
1227
+ msgid "Tags Genre:"
1228
  msgstr ""
1229
 
1230
+ #: sdm-post-type-and-taxonomy.php:76
1231
+ msgid "Edit Tag"
1232
  msgstr ""
1233
 
1234
+ #: sdm-post-type-and-taxonomy.php:77
1235
+ msgid "Update Tag"
1236
  msgstr ""
1237
 
1238
+ #: sdm-post-type-and-taxonomy.php:78
1239
+ msgid "Add New Tag"
1240
  msgstr ""
1241
 
1242
+ #: sdm-post-type-and-taxonomy.php:79
1243
+ msgid "New Tag"
1244
  msgstr ""
1245
 
1246
+ #: sdm-post-type-content-handler.php:19
1247
+ msgid "The admin of this site has disabled this download item page."
1248
  msgstr ""
1249
 
1250
+ #: sdm-post-type-content-handler.php:126
1251
+ msgid "The admin of this site has disabled the download button for this page."
1252
  msgstr ""
1253
 
1254
+ #: sdm-shortcodes.php:82 sdm-shortcodes.php:152 sdm-shortcodes.php:166
1255
+ msgid "Error! Please enter an ID value with this shortcode."
1256
  msgstr ""
1257
 
1258
+ #: sdm-shortcodes.php:199
1259
+ msgid ""
1260
+ "Error! You must enter a category slug OR a category id with this shortcode. "
1261
+ "Refer to the documentation for usage instructions."
1262
  msgstr ""
1263
 
1264
+ #: sdm-shortcodes.php:204
1265
+ msgid "Error! Please enter a category slug OR id; not both."
1266
  msgstr ""
1267
 
1268
+ #: sdm-shortcodes.php:240
1269
+ msgid ""
1270
+ "Error! You must enter a numeric number for the \"pagination\" parameter of "
1271
+ "the shortcode. Refer to the usage documentation."
1272
  msgstr ""
1273
 
1274
+ #: sdm-shortcodes.php:265
1275
+ msgid "There are no download items matching this category criteria."
1276
  msgstr ""
1277
 
1278
+ #. Plugin Name of the plugin/theme
1279
+ msgid "Simple Download Monitor"
1280
  msgstr ""
1281
 
1282
+ #. Plugin URI of the plugin/theme
1283
+ msgid "https://simple-download-monitor.com/"
1284
  msgstr ""
1285
 
1286
+ #. Description of the plugin/theme
1287
+ msgid ""
1288
+ "Easily manage downloadable files and monitor downloads of your digital files "
1289
+ "from your WordPress site."
1290
  msgstr ""
1291
 
1292
+ #. Author of the plugin/theme
1293
+ msgid "Tips and Tricks HQ, Ruhul Amin, Josh Lobe"
1294
  msgstr ""
1295
 
1296
+ #. Author URI of the plugin/theme
1297
+ msgid "https://www.tipsandtricks-hq.com/development-center"
1298
+ msgstr ""
1299
 
1300
  ### Translation strings for the addons
1301
  # Squeeze form addon
1307
  msgstr ""
1308
 
1309
  msgid "Email"
1310
+ msgstr ""
1311
+
main.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Simple Download Monitor
4
  * Plugin URI: https://simple-download-monitor.com/
5
  * Description: Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
6
- * Version: 3.7.9.1
7
  * Author: Tips and Tricks HQ, Ruhul Amin, Josh Lobe
8
  * Author URI: https://www.tipsandtricks-hq.com/development-center
9
  * License: GPL2
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
14
  exit;
15
  }
16
 
17
- define( 'WP_SIMPLE_DL_MONITOR_VERSION', '3.7.9.1' );
18
  define( 'WP_SIMPLE_DL_MONITOR_DIR_NAME', dirname( plugin_basename( __FILE__ ) ) );
19
  define( 'WP_SIMPLE_DL_MONITOR_URL', plugins_url( '', __FILE__ ) );
20
  define( 'WP_SIMPLE_DL_MONITOR_PATH', plugin_dir_path( __FILE__ ) );
@@ -82,7 +82,6 @@ function sdm_plugins_loaded_tasks() {
82
 
83
  //Handle db upgrade stuff
84
  sdm_db_update_check();
85
-
86
  }
87
 
88
  /*
@@ -94,10 +93,10 @@ add_action( 'admin_init', 'sdm_admin_init_time_tasks' );
94
  function sdm_init_time_tasks() {
95
  //Handle download request if any
96
  handle_sdm_download_via_direct_post();
97
-
98
  //Check if the redirect option is being used
99
  sdm_check_redirect_query_and_settings();
100
-
101
  if ( is_admin() ) {
102
  //Register Google Charts library
103
  wp_register_script( 'sdm_google_charts', 'https://www.gstatic.com/charts/loader.js', array(), null, true );
@@ -389,30 +388,30 @@ class simpleDownloadManager {
389
  //Does nothing at the moment.
390
  }
391
  }
392
-
393
  //Check the sdm_item_disable_single_download_page value
394
- $sdm_item_disable_single_download_page = get_post_meta( $post->ID, 'sdm_item_disable_single_download_page', true );
395
- $sdm_item_hide_dl_button_single_download_page = get_post_meta( $post->ID, 'sdm_item_hide_dl_button_single_download_page', true );
396
-
397
  echo '<p> <input id="sdm_item_new_window" type="checkbox" name="sdm_item_new_window" value="yes"' . checked( true, $new_window, false ) . ' />';
398
  echo '<label for="sdm_item_new_window">' . __( 'Open download in a new window.', 'simple-download-monitor' ) . '</label> </p>';
399
 
400
- //the new window will have no download button
401
- echo '<p> <input id="sdm_item_hide_dl_button_single_download_page" type="checkbox" name="sdm_item_hide_dl_button_single_download_page" value="yes"' . checked( true, $sdm_item_hide_dl_button_single_download_page, false ) . ' />';
402
  echo '<label for="sdm_item_hide_dl_button_single_download_page">';
403
-
404
- $disable_dl_button_label = __( 'Hide the download button on the single download page of this item.', 'simple-download-monitor' );
405
- echo $disable_dl_button_label . '</label>';
406
- echo '</p>';
407
-
408
  echo '<p> <input id="sdm_item_disable_single_download_page" type="checkbox" name="sdm_item_disable_single_download_page" value="yes"' . checked( true, $sdm_item_disable_single_download_page, false ) . ' />';
409
  echo '<label for="sdm_item_disable_single_download_page">';
410
- $disable_single_dl_label = __( 'Disable the single download page for this download item. ', 'simple-download-monitor' );
411
- $disable_single_dl_label .= __( 'This can be useful if you are using an addon like the ', 'simple-download-monitor' );
412
- $disable_single_dl_label .= '<a href="https://simple-download-monitor.com/squeeze-form-addon-for-simple-download-monitor/" target="_blank">Squeeze Form</a>' . '.';
413
- echo $disable_single_dl_label . '</label>';
414
- echo '</p>';
415
-
416
  wp_nonce_field( 'sdm_misc_properties_box_nonce', 'sdm_misc_properties_box_nonce_check' );
417
  }
418
 
@@ -591,14 +590,14 @@ class simpleDownloadManager {
591
  return;
592
  }
593
  // Get POST-ed data as boolean value
594
- $new_window_open = filter_input( INPUT_POST, 'sdm_item_new_window', FILTER_VALIDATE_BOOLEAN );
595
- $sdm_item_hide_dl_button_single_download_page = filter_input( INPUT_POST, 'sdm_item_hide_dl_button_single_download_page', FILTER_VALIDATE_BOOLEAN );
596
- $sdm_item_disable_single_download_page = filter_input( INPUT_POST, 'sdm_item_disable_single_download_page', FILTER_VALIDATE_BOOLEAN );
597
-
598
- //Save the data
599
  update_post_meta( $post_id, 'sdm_item_new_window', $new_window_open );
600
- update_post_meta( $post_id, 'sdm_item_hide_dl_button_single_download_page', $sdm_item_hide_dl_button_single_download_page );
601
- update_post_meta( $post_id, 'sdm_item_disable_single_download_page', $sdm_item_disable_single_download_page );
602
  }
603
 
604
  public function sdm_save_thumbnail_meta_data( $post_id ) { // Save Thumbnail Upload metabox
@@ -683,7 +682,7 @@ class simpleDownloadManager {
683
 
684
  //Add all the settings section that will go under the main settings
685
  add_settings_section( 'general_options', __( 'General Options', 'simple-download-monitor' ), array( $this, 'general_options_cb' ), 'general_options_section' );
686
- add_settings_section( 'user_login_options', __( 'User Login Related', 'simple-download-monitor' ), array( $this, 'user_login_options_cb' ), 'user_login_options_section' );
687
  add_settings_section( 'admin_options', __( 'Admin Options', 'simple-download-monitor' ), array( $this, 'admin_options_cb' ), 'admin_options_section' );
688
 
689
  add_settings_section( 'sdm_colors', __( 'Colors', 'simple-download-monitor' ), array( $this, 'sdm_colors_cb' ), 'sdm_colors_section' );
@@ -693,11 +692,11 @@ class simpleDownloadManager {
693
  //Add all the individual settings fields that goes under the sections
694
  add_settings_field( 'general_hide_donwload_count', __( 'Hide Download Count', 'simple-download-monitor' ), array( $this, 'hide_download_count_cb' ), 'general_options_section', 'general_options' );
695
  add_settings_field( 'general_default_dispatch_value', __( 'PHP Dispatching', 'simple-download-monitor' ), array( $this, 'general_default_dispatch_value_cb' ), 'general_options_section', 'general_options' );
696
-
697
- add_settings_field( 'only_logged_in_can_download', __( 'Only Allow Logged-in Users to Download', 'simple-download-monitor' ), array( $this, 'general_only_logged_in_can_download_cb' ), 'user_login_options_section', 'user_login_options' );
698
  add_settings_field( 'general_login_page_url', __( 'Login Page URL', 'simple-download-monitor' ), array( $this, 'general_login_page_url_cb' ), 'user_login_options_section', 'user_login_options' );
699
- add_settings_field( 'redirect_user_back_to_download_page', __( 'Redirect Users to Download Page', 'simple-download-monitor' ), array( $this, 'redirect_user_back_to_download_page_cb' ), 'user_login_options_section', 'user_login_options' );
700
-
701
  add_settings_field( 'admin_tinymce_button', __( 'Remove Tinymce Button', 'simple-download-monitor' ), array( $this, 'admin_tinymce_button_cb' ), 'admin_options_section', 'admin_options' );
702
  add_settings_field( 'admin_log_unique', __( 'Log Unique IP', 'simple-download-monitor' ), array( $this, 'admin_log_unique' ), 'admin_options_section', 'admin_options' );
703
  add_settings_field( 'admin_do_not_capture_ip', __( 'Do Not Capture IP Address', 'simple-download-monitor' ), array( $this, 'admin_do_not_capture_ip' ), 'admin_options_section', 'admin_options' );
@@ -715,6 +714,7 @@ class simpleDownloadManager {
715
  add_settings_section( 'recaptcha_options', __( 'Google Captcha (reCAPTCHA)', 'simple-download-monitor' ), array( $this, 'recaptcha_options_cb' ), 'recaptcha_options_section' );
716
  add_settings_section( 'termscond_options', __( 'Terms and Conditions', 'simple-download-monitor' ), array( $this, 'termscond_options_cb' ), 'termscond_options_section' );
717
  add_settings_section( 'adsense_options', __( 'Adsense/Ad Insertion', 'simple-download-monitor' ), array( $this, 'adsense_options_cb' ), 'adsense_options_section' );
 
718
 
719
  //Add reCAPTCHA section fields
720
  add_settings_field( 'recaptcha_enable', __( 'Enable reCAPTCHA', 'simple-download-monitor' ), array( $this, 'recaptcha_enable_cb' ), 'recaptcha_options_section', 'recaptcha_options' );
@@ -727,6 +727,9 @@ class simpleDownloadManager {
727
 
728
  //Add Adsense section fields
729
  add_settings_field( 'adsense_below_description', __( 'Below Download Description', 'simple-download-monitor' ), array( $this, 'adsense_below_description_cb' ), 'adsense_options_section', 'adsense_options' );
 
 
 
730
  }
731
 
732
  public function general_options_cb() {
@@ -738,7 +741,7 @@ class simpleDownloadManager {
738
  //Set the message that will be shown below the user login related settings heading
739
  _e( 'Visitor login related settings (useful if you only want to allow logged-in users to be able to download files.', 'simple-download-monitor' );
740
  }
741
-
742
  public function admin_options_cb() {
743
  //Set the message that will be shown below the admin options settings heading
744
  _e( 'Admin options settings', 'simple-download-monitor' );
@@ -776,6 +779,10 @@ class simpleDownloadManager {
776
  _e( 'You can use this section to insert adsense or other ad code inside the download item output', 'simple-download-monitor' );
777
  }
778
 
 
 
 
 
779
  public function recaptcha_enable_cb() {
780
  $main_opts = get_option( 'sdm_advanced_options' );
781
  echo '<input name="sdm_advanced_options[recaptcha_enable]" id="recaptcha_enable" type="checkbox" ' . checked( 1, isset( $main_opts[ 'recaptcha_enable' ] ), false ) . ' /> ';
@@ -823,7 +830,7 @@ class simpleDownloadManager {
823
  echo '<input name="sdm_downloads_options[redirect_user_back_to_download_page]" id="redirect_user_back_to_download_page" type="checkbox" value="1"' . checked( true, $value, false ) . ' />';
824
  echo '<label for="redirect_user_back_to_download_page">' . __( 'Only works if you have set a Login Page URL value above. Enable this option if you want to redirect the users to the download page after they log into the site.', 'simple-download-monitor' ) . '</label>';
825
  }
826
-
827
  public function general_login_page_url_cb() {
828
  $main_opts = get_option( 'sdm_downloads_options' );
829
  $value = isset( $main_opts[ 'general_login_page_url' ] ) ? $main_opts[ 'general_login_page_url' ] : '';
@@ -907,6 +914,13 @@ class simpleDownloadManager {
907
  echo '<p class="description">' . __( 'Enter the Adsense or Ad code that you want to show below the download item description.', 'simple-download-monitor' ) . '</p>';
908
  }
909
 
 
 
 
 
 
 
 
910
  public function sdm_add_clone_record_btn( $action, $post ) {
911
  // Only execute on SDM CPT posts page
912
  if ( $post->post_type == 'sdm_downloads' ) {
3
  * Plugin Name: Simple Download Monitor
4
  * Plugin URI: https://simple-download-monitor.com/
5
  * Description: Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
6
+ * Version: 3.8.2
7
  * Author: Tips and Tricks HQ, Ruhul Amin, Josh Lobe
8
  * Author URI: https://www.tipsandtricks-hq.com/development-center
9
  * License: GPL2
14
  exit;
15
  }
16
 
17
+ define( 'WP_SIMPLE_DL_MONITOR_VERSION', '3.8.2' );
18
  define( 'WP_SIMPLE_DL_MONITOR_DIR_NAME', dirname( plugin_basename( __FILE__ ) ) );
19
  define( 'WP_SIMPLE_DL_MONITOR_URL', plugins_url( '', __FILE__ ) );
20
  define( 'WP_SIMPLE_DL_MONITOR_PATH', plugin_dir_path( __FILE__ ) );
82
 
83
  //Handle db upgrade stuff
84
  sdm_db_update_check();
 
85
  }
86
 
87
  /*
93
  function sdm_init_time_tasks() {
94
  //Handle download request if any
95
  handle_sdm_download_via_direct_post();
96
+
97
  //Check if the redirect option is being used
98
  sdm_check_redirect_query_and_settings();
99
+
100
  if ( is_admin() ) {
101
  //Register Google Charts library
102
  wp_register_script( 'sdm_google_charts', 'https://www.gstatic.com/charts/loader.js', array(), null, true );
388
  //Does nothing at the moment.
389
  }
390
  }
391
+
392
  //Check the sdm_item_disable_single_download_page value
393
+ $sdm_item_disable_single_download_page = get_post_meta( $post->ID, 'sdm_item_disable_single_download_page', true );
394
+ $sdm_item_hide_dl_button_single_download_page = get_post_meta( $post->ID, 'sdm_item_hide_dl_button_single_download_page', true );
395
+
396
  echo '<p> <input id="sdm_item_new_window" type="checkbox" name="sdm_item_new_window" value="yes"' . checked( true, $new_window, false ) . ' />';
397
  echo '<label for="sdm_item_new_window">' . __( 'Open download in a new window.', 'simple-download-monitor' ) . '</label> </p>';
398
 
399
+ //the new window will have no download button
400
+ echo '<p> <input id="sdm_item_hide_dl_button_single_download_page" type="checkbox" name="sdm_item_hide_dl_button_single_download_page" value="yes"' . checked( true, $sdm_item_hide_dl_button_single_download_page, false ) . ' />';
401
  echo '<label for="sdm_item_hide_dl_button_single_download_page">';
402
+
403
+ $disable_dl_button_label = __( 'Hide the download button on the single download page of this item.', 'simple-download-monitor' );
404
+ echo $disable_dl_button_label . '</label>';
405
+ echo '</p>';
406
+
407
  echo '<p> <input id="sdm_item_disable_single_download_page" type="checkbox" name="sdm_item_disable_single_download_page" value="yes"' . checked( true, $sdm_item_disable_single_download_page, false ) . ' />';
408
  echo '<label for="sdm_item_disable_single_download_page">';
409
+ $disable_single_dl_label = __( 'Disable the single download page for this download item. ', 'simple-download-monitor' );
410
+ $disable_single_dl_label .= __( 'This can be useful if you are using an addon like the ', 'simple-download-monitor' );
411
+ $disable_single_dl_label .= '<a href="https://simple-download-monitor.com/squeeze-form-addon-for-simple-download-monitor/" target="_blank">Squeeze Form</a>' . '.';
412
+ echo $disable_single_dl_label . '</label>';
413
+ echo '</p>';
414
+
415
  wp_nonce_field( 'sdm_misc_properties_box_nonce', 'sdm_misc_properties_box_nonce_check' );
416
  }
417
 
590
  return;
591
  }
592
  // Get POST-ed data as boolean value
593
+ $new_window_open = filter_input( INPUT_POST, 'sdm_item_new_window', FILTER_VALIDATE_BOOLEAN );
594
+ $sdm_item_hide_dl_button_single_download_page = filter_input( INPUT_POST, 'sdm_item_hide_dl_button_single_download_page', FILTER_VALIDATE_BOOLEAN );
595
+ $sdm_item_disable_single_download_page = filter_input( INPUT_POST, 'sdm_item_disable_single_download_page', FILTER_VALIDATE_BOOLEAN );
596
+
597
+ //Save the data
598
  update_post_meta( $post_id, 'sdm_item_new_window', $new_window_open );
599
+ update_post_meta( $post_id, 'sdm_item_hide_dl_button_single_download_page', $sdm_item_hide_dl_button_single_download_page );
600
+ update_post_meta( $post_id, 'sdm_item_disable_single_download_page', $sdm_item_disable_single_download_page );
601
  }
602
 
603
  public function sdm_save_thumbnail_meta_data( $post_id ) { // Save Thumbnail Upload metabox
682
 
683
  //Add all the settings section that will go under the main settings
684
  add_settings_section( 'general_options', __( 'General Options', 'simple-download-monitor' ), array( $this, 'general_options_cb' ), 'general_options_section' );
685
+ add_settings_section( 'user_login_options', __( 'User Login Related', 'simple-download-monitor' ), array( $this, 'user_login_options_cb' ), 'user_login_options_section' );
686
  add_settings_section( 'admin_options', __( 'Admin Options', 'simple-download-monitor' ), array( $this, 'admin_options_cb' ), 'admin_options_section' );
687
 
688
  add_settings_section( 'sdm_colors', __( 'Colors', 'simple-download-monitor' ), array( $this, 'sdm_colors_cb' ), 'sdm_colors_section' );
692
  //Add all the individual settings fields that goes under the sections
693
  add_settings_field( 'general_hide_donwload_count', __( 'Hide Download Count', 'simple-download-monitor' ), array( $this, 'hide_download_count_cb' ), 'general_options_section', 'general_options' );
694
  add_settings_field( 'general_default_dispatch_value', __( 'PHP Dispatching', 'simple-download-monitor' ), array( $this, 'general_default_dispatch_value_cb' ), 'general_options_section', 'general_options' );
695
+
696
+ add_settings_field( 'only_logged_in_can_download', __( 'Only Allow Logged-in Users to Download', 'simple-download-monitor' ), array( $this, 'general_only_logged_in_can_download_cb' ), 'user_login_options_section', 'user_login_options' );
697
  add_settings_field( 'general_login_page_url', __( 'Login Page URL', 'simple-download-monitor' ), array( $this, 'general_login_page_url_cb' ), 'user_login_options_section', 'user_login_options' );
698
+ add_settings_field( 'redirect_user_back_to_download_page', __( 'Redirect Users to Download Page', 'simple-download-monitor' ), array( $this, 'redirect_user_back_to_download_page_cb' ), 'user_login_options_section', 'user_login_options' );
699
+
700
  add_settings_field( 'admin_tinymce_button', __( 'Remove Tinymce Button', 'simple-download-monitor' ), array( $this, 'admin_tinymce_button_cb' ), 'admin_options_section', 'admin_options' );
701
  add_settings_field( 'admin_log_unique', __( 'Log Unique IP', 'simple-download-monitor' ), array( $this, 'admin_log_unique' ), 'admin_options_section', 'admin_options' );
702
  add_settings_field( 'admin_do_not_capture_ip', __( 'Do Not Capture IP Address', 'simple-download-monitor' ), array( $this, 'admin_do_not_capture_ip' ), 'admin_options_section', 'admin_options' );
714
  add_settings_section( 'recaptcha_options', __( 'Google Captcha (reCAPTCHA)', 'simple-download-monitor' ), array( $this, 'recaptcha_options_cb' ), 'recaptcha_options_section' );
715
  add_settings_section( 'termscond_options', __( 'Terms and Conditions', 'simple-download-monitor' ), array( $this, 'termscond_options_cb' ), 'termscond_options_section' );
716
  add_settings_section( 'adsense_options', __( 'Adsense/Ad Insertion', 'simple-download-monitor' ), array( $this, 'adsense_options_cb' ), 'adsense_options_section' );
717
+ add_settings_section( 'maps_api_options', __( 'Google Maps API Key', 'simple-download-monitor' ), array( $this, 'maps_api_options_cb' ), 'maps_api_options_section' );
718
 
719
  //Add reCAPTCHA section fields
720
  add_settings_field( 'recaptcha_enable', __( 'Enable reCAPTCHA', 'simple-download-monitor' ), array( $this, 'recaptcha_enable_cb' ), 'recaptcha_options_section', 'recaptcha_options' );
727
 
728
  //Add Adsense section fields
729
  add_settings_field( 'adsense_below_description', __( 'Below Download Description', 'simple-download-monitor' ), array( $this, 'adsense_below_description_cb' ), 'adsense_options_section', 'adsense_options' );
730
+
731
+ //Maps API section fields
732
+ add_settings_field( 'maps_api_key', __( 'API Key', 'simple-download-monitor' ), array( $this, 'maps_api_key_cb' ), 'maps_api_options_section', 'maps_api_options' );
733
  }
734
 
735
  public function general_options_cb() {
741
  //Set the message that will be shown below the user login related settings heading
742
  _e( 'Visitor login related settings (useful if you only want to allow logged-in users to be able to download files.', 'simple-download-monitor' );
743
  }
744
+
745
  public function admin_options_cb() {
746
  //Set the message that will be shown below the admin options settings heading
747
  _e( 'Admin options settings', 'simple-download-monitor' );
779
  _e( 'You can use this section to insert adsense or other ad code inside the download item output', 'simple-download-monitor' );
780
  }
781
 
782
+ public function maps_api_options_cb() {
783
+ _e( 'Google Maps API key is required to display the "Downloads by Country" chart.', 'simple-download-monitor' );
784
+ }
785
+
786
  public function recaptcha_enable_cb() {
787
  $main_opts = get_option( 'sdm_advanced_options' );
788
  echo '<input name="sdm_advanced_options[recaptcha_enable]" id="recaptcha_enable" type="checkbox" ' . checked( 1, isset( $main_opts[ 'recaptcha_enable' ] ), false ) . ' /> ';
830
  echo '<input name="sdm_downloads_options[redirect_user_back_to_download_page]" id="redirect_user_back_to_download_page" type="checkbox" value="1"' . checked( true, $value, false ) . ' />';
831
  echo '<label for="redirect_user_back_to_download_page">' . __( 'Only works if you have set a Login Page URL value above. Enable this option if you want to redirect the users to the download page after they log into the site.', 'simple-download-monitor' ) . '</label>';
832
  }
833
+
834
  public function general_login_page_url_cb() {
835
  $main_opts = get_option( 'sdm_downloads_options' );
836
  $value = isset( $main_opts[ 'general_login_page_url' ] ) ? $main_opts[ 'general_login_page_url' ] : '';
914
  echo '<p class="description">' . __( 'Enter the Adsense or Ad code that you want to show below the download item description.', 'simple-download-monitor' ) . '</p>';
915
  }
916
 
917
+ public function maps_api_key_cb() {
918
+ $main_opts = get_option( 'sdm_advanced_options' );
919
+ $value = isset( $main_opts[ 'maps_api_key' ] ) ? $main_opts[ 'maps_api_key' ] : '';
920
+ echo '<input size="100" name="sdm_advanced_options[maps_api_key]" id="maps_api_key" type="text" value="' . $value . '" />';
921
+ echo '<p class="description">' . __( 'Enter your Google Maps API key. You can create new API key using <a href="https://developers.google.com/maps/documentation/javascript/get-api-key" target="_blank">this instruction</a>.', 'simple-download-monitor' ) . '</p>';
922
+ }
923
+
924
  public function sdm_add_clone_record_btn( $action, $post ) {
925
  // Only execute on SDM CPT posts page
926
  if ( $post->post_type == 'sdm_downloads' ) {
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Tips and Tricks HQ, Ruhul Amin, josh401, mbrsolution, alexanderfox
3
  Donate link: https://www.tipsandtricks-hq.com
4
  Tags: download, downloads, count, counter, tracker, tracking, hits, logging, monitor, manager, files, media, digital, download monitor, download manager, downloadmanager, file manager, protect downloads, password, download category, file tree, ajax, download template, grid, documents, ip address
5
  Requires at least: 4.1.0
6
- Tested up to: 5.2
7
- Stable tag: 3.7.9.1
8
  License: GPLv2 or later
9
 
10
  Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
@@ -186,6 +186,18 @@ For screenshots please visit the [download monitor plugin page](https://www.tips
186
 
187
  == Changelog ==
188
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  = 3.7.9.1 =
190
  - Improved the after login redirection feature so it is compatible with login via wp-login.php.
191
  - Added a new filter hook.
3
  Donate link: https://www.tipsandtricks-hq.com
4
  Tags: download, downloads, count, counter, tracker, tracking, hits, logging, monitor, manager, files, media, digital, download monitor, download manager, downloadmanager, file manager, protect downloads, password, download category, file tree, ajax, download template, grid, documents, ip address
5
  Requires at least: 4.1.0
6
+ Tested up to: 5.3
7
+ Stable tag: 3.8.2
8
  License: GPLv2 or later
9
 
10
  Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
186
 
187
  == Changelog ==
188
 
189
+ = 3.8.2 =
190
+ - Added action hooks for password protected downloads (when a download request is submitted without a password or incorrect password).
191
+ - Added the Norwegian language translation files. Thanks to Tore Østerlie.
192
+ - Regenerated the translation POT file.
193
+ - Wordpress 5.3 compatibility.
194
+
195
+ = 3.8.1 =
196
+ - Added a new tab in the stats menu to list/show the download by country in a table.
197
+
198
+ = 3.8.0 =
199
+ - "Downloads by country" stats tab now requires Google Maps API Key to work properly.
200
+
201
  = 3.7.9.1 =
202
  - Improved the after login redirection feature so it is compatible with login via wp-login.php.
203
  - Added a new filter hook.