Simple Download Monitor - Version 3.6.3

Version Description

  • German translation file updated. Thanks to Thorsten.
  • When there are multiple download now buttons on a page and the terms checkbox is enabled, it needs to be accepted on every download button.
Download this release

Release Info

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

Code changes from version 3.6.1 to 3.6.3

css/sdm_wp_styles.css CHANGED
@@ -366,4 +366,10 @@
366
 
367
  .sdm_search_result_item:last-child {
368
  border-bottom: none;
 
 
 
 
 
 
369
  }
366
 
367
  .sdm_search_result_item:last-child {
368
  border-bottom: none;
369
+ }
370
+ .sdm_general_error_msg {
371
+ color: red;
372
+ }
373
+ .sdm_disabled_button {
374
+ opacity: 0.2; /* use opacity to make the button appear disabled */
375
  }
includes/sdm-admin-menu-handler.php CHANGED
@@ -14,6 +14,7 @@ function sdm_handle_admin_menu() {
14
 
15
  add_filter('whitelist_options', 'sdm_admin_menu_function_hook');
16
 
 
17
  /**
18
  * sdm_admin_menu_function_hook
19
  * Its hook for add advanced testings tab, and working on saving options to db, if not used, you receive error "options page not found"
@@ -23,6 +24,7 @@ add_filter('whitelist_options', 'sdm_admin_menu_function_hook');
23
  function sdm_admin_menu_function_hook($whitelist_options = array())
24
  {
25
  $whitelist_options['recaptcha_options_section'] = array('sdm_advanced_options');
 
26
  return $whitelist_options;
27
  }
28
 
@@ -38,8 +40,8 @@ function sdm_create_settings_page() {
38
  <h1><?php _e('Simple Download Monitor Settings Page', 'simple-download-monitor') ?></h1>
39
 
40
  <div style="background: #FFF6D5; border: 1px solid #D1B655; color: #3F2502; padding: 15px 10px">
41
- Read the full plugin usage documentation <a href="https://simple-download-monitor.com/download-monitor-tutorials/" target="_blank">here</a>.
42
- You can also <a href="https://www.tipsandtricks-hq.com/development-center" target="_blank"><?php _e('follow us', 'simple-download-monitor'); ?></a> <?php _e('on Twitter, Google+ or via Email to stay upto date about the new features of this plugin.', 'simple-download-monitor'); ?>
43
  </div>
44
 
45
  <!-- settings page form -->
@@ -190,6 +192,11 @@ function sdm_admin_menu_advanced_settings()
190
  do_settings_sections('recaptcha_options_section');
191
  settings_fields('recaptcha_options_section');
192
 
 
 
 
 
 
193
  submit_button();
194
  ?>
195
  <!-- END RECAPTCHA OPTIONS DIV -->
@@ -374,12 +381,12 @@ function sdm_create_stats_page() {
374
  }
375
  function sdm_drawDateChart() {
376
  var sdm_dateData = new google.visualization.DataTable();
377
- sdm_dateData.addColumn('string', 'Date');
378
- sdm_dateData.addColumn('number', 'Number of downloads');
379
  sdm_dateData.addRows([<?php echo $downloads_by_date; ?>]);
380
 
381
  var sdm_dateChart = new google.visualization.AreaChart(document.getElementById('downloads_chart'));
382
- sdm_dateChart.draw(sdm_dateData, {width: 700, height: 300, title: 'Downloads by Date', colors: ['#3366CC', '#9AA2B4', '#FFE1C9'],
383
  hAxis: {title: 'Date', titleTextStyle: {color: 'black'}},
384
  vAxis: {title: 'Downloads', titleTextStyle: {color: 'black'}},
385
  legend: 'top',
14
 
15
  add_filter('whitelist_options', 'sdm_admin_menu_function_hook');
16
 
17
+
18
  /**
19
  * sdm_admin_menu_function_hook
20
  * Its hook for add advanced testings tab, and working on saving options to db, if not used, you receive error "options page not found"
24
  function sdm_admin_menu_function_hook($whitelist_options = array())
25
  {
26
  $whitelist_options['recaptcha_options_section'] = array('sdm_advanced_options');
27
+ $whitelist_options['termscond_options_section'] = array('sdm_advanced_options');
28
  return $whitelist_options;
29
  }
30
 
40
  <h1><?php _e('Simple Download Monitor Settings Page', 'simple-download-monitor') ?></h1>
41
 
42
  <div style="background: #FFF6D5; border: 1px solid #D1B655; color: #3F2502; padding: 15px 10px">
43
+ <?php _e('Read the full plugin usage documentation <a href="https://simple-download-monitor.com/download-monitor-tutorials/" target="_blank">here</a>.', 'simple-download-monitor');?>
44
+ <?php _e('You can also <a href="https://www.tipsandtricks-hq.com/development-center" target="_blank">', 'simple-download-monitor')?><?php _e('follow us', 'simple-download-monitor'); ?></a> <?php _e('on Twitter, Google+ or via Email to stay upto date about the new features of this plugin.', 'simple-download-monitor'); ?>
45
  </div>
46
 
47
  <!-- settings page form -->
192
  do_settings_sections('recaptcha_options_section');
193
  settings_fields('recaptcha_options_section');
194
 
195
+ submit_button();
196
+
197
+ do_settings_sections('termscond_options_section');
198
+ settings_fields('termscond_options_section');
199
+
200
  submit_button();
201
  ?>
202
  <!-- END RECAPTCHA OPTIONS DIV -->
381
  }
382
  function sdm_drawDateChart() {
383
  var sdm_dateData = new google.visualization.DataTable();
384
+ sdm_dateData.addColumn('string', '<?php _e('Date', 'simple-download-monitor');?>');
385
+ sdm_dateData.addColumn('number', '<?php _e('Number of downloads', 'simple-download-monitor');?>');
386
  sdm_dateData.addRows([<?php echo $downloads_by_date; ?>]);
387
 
388
  var sdm_dateChart = new google.visualization.AreaChart(document.getElementById('downloads_chart'));
389
+ sdm_dateChart.draw(sdm_dateData, {width: 700, height: 300, title: '<?php _e('Downloads by Date', 'simple-download-monitor');?>', colors: ['#3366CC', '#9AA2B4', '#FFE1C9'],
390
  hAxis: {title: 'Date', titleTextStyle: {color: 'black'}},
391
  vAxis: {title: 'Downloads', titleTextStyle: {color: 'black'}},
392
  legend: 'top',
includes/sdm-utility-functions.php CHANGED
@@ -67,13 +67,16 @@ function sdm_get_password_entry_form($id, $args = array(), $class = '') {
67
  $uuid = uniqid('sdm-pass-');
68
 
69
  $data = __('Enter Password to Download:', 'simple-download-monitor');
70
- $data .= '<form action="' . $action_url . '" method="post" id="' . $uuid . '">';
71
  $data .= '<input type="password" name="pass_text" class="sdm_pass_text" value="" /> ';
72
 
73
  $data .= sdm_get_download_with_recaptcha();
74
 
 
 
 
75
  $data .= '<span class="sdm-download-button">';
76
- $data .= '<a href="javascript:document.getElementById(\'' . $uuid . '\').submit();" name="sdm_dl_pass_submit" class="pass_sumbit sdm_pass_protected_download ' . $class . '">' . $button_text_string . '</a>';
77
  $data .= '</span>';
78
  $data .= '<input type="hidden" name="download_id" value="' . $id . '" />';
79
  $data .= '</form>';
@@ -226,13 +229,18 @@ function sdm_get_download_form_with_recaptcha($id, $args = array(), $class = '')
226
  } else {//Use the custom text
227
  $button_text_string = $button_text;
228
  }
229
-
230
- $uuid = uniqid('sdm-recaptcha-');
231
-
232
- $data = '<form action="' . $action_url . '" method="post" id="' . $uuid . '" class="sdm-g-recaptcha-form">';
 
233
  $data .= '<div class="sdm-recaptcha-button">';
234
  $data .= '<div class="g-recaptcha sdm-g-recaptcha"></div>';
235
- $data .= '<a href="javascript:document.getElementById(\'' . $uuid . '\').submit();" name="sdm_dl_recaptcha_submit" class="recaptcha_sumbit sdm_recaptcha_protected_download ' . $class . '">' . $button_text_string . '</a>';
 
 
 
 
236
  $data .= '</div>';
237
  $data .= '<input type="hidden" name="download_id" value="' . $id . '" />';
238
  $data .= '</form>';
@@ -241,9 +249,46 @@ function sdm_get_download_form_with_recaptcha($id, $args = array(), $class = '')
241
 
242
  function sdm_get_download_with_recaptcha() {
243
  $main_advanced_opts = get_option('sdm_advanced_options');
244
- $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
245
  if ($recaptcha_enable) {
246
  return '<div class="g-recaptcha sdm-g-recaptcha"></div>';
247
  }
248
  return '';
249
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  $uuid = uniqid('sdm-pass-');
68
 
69
  $data = __('Enter Password to Download:', 'simple-download-monitor');
70
+ $data .= '<form action="' . $action_url . '" method="post" id="' . $uuid . '" class="sdm-download-form">';
71
  $data .= '<input type="password" name="pass_text" class="sdm_pass_text" value="" /> ';
72
 
73
  $data .= sdm_get_download_with_recaptcha();
74
 
75
+ //Check if Terms & Condition enabled
76
+ $data .= sdm_get_checkbox_for_termsncond();
77
+
78
  $data .= '<span class="sdm-download-button">';
79
+ $data .= '<a href="#" name="sdm_dl_pass_submit" class="pass_sumbit sdm_pass_protected_download sdm_download_with_condition ' . $class . '">' . $button_text_string . '</a>';
80
  $data .= '</span>';
81
  $data .= '<input type="hidden" name="download_id" value="' . $id . '" />';
82
  $data .= '</form>';
229
  } else {//Use the custom text
230
  $button_text_string = $button_text;
231
  }
232
+
233
+ $main_advanced_opts = get_option('sdm_advanced_options');
234
+
235
+ $data = '<form action="' . $action_url . '" method="post" class="sdm-g-recaptcha-form sdm-download-form">';
236
+
237
  $data .= '<div class="sdm-recaptcha-button">';
238
  $data .= '<div class="g-recaptcha sdm-g-recaptcha"></div>';
239
+
240
+ //Check if Terms & Condition enabled
241
+ $data .= sdm_get_checkbox_for_termsncond();
242
+
243
+ $data .= '<a href="#" class="sdm_download_with_condition ' . $class . '">' . $button_text_string . '</a>';
244
  $data .= '</div>';
245
  $data .= '<input type="hidden" name="download_id" value="' . $id . '" />';
246
  $data .= '</form>';
249
 
250
  function sdm_get_download_with_recaptcha() {
251
  $main_advanced_opts = get_option('sdm_advanced_options');
252
+ $recaptcha_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
253
  if ($recaptcha_enable) {
254
  return '<div class="g-recaptcha sdm-g-recaptcha"></div>';
255
  }
256
  return '';
257
  }
258
+
259
+ function sdm_get_checkbox_for_termsncond() {
260
+ $main_advanced_opts = get_option('sdm_advanced_options');
261
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
262
+ if ($termscond_enable) {
263
+ $data = '<div class="sdm-termscond-checkbox">';
264
+ $data .= '<input type="checkbox" class="agree_termscond" value="1"/> '.__('I agree to the ', 'simple-download-monitor') . '<a href="'.$main_advanced_opts['termscond_url'].'" target="_blank">'.__('terms and conditions', 'simple-download-monitor').'</a>';
265
+ $data .= '</div>';
266
+ return $data;
267
+ }
268
+ return '';
269
+ }
270
+
271
+
272
+ function sdm_get_download_form_with_termsncond($id, $args = array(), $class = '') {
273
+ $action_url = WP_SIMPLE_DL_MONITOR_SITE_HOME_URL . '/?smd_process_download=1&download_id=' . $id;
274
+
275
+ //Get the download button text
276
+ $button_text = isset($args['button_text']) ? $args['button_text'] : '';
277
+ if (empty($button_text)) {//Use the default text for the button
278
+ $button_text_string = __('Download Now!', 'simple-download-monitor');
279
+ } else {//Use the custom text
280
+ $button_text_string = $button_text;
281
+ }
282
+
283
+ $main_advanced_opts = get_option('sdm_advanced_options');
284
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
285
+
286
+ $data = '<form action="' . $action_url . '" method="post" class="sdm-download-form">';
287
+ $data .= sdm_get_checkbox_for_termsncond();
288
+ $data .= '<div class="sdm-termscond-button">';
289
+ $data .= '<a href="#" class="sdm_download_with_condition ' . $class . '">' . $button_text_string . '</a>';
290
+ $data .= '</div>';
291
+ $data .= '<input type="hidden" name="download_id" value="' . $id . '" />';
292
+ $data .= '</form>';
293
+ return $data;
294
+ }
includes/templates/fancy0/sdm-fancy-0.php CHANGED
@@ -90,8 +90,16 @@ function sdm_generate_fancy0_display_output($args) {
90
  $get_cpt_object = get_post($id);
91
  $cpt_is_password = !empty($get_cpt_object->post_password) ? 'yes' : 'no'; // yes = download is password protected;
92
 
93
- //Check if reCAPTCHA enabled
94
  $main_advanced_opts = get_option('sdm_advanced_options');
 
 
 
 
 
 
 
 
95
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
96
  if ($recaptcha_enable && $cpt_is_password == 'no') {
97
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $args, 'sdm_download ' . $def_color);
90
  $get_cpt_object = get_post($id);
91
  $cpt_is_password = !empty($get_cpt_object->post_password) ? 'yes' : 'no'; // yes = download is password protected;
92
 
93
+
94
  $main_advanced_opts = get_option('sdm_advanced_options');
95
+
96
+ //Check if Terms & Condition enabled
97
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
98
+ if ($termscond_enable) {
99
+ $download_button_code = sdm_get_download_form_with_termsncond($id, $args,'sdm_download ' . $def_color);
100
+ }
101
+
102
+ //Check if reCAPTCHA enabled
103
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
104
  if ($recaptcha_enable && $cpt_is_password == 'no') {
105
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $args, 'sdm_download ' . $def_color);
includes/templates/fancy1/sdm-fancy-1.php CHANGED
@@ -88,8 +88,16 @@ function sdm_generate_fancy1_display_output($args) {
88
  $get_cpt_object = get_post($id);
89
  $cpt_is_password = !empty($get_cpt_object->post_password) ? 'yes' : 'no'; // yes = download is password protected;
90
 
91
- //Check if reCAPTCHA enabled
92
  $main_advanced_opts = get_option('sdm_advanced_options');
 
 
 
 
 
 
 
 
93
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
94
  if ($recaptcha_enable && $cpt_is_password == 'no') {
95
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $shortcode_atts, 'sdm_download ' . $color);
88
  $get_cpt_object = get_post($id);
89
  $cpt_is_password = !empty($get_cpt_object->post_password) ? 'yes' : 'no'; // yes = download is password protected;
90
 
91
+
92
  $main_advanced_opts = get_option('sdm_advanced_options');
93
+
94
+ //Check if Terms & Condition enabled
95
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
96
+ if ($termscond_enable) {
97
+ $download_button_code = sdm_get_download_form_with_termsncond($id, $shortcode_atts, 'sdm_download ' . $color);
98
+ }
99
+
100
+ //Check if reCAPTCHA enabled
101
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
102
  if ($recaptcha_enable && $cpt_is_password == 'no') {
103
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $shortcode_atts, 'sdm_download ' . $color);
includes/templates/fancy2/sdm-fancy-2-styles.css CHANGED
@@ -41,7 +41,7 @@
41
  text-align: center;
42
  }
43
 
44
- .sdm_fancy2_download_link a{
45
  border: 3px solid #2D3140;
46
  color: #2D3140;
47
  padding: 5px 10px;
@@ -49,7 +49,7 @@
49
  text-decoration: none !important;
50
  }
51
 
52
- .sdm_fancy2_download_link a:hover{
53
  color: #FFF;
54
  background-color: #2D3140;
55
  }
41
  text-align: center;
42
  }
43
 
44
+ .sdm_fancy2_download_dl_link{
45
  border: 3px solid #2D3140;
46
  color: #2D3140;
47
  padding: 5px 10px;
49
  text-decoration: none !important;
50
  }
51
 
52
+ .sdm_fancy2_download_dl_link:hover{
53
  color: #FFF;
54
  background-color: #2D3140;
55
  }
includes/templates/fancy2/sdm-fancy-2.php CHANGED
@@ -79,7 +79,7 @@ function sdm_generate_fancy2_display_output($args) {
79
 
80
  $homepage = get_bloginfo('url');
81
  $download_url = $homepage . '/?smd_process_download=1&download_id=' . $id;
82
- $download_button_code = '<a href="' . $download_url . '" class="sdm_fancy2_download" target="' . $window_target . '">' . $button_text . '</a>';
83
 
84
  // Check to see if the download link cpt is password protected
85
  $get_cpt_object = get_post($id);
@@ -88,15 +88,22 @@ function sdm_generate_fancy2_display_output($args) {
88
  // Read plugin settings
89
  $main_opts = get_option('sdm_downloads_options');
90
 
91
- //Check if reCAPTCHA enabled
92
  $main_advanced_opts = get_option('sdm_advanced_options');
 
 
 
 
 
 
 
 
93
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
94
  if ($recaptcha_enable && $cpt_is_password == 'no') {
95
- $download_button_code = sdm_get_download_form_with_recaptcha($id, $shortcode_atts, 'sdm_fancy2_download');
96
  }
97
 
98
  if ($cpt_is_password !== 'no') {//This is a password protected download so replace the download now button with password requirement
99
- $download_button_code = sdm_get_password_entry_form($id, $shortcode_atts, 'sdm_fancy2_download');
100
  }
101
 
102
  // Get item thumbnail
79
 
80
  $homepage = get_bloginfo('url');
81
  $download_url = $homepage . '/?smd_process_download=1&download_id=' . $id;
82
+ $download_button_code = '<a href="' . $download_url . '" class="sdm_fancy2_download_dl_link" target="' . $window_target . '">' . $button_text . '</a>';
83
 
84
  // Check to see if the download link cpt is password protected
85
  $get_cpt_object = get_post($id);
88
  // Read plugin settings
89
  $main_opts = get_option('sdm_downloads_options');
90
 
 
91
  $main_advanced_opts = get_option('sdm_advanced_options');
92
+
93
+ //Check if Terms & Condition enabled
94
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
95
+ if ($termscond_enable) {
96
+ $download_button_code = sdm_get_download_form_with_termsncond($id, $shortcode_atts, 'sdm_fancy2_download_dl_link');
97
+ }
98
+
99
+ //Check if reCAPTCHA enabled
100
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
101
  if ($recaptcha_enable && $cpt_is_password == 'no') {
102
+ $download_button_code = sdm_get_download_form_with_recaptcha($id, $shortcode_atts, 'sdm_fancy2_download_dl_link');
103
  }
104
 
105
  if ($cpt_is_password !== 'no') {//This is a password protected download so replace the download now button with password requirement
106
+ $download_button_code = sdm_get_password_entry_form($id, $shortcode_atts, 'sdm_fancy2_download_dl_link');
107
  }
108
 
109
  // Get item thumbnail
js/sdm_wp_scripts.js CHANGED
@@ -1,9 +1,9 @@
1
  // Simple Download Monitor frontend scripts
2
 
3
- jQuery(document).ready(function($) {
4
 
5
  // Populate all nested titles and links
6
- $('li.sdm_cat').each(function() {
7
 
8
  var $this = $(this);
9
  this_slug = $this.attr('id');
@@ -17,17 +17,17 @@ jQuery(document).ready(function($) {
17
  cat_slug: this_slug,
18
  parent_id: this_id
19
  },
20
- function(response) {
21
 
22
- // Loop array returned from ajax function
23
- $.each(response.final_array, function(key, value) {
24
 
25
- // Populate each matched post title and permalink
26
- $this.children('.sdm_placeholder').append('<a href="' + value['permalink'] + '"><span class="sdm_post_title" style="cursor:pointer;">' + value['title'] + '</span></a>');
27
- });
28
 
29
- $this.children('span').append('<span style="margin-left:5px;" class="sdm_arrow">&#8616</span>');
30
- }
31
  );
32
  });
33
 
@@ -35,7 +35,7 @@ jQuery(document).ready(function($) {
35
  $('li.sdm_cat').children('.sdm_placeholder').hide();
36
 
37
  // Slide toggle for each list item
38
- $('body').on('click', '.sdm_cat_title', function(e) {
39
 
40
  // If there is any html.. then we have more elements
41
  if ($(this).next().html() != '') {
@@ -44,4 +44,48 @@ jQuery(document).ready(function($) {
44
  }
45
  });
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  });
1
  // Simple Download Monitor frontend scripts
2
 
3
+ jQuery(document).ready(function ($) {
4
 
5
  // Populate all nested titles and links
6
+ $('li.sdm_cat').each(function () {
7
 
8
  var $this = $(this);
9
  this_slug = $this.attr('id');
17
  cat_slug: this_slug,
18
  parent_id: this_id
19
  },
20
+ function (response) {
21
 
22
+ // Loop array returned from ajax function
23
+ $.each(response.final_array, function (key, value) {
24
 
25
+ // Populate each matched post title and permalink
26
+ $this.children('.sdm_placeholder').append('<a href="' + value['permalink'] + '"><span class="sdm_post_title" style="cursor:pointer;">' + value['title'] + '</span></a>');
27
+ });
28
 
29
+ $this.children('span').append('<span style="margin-left:5px;" class="sdm_arrow">&#8616</span>');
30
+ }
31
  );
32
  });
33
 
35
  $('li.sdm_cat').children('.sdm_placeholder').hide();
36
 
37
  // Slide toggle for each list item
38
+ $('body').on('click', '.sdm_cat_title', function (e) {
39
 
40
  // If there is any html.. then we have more elements
41
  if ($(this).next().html() != '') {
44
  }
45
  });
46
 
47
+ // Download buttons with terms or captcha has this class applied to it
48
+ $('.sdm_download_with_condition').on('click', function (e) {
49
+ e.preventDefault();
50
+ $(this).closest('form').trigger('submit');
51
+ });
52
+
53
+ // Check if terms checkbox is enabled.
54
+ if ($('.sdm-termscond-checkbox').length) {
55
+
56
+ $.each($('.sdm-termscond-checkbox'), function () {
57
+ if (!$(this).is(':checked')) {
58
+ var cur = $(this).children(':checkbox');
59
+ var btn = $(cur).closest('form').find('a.sdm_download,a.sdm_download_with_condition');
60
+ $(btn).addClass('sdm_disabled_button');
61
+ }
62
+ });
63
+
64
+ $.each($('.sdm-download-form'), function () {
65
+ var form = $(this);
66
+ form.on('submit', function () {
67
+ if ($('.agree_termscond', form).is(':checked')) {
68
+ $('.sdm-termscond-checkbox', form).removeClass('sdm_general_error_msg');
69
+ return true;
70
+ } else {
71
+ $('.sdm-termscond-checkbox', form).addClass('sdm_general_error_msg');
72
+ }
73
+ return false;
74
+ });
75
+ });
76
+
77
+ $.each($('.agree_termscond'), function () {
78
+ var element = $(this);
79
+ var form = element.closest('form');
80
+ element.on('click', function () {
81
+ if (element.is(':checked')) {
82
+ $('.sdm_download_with_condition', form).removeClass('sdm_disabled_button');
83
+ $('.sdm-termscond-checkbox', form).removeClass('sdm_general_error_msg');
84
+ } else {
85
+ $('.sdm_download_with_condition', form).addClass('sdm_disabled_button');
86
+ $('.sdm-termscond-checkbox', form).addClass('sdm_general_error_msg');
87
+ }
88
+ });
89
+ });
90
+ }
91
  });
languages/simple-download-monitor-de_DE.mo CHANGED
Binary file
languages/simple-download-monitor-de_DE.po CHANGED
@@ -2,610 +2,1304 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Simple Download Monitor v2.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-03-24 05:18:24+0000\n"
7
- "Last-Translator: freizeittreff-bielefeld <freizeittreff.bielefeld@gmail.com>\n"
 
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: German\n"
15
- "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
- #: main.php:71
24
- #: main.php:291
25
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings"
27
  msgstr "Einstellungen"
28
 
29
- #: main.php:163
30
- #: main.php:164
31
- #: main.php:169
32
- #: main.php:175
33
- #: main.php:567
34
- #: main.php:968
35
- #: sdm-shortcodes.php:92
36
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  msgid "Downloads"
38
  msgstr "Downloads"
39
 
40
- #: main.php:165
41
- #: main.php:166
42
- #@ sdm_lang
43
- msgid "Add New"
44
- msgstr "Neuen Download hinzufügen"
45
 
46
- #: main.php:167
47
- #@ sdm_lang
48
- msgid "Edit Download"
49
- msgstr "Download bearbeiten"
50
 
51
- #: main.php:168
52
- #@ sdm_lang
53
- msgid "New Download"
54
- msgstr "Neuer Download"
55
 
56
- #: main.php:170
57
- #@ sdm_lang
58
- msgid "View Download"
59
- msgstr "Download anzeigen"
60
 
61
- #: main.php:171
62
- #@ sdm_lang
63
- msgid "Search Downloads"
64
- msgstr "Download suchen"
65
 
66
- #: main.php:172
67
- #@ sdm_lang
68
- msgid "No Downloads found"
69
- msgstr "Keine Downloads gefunden"
70
 
71
- #: main.php:173
72
- #@ sdm_lang
73
- msgid "No Downloads found in Trash"
74
- msgstr "Keine Downloads im Papierkorb gefunden"
75
 
76
- #: main.php:199
77
- #@ default
78
- msgctxt "sdm_lang"
79
- msgid "Categories"
80
- msgstr "Kategorien"
81
 
82
- #: main.php:200
83
- #@ default
84
- msgctxt "sdm_lang"
85
- msgid "Category"
86
- msgstr "Kategorie"
87
 
88
- #: main.php:201
89
- #@ sdm_lang
90
- msgid "Search Categories"
91
- msgstr "Kategorien durchsuchen"
92
 
93
- #: main.php:202
94
- #@ sdm_lang
95
- msgid "All Categories"
96
- msgstr "Alle Kategorien"
 
 
97
 
98
- #: main.php:203
99
- #@ sdm_lang
100
- msgid "Categories Genre"
101
- msgstr "Kategorie Gattung"
102
 
103
- #: main.php:204
104
- #@ sdm_lang
105
- msgid "Categories Genre:"
106
- msgstr "Kategorie Gattung:"
107
 
108
- #: main.php:205
109
- #@ sdm_lang
110
- msgid "Edit Category"
111
- msgstr "Kategorie bearbeiten"
112
 
113
- #: main.php:206
114
- #@ sdm_lang
115
- msgid "Update Category"
116
- msgstr "Kategorie aktualisieren"
117
 
118
- #: main.php:207
119
- #@ sdm_lang
120
- msgid "Add New Category"
121
- msgstr "Neue Kategorie hinzufügen"
122
 
123
- #: main.php:208
124
- #@ sdm_lang
125
- msgid "New Category"
126
- msgstr "Neue Kategorie"
127
 
128
- #: main.php:209
129
- #: main.php:966
130
- #@ sdm_lang
131
- msgid "Categories"
132
- msgstr "Kategorien"
133
 
134
- #: main.php:224
135
- #@ default
136
- msgctxt "sdm_lang"
137
- msgid "Tags"
138
- msgstr "Tags"
139
 
140
- #: main.php:225
141
- #@ default
142
- msgctxt "sdm_lang"
143
- msgid "Tag"
144
- msgstr "Tag"
145
 
146
- #: main.php:226
147
- #@ sdm_lang
148
- msgid "Search Tags"
149
- msgstr "Tags suchen"
150
 
151
- #: main.php:227
152
- #@ sdm_lang
153
- msgid "All Tags"
154
- msgstr "Alle Tags"
155
 
156
- #: main.php:228
157
- #@ sdm_lang
158
- msgid "Tags Genre"
159
- msgstr "Tags Gattung"
160
 
161
- #: main.php:229
162
- #@ sdm_lang
163
- msgid "Tags Genre:"
164
- msgstr "Tags Gattung:"
165
 
166
- #: main.php:230
167
- #@ sdm_lang
168
- msgid "Edit Tag"
169
- msgstr "Tag bearbeiten"
170
 
171
- #: main.php:231
172
- #@ sdm_lang
173
- msgid "Update Tag"
174
- msgstr "Tag aktualisieren"
175
 
176
- #: main.php:232
177
- #@ sdm_lang
178
- msgid "Add New Tag"
179
- msgstr "Neuen Tag hinzufügen"
180
 
181
- #: main.php:233
182
- #@ sdm_lang
183
- msgid "New Tag"
184
- msgstr "Neuer Tag"
185
 
186
- #: main.php:234
187
- #: main.php:967
188
- #@ sdm_lang
189
- msgid "Tags"
190
- msgstr "Tags"
191
 
192
- #: main.php:290
193
- #@ sdm_lang
194
- msgid "Logs"
195
- msgstr "Logs"
 
 
 
 
 
 
196
 
197
- #: main.php:299
198
- #@ sdm_lang
199
- msgid "Simple Download Monitor Settings Page"
200
- msgstr "Simple Donwload Monitor Einstellungs-Seite"
201
 
202
- #: main.php:311
203
- #: main.php:509
204
- #@ sdm_lang
205
- msgid "Admin Options"
206
- msgstr "Optionen"
207
 
208
- #: main.php:314
209
- #@ sdm_lang
210
- msgid "Control various plugin features."
211
- msgstr "Verschiedene Plugin-Eigenschaften kontrollieren"
212
 
213
- #: main.php:331
214
- #@ sdm_lang
215
- msgid "Color Options"
216
- msgstr "Farben"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
 
218
- #: main.php:334
219
- #@ sdm_lang
220
- msgid "Adjust color options"
221
- msgstr "Farbe anpassen"
222
 
223
- #: main.php:366
224
- #@ sdm_lang
225
  msgid "Description"
226
  msgstr "Beschreibung"
227
 
228
- #: main.php:371
229
- #@ sdm_lang
230
- msgid "Upload File"
231
- msgstr "Datei hochladen"
 
 
 
232
 
233
- #: main.php:376
234
- #@ sdm_lang
235
  msgid "File Thumbnail (Optional)"
236
  msgstr "Datei Thumbnail (optional)"
237
 
238
- #: main.php:381
239
- #@ sdm_lang
240
- msgid "Shortcodes"
241
- msgstr "Shortcodes"
242
-
243
- #: main.php:386
244
- #@ sdm_lang
245
  msgid "Statistics"
246
  msgstr "Statistiken"
247
 
248
- #: main.php:394
249
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
250
  msgid "Add a description for this download item."
251
  msgstr "Füge eine Beschreibung für diesen Download hinzu ..."
252
 
253
- #: main.php:408
254
- #@ sdm_lang
255
- msgid "Click \"Select File\" to upload (or choose) the file."
256
- msgstr "Klicke \"Datei auswählen\" zum Upload der Datei oder gib den Verzeichnisort direkt ein."
 
 
 
 
257
 
258
- #: main.php:413
259
- #@ sdm_lang
260
- msgid "File URL:"
261
- msgstr "Datei URL:"
262
 
263
- #: main.php:422
264
- #@ sdm_lang
265
- msgid "Click \"Select Image\" to upload (or choose) the file thumbnail image. This thumbnail image will be used to create a fancy file download box if you want to use it."
266
- msgstr "Klicke \"Image auswählen\" um eine Datei hochzuladen oder wähle ein vorhandenes Bild aus der Mediathek. Der Thumbnail wird genutzt, um eine \"Fancy-Datei-Download-Box\" zu erzeugen (optional)."
267
 
268
- #: main.php:424
269
- #@ sdm_lang
270
- msgid "Recommended image size is 75px by 75px."
271
- msgstr "Empfohlene Image-Größe: 75px x 75px"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
 
273
- #: main.php:427
274
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
275
  msgid "Select Image"
276
  msgstr "Image auswählen"
277
 
278
- #: main.php:428
279
- #@ sdm_lang
280
  msgid "Remove Image"
281
  msgstr "Image entfernen"
282
 
283
- #: main.php:443
284
- #@ sdm_lang
285
- msgid "This is the shortcode which can used on posts or pages to embed a download now button for this file. You can also use the shortcode inserter to add this shortcode to a post or page."
286
- msgstr "<b>Shortcode zum Einfügen des Downloads in einen Beitrag oder eine Seite (inklusive Download Button). <br/>Alternativ ist die direkte Eingabe über den Shortcode-Button im WP-Editor möglich.</b> <br/>"
287
-
288
- #: main.php:448
289
- #@ sdm_lang
290
- msgid "This shortcode may be used as a download counter."
291
- msgstr "<b>Shortcode zum Einfügen des Download-Zählers.</b><br/>"
292
 
293
- #: main.php:455
294
- #@ sdm_lang
295
  msgid "These are the statistics for this download item."
296
  msgstr "Statistiken für den jeweiligen Download."
297
 
298
- #: main.php:460
299
- #@ sdm_lang
300
  msgid "Number of Downloads:"
301
  msgstr "Anzahl der Downloads:"
302
 
303
- #: main.php:510
304
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  msgid "Colors"
306
  msgstr "Farben"
307
 
308
- #: main.php:512
309
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  msgid "Remove Tinymce Button"
311
  msgstr "Tinymce Button entfernen"
312
 
313
- #: main.php:513
314
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Download Button Color"
316
  msgstr "Download Button Farbe"
317
 
318
- #: main.php:516
319
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  msgid "Admin options settings"
321
  msgstr "Einstellungen: Admin Optionen"
322
 
323
- #: main.php:519
324
- #@ sdm_lang
325
  msgid "Front End colors settings"
326
  msgstr "Front-End Farb-Einstellungen"
327
 
328
- #: main.php:524
329
- #@ sdm_lang
330
- msgid "Removes the SDM Downloads button from the WP content editor."
331
- msgstr "Entferne den SDM-Download-Shortcode-Button vom WP-Editor."
332
 
333
- #: main.php:529
334
- #@ sdm_lang
335
- msgid "Green"
336
- msgstr "Grün"
 
 
 
 
 
337
 
338
- #: main.php:529
339
- #@ sdm_lang
340
- msgid "Blue"
341
- msgstr "Blau"
342
 
343
- #: main.php:529
344
- #@ sdm_lang
345
- msgid "Purple"
346
- msgstr "Lila"
 
 
 
347
 
348
- #: main.php:529
349
- #@ sdm_lang
350
- msgid "Teal"
351
- msgstr "Blaugrün"
352
 
353
- #: main.php:529
354
- #@ sdm_lang
355
- msgid "Dark Blue"
356
- msgstr "Dunkelblau"
357
 
358
- #: main.php:529
359
- #@ sdm_lang
360
- msgid "Black"
361
- msgstr "Schwarz"
 
 
 
362
 
363
- #: main.php:529
364
- #@ sdm_lang
365
- msgid "Grey"
366
- msgstr "Grau"
367
 
368
- #: main.php:529
369
- #@ sdm_lang
370
- msgid "Pink"
371
- msgstr "Rosa"
372
 
373
- #: main.php:529
374
- #@ sdm_lang
375
- msgid "Orange"
376
- msgstr "Orange"
377
 
378
- #: main.php:529
379
- #@ sdm_lang
380
- msgid "White"
381
- msgstr "Weiß"
 
382
 
383
- #: main.php:538
384
- #@ sdm_lang
385
- msgid "Adjusts the color of the \"Download Now\" button."
386
- msgstr "Farbe des Buttons <b> \"Jetzt herunterladen ...\" </b> anpassen."
 
 
 
 
 
387
 
388
- #: main.php:614
389
- #: main.php:963
390
- #@ sdm_lang
391
- msgid "Title"
392
- msgstr "Titel"
 
 
 
 
393
 
394
- #: main.php:615
395
- #: main.php:965
396
- #@ sdm_lang
397
- msgid "File"
398
- msgstr "Datei"
 
 
 
 
 
399
 
400
- #: main.php:616
401
- #@ sdm_lang
402
- msgid "Visitor IP"
403
- msgstr "Besucher IP"
404
 
405
- #: main.php:617
406
- #@ sdm_lang
407
- msgid "Date"
408
- msgstr "Datum"
 
409
 
410
- #: main.php:636
411
- #@ sdm_lang
412
- msgid "Delete Permanently"
413
- msgstr "Endgültig löschen"
 
 
 
414
 
415
- #: main.php:637
416
- #@ sdm_lang
417
- msgid "Export All as Excel"
418
- msgstr "Als EXCEL-Datei exportieren"
 
419
 
420
- #: main.php:765
421
- #@ sdm_lang
422
- msgid "Download Logs"
423
- msgstr "Download Logs"
 
 
 
424
 
425
- #: main.php:768
426
- #@ sdm_lang
427
- msgid "This page lists all tracked downloads."
428
- msgstr "Diese Seite listet alle erfassten Donwloads"
429
 
430
- #: main.php:789
431
- #@ sdm_lang
432
- msgid "Enter Password to Download:"
433
- msgstr "Bitte gib das Passwort ein ..."
 
 
 
 
434
 
435
- #: main.php:792
436
- #@ sdm_lang
437
- msgid "Submit"
438
- msgstr "Absenden"
439
 
440
- #: main.php:962
441
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  msgid "Image"
443
  msgstr "Image"
444
 
445
- #: main.php:964
446
- #@ sdm_lang
447
  msgid "ID"
448
  msgstr "ID"
449
 
450
- #: main.php:969
451
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
452
  msgid "Date Posted"
453
  msgstr "Datum"
454
 
455
- #: sdm-shortcodes.php:46
456
- #: sdm-shortcodes.php:156
457
- #@ sdm_lang
458
- msgid "green"
459
- msgstr "grün"
460
 
461
- #: sdm-shortcodes.php:51
462
- #: sdm-shortcodes.php:178
463
- #@ sdm_lang
464
- msgid "Download Now!"
465
- msgstr "Jetzt herunterladen ..."
466
 
467
- #: main.php:125
468
- #@ sdm_lang
469
- msgid "Image Successfully Removed"
470
- msgstr "Image erfolgreich entfernt"
471
 
472
- #: main.php:126
473
- #@ sdm_lang
474
- msgid "Error with AJAX"
475
- msgstr "AJAX Fehler"
476
 
477
- #: main.php:136
478
- #@ sdm_lang
479
- msgid "Please select a Download Item:"
480
- msgstr "Bitte Download auswählen:"
481
 
482
- #: main.php:136
483
- #@ sdm_lang
484
- msgid "Download Title"
485
- msgstr "Titel"
486
 
487
- #: main.php:136
488
- #@ sdm_lang
489
- msgid "Include Fancy Box"
490
- msgstr "Beinhaltet Fancy Box"
491
 
492
- #: main.php:136
493
- #@ sdm_lang
494
- msgid "Insert SDM Shortcode"
495
- msgstr "SDM Shortcode einfügen"
496
 
497
- #: main.php:146
498
- #@ sdm_lang
499
- msgid "Incorrect Password"
500
- msgstr "Falsches Passwort !!"
501
 
502
- #: main.php:302
503
- #@ sdm_lang
504
- msgid "Follow us"
505
- msgstr "Folge uns"
506
 
507
- #: main.php:302
508
- #@ sdm_lang
509
- msgid "on Twitter, Google+ or via Email to stay upto date about the new features of this plugin."
510
- msgstr "auf Twitter, Google+ oder via Email um über neue Features des Plugins auf dem Laufenden zu bleiben."
511
 
512
- #: main.php:352
513
- #@ sdm_lang
514
- msgid "If you need a feature rich and supported plugin for selling your digital items then checkout our"
515
- msgstr "Wenn Sie ein funktionsreiches Plugin zum Verkauf Ihrer <b>digitalen Produkte</b> benötigen, dann testen Sie unser Plugin. Wir garantieren Ihnen gleichzeitig umfassenden technische Support."
516
 
517
- #: main.php:352
518
- #@ sdm_lang
519
- msgid "WP eStore Plugin"
520
- msgstr "WP eStore Plugin"
521
 
522
- #: main.php:411
523
- #@ sdm_lang
524
- msgid "Select File"
525
- msgstr "Datei auswählen"
526
 
527
- #: main.php:566
528
- #@ sdm_lang
529
- msgid "Download"
530
- msgstr "Download"
531
 
532
- #: main.php:589
533
- #@ sdm_lang
534
- msgid "Edit"
535
- msgstr "Bearbeiten"
536
 
537
- #: main.php:590
538
- #@ sdm_lang
539
- msgid "Delete"
540
- msgstr "Löschen"
541
 
542
- #: main.php:652
543
- #@ sdm_lang
544
- msgid "Nope! Security check failed!"
545
- msgstr "Nö! Sicherheitsprüfung nicht bestanden!"
546
 
547
- #: main.php:661
548
- #@ sdm_lang
549
- msgid "Download Export File"
550
- msgstr "Download Export-Datei"
551
 
552
- #: main.php:668
553
- #@ sdm_lang
554
- msgid "No entries were selected."
555
- msgstr "Keine Einträge ausgewählt."
556
 
557
- #: main.php:668
558
- #: main.php:684
559
- #: main.php:687
560
- #: main.php:704
561
- #: main.php:707
562
- #@ sdm_lang
563
- msgid "Click to Dismiss"
564
- msgstr "Ausblenden"
565
 
566
- #: main.php:684
567
- #@ sdm_lang
568
- msgid "Entries Deleted!"
569
- msgstr "Einträge gelöscht!"
570
 
571
- #: main.php:687
572
- #: main.php:707
573
- #@ sdm_lang
574
- msgid "Error"
575
- msgstr "Fehler"
576
 
577
- #: main.php:704
578
- #@ sdm_lang
579
- msgid "Entry Deleted!"
580
- msgstr "Eintrag gelöscht!"
581
 
582
- #: main.php:838
583
- #@ sdm_lang
584
- msgid "Error! Failed to log the download request in the database table"
585
- msgstr "Fehler! Eintrag der Download-Anfrage in die Datenbank gescheitert!"
586
 
587
- #: main.php:848
588
- #@ sdm_lang
589
- msgid "Error! The URL value is empty. Please specify a correct URL value to redirect to!"
590
- msgstr "Fehler! Der URL-Wert ist leer. Bitte geben Sie eine korrekte URL ein!"
591
 
592
- #: sdm-shortcodes.php:110
593
- #@ sdm_lang
594
- msgid "Error! You must enter a category slug OR a category id with this shortcode. Refer to the documentation for usage instructions."
595
- msgstr "Fehler! Sie müssen bei einem Shortcode entweder einen Kategorie-Slug (bereinigter Namenskürzel der URL) <b>ODER</b> eine Kategorie-ID eingeben. Bitte beachten Sie die Dokumentation für detaillierte Informationen."
 
 
 
 
 
596
 
597
- #: sdm-shortcodes.php:114
598
- #@ sdm_lang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgid "Error! Please enter a category slug OR id; not both."
600
- msgstr "Fehler! Bitte geben Sie entweder einen Kategorie-Slug ODER die ID ein; nicht beides."
 
 
 
 
 
 
 
 
 
 
 
601
 
602
- #: sdm-shortcodes.php:144
603
- #@ sdm_lang
604
  msgid "There are no download items matching this category criteria."
605
- msgstr "Es existieren keine Downloads, die den Kategorie-Kriterien entsprechen."
 
606
 
607
- #: main.php:532
608
- #@ sdm_lang
609
- msgid "current"
610
- msgstr "aktiv"
611
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Simple Download Monitor v2.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-10 07:18+0200\n"
6
+ "PO-Revision-Date: 2018-05-10 07:20+0200\n"
7
+ "Last-Translator: freizeittreff-bielefeld <freizeittreff.bielefeld@gmail."
8
+ "com>\n"
9
  "Language-Team: \n"
10
+ "Language: de_DE\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 2.0.7\n"
 
 
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Textdomain-Support: yes\n"
21
  "X-Poedit-SearchPath-0: .\n"
 
22
 
23
+ # @ sdm_lang
24
+ #: includes/sdm-admin-menu-handler.php:9
25
+ msgid "Logs"
26
+ msgstr "Logs"
27
+
28
+ # @ sdm_lang
29
+ #: includes/sdm-admin-menu-handler.php:10
30
+ #: includes/sdm-admin-menu-handler.php:325
31
+ msgid "Stats"
32
+ msgstr "Statistiken"
33
+
34
+ # @ sdm_lang
35
+ #: includes/sdm-admin-menu-handler.php:11 main.php:182
36
  msgid "Settings"
37
  msgstr "Einstellungen"
38
 
39
+ #: includes/sdm-admin-menu-handler.php:12
40
+ msgid "Add-ons"
41
+ msgstr "Add-ons"
42
+
43
+ # @ sdm_lang
44
+ #: includes/sdm-admin-menu-handler.php:40
45
+ msgid "Simple Download Monitor Settings Page"
46
+ msgstr "Simple Donwload Monitor Einstellungs-Seite"
47
+
48
+ #: includes/sdm-admin-menu-handler.php:43
49
+ msgid ""
50
+ "Read the full plugin usage documentation <a href=\"https://simple-download-"
51
+ "monitor.com/download-monitor-tutorials/\" target=\"_blank\">here</a>."
52
+ msgstr ""
53
+ "Lesen Sie die vollständige PlugIn Nutzung Dokumentation <a href=\"https://"
54
+ "simple-download-monitor.com/download-monitor-tutorials/\" target=\"_blank"
55
+ "\">hier</a>."
56
+
57
+ #: includes/sdm-admin-menu-handler.php:44
58
+ msgid ""
59
+ "You can also <a href=\"https://www.tipsandtricks-hq.com/development-center\" "
60
+ "target=\"_blank\">"
61
+ msgstr ""
62
+ "Sie können auch <a href=\"https://www.tipsandtricks-hq.com/development-center"
63
+ "\" target=\"_blank\">"
64
+
65
+ # @ sdm_lang
66
+ #: includes/sdm-admin-menu-handler.php:44
67
+ msgid "follow us"
68
+ msgstr "Folgen Sie uns"
69
+
70
+ # @ sdm_lang
71
+ #: includes/sdm-admin-menu-handler.php:44
72
+ msgid ""
73
+ "on Twitter, Google+ or via Email to stay upto date about the new features of "
74
+ "this plugin."
75
+ msgstr ""
76
+ "auf Twitter, Google+ oder via Email um über neue Features des Plugins auf "
77
+ "dem Laufenden zu bleiben."
78
+
79
+ # @ sdm_lang
80
+ #: includes/sdm-admin-menu-handler.php:52
81
+ msgid "General Settings"
82
+ msgstr "Allgemeine Einstellungen"
83
+
84
+ # @ sdm_lang
85
+ #: includes/sdm-admin-menu-handler.php:53
86
+ msgid "Advanced Settings"
87
+ msgstr "Erweitere Einstellungen"
88
+
89
+ # @ sdm_lang
90
+ #: includes/sdm-admin-menu-handler.php:90
91
+ msgid ""
92
+ "If you need a feature rich and supported plugin for selling your digital "
93
+ "items then checkout our"
94
+ msgstr ""
95
+ "Wenn Sie ein funktionsreiches und unterstütztes Plugin für den Verkauf Ihrer "
96
+ "digitalen Artikel benötigen, checken Sie unser"
97
+
98
+ # @ sdm_lang
99
+ #: includes/sdm-admin-menu-handler.php:90
100
+ msgid "WP eStore Plugin"
101
+ msgstr "WP eStore Plugin"
102
+
103
+ #: includes/sdm-admin-menu-handler.php:155
104
+ msgid "Are you sure want to delete all plugin's data and deactivate plugin?"
105
+ msgstr ""
106
+ "Möchten Sie wirklich alle Daten des Plugins löschen und das Plugin "
107
+ "deaktivieren?"
108
+
109
+ #: includes/sdm-admin-menu-handler.php:160
110
+ msgid ""
111
+ "Data has been deleted and plugin deactivated. Click OK to go to Plugins page."
112
+ msgstr ""
113
+ "Alle Daten wurden gelöscht und das PlugIn wurde deaktiviert. Klicken Sie auf "
114
+ "OK um zurück zur PlugIn Seite zu kommen."
115
+
116
+ #: includes/sdm-admin-menu-handler.php:164
117
+ msgid "Error occured."
118
+ msgstr "Fehler aufgetreten."
119
+
120
+ #: includes/sdm-admin-menu-handler.php:217
121
+ msgid "Log entries exported! Click on the following link to download the file."
122
+ msgstr ""
123
+ "Log Einträge exportiert! Klicken Sie auf den folgenden Link, um die Datei "
124
+ "herunterzuladen."
125
+
126
+ # @ sdm_lang
127
+ #: includes/sdm-admin-menu-handler.php:218
128
+ msgid "Download Logs CSV File"
129
+ msgstr "Download Logs CSV Datei"
130
+
131
+ # @ sdm_lang
132
+ #: includes/sdm-admin-menu-handler.php:228
133
+ msgid "Download log entries deleted!"
134
+ msgstr "Download Log-Einträge gelöscht!"
135
+
136
+ # @ sdm_lang
137
+ #: includes/sdm-admin-menu-handler.php:240
138
+ msgid "Download Logs"
139
+ msgstr "Download Logs"
140
+
141
+ # @ sdm_lang
142
+ #: includes/sdm-admin-menu-handler.php:243
143
+ msgid "This page lists all tracked downloads."
144
+ msgstr "Diese Seite listet alle erfassten Downloads."
145
+
146
+ # @ sdm_lang
147
+ #: includes/sdm-admin-menu-handler.php:250
148
+ msgid "Export Download Log Entries"
149
+ msgstr "Download Log Einträge exportieren"
150
+
151
+ #: includes/sdm-admin-menu-handler.php:254
152
+ msgid "Export Log Entries to CSV File"
153
+ msgstr "Log Einträge in CSV-Datei exportieren"
154
+
155
+ # @ sdm_lang
156
+ #: includes/sdm-admin-menu-handler.php:261
157
+ msgid "Reset Download Log Entries"
158
+ msgstr "Download Log Einträge zurücksetzen"
159
+
160
+ #: includes/sdm-admin-menu-handler.php:265
161
+ msgid "Reset Log Entries"
162
+ msgstr "Log Einträge zurücksetzen"
163
+
164
+ #: includes/sdm-admin-menu-handler.php:329
165
+ msgid "Choose Date Range (yyyy-mm-dd)"
166
+ msgstr "Wählen Sie den Datumsbereich (JJJJ-MM-TT)"
167
+
168
+ #: includes/sdm-admin-menu-handler.php:333
169
+ msgid "Start Date: "
170
+ msgstr "Anfangsdatum: "
171
+
172
+ #: includes/sdm-admin-menu-handler.php:334
173
+ msgid "End Date: "
174
+ msgstr "Enddatum: "
175
+
176
+ #: includes/sdm-admin-menu-handler.php:336
177
+ msgid "This Month"
178
+ msgstr "Aktueller Monat"
179
+
180
+ #: includes/sdm-admin-menu-handler.php:337
181
+ msgid "Last Month"
182
+ msgstr "Letzter Monat"
183
+
184
+ #: includes/sdm-admin-menu-handler.php:338
185
+ msgid "This Year"
186
+ msgstr "Dieses Jahr"
187
+
188
+ #: includes/sdm-admin-menu-handler.php:339
189
+ msgid "Last Year"
190
+ msgstr "Letztes Jahr"
191
+
192
+ # @ sdm_lang
193
+ #: includes/sdm-admin-menu-handler.php:340
194
+ msgid "All Time"
195
+ msgstr "Jederzeit"
196
+
197
+ #: includes/sdm-admin-menu-handler.php:343
198
+ msgid "View Stats"
199
+ msgstr "Statistiken anzeigen"
200
+
201
+ # @ sdm_lang
202
+ #: includes/sdm-admin-menu-handler.php:349
203
+ msgid "Downloads by date"
204
+ msgstr "Downloads nach Datum"
205
+
206
+ # @ sdm_lang
207
+ #: includes/sdm-admin-menu-handler.php:350
208
+ msgid "Downloads by country"
209
+ msgstr "Downloads nach Ländern"
210
+
211
+ # @ sdm_lang
212
+ #: includes/sdm-admin-menu-handler.php:384 includes/sdm-logs-list-table.php:73
213
+ msgid "Date"
214
+ msgstr "Datum"
215
+
216
+ # @ sdm_lang
217
+ #: includes/sdm-admin-menu-handler.php:385
218
+ msgid "Number of downloads"
219
+ msgstr "Anzahl der Downloads"
220
+
221
+ # @ sdm_lang
222
+ #: includes/sdm-admin-menu-handler.php:389
223
+ msgid "Downloads by Date"
224
+ msgstr "Downloads nach Datum"
225
+
226
+ #: includes/sdm-download-request-handler.php:13
227
+ msgid "Error! Incorrect download item id."
228
+ msgstr "Fehler! Falsche Download Element ID."
229
+
230
+ # @ sdm_lang
231
+ #: includes/sdm-download-request-handler.php:16
232
+ msgid "Error! This download item ("
233
+ msgstr "Fehler! Dieses Download Element ("
234
+
235
+ #: includes/sdm-download-request-handler.php:28
236
+ msgid "Error! This download requires a password."
237
+ msgstr "Fehler! Für diesen Download ist ein Passwort erforderlich."
238
+
239
+ #: includes/sdm-download-request-handler.php:30 main.php:740 main.php:742
240
+ msgid "Click here"
241
+ msgstr "Hier klicken"
242
+
243
+ #: includes/sdm-download-request-handler.php:31
244
+ msgid " and enter a valid password for this item"
245
+ msgstr " und geben Sie ein gültiges Passwort für dieses Element ein"
246
+
247
+ #: includes/sdm-download-request-handler.php:37
248
+ msgid "Error! Incorrect password. This download requires a valid password."
249
+ msgstr ""
250
+ "Fehler! Falsches Passwort. Dieser Download erfordert ein gültiges Passwort."
251
+
252
+ #: includes/sdm-download-request-handler.php:65
253
+ msgid "__Click here__ to go to login page."
254
+ msgstr "__Klicken Sie hier__, um zur Login Seite zu gelangen."
255
+
256
+ #: includes/sdm-download-request-handler.php:68
257
+ msgid "You need to be logged in to download this file."
258
+ msgstr "Sie müssen angemeldet sein, um diese Datei herunterladen zu können."
259
+
260
+ #: includes/sdm-download-request-handler.php:72
261
+ msgid "Not Logged In"
262
+ msgstr "Nicht angemeldet"
263
+
264
+ # @ sdm_lang
265
+ #: includes/sdm-download-request-handler.php:130
266
+ msgid "Error! Failed to log the download request in the database table"
267
+ msgstr ""
268
+ "Fehler! Fehler beim Protokollieren der Downloadanforderung in der "
269
+ "Datenbanktabelle"
270
+
271
+ # @ sdm_lang
272
+ #: includes/sdm-download-request-handler.php:162
273
+ msgid ""
274
+ "Error! The URL value is empty. Please specify a correct URL value to "
275
+ "redirect to!"
276
+ msgstr "Fehler! Der URL-Wert ist leer. Bitte geben Sie eine korrekte URL ein!"
277
+
278
+ #: includes/sdm-download-request-handler.php:225
279
+ #: includes/sdm-download-request-handler.php:229
280
+ msgid "ERROR:"
281
+ msgstr "FEHLER:"
282
+
283
+ #: includes/sdm-download-request-handler.php:225
284
+ #: includes/sdm-download-request-handler.php:229
285
+ msgid "Google reCAPTCHA verification failed."
286
+ msgstr "Google reCAPTCHA Überprüfung fehlgeschlagen."
287
+
288
+ #: includes/sdm-download-request-handler.php:225
289
+ #: includes/sdm-download-request-handler.php:229
290
+ msgid "Back"
291
+ msgstr "Zurück"
292
+
293
+ #: includes/sdm-download-request-handler.php:229
294
+ msgid "Do you have JavaScript enabled?"
295
+ msgstr "Haben Sie JavaScript aktiviert?"
296
+
297
+ # @ sdm_lang
298
+ #: includes/sdm-latest-downloads.php:43
299
+ msgid "There are no download items matching this shortcode criteria."
300
+ msgstr ""
301
+ "Es gibt keine Download Elemente, die diesem Shortcode Kriterium entsprechen."
302
+
303
+ # @ sdm_lang
304
+ #: includes/sdm-logs-list-table.php:19
305
+ #: includes/templates/fancy1/sdm-fancy-1.php:111
306
+ #: sdm-post-type-content-handler.php:77 sdm-shortcodes.php:162
307
+ msgid "Download"
308
+ msgstr "Download"
309
+
310
+ # @ sdm_lang
311
+ #: includes/sdm-logs-list-table.php:20
312
+ #: includes/templates/fancy1/sdm-fancy-1.php:111 main.php:875
313
+ #: sdm-post-type-and-taxonomy.php:7 sdm-post-type-and-taxonomy.php:8
314
+ #: sdm-post-type-and-taxonomy.php:13 sdm-post-type-and-taxonomy.php:19
315
+ #: sdm-post-type-content-handler.php:77 sdm-shortcodes.php:162
316
  msgid "Downloads"
317
  msgstr "Downloads"
318
 
319
+ # @ sdm_lang
320
+ #: includes/sdm-logs-list-table.php:45
321
+ msgid "Edit"
322
+ msgstr "Bearbeiten"
 
323
 
324
+ # @ sdm_lang
325
+ #: includes/sdm-logs-list-table.php:46
326
+ msgid "Delete"
327
+ msgstr "Löschen"
328
 
329
+ # @ sdm_lang
330
+ #: includes/sdm-logs-list-table.php:70 main.php:870
331
+ msgid "Title"
332
+ msgstr "Titel"
333
 
334
+ # @ sdm_lang
335
+ #: includes/sdm-logs-list-table.php:71 main.php:872
336
+ msgid "File"
337
+ msgstr "Datei"
338
 
339
+ # @ sdm_lang
340
+ #: includes/sdm-logs-list-table.php:72
341
+ msgid "Visitor IP"
342
+ msgstr "Besucher IP"
343
 
344
+ #: includes/sdm-logs-list-table.php:74
345
+ msgid "Country"
346
+ msgstr "Land"
 
347
 
348
+ #: includes/sdm-logs-list-table.php:75
349
+ msgid "Username"
350
+ msgstr "Benutzername"
 
351
 
352
+ # @ sdm_lang
353
+ #: includes/sdm-logs-list-table.php:96
354
+ msgid "Delete Permanently"
355
+ msgstr "Endgültig löschen"
 
356
 
357
+ # @ sdm_lang
358
+ #: includes/sdm-logs-list-table.php:111 includes/sdm-logs-list-table.php:142
359
+ msgid "Nope! Security check failed!"
360
+ msgstr "Nö! Sicherheitsprüfung nicht bestanden!"
 
361
 
362
+ # @ sdm_lang
363
+ #: includes/sdm-logs-list-table.php:115
364
+ msgid "No entries were selected."
365
+ msgstr "Keine Einträge ausgewählt."
366
 
367
+ # @ sdm_lang
368
+ #: includes/sdm-logs-list-table.php:115 includes/sdm-logs-list-table.php:129
369
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:151
370
+ #: includes/sdm-logs-list-table.php:153
371
+ msgid "Click to Dismiss"
372
+ msgstr "Ausblenden"
373
 
374
+ #: includes/sdm-logs-list-table.php:122
375
+ msgid "Error! The row id value of a log entry must be numeric."
376
+ msgstr "Error! Der Zeilen ID Wert eines Protokolleintrags muss numerisch sein."
 
377
 
378
+ # @ sdm_lang
379
+ #: includes/sdm-logs-list-table.php:129
380
+ msgid "Entries Deleted!"
381
+ msgstr "Einträge gelöscht!"
382
 
383
+ # @ sdm_lang
384
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:153
385
+ msgid "Error"
386
+ msgstr "Fehler"
387
 
388
+ # @ sdm_lang
389
+ #: includes/sdm-logs-list-table.php:151
390
+ msgid "Entry Deleted!"
391
+ msgstr "Eintrag gelöscht!"
392
 
393
+ #: includes/sdm-search-shortcode-handler.php:65
394
+ msgid "Showing search results for "
395
+ msgstr "Suchergebnisse anzeigen für "
 
396
 
397
+ # @ sdm_lang
398
+ #: includes/sdm-search-shortcode-handler.php:66
399
+ msgid "Number of items found: "
400
+ msgstr "Anzahl gefundener Elemente: "
401
 
402
+ #: includes/sdm-search-shortcode-handler.php:67
403
+ msgid "Keywords searched: "
404
+ msgstr "Stichwörter gesucht: "
 
 
405
 
406
+ #: includes/sdm-search-shortcode-handler.php:70
407
+ msgid "Nothing found for "
408
+ msgstr "Nichts gefunden für "
 
 
409
 
410
+ # @ sdm_lang
411
+ #: includes/sdm-utility-functions.php:9
412
+ msgid "Green"
413
+ msgstr "Grün"
 
414
 
415
+ # @ sdm_lang
416
+ #: includes/sdm-utility-functions.php:10
417
+ msgid "Blue"
418
+ msgstr "Blau"
419
 
420
+ # @ sdm_lang
421
+ #: includes/sdm-utility-functions.php:11
422
+ msgid "Purple"
423
+ msgstr "Lila"
424
 
425
+ # @ sdm_lang
426
+ #: includes/sdm-utility-functions.php:12
427
+ msgid "Teal"
428
+ msgstr "Blaugrün"
429
 
430
+ # @ sdm_lang
431
+ #: includes/sdm-utility-functions.php:13
432
+ msgid "Dark Blue"
433
+ msgstr "Dunkelblau"
434
 
435
+ # @ sdm_lang
436
+ #: includes/sdm-utility-functions.php:14
437
+ msgid "Black"
438
+ msgstr "Schwarz"
439
 
440
+ # @ sdm_lang
441
+ #: includes/sdm-utility-functions.php:15
442
+ msgid "Grey"
443
+ msgstr "Grau"
444
 
445
+ # @ sdm_lang
446
+ #: includes/sdm-utility-functions.php:16
447
+ msgid "Pink"
448
+ msgstr "Rosa"
449
 
450
+ # @ sdm_lang
451
+ #: includes/sdm-utility-functions.php:17
452
+ msgid "Orange"
453
+ msgstr "Orange"
454
 
455
+ # @ sdm_lang
456
+ #: includes/sdm-utility-functions.php:18
457
+ msgid "White"
458
+ msgstr "Weiß"
 
459
 
460
+ # @ sdm_lang
461
+ #: includes/sdm-utility-functions.php:62 includes/sdm-utility-functions.php:228
462
+ #: includes/sdm-utility-functions.php:278
463
+ #: includes/templates/fancy0/sdm-fancy-0.php:75
464
+ #: includes/templates/fancy1/sdm-fancy-1.php:43
465
+ #: includes/templates/fancy2/sdm-fancy-2.php:60
466
+ #: sdm-post-type-content-handler.php:44 sdm-shortcodes.php:68
467
+ #: sdm-shortcodes.php:176
468
+ msgid "Download Now!"
469
+ msgstr "Jetzt herunterladen!"
470
 
471
+ # @ sdm_lang
472
+ #: includes/sdm-utility-functions.php:69
473
+ msgid "Enter Password to Download:"
474
+ msgstr "Passwort zum Herunterladen eingeben:"
475
 
476
+ #: includes/sdm-utility-functions.php:264
477
+ msgid "I agree to the "
478
+ msgstr "Ich akzeptiere die "
 
 
479
 
480
+ #: includes/sdm-utility-functions.php:264
481
+ msgid "terms and conditions"
482
+ msgstr "Nutzungsbedingungen & Datenschutzerklärung"
 
483
 
484
+ # @ sdm_lang
485
+ #: includes/templates/fancy0/sdm-fancy-0.php:64
486
+ #: sdm-post-type-content-handler.php:39
487
+ msgid "green"
488
+ msgstr "grün"
489
+
490
+ #: includes/templates/fancy1/sdm-fancy-1.php:127
491
+ #: includes/templates/fancy2/sdm-fancy-2.php:139
492
+ #: sdm-post-type-content-handler.php:101
493
+ msgid "Size: "
494
+ msgstr "Größe: "
495
+
496
+ #: includes/templates/fancy1/sdm-fancy-1.php:134
497
+ #: includes/templates/fancy2/sdm-fancy-2.php:146 main.php:445
498
+ #: sdm-post-type-content-handler.php:108
499
+ msgid "Version: "
500
+ msgstr "Version: "
501
+
502
+ # @ sdm_lang
503
+ #: main.php:238 main.php:332
504
+ msgid "Select File"
505
+ msgstr "Datei auswählen"
506
+
507
+ # @ sdm_lang
508
+ #: main.php:239
509
+ msgid "Select Thumbnail"
510
+ msgstr "Thumbnail auswählen"
511
+
512
+ #: main.php:240
513
+ msgid "Insert"
514
+ msgstr "Einfügen"
515
+
516
+ # @ sdm_lang
517
+ #: main.php:241
518
+ msgid "Image Successfully Removed"
519
+ msgstr "Image erfolgreich entfernt"
520
+
521
+ # @ sdm_lang
522
+ #: main.php:242
523
+ msgid "Error with AJAX"
524
+ msgstr "AJAX Fehler"
525
+
526
+ # @ sdm_lang
527
+ #: main.php:253
528
+ msgid "Please select a Download Item:"
529
+ msgstr "Bitte Download auswählen:"
530
+
531
+ # @ sdm_lang
532
+ #: main.php:254
533
+ msgid "Download Title"
534
+ msgstr "Titel"
535
+
536
+ # @ sdm_lang
537
+ #: main.php:255
538
+ msgid "Include Fancy Box"
539
+ msgstr "Beinhaltet Fancy Box"
540
+
541
+ #: main.php:256
542
+ msgid "Open New Window"
543
+ msgstr "In neuem Fenster öffnen"
544
+
545
+ # @ sdm_lang
546
+ #: main.php:257
547
+ msgid "Button Color"
548
+ msgstr "Button Farbe"
549
 
550
+ # @ sdm_lang
551
+ #: main.php:258
552
+ msgid "Insert SDM Shortcode"
553
+ msgstr "SDM Shortcode einfügen"
554
 
555
+ # @ sdm_lang
556
+ #: main.php:300
557
  msgid "Description"
558
  msgstr "Beschreibung"
559
 
560
+ #: main.php:301
561
+ msgid "Downloadable File (Visitors will download this item)"
562
+ msgstr "Downloadbare Datei (Gäste können dieses Element herunterladen)"
563
+
564
+ #: main.php:302
565
+ msgid "PHP Dispatch or Redirect"
566
+ msgstr "PHP Versand oder Umleitung"
567
 
568
+ # @ sdm_lang
569
+ #: main.php:303
570
  msgid "File Thumbnail (Optional)"
571
  msgstr "Datei Thumbnail (optional)"
572
 
573
+ # @ sdm_lang
574
+ #: main.php:304
 
 
 
 
 
575
  msgid "Statistics"
576
  msgstr "Statistiken"
577
 
578
+ # @ sdm_lang
579
+ #: main.php:305
580
+ msgid "Other Details (Optional)"
581
+ msgstr "Andere Details (optional)"
582
+
583
+ # @ sdm_lang
584
+ #: main.php:306
585
+ msgid "Shortcodes"
586
+ msgstr "Shortcodes"
587
+
588
+ # @ sdm_lang
589
+ #: main.php:310
590
  msgid "Add a description for this download item."
591
  msgstr "Füge eine Beschreibung für diesen Download hinzu ..."
592
 
593
+ #: main.php:324
594
+ msgid ""
595
+ "Manually enter a valid URL of the file in the text box below, or click "
596
+ "\"Select File\" button to upload (or choose) the downloadable file."
597
+ msgstr ""
598
+ "Geben Sie manuell eine gültige URL der Datei in das Textfeld unten ein oder "
599
+ "klicken Sie auf die Schaltfläche \"Datei auswählen\", um die herunterladbare "
600
+ "Datei hochzuladen (oder auszuwählen)."
601
 
602
+ #: main.php:335
603
+ msgid "Steps to upload a file or choose one from your media library:"
604
+ msgstr ""
605
+ "Schritte zum Hochladen oder Auswählen einer Datei aus Ihrer Medienbibliothek:"
606
 
607
+ #: main.php:337
608
+ msgid "Hit the \"Select File\" button."
609
+ msgstr "Drücken Sie die Schaltfläche \"Datei auswählen\"."
 
610
 
611
+ #: main.php:338
612
+ msgid "Upload a new file or choose an existing one from your media library."
613
+ msgstr ""
614
+ "Neue Datei hochladen oder eine bereits vorhandene aus der Medien-Bibliothek "
615
+ "auswählen."
616
+
617
+ #: main.php:339
618
+ msgid ""
619
+ "Click the \"Insert\" button, this will populate the uploaded file's URL in "
620
+ "the above text field."
621
+ msgstr ""
622
+ "Klicken Sie auf die Schaltfläche \"Einfügen\". Dadurch wird die URL der "
623
+ "hochgeladenen Datei im obigen Textfeld ausgefüllt."
624
+
625
+ #: main.php:360
626
+ msgid ""
627
+ "Dispatch the file via PHP directly instead of redirecting to it. PHP "
628
+ "Dispatching keeps the download URL hidden. Dispatching works only for local "
629
+ "files (files that you uploaded to this site via this plugin or media "
630
+ "library)."
631
+ msgstr ""
632
+ "Versenden Sie die Datei per PHP direkt anstatt darauf umzuleiten. Der PHP "
633
+ "Versand hält die Download URL versteckt. Versand funktioniert nur für lokale "
634
+ "Dateien (Dateien, die Sie auf dieser Website über dieses PlugIn oder die "
635
+ "Medien Bibliothek hochgeladen haben)."
636
 
637
+ # @ sdm_lang
638
+ #: main.php:368
639
+ msgid ""
640
+ "Manually enter a valid URL, or click \"Select Image\" to upload (or choose) "
641
+ "the file thumbnail image."
642
+ msgstr ""
643
+ "Geben Sie manuell eine gültige URL ein oder klicken Sie auf \"Bild auswählen"
644
+ "\", um die Thumbnail-Datei hochzuladen (oder auszuwählen)."
645
+
646
+ # @ sdm_lang
647
+ #: main.php:373
648
  msgid "Select Image"
649
  msgstr "Image auswählen"
650
 
651
+ # @ sdm_lang
652
+ #: main.php:374
653
  msgid "Remove Image"
654
  msgstr "Image entfernen"
655
 
656
+ # @ sdm_lang
657
+ #: main.php:388
658
+ msgid ""
659
+ "This thumbnail image will be used to create a fancy file download box if you "
660
+ "want to use it."
661
+ msgstr ""
662
+ "Das Thumbnail-Bild wird verwendet, um ein ausgefallenes Dateidownload Feld "
663
+ "zu ersetzen, wenn Sie es verwenden möchten."
 
664
 
665
+ # @ sdm_lang
666
+ #: main.php:402
667
  msgid "These are the statistics for this download item."
668
  msgstr "Statistiken für den jeweiligen Download."
669
 
670
+ # @ sdm_lang
671
+ #: main.php:409
672
  msgid "Number of Downloads:"
673
  msgstr "Anzahl der Downloads:"
674
 
675
+ #: main.php:414
676
+ msgid "Offset Count: "
677
+ msgstr "Offset-Anzahl: "
678
+
679
+ #: main.php:417
680
+ msgid ""
681
+ "Enter any positive or negative numerical value; to offset the download count "
682
+ "shown to the visitors (when using the download counter shortcode)."
683
+ msgstr ""
684
+ "Geben Sie einen positiven oder negativen Zahlenwert ein. Der Download Zähler "
685
+ "wird den Besuchern (bei Verwendung des Download Zähler Shortcode) "
686
+ "dementsprechend angepasst."
687
+
688
+ #: main.php:424
689
+ msgid "Disable download logging for this item."
690
+ msgstr "Deaktivieren Sie die Protokollierung der Downloads für dieses Element."
691
+
692
+ # @ sdm_lang
693
+ #: main.php:438
694
+ msgid "File Size: "
695
+ msgstr "Dateigröße: "
696
+
697
+ #: main.php:441
698
+ msgid ""
699
+ "Enter the size of this file (example value: 2.15 MB). You can show this "
700
+ "value in the fancy display by using a shortcode parameter."
701
+ msgstr ""
702
+ "Geben Sie die Größe dieser Datei ein (Beispielwert: 2.15 MB). Sie können "
703
+ "diesen Wert in der Fancy Anzeige mit einem ShortCode Parameter anzeigen."
704
+
705
+ #: main.php:448
706
+ msgid ""
707
+ "Enter the version number for this item if any (example value: v2.5.10). You "
708
+ "can show this value in the fancy display by using a shortcode parameter."
709
+ msgstr ""
710
+ "Geben Sie die Versionsnummer für dieses Element ein, falls vorhanden "
711
+ "(Beispielwert: v2.5.10). Sie können diesen Wert in der Fancy Anzeige mit "
712
+ "einem ShortCode Parameter anzeigen."
713
+
714
+ # @ sdm_lang
715
+ #: main.php:455
716
+ msgid ""
717
+ "The following shortcode can be used on posts or pages to embed a download "
718
+ "now button for this file. You can also use the shortcode inserter (in the "
719
+ "post editor) to add this shortcode to a post or page."
720
+ msgstr ""
721
+ "Der folgende Shortcode kann in Beiträgen oder Seiten verwendet werden, um "
722
+ "ein \"Download\" Button für diese Datei einzubetten. Sie können auch den "
723
+ "Shortcode Button (im Beitrags Editor) verwenden, um diesen Shortcode zu "
724
+ "einem Beitrag oder einer Seite hinzuzufügen."
725
+
726
+ # @ sdm_lang
727
+ #: main.php:461
728
+ msgid ""
729
+ "The following shortcode can be used to show a download counter for this item."
730
+ msgstr ""
731
+ "Der folgende Shortcode kann verwendet werden, um einen Download Zähler für "
732
+ "dieses Element anzuzeigen."
733
+
734
+ #: main.php:467
735
+ msgid ""
736
+ "Read the full shortcode usage documentation <a href=\"https://www."
737
+ "tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
738
+ "\"_blank\">here</a>."
739
+ msgstr ""
740
+ "Lesen Sie die vollständige ShortCode Nutzung Dokumentation <a href=\"https://"
741
+ "www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
742
+ "\"_blank\">hier</a>."
743
+
744
+ # @ sdm_lang
745
+ #: main.php:569
746
+ msgid "General Options"
747
+ msgstr "Allgemeine Optionen"
748
+
749
+ # @ sdm_lang
750
+ #: main.php:570
751
+ msgid "Admin Options"
752
+ msgstr "Optionen"
753
+
754
+ #: main.php:573
755
+ msgid "Google Captcha (reCAPTCHA)"
756
+ msgstr "Google Captcha (reCAPTCHA)"
757
+
758
+ #: main.php:574
759
+ msgid "Terms and Conditions"
760
+ msgstr "Nutzungsbedingungen"
761
+
762
+ # @ sdm_lang
763
+ #: main.php:576
764
  msgid "Colors"
765
  msgstr "Farben"
766
 
767
+ #: main.php:577
768
+ msgid "Debug"
769
+ msgstr "Debug"
770
+
771
+ #: main.php:578
772
+ msgid "Delete Plugin Data"
773
+ msgstr "Plugin Daten löschen"
774
+
775
+ # @ sdm_lang
776
+ #: main.php:581
777
+ msgid "Hide Download Count"
778
+ msgstr "Download-Zähler ausblenden"
779
+
780
+ #: main.php:582
781
+ msgid "PHP Dispatching"
782
+ msgstr "PHP Versand"
783
+
784
+ #: main.php:583
785
+ msgid "Only Allow Logged-in Users to Download"
786
+ msgstr "Nur eingeloggte Benutzer zum Herunterladen zulassen"
787
+
788
+ #: main.php:584
789
+ msgid "Login Page URL"
790
+ msgstr "URL der Login-Seite"
791
+
792
+ # @ sdm_lang
793
+ #: main.php:586
794
  msgid "Remove Tinymce Button"
795
  msgstr "Tinymce Button entfernen"
796
 
797
+ #: main.php:587
798
+ msgid "Log Unique IP"
799
+ msgstr "Log Unique IP"
800
+
801
+ #: main.php:588
802
+ msgid "Do Not Capture IP Address"
803
+ msgstr "Erfassen Sie keine IP-Adresse"
804
+
805
+ # @ sdm_lang
806
+ #: main.php:589
807
+ msgid "Do Not Count Downloads from Bots"
808
+ msgstr "Keine Downloads von Bots zählen"
809
+
810
+ # @ sdm_lang
811
+ #: main.php:590
812
+ msgid "Disable Download Logs"
813
+ msgstr "Download Logs deaktivieren"
814
+
815
+ # @ sdm_lang
816
+ #: main.php:592
817
  msgid "Download Button Color"
818
  msgstr "Download Button Farbe"
819
 
820
+ #: main.php:594
821
+ msgid "Enable Debug"
822
+ msgstr "Debug aktivieren"
823
+
824
+ #: main.php:597
825
+ msgid "Enable reCAPTCHA"
826
+ msgstr "reCAPTCHA aktivieren"
827
+
828
+ #: main.php:598
829
+ msgid "Site Key"
830
+ msgstr "Site Key"
831
+
832
+ #: main.php:599
833
+ msgid "Secret Key"
834
+ msgstr "Secret Key"
835
+
836
+ #: main.php:602
837
+ msgid "Enable Terms and Conditions"
838
+ msgstr "Nutzungsbedingungen aktivieren"
839
+
840
+ #: main.php:603
841
+ msgid "Terms Page URL"
842
+ msgstr "URL der Nutzungsbedingungen"
843
+
844
+ # @ sdm_lang
845
+ #: main.php:608
846
+ msgid "General options settings"
847
+ msgstr "Allgemeine Optionen Einstellungen"
848
+
849
+ # @ sdm_lang
850
+ #: main.php:613
851
  msgid "Admin options settings"
852
  msgstr "Einstellungen: Admin Optionen"
853
 
854
+ # @ sdm_lang
855
+ #: main.php:618
856
  msgid "Front End colors settings"
857
  msgstr "Front-End Farb-Einstellungen"
858
 
859
+ # @ sdm_lang
860
+ #: main.php:623
861
+ msgid "Debug settings"
862
+ msgstr "Debug Einstellungen"
863
 
864
+ #: main.php:628
865
+ msgid ""
866
+ "You can delete all the data related to this plugin from database using the "
867
+ "button below. Useful when you're uninstalling the plugin and don't want any "
868
+ "leftovers remaining."
869
+ msgstr ""
870
+ "Sie können alle Daten, die im Zusammenhang mit diesem Plugin arbeiten, aus "
871
+ "der Datenbank über den Button unterhalb löschen. Das ist dann sinnvoll, wenn "
872
+ "Sie das Plugin deinstallieren wollen und keine Reste übrig bleiben sollen."
873
 
874
+ #: main.php:629
875
+ msgid "Warning"
876
+ msgstr "Warnung"
 
877
 
878
+ #: main.php:629
879
+ msgid ""
880
+ "this can't be undone. All settings, download items, download logs will be "
881
+ "deleted."
882
+ msgstr ""
883
+ "dies kann nicht rückgängig gemacht werden. Alle Einstellungen, Download "
884
+ "Elemente und Download Logs werden gelöscht."
885
 
886
+ #: main.php:630
887
+ msgid "Delete all data and deactivate plugin"
888
+ msgstr "Alle Daten löschen und das Plugin deaktivieren"
 
889
 
890
+ #: main.php:636
891
+ msgid "Google Captcha (reCAPTCHA) options"
892
+ msgstr "Google Captcha (reCAPTCHA) Optionen"
 
893
 
894
+ #: main.php:646
895
+ msgid ""
896
+ "Check this box if you want to use <a href=\"https://www.google.com/recaptcha/"
897
+ "admin\" target=\"_blank\">reCAPTCHA</a>. "
898
+ msgstr ""
899
+ "Aktivieren Sie das Feld, wenn Sie <a href=\"https://www.google.com/recaptcha/"
900
+ "admin\" target=\"_blank\">reCAPTCHA</a> nutzen möchten. "
901
 
902
+ #: main.php:647
903
+ msgid "The captcha option adds a captcha to the download now buttons."
904
+ msgstr "Die Captcha-Option fügt den Download-Schaltflächen ein Captcha hinzu."
 
905
 
906
+ #: main.php:654
907
+ msgid "The site key for the reCAPTCHA API"
908
+ msgstr "Der Website-Schlüssel für die reCAPTCHA API"
 
909
 
910
+ #: main.php:661
911
+ msgid "The secret key for the reCAPTCHA API"
912
+ msgstr "Der Geheim-Schlüssel für die reCAPTCHA API"
 
913
 
914
+ #: main.php:667
915
+ msgid "Hide the download count that is shown in some of the fancy templates."
916
+ msgstr ""
917
+ "Versteckt die Downloadanzahl, die in einigen der Fancy Vorlagen angezeigt "
918
+ "wird."
919
 
920
+ #: main.php:674
921
+ msgid ""
922
+ "When you create a new download item, The PHP Dispatching option should be "
923
+ "enabled by default. PHP Dispatching keeps the URL of the downloadable files "
924
+ "hidden."
925
+ msgstr ""
926
+ "Wenn Sie ein neues Download Element erstellen, wird der Versand via PHP "
927
+ "Option standardmäßig aktiviert. Versand über PHP hält die URL der "
928
+ "herunterladbaren Dateien versteckt."
929
 
930
+ #: main.php:681
931
+ msgid ""
932
+ "Enable this option if you want to allow downloads only for logged-in users. "
933
+ "When enabled, anonymous users clicking on the download button will receive "
934
+ "an error message."
935
+ msgstr ""
936
+ "Aktivieren Sie diese Option, wenn Sie Downloads nur für eingeloggte User "
937
+ "zulassen möchten. Wenn diese Option aktiviert ist, erhalten Gäste durch "
938
+ "Klicken auf die Schaltfläche \"Download\" eine Fehlermeldung."
939
 
940
+ #: main.php:688
941
+ msgid ""
942
+ "(Optional) Specify a login page URL where users can login. This is useful if "
943
+ "you only allow logged in users to be able to download. This link will be "
944
+ "added to the message that is shown to anonymous users."
945
+ msgstr ""
946
+ "(Optional) Geben Sie eine Login URL an, unter der sich Gäste einloggen "
947
+ "können. Dies ist nützlich, wenn Sie nur Usern das Herunterladen erlauben "
948
+ "möchten. Dieser Link wird der Nachricht hinzugefügt, die Gästen angezeigt "
949
+ "wird."
950
 
951
+ # @ sdm_lang
952
+ #: main.php:694
953
+ msgid "Removes the SDM Downloads button from the WP content editor."
954
+ msgstr "Entferne den SDM-Download-Shortcode-Button vom WP-Editor."
955
 
956
+ #: main.php:700
957
+ msgid "Only logs downloads from unique IP addresses."
958
+ msgstr ""
959
+ "Erstellt nur Logs zu einzelnen Downloads die von eindeutigen IP-Adressen "
960
+ "kommen."
961
 
962
+ #: main.php:706
963
+ msgid ""
964
+ "Use this if you do not want to capture the IP address and Country of the "
965
+ "visitors when they download an item."
966
+ msgstr ""
967
+ "Verwenden Sie diese Option, wenn Sie die IP-Adresse und das Land der "
968
+ "Besucher beim Herunterladen eines Elements nicht erfassen möchten."
969
 
970
+ #: main.php:712
971
+ msgid "When enabled, the plugin won't count and log downloads from bots."
972
+ msgstr ""
973
+ "Wenn aktiviert, zählt das PlugIn Downloads von Bots nicht und protokolliert "
974
+ "diese auch nicht."
975
 
976
+ #: main.php:718
977
+ msgid ""
978
+ "Disables all download logs. (This global option overrides the individual "
979
+ "download item option.)"
980
+ msgstr ""
981
+ "Deaktiviert alle Download Logs. (Diese globale Option überschreibt die "
982
+ "einzelne Download Element Optionen.)"
983
 
984
+ # @ sdm_lang
985
+ #: main.php:732
986
+ msgid "Adjusts the color of the \"Download Now\" button."
987
+ msgstr "Farbe des Buttons <b> \"Jetzt herunterladen ...\" </b> anpassen."
988
 
989
+ #: main.php:738
990
+ msgid "Check this option to enable debug logging."
991
+ msgstr ""
992
+ "Aktivieren Sie diese Option, um die Debug Protokollierung zu aktivieren."
993
+
994
+ #: main.php:741
995
+ msgid " to view log file."
996
+ msgstr " um die Log Datei anzuzeigen."
997
 
998
+ #: main.php:743
999
+ msgid " to reset log file."
1000
+ msgstr " um die Log Datei zurückzusetzen."
 
1001
 
1002
+ #: main.php:749
1003
+ msgid ""
1004
+ "You can use this option to make the visitors agree to your terms before they "
1005
+ "can download the item."
1006
+ msgstr ""
1007
+ "Sie können diese Option verwenden, damit die Besucher Ihren Bedingungen "
1008
+ "zustimmen, bevor sie den Artikel herunterladen können."
1009
+
1010
+ #: main.php:756
1011
+ msgid "Enter the URL of your terms and conditions page."
1012
+ msgstr "Geben Sie die URL Ihrer Nutzungsbedingungen ein."
1013
+
1014
+ #: main.php:793
1015
+ msgid "Permission denied!"
1016
+ msgstr "Zugriff verweigert!"
1017
+
1018
+ # @ sdm_lang
1019
+ #: main.php:869
1020
  msgid "Image"
1021
  msgstr "Image"
1022
 
1023
+ # @ sdm_lang
1024
+ #: main.php:871
1025
  msgid "ID"
1026
  msgstr "ID"
1027
 
1028
+ # @ sdm_lang
1029
+ #: main.php:873 sdm-post-type-and-taxonomy.php:56
1030
+ msgid "Categories"
1031
+ msgstr "Kategorien"
1032
+
1033
+ # @ sdm_lang
1034
+ #: main.php:874 sdm-post-type-and-taxonomy.php:80
1035
+ msgid "Tags"
1036
+ msgstr "Tags"
1037
+
1038
+ # @ sdm_lang
1039
+ #: main.php:876
1040
  msgid "Date Posted"
1041
  msgstr "Datum"
1042
 
1043
+ # @ sdm_lang
1044
+ #: sdm-post-type-and-taxonomy.php:9 sdm-post-type-and-taxonomy.php:10
1045
+ msgid "Add New"
1046
+ msgstr "Neuen Download hinzufügen"
 
1047
 
1048
+ # @ sdm_lang
1049
+ #: sdm-post-type-and-taxonomy.php:11
1050
+ msgid "Edit Download"
1051
+ msgstr "Download bearbeiten"
 
1052
 
1053
+ # @ sdm_lang
1054
+ #: sdm-post-type-and-taxonomy.php:12
1055
+ msgid "New Download"
1056
+ msgstr "Neuer Download"
1057
 
1058
+ # @ sdm_lang
1059
+ #: sdm-post-type-and-taxonomy.php:14
1060
+ msgid "View Download"
1061
+ msgstr "Download anzeigen"
1062
 
1063
+ # @ sdm_lang
1064
+ #: sdm-post-type-and-taxonomy.php:15
1065
+ msgid "Search Downloads"
1066
+ msgstr "Download suchen"
1067
 
1068
+ # @ sdm_lang
1069
+ #: sdm-post-type-and-taxonomy.php:16
1070
+ msgid "No Downloads found"
1071
+ msgstr "Keine Downloads gefunden"
1072
 
1073
+ # @ sdm_lang
1074
+ #: sdm-post-type-and-taxonomy.php:17
1075
+ msgid "No Downloads found in Trash"
1076
+ msgstr "Keine Downloads im Papierkorb gefunden"
1077
 
1078
+ # @ sdm_lang
1079
+ #: sdm-post-type-and-taxonomy.php:18
1080
+ msgid "Parent Download"
1081
+ msgstr "Übergeordneter Download"
1082
 
1083
+ # @ sdm_lang
1084
+ #: sdm-post-type-and-taxonomy.php:46
1085
+ msgid "Download Categories"
1086
+ msgstr "Download Kategorien"
1087
 
1088
+ # @ sdm_lang
1089
+ #: sdm-post-type-and-taxonomy.php:47
1090
+ msgid "Download Category"
1091
+ msgstr "Download Kategorie"
1092
 
1093
+ # @ sdm_lang
1094
+ #: sdm-post-type-and-taxonomy.php:48
1095
+ msgid "Search Categories"
1096
+ msgstr "Kategorien durchsuchen"
1097
 
1098
+ # @ sdm_lang
1099
+ #: sdm-post-type-and-taxonomy.php:49
1100
+ msgid "All Categories"
1101
+ msgstr "Alle Kategorien"
1102
 
1103
+ # @ sdm_lang
1104
+ #: sdm-post-type-and-taxonomy.php:50
1105
+ msgid "Categories Genre"
1106
+ msgstr "Kategorie Gattung"
1107
 
1108
+ # @ sdm_lang
1109
+ #: sdm-post-type-and-taxonomy.php:51
1110
+ msgid "Categories Genre:"
1111
+ msgstr "Kategorie Gattung:"
1112
 
1113
+ # @ sdm_lang
1114
+ #: sdm-post-type-and-taxonomy.php:52
1115
+ msgid "Edit Category"
1116
+ msgstr "Kategorie bearbeiten"
1117
 
1118
+ # @ sdm_lang
1119
+ #: sdm-post-type-and-taxonomy.php:53
1120
+ msgid "Update Category"
1121
+ msgstr "Kategorie aktualisieren"
1122
 
1123
+ # @ sdm_lang
1124
+ #: sdm-post-type-and-taxonomy.php:54
1125
+ msgid "Add New Category"
1126
+ msgstr "Neue Kategorie hinzufügen"
1127
 
1128
+ # @ sdm_lang
1129
+ #: sdm-post-type-and-taxonomy.php:55
1130
+ msgid "New Category"
1131
+ msgstr "Neue Kategorie"
1132
 
1133
+ # @ sdm_lang
1134
+ #: sdm-post-type-and-taxonomy.php:70
1135
+ msgid "Download Tags"
1136
+ msgstr "Download Stichworte"
1137
 
1138
+ # @ sdm_lang
1139
+ #: sdm-post-type-and-taxonomy.php:71
1140
+ msgid "Download Tag"
1141
+ msgstr "Download Stichwort"
1142
 
1143
+ # @ sdm_lang
1144
+ #: sdm-post-type-and-taxonomy.php:72
1145
+ msgid "Search Tags"
1146
+ msgstr "Tags suchen"
 
 
 
 
1147
 
1148
+ # @ sdm_lang
1149
+ #: sdm-post-type-and-taxonomy.php:73
1150
+ msgid "All Tags"
1151
+ msgstr "Alle Tags"
1152
 
1153
+ # @ sdm_lang
1154
+ #: sdm-post-type-and-taxonomy.php:74
1155
+ msgid "Tags Genre"
1156
+ msgstr "Tags Gattung"
 
1157
 
1158
+ # @ sdm_lang
1159
+ #: sdm-post-type-and-taxonomy.php:75
1160
+ msgid "Tags Genre:"
1161
+ msgstr "Tags Gattung:"
1162
 
1163
+ # @ sdm_lang
1164
+ #: sdm-post-type-and-taxonomy.php:76
1165
+ msgid "Edit Tag"
1166
+ msgstr "Tag bearbeiten"
1167
 
1168
+ # @ sdm_lang
1169
+ #: sdm-post-type-and-taxonomy.php:77
1170
+ msgid "Update Tag"
1171
+ msgstr "Tag aktualisieren"
1172
 
1173
+ # @ sdm_lang
1174
+ #: sdm-post-type-and-taxonomy.php:78
1175
+ msgid "Add New Tag"
1176
+ msgstr "Neuen Tag hinzufügen"
1177
+
1178
+ # @ sdm_lang
1179
+ #: sdm-post-type-and-taxonomy.php:79
1180
+ msgid "New Tag"
1181
+ msgstr "Neuer Tag"
1182
 
1183
+ # @ sdm_lang
1184
+ #: sdm-shortcodes.php:81 sdm-shortcodes.php:142 sdm-shortcodes.php:156
1185
+ msgid "Error! Please enter an ID value with this shortcode."
1186
+ msgstr "Fehler! Bitte geben Sie einen ID Wert mit diesem Shortcode ein."
1187
+
1188
+ # @ sdm_lang
1189
+ #: sdm-shortcodes.php:189
1190
+ msgid ""
1191
+ "Error! You must enter a category slug OR a category id with this shortcode. "
1192
+ "Refer to the documentation for usage instructions."
1193
+ msgstr ""
1194
+ "Fehler! Sie müssen bei einem Shortcode entweder einen Kategorie-Slug "
1195
+ "(bereinigter Namenskürzel der URL) <b>ODER</b> eine Kategorie-ID eingeben. "
1196
+ "Bitte beachten Sie die Dokumentation für detaillierte Informationen."
1197
+
1198
+ # @ sdm_lang
1199
+ #: sdm-shortcodes.php:194
1200
  msgid "Error! Please enter a category slug OR id; not both."
1201
+ msgstr ""
1202
+ "Fehler! Bitte geben Sie entweder einen Kategorie-Slug ODER die ID ein; nicht "
1203
+ "beides."
1204
+
1205
+ # @ sdm_lang
1206
+ #: sdm-shortcodes.php:224
1207
+ msgid ""
1208
+ "Error! You must enter a numeric number for the \"pagination\" parameter of "
1209
+ "the shortcode. Refer to the usage documentation."
1210
+ msgstr ""
1211
+ "Fehler! Sie müssen eine numerische Nummer für den Parameter \"pagination\" "
1212
+ "des Shortcodes eingeben. Konsultieren Sie die Gebrauchsdokumentation."
1213
 
1214
+ # @ sdm_lang
1215
+ #: sdm-shortcodes.php:249
1216
  msgid "There are no download items matching this category criteria."
1217
+ msgstr ""
1218
+ "Es existieren keine Downloads, die den Kategorie-Kriterien entsprechen."
1219
 
1220
+ # @ sdm_lang
1221
+ #. Plugin Name of the plugin/theme
1222
+ msgid "Simple Download Monitor"
1223
+ msgstr "Simple Download Monitor"
1224
 
1225
+ #. Plugin URI of the plugin/theme
1226
+ msgid ""
1227
+ "https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin"
1228
+ msgstr ""
1229
+ "https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin"
1230
+
1231
+ #. Description of the plugin/theme
1232
+ msgid ""
1233
+ "Easily manage downloadable files and monitor downloads of your digital files "
1234
+ "from your WordPress site."
1235
+ msgstr ""
1236
+ "Verwalten Sie einfach herunterladbare Dateien und überwachen Sie Downloads "
1237
+ "Ihrer digitalen Dateien von Ihrer WordPress-Website."
1238
+
1239
+ #. Author of the plugin/theme
1240
+ msgid "Tips and Tricks HQ, Ruhul Amin, Josh Lobe"
1241
+ msgstr "Tips and Tricks HQ, Ruhul Amin, Josh Lobe"
1242
+
1243
+ #. Author URI of the plugin/theme
1244
+ msgid "https://www.tipsandtricks-hq.com/development-center"
1245
+ msgstr "https://www.tipsandtricks-hq.com/development-center"
1246
+
1247
+ # @ default
1248
+ #~ msgctxt "sdm_lang"
1249
+ #~ msgid "Categories"
1250
+ #~ msgstr "Kategorien"
1251
+
1252
+ # @ default
1253
+ #~ msgctxt "sdm_lang"
1254
+ #~ msgid "Category"
1255
+ #~ msgstr "Kategorie"
1256
+
1257
+ # @ default
1258
+ #~ msgctxt "sdm_lang"
1259
+ #~ msgid "Tags"
1260
+ #~ msgstr "Tags"
1261
+
1262
+ # @ default
1263
+ #~ msgctxt "sdm_lang"
1264
+ #~ msgid "Tag"
1265
+ #~ msgstr "Tag"
1266
+
1267
+ # @ sdm_lang
1268
+ #~ msgid "Control various plugin features."
1269
+ #~ msgstr "Verschiedene Plugin-Eigenschaften kontrollieren"
1270
+
1271
+ # @ sdm_lang
1272
+ #~ msgid "Color Options"
1273
+ #~ msgstr "Farben"
1274
+
1275
+ # @ sdm_lang
1276
+ #~ msgid "Adjust color options"
1277
+ #~ msgstr "Farbe anpassen"
1278
+
1279
+ # @ sdm_lang
1280
+ #~ msgid "Upload File"
1281
+ #~ msgstr "Datei hochladen"
1282
+
1283
+ # @ sdm_lang
1284
+ #~ msgid "Recommended image size is 75px by 75px."
1285
+ #~ msgstr "Empfohlene Image-Größe: 75px x 75px"
1286
+
1287
+ # @ sdm_lang
1288
+ #~ msgid "Export All as Excel"
1289
+ #~ msgstr "Als EXCEL-Datei exportieren"
1290
+
1291
+ # @ sdm_lang
1292
+ #~ msgid "Submit"
1293
+ #~ msgstr "Absenden"
1294
+
1295
+ # @ sdm_lang
1296
+ #~ msgid "Incorrect Password"
1297
+ #~ msgstr "Falsches Passwort !!"
1298
+
1299
+ # @ sdm_lang
1300
+ #~ msgid "Download Export File"
1301
+ #~ msgstr "Download Export-Datei"
1302
+
1303
+ # @ sdm_lang
1304
+ #~ msgid "current"
1305
+ #~ msgstr "aktiv"
languages/simple-download-monitor-de_DE_formal.mo ADDED
Binary file
languages/simple-download-monitor-de_DE_formal.po ADDED
@@ -0,0 +1,1305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Simple Download Monitor v2.6\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-10 07:18+0200\n"
6
+ "PO-Revision-Date: 2018-05-10 07:20+0200\n"
7
+ "Last-Translator: freizeittreff-bielefeld <freizeittreff.bielefeld@gmail."
8
+ "com>\n"
9
+ "Language-Team: \n"
10
+ "Language: de_DE\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 2.0.7\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ # @ sdm_lang
24
+ #: includes/sdm-admin-menu-handler.php:9
25
+ msgid "Logs"
26
+ msgstr "Logs"
27
+
28
+ # @ sdm_lang
29
+ #: includes/sdm-admin-menu-handler.php:10
30
+ #: includes/sdm-admin-menu-handler.php:325
31
+ msgid "Stats"
32
+ msgstr "Statistiken"
33
+
34
+ # @ sdm_lang
35
+ #: includes/sdm-admin-menu-handler.php:11 main.php:182
36
+ msgid "Settings"
37
+ msgstr "Einstellungen"
38
+
39
+ #: includes/sdm-admin-menu-handler.php:12
40
+ msgid "Add-ons"
41
+ msgstr "Add-ons"
42
+
43
+ # @ sdm_lang
44
+ #: includes/sdm-admin-menu-handler.php:40
45
+ msgid "Simple Download Monitor Settings Page"
46
+ msgstr "Simple Donwload Monitor Einstellungs-Seite"
47
+
48
+ #: includes/sdm-admin-menu-handler.php:43
49
+ msgid ""
50
+ "Read the full plugin usage documentation <a href=\"https://simple-download-"
51
+ "monitor.com/download-monitor-tutorials/\" target=\"_blank\">here</a>."
52
+ msgstr ""
53
+ "Lesen Sie die vollständige PlugIn Nutzung Dokumentation <a href=\"https://"
54
+ "simple-download-monitor.com/download-monitor-tutorials/\" target=\"_blank"
55
+ "\">hier</a>."
56
+
57
+ #: includes/sdm-admin-menu-handler.php:44
58
+ msgid ""
59
+ "You can also <a href=\"https://www.tipsandtricks-hq.com/development-center\" "
60
+ "target=\"_blank\">"
61
+ msgstr ""
62
+ "Sie können auch <a href=\"https://www.tipsandtricks-hq.com/development-center"
63
+ "\" target=\"_blank\">"
64
+
65
+ # @ sdm_lang
66
+ #: includes/sdm-admin-menu-handler.php:44
67
+ msgid "follow us"
68
+ msgstr "Folgen Sie uns"
69
+
70
+ # @ sdm_lang
71
+ #: includes/sdm-admin-menu-handler.php:44
72
+ msgid ""
73
+ "on Twitter, Google+ or via Email to stay upto date about the new features of "
74
+ "this plugin."
75
+ msgstr ""
76
+ "auf Twitter, Google+ oder via Email um über neue Features des Plugins auf "
77
+ "dem Laufenden zu bleiben."
78
+
79
+ # @ sdm_lang
80
+ #: includes/sdm-admin-menu-handler.php:52
81
+ msgid "General Settings"
82
+ msgstr "Allgemeine Einstellungen"
83
+
84
+ # @ sdm_lang
85
+ #: includes/sdm-admin-menu-handler.php:53
86
+ msgid "Advanced Settings"
87
+ msgstr "Erweitere Einstellungen"
88
+
89
+ # @ sdm_lang
90
+ #: includes/sdm-admin-menu-handler.php:90
91
+ msgid ""
92
+ "If you need a feature rich and supported plugin for selling your digital "
93
+ "items then checkout our"
94
+ msgstr ""
95
+ "Wenn Sie ein funktionsreiches und unterstütztes Plugin für den Verkauf Ihrer "
96
+ "digitalen Artikel benötigen, checken Sie unser"
97
+
98
+ # @ sdm_lang
99
+ #: includes/sdm-admin-menu-handler.php:90
100
+ msgid "WP eStore Plugin"
101
+ msgstr "WP eStore Plugin"
102
+
103
+ #: includes/sdm-admin-menu-handler.php:155
104
+ msgid "Are you sure want to delete all plugin's data and deactivate plugin?"
105
+ msgstr ""
106
+ "Möchten Sie wirklich alle Daten des Plugins löschen und das Plugin "
107
+ "deaktivieren?"
108
+
109
+ #: includes/sdm-admin-menu-handler.php:160
110
+ msgid ""
111
+ "Data has been deleted and plugin deactivated. Click OK to go to Plugins page."
112
+ msgstr ""
113
+ "Alle Daten wurden gelöscht und das PlugIn wurde deaktiviert. Klicken Sie auf "
114
+ "OK um zurück zur PlugIn Seite zu kommen."
115
+
116
+ #: includes/sdm-admin-menu-handler.php:164
117
+ msgid "Error occured."
118
+ msgstr "Fehler aufgetreten."
119
+
120
+ #: includes/sdm-admin-menu-handler.php:217
121
+ msgid "Log entries exported! Click on the following link to download the file."
122
+ msgstr ""
123
+ "Log Einträge exportiert! Klicken Sie auf den folgenden Link, um die Datei "
124
+ "herunterzuladen."
125
+
126
+ # @ sdm_lang
127
+ #: includes/sdm-admin-menu-handler.php:218
128
+ msgid "Download Logs CSV File"
129
+ msgstr "Download Logs CSV Datei"
130
+
131
+ # @ sdm_lang
132
+ #: includes/sdm-admin-menu-handler.php:228
133
+ msgid "Download log entries deleted!"
134
+ msgstr "Download Log-Einträge gelöscht!"
135
+
136
+ # @ sdm_lang
137
+ #: includes/sdm-admin-menu-handler.php:240
138
+ msgid "Download Logs"
139
+ msgstr "Download Logs"
140
+
141
+ # @ sdm_lang
142
+ #: includes/sdm-admin-menu-handler.php:243
143
+ msgid "This page lists all tracked downloads."
144
+ msgstr "Diese Seite listet alle erfassten Downloads."
145
+
146
+ # @ sdm_lang
147
+ #: includes/sdm-admin-menu-handler.php:250
148
+ msgid "Export Download Log Entries"
149
+ msgstr "Download Log Einträge exportieren"
150
+
151
+ #: includes/sdm-admin-menu-handler.php:254
152
+ msgid "Export Log Entries to CSV File"
153
+ msgstr "Log Einträge in CSV-Datei exportieren"
154
+
155
+ # @ sdm_lang
156
+ #: includes/sdm-admin-menu-handler.php:261
157
+ msgid "Reset Download Log Entries"
158
+ msgstr "Download Log Einträge zurücksetzen"
159
+
160
+ #: includes/sdm-admin-menu-handler.php:265
161
+ msgid "Reset Log Entries"
162
+ msgstr "Log Einträge zurücksetzen"
163
+
164
+ #: includes/sdm-admin-menu-handler.php:329
165
+ msgid "Choose Date Range (yyyy-mm-dd)"
166
+ msgstr "Wählen Sie den Datumsbereich (JJJJ-MM-TT)"
167
+
168
+ #: includes/sdm-admin-menu-handler.php:333
169
+ msgid "Start Date: "
170
+ msgstr "Anfangsdatum: "
171
+
172
+ #: includes/sdm-admin-menu-handler.php:334
173
+ msgid "End Date: "
174
+ msgstr "Enddatum: "
175
+
176
+ #: includes/sdm-admin-menu-handler.php:336
177
+ msgid "This Month"
178
+ msgstr "Aktueller Monat"
179
+
180
+ #: includes/sdm-admin-menu-handler.php:337
181
+ msgid "Last Month"
182
+ msgstr "Letzter Monat"
183
+
184
+ #: includes/sdm-admin-menu-handler.php:338
185
+ msgid "This Year"
186
+ msgstr "Dieses Jahr"
187
+
188
+ #: includes/sdm-admin-menu-handler.php:339
189
+ msgid "Last Year"
190
+ msgstr "Letztes Jahr"
191
+
192
+ # @ sdm_lang
193
+ #: includes/sdm-admin-menu-handler.php:340
194
+ msgid "All Time"
195
+ msgstr "Jederzeit"
196
+
197
+ #: includes/sdm-admin-menu-handler.php:343
198
+ msgid "View Stats"
199
+ msgstr "Statistiken anzeigen"
200
+
201
+ # @ sdm_lang
202
+ #: includes/sdm-admin-menu-handler.php:349
203
+ msgid "Downloads by date"
204
+ msgstr "Downloads nach Datum"
205
+
206
+ # @ sdm_lang
207
+ #: includes/sdm-admin-menu-handler.php:350
208
+ msgid "Downloads by country"
209
+ msgstr "Downloads nach Ländern"
210
+
211
+ # @ sdm_lang
212
+ #: includes/sdm-admin-menu-handler.php:384 includes/sdm-logs-list-table.php:73
213
+ msgid "Date"
214
+ msgstr "Datum"
215
+
216
+ # @ sdm_lang
217
+ #: includes/sdm-admin-menu-handler.php:385
218
+ msgid "Number of downloads"
219
+ msgstr "Anzahl der Downloads"
220
+
221
+ # @ sdm_lang
222
+ #: includes/sdm-admin-menu-handler.php:389
223
+ msgid "Downloads by Date"
224
+ msgstr "Downloads nach Datum"
225
+
226
+ #: includes/sdm-download-request-handler.php:13
227
+ msgid "Error! Incorrect download item id."
228
+ msgstr "Fehler! Falsche Download Element ID."
229
+
230
+ # @ sdm_lang
231
+ #: includes/sdm-download-request-handler.php:16
232
+ msgid "Error! This download item ("
233
+ msgstr "Fehler! Dieses Download Element ("
234
+
235
+ #: includes/sdm-download-request-handler.php:28
236
+ msgid "Error! This download requires a password."
237
+ msgstr "Fehler! Für diesen Download ist ein Passwort erforderlich."
238
+
239
+ #: includes/sdm-download-request-handler.php:30 main.php:740 main.php:742
240
+ msgid "Click here"
241
+ msgstr "Hier klicken"
242
+
243
+ #: includes/sdm-download-request-handler.php:31
244
+ msgid " and enter a valid password for this item"
245
+ msgstr " und geben Sie ein gültiges Passwort für dieses Element ein"
246
+
247
+ #: includes/sdm-download-request-handler.php:37
248
+ msgid "Error! Incorrect password. This download requires a valid password."
249
+ msgstr ""
250
+ "Fehler! Falsches Passwort. Dieser Download erfordert ein gültiges Passwort."
251
+
252
+ #: includes/sdm-download-request-handler.php:65
253
+ msgid "__Click here__ to go to login page."
254
+ msgstr "__Klicken Sie hier__, um zur Login Seite zu gelangen."
255
+
256
+ #: includes/sdm-download-request-handler.php:68
257
+ msgid "You need to be logged in to download this file."
258
+ msgstr "Sie müssen angemeldet sein, um diese Datei herunterladen zu können."
259
+
260
+ #: includes/sdm-download-request-handler.php:72
261
+ msgid "Not Logged In"
262
+ msgstr "Nicht angemeldet"
263
+
264
+ # @ sdm_lang
265
+ #: includes/sdm-download-request-handler.php:130
266
+ msgid "Error! Failed to log the download request in the database table"
267
+ msgstr ""
268
+ "Fehler! Fehler beim Protokollieren der Downloadanforderung in der "
269
+ "Datenbanktabelle"
270
+
271
+ # @ sdm_lang
272
+ #: includes/sdm-download-request-handler.php:162
273
+ msgid ""
274
+ "Error! The URL value is empty. Please specify a correct URL value to "
275
+ "redirect to!"
276
+ msgstr "Fehler! Der URL-Wert ist leer. Bitte geben Sie eine korrekte URL ein!"
277
+
278
+ #: includes/sdm-download-request-handler.php:225
279
+ #: includes/sdm-download-request-handler.php:229
280
+ msgid "ERROR:"
281
+ msgstr "FEHLER:"
282
+
283
+ #: includes/sdm-download-request-handler.php:225
284
+ #: includes/sdm-download-request-handler.php:229
285
+ msgid "Google reCAPTCHA verification failed."
286
+ msgstr "Google reCAPTCHA Überprüfung fehlgeschlagen."
287
+
288
+ #: includes/sdm-download-request-handler.php:225
289
+ #: includes/sdm-download-request-handler.php:229
290
+ msgid "Back"
291
+ msgstr "Zurück"
292
+
293
+ #: includes/sdm-download-request-handler.php:229
294
+ msgid "Do you have JavaScript enabled?"
295
+ msgstr "Haben Sie JavaScript aktiviert?"
296
+
297
+ # @ sdm_lang
298
+ #: includes/sdm-latest-downloads.php:43
299
+ msgid "There are no download items matching this shortcode criteria."
300
+ msgstr ""
301
+ "Es gibt keine Download Elemente, die diesem Shortcode Kriterium entsprechen."
302
+
303
+ # @ sdm_lang
304
+ #: includes/sdm-logs-list-table.php:19
305
+ #: includes/templates/fancy1/sdm-fancy-1.php:111
306
+ #: sdm-post-type-content-handler.php:77 sdm-shortcodes.php:162
307
+ msgid "Download"
308
+ msgstr "Download"
309
+
310
+ # @ sdm_lang
311
+ #: includes/sdm-logs-list-table.php:20
312
+ #: includes/templates/fancy1/sdm-fancy-1.php:111 main.php:875
313
+ #: sdm-post-type-and-taxonomy.php:7 sdm-post-type-and-taxonomy.php:8
314
+ #: sdm-post-type-and-taxonomy.php:13 sdm-post-type-and-taxonomy.php:19
315
+ #: sdm-post-type-content-handler.php:77 sdm-shortcodes.php:162
316
+ msgid "Downloads"
317
+ msgstr "Downloads"
318
+
319
+ # @ sdm_lang
320
+ #: includes/sdm-logs-list-table.php:45
321
+ msgid "Edit"
322
+ msgstr "Bearbeiten"
323
+
324
+ # @ sdm_lang
325
+ #: includes/sdm-logs-list-table.php:46
326
+ msgid "Delete"
327
+ msgstr "Löschen"
328
+
329
+ # @ sdm_lang
330
+ #: includes/sdm-logs-list-table.php:70 main.php:870
331
+ msgid "Title"
332
+ msgstr "Titel"
333
+
334
+ # @ sdm_lang
335
+ #: includes/sdm-logs-list-table.php:71 main.php:872
336
+ msgid "File"
337
+ msgstr "Datei"
338
+
339
+ # @ sdm_lang
340
+ #: includes/sdm-logs-list-table.php:72
341
+ msgid "Visitor IP"
342
+ msgstr "Besucher IP"
343
+
344
+ #: includes/sdm-logs-list-table.php:74
345
+ msgid "Country"
346
+ msgstr "Land"
347
+
348
+ #: includes/sdm-logs-list-table.php:75
349
+ msgid "Username"
350
+ msgstr "Benutzername"
351
+
352
+ # @ sdm_lang
353
+ #: includes/sdm-logs-list-table.php:96
354
+ msgid "Delete Permanently"
355
+ msgstr "Endgültig löschen"
356
+
357
+ # @ sdm_lang
358
+ #: includes/sdm-logs-list-table.php:111 includes/sdm-logs-list-table.php:142
359
+ msgid "Nope! Security check failed!"
360
+ msgstr "Nö! Sicherheitsprüfung nicht bestanden!"
361
+
362
+ # @ sdm_lang
363
+ #: includes/sdm-logs-list-table.php:115
364
+ msgid "No entries were selected."
365
+ msgstr "Keine Einträge ausgewählt."
366
+
367
+ # @ sdm_lang
368
+ #: includes/sdm-logs-list-table.php:115 includes/sdm-logs-list-table.php:129
369
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:151
370
+ #: includes/sdm-logs-list-table.php:153
371
+ msgid "Click to Dismiss"
372
+ msgstr "Ausblenden"
373
+
374
+ #: includes/sdm-logs-list-table.php:122
375
+ msgid "Error! The row id value of a log entry must be numeric."
376
+ msgstr "Error! Der Zeilen ID Wert eines Protokolleintrags muss numerisch sein."
377
+
378
+ # @ sdm_lang
379
+ #: includes/sdm-logs-list-table.php:129
380
+ msgid "Entries Deleted!"
381
+ msgstr "Einträge gelöscht!"
382
+
383
+ # @ sdm_lang
384
+ #: includes/sdm-logs-list-table.php:131 includes/sdm-logs-list-table.php:153
385
+ msgid "Error"
386
+ msgstr "Fehler"
387
+
388
+ # @ sdm_lang
389
+ #: includes/sdm-logs-list-table.php:151
390
+ msgid "Entry Deleted!"
391
+ msgstr "Eintrag gelöscht!"
392
+
393
+ #: includes/sdm-search-shortcode-handler.php:65
394
+ msgid "Showing search results for "
395
+ msgstr "Suchergebnisse anzeigen für "
396
+
397
+ # @ sdm_lang
398
+ #: includes/sdm-search-shortcode-handler.php:66
399
+ msgid "Number of items found: "
400
+ msgstr "Anzahl gefundener Elemente: "
401
+
402
+ #: includes/sdm-search-shortcode-handler.php:67
403
+ msgid "Keywords searched: "
404
+ msgstr "Stichwörter gesucht: "
405
+
406
+ #: includes/sdm-search-shortcode-handler.php:70
407
+ msgid "Nothing found for "
408
+ msgstr "Nichts gefunden für "
409
+
410
+ # @ sdm_lang
411
+ #: includes/sdm-utility-functions.php:9
412
+ msgid "Green"
413
+ msgstr "Grün"
414
+
415
+ # @ sdm_lang
416
+ #: includes/sdm-utility-functions.php:10
417
+ msgid "Blue"
418
+ msgstr "Blau"
419
+
420
+ # @ sdm_lang
421
+ #: includes/sdm-utility-functions.php:11
422
+ msgid "Purple"
423
+ msgstr "Lila"
424
+
425
+ # @ sdm_lang
426
+ #: includes/sdm-utility-functions.php:12
427
+ msgid "Teal"
428
+ msgstr "Blaugrün"
429
+
430
+ # @ sdm_lang
431
+ #: includes/sdm-utility-functions.php:13
432
+ msgid "Dark Blue"
433
+ msgstr "Dunkelblau"
434
+
435
+ # @ sdm_lang
436
+ #: includes/sdm-utility-functions.php:14
437
+ msgid "Black"
438
+ msgstr "Schwarz"
439
+
440
+ # @ sdm_lang
441
+ #: includes/sdm-utility-functions.php:15
442
+ msgid "Grey"
443
+ msgstr "Grau"
444
+
445
+ # @ sdm_lang
446
+ #: includes/sdm-utility-functions.php:16
447
+ msgid "Pink"
448
+ msgstr "Rosa"
449
+
450
+ # @ sdm_lang
451
+ #: includes/sdm-utility-functions.php:17
452
+ msgid "Orange"
453
+ msgstr "Orange"
454
+
455
+ # @ sdm_lang
456
+ #: includes/sdm-utility-functions.php:18
457
+ msgid "White"
458
+ msgstr "Weiß"
459
+
460
+ # @ sdm_lang
461
+ #: includes/sdm-utility-functions.php:62 includes/sdm-utility-functions.php:228
462
+ #: includes/sdm-utility-functions.php:278
463
+ #: includes/templates/fancy0/sdm-fancy-0.php:75
464
+ #: includes/templates/fancy1/sdm-fancy-1.php:43
465
+ #: includes/templates/fancy2/sdm-fancy-2.php:60
466
+ #: sdm-post-type-content-handler.php:44 sdm-shortcodes.php:68
467
+ #: sdm-shortcodes.php:176
468
+ msgid "Download Now!"
469
+ msgstr "Jetzt herunterladen!"
470
+
471
+ # @ sdm_lang
472
+ #: includes/sdm-utility-functions.php:69
473
+ msgid "Enter Password to Download:"
474
+ msgstr "Passwort zum Herunterladen eingeben:"
475
+
476
+ #: includes/sdm-utility-functions.php:264
477
+ msgid "I agree to the "
478
+ msgstr "Ich akzeptiere die "
479
+
480
+ #: includes/sdm-utility-functions.php:264
481
+ msgid "terms and conditions"
482
+ msgstr "Nutzungsbedingungen & Datenschutzerklärung"
483
+
484
+ # @ sdm_lang
485
+ #: includes/templates/fancy0/sdm-fancy-0.php:64
486
+ #: sdm-post-type-content-handler.php:39
487
+ msgid "green"
488
+ msgstr "grün"
489
+
490
+ #: includes/templates/fancy1/sdm-fancy-1.php:127
491
+ #: includes/templates/fancy2/sdm-fancy-2.php:139
492
+ #: sdm-post-type-content-handler.php:101
493
+ msgid "Size: "
494
+ msgstr "Größe: "
495
+
496
+ #: includes/templates/fancy1/sdm-fancy-1.php:134
497
+ #: includes/templates/fancy2/sdm-fancy-2.php:146 main.php:445
498
+ #: sdm-post-type-content-handler.php:108
499
+ msgid "Version: "
500
+ msgstr "Version: "
501
+
502
+ # @ sdm_lang
503
+ #: main.php:238 main.php:332
504
+ msgid "Select File"
505
+ msgstr "Datei auswählen"
506
+
507
+ # @ sdm_lang
508
+ #: main.php:239
509
+ msgid "Select Thumbnail"
510
+ msgstr "Thumbnail auswählen"
511
+
512
+ #: main.php:240
513
+ msgid "Insert"
514
+ msgstr "Einfügen"
515
+
516
+ # @ sdm_lang
517
+ #: main.php:241
518
+ msgid "Image Successfully Removed"
519
+ msgstr "Image erfolgreich entfernt"
520
+
521
+ # @ sdm_lang
522
+ #: main.php:242
523
+ msgid "Error with AJAX"
524
+ msgstr "AJAX Fehler"
525
+
526
+ # @ sdm_lang
527
+ #: main.php:253
528
+ msgid "Please select a Download Item:"
529
+ msgstr "Bitte Download auswählen:"
530
+
531
+ # @ sdm_lang
532
+ #: main.php:254
533
+ msgid "Download Title"
534
+ msgstr "Titel"
535
+
536
+ # @ sdm_lang
537
+ #: main.php:255
538
+ msgid "Include Fancy Box"
539
+ msgstr "Beinhaltet Fancy Box"
540
+
541
+ #: main.php:256
542
+ msgid "Open New Window"
543
+ msgstr "In neuem Fenster öffnen"
544
+
545
+ # @ sdm_lang
546
+ #: main.php:257
547
+ msgid "Button Color"
548
+ msgstr "Button Farbe"
549
+
550
+ # @ sdm_lang
551
+ #: main.php:258
552
+ msgid "Insert SDM Shortcode"
553
+ msgstr "SDM Shortcode einfügen"
554
+
555
+ # @ sdm_lang
556
+ #: main.php:300
557
+ msgid "Description"
558
+ msgstr "Beschreibung"
559
+
560
+ #: main.php:301
561
+ msgid "Downloadable File (Visitors will download this item)"
562
+ msgstr "Downloadbare Datei (Gäste können dieses Element herunterladen)"
563
+
564
+ #: main.php:302
565
+ msgid "PHP Dispatch or Redirect"
566
+ msgstr "PHP Versand oder Umleitung"
567
+
568
+ # @ sdm_lang
569
+ #: main.php:303
570
+ msgid "File Thumbnail (Optional)"
571
+ msgstr "Datei Thumbnail (optional)"
572
+
573
+ # @ sdm_lang
574
+ #: main.php:304
575
+ msgid "Statistics"
576
+ msgstr "Statistiken"
577
+
578
+ # @ sdm_lang
579
+ #: main.php:305
580
+ msgid "Other Details (Optional)"
581
+ msgstr "Andere Details (optional)"
582
+
583
+ # @ sdm_lang
584
+ #: main.php:306
585
+ msgid "Shortcodes"
586
+ msgstr "Shortcodes"
587
+
588
+ # @ sdm_lang
589
+ #: main.php:310
590
+ msgid "Add a description for this download item."
591
+ msgstr "Füge eine Beschreibung für diesen Download hinzu ..."
592
+
593
+ #: main.php:324
594
+ msgid ""
595
+ "Manually enter a valid URL of the file in the text box below, or click "
596
+ "\"Select File\" button to upload (or choose) the downloadable file."
597
+ msgstr ""
598
+ "Geben Sie manuell eine gültige URL der Datei in das Textfeld unten ein oder "
599
+ "klicken Sie auf die Schaltfläche \"Datei auswählen\", um die herunterladbare "
600
+ "Datei hochzuladen (oder auszuwählen)."
601
+
602
+ #: main.php:335
603
+ msgid "Steps to upload a file or choose one from your media library:"
604
+ msgstr ""
605
+ "Schritte zum Hochladen oder Auswählen einer Datei aus Ihrer Medienbibliothek:"
606
+
607
+ #: main.php:337
608
+ msgid "Hit the \"Select File\" button."
609
+ msgstr "Drücken Sie die Schaltfläche \"Datei auswählen\"."
610
+
611
+ #: main.php:338
612
+ msgid "Upload a new file or choose an existing one from your media library."
613
+ msgstr ""
614
+ "Neue Datei hochladen oder eine bereits vorhandene aus der Medien-Bibliothek "
615
+ "auswählen."
616
+
617
+ #: main.php:339
618
+ msgid ""
619
+ "Click the \"Insert\" button, this will populate the uploaded file's URL in "
620
+ "the above text field."
621
+ msgstr ""
622
+ "Klicken Sie auf die Schaltfläche \"Einfügen\". Dadurch wird die URL der "
623
+ "hochgeladenen Datei im obigen Textfeld ausgefüllt."
624
+
625
+ #: main.php:360
626
+ msgid ""
627
+ "Dispatch the file via PHP directly instead of redirecting to it. PHP "
628
+ "Dispatching keeps the download URL hidden. Dispatching works only for local "
629
+ "files (files that you uploaded to this site via this plugin or media "
630
+ "library)."
631
+ msgstr ""
632
+ "Versenden Sie die Datei per PHP direkt anstatt darauf umzuleiten. Der PHP "
633
+ "Versand hält die Download URL versteckt. Versand funktioniert nur für lokale "
634
+ "Dateien (Dateien, die Sie auf dieser Website über dieses PlugIn oder die "
635
+ "Medien Bibliothek hochgeladen haben)."
636
+
637
+ # @ sdm_lang
638
+ #: main.php:368
639
+ msgid ""
640
+ "Manually enter a valid URL, or click \"Select Image\" to upload (or choose) "
641
+ "the file thumbnail image."
642
+ msgstr ""
643
+ "Geben Sie manuell eine gültige URL ein oder klicken Sie auf \"Bild auswählen"
644
+ "\", um die Thumbnail-Datei hochzuladen (oder auszuwählen)."
645
+
646
+ # @ sdm_lang
647
+ #: main.php:373
648
+ msgid "Select Image"
649
+ msgstr "Image auswählen"
650
+
651
+ # @ sdm_lang
652
+ #: main.php:374
653
+ msgid "Remove Image"
654
+ msgstr "Image entfernen"
655
+
656
+ # @ sdm_lang
657
+ #: main.php:388
658
+ msgid ""
659
+ "This thumbnail image will be used to create a fancy file download box if you "
660
+ "want to use it."
661
+ msgstr ""
662
+ "Das Thumbnail-Bild wird verwendet, um ein ausgefallenes Dateidownload Feld "
663
+ "zu ersetzen, wenn Sie es verwenden möchten."
664
+
665
+ # @ sdm_lang
666
+ #: main.php:402
667
+ msgid "These are the statistics for this download item."
668
+ msgstr "Statistiken für den jeweiligen Download."
669
+
670
+ # @ sdm_lang
671
+ #: main.php:409
672
+ msgid "Number of Downloads:"
673
+ msgstr "Anzahl der Downloads:"
674
+
675
+ #: main.php:414
676
+ msgid "Offset Count: "
677
+ msgstr "Offset-Anzahl: "
678
+
679
+ #: main.php:417
680
+ msgid ""
681
+ "Enter any positive or negative numerical value; to offset the download count "
682
+ "shown to the visitors (when using the download counter shortcode)."
683
+ msgstr ""
684
+ "Geben Sie einen positiven oder negativen Zahlenwert ein. Der Download Zähler "
685
+ "wird den Besuchern (bei Verwendung des Download Zähler Shortcode) "
686
+ "dementsprechend angepasst."
687
+
688
+ #: main.php:424
689
+ msgid "Disable download logging for this item."
690
+ msgstr "Deaktivieren Sie die Protokollierung der Downloads für dieses Element."
691
+
692
+ # @ sdm_lang
693
+ #: main.php:438
694
+ msgid "File Size: "
695
+ msgstr "Dateigröße: "
696
+
697
+ #: main.php:441
698
+ msgid ""
699
+ "Enter the size of this file (example value: 2.15 MB). You can show this "
700
+ "value in the fancy display by using a shortcode parameter."
701
+ msgstr ""
702
+ "Geben Sie die Größe dieser Datei ein (Beispielwert: 2.15 MB). Sie können "
703
+ "diesen Wert in der Fancy Anzeige mit einem ShortCode Parameter anzeigen."
704
+
705
+ #: main.php:448
706
+ msgid ""
707
+ "Enter the version number for this item if any (example value: v2.5.10). You "
708
+ "can show this value in the fancy display by using a shortcode parameter."
709
+ msgstr ""
710
+ "Geben Sie die Versionsnummer für dieses Element ein, falls vorhanden "
711
+ "(Beispielwert: v2.5.10). Sie können diesen Wert in der Fancy Anzeige mit "
712
+ "einem ShortCode Parameter anzeigen."
713
+
714
+ # @ sdm_lang
715
+ #: main.php:455
716
+ msgid ""
717
+ "The following shortcode can be used on posts or pages to embed a download "
718
+ "now button for this file. You can also use the shortcode inserter (in the "
719
+ "post editor) to add this shortcode to a post or page."
720
+ msgstr ""
721
+ "Der folgende Shortcode kann in Beiträgen oder Seiten verwendet werden, um "
722
+ "ein \"Download\" Button für diese Datei einzubetten. Sie können auch den "
723
+ "Shortcode Button (im Beitrags Editor) verwenden, um diesen Shortcode zu "
724
+ "einem Beitrag oder einer Seite hinzuzufügen."
725
+
726
+ # @ sdm_lang
727
+ #: main.php:461
728
+ msgid ""
729
+ "The following shortcode can be used to show a download counter for this item."
730
+ msgstr ""
731
+ "Der folgende Shortcode kann verwendet werden, um einen Download Zähler für "
732
+ "dieses Element anzuzeigen."
733
+
734
+ #: main.php:467
735
+ msgid ""
736
+ "Read the full shortcode usage documentation <a href=\"https://www."
737
+ "tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
738
+ "\"_blank\">here</a>."
739
+ msgstr ""
740
+ "Lesen Sie die vollständige ShortCode Nutzung Dokumentation <a href=\"https://"
741
+ "www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin\" target="
742
+ "\"_blank\">hier</a>."
743
+
744
+ # @ sdm_lang
745
+ #: main.php:569
746
+ msgid "General Options"
747
+ msgstr "Allgemeine Optionen"
748
+
749
+ # @ sdm_lang
750
+ #: main.php:570
751
+ msgid "Admin Options"
752
+ msgstr "Optionen"
753
+
754
+ #: main.php:573
755
+ msgid "Google Captcha (reCAPTCHA)"
756
+ msgstr "Google Captcha (reCAPTCHA)"
757
+
758
+ #: main.php:574
759
+ msgid "Terms and Conditions"
760
+ msgstr "Nutzungsbedingungen"
761
+
762
+ # @ sdm_lang
763
+ #: main.php:576
764
+ msgid "Colors"
765
+ msgstr "Farben"
766
+
767
+ #: main.php:577
768
+ msgid "Debug"
769
+ msgstr "Debug"
770
+
771
+ #: main.php:578
772
+ msgid "Delete Plugin Data"
773
+ msgstr "Plugin Daten löschen"
774
+
775
+ # @ sdm_lang
776
+ #: main.php:581
777
+ msgid "Hide Download Count"
778
+ msgstr "Download-Zähler ausblenden"
779
+
780
+ #: main.php:582
781
+ msgid "PHP Dispatching"
782
+ msgstr "PHP Versand"
783
+
784
+ #: main.php:583
785
+ msgid "Only Allow Logged-in Users to Download"
786
+ msgstr "Nur eingeloggte Benutzer zum Herunterladen zulassen"
787
+
788
+ #: main.php:584
789
+ msgid "Login Page URL"
790
+ msgstr "URL der Login-Seite"
791
+
792
+ # @ sdm_lang
793
+ #: main.php:586
794
+ msgid "Remove Tinymce Button"
795
+ msgstr "Tinymce Button entfernen"
796
+
797
+ #: main.php:587
798
+ msgid "Log Unique IP"
799
+ msgstr "Log Unique IP"
800
+
801
+ #: main.php:588
802
+ msgid "Do Not Capture IP Address"
803
+ msgstr "Erfassen Sie keine IP-Adresse"
804
+
805
+ # @ sdm_lang
806
+ #: main.php:589
807
+ msgid "Do Not Count Downloads from Bots"
808
+ msgstr "Keine Downloads von Bots zählen"
809
+
810
+ # @ sdm_lang
811
+ #: main.php:590
812
+ msgid "Disable Download Logs"
813
+ msgstr "Download Logs deaktivieren"
814
+
815
+ # @ sdm_lang
816
+ #: main.php:592
817
+ msgid "Download Button Color"
818
+ msgstr "Download Button Farbe"
819
+
820
+ #: main.php:594
821
+ msgid "Enable Debug"
822
+ msgstr "Debug aktivieren"
823
+
824
+ #: main.php:597
825
+ msgid "Enable reCAPTCHA"
826
+ msgstr "reCAPTCHA aktivieren"
827
+
828
+ #: main.php:598
829
+ msgid "Site Key"
830
+ msgstr "Site Key"
831
+
832
+ #: main.php:599
833
+ msgid "Secret Key"
834
+ msgstr "Secret Key"
835
+
836
+ #: main.php:602
837
+ msgid "Enable Terms and Conditions"
838
+ msgstr "Nutzungsbedingungen aktivieren"
839
+
840
+ #: main.php:603
841
+ msgid "Terms Page URL"
842
+ msgstr "URL der Nutzungsbedingungen"
843
+
844
+ # @ sdm_lang
845
+ #: main.php:608
846
+ msgid "General options settings"
847
+ msgstr "Allgemeine Optionen Einstellungen"
848
+
849
+ # @ sdm_lang
850
+ #: main.php:613
851
+ msgid "Admin options settings"
852
+ msgstr "Einstellungen: Admin Optionen"
853
+
854
+ # @ sdm_lang
855
+ #: main.php:618
856
+ msgid "Front End colors settings"
857
+ msgstr "Front-End Farb-Einstellungen"
858
+
859
+ # @ sdm_lang
860
+ #: main.php:623
861
+ msgid "Debug settings"
862
+ msgstr "Debug Einstellungen"
863
+
864
+ #: main.php:628
865
+ msgid ""
866
+ "You can delete all the data related to this plugin from database using the "
867
+ "button below. Useful when you're uninstalling the plugin and don't want any "
868
+ "leftovers remaining."
869
+ msgstr ""
870
+ "Sie können alle Daten, die im Zusammenhang mit diesem Plugin arbeiten, aus "
871
+ "der Datenbank über den Button unterhalb löschen. Das ist dann sinnvoll, wenn "
872
+ "Sie das Plugin deinstallieren wollen und keine Reste übrig bleiben sollen."
873
+
874
+ #: main.php:629
875
+ msgid "Warning"
876
+ msgstr "Warnung"
877
+
878
+ #: main.php:629
879
+ msgid ""
880
+ "this can't be undone. All settings, download items, download logs will be "
881
+ "deleted."
882
+ msgstr ""
883
+ "dies kann nicht rückgängig gemacht werden. Alle Einstellungen, Download "
884
+ "Elemente und Download Logs werden gelöscht."
885
+
886
+ #: main.php:630
887
+ msgid "Delete all data and deactivate plugin"
888
+ msgstr "Alle Daten löschen und das Plugin deaktivieren"
889
+
890
+ #: main.php:636
891
+ msgid "Google Captcha (reCAPTCHA) options"
892
+ msgstr "Google Captcha (reCAPTCHA) Optionen"
893
+
894
+ #: main.php:646
895
+ msgid ""
896
+ "Check this box if you want to use <a href=\"https://www.google.com/recaptcha/"
897
+ "admin\" target=\"_blank\">reCAPTCHA</a>. "
898
+ msgstr ""
899
+ "Aktivieren Sie das Feld, wenn Sie <a href=\"https://www.google.com/recaptcha/"
900
+ "admin\" target=\"_blank\">reCAPTCHA</a> nutzen möchten. "
901
+
902
+ #: main.php:647
903
+ msgid "The captcha option adds a captcha to the download now buttons."
904
+ msgstr "Die Captcha-Option fügt den Download-Schaltflächen ein Captcha hinzu."
905
+
906
+ #: main.php:654
907
+ msgid "The site key for the reCAPTCHA API"
908
+ msgstr "Der Website-Schlüssel für die reCAPTCHA API"
909
+
910
+ #: main.php:661
911
+ msgid "The secret key for the reCAPTCHA API"
912
+ msgstr "Der Geheim-Schlüssel für die reCAPTCHA API"
913
+
914
+ #: main.php:667
915
+ msgid "Hide the download count that is shown in some of the fancy templates."
916
+ msgstr ""
917
+ "Versteckt die Downloadanzahl, die in einigen der Fancy Vorlagen angezeigt "
918
+ "wird."
919
+
920
+ #: main.php:674
921
+ msgid ""
922
+ "When you create a new download item, The PHP Dispatching option should be "
923
+ "enabled by default. PHP Dispatching keeps the URL of the downloadable files "
924
+ "hidden."
925
+ msgstr ""
926
+ "Wenn Sie ein neues Download Element erstellen, wird der Versand via PHP "
927
+ "Option standardmäßig aktiviert. Versand über PHP hält die URL der "
928
+ "herunterladbaren Dateien versteckt."
929
+
930
+ #: main.php:681
931
+ msgid ""
932
+ "Enable this option if you want to allow downloads only for logged-in users. "
933
+ "When enabled, anonymous users clicking on the download button will receive "
934
+ "an error message."
935
+ msgstr ""
936
+ "Aktivieren Sie diese Option, wenn Sie Downloads nur für eingeloggte User "
937
+ "zulassen möchten. Wenn diese Option aktiviert ist, erhalten Gäste durch "
938
+ "Klicken auf die Schaltfläche \"Download\" eine Fehlermeldung."
939
+
940
+ #: main.php:688
941
+ msgid ""
942
+ "(Optional) Specify a login page URL where users can login. This is useful if "
943
+ "you only allow logged in users to be able to download. This link will be "
944
+ "added to the message that is shown to anonymous users."
945
+ msgstr ""
946
+ "(Optional) Geben Sie eine Login URL an, unter der sich Gäste einloggen "
947
+ "können. Dies ist nützlich, wenn Sie nur Usern das Herunterladen erlauben "
948
+ "möchten. Dieser Link wird der Nachricht hinzugefügt, die Gästen angezeigt "
949
+ "wird."
950
+
951
+ # @ sdm_lang
952
+ #: main.php:694
953
+ msgid "Removes the SDM Downloads button from the WP content editor."
954
+ msgstr "Entferne den SDM-Download-Shortcode-Button vom WP-Editor."
955
+
956
+ #: main.php:700
957
+ msgid "Only logs downloads from unique IP addresses."
958
+ msgstr ""
959
+ "Erstellt nur Logs zu einzelnen Downloads die von eindeutigen IP-Adressen "
960
+ "kommen."
961
+
962
+ #: main.php:706
963
+ msgid ""
964
+ "Use this if you do not want to capture the IP address and Country of the "
965
+ "visitors when they download an item."
966
+ msgstr ""
967
+ "Verwenden Sie diese Option, wenn Sie die IP-Adresse und das Land der "
968
+ "Besucher beim Herunterladen eines Elements nicht erfassen möchten."
969
+
970
+ #: main.php:712
971
+ msgid "When enabled, the plugin won't count and log downloads from bots."
972
+ msgstr ""
973
+ "Wenn aktiviert, zählt das PlugIn Downloads von Bots nicht und protokolliert "
974
+ "diese auch nicht."
975
+
976
+ #: main.php:718
977
+ msgid ""
978
+ "Disables all download logs. (This global option overrides the individual "
979
+ "download item option.)"
980
+ msgstr ""
981
+ "Deaktiviert alle Download Logs. (Diese globale Option überschreibt die "
982
+ "einzelne Download Element Optionen.)"
983
+
984
+ # @ sdm_lang
985
+ #: main.php:732
986
+ msgid "Adjusts the color of the \"Download Now\" button."
987
+ msgstr "Farbe des Buttons <b> \"Jetzt herunterladen ...\" </b> anpassen."
988
+
989
+ #: main.php:738
990
+ msgid "Check this option to enable debug logging."
991
+ msgstr ""
992
+ "Aktivieren Sie diese Option, um die Debug Protokollierung zu aktivieren."
993
+
994
+ #: main.php:741
995
+ msgid " to view log file."
996
+ msgstr " um die Log Datei anzuzeigen."
997
+
998
+ #: main.php:743
999
+ msgid " to reset log file."
1000
+ msgstr " um die Log Datei zurückzusetzen."
1001
+
1002
+ #: main.php:749
1003
+ msgid ""
1004
+ "You can use this option to make the visitors agree to your terms before they "
1005
+ "can download the item."
1006
+ msgstr ""
1007
+ "Sie können diese Option verwenden, damit die Besucher Ihren Bedingungen "
1008
+ "zustimmen, bevor sie den Artikel herunterladen können."
1009
+
1010
+ #: main.php:756
1011
+ msgid "Enter the URL of your terms and conditions page."
1012
+ msgstr "Geben Sie die URL Ihrer Nutzungsbedingungen ein."
1013
+
1014
+ #: main.php:793
1015
+ msgid "Permission denied!"
1016
+ msgstr "Zugriff verweigert!"
1017
+
1018
+ # @ sdm_lang
1019
+ #: main.php:869
1020
+ msgid "Image"
1021
+ msgstr "Image"
1022
+
1023
+ # @ sdm_lang
1024
+ #: main.php:871
1025
+ msgid "ID"
1026
+ msgstr "ID"
1027
+
1028
+ # @ sdm_lang
1029
+ #: main.php:873 sdm-post-type-and-taxonomy.php:56
1030
+ msgid "Categories"
1031
+ msgstr "Kategorien"
1032
+
1033
+ # @ sdm_lang
1034
+ #: main.php:874 sdm-post-type-and-taxonomy.php:80
1035
+ msgid "Tags"
1036
+ msgstr "Tags"
1037
+
1038
+ # @ sdm_lang
1039
+ #: main.php:876
1040
+ msgid "Date Posted"
1041
+ msgstr "Datum"
1042
+
1043
+ # @ sdm_lang
1044
+ #: sdm-post-type-and-taxonomy.php:9 sdm-post-type-and-taxonomy.php:10
1045
+ msgid "Add New"
1046
+ msgstr "Neuen Download hinzufügen"
1047
+
1048
+ # @ sdm_lang
1049
+ #: sdm-post-type-and-taxonomy.php:11
1050
+ msgid "Edit Download"
1051
+ msgstr "Download bearbeiten"
1052
+
1053
+ # @ sdm_lang
1054
+ #: sdm-post-type-and-taxonomy.php:12
1055
+ msgid "New Download"
1056
+ msgstr "Neuer Download"
1057
+
1058
+ # @ sdm_lang
1059
+ #: sdm-post-type-and-taxonomy.php:14
1060
+ msgid "View Download"
1061
+ msgstr "Download anzeigen"
1062
+
1063
+ # @ sdm_lang
1064
+ #: sdm-post-type-and-taxonomy.php:15
1065
+ msgid "Search Downloads"
1066
+ msgstr "Download suchen"
1067
+
1068
+ # @ sdm_lang
1069
+ #: sdm-post-type-and-taxonomy.php:16
1070
+ msgid "No Downloads found"
1071
+ msgstr "Keine Downloads gefunden"
1072
+
1073
+ # @ sdm_lang
1074
+ #: sdm-post-type-and-taxonomy.php:17
1075
+ msgid "No Downloads found in Trash"
1076
+ msgstr "Keine Downloads im Papierkorb gefunden"
1077
+
1078
+ # @ sdm_lang
1079
+ #: sdm-post-type-and-taxonomy.php:18
1080
+ msgid "Parent Download"
1081
+ msgstr "Übergeordneter Download"
1082
+
1083
+ # @ sdm_lang
1084
+ #: sdm-post-type-and-taxonomy.php:46
1085
+ msgid "Download Categories"
1086
+ msgstr "Download Kategorien"
1087
+
1088
+ # @ sdm_lang
1089
+ #: sdm-post-type-and-taxonomy.php:47
1090
+ msgid "Download Category"
1091
+ msgstr "Download Kategorie"
1092
+
1093
+ # @ sdm_lang
1094
+ #: sdm-post-type-and-taxonomy.php:48
1095
+ msgid "Search Categories"
1096
+ msgstr "Kategorien durchsuchen"
1097
+
1098
+ # @ sdm_lang
1099
+ #: sdm-post-type-and-taxonomy.php:49
1100
+ msgid "All Categories"
1101
+ msgstr "Alle Kategorien"
1102
+
1103
+ # @ sdm_lang
1104
+ #: sdm-post-type-and-taxonomy.php:50
1105
+ msgid "Categories Genre"
1106
+ msgstr "Kategorie Gattung"
1107
+
1108
+ # @ sdm_lang
1109
+ #: sdm-post-type-and-taxonomy.php:51
1110
+ msgid "Categories Genre:"
1111
+ msgstr "Kategorie Gattung:"
1112
+
1113
+ # @ sdm_lang
1114
+ #: sdm-post-type-and-taxonomy.php:52
1115
+ msgid "Edit Category"
1116
+ msgstr "Kategorie bearbeiten"
1117
+
1118
+ # @ sdm_lang
1119
+ #: sdm-post-type-and-taxonomy.php:53
1120
+ msgid "Update Category"
1121
+ msgstr "Kategorie aktualisieren"
1122
+
1123
+ # @ sdm_lang
1124
+ #: sdm-post-type-and-taxonomy.php:54
1125
+ msgid "Add New Category"
1126
+ msgstr "Neue Kategorie hinzufügen"
1127
+
1128
+ # @ sdm_lang
1129
+ #: sdm-post-type-and-taxonomy.php:55
1130
+ msgid "New Category"
1131
+ msgstr "Neue Kategorie"
1132
+
1133
+ # @ sdm_lang
1134
+ #: sdm-post-type-and-taxonomy.php:70
1135
+ msgid "Download Tags"
1136
+ msgstr "Download Stichworte"
1137
+
1138
+ # @ sdm_lang
1139
+ #: sdm-post-type-and-taxonomy.php:71
1140
+ msgid "Download Tag"
1141
+ msgstr "Download Stichwort"
1142
+
1143
+ # @ sdm_lang
1144
+ #: sdm-post-type-and-taxonomy.php:72
1145
+ msgid "Search Tags"
1146
+ msgstr "Tags suchen"
1147
+
1148
+ # @ sdm_lang
1149
+ #: sdm-post-type-and-taxonomy.php:73
1150
+ msgid "All Tags"
1151
+ msgstr "Alle Tags"
1152
+
1153
+ # @ sdm_lang
1154
+ #: sdm-post-type-and-taxonomy.php:74
1155
+ msgid "Tags Genre"
1156
+ msgstr "Tags Gattung"
1157
+
1158
+ # @ sdm_lang
1159
+ #: sdm-post-type-and-taxonomy.php:75
1160
+ msgid "Tags Genre:"
1161
+ msgstr "Tags Gattung:"
1162
+
1163
+ # @ sdm_lang
1164
+ #: sdm-post-type-and-taxonomy.php:76
1165
+ msgid "Edit Tag"
1166
+ msgstr "Tag bearbeiten"
1167
+
1168
+ # @ sdm_lang
1169
+ #: sdm-post-type-and-taxonomy.php:77
1170
+ msgid "Update Tag"
1171
+ msgstr "Tag aktualisieren"
1172
+
1173
+ # @ sdm_lang
1174
+ #: sdm-post-type-and-taxonomy.php:78
1175
+ msgid "Add New Tag"
1176
+ msgstr "Neuen Tag hinzufügen"
1177
+
1178
+ # @ sdm_lang
1179
+ #: sdm-post-type-and-taxonomy.php:79
1180
+ msgid "New Tag"
1181
+ msgstr "Neuer Tag"
1182
+
1183
+ # @ sdm_lang
1184
+ #: sdm-shortcodes.php:81 sdm-shortcodes.php:142 sdm-shortcodes.php:156
1185
+ msgid "Error! Please enter an ID value with this shortcode."
1186
+ msgstr "Fehler! Bitte geben Sie einen ID Wert mit diesem Shortcode ein."
1187
+
1188
+ # @ sdm_lang
1189
+ #: sdm-shortcodes.php:189
1190
+ msgid ""
1191
+ "Error! You must enter a category slug OR a category id with this shortcode. "
1192
+ "Refer to the documentation for usage instructions."
1193
+ msgstr ""
1194
+ "Fehler! Sie müssen bei einem Shortcode entweder einen Kategorie-Slug "
1195
+ "(bereinigter Namenskürzel der URL) <b>ODER</b> eine Kategorie-ID eingeben. "
1196
+ "Bitte beachten Sie die Dokumentation für detaillierte Informationen."
1197
+
1198
+ # @ sdm_lang
1199
+ #: sdm-shortcodes.php:194
1200
+ msgid "Error! Please enter a category slug OR id; not both."
1201
+ msgstr ""
1202
+ "Fehler! Bitte geben Sie entweder einen Kategorie-Slug ODER die ID ein; nicht "
1203
+ "beides."
1204
+
1205
+ # @ sdm_lang
1206
+ #: sdm-shortcodes.php:224
1207
+ msgid ""
1208
+ "Error! You must enter a numeric number for the \"pagination\" parameter of "
1209
+ "the shortcode. Refer to the usage documentation."
1210
+ msgstr ""
1211
+ "Fehler! Sie müssen eine numerische Nummer für den Parameter \"pagination\" "
1212
+ "des Shortcodes eingeben. Konsultieren Sie die Gebrauchsdokumentation."
1213
+
1214
+ # @ sdm_lang
1215
+ #: sdm-shortcodes.php:249
1216
+ msgid "There are no download items matching this category criteria."
1217
+ msgstr ""
1218
+ "Es existieren keine Downloads, die den Kategorie-Kriterien entsprechen."
1219
+
1220
+ # @ sdm_lang
1221
+ #. Plugin Name of the plugin/theme
1222
+ msgid "Simple Download Monitor"
1223
+ msgstr "Simple Download Monitor"
1224
+
1225
+ #. Plugin URI of the plugin/theme
1226
+ msgid ""
1227
+ "https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin"
1228
+ msgstr ""
1229
+ "https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin"
1230
+
1231
+ #. Description of the plugin/theme
1232
+ msgid ""
1233
+ "Easily manage downloadable files and monitor downloads of your digital files "
1234
+ "from your WordPress site."
1235
+ msgstr ""
1236
+ "Verwalten Sie einfach herunterladbare Dateien und überwachen Sie Downloads "
1237
+ "Ihrer digitalen Dateien von Ihrer WordPress-Website."
1238
+
1239
+ #. Author of the plugin/theme
1240
+ msgid "Tips and Tricks HQ, Ruhul Amin, Josh Lobe"
1241
+ msgstr "Tips and Tricks HQ, Ruhul Amin, Josh Lobe"
1242
+
1243
+ #. Author URI of the plugin/theme
1244
+ msgid "https://www.tipsandtricks-hq.com/development-center"
1245
+ msgstr "https://www.tipsandtricks-hq.com/development-center"
1246
+
1247
+ # @ default
1248
+ #~ msgctxt "sdm_lang"
1249
+ #~ msgid "Categories"
1250
+ #~ msgstr "Kategorien"
1251
+
1252
+ # @ default
1253
+ #~ msgctxt "sdm_lang"
1254
+ #~ msgid "Category"
1255
+ #~ msgstr "Kategorie"
1256
+
1257
+ # @ default
1258
+ #~ msgctxt "sdm_lang"
1259
+ #~ msgid "Tags"
1260
+ #~ msgstr "Tags"
1261
+
1262
+ # @ default
1263
+ #~ msgctxt "sdm_lang"
1264
+ #~ msgid "Tag"
1265
+ #~ msgstr "Tag"
1266
+
1267
+ # @ sdm_lang
1268
+ #~ msgid "Control various plugin features."
1269
+ #~ msgstr "Verschiedene Plugin-Eigenschaften kontrollieren"
1270
+
1271
+ # @ sdm_lang
1272
+ #~ msgid "Color Options"
1273
+ #~ msgstr "Farben"
1274
+
1275
+ # @ sdm_lang
1276
+ #~ msgid "Adjust color options"
1277
+ #~ msgstr "Farbe anpassen"
1278
+
1279
+ # @ sdm_lang
1280
+ #~ msgid "Upload File"
1281
+ #~ msgstr "Datei hochladen"
1282
+
1283
+ # @ sdm_lang
1284
+ #~ msgid "Recommended image size is 75px by 75px."
1285
+ #~ msgstr "Empfohlene Image-Größe: 75px x 75px"
1286
+
1287
+ # @ sdm_lang
1288
+ #~ msgid "Export All as Excel"
1289
+ #~ msgstr "Als EXCEL-Datei exportieren"
1290
+
1291
+ # @ sdm_lang
1292
+ #~ msgid "Submit"
1293
+ #~ msgstr "Absenden"
1294
+
1295
+ # @ sdm_lang
1296
+ #~ msgid "Incorrect Password"
1297
+ #~ msgstr "Falsches Passwort !!"
1298
+
1299
+ # @ sdm_lang
1300
+ #~ msgid "Download Export File"
1301
+ #~ msgstr "Download Export-Datei"
1302
+
1303
+ # @ sdm_lang
1304
+ #~ msgid "current"
1305
+ #~ msgstr "aktiv"
languages/simple-download-monitor.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Simple Download Monitor\n"
4
- "POT-Creation-Date: 2017-12-26 16:36+1000\n"
5
- "PO-Revision-Date: 2017-12-26 16:36+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
@@ -13,98 +13,111 @@ msgstr ""
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: simple-download-monitor/main.php:179
17
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:11
18
  msgid "Settings"
19
  msgstr ""
20
 
21
- #: simple-download-monitor/main.php:234 simple-download-monitor/main.php:317
22
  msgid "Select File"
23
  msgstr ""
24
 
25
- #: simple-download-monitor/main.php:235
26
  msgid "Select Thumbnail"
27
  msgstr ""
28
 
29
- #: simple-download-monitor/main.php:236
30
  msgid "Insert"
31
  msgstr ""
32
 
33
- #: simple-download-monitor/main.php:237
34
  msgid "Image Successfully Removed"
35
  msgstr ""
36
 
37
- #: simple-download-monitor/main.php:238
38
  msgid "Error with AJAX"
39
  msgstr ""
40
 
41
- #: simple-download-monitor/main.php:249
42
  msgid "Please select a Download Item:"
43
  msgstr ""
44
 
45
- #: simple-download-monitor/main.php:250
46
  msgid "Download Title"
47
  msgstr ""
48
 
49
- #: simple-download-monitor/main.php:251
50
  msgid "Include Fancy Box"
51
  msgstr ""
52
 
53
- #: simple-download-monitor/main.php:252
54
  msgid "Open New Window"
55
  msgstr ""
56
 
57
- #: simple-download-monitor/main.php:253
58
  msgid "Button Color"
59
  msgstr ""
60
 
61
- #: simple-download-monitor/main.php:254
62
  msgid "Insert SDM Shortcode"
63
  msgstr ""
64
 
65
- #: simple-download-monitor/main.php:285
66
  msgid "Description"
67
  msgstr ""
68
 
69
- #: simple-download-monitor/main.php:286
70
  msgid "Downloadable File (Visitors will download this item)"
71
  msgstr ""
72
 
73
- #: simple-download-monitor/main.php:287
74
  msgid "PHP Dispatch or Redirect"
75
  msgstr ""
76
 
77
- #: simple-download-monitor/main.php:288
78
  msgid "File Thumbnail (Optional)"
79
  msgstr ""
80
 
81
- #: simple-download-monitor/main.php:289
82
  msgid "Statistics"
83
  msgstr ""
84
 
85
- #: simple-download-monitor/main.php:290
86
  msgid "Other Details (Optional)"
87
  msgstr ""
88
 
89
- #: simple-download-monitor/main.php:291
90
  msgid "Shortcodes"
91
  msgstr ""
92
 
93
- #: simple-download-monitor/main.php:295
94
  msgid "Add a description for this download item."
95
  msgstr ""
96
 
97
- #: simple-download-monitor/main.php:309
98
  msgid ""
99
  "Manually enter a valid URL of the file in the text box below, or click "
100
  "\"Select File\" button to upload (or choose) the downloadable file."
101
  msgstr ""
102
 
103
- #: simple-download-monitor/main.php:320
104
  msgid "Steps to upload a file or choose one from your media library:"
105
  msgstr ""
106
 
107
- #: simple-download-monitor/main.php:345
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  msgid ""
109
  "Dispatch the file via PHP directly instead of redirecting to it. PHP "
110
  "Dispatching keeps the download URL hidden. Dispatching works only for local "
@@ -112,732 +125,863 @@ msgid ""
112
  "library)."
113
  msgstr ""
114
 
115
- #: simple-download-monitor/main.php:353
116
  msgid ""
117
  "Manually enter a valid URL, or click \"Select Image\" to upload (or choose) "
118
  "the file thumbnail image."
119
  msgstr ""
120
 
121
- #: simple-download-monitor/main.php:358
122
  msgid "Select Image"
123
  msgstr ""
124
 
125
- #: simple-download-monitor/main.php:359
126
  msgid "Remove Image"
127
  msgstr ""
128
 
129
- #: simple-download-monitor/main.php:373
130
  msgid ""
131
  "This thumbnail image will be used to create a fancy file download box if you "
132
  "want to use it."
133
  msgstr ""
134
 
135
- #: simple-download-monitor/main.php:387
136
  msgid "These are the statistics for this download item."
137
  msgstr ""
138
 
139
- #: simple-download-monitor/main.php:394
140
  msgid "Number of Downloads:"
141
  msgstr ""
142
 
143
- #: simple-download-monitor/main.php:399
144
  msgid "Offset Count: "
145
  msgstr ""
146
 
147
- #: simple-download-monitor/main.php:402
148
  msgid ""
149
  "Enter any positive or negative numerical value; to offset the download count "
150
  "shown to the visitors (when using the download counter shortcode)."
151
  msgstr ""
152
 
153
- #: simple-download-monitor/main.php:409
154
  msgid "Disable download logging for this item."
155
  msgstr ""
156
 
157
- #: simple-download-monitor/main.php:423
158
  msgid "File Size: "
159
  msgstr ""
160
 
161
- #: simple-download-monitor/main.php:426
162
  msgid ""
163
  "Enter the size of this file (example value: 2.15 MB). You can show this "
164
  "value in the fancy display by using a shortcode parameter."
165
  msgstr ""
166
 
167
- #: simple-download-monitor/main.php:430
168
- #: simple-download-monitor/sdm-post-type-content-handler.php:94
169
- #: simple-download-monitor/includes/templates/fancy1/sdm-fancy-1.php:118
170
- #: simple-download-monitor/includes/templates/fancy2/sdm-fancy-2.php:128
171
  msgid "Version: "
172
  msgstr ""
173
 
174
- #: simple-download-monitor/main.php:433
175
  msgid ""
176
  "Enter the version number for this item if any (example value: v2.5.10). You "
177
  "can show this value in the fancy display by using a shortcode parameter."
178
  msgstr ""
179
 
180
- #: simple-download-monitor/main.php:440
181
  msgid ""
182
  "The following shortcode can be used on posts or pages to embed a download "
183
  "now button for this file. You can also use the shortcode inserter (in the "
184
  "post editor) to add this shortcode to a post or page."
185
  msgstr ""
186
 
187
- #: simple-download-monitor/main.php:446
188
  msgid ""
189
  "The following shortcode can be used to show a download counter for this item."
190
  msgstr ""
191
 
192
- #: simple-download-monitor/main.php:552
 
 
 
 
 
 
 
193
  msgid "General Options"
194
  msgstr ""
195
 
196
- #: simple-download-monitor/main.php:553
197
  msgid "Admin Options"
198
  msgstr ""
199
 
200
- #: simple-download-monitor/main.php:554
 
 
 
 
 
 
 
 
201
  msgid "Colors"
202
  msgstr ""
203
 
204
- #: simple-download-monitor/main.php:555
205
  msgid "Debug"
206
  msgstr ""
207
 
208
- #: simple-download-monitor/main.php:556
209
  msgid "Delete Plugin Data"
210
  msgstr ""
211
 
212
- #: simple-download-monitor/main.php:559
213
  msgid "Hide Download Count"
214
  msgstr ""
215
 
216
- #: simple-download-monitor/main.php:560
217
  msgid "PHP Dispatching"
218
  msgstr ""
219
 
220
- #: simple-download-monitor/main.php:561
221
  msgid "Only Allow Logged-in Users to Download"
222
  msgstr ""
223
 
224
- #: simple-download-monitor/main.php:562
225
  msgid "Login Page URL"
226
  msgstr ""
227
 
228
- #: simple-download-monitor/main.php:564
229
  msgid "Remove Tinymce Button"
230
  msgstr ""
231
 
232
- #: simple-download-monitor/main.php:565
233
  msgid "Log Unique IP"
234
  msgstr ""
235
 
236
- #: simple-download-monitor/main.php:566
 
 
 
 
237
  msgid "Do Not Count Downloads from Bots"
238
  msgstr ""
239
 
240
- #: simple-download-monitor/main.php:567
241
  msgid "Disable Download Logs"
242
  msgstr ""
243
 
244
- #: simple-download-monitor/main.php:569
245
  msgid "Download Button Color"
246
  msgstr ""
247
 
248
- #: simple-download-monitor/main.php:571
249
  msgid "Enable Debug"
250
  msgstr ""
251
 
252
- #: simple-download-monitor/main.php:576
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  msgid "General options settings"
254
  msgstr ""
255
 
256
- #: simple-download-monitor/main.php:581
257
  msgid "Admin options settings"
258
  msgstr ""
259
 
260
- #: simple-download-monitor/main.php:586
261
  msgid "Front End colors settings"
262
  msgstr ""
263
 
264
- #: simple-download-monitor/main.php:591
265
  msgid "Debug settings"
266
  msgstr ""
267
 
268
- #: simple-download-monitor/main.php:596
269
  msgid ""
270
  "You can delete all the data related to this plugin from database using the "
271
  "button below. Useful when you're uninstalling the plugin and don't want any "
272
  "leftovers remaining."
273
  msgstr ""
274
 
275
- #: simple-download-monitor/main.php:597
276
  msgid "Warning"
277
  msgstr ""
278
 
279
- #: simple-download-monitor/main.php:597
280
  msgid ""
281
  "this can't be undone. All settings, download items, download logs will be "
282
  "deleted."
283
  msgstr ""
284
 
285
- #: simple-download-monitor/main.php:598
286
  msgid "Delete all data and deactivate plugin"
287
  msgstr ""
288
 
289
- #: simple-download-monitor/main.php:604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Hide the download count that is shown in some of the fancy templates."
291
  msgstr ""
292
 
293
- #: simple-download-monitor/main.php:611
294
  msgid ""
295
  "When you create a new download item, The PHP Dispatching option should be "
296
  "enabled by default. PHP Dispatching keeps the URL of the downloadable files "
297
  "hidden."
298
  msgstr ""
299
 
300
- #: simple-download-monitor/main.php:618
301
  msgid ""
302
  "Enable this option if you want to allow downloads only for logged-in users. "
303
  "When enabled, anonymous users clicking on the download button will receive "
304
  "an error message."
305
  msgstr ""
306
 
307
- #: simple-download-monitor/main.php:625
308
  msgid ""
309
  "(Optional) Specify a login page URL where users can login. This is useful if "
310
  "you only allow logged in users to be able to download. This link will be "
311
  "added to the message that is shown to anonymous users."
312
  msgstr ""
313
 
314
- #: simple-download-monitor/main.php:631
315
  msgid "Removes the SDM Downloads button from the WP content editor."
316
  msgstr ""
317
 
318
- #: simple-download-monitor/main.php:637
319
  msgid "Only logs downloads from unique IP addresses."
320
  msgstr ""
321
 
322
- #: simple-download-monitor/main.php:643
 
 
 
 
 
 
323
  msgid "When enabled, the plugin won't count and log downloads from bots."
324
  msgstr ""
325
 
326
- #: simple-download-monitor/main.php:649
327
  msgid ""
328
  "Disables all download logs. (This global option overrides the individual "
329
  "download item option.)"
330
  msgstr ""
331
 
332
- #: simple-download-monitor/main.php:669
333
  msgid "Check this option to enable debug logging."
334
  msgstr ""
335
 
336
- #: simple-download-monitor/main.php:671 simple-download-monitor/main.php:673
337
- #: simple-download-monitor/includes/sdm-download-request-handler.php:28
338
  msgid "Click here"
339
  msgstr ""
340
 
341
- #: simple-download-monitor/main.php:672
342
  msgid " to view log file."
343
  msgstr ""
344
 
345
- #: simple-download-monitor/main.php:674
346
  msgid " to reset log file."
347
  msgstr ""
348
 
349
- #: simple-download-monitor/main.php:712
 
 
 
 
 
 
 
 
 
 
350
  msgid "Permission denied!"
351
  msgstr ""
352
 
353
- #: simple-download-monitor/main.php:787
354
  msgid "Image"
355
  msgstr ""
356
 
357
- #: simple-download-monitor/main.php:788
358
- #: simple-download-monitor/includes/sdm-logs-list-table.php:70
359
  msgid "Title"
360
  msgstr ""
361
 
362
- #: simple-download-monitor/main.php:789
363
  msgid "ID"
364
  msgstr ""
365
 
366
- #: simple-download-monitor/main.php:790
367
- #: simple-download-monitor/includes/sdm-logs-list-table.php:71
368
  msgid "File"
369
  msgstr ""
370
 
371
- #: simple-download-monitor/main.php:791
372
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:56
373
  msgid "Categories"
374
  msgstr ""
375
 
376
- #: simple-download-monitor/main.php:792
377
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:80
378
  msgid "Tags"
379
  msgstr ""
380
 
381
- #: simple-download-monitor/main.php:793
382
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:7
383
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:8
384
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:13
385
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:19
386
- #: simple-download-monitor/sdm-post-type-content-handler.php:63
387
- #: simple-download-monitor/sdm-shortcodes.php:141
388
- #: simple-download-monitor/includes/sdm-logs-list-table.php:20
389
- #: simple-download-monitor/includes/templates/fancy1/sdm-fancy-1.php:95
390
  msgid "Downloads"
391
  msgstr ""
392
 
393
- #: simple-download-monitor/main.php:794
394
  msgid "Date Posted"
395
  msgstr ""
396
 
397
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:9
398
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:10
399
  msgid "Add New"
400
  msgstr ""
401
 
402
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:11
403
  msgid "Edit Download"
404
  msgstr ""
405
 
406
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:12
407
  msgid "New Download"
408
  msgstr ""
409
 
410
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:14
411
  msgid "View Download"
412
  msgstr ""
413
 
414
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:15
415
  msgid "Search Downloads"
416
  msgstr ""
417
 
418
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:16
419
  msgid "No Downloads found"
420
  msgstr ""
421
 
422
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:17
423
  msgid "No Downloads found in Trash"
424
  msgstr ""
425
 
426
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:18
427
  msgid "Parent Download"
428
  msgstr ""
429
 
430
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:48
 
 
 
 
 
 
 
 
431
  msgid "Search Categories"
432
  msgstr ""
433
 
434
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:49
435
  msgid "All Categories"
436
  msgstr ""
437
 
438
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:50
439
  msgid "Categories Genre"
440
  msgstr ""
441
 
442
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:51
443
  msgid "Categories Genre:"
444
  msgstr ""
445
 
446
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:52
447
  msgid "Edit Category"
448
  msgstr ""
449
 
450
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:53
451
  msgid "Update Category"
452
  msgstr ""
453
 
454
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:54
455
  msgid "Add New Category"
456
  msgstr ""
457
 
458
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:55
459
  msgid "New Category"
460
  msgstr ""
461
 
462
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:72
 
 
 
 
 
 
 
 
463
  msgid "Search Tags"
464
  msgstr ""
465
 
466
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:73
467
  msgid "All Tags"
468
  msgstr ""
469
 
470
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:74
471
  msgid "Tags Genre"
472
  msgstr ""
473
 
474
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:75
475
  msgid "Tags Genre:"
476
  msgstr ""
477
 
478
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:76
479
  msgid "Edit Tag"
480
  msgstr ""
481
 
482
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:77
483
  msgid "Update Tag"
484
  msgstr ""
485
 
486
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:78
487
  msgid "Add New Tag"
488
  msgstr ""
489
 
490
- #: simple-download-monitor/sdm-post-type-and-taxonomy.php:79
491
  msgid "New Tag"
492
  msgstr ""
493
 
494
- #: simple-download-monitor/sdm-post-type-content-handler.php:39
495
- #: simple-download-monitor/includes/templates/fancy0/sdm-fancy-0.php:64
496
  msgid "green"
497
  msgstr ""
498
 
499
- #: simple-download-monitor/sdm-post-type-content-handler.php:44
500
- #: simple-download-monitor/sdm-shortcodes.php:61
501
- #: simple-download-monitor/sdm-shortcodes.php:155
502
- #: simple-download-monitor/includes/sdm-utility-functions.php:62
503
- #: simple-download-monitor/includes/templates/fancy0/sdm-fancy-0.php:75
504
- #: simple-download-monitor/includes/templates/fancy1/sdm-fancy-1.php:43
505
- #: simple-download-monitor/includes/templates/fancy2/sdm-fancy-2.php:60
506
  msgid "Download Now!"
507
  msgstr ""
508
 
509
- #: simple-download-monitor/sdm-post-type-content-handler.php:63
510
- #: simple-download-monitor/sdm-shortcodes.php:141
511
- #: simple-download-monitor/includes/sdm-logs-list-table.php:19
512
- #: simple-download-monitor/includes/templates/fancy1/sdm-fancy-1.php:95
513
  msgid "Download"
514
  msgstr ""
515
 
516
- #: simple-download-monitor/sdm-post-type-content-handler.php:87
517
- #: simple-download-monitor/includes/templates/fancy1/sdm-fancy-1.php:111
518
- #: simple-download-monitor/includes/templates/fancy2/sdm-fancy-2.php:121
519
  msgid "Size: "
520
  msgstr ""
521
 
522
- #: simple-download-monitor/sdm-shortcodes.php:74
523
- #: simple-download-monitor/sdm-shortcodes.php:121
524
- #: simple-download-monitor/sdm-shortcodes.php:135
525
  msgid "Error! Please enter an ID value with this shortcode."
526
  msgstr ""
527
 
528
- #: simple-download-monitor/sdm-shortcodes.php:168
529
  msgid ""
530
  "Error! You must enter a category slug OR a category id with this shortcode. "
531
  "Refer to the documentation for usage instructions."
532
  msgstr ""
533
 
534
- #: simple-download-monitor/sdm-shortcodes.php:173
535
  msgid "Error! Please enter a category slug OR id; not both."
536
  msgstr ""
537
 
538
- #: simple-download-monitor/sdm-shortcodes.php:193
539
  msgid ""
540
  "Error! You must enter a numeric number for the \"pagination\" parameter of "
541
  "the shortcode. Refer to the usage documentation."
542
  msgstr ""
543
 
544
- #: simple-download-monitor/sdm-shortcodes.php:220
545
  msgid "There are no download items matching this category criteria."
546
  msgstr ""
547
 
548
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:9
549
  msgid "Logs"
550
  msgstr ""
551
 
552
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:10
 
553
  msgid "Stats"
554
  msgstr ""
555
 
556
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:12
557
  msgid "Add-ons"
558
  msgstr ""
559
 
560
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:23
561
  msgid "Simple Download Monitor Settings Page"
562
  msgstr ""
563
 
564
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:27
565
- msgid "follow us"
 
 
566
  msgstr ""
567
 
568
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:27
569
  msgid ""
570
- "on Twitter, Google+ or via Email to stay upto date about the new features of "
571
- "this plugin."
572
  msgstr ""
573
 
574
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:86
575
- msgid "Are you sure want to delete all plugin's data and deactivate plugin?"
576
  msgstr ""
577
 
578
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:91
579
  msgid ""
580
- "Data has been deleted and plugin deactivated. Click OK to go to Plugins page."
 
581
  msgstr ""
582
 
583
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:95
584
- msgid "Error occured."
 
 
 
 
585
  msgstr ""
586
 
587
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:118
588
  msgid ""
589
  "If you need a feature rich and supported plugin for selling your digital "
590
  "items then checkout our"
591
  msgstr ""
592
 
593
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:118
594
  msgid "WP eStore Plugin"
595
  msgstr ""
596
 
597
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
598
  msgid "Log entries exported! Click on the following link to download the file."
599
  msgstr ""
600
 
601
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:138
602
  msgid "Download Logs CSV File"
603
  msgstr ""
604
 
605
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:148
606
  msgid "Download log entries deleted!"
607
  msgstr ""
608
 
609
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:160
610
  msgid "Download Logs"
611
  msgstr ""
612
 
613
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:163
614
  msgid "This page lists all tracked downloads."
615
  msgstr ""
616
 
617
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:170
618
  msgid "Export Download Log Entries"
619
  msgstr ""
620
 
621
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:174
622
  msgid "Export Log Entries to CSV File"
623
  msgstr ""
624
 
625
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:181
626
  msgid "Reset Download Log Entries"
627
  msgstr ""
628
 
629
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:185
630
  msgid "Reset Log Entries"
631
  msgstr ""
632
 
633
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:249
634
  msgid "Choose Date Range (yyyy-mm-dd)"
635
  msgstr ""
636
 
637
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:253
638
  msgid "Start Date: "
639
  msgstr ""
640
 
641
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:254
642
  msgid "End Date: "
643
  msgstr ""
644
 
645
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:256
646
  msgid "This Month"
647
  msgstr ""
648
 
649
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:257
650
  msgid "Last Month"
651
  msgstr ""
652
 
653
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:258
654
  msgid "This Year"
655
  msgstr ""
656
 
657
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:259
658
  msgid "Last Year"
659
  msgstr ""
660
 
661
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:260
662
  msgid "All Time"
663
  msgstr ""
664
 
665
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:263
666
  msgid "View Stats"
667
  msgstr ""
668
 
669
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:269
670
  msgid "Downloads by date"
671
  msgstr ""
672
 
673
- #: simple-download-monitor/includes/sdm-admin-menu-handler.php:270
674
  msgid "Downloads by country"
675
  msgstr ""
676
 
677
- #: simple-download-monitor/includes/sdm-download-request-handler.php:13
 
 
 
 
 
 
 
 
 
 
 
 
678
  msgid "Error! Incorrect download item id."
679
  msgstr ""
680
 
681
- #: simple-download-monitor/includes/sdm-download-request-handler.php:16
682
  msgid "Error! This download item ("
683
  msgstr ""
684
 
685
- #: simple-download-monitor/includes/sdm-download-request-handler.php:26
686
  msgid "Error! This download requires a password."
687
  msgstr ""
688
 
689
- #: simple-download-monitor/includes/sdm-download-request-handler.php:29
690
  msgid " and enter a valid password for this item"
691
  msgstr ""
692
 
693
- #: simple-download-monitor/includes/sdm-download-request-handler.php:35
694
  msgid "Error! Incorrect password. This download requires a valid password."
695
  msgstr ""
696
 
697
- #: simple-download-monitor/includes/sdm-download-request-handler.php:58
698
  msgid "__Click here__ to go to login page."
699
  msgstr ""
700
 
701
- #: simple-download-monitor/includes/sdm-download-request-handler.php:61
702
  msgid "You need to be logged in to download this file."
703
  msgstr ""
704
 
705
- #: simple-download-monitor/includes/sdm-download-request-handler.php:65
706
  msgid "Not Logged In"
707
  msgstr ""
708
 
709
- #: simple-download-monitor/includes/sdm-download-request-handler.php:123
710
  msgid "Error! Failed to log the download request in the database table"
711
  msgstr ""
712
 
713
- #: simple-download-monitor/includes/sdm-download-request-handler.php:155
714
  msgid ""
715
  "Error! The URL value is empty. Please specify a correct URL value to "
716
  "redirect to!"
717
  msgstr ""
718
 
719
- #: simple-download-monitor/includes/sdm-latest-downloads.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  msgid "There are no download items matching this shortcode criteria."
721
  msgstr ""
722
 
723
- #: simple-download-monitor/includes/sdm-logs-list-table.php:45
724
  msgid "Edit"
725
  msgstr ""
726
 
727
- #: simple-download-monitor/includes/sdm-logs-list-table.php:46
728
  msgid "Delete"
729
  msgstr ""
730
 
731
- #: simple-download-monitor/includes/sdm-logs-list-table.php:72
732
  msgid "Visitor IP"
733
  msgstr ""
734
 
735
- #: simple-download-monitor/includes/sdm-logs-list-table.php:73
736
- msgid "Date"
737
- msgstr ""
738
-
739
- #: simple-download-monitor/includes/sdm-logs-list-table.php:74
740
  msgid "Country"
741
  msgstr ""
742
 
743
- #: simple-download-monitor/includes/sdm-logs-list-table.php:75
744
  msgid "Username"
745
  msgstr ""
746
 
747
- #: simple-download-monitor/includes/sdm-logs-list-table.php:96
748
  msgid "Delete Permanently"
749
  msgstr ""
750
 
751
- #: simple-download-monitor/includes/sdm-logs-list-table.php:111
752
- #: simple-download-monitor/includes/sdm-logs-list-table.php:142
753
  msgid "Nope! Security check failed!"
754
  msgstr ""
755
 
756
- #: simple-download-monitor/includes/sdm-logs-list-table.php:115
757
  msgid "No entries were selected."
758
  msgstr ""
759
 
760
- #: simple-download-monitor/includes/sdm-logs-list-table.php:115
761
- #: simple-download-monitor/includes/sdm-logs-list-table.php:129
762
- #: simple-download-monitor/includes/sdm-logs-list-table.php:131
763
- #: simple-download-monitor/includes/sdm-logs-list-table.php:151
764
- #: simple-download-monitor/includes/sdm-logs-list-table.php:153
765
  msgid "Click to Dismiss"
766
  msgstr ""
767
 
768
- #: simple-download-monitor/includes/sdm-logs-list-table.php:122
769
  msgid "Error! The row id value of a log entry must be numeric."
770
  msgstr ""
771
 
772
- #: simple-download-monitor/includes/sdm-logs-list-table.php:129
773
  msgid "Entries Deleted!"
774
  msgstr ""
775
 
776
- #: simple-download-monitor/includes/sdm-logs-list-table.php:131
777
- #: simple-download-monitor/includes/sdm-logs-list-table.php:153
778
  msgid "Error"
779
  msgstr ""
780
 
781
- #: simple-download-monitor/includes/sdm-logs-list-table.php:151
782
  msgid "Entry Deleted!"
783
  msgstr ""
784
 
785
- #: simple-download-monitor/includes/sdm-search-shortcode-handler.php:65
786
  msgid "Showing search results for "
787
  msgstr ""
788
 
789
- #: simple-download-monitor/includes/sdm-search-shortcode-handler.php:66
790
  msgid "Number of items found: "
791
  msgstr ""
792
 
793
- #: simple-download-monitor/includes/sdm-search-shortcode-handler.php:67
794
  msgid "Keywords searched: "
795
  msgstr ""
796
 
797
- #: simple-download-monitor/includes/sdm-search-shortcode-handler.php:70
798
  msgid "Nothing found for "
799
  msgstr ""
800
 
801
- #: simple-download-monitor/includes/sdm-utility-functions.php:9
802
  msgid "Green"
803
  msgstr ""
804
 
805
- #: simple-download-monitor/includes/sdm-utility-functions.php:10
806
  msgid "Blue"
807
  msgstr ""
808
 
809
- #: simple-download-monitor/includes/sdm-utility-functions.php:11
810
  msgid "Purple"
811
  msgstr ""
812
 
813
- #: simple-download-monitor/includes/sdm-utility-functions.php:12
814
  msgid "Teal"
815
  msgstr ""
816
 
817
- #: simple-download-monitor/includes/sdm-utility-functions.php:13
818
  msgid "Dark Blue"
819
  msgstr ""
820
 
821
- #: simple-download-monitor/includes/sdm-utility-functions.php:14
822
  msgid "Black"
823
  msgstr ""
824
 
825
- #: simple-download-monitor/includes/sdm-utility-functions.php:15
826
  msgid "Grey"
827
  msgstr ""
828
 
829
- #: simple-download-monitor/includes/sdm-utility-functions.php:16
830
  msgid "Pink"
831
  msgstr ""
832
 
833
- #: simple-download-monitor/includes/sdm-utility-functions.php:17
834
  msgid "Orange"
835
  msgstr ""
836
 
837
- #: simple-download-monitor/includes/sdm-utility-functions.php:18
838
  msgid "White"
839
  msgstr ""
840
 
841
- #: simple-download-monitor/includes/sdm-utility-functions.php:69
842
  msgid "Enter Password to Download:"
843
  msgstr ""
 
 
 
 
 
 
 
 
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"
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 "
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 ""
main.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Simple Download Monitor
4
  * Plugin URI: https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin
5
  * Description: Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
6
- * Version: 3.6.1
7
  * Author: Tips and Tricks HQ, Ruhul Amin, Josh Lobe
8
  * Author URI: https://www.tipsandtricks-hq.com/development-center
9
  * License: GPL2
@@ -15,7 +15,7 @@ if (!defined('ABSPATH')) {
15
  exit;
16
  }
17
 
18
- define('WP_SIMPLE_DL_MONITOR_VERSION', '3.6.1');
19
  define('WP_SIMPLE_DL_MONITOR_DIR_NAME', dirname(plugin_basename(__FILE__)));
20
  define('WP_SIMPLE_DL_MONITOR_URL', plugins_url('', __FILE__));
21
  define('WP_SIMPLE_DL_MONITOR_PATH', plugin_dir_path(__FILE__));
@@ -77,7 +77,7 @@ add_action('plugins_loaded', 'sdm_plugins_loaded_tasks');
77
 
78
  function sdm_plugins_loaded_tasks() {
79
  //Load language
80
- load_plugin_textdomain('simple-download-monitor', false, dirname(plugin_basename(__FILE__)) . '/langs/');
81
 
82
  //Handle db upgrade stuff
83
  sdm_db_update_check();
@@ -334,9 +334,9 @@ class simpleDownloadManager {
334
  echo '<br /><br />';
335
  _e('Steps to upload a file or choose one from your media library:', 'simple-download-monitor');
336
  echo '<ol>';
337
- echo '<li>Hit the "Select File" button.</li>';
338
- echo '<li>Upload a new file or choose an existing one from your media library.</li>';
339
- echo '<li>Click the "Insert" button, this will populate the uploaded file\'s URL in the above text field.</li>';
340
  echo '</ol>';
341
 
342
  wp_nonce_field('sdm_upload_box_nonce', 'sdm_upload_box_nonce_check');
@@ -464,7 +464,7 @@ class simpleDownloadManager {
464
  echo "<input type='text' class='code' onfocus='this.select();' readonly='readonly' value='" . $shortcode_text . "' size='40'>";
465
 
466
  echo '<br /><br />';
467
- echo 'Read the full shortcode usage documentation <a href="https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin" target="_blank">here</a>.';
468
  }
469
 
470
  public function sdm_save_description_meta_data($post_id) { // Save Description metabox
@@ -571,6 +571,7 @@ class simpleDownloadManager {
571
 
572
  //add reCAPTCHA section
573
  add_settings_section('recaptcha_options', __('Google Captcha (reCAPTCHA)', 'simple-download-monitor'), array($this, 'recaptcha_options_cb'), 'recaptcha_options_section');
 
574
 
575
  add_settings_section('sdm_colors', __('Colors', 'simple-download-monitor'), array($this, 'sdm_colors_cb'), 'sdm_colors_section');
576
  add_settings_section('sdm_debug', __('Debug', 'simple-download-monitor'), array($this, 'sdm_debug_cb'), 'sdm_debug_section');
@@ -596,7 +597,10 @@ class simpleDownloadManager {
596
  add_settings_field('recaptcha_enable', __('Enable reCAPTCHA', 'simple-download-monitor'), array($this, 'recaptcha_enable_cb'), 'recaptcha_options_section', 'recaptcha_options');
597
  add_settings_field('recaptcha_site_key', __('Site Key', 'simple-download-monitor'), array($this, 'recaptcha_site_key_cb'), 'recaptcha_options_section', 'recaptcha_options');
598
  add_settings_field('recaptcha_secret_key', __('Secret Key', 'simple-download-monitor'), array($this, 'recaptcha_secret_key_cb'), 'recaptcha_options_section', 'recaptcha_options');
599
-
 
 
 
600
  }
601
 
602
  public function general_options_cb() {
@@ -632,6 +636,10 @@ class simpleDownloadManager {
632
  _e('Google Captcha (reCAPTCHA) options', 'simple-download-monitor');
633
  }
634
 
 
 
 
 
635
  public function recaptcha_enable_cb() {
636
  $main_opts = get_option('sdm_advanced_options');
637
  echo '<input name="sdm_advanced_options[recaptcha_enable]" id="recaptcha_enable" type="checkbox" ' . checked(1, isset($main_opts['recaptcha_enable']), false) . ' /> ';
@@ -735,6 +743,18 @@ class simpleDownloadManager {
735
  __(' to reset log file.', 'simple-download-monitor') . '</p></label>';
736
  }
737
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  }
739
 
740
  //End of simpleDownloadManager class
3
  * Plugin Name: Simple Download Monitor
4
  * Plugin URI: https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin
5
  * Description: Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
6
+ * Version: 3.6.3
7
  * Author: Tips and Tricks HQ, Ruhul Amin, Josh Lobe
8
  * Author URI: https://www.tipsandtricks-hq.com/development-center
9
  * License: GPL2
15
  exit;
16
  }
17
 
18
+ define('WP_SIMPLE_DL_MONITOR_VERSION', '3.6.3');
19
  define('WP_SIMPLE_DL_MONITOR_DIR_NAME', dirname(plugin_basename(__FILE__)));
20
  define('WP_SIMPLE_DL_MONITOR_URL', plugins_url('', __FILE__));
21
  define('WP_SIMPLE_DL_MONITOR_PATH', plugin_dir_path(__FILE__));
77
 
78
  function sdm_plugins_loaded_tasks() {
79
  //Load language
80
+ load_plugin_textdomain('simple-download-monitor', false, dirname(plugin_basename(__FILE__)) . '/languages/');
81
 
82
  //Handle db upgrade stuff
83
  sdm_db_update_check();
334
  echo '<br /><br />';
335
  _e('Steps to upload a file or choose one from your media library:', 'simple-download-monitor');
336
  echo '<ol>';
337
+ echo '<li>' . __('Hit the "Select File" button.', 'simple-download-monitor') . '</li>';
338
+ echo '<li>' . __('Upload a new file or choose an existing one from your media library.', 'simple-download-monitor') . '</li>';
339
+ echo '<li>' . __('Click the "Insert" button, this will populate the uploaded file\'s URL in the above text field.', 'simple-download-monitor') . '</li>';
340
  echo '</ol>';
341
 
342
  wp_nonce_field('sdm_upload_box_nonce', 'sdm_upload_box_nonce_check');
464
  echo "<input type='text' class='code' onfocus='this.select();' readonly='readonly' value='" . $shortcode_text . "' size='40'>";
465
 
466
  echo '<br /><br />';
467
+ _e('Read the full shortcode usage documentation <a href="https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin" target="_blank">here</a>.', 'simple-download-monitor');
468
  }
469
 
470
  public function sdm_save_description_meta_data($post_id) { // Save Description metabox
571
 
572
  //add reCAPTCHA section
573
  add_settings_section('recaptcha_options', __('Google Captcha (reCAPTCHA)', 'simple-download-monitor'), array($this, 'recaptcha_options_cb'), 'recaptcha_options_section');
574
+ add_settings_section('termscond_options', __('Terms and Conditions', 'simple-download-monitor'), array($this, 'termscond_options_cb'), 'termscond_options_section');
575
 
576
  add_settings_section('sdm_colors', __('Colors', 'simple-download-monitor'), array($this, 'sdm_colors_cb'), 'sdm_colors_section');
577
  add_settings_section('sdm_debug', __('Debug', 'simple-download-monitor'), array($this, 'sdm_debug_cb'), 'sdm_debug_section');
597
  add_settings_field('recaptcha_enable', __('Enable reCAPTCHA', 'simple-download-monitor'), array($this, 'recaptcha_enable_cb'), 'recaptcha_options_section', 'recaptcha_options');
598
  add_settings_field('recaptcha_site_key', __('Site Key', 'simple-download-monitor'), array($this, 'recaptcha_site_key_cb'), 'recaptcha_options_section', 'recaptcha_options');
599
  add_settings_field('recaptcha_secret_key', __('Secret Key', 'simple-download-monitor'), array($this, 'recaptcha_secret_key_cb'), 'recaptcha_options_section', 'recaptcha_options');
600
+
601
+ //add Terms & Condition section fields
602
+ add_settings_field('termscond_enable', __('Enable Terms and Conditions', 'simple-download-monitor'), array($this, 'termscond_enable_cb'), 'termscond_options_section', 'termscond_options');
603
+ add_settings_field('termscond_url', __('Terms Page URL', 'simple-download-monitor'), array($this, 'termscond_url_cb'), 'termscond_options_section', 'termscond_options');
604
  }
605
 
606
  public function general_options_cb() {
636
  _e('Google Captcha (reCAPTCHA) options', 'simple-download-monitor');
637
  }
638
 
639
+ public function termscond_options_cb() {
640
+
641
+ }
642
+
643
  public function recaptcha_enable_cb() {
644
  $main_opts = get_option('sdm_advanced_options');
645
  echo '<input name="sdm_advanced_options[recaptcha_enable]" id="recaptcha_enable" type="checkbox" ' . checked(1, isset($main_opts['recaptcha_enable']), false) . ' /> ';
743
  __(' to reset log file.', 'simple-download-monitor') . '</p></label>';
744
  }
745
 
746
+ public function termscond_enable_cb() {
747
+ $main_opts = get_option('sdm_advanced_options');
748
+ echo '<input name="sdm_advanced_options[termscond_enable]" id="termscond_enable" type="checkbox" ' . checked(1, isset($main_opts['termscond_enable']), false) . ' /> ';
749
+ echo '<p class="description">' . __('You can use this option to make the visitors agree to your terms before they can download the item.', 'simple-download-monitor') . '</p>';
750
+ }
751
+
752
+ public function termscond_url_cb() {
753
+ $main_opts = get_option('sdm_advanced_options');
754
+ $value = isset($main_opts['termscond_url']) ? $main_opts['termscond_url'] : '';
755
+ echo '<input size="100" name="sdm_advanced_options[termscond_url]" id="termscond_url" type="text" value="'.$value.'" /> ';
756
+ echo '<p class="description">' . __('Enter the URL of your terms and conditions page.', 'simple-download-monitor') . '</p>';
757
+ }
758
  }
759
 
760
  //End of simpleDownloadManager class
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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: 4.9
7
- Stable tag: 3.6.1
8
  License: GPLv2 or later
9
 
10
  Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
@@ -69,6 +69,7 @@ https://www.youtube.com/watch?v=utYIH0fILuQ
69
  * Option to restrict downloads to logged-in users only.
70
  * Option to ignore download count from bots.
71
  * Option to add Google reCAPTCHA to your download buttons.
 
72
 
73
  View more details on the [download monitor plugin](https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin) page.
74
 
@@ -180,6 +181,13 @@ For screenshots please visit the [download monitor plugin page](https://www.tips
180
 
181
  == Changelog ==
182
 
 
 
 
 
 
 
 
183
  = 3.6.1 =
184
  - Tweaked a newly added function's parameter to make it compatible with an older PHP version.
185
 
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: 4.9
7
+ Stable tag: 3.6.3
8
  License: GPLv2 or later
9
 
10
  Easily manage downloadable files and monitor downloads of your digital files from your WordPress site.
69
  * Option to restrict downloads to logged-in users only.
70
  * Option to ignore download count from bots.
71
  * Option to add Google reCAPTCHA to your download buttons.
72
+ * Option to add Terms and Condtions to your download buttons.
73
 
74
  View more details on the [download monitor plugin](https://www.tipsandtricks-hq.com/simple-wordpress-download-monitor-plugin) page.
75
 
181
 
182
  == Changelog ==
183
 
184
+ = 3.6.3 =
185
+ - German translation file updated. Thanks to Thorsten.
186
+ - When there are multiple download now buttons on a page and the terms checkbox is enabled, it needs to be accepted on every download button.
187
+
188
+ = 3.6.2 =
189
+ - Added new feature that allows you to show a terms and conditions checkbox for the download buttons.
190
+
191
  = 3.6.1 =
192
  - Tweaked a newly added function's parameter to make it compatible with an older PHP version.
193
 
sdm-post-type-and-taxonomy.php CHANGED
@@ -18,7 +18,7 @@ function sdm_register_post_type() {
18
  'parent_item_colon' => __('Parent Download', 'simple-download-monitor'),
19
  'menu_name' => __('Downloads', 'simple-download-monitor')
20
  );
21
-
22
  $sdm_permalink_base = 'sdm_downloads'; //TODO - add an option to configure in the settings maybe?
23
  $sdm_slug = untrailingslashit($sdm_permalink_base);
24
  $args = array(
@@ -43,8 +43,8 @@ function sdm_create_taxonomies() {
43
 
44
  //***** Create CATEGORIES Taxonomy
45
  $labels_tags = array(
46
- 'name' => _x('Download Categories', 'simple-download-monitor'),
47
- 'singular_name' => _x('Download Category', 'simple-download-monitor'),
48
  'search_items' => __('Search Categories', 'simple-download-monitor'),
49
  'all_items' => __('All Categories', 'simple-download-monitor'),
50
  'parent_item' => __('Categories Genre', 'simple-download-monitor'),
@@ -67,8 +67,8 @@ function sdm_create_taxonomies() {
67
 
68
  //***** Create TAGS Taxonomy
69
  $labels_tags = array(
70
- 'name' => _x('Download Tags', 'simple-download-monitor'),
71
- 'singular_name' => _x('Download Tag', 'simple-download-monitor'),
72
  'search_items' => __('Search Tags', 'simple-download-monitor'),
73
  'all_items' => __('All Tags', 'simple-download-monitor'),
74
  'parent_item' => __('Tags Genre', 'simple-download-monitor'),
18
  'parent_item_colon' => __('Parent Download', 'simple-download-monitor'),
19
  'menu_name' => __('Downloads', 'simple-download-monitor')
20
  );
21
+
22
  $sdm_permalink_base = 'sdm_downloads'; //TODO - add an option to configure in the settings maybe?
23
  $sdm_slug = untrailingslashit($sdm_permalink_base);
24
  $args = array(
43
 
44
  //***** Create CATEGORIES Taxonomy
45
  $labels_tags = array(
46
+ 'name' => __('Download Categories', 'simple-download-monitor'),
47
+ 'singular_name' => __('Download Category', 'simple-download-monitor'),
48
  'search_items' => __('Search Categories', 'simple-download-monitor'),
49
  'all_items' => __('All Categories', 'simple-download-monitor'),
50
  'parent_item' => __('Categories Genre', 'simple-download-monitor'),
67
 
68
  //***** Create TAGS Taxonomy
69
  $labels_tags = array(
70
+ 'name' => __('Download Tags', 'simple-download-monitor'),
71
+ 'singular_name' => __('Download Tag', 'simple-download-monitor'),
72
  'search_items' => __('Search Tags', 'simple-download-monitor'),
73
  'all_items' => __('All Tags', 'simple-download-monitor'),
74
  'parent_item' => __('Tags Genre', 'simple-download-monitor'),
sdm-post-type-content-handler.php CHANGED
@@ -46,16 +46,23 @@ function filter_sdm_post_type_content($content) {
46
  $homepage = get_bloginfo('url');
47
  $download_url = $homepage . '/?smd_process_download=1&download_id=' . $id;
48
  $download_button_code = '<a href="' . $download_url . '" class="sdm_download ' . $def_color . '" title="' . $isset_item_title . '">' . $button_text_string . '</a>';
49
-
50
- //Check if reCAPTCHA enabled
51
  $main_advanced_opts = get_option('sdm_advanced_options');
 
 
 
 
 
 
 
 
52
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
53
  if ($recaptcha_enable && $cpt_is_password == 'no') {
54
- $download_button_code = sdm_get_download_form_with_recaptcha($id,array(),'sdm_download ' . $def_color);
55
  }
56
 
57
  if ($cpt_is_password !== 'no') {//This is a password protected download so replace the download now button with password requirement
58
- $download_button_code = sdm_get_password_entry_form($id,array(),'sdm_download ' . $def_color);
59
  }
60
 
61
  // Check if we only allow the download for logged-in users
46
  $homepage = get_bloginfo('url');
47
  $download_url = $homepage . '/?smd_process_download=1&download_id=' . $id;
48
  $download_button_code = '<a href="' . $download_url . '" class="sdm_download ' . $def_color . '" title="' . $isset_item_title . '">' . $button_text_string . '</a>';
49
+
 
50
  $main_advanced_opts = get_option('sdm_advanced_options');
51
+
52
+ //Check if Terms & Condition enabled
53
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
54
+ if ($termscond_enable) {
55
+ $download_button_code = sdm_get_download_form_with_termsncond($id, array(),'sdm_download ' . $def_color);
56
+ }
57
+
58
+ //Check if reCAPTCHA enabled
59
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
60
  if ($recaptcha_enable && $cpt_is_password == 'no') {
61
+ $download_button_code = sdm_get_download_form_with_recaptcha($id, array(),'sdm_download ' . $def_color);
62
  }
63
 
64
  if ($cpt_is_password !== 'no') {//This is a password protected download so replace the download now button with password requirement
65
+ $download_button_code = sdm_get_password_entry_form($id, array(),'sdm_download ' . $def_color);
66
  }
67
 
68
  // Check if we only allow the download for logged-in users
sdm-shortcodes.php CHANGED
@@ -94,8 +94,15 @@ function sdm_create_download_shortcode( $atts ) {
94
  $download_url = $homepage . '/?smd_process_download=1&download_id=' . $id;
95
  $download_button_code = '<a href="' . $download_url . '" class="sdm_download ' . $color . '" title="' . $item_title . '" target="' . $window_target . '">' . $button_text . '</a>';
96
 
97
- //Check if reCAPTCHA enabled
98
  $main_advanced_opts = get_option('sdm_advanced_options');
 
 
 
 
 
 
 
 
99
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
100
  if ($recaptcha_enable && $cpt_is_password == 'no') {
101
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $shortcode_atts, 'sdm_download ' . $color);
@@ -271,8 +278,16 @@ function sdm_handle_category_shortcode( $args ) {
271
  // Setup download button code
272
  $download_button_code = '<a href="' . $download_url . '" class="sdm_download ' . $def_color . '" title="' . $item_title . '" target="' . $window_target . '">' . $button_text . '</a>';
273
 
274
- //Check if reCAPTCHA enabled
275
  $main_advanced_opts = get_option('sdm_advanced_options');
 
 
 
 
 
 
 
 
276
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
277
  if ($recaptcha_enable) {
278
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $args, 'sdm_download ' . $def_color);
94
  $download_url = $homepage . '/?smd_process_download=1&download_id=' . $id;
95
  $download_button_code = '<a href="' . $download_url . '" class="sdm_download ' . $color . '" title="' . $item_title . '" target="' . $window_target . '">' . $button_text . '</a>';
96
 
 
97
  $main_advanced_opts = get_option('sdm_advanced_options');
98
+
99
+ //Check if Terms & Condition enabled
100
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
101
+ if ($termscond_enable) {
102
+ $download_button_code = sdm_get_download_form_with_termsncond($id, $shortcode_atts,'sdm_download ' . $color);
103
+ }
104
+
105
+ //Check if reCAPTCHA enabled
106
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
107
  if ($recaptcha_enable && $cpt_is_password == 'no') {
108
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $shortcode_atts, 'sdm_download ' . $color);
278
  // Setup download button code
279
  $download_button_code = '<a href="' . $download_url . '" class="sdm_download ' . $def_color . '" title="' . $item_title . '" target="' . $window_target . '">' . $button_text . '</a>';
280
 
281
+
282
  $main_advanced_opts = get_option('sdm_advanced_options');
283
+
284
+ //Check if Terms & Condition enabled
285
+ $termscond_enable = isset($main_advanced_opts['termscond_enable']) ? true : false;
286
+ if ($termscond_enable) {
287
+ $download_button_code = sdm_get_download_form_with_termsncond($id, $args,'sdm_download ' . $def_color);
288
+ }
289
+
290
+ //Check if reCAPTCHA enabled
291
  $recaptcha_enable = isset($main_advanced_opts['recaptcha_enable']) ? true : false;
292
  if ($recaptcha_enable) {
293
  $download_button_code = sdm_get_download_form_with_recaptcha($id, $args, 'sdm_download ' . $def_color);