WooCommerce PDF Invoices & Packing Slips - Version 2.10.2

Version Description

  • New: Print shipping phone number when available (and enabled in the settings)
  • New: Show inline warning on the settings page when the logo is bigger than 600dpi
  • Fix: Prevent fatal error when trying to log notes to refund orders
  • Fix: MailPoet email compatibility notice
  • Translations: Updated translation template (POT)
  • Translations: Removed bundled translations for language packs available on wordpress.org
  • Marked tested up to WooCommerce 5.9
Download this release

Release Info

Developer pomegranate
Plugin Icon 128x128 WooCommerce PDF Invoices & Packing Slips
Version 2.10.2
Comparing to
See all releases

Code changes from version 2.10.1 to 2.10.2

Files changed (31) hide show
  1. assets/js/media-upload.js +48 -28
  2. assets/js/media-upload.min.js +1 -1
  3. includes/class-wcpdf-main.php +9 -1
  4. includes/class-wcpdf-settings-callbacks.php +46 -32
  5. includes/class-wcpdf-settings.php +23 -0
  6. includes/documents/abstract-wcpdf-order-document-methods.php +51 -6
  7. includes/views/dompdf-status.php +8 -2
  8. languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.mo +0 -0
  9. languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.po +1654 -1684
  10. languages/woocommerce-pdf-invoices-packing-slips-da_DK.mo +0 -0
  11. languages/woocommerce-pdf-invoices-packing-slips-da_DK.po +1592 -1762
  12. languages/woocommerce-pdf-invoices-packing-slips-de_DE.mo +0 -0
  13. languages/woocommerce-pdf-invoices-packing-slips-de_DE.po +1631 -1745
  14. languages/woocommerce-pdf-invoices-packing-slips-de_DE_formal.mo +0 -0
  15. languages/woocommerce-pdf-invoices-packing-slips-de_DE_formal.po +1629 -1774
  16. languages/woocommerce-pdf-invoices-packing-slips-en_AU.mo +0 -0
  17. languages/woocommerce-pdf-invoices-packing-slips-en_AU.po +1562 -1545
  18. languages/woocommerce-pdf-invoices-packing-slips-es_ES.mo +0 -0
  19. languages/woocommerce-pdf-invoices-packing-slips-es_ES.po +0 -1742
  20. languages/woocommerce-pdf-invoices-packing-slips-et.mo +0 -0
  21. languages/woocommerce-pdf-invoices-packing-slips-et.po +1592 -1706
  22. languages/woocommerce-pdf-invoices-packing-slips-fi.mo +0 -0
  23. languages/woocommerce-pdf-invoices-packing-slips-fi.po +1589 -1759
  24. languages/woocommerce-pdf-invoices-packing-slips-fr_FR.mo +0 -0
  25. languages/woocommerce-pdf-invoices-packing-slips-fr_FR.po +0 -1779
  26. languages/woocommerce-pdf-invoices-packing-slips-hr.mo +0 -0
  27. languages/woocommerce-pdf-invoices-packing-slips-hr.po +1610 -1724
  28. languages/woocommerce-pdf-invoices-packing-slips-hu_HU.mo +0 -0
  29. languages/woocommerce-pdf-invoices-packing-slips-hu_HU.po +98 -125
  30. languages/woocommerce-pdf-invoices-packing-slips-id_ID.mo +0 -0
  31. languages/woocommerce-pdf-invoices-packing-slips-id_ID.po +819 -1725
assets/js/media-upload.js CHANGED
@@ -5,23 +5,17 @@ jQuery(document).ready(function($) {
5
 
6
  // Uploading files
7
  var file_frame;
8
- $('#wpo-wcpdf-settings, .wpo-wcpdf-setup').on('click', '.wpo_upload_image_button', function( event ){
9
- // get corresponding input fields
10
- $row = $(this).parent();
11
- $id = $row.find('input#header_logo');
12
- $logo = $row.find('img#img-header_logo');
13
-
14
- // get remove button text
15
- remove_button_text = $( this ).data( 'remove_button_text' );
16
-
17
  event.preventDefault();
 
 
 
18
 
19
  // If the media frame already exists, reopen it.
20
  if ( file_frame ) {
21
  file_frame.open();
22
  return;
23
  }
24
-
25
 
26
  // Create the media frame.
27
  file_frame = wp.media.frames.file_frame = wp.media({
@@ -34,35 +28,61 @@ jQuery(document).ready(function($) {
34
 
35
  // When an image is selected, run a callback.
36
  file_frame.on( 'select', function() {
 
 
 
 
37
  // We set multiple to false so only get one image from the uploader
38
- attachment = file_frame.state().get('selection').first().toJSON();
39
-
40
- // set the value of the input field to the attachment id
41
- $id.val(attachment.id);
42
 
43
- if ( $logo.length == 0 ) {
44
- // show image & remove button
45
- attachment_img = '<img src="'+attachment.url+'" style="display:block" id="img-header_logo"/>';
46
- remove_button = '<span class="button wpo_remove_image_button" data-input_id="header_logo">'+remove_button_text+'</span>';
47
- $id.before(attachment_img+remove_button);
48
- } else {
49
- $logo.attr("src", attachment.url );
50
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  });
52
 
53
  // Finally, open the modal
54
  file_frame.open();
55
  });
56
 
57
- $('#wpo-wcpdf-settings').on('click', '.wpo_remove_image_button', function( event ){
58
- // Get corresponding input fields
59
- $row = $(this).parent();
60
- $id = $row.find('input#header_logo');
61
- $logo = $row.find('img#img-header_logo');
62
 
63
- $id.val('');
 
64
  $logo.remove();
65
  $( this ).remove();
66
- $( '.attachment-resolution' ).remove();
67
  });
68
  });
5
 
6
  // Uploading files
7
  var file_frame;
8
+ $( '#wpo-wcpdf-settings, .wpo-wcpdf-setup' ).on( 'click', '.wpo_upload_image_button', function( event ){
 
 
 
 
 
 
 
 
9
  event.preventDefault();
10
+
11
+ // get input wrapper
12
+ let $settings_wrapper = $(this).parent();
13
 
14
  // If the media frame already exists, reopen it.
15
  if ( file_frame ) {
16
  file_frame.open();
17
  return;
18
  }
 
19
 
20
  // Create the media frame.
21
  file_frame = wp.media.frames.file_frame = wp.media({
28
 
29
  // When an image is selected, run a callback.
30
  file_frame.on( 'select', function() {
31
+ // get target elements
32
+ let $input = $settings_wrapper.find( 'input#header_logo' );
33
+ let $logo = $settings_wrapper.find( 'img#img-header_logo' );
34
+
35
  // We set multiple to false so only get one image from the uploader
36
+ let attachment = file_frame.state().get( 'selection' ).first().toJSON();
 
 
 
37
 
38
+ // set the value of the input field to the attachment id and set the image until we have an ajax response
39
+ $input.val( attachment.id );
40
+ if ( $logo.length ) {
41
+ $logo.attr( 'src', attachment.url );
 
 
 
42
  }
43
+ $( '.attachment-resolution, .attachment-resolution-warning' ).remove();
44
+
45
+ // dim until we have a response
46
+ $settings_wrapper.css( 'opacity', '0.25' );
47
+
48
+ let data = {
49
+ security: $input.data( 'ajax_nonce' ),
50
+ action: 'wpo_wcpdf_get_media_upload_setting_html',
51
+ args: $input.data( 'settings_callback_args' ),
52
+ attachment_id: attachment.id,
53
+ };
54
+
55
+ xhr = $.ajax({
56
+ type: 'POST',
57
+ url: wpo_wcpdf_admin.ajaxurl,
58
+ data: data,
59
+ success: function( response ) {
60
+ if ( response && typeof response.success != 'undefined' && response.success === true ) {
61
+ $settings_wrapper.html( response.data );
62
+ }
63
+ $settings_wrapper.removeAttr( 'style' );
64
+ },
65
+ error: function (xhr, ajaxOptions, thrownError) {
66
+ $settings_wrapper.removeAttr( 'style' );
67
+ }
68
+ });
69
+
70
  });
71
 
72
  // Finally, open the modal
73
  file_frame.open();
74
  });
75
 
76
+ $( '#wpo-wcpdf-settings' ).on( 'click', '.wpo_remove_image_button', function( event ){
77
+ // get source & target elements
78
+ let $settings_wrapper = $(this).parent();
79
+ let $input = $settings_wrapper.find( 'input#header_logo' );
80
+ let $logo = $settings_wrapper.find( 'img#img-header_logo' );
81
 
82
+ // clear all inputs & warnings
83
+ $input.val( '' );
84
  $logo.remove();
85
  $( this ).remove();
86
+ $( '.attachment-resolution, .attachment-resolution-warning' ).remove();
87
  });
88
  });
assets/js/media-upload.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(a){var b;a("#wpo-wcpdf-settings, .wpo-wcpdf-setup").on("click",".wpo_upload_image_button",function(c){return $row=a(this).parent(),$id=$row.find("input#header_logo"),$logo=$row.find("img#img-header_logo"),remove_button_text=a(this).data("remove_button_text"),c.preventDefault(),b?void b.open():void(b=wp.media.frames.file_frame=wp.media({title:a(this).data("uploader_title"),button:{text:a(this).data("uploader_button_text")},multiple:!1}),b.on("select",function(){attachment=b.state().get("selection").first().toJSON(),$id.val(attachment.id),0==$logo.length?(attachment_img="<img src=\""+attachment.url+"\" style=\"display:block\" id=\"img-header_logo\"/>",remove_button="<span class=\"button wpo_remove_image_button\" data-input_id=\"header_logo\">"+remove_button_text+"</span>",$id.before(attachment_img+remove_button)):$logo.attr("src",attachment.url)}),b.open())}),a("#wpo-wcpdf-settings").on("click",".wpo_remove_image_button",function(){$row=a(this).parent(),$id=$row.find("input#header_logo"),$logo=$row.find("img#img-header_logo"),$id.val(""),$logo.remove(),a(this).remove(),a(".attachment-resolution").remove()})});
1
+ jQuery(document).ready(function(a){var b;a("#wpo-wcpdf-settings, .wpo-wcpdf-setup").on("click",".wpo_upload_image_button",function(c){c.preventDefault();let d=a(this).parent();return b?void b.open():void(b=wp.media.frames.file_frame=wp.media({title:a(this).data("uploader_title"),button:{text:a(this).data("uploader_button_text")},multiple:!1}),b.on("select",function(){let c=d.find("input#header_logo"),e=d.find("img#img-header_logo"),f=b.state().get("selection").first().toJSON();c.val(f.id),e.length&&e.attr("src",f.url),a(".attachment-resolution, .attachment-resolution-warning").remove(),d.css("opacity","0.25");let g={security:c.data("ajax_nonce"),action:"wpo_wcpdf_get_media_upload_setting_html",args:c.data("settings_callback_args"),attachment_id:f.id};xhr=a.ajax({type:"POST",url:wpo_wcpdf_admin.ajaxurl,data:g,success:function(a){a&&"undefined"!=typeof a.success&&!0===a.success&&d.html(a.data),d.removeAttr("style")},error:function(){d.removeAttr("style")}})}),b.open())}),a("#wpo-wcpdf-settings").on("click",".wpo_remove_image_button",function(){let b=a(this).parent(),c=b.find("input#header_logo"),d=b.find("img#img-header_logo");c.val(""),d.remove(),a(this).remove(),a(".attachment-resolution, .attachment-resolution-warning").remove()})});
includes/class-wcpdf-main.php CHANGED
@@ -981,7 +981,15 @@ class Main {
981
  /* translators: 1. document title, 2. creation source */
982
  $message = __( 'PDF %1$s created via %2$s.', 'woocommerce-pdf-invoices-packing-slips' );
983
  $note = sprintf( $message, $document->get_title(), $created_via );
984
- $order->add_order_note( $note );
 
 
 
 
 
 
 
 
985
  }
986
  }
987
 
981
  /* translators: 1. document title, 2. creation source */
982
  $message = __( 'PDF %1$s created via %2$s.', 'woocommerce-pdf-invoices-packing-slips' );
983
  $note = sprintf( $message, $document->get_title(), $created_via );
984
+
985
+ if( is_callable( array( $order, 'add_order_note' ) ) ) { // order
986
+ $order->add_order_note( $note );
987
+ } elseif ( $document->is_refund( $order ) ) { // refund order
988
+ $order = $document->get_refund_parent( $order );
989
+ if( ! empty( $order ) && is_callable( array( $order, 'add_order_note' ) ) ) {
990
+ $order->add_order_note( $note );
991
+ }
992
+ }
993
  }
994
  }
995
 
includes/class-wcpdf-settings-callbacks.php CHANGED
@@ -17,7 +17,7 @@ class Settings_Callbacks {
17
  */
18
  public function section() {
19
  }
20
-
21
  /**
22
  * Debug section callback.
23
  *
@@ -381,13 +381,25 @@ class Settings_Callbacks {
381
  printf('<img src="%1$s" style="display:block" id="img-%4$s"/>', $attachment_src, $attachment_width, $attachment_height, $id );
382
  if ( !empty($attachment_height) && !empty($in_height) ) {
383
  $attachment_resolution = round(absint($attachment_height)/$in_height);
384
- printf('<div class="attachment-resolution"><p class="description">%s: %sdpi</p></div>', __('Image resolution','woocommerce-pdf-invoices-packing-slips'), $attachment_resolution );
 
 
 
 
 
 
 
 
 
 
 
 
385
  }
386
 
387
- printf('<span class="button wpo_remove_image_button" data-input_id="%1$s">%2$s</span>', $id, $remove_button_text );
388
  }
389
 
390
- printf( '<input id="%1$s" name="%2$s" type="hidden" value="%3$s" />', $id, $setting_name, $current );
391
 
392
  printf( '<span class="button wpo_upload_image_button %4$s" data-uploader_title="%1$s" data-uploader_button_text="%2$s" data-remove_button_text="%3$s" data-input_id="%4$s">%2$s</span>', $uploader_title, $uploader_button_text, $remove_button_text, $id );
393
 
@@ -512,40 +524,42 @@ class Settings_Callbacks {
512
  $args['lang'] = 'default';
513
  }
514
 
515
- if (isset($args['lang'])) {
516
- // i18n settings name
517
- $args['setting_name'] = "{$args['setting_name']}[{$args['lang']}]";
518
- // copy current option value if set
519
-
520
- if ( $args['lang'] == 'default' && !empty($option[$args['id']]) && !isset( $option[$args['id']]['default'] ) ) {
521
- // we're switching back from WPML to normal
522
- // try english first
523
- if ( isset( $option[$args['id']]['en'] ) ) {
524
- $args['current'] = $option[$args['id']]['en'];
525
- } elseif ( is_array( $option[$args['id']] ) ) {
526
- // fallback to the first language if english not found
527
- $first = array_shift($option[$args['id']]);
528
- if (!empty($first)) {
529
- $args['current'] = $first;
 
 
 
 
 
 
 
530
  }
531
- } elseif ( is_string( $option[$args['id']] ) ) {
532
- $args['current'] = $option[$args['id']];
533
  } else {
534
- // nothing, really?
535
- $args['current'] = '';
 
 
 
536
  }
537
  } else {
538
- if ( isset( $option[$args['id']][$args['lang']] ) ) {
539
- $args['current'] = $option[$args['id']][$args['lang']];
540
- } elseif (isset( $option[$args['id']]['default'] )) {
541
- $args['current'] = $option[$args['id']]['default'];
542
  }
543
  }
544
- } else {
545
- // copy current option value if set
546
- if ( isset( $option[$args['id']] ) ) {
547
- $args['current'] = $option[$args['id']];
548
- }
549
  }
550
 
551
  // falback to default or empty if no value in option
17
  */
18
  public function section() {
19
  }
20
+
21
  /**
22
  * Debug section callback.
23
  *
381
  printf('<img src="%1$s" style="display:block" id="img-%4$s"/>', $attachment_src, $attachment_width, $attachment_height, $id );
382
  if ( !empty($attachment_height) && !empty($in_height) ) {
383
  $attachment_resolution = round(absint($attachment_height)/$in_height);
384
+ printf(
385
+ '<div class="attachment-resolution"><p class="description">%s: %sdpi</p></div>',
386
+ __( 'Image resolution', 'woocommerce-pdf-invoices-packing-slips' ),
387
+ $attachment_resolution
388
+ );
389
+
390
+ // warn the user if the image is unnecessarily large
391
+ if ($attachment_resolution > 600 ) {
392
+ printf(
393
+ '<div class="attachment-resolution-warning notice notice-warning inline"><p>%s</p></div>',
394
+ esc_html__( 'The image resolution exceeds the recommended maximum of 600dpi. This will unnecessarily increase the size of your PDF files and could negatively affect performance.', 'woocommerce-pdf-invoices-packing-slips' )
395
+ );
396
+ }
397
  }
398
 
399
+ printf('<span class="button wpo_remove_image_button" data-input_id="%1$s">%2$s</span> ', $id, $remove_button_text );
400
  }
401
 
402
+ printf( '<input id="%1$s" name="%2$s" type="hidden" value="%3$s" data-settings_callback_args="%4$s" data-ajax_nonce="%5$s"/>', $id, $setting_name, $current, esc_attr( json_encode( $args ) ), wp_create_nonce( "wpo_wcpdf_get_media_upload_setting_html" ) );
403
 
404
  printf( '<span class="button wpo_upload_image_button %4$s" data-uploader_title="%1$s" data-uploader_button_text="%2$s" data-remove_button_text="%3$s" data-input_id="%4$s">%2$s</span>', $uploader_title, $uploader_button_text, $remove_button_text, $id );
405
 
524
  $args['lang'] = 'default';
525
  }
526
 
527
+ if ( ! array_key_exists( 'current', $args ) ) {
528
+ if (isset($args['lang'])) {
529
+ // i18n settings name
530
+ $args['setting_name'] = "{$args['setting_name']}[{$args['lang']}]";
531
+ // copy current option value if set
532
+
533
+ if ( $args['lang'] == 'default' && !empty($option[$args['id']]) && !isset( $option[$args['id']]['default'] ) ) {
534
+ // we're switching back from WPML to normal
535
+ // try english first
536
+ if ( isset( $option[$args['id']]['en'] ) ) {
537
+ $args['current'] = $option[$args['id']]['en'];
538
+ } elseif ( is_array( $option[$args['id']] ) ) {
539
+ // fallback to the first language if english not found
540
+ $first = array_shift($option[$args['id']]);
541
+ if (!empty($first)) {
542
+ $args['current'] = $first;
543
+ }
544
+ } elseif ( is_string( $option[$args['id']] ) ) {
545
+ $args['current'] = $option[$args['id']];
546
+ } else {
547
+ // nothing, really?
548
+ $args['current'] = '';
549
  }
 
 
550
  } else {
551
+ if ( isset( $option[$args['id']][$args['lang']] ) ) {
552
+ $args['current'] = $option[$args['id']][$args['lang']];
553
+ } elseif (isset( $option[$args['id']]['default'] )) {
554
+ $args['current'] = $option[$args['id']]['default'];
555
+ }
556
  }
557
  } else {
558
+ // copy current option value if set
559
+ if ( isset( $option[$args['id']] ) ) {
560
+ $args['current'] = $option[$args['id']];
 
561
  }
562
  }
 
 
 
 
 
563
  }
564
 
565
  // falback to default or empty if no value in option
includes/class-wcpdf-settings.php CHANGED
@@ -41,6 +41,9 @@ class Settings {
41
  // AJAX set number store
42
  add_action( 'wp_ajax_wpo_wcpdf_set_next_number', array( $this, 'set_number_store' ) );
43
 
 
 
 
44
  // refresh template path cache each time the general settings are updated
45
  add_action( "update_option_wpo_wcpdf_settings_general", array( $this, 'general_settings_updated' ), 10, 3 );
46
  // migrate old template paths to template IDs before loading settings page
@@ -392,6 +395,7 @@ class Settings {
392
  if ( ! empty( $template_match ) ) {
393
  $this->general_settings['template_path'] = $template_match;
394
  update_option( 'wpo_wcpdf_settings_general', $this->general_settings );
 
395
  wcpdf_log_error( sprintf( __( 'Template setting migrated from %1$s to %2$s', 'woocommerce-pdf-invoices-packing-slips' ), $path, $template_id ), 'info' );
396
  }
397
  }
@@ -425,6 +429,25 @@ class Settings {
425
  return $method;
426
  }
427
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  }
429
 
430
  endif; // class_exists
41
  // AJAX set number store
42
  add_action( 'wp_ajax_wpo_wcpdf_set_next_number', array( $this, 'set_number_store' ) );
43
 
44
+ // AJAX get header logo setting HTML
45
+ add_action( 'wp_ajax_wpo_wcpdf_get_media_upload_setting_html', array( $this, 'get_media_upload_setting_html' ) );
46
+
47
  // refresh template path cache each time the general settings are updated
48
  add_action( "update_option_wpo_wcpdf_settings_general", array( $this, 'general_settings_updated' ), 10, 3 );
49
  // migrate old template paths to template IDs before loading settings page
395
  if ( ! empty( $template_match ) ) {
396
  $this->general_settings['template_path'] = $template_match;
397
  update_option( 'wpo_wcpdf_settings_general', $this->general_settings );
398
+ /* translators: 1. path, 2. template ID */
399
  wcpdf_log_error( sprintf( __( 'Template setting migrated from %1$s to %2$s', 'woocommerce-pdf-invoices-packing-slips' ), $path, $template_id ), 'info' );
400
  }
401
  }
429
  return $method;
430
  }
431
 
432
+ public function get_media_upload_setting_html() {
433
+ check_ajax_referer( 'wpo_wcpdf_get_media_upload_setting_html', 'security' );
434
+ // check permissions
435
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
436
+ wp_send_json_error();
437
+ }
438
+
439
+ // get previous (default) args and preset current
440
+ $args = $_POST['args'];
441
+ $args['current'] = absint( $_POST['attachment_id'] );
442
+
443
+ // get settings HTML
444
+ ob_start();
445
+ $this->callbacks->media_upload( $args );
446
+ $html = ob_get_clean();
447
+
448
+ return wp_send_json_success( $html );
449
+ }
450
+
451
  }
452
 
453
  endif; // class_exists
includes/documents/abstract-wcpdf-order-document-methods.php CHANGED
@@ -122,6 +122,17 @@ abstract class Order_Document_Methods extends Order_Document {
122
  echo $this->get_billing_address();
123
  }
124
 
 
 
 
 
 
 
 
 
 
 
 
125
  /**
126
  * Return/Show billing email
127
  */
@@ -141,22 +152,45 @@ abstract class Order_Document_Methods extends Order_Document {
141
  }
142
 
143
  /**
144
- * Return/Show billing phone
145
  */
146
- public function get_billing_phone() {
147
- $billing_phone = WCX_Order::get_prop( $this->order, 'billing_phone', 'view' );
 
148
 
149
- if ( !$billing_phone && $this->is_refund( $this->order ) ) {
 
150
  // try parent
151
  $parent_order = $this->get_refund_parent( $this->order );
152
- $billing_phone = WCX_Order::get_prop( $parent_order, 'billing_phone', 'view' );
153
  }
154
 
155
- return apply_filters( 'wpo_wcpdf_billing_phone', $billing_phone, $this );
156
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  public function billing_phone() {
158
  echo $this->get_billing_phone();
159
  }
 
 
 
 
160
 
161
  /**
162
  * Return/Show shipping address
@@ -191,6 +225,17 @@ abstract class Order_Document_Methods extends Order_Document {
191
  echo $this->get_shipping_address();
192
  }
193
 
 
 
 
 
 
 
 
 
 
 
 
194
  /**
195
  * Return/Show a custom field
196
  */
122
  echo $this->get_billing_address();
123
  }
124
 
125
+ /**
126
+ * Check whether the billing address should be shown
127
+ */
128
+ public function show_billing_address() {
129
+ if( $this->get_type() != 'packing_slip' ) {
130
+ return true;
131
+ } else {
132
+ return ! empty( $this->settings['display_billing_address'] ) && ( $this->ships_to_different_address() || $this->settings['display_billing_address'] == 'always' );
133
+ }
134
+ }
135
+
136
  /**
137
  * Return/Show billing email
138
  */
152
  }
153
 
154
  /**
155
+ * Return/Show phone by type
156
  */
157
+ public function get_phone( $phone_type = 'billing' ) {
158
+ $phone_type = "{$phone_type}_phone";
159
+ $phone = WCX_Order::get_prop( $this->order, $phone_type, 'view' );
160
 
161
+ // on refund orders
162
+ if ( ! $phone && $this->is_refund( $this->order ) ) {
163
  // try parent
164
  $parent_order = $this->get_refund_parent( $this->order );
165
+ $phone = WCX_Order::get_prop( $parent_order, $phone_type, 'view' );
166
  }
167
 
168
+ return $phone;
169
  }
170
+
171
+ public function get_billing_phone() {
172
+ $phone = $this->get_phone( 'billing' );
173
+
174
+ return apply_filters( "wpo_wcpdf_billing_phone", $phone, $this );
175
+ }
176
+
177
+ public function get_shipping_phone( $fallback_to_billing = false ) {
178
+ $phone = $this->get_phone( 'shipping' );
179
+
180
+ if( $fallback_to_billing && empty( $phone ) ) {
181
+ $phone = $this->get_billing_phone();
182
+ }
183
+
184
+ return apply_filters( "wpo_wcpdf_shipping_phone", $phone, $this );
185
+ }
186
+
187
  public function billing_phone() {
188
  echo $this->get_billing_phone();
189
  }
190
+
191
+ public function shipping_phone( $fallback_to_billing = false ) {
192
+ echo $this->get_shipping_phone( $fallback_to_billing );
193
+ }
194
 
195
  /**
196
  * Return/Show shipping address
225
  echo $this->get_shipping_address();
226
  }
227
 
228
+ /**
229
+ * Check whether the shipping address should be shown
230
+ */
231
+ public function show_shipping_address() {
232
+ if( $this->get_type() != 'packing_slip' ) {
233
+ return ! empty( $this->settings['display_shipping_address'] ) && ( $this->ships_to_different_address() || $this->settings['display_shipping_address'] == 'always' );
234
+ } else {
235
+ return true;
236
+ }
237
+ }
238
+
239
  /**
240
  * Return/Show a custom field
241
  */
includes/views/dompdf-status.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  $memory_limit = function_exists( 'wc_let_to_num' )?wc_let_to_num( WP_MEMORY_LIMIT ):woocommerce_let_to_num( WP_MEMORY_LIMIT );
7
  $php_mem_limit = function_exists( 'memory_get_usage' ) ? @ini_get( 'memory_limit' ) : '-';
8
 
9
- $server_configs = array(
10
  'PHP version' => array(
11
  'required' => __( '7.1+ (7.4 or higher recommended)', 'woocommerce-pdf-invoices-packing-slips' ),
12
  'value' => PHP_VERSION,
@@ -71,7 +71,13 @@ $server_configs = array(
71
  'result' => ini_get('allow_url_fopen'),
72
  'fallback' => __( 'allow_url_fopen disabled', 'woocommerce-pdf-invoices-packing-slips' ),
73
  ),
74
- );
 
 
 
 
 
 
75
 
76
  if ( ( $xc = extension_loaded('xcache') ) || ( $apc = extension_loaded('apc') ) || ( $zop = extension_loaded('Zend OPcache') ) || ( $op = extension_loaded('opcache') ) ) {
77
  $server_configs['opcache']['result'] = true;
6
  $memory_limit = function_exists( 'wc_let_to_num' )?wc_let_to_num( WP_MEMORY_LIMIT ):woocommerce_let_to_num( WP_MEMORY_LIMIT );
7
  $php_mem_limit = function_exists( 'memory_get_usage' ) ? @ini_get( 'memory_limit' ) : '-';
8
 
9
+ $server_configs = apply_filters( 'wpo_wcpdf_server_configs' , array(
10
  'PHP version' => array(
11
  'required' => __( '7.1+ (7.4 or higher recommended)', 'woocommerce-pdf-invoices-packing-slips' ),
12
  'value' => PHP_VERSION,
71
  'result' => ini_get('allow_url_fopen'),
72
  'fallback' => __( 'allow_url_fopen disabled', 'woocommerce-pdf-invoices-packing-slips' ),
73
  ),
74
+ 'base64_decode' => array (
75
+ 'required' => __( 'To compress and decompress font data', 'woocommerce-pdf-invoices-packing-slips' ),
76
+ 'value' => null,
77
+ 'result' => function_exists('base64_decode'),
78
+ 'fallback' => __( 'base64_decode disabled', 'woocommerce-pdf-invoices-packing-slips' ),
79
+ ),
80
+ ) );
81
 
82
  if ( ( $xc = extension_loaded('xcache') ) || ( $apc = extension_loaded('apc') ) || ( $zop = extension_loaded('Zend OPcache') ) || ( $op = extension_loaded('opcache') ) ) {
83
  $server_configs['opcache']['result'] = true;
languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.po CHANGED
@@ -1,1684 +1,1654 @@
1
- # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in Czech
2
- # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
- "Stable (latest release)\n"
7
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
8
- "invoices-packing-slips\n"
9
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
10
- "PO-Revision-Date: 2021-07-26 17:14+0200\n"
11
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
12
- "Language-Team: \n"
13
- "Language: cs_CZ\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
- "X-Generator: Poedit 3.0\n"
19
-
20
- #. Plugin Name of the plugin
21
- msgid "WooCommerce PDF Invoices & Packing Slips"
22
- msgstr "WooCommerce PDF faktury & dodací listy"
23
-
24
- #. Plugin URI of the plugin
25
- #. Author URI of the plugin
26
- msgid "http://www.wpovernight.com"
27
- msgstr "http://www.wpovernight.com"
28
-
29
- #. Description of the plugin
30
- msgid ""
31
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
32
- msgstr ""
33
- "Vytváří, tiskne a posílá emailem faktury v PDF a dodací listy k WooCommerce "
34
- "objednávkám."
35
-
36
- #. Author of the plugin
37
- msgid "Ewout Fernhout"
38
- msgstr "Ewout Fernhout"
39
-
40
- #. translators: rounded count
41
- #: includes/class-wcpdf-admin.php:92
42
- msgid "Wow, you have created more than %d invoices with our plugin!"
43
- msgstr "Teda, vytvořili jste s pluginem více než %d faktur!"
44
-
45
- #: includes/class-wcpdf-admin.php:93
46
- msgid ""
47
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
48
- "rating. Help us spread the word and boost our motivation!"
49
- msgstr ""
50
- "To by pro nás znamenalo hodně, kdybyste nám rychle přidali 5-ti hvězdičkový "
51
- "plugin. Pomozte nám jej šířit a zvýšit naši motivaci!"
52
-
53
- #: includes/class-wcpdf-admin.php:95
54
- msgid "Yes you deserve it!"
55
- msgstr "Ano, zasloužíte si to!"
56
-
57
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
58
- #: includes/views/attachment-settings-hint.php:24
59
- #: includes/views/wcpdf-extensions.php:131
60
- #: woocommerce-pdf-invoices-packingslips.php:377
61
- #: woocommerce-pdf-invoices-packingslips.php:423
62
- msgid "Hide this message"
63
- msgstr "Skrýt tuto zprávu"
64
-
65
- #: includes/class-wcpdf-admin.php:96
66
- msgid "Already did!"
67
- msgstr "Už je provedeno!"
68
-
69
- #: includes/class-wcpdf-admin.php:97
70
- msgid "Actually, I have a complaint..."
71
- msgstr "Vlastně mám stížnost ..."
72
-
73
- #: includes/class-wcpdf-admin.php:132
74
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
75
- msgstr "Novinka na WooCommerce PDF faktury a balíčky?"
76
-
77
- #: includes/class-wcpdf-admin.php:132
78
- msgid "Jumpstart the plugin by following our wizard!"
79
- msgstr "Spusťte plugin podle našeho průvodce!"
80
-
81
- #: includes/class-wcpdf-admin.php:133
82
- msgid "Run the Setup Wizard"
83
- msgstr "Spusťte Průvodce instalací"
84
-
85
- #: includes/class-wcpdf-admin.php:133
86
- msgid "I am the wizard"
87
- msgstr "Já jsem \"kouzelník\""
88
-
89
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
90
- #: includes/documents/class-wcpdf-invoice.php:302
91
- msgid "Invoice Number"
92
- msgstr "Číslo faktury"
93
-
94
- #: includes/class-wcpdf-admin.php:261
95
- msgid "Send order email"
96
- msgstr "Odeslat email s objednávkou"
97
-
98
- #: includes/class-wcpdf-admin.php:272
99
- msgid "Create PDF"
100
- msgstr "Vytvořit PDF"
101
-
102
- #: includes/class-wcpdf-admin.php:282
103
- msgid "PDF document data"
104
- msgstr ""
105
-
106
- #: includes/class-wcpdf-admin.php:304
107
- msgid "Choose an email to send&hellip;"
108
- msgstr ""
109
-
110
- #: includes/class-wcpdf-admin.php:320
111
- msgid "Save order & send email"
112
- msgstr "Uložit objednávku a odeslat email"
113
-
114
- #: includes/class-wcpdf-admin.php:322
115
- msgid "Send email"
116
- msgstr "Odeslat email"
117
-
118
- #: includes/class-wcpdf-admin.php:378
119
- #: includes/documents/class-wcpdf-invoice.php:460
120
- msgid "Invoice Number:"
121
- msgstr "Číslo faktury:"
122
-
123
- #: includes/class-wcpdf-admin.php:381
124
- #: includes/documents/class-wcpdf-invoice.php:468
125
- msgid "Invoice Date:"
126
- msgstr "Datum fakturace:"
127
-
128
- #: includes/class-wcpdf-admin.php:384
129
- msgid "Notes (printed in the invoice):"
130
- msgstr ""
131
-
132
- #. translators: document title
133
- #: includes/class-wcpdf-admin.php:469
134
- msgid "Set %s number & date"
135
- msgstr ""
136
-
137
- #: includes/class-wcpdf-admin.php:478
138
- msgid "unformatted!"
139
- msgstr ""
140
-
141
- #: includes/class-wcpdf-admin.php:518
142
- msgid "Save changes"
143
- msgstr ""
144
-
145
- #: includes/class-wcpdf-admin.php:519
146
- msgid "Cancel"
147
- msgstr ""
148
-
149
- #. translators: name/description of the context for document creation logs
150
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
151
- msgid "order details (number and/or date set manually)"
152
- msgstr ""
153
-
154
- #. translators: %s: email title
155
- #: includes/class-wcpdf-admin.php:647
156
- msgid "%s email notification manually sent."
157
- msgstr "%s email s upozorněním odeslán manuálně."
158
-
159
- #: includes/class-wcpdf-admin.php:734
160
- msgid "Nonce expired!"
161
- msgstr ""
162
-
163
- #: includes/class-wcpdf-admin.php:740
164
- msgid "Bad action!"
165
- msgstr ""
166
-
167
- #: includes/class-wcpdf-admin.php:746
168
- msgid "Incomplete request!"
169
- msgstr ""
170
-
171
- #: includes/class-wcpdf-admin.php:752
172
- msgid "No permissions!"
173
- msgstr ""
174
-
175
- #: includes/class-wcpdf-admin.php:776
176
- msgid "Document data saved!"
177
- msgstr ""
178
-
179
- #: includes/class-wcpdf-admin.php:777
180
- msgid "An error occurred while saving the document data!"
181
- msgstr ""
182
-
183
- #: includes/class-wcpdf-admin.php:780
184
- msgid "Document regenerated!"
185
- msgstr ""
186
-
187
- #: includes/class-wcpdf-admin.php:781
188
- msgid "An error occurred while regenerating the document!"
189
- msgstr ""
190
-
191
- #: includes/class-wcpdf-admin.php:784
192
- msgid "Document deleted!"
193
- msgstr ""
194
-
195
- #: includes/class-wcpdf-admin.php:785
196
- msgid "An error occurred while deleting the document!"
197
- msgstr ""
198
-
199
- #: includes/class-wcpdf-admin.php:841
200
- msgid "Document does not exist."
201
- msgstr ""
202
-
203
- #: includes/class-wcpdf-admin.php:850
204
- msgid "Document is empty."
205
- msgstr ""
206
-
207
- #: includes/class-wcpdf-admin.php:881
208
- msgid "DEBUG output enabled"
209
- msgstr "DEBUG výstup povolen"
210
-
211
- #: includes/class-wcpdf-assets.php:91
212
- msgid "Are you sure you want to delete this document? This cannot be undone."
213
- msgstr ""
214
- "Jste si jistí, že chcete smazat tento dokument? Nebude to možné vzít zpět."
215
-
216
- #: includes/class-wcpdf-assets.php:92
217
- msgid ""
218
- "Are you sure you want to regenerate this document? This will make the "
219
- "document reflect the most current settings (such as footer text, document "
220
- "name, etc.) rather than using historical settings."
221
- msgstr ""
222
-
223
- #: includes/class-wcpdf-frontend.php:126
224
- msgid "Download invoice (PDF)"
225
- msgstr "Stáhnout fakturu (PDF)"
226
-
227
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
228
- #: includes/class-wcpdf-main.php:338
229
- msgid "You do not have sufficient permissions to access this page."
230
- msgstr "Nemáte dostatečné oprávnění pro přístup."
231
-
232
- #: includes/class-wcpdf-main.php:275
233
- msgid "You haven't selected any orders"
234
- msgstr "Nevybrali jste žádné objednávky"
235
-
236
- #: includes/class-wcpdf-main.php:279
237
- msgid "Some of the export parameters are missing."
238
- msgstr "Chybí některé z exportních parametrů."
239
-
240
- #. translators: document type
241
- #: includes/class-wcpdf-main.php:379
242
- msgid "Document of type '%s' for the selected order(s) could not be generated"
243
- msgstr "Dokument typu \"%s\" pro vybrané objednávky nebyl vygenerován"
244
-
245
- #. translators: 1. plugin name, 2. directory path
246
- #: includes/class-wcpdf-main.php:591
247
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
248
- msgstr ""
249
-
250
- #: includes/class-wcpdf-main.php:592
251
- msgid ""
252
- "Please check your directories write permissions or contact your hosting "
253
- "service provider."
254
- msgstr ""
255
-
256
- #: includes/class-wcpdf-main.php:907
257
- #: includes/documents/class-wcpdf-invoice.php:286
258
- msgid "Invoice Date"
259
- msgstr "Datum faktury"
260
-
261
- #. translators: name/description of the context for document creation logs
262
- #: includes/class-wcpdf-main.php:937
263
- msgid "bulk order action"
264
- msgstr ""
265
-
266
- #. translators: name/description of the context for document creation logs
267
- #: includes/class-wcpdf-main.php:945
268
- msgid "single order action"
269
- msgstr ""
270
-
271
- #. translators: name/description of the context for document creation logs
272
- #: includes/class-wcpdf-main.php:953
273
- msgid "my account"
274
- msgstr ""
275
-
276
- #. translators: name/description of the context for document creation logs
277
- #: includes/class-wcpdf-main.php:961
278
- msgid "email attachment"
279
- msgstr ""
280
-
281
- #. translators: 1. document title, 2. creation source
282
- #: includes/class-wcpdf-main.php:970
283
- msgid "PDF %1$s created via %2$s."
284
- msgstr ""
285
-
286
- #. translators: document title
287
- #: includes/class-wcpdf-main.php:1006
288
- msgid "Order %s Saved"
289
- msgstr ""
290
-
291
- #: includes/class-wcpdf-settings-callbacks.php:27
292
- msgid ""
293
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
294
- "Do not use them on a live website!"
295
- msgstr ""
296
- "<b>Upozornění!</b> Níže uvedená nastavení slouží pouze pro ladění/vývoj. Na "
297
- "ostrém webu je nepoužívejte!"
298
-
299
- #: includes/class-wcpdf-settings-callbacks.php:36
300
- msgid ""
301
- "These are used for the (optional) footer columns in the <em>Modern "
302
- "(Premium)</em> template, but can also be used for other elements in your "
303
- "custom template"
304
- msgstr ""
305
- "Tyto prvky jsou použité jako volitelné části patičky v šabloně <em>Modern "
306
- "(Premium)</em>, ale mohou být v rámci vaší vlastní šablony využity i jinak"
307
-
308
- #: includes/class-wcpdf-settings-callbacks.php:383
309
- msgid "Image resolution"
310
- msgstr "Rozměry obrázku"
311
-
312
- #: includes/class-wcpdf-settings-callbacks.php:410
313
- msgid "Save"
314
- msgstr "Uložit"
315
-
316
- #: includes/class-wcpdf-settings-debug.php:45
317
- #: woocommerce-pdf-invoices-packingslips.php:376
318
- msgid "Generate random temporary folder name"
319
- msgstr ""
320
-
321
- #. translators: directory path
322
- #: includes/class-wcpdf-settings-debug.php:58
323
- msgid "Temporary folder moved to %s"
324
- msgstr ""
325
-
326
- #: includes/class-wcpdf-settings-debug.php:68
327
- msgid "Reinstall fonts"
328
- msgstr "Přeinstalujte písma"
329
-
330
- #: includes/class-wcpdf-settings-debug.php:89
331
- msgid "Fonts reinstalled!"
332
- msgstr "Fonty přeinstalovány!"
333
-
334
- #: includes/class-wcpdf-settings-debug.php:98
335
- msgid "Remove temporary files"
336
- msgstr "Odebrat dočasné soubory"
337
-
338
- #: includes/class-wcpdf-settings-debug.php:109
339
- msgid "Unable to read temporary folder contents!"
340
- msgstr "Nelze číst obsah dočasných složek!"
341
-
342
- #. translators: 1,2. file count
343
- #: includes/class-wcpdf-settings-debug.php:127
344
- msgid "Unable to delete %1$d files! (deleted %2$d)"
345
- msgstr ""
346
-
347
- #. translators: file count
348
- #: includes/class-wcpdf-settings-debug.php:131
349
- msgid "Successfully deleted %d files!"
350
- msgstr "Úspěšně odstraněno %d souborů!"
351
-
352
- #: includes/class-wcpdf-settings-debug.php:135
353
- msgid "Nothing to delete!"
354
- msgstr "Nic ke smazání!"
355
-
356
- #: includes/class-wcpdf-settings-debug.php:146
357
- msgid "Delete legacy (1.X) settings"
358
- msgstr "Odstranit starší (1.X) nastavení"
359
-
360
- #: includes/class-wcpdf-settings-debug.php:162
361
- msgid "Legacy settings deleted!"
362
- msgstr "Starší nastavení bylo smazáno!"
363
-
364
- #: includes/class-wcpdf-settings-debug.php:192
365
- msgid "Debug settings"
366
- msgstr "Nastavení pro ladění"
367
-
368
- #: includes/class-wcpdf-settings-debug.php:198
369
- msgid "Legacy mode"
370
- msgstr "Kompatibilní režim"
371
-
372
- #: includes/class-wcpdf-settings-debug.php:204
373
- msgid ""
374
- "Legacy mode ensures compatibility with templates and filters from previous "
375
- "versions."
376
- msgstr ""
377
- "Režim Legacy zajišťuje kompatibilitu s šablonami a filtry z předchozích "
378
- "verzí."
379
-
380
- #: includes/class-wcpdf-settings-debug.php:210
381
- msgid "Legacy textdomain fallback"
382
- msgstr ""
383
-
384
- #: includes/class-wcpdf-settings-debug.php:216
385
- msgid ""
386
- "Legacy textdomain fallback ensures compatibility with translation files from "
387
- "versions prior to 2017-05-15."
388
- msgstr ""
389
-
390
- #: includes/class-wcpdf-settings-debug.php:222
391
- msgid "Allow guest access"
392
- msgstr "Umožnit přístup návštěvníkům"
393
-
394
- #: includes/class-wcpdf-settings-debug.php:228
395
- msgid ""
396
- "Enable this to allow customers that purchase without an account to access "
397
- "their PDF with a unique key"
398
- msgstr ""
399
- "Toto povolte, pokud chcete zákazníkům kteří si objednají bez registrace "
400
- "konta umožnit přístup k PDF dokumentům prostřednictvím unikátního klíče"
401
-
402
- #: includes/class-wcpdf-settings-debug.php:234
403
- msgid "Calculate document numbers (slow)"
404
- msgstr "Vypočítat čísla dokumentů (pomalé)"
405
-
406
- #: includes/class-wcpdf-settings-debug.php:240
407
- msgid ""
408
- "Document numbers (such as invoice numbers) are generated using "
409
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
410
- "with more than 1."
411
- msgstr ""
412
- "Čísla dokumentů (například čísla faktur) jsou ve výchozím nastavení "
413
- "generována pomocí funkce AUTO_INCREMENT. Použijte toto nastavení, pokud "
414
- "databáze zvýší automaticky o více než 1."
415
-
416
- #: includes/class-wcpdf-settings-debug.php:246
417
- msgid "Enable debug output"
418
- msgstr "Povolit výstup ladění"
419
-
420
- #: includes/class-wcpdf-settings-debug.php:252
421
- msgid ""
422
- "Enable this option to output plugin errors if you're getting a blank page or "
423
- "other PDF generation issues"
424
- msgstr ""
425
- "Povolte toto nastavení pro zobrazení chyb pluginu, pokud se zobrazuje "
426
- "prázdná stránka nebo máte jiný problém s generováním PDF"
427
-
428
- #: includes/class-wcpdf-settings-debug.php:253
429
- msgid ""
430
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
431
- "places on your site too, therefor this is not recommended to leave it "
432
- "enabled on live sites."
433
- msgstr ""
434
- "<b> Upozornění! </b> Toto nastavení může odhalit chyby (z jiných zásuvných "
435
- "modulů) i na jiných místech vašeho webu, proto se nedoporučuje nechat je "
436
- "povoleno na produkčních stránkách."
437
-
438
- #: includes/class-wcpdf-settings-debug.php:254
439
- msgid ""
440
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
441
- "order basis."
442
- msgstr ""
443
-
444
- #: includes/class-wcpdf-settings-debug.php:260
445
- msgid "Enable automatic cleanup"
446
- msgstr "Povolit automatické pročištění"
447
-
448
- #. translators: number of days
449
- #: includes/class-wcpdf-settings-debug.php:268
450
- msgid "every %s days"
451
- msgstr "každý %s (-tý) den"
452
-
453
- #: includes/class-wcpdf-settings-debug.php:273
454
- msgid ""
455
- "Automatically clean up PDF files stored in the temporary folder (used for "
456
- "email attachments)"
457
- msgstr ""
458
- "Automaticky pročistit PDF soubory uložené ve složkách pro dočasné soubory "
459
- "(použito pro přílohy emailů)"
460
-
461
- #: includes/class-wcpdf-settings-debug.php:274
462
- msgid ""
463
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
464
- "automatic cleanup but not enabled on your server."
465
- msgstr ""
466
- "<b> Zakázáno: </b> Funkce PHP global a filemtime jsou vyžadovány pro "
467
- "automatické vyčištění, ale nejsou povoleny na vašem serveru."
468
-
469
- #: includes/class-wcpdf-settings-debug.php:280
470
- msgid "Output to HTML"
471
- msgstr "Výstup do HTML"
472
-
473
- #: includes/class-wcpdf-settings-debug.php:286
474
- msgid ""
475
- "Send the template output as HTML to the browser instead of creating a PDF."
476
- msgstr "Pošle výstup šablony v HTML do prohlížeče místo vytvoření PDF."
477
-
478
- #: includes/class-wcpdf-settings-debug.php:287
479
- msgid ""
480
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
481
- "order basis."
482
- msgstr ""
483
-
484
- #: includes/class-wcpdf-settings-debug.php:293
485
- msgid "Use alternative HTML5 parser to parse HTML"
486
- msgstr "Použít alternativní HTML5 parser na analýzu HTML"
487
-
488
- #: includes/class-wcpdf-settings-debug.php:304
489
- msgid "Log to order notes"
490
- msgstr ""
491
-
492
- #: includes/class-wcpdf-settings-debug.php:310
493
- msgid "Log PDF document creation to order notes."
494
- msgstr ""
495
-
496
- #: includes/class-wcpdf-settings-documents.php:30
497
- #: includes/class-wcpdf-settings.php:97
498
- msgid "Documents"
499
- msgstr "Dokumenty"
500
-
501
- #: includes/class-wcpdf-settings-documents.php:36
502
- #: includes/class-wcpdf-settings-documents.php:57
503
- msgid "untitled"
504
- msgstr ""
505
-
506
- #: includes/class-wcpdf-settings-documents.php:50
507
- msgid ""
508
- "All available documents are listed below. Click on a document to configure "
509
- "it."
510
- msgstr ""
511
- "Všechny dostupné dokumenty jsou uvedeny níže. Klikněte na dokument, který "
512
- "chcete konfigurovat."
513
-
514
- #: includes/class-wcpdf-settings-general.php:40
515
- msgid "General settings"
516
- msgstr "Všeobecná nastavení"
517
-
518
- #: includes/class-wcpdf-settings-general.php:46
519
- msgid "How do you want to view the PDF?"
520
- msgstr "Jak chcete zobrazit PDF?"
521
-
522
- #: includes/class-wcpdf-settings-general.php:53
523
- msgid "Download the PDF"
524
- msgstr "Stáhnout PDF"
525
-
526
- #: includes/class-wcpdf-settings-general.php:54
527
- msgid "Open the PDF in a new browser tab/window"
528
- msgstr "Otevřít PDF v novém okně"
529
-
530
- #: includes/class-wcpdf-settings-general.php:61
531
- msgid "Choose a template"
532
- msgstr "Vyberte šablonu"
533
-
534
- #. translators: 1,2. template paths
535
- #: includes/class-wcpdf-settings-general.php:69
536
- msgid ""
537
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
538
- "your (child) theme in <code>%2$s</code> to customize them"
539
- msgstr ""
540
-
541
- #: includes/class-wcpdf-settings-general.php:75
542
- msgid "Paper size"
543
- msgstr "Velikost papíru"
544
-
545
- #: includes/class-wcpdf-settings-general.php:82
546
- #: includes/views/setup-wizard/paper-format.php:12
547
- msgid "A4"
548
- msgstr "A4"
549
-
550
- #: includes/class-wcpdf-settings-general.php:83
551
- #: includes/views/setup-wizard/paper-format.php:13
552
- msgid "Letter"
553
- msgstr "Dopis"
554
-
555
- #: includes/class-wcpdf-settings-general.php:90
556
- msgid "Test mode"
557
- msgstr "Testovací režim"
558
-
559
- #: includes/class-wcpdf-settings-general.php:96
560
- msgid ""
561
- "With test mode enabled, any document generated will always use the latest "
562
- "settings, rather than using the settings as configured at the time the "
563
- "document was first created."
564
- msgstr ""
565
- "Při aktivovaném zkušebním režimu bude každý vygenerovaný dokument vždy "
566
- "používat nejnovější nastavení, spíše než používat nastavení nakonfigurovaná "
567
- "v okamžiku, kdy byl dokument vytvořen."
568
-
569
- #: includes/class-wcpdf-settings-general.php:96
570
- msgid ""
571
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
572
- "setting and will still be generated."
573
- msgstr ""
574
- "<strong>Poznámka:</strong> čísla a datumy faktur nejsou tímto nastavením "
575
- "dotčena a budou stále generována."
576
-
577
- #: includes/class-wcpdf-settings-general.php:102
578
- msgid "Extended currency symbol support"
579
- msgstr "Rozšířená podpora symbolů měny"
580
-
581
- #: includes/class-wcpdf-settings-general.php:108
582
- msgid "Enable this if your currency symbol is not displaying properly"
583
- msgstr "Povolte tuto možnost, pokud se symbol měny nezobrazuje správně"
584
-
585
- #: includes/class-wcpdf-settings-general.php:114
586
- msgid "Enable font subsetting"
587
- msgstr "Povolit podnastavení písma"
588
-
589
- #: includes/class-wcpdf-settings-general.php:120
590
- msgid ""
591
- "Font subsetting can reduce file size by only including the characters that "
592
- "are used in the PDF, but limits the ability to edit PDF files later. "
593
- "Recommended if you're using an Asian font."
594
- msgstr ""
595
- "Font písma může snížit velikost souboru pouze tím, že obsahuje znaky použité "
596
- "v PDF, ale omezuje možnost později upravovat soubory PDF. Doporučeno, pokud "
597
- "používáte asijské písmo."
598
-
599
- #: includes/class-wcpdf-settings-general.php:126
600
- msgid "Shop header/logo"
601
- msgstr "Hlavička/logo"
602
-
603
- #: includes/class-wcpdf-settings-general.php:132
604
- #: includes/views/setup-wizard/logo.php:20
605
- msgid "Select or upload your invoice header/logo"
606
- msgstr "Vyberte nebo nahrajte hlavičku/logo"
607
-
608
- #: includes/class-wcpdf-settings-general.php:133
609
- #: includes/views/setup-wizard/logo.php:20
610
- msgid "Set image"
611
- msgstr "Vybrat obrázek"
612
-
613
- #: includes/class-wcpdf-settings-general.php:134
614
- #: includes/views/setup-wizard/logo.php:20
615
- msgid "Remove image"
616
- msgstr "Odebrat obrázek"
617
-
618
- #: includes/class-wcpdf-settings-general.php:141
619
- msgid "Logo height"
620
- msgstr ""
621
-
622
- #: includes/class-wcpdf-settings-general.php:149
623
- msgid ""
624
- "Enter the total height of the logo in mm, cm or in and use a dot for "
625
- "decimals.<br/>For example: 1.15in or 40mm"
626
- msgstr ""
627
-
628
- #: includes/class-wcpdf-settings-general.php:155
629
- #: includes/class-wcpdf-setup-wizard.php:47
630
- msgid "Shop Name"
631
- msgstr "Název obchodu"
632
-
633
- #: includes/class-wcpdf-settings-general.php:168
634
- msgid "Shop Address"
635
- msgstr "Adresa obchodu"
636
-
637
- #: includes/class-wcpdf-settings-general.php:183
638
- msgid "Footer: terms & conditions, policies, etc."
639
- msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
640
-
641
- #: includes/class-wcpdf-settings-general.php:198
642
- msgid "Extra template fields"
643
- msgstr "Extra políčka v šabloně"
644
-
645
- #: includes/class-wcpdf-settings-general.php:204
646
- msgid "Extra field 1"
647
- msgstr "Extra políčko 1"
648
-
649
- #: includes/class-wcpdf-settings-general.php:212
650
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
651
- msgstr "Tohle je 1. políčko v patičce šablony <i>Modern (Premium)</i>"
652
-
653
- #: includes/class-wcpdf-settings-general.php:219
654
- msgid "Extra field 2"
655
- msgstr "Extra políčko 2"
656
-
657
- #: includes/class-wcpdf-settings-general.php:227
658
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
659
- msgstr "Tohle je 2. políčko v patičce šablony <i>Modern (Premium)</i>"
660
-
661
- #: includes/class-wcpdf-settings-general.php:234
662
- msgid "Extra field 3"
663
- msgstr "Extra políčko 3"
664
-
665
- #: includes/class-wcpdf-settings-general.php:242
666
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
667
- msgstr "Tohle je 3. políčko v patičce šablony <i>Modern (Premium)</i>"
668
-
669
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
670
- msgid "PDF Invoices"
671
- msgstr "PDF faktury"
672
-
673
- #: includes/class-wcpdf-settings.php:74
674
- msgid "Documentation"
675
- msgstr "Dokumentace"
676
-
677
- #: includes/class-wcpdf-settings.php:75
678
- msgid "Support Forum"
679
- msgstr "Fórum podpory"
680
-
681
- #. translators: database row value
682
- #: includes/class-wcpdf-settings.php:88
683
- msgid ""
684
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
685
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
686
- "document numbers (slow)' setting in the Status tab to use an alternate "
687
- "method."
688
- msgstr ""
689
- "<strong>Upozornění! </strong> Databáze velikost kroku AUTO_INCREMENT %s, "
690
- "čísla faktur nemusí být postupná. Aktivujte nastavení \"Vypočítat čísla "
691
- "dokumentů (pomalé)\" na kartě Stav, abyste použili alternativní metodu."
692
-
693
- #: includes/class-wcpdf-settings.php:96
694
- msgid "General"
695
- msgstr "Všeobecné"
696
-
697
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
698
- msgid "Status"
699
- msgstr "Stav"
700
-
701
- #: includes/class-wcpdf-setup-wizard.php:51
702
- #: includes/views/setup-wizard/logo.php:3
703
- msgid "Your logo"
704
- msgstr "Vaše logo"
705
-
706
- #: includes/class-wcpdf-setup-wizard.php:55
707
- msgid "Attachments"
708
- msgstr "Přílohy"
709
-
710
- #: includes/class-wcpdf-setup-wizard.php:59
711
- #: includes/views/setup-wizard/display-options.php:3
712
- msgid "Display options"
713
- msgstr "Možnosti zobrazení"
714
-
715
- #: includes/class-wcpdf-setup-wizard.php:63
716
- #: includes/views/setup-wizard/paper-format.php:3
717
- msgid "Paper format"
718
- msgstr "Formát papíru"
719
-
720
- #: includes/class-wcpdf-setup-wizard.php:67
721
- #: includes/views/setup-wizard/show-action-buttons.php:3
722
- msgid "Action buttons"
723
- msgstr "Tlačítka akcí"
724
-
725
- #: includes/class-wcpdf-setup-wizard.php:71
726
- msgid "Ready!"
727
- msgstr "Připraveno!"
728
-
729
- #: includes/class-wcpdf-setup-wizard.php:133
730
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
731
- msgstr "WooCommerce PDF faktury a dodací listy &rsaquo; Průvodce instalací"
732
-
733
- #: includes/class-wcpdf-setup-wizard.php:185
734
- msgid "Previous"
735
- msgstr "Předchozí"
736
-
737
- #: includes/class-wcpdf-setup-wizard.php:190
738
- msgid "Next"
739
- msgstr "Další"
740
-
741
- #: includes/class-wcpdf-setup-wizard.php:191
742
- msgid "Skip this step"
743
- msgstr "Přeskočit"
744
-
745
- #: includes/class-wcpdf-setup-wizard.php:193
746
- msgid "Finish"
747
- msgstr "Dokončit"
748
-
749
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
750
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
751
- msgid "N/A"
752
- msgstr "Není k dispozici"
753
-
754
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
755
- msgid "Payment method"
756
- msgstr "Platební metoda"
757
-
758
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
759
- msgid "Shipping method"
760
- msgstr "Doručovací metoda"
761
-
762
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
763
- msgid "Subtotal"
764
- msgstr "Mezisoučet"
765
-
766
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
767
- msgid "Shipping"
768
- msgstr "Doprava"
769
-
770
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
771
- msgid "Discount"
772
- msgstr "Sleva"
773
-
774
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
775
- msgid "VAT"
776
- msgstr "DPH"
777
-
778
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
779
- msgid "Tax rate"
780
- msgstr "Daňová sazba"
781
-
782
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
783
- msgid "Total ex. VAT"
784
- msgstr "Celkem bez DPH"
785
-
786
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
787
- msgid "Total"
788
- msgstr "Celkem"
789
-
790
- #. translators: 1. credit note title, 2. refund id
791
- #: includes/documents/abstract-wcpdf-order-document.php:336
792
- msgid "%1$s (refund #%2$s) was regenerated."
793
- msgstr ""
794
-
795
- #. translators: 1. credit note title, 2. refund id
796
- #: includes/documents/abstract-wcpdf-order-document.php:336
797
- msgid "%s was regenerated"
798
- msgstr ""
799
-
800
- #. translators: %s: document name
801
- #: includes/documents/abstract-wcpdf-order-document.php:422
802
- msgid "%s Number:"
803
- msgstr ""
804
-
805
- #. translators: %s: document name
806
- #: includes/documents/abstract-wcpdf-order-document.php:428
807
- msgid "%s Date:"
808
- msgstr ""
809
-
810
- #: includes/documents/abstract-wcpdf-order-document.php:891
811
- msgid "Admin email"
812
- msgstr "Admin email"
813
-
814
- #: includes/documents/abstract-wcpdf-order-document.php:894
815
- msgid "Manual email"
816
- msgstr "Manuální email"
817
-
818
- #: includes/documents/class-wcpdf-invoice.php:32
819
- #: includes/documents/class-wcpdf-invoice.php:56
820
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
821
- msgid "Invoice"
822
- msgstr "Faktura"
823
-
824
- #: includes/documents/class-wcpdf-invoice.php:131
825
- msgid "invoice"
826
- msgid_plural "invoices"
827
- msgstr[0] "faktura"
828
- msgstr[1] "faktury"
829
- msgstr[2] "faktur"
830
-
831
- #: includes/documents/class-wcpdf-invoice.php:186
832
- #: includes/documents/class-wcpdf-packing-slip.php:88
833
- msgid "Enable"
834
- msgstr "Zapnout"
835
-
836
- #: includes/documents/class-wcpdf-invoice.php:197
837
- msgid "Attach to:"
838
- msgstr "Připojit k:"
839
-
840
- #. translators: directory path
841
- #: includes/documents/class-wcpdf-invoice.php:205
842
- msgid ""
843
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
844
- "permissions for this folder! Without having write access to this folder, the "
845
- "plugin will not be able to email invoices."
846
- msgstr ""
847
- "Zdá se, že dočasná složka (<code>%s</code>) není přístupná, zkontrolujte "
848
- "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky "
849
- "nebude možné odesílat faktury e-mailem."
850
-
851
- #: includes/documents/class-wcpdf-invoice.php:211
852
- msgid "Disable for:"
853
- msgstr "Vypnout pro:"
854
-
855
- #: includes/documents/class-wcpdf-invoice.php:220
856
- msgid "Select one or more statuses"
857
- msgstr "Zvolte jeden nebo více stavů"
858
-
859
- #: includes/documents/class-wcpdf-invoice.php:226
860
- #: includes/views/setup-wizard/display-options.php:17
861
- msgid "Display shipping address"
862
- msgstr "Zobrazit doručovací adresu"
863
-
864
- #: includes/documents/class-wcpdf-invoice.php:233
865
- #: includes/documents/class-wcpdf-invoice.php:285
866
- #: includes/documents/class-wcpdf-invoice.php:301
867
- #: includes/documents/class-wcpdf-packing-slip.php:106
868
- msgid "No"
869
- msgstr "Ne"
870
-
871
- #: includes/documents/class-wcpdf-invoice.php:234
872
- msgid "Only when different from billing address"
873
- msgstr ""
874
-
875
- #: includes/documents/class-wcpdf-invoice.php:235
876
- #: includes/documents/class-wcpdf-invoice.php:378
877
- #: includes/documents/class-wcpdf-packing-slip.php:108
878
- msgid "Always"
879
- msgstr "Vždy"
880
-
881
- #: includes/documents/class-wcpdf-invoice.php:243
882
- #: includes/documents/class-wcpdf-packing-slip.php:116
883
- #: includes/views/setup-wizard/display-options.php:26
884
- msgid "Display email address"
885
- msgstr "Zobrazit emailovou adresu"
886
-
887
- #: includes/documents/class-wcpdf-invoice.php:254
888
- #: includes/documents/class-wcpdf-packing-slip.php:127
889
- #: includes/views/setup-wizard/display-options.php:35
890
- msgid "Display phone number"
891
- msgstr "Zobrazit telefonní číslo"
892
-
893
- #: includes/documents/class-wcpdf-invoice.php:265
894
- #: includes/documents/class-wcpdf-packing-slip.php:138
895
- msgid "Display customer notes"
896
- msgstr ""
897
-
898
- #: includes/documents/class-wcpdf-invoice.php:278
899
- #: includes/views/setup-wizard/display-options.php:44
900
- msgid "Display invoice date"
901
- msgstr "Zobrazit datum fakturace"
902
-
903
- #: includes/documents/class-wcpdf-invoice.php:287
904
- msgid "Order Date"
905
- msgstr "Datum objednávky"
906
-
907
- #: includes/documents/class-wcpdf-invoice.php:294
908
- #: includes/views/setup-wizard/display-options.php:53
909
- msgid "Display invoice number"
910
- msgstr "Zobrazte číslo faktury"
911
-
912
- #: includes/documents/class-wcpdf-invoice.php:303
913
- msgid "Order Number"
914
- msgstr "Číslo objednávky"
915
-
916
- #: includes/documents/class-wcpdf-invoice.php:307
917
- msgid "Warning!"
918
- msgstr "Upozornění!"
919
-
920
- #: includes/documents/class-wcpdf-invoice.php:308
921
- msgid ""
922
- "Using the Order Number as invoice number is not recommended as this may lead "
923
- "to gaps in the invoice number sequence (even when order numbers are "
924
- "sequential)."
925
- msgstr ""
926
- "Nedoporučujeme používat číslo objednávky pro číslo faktury, protože to může "
927
- "vést k mezerám v číslování (přestože je číslování objednávek posloupné)."
928
-
929
- #: includes/documents/class-wcpdf-invoice.php:309
930
- msgid "More information"
931
- msgstr "Více informací"
932
-
933
- #: includes/documents/class-wcpdf-invoice.php:316
934
- msgid "Next invoice number (without prefix/suffix etc.)"
935
- msgstr "Další číslo faktury (bez předpony/přípony)"
936
-
937
- #: includes/documents/class-wcpdf-invoice.php:322
938
- msgid ""
939
- "This is the number that will be used for the next document. By default, "
940
- "numbering starts from 1 and increases for every new document. Note that if "
941
- "you override this and set it lower than the current/highest number, this "
942
- "could create duplicate numbers!"
943
- msgstr ""
944
- "Toto je číslo, které bude použito pro další dokument. Ve výchozím nastavení "
945
- "začíná číslování od 1 a zvyšuje se pro každý nový dokument. Všimněte si, že "
946
- "pokud to přepíšete a nastavíte jej nižší než aktuální / nejvyšší číslo, "
947
- "mohlo by to vytvořit duplicitní čísla!"
948
-
949
- #: includes/documents/class-wcpdf-invoice.php:328
950
- msgid "Number format"
951
- msgstr "Formát čísel"
952
-
953
- #: includes/documents/class-wcpdf-invoice.php:336
954
- msgid "Prefix"
955
- msgstr "Předpona"
956
-
957
- #: includes/documents/class-wcpdf-invoice.php:338
958
- msgid ""
959
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
960
- "respectively"
961
- msgstr "použijte [order_year] pro rok a [order_month] pro měsíc objednání"
962
-
963
- #: includes/documents/class-wcpdf-invoice.php:341
964
- msgid "Suffix"
965
- msgstr "Přípona"
966
-
967
- #: includes/documents/class-wcpdf-invoice.php:346
968
- msgid "Padding"
969
- msgstr "Výplň"
970
-
971
- #: includes/documents/class-wcpdf-invoice.php:349
972
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
973
- msgstr ""
974
- "zde vložte počet číslic - napište \"6\", aby se 42 zobrazilo jako 000042"
975
-
976
- #: includes/documents/class-wcpdf-invoice.php:352
977
- msgid ""
978
- "note: if you have already created a custom invoice number format with a "
979
- "filter, the above settings will be ignored"
980
- msgstr ""
981
- "poznámka: pokud jste si nastavili vlastní číslování faktur pomocí filtru, "
982
- "výše uvedená nastavení budou ignorována"
983
-
984
- #: includes/documents/class-wcpdf-invoice.php:358
985
- msgid "Reset invoice number yearly"
986
- msgstr "Obnovit číslování faktur ročně"
987
-
988
- #: includes/documents/class-wcpdf-invoice.php:369
989
- msgid "Allow My Account invoice download"
990
- msgstr "Umožnit stažení faktury na stránce Můj účet"
991
-
992
- #: includes/documents/class-wcpdf-invoice.php:376
993
- msgid "Only when an invoice is already created/emailed"
994
- msgstr "Pouze když byla faktura vytvořena/odeslána"
995
-
996
- #: includes/documents/class-wcpdf-invoice.php:377
997
- msgid "Only for specific order statuses (define below)"
998
- msgstr "Pouze pro určité stavy objednávek (definujte níže)"
999
-
1000
- #: includes/documents/class-wcpdf-invoice.php:379
1001
- msgid "Never"
1002
- msgstr "Nikdy"
1003
-
1004
- #: includes/documents/class-wcpdf-invoice.php:394
1005
- msgid "Enable invoice number column in the orders list"
1006
- msgstr "Zobrazit v seznamu objednávek sloupec s čísly faktur"
1007
-
1008
- #: includes/documents/class-wcpdf-invoice.php:405
1009
- msgid "Disable for free orders"
1010
- msgstr ""
1011
-
1012
- #. translators: zero number
1013
- #: includes/documents/class-wcpdf-invoice.php:412
1014
- msgid "Disable document when the order total is %s"
1015
- msgstr ""
1016
-
1017
- #: includes/documents/class-wcpdf-invoice.php:418
1018
- msgid "Always use most current settings"
1019
- msgstr "Vždy používat nejaktuálnější nastavení"
1020
-
1021
- #: includes/documents/class-wcpdf-invoice.php:424
1022
- msgid ""
1023
- "When enabled, the document will always reflect the most current settings "
1024
- "(such as footer text, document name, etc.) rather than using historical "
1025
- "settings."
1026
- msgstr ""
1027
- "Pokud je tato funkce povolena, dokument bude vždy odrážet nejaktuálnější "
1028
- "nastavení (například text zápatí, název dokumentu atd.), Nikoli pomocí "
1029
- "historických nastavení."
1030
-
1031
- #: includes/documents/class-wcpdf-invoice.php:426
1032
- msgid ""
1033
- "<strong>Caution:</strong> enabling this will also mean that if you change "
1034
- "your company name or address in the future, previously generated documents "
1035
- "will also be affected."
1036
- msgstr ""
1037
- "<strong> Upozornění: </strong> povolíte také, že pokud změníte název vaší "
1038
- "firmy nebo adresu v budoucnu, budou také ovlivněny dříve generované "
1039
- "dokumenty."
1040
-
1041
- #: includes/documents/class-wcpdf-invoice.php:439
1042
- msgid "Invoice numbers are created by a third-party extension."
1043
- msgstr "Čísla faktur jsou vytvářena rozšířením třetí strany."
1044
-
1045
- #. translators: link
1046
- #: includes/documents/class-wcpdf-invoice.php:442
1047
- msgid "Configure it <a href=\"%s\">here</a>."
1048
- msgstr "Nakonfigurujte jej <a href=\"%s\"> zde </a>."
1049
-
1050
- #: includes/documents/class-wcpdf-packing-slip.php:32
1051
- #: includes/documents/class-wcpdf-packing-slip.php:41
1052
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1053
- msgid "Packing Slip"
1054
- msgstr "Dodací List"
1055
-
1056
- #: includes/documents/class-wcpdf-packing-slip.php:47
1057
- msgid "packing-slip"
1058
- msgid_plural "packing-slips"
1059
- msgstr[0] "dodací list"
1060
- msgstr[1] "dodací listy"
1061
- msgstr[2] "dodacích listů"
1062
-
1063
- #: includes/documents/class-wcpdf-packing-slip.php:99
1064
- msgid "Display billing address"
1065
- msgstr "Zobrazit fakturační adresu"
1066
-
1067
- #: includes/documents/class-wcpdf-packing-slip.php:107
1068
- msgid "Only when different from shipping address"
1069
- msgstr ""
1070
-
1071
- #: includes/documents/class-wcpdf-packing-slip.php:162
1072
- msgid "Packing Slip Number:"
1073
- msgstr ""
1074
-
1075
- #: includes/documents/class-wcpdf-packing-slip.php:170
1076
- msgid "Packing Slip Date:"
1077
- msgstr ""
1078
-
1079
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1080
- msgid "Legacy Document"
1081
- msgstr "Starší dokument"
1082
-
1083
- #: includes/legacy/class-wcpdf-legacy.php:72
1084
- msgid "Error"
1085
- msgstr "Chyba"
1086
-
1087
- #: includes/legacy/class-wcpdf-legacy.php:73
1088
- msgid ""
1089
- "An outdated template or action hook was used to generate the PDF. Legacy "
1090
- "mode has been activated, please try again by reloading this page."
1091
- msgstr ""
1092
- "Za účelem vytvoření PDF byla použita zastaralá šablona nebo akční hák. "
1093
- "Starší režim byl aktivován, zkuste znovu znovu načtěte tuto stránku."
1094
-
1095
- #: includes/legacy/class-wcpdf-legacy.php:76
1096
- msgid "The following function was called"
1097
- msgstr "Byla vyvolána následující funkce"
1098
-
1099
- #. translators: <a> tags
1100
- #: includes/views/attachment-settings-hint.php:23
1101
- msgid ""
1102
- "It looks like you haven't setup any email attachments yet, check the "
1103
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1104
- msgstr ""
1105
-
1106
- #: includes/views/dompdf-status.php:11
1107
- msgid "7.1+ (7.4 or higher recommended)"
1108
- msgstr ""
1109
-
1110
- #: includes/views/dompdf-status.php:24
1111
- msgid "Recommended, will use fallback functions"
1112
- msgstr ""
1113
-
1114
- #: includes/views/dompdf-status.php:30
1115
- msgid "Required if you have images in your documents"
1116
- msgstr ""
1117
-
1118
- #: includes/views/dompdf-status.php:39
1119
- msgid "To compress PDF documents"
1120
- msgstr ""
1121
-
1122
- #: includes/views/dompdf-status.php:42
1123
- msgid "Recommended to compress PDF documents"
1124
- msgstr ""
1125
-
1126
- #: includes/views/dompdf-status.php:45
1127
- msgid "For better performances"
1128
- msgstr ""
1129
-
1130
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1131
- msgid "Recommended for better performances"
1132
- msgstr ""
1133
-
1134
- #: includes/views/dompdf-status.php:51
1135
- msgid "Better with transparent PNG images"
1136
- msgstr ""
1137
-
1138
- #: includes/views/dompdf-status.php:57
1139
- msgid ""
1140
- "Required to detect custom templates and to clear the temp folder periodically"
1141
- msgstr ""
1142
-
1143
- #: includes/views/dompdf-status.php:60
1144
- msgid "Check PHP disable_functions"
1145
- msgstr ""
1146
-
1147
- #. translators: <a> tags
1148
- #: includes/views/dompdf-status.php:64
1149
- msgid ""
1150
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1151
- "WordPress Memory Limit%2$s"
1152
- msgstr ""
1153
-
1154
- #: includes/views/dompdf-status.php:69
1155
- msgid "Allow remote stylesheets and images"
1156
- msgstr ""
1157
-
1158
- #: includes/views/dompdf-status.php:72
1159
- msgid "allow_url_fopen disabled"
1160
- msgstr ""
1161
-
1162
- #. translators: <a> tags
1163
- #: includes/views/dompdf-status.php:92
1164
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1165
- msgstr ""
1166
-
1167
- #: includes/views/dompdf-status.php:97
1168
- msgid "System Configuration"
1169
- msgstr ""
1170
-
1171
- #: includes/views/dompdf-status.php:102
1172
- msgid "Required"
1173
- msgstr ""
1174
-
1175
- #: includes/views/dompdf-status.php:103
1176
- msgid "Present"
1177
- msgstr ""
1178
-
1179
- #: includes/views/dompdf-status.php:142
1180
- msgid "Writable"
1181
- msgstr ""
1182
-
1183
- #: includes/views/dompdf-status.php:143
1184
- msgid "Not writable"
1185
- msgstr ""
1186
-
1187
- #: includes/views/dompdf-status.php:148
1188
- msgid "Central temporary plugin folder"
1189
- msgstr ""
1190
-
1191
- #: includes/views/dompdf-status.php:154
1192
- msgid "Temporary attachments folder"
1193
- msgstr ""
1194
-
1195
- #: includes/views/dompdf-status.php:160
1196
- msgid "Temporary DOMPDF folder"
1197
- msgstr ""
1198
-
1199
- #: includes/views/dompdf-status.php:166
1200
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1201
- msgstr ""
1202
-
1203
- #: includes/views/dompdf-status.php:177
1204
- msgid "Write Permissions"
1205
- msgstr ""
1206
-
1207
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1208
- #: templates/Simple/packing-slip.php:88
1209
- msgid "Description"
1210
- msgstr "Popis"
1211
-
1212
- #: includes/views/dompdf-status.php:181
1213
- msgid "Value"
1214
- msgstr ""
1215
-
1216
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1217
- #: includes/views/dompdf-status.php:207
1218
- msgid ""
1219
- "The central temp folder is %1$s. By default, this folder is created in the "
1220
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1221
- "config.php. Alternatively, you can control the specific folder for PDF "
1222
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1223
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1224
- "by the plugin if the central temp folder is writable)."
1225
- msgstr ""
1226
-
1227
- #. translators: directory path
1228
- #: includes/views/dompdf-status.php:220
1229
- msgid ""
1230
- "If the temporary folders were not automatically created by the plugin, "
1231
- "verify that all the font files (from %s) are copied to the fonts folder. "
1232
- "Normally, this is fully automated, but if your server has strict security "
1233
- "settings, this automated copying may have been prohibited. In that case, you "
1234
- "also need to make sure these folders get synchronized on plugin updates!"
1235
- msgstr ""
1236
-
1237
- #: includes/views/setup-wizard/attach-to.php:3
1238
- msgid "Attach too..."
1239
- msgstr "Připojte se také ..."
1240
-
1241
- #: includes/views/setup-wizard/attach-to.php:4
1242
- msgid "Select to which emails you would like to attach your invoice."
1243
- msgstr "Vyberte, ke kterým emailům byste chtěli připojit fakturu."
1244
-
1245
- #: includes/views/setup-wizard/display-options.php:4
1246
- msgid "Select some additional display options for your invoice."
1247
- msgstr "Vyberte další možnosti zobrazení faktury."
1248
-
1249
- #: includes/views/setup-wizard/good-to-go.php:3
1250
- msgid "You are good to go!"
1251
- msgstr "Můžeš jít!"
1252
-
1253
- #: includes/views/setup-wizard/good-to-go.php:4
1254
- msgid "If you have any questions please have a look at our documentation:"
1255
- msgstr "Pokud máte nějaké dotazy, prosím prohlédněte si dokumentaci:"
1256
-
1257
- #: includes/views/setup-wizard/good-to-go.php:5
1258
- msgid "Invoices & Packing Slips"
1259
- msgstr "Faktury a dodací listy"
1260
-
1261
- #: includes/views/setup-wizard/good-to-go.php:6
1262
- msgid "Happy selling!"
1263
- msgstr "Šťastný prodej!"
1264
-
1265
- #: includes/views/setup-wizard/logo.php:4
1266
- msgid "Set the header image that will display on your invoice."
1267
- msgstr "Nastavte obrázek záhlaví, který se zobrazí na faktuře."
1268
-
1269
- #: includes/views/setup-wizard/paper-format.php:4
1270
- msgid "Select the paper format for your invoice."
1271
- msgstr "Vyberte formát papíru pro vaše faktury."
1272
-
1273
- #: includes/views/setup-wizard/shop-name.php:3
1274
- msgid "Enter your shop name"
1275
- msgstr "Zadejte jméno obchodu"
1276
-
1277
- #: includes/views/setup-wizard/shop-name.php:4
1278
- msgid ""
1279
- "Lets quickly setup your invoice. Please enter the name and address of your "
1280
- "shop in the fields on the right."
1281
- msgstr ""
1282
- "Nastavme rychle fakturaci. Prosím zadejte jméno a adresu vašeho obchodu do "
1283
- "položek na pravé straně."
1284
-
1285
- #: includes/views/setup-wizard/show-action-buttons.php:4
1286
- msgid ""
1287
- "Would you like to display the action buttons in your WooCommerce order list? "
1288
- "The action buttons allow you to manually create a PDF."
1289
- msgstr ""
1290
- "Přejete si zobrazovat tlačítka akcí ve WooCommerce přehledu objednávek? "
1291
- "Tlačítka akcí vám umožní ručně vytvořit PDF."
1292
-
1293
- #: includes/views/setup-wizard/show-action-buttons.php:5
1294
- msgid "(You can always change this setting later via the Screen Options menu)"
1295
- msgstr ""
1296
- "(Toto nastavení můžete později změnit přes Nastavení zobrazených informací)"
1297
-
1298
- #: includes/views/setup-wizard/show-action-buttons.php:18
1299
- msgid "Show action buttons"
1300
- msgstr "Zobrazit tlačítka akcí"
1301
-
1302
- #: includes/views/wcpdf-extensions.php:16
1303
- msgid "Check out these premium extensions!"
1304
- msgstr "Vyzkoušejte tato prémiová rozšíření!"
1305
-
1306
- #: includes/views/wcpdf-extensions.php:17
1307
- msgid "click items to read more"
1308
- msgstr "pro více informací klikněte na položky"
1309
-
1310
- #: includes/views/wcpdf-extensions.php:22
1311
- msgid ""
1312
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1313
- "system"
1314
- msgstr ""
1315
- "Premium PDF Balíček faktur: Vše, co potřebujete pro dokonalý systém fakturace"
1316
-
1317
- #: includes/views/wcpdf-extensions.php:24
1318
- msgid ""
1319
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1320
- "premium extensions:"
1321
- msgstr ""
1322
- "Supercharge WooCommerce PDF faktury a balíčky s našimi prémiovými "
1323
- "rozšířeními:"
1324
-
1325
- #: includes/views/wcpdf-extensions.php:25
1326
- msgid "Professional features:"
1327
- msgstr "Profesionální funkce:"
1328
-
1329
- #: includes/views/wcpdf-extensions.php:27
1330
- #: includes/views/wcpdf-extensions.php:57
1331
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1332
- msgstr "Mailujte/tiskněte/stahujte <b>PDF dobropisy a proforma faktury</b>"
1333
-
1334
- #: includes/views/wcpdf-extensions.php:28
1335
- #: includes/views/wcpdf-extensions.php:58
1336
- msgid ""
1337
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1338
- "packing slips, for example to a drop-shipper or a supplier."
1339
- msgstr ""
1340
- "Posílejte zvláštní <b>notifikační email</b> s (nebo bez) PDF fakturami/"
1341
- "dodacími listy, např. pro drop-shippera nebo dodavatele."
1342
-
1343
- #: includes/views/wcpdf-extensions.php:29
1344
- #: includes/views/wcpdf-extensions.php:59
1345
- msgid ""
1346
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1347
- "document) to the WooCommerce emails of your choice."
1348
- msgstr ""
1349
- "Přikládejte k vybraným WooCommerce emailům <b> 3 statické soubory</b> "
1350
- "(např. dokument s obchodními podmínkami)."
1351
-
1352
- #: includes/views/wcpdf-extensions.php:30
1353
- #: includes/views/wcpdf-extensions.php:60
1354
- msgid ""
1355
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1356
- "and credit notes or utilize the main invoice numbering system"
1357
- msgstr ""
1358
- "Používejte <b>samostatné číslování</b> a/nebo formát proforma faktur a "
1359
- "dobropisů nebo používejte hlavní číslování"
1360
-
1361
- #: includes/views/wcpdf-extensions.php:31
1362
- #: includes/views/wcpdf-extensions.php:61
1363
- msgid ""
1364
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1365
- "additional custom fields, font sizes etc. without the need to create a "
1366
- "custom template."
1367
- msgstr ""
1368
- "<b>Přizpůsobte si formát dodací a fakturační adresy</b>, aby obsahovaly "
1369
- "další vlastní pole, velikosti písma, atd. bez nutnosti vytvářet vlastní "
1370
- "šablonu."
1371
-
1372
- #: includes/views/wcpdf-extensions.php:32
1373
- #: includes/views/wcpdf-extensions.php:62
1374
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1375
- msgstr "Používejte plugin v multijazyčném nastavení <b>WPML</b>"
1376
-
1377
- #: includes/views/wcpdf-extensions.php:34
1378
- #: includes/views/wcpdf-extensions.php:114
1379
- msgid "Advanced, customizable templates"
1380
- msgstr "Pokročilé, přizpůsobitelné šablony"
1381
-
1382
- #: includes/views/wcpdf-extensions.php:36
1383
- #: includes/views/wcpdf-extensions.php:117
1384
- msgid ""
1385
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1386
- "your needs with a drag & drop customizer"
1387
- msgstr ""
1388
- "Přizpůsobte si kompletní obsah faktur (ceny, daně, náhledové obrázky) vašim "
1389
- "potřebám pomocí jednoduchého editoru"
1390
-
1391
- #: includes/views/wcpdf-extensions.php:37
1392
- #: includes/views/wcpdf-extensions.php:118
1393
- msgid "Two extra stylish premade templates (Modern & Business)"
1394
- msgstr "Další dvě stylisticky připravené šablony (Modern a Business)"
1395
-
1396
- #: includes/views/wcpdf-extensions.php:39
1397
- #: includes/views/wcpdf-extensions.php:63
1398
- msgid "Upload automatically to dropbox"
1399
- msgstr "Nahrát automaticky do dropboxu"
1400
-
1401
- #: includes/views/wcpdf-extensions.php:41
1402
- msgid ""
1403
- "This extension conveniently uploads all the invoices (and other pdf "
1404
- "documents from the professional extension) that are emailed to your "
1405
- "customers to Dropbox. The best way to keep your invoice administration up to "
1406
- "date!"
1407
- msgstr ""
1408
- "Toto rozšíření umožňuje pohodlně nahrávat do Dropboxu všechny faktury (a "
1409
- "další pdf dokumenty z profi rozšíření), které jsou posílány zákazníkovi. "
1410
- "Nejlepší způsob, jak udržet správu fakturu v aktuální podobě!"
1411
-
1412
- #: includes/views/wcpdf-extensions.php:44
1413
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1414
- msgstr "Získejte WooCommerce PDF faktury a balíček doplňků"
1415
-
1416
- #: includes/views/wcpdf-extensions.php:53
1417
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1418
- msgstr "Pro verze: proforma faktury, dobropisy a další!"
1419
-
1420
- #: includes/views/wcpdf-extensions.php:55
1421
- msgid ""
1422
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1423
- "features:"
1424
- msgstr "Nabijte WooCommerce PDF Invoices & Packing Slips těmito funkcemi:"
1425
-
1426
- #: includes/views/wcpdf-extensions.php:65
1427
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1428
- msgstr "Získejte WooCommerce PDF Invoices & Packing Slips Professional!"
1429
-
1430
- #: includes/views/wcpdf-extensions.php:73
1431
- msgid "Automatically send payment reminders to your customers"
1432
- msgstr "Automaticky posílejte připomenutí plateb vašim zákazníkům"
1433
-
1434
- #: includes/views/wcpdf-extensions.php:75
1435
- msgid "WooCommerce Smart Reminder emails"
1436
- msgstr "WooCommerce Smart Reminder e-maily"
1437
-
1438
- #: includes/views/wcpdf-extensions.php:77
1439
- msgid "<b>Completely automatic</b> scheduled emails"
1440
- msgstr "<b> Plně automatické </b> plánované e-maily"
1441
-
1442
- #: includes/views/wcpdf-extensions.php:78
1443
- msgid ""
1444
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1445
- "from the order (name, order total, etc)"
1446
- msgstr ""
1447
- "<b> Textový editor s rozšířeným textem </b> pro text e-mailu včetně "
1448
- "zástupných symbolů pro data z objednávky (název, celkový počet objednávek "
1449
- "atd.)"
1450
-
1451
- #: includes/views/wcpdf-extensions.php:79
1452
- msgid ""
1453
- "Configure the exact requirements for sending an email (time after order, "
1454
- "order status, payment method)"
1455
- msgstr ""
1456
- "Konfigurovat přesné požadavky na odeslání e-mailu (čas po objednávce, stav "
1457
- "objednávky, způsob platby)"
1458
-
1459
- #: includes/views/wcpdf-extensions.php:80
1460
- msgid ""
1461
- "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1462
- "order language."
1463
- msgstr ""
1464
- "Plně <b> Kompatibilní s WPML</b> - emaily budou automaticky odeslány v "
1465
- "jazyce objednávky."
1466
-
1467
- #: includes/views/wcpdf-extensions.php:81
1468
- msgid ""
1469
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1470
- "reminders, repeat purchases)"
1471
- msgstr ""
1472
- "<b> Velmi univerzální! </b> Lze použít pro jakýkoli druh upomínací e-mailové "
1473
- "zprávy (přehledy připomenutí, opakované nákupy)"
1474
-
1475
- #: includes/views/wcpdf-extensions.php:82
1476
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1477
- msgstr "Bezproblémová integrace s pluginem PDF Faktury a balíčky svazků"
1478
-
1479
- #: includes/views/wcpdf-extensions.php:84
1480
- msgid "Get WooCommerce Smart Reminder Emails"
1481
- msgstr "Získejte e-maily Smart Reminder společnosti WooCommerce"
1482
-
1483
- #: includes/views/wcpdf-extensions.php:93
1484
- msgid ""
1485
- "Automatically send new orders or packing slips to your printer, as soon as "
1486
- "the customer orders!"
1487
- msgstr ""
1488
- "Posílejte automaticky nové objednávky nebo dodací listy na svou tiskárnu, "
1489
- "jakmile si zákazník objedná!"
1490
-
1491
- #: includes/views/wcpdf-extensions.php:99
1492
- msgid ""
1493
- "Check out the WooCommerce Automatic Order Printing extension from our "
1494
- "partners at Simba Hosting"
1495
- msgstr ""
1496
- "Vyzkoušejte rozšíření WooCommerce Automatic Order Printing od našich "
1497
- "partnerů ze Simba Hosting"
1498
-
1499
- #: includes/views/wcpdf-extensions.php:100
1500
- msgid "WooCommerce Automatic Order Printing"
1501
- msgstr "WooCommerce automatizovaný tisk objednávek"
1502
-
1503
- #. translators: Premium Templates link
1504
- #: includes/views/wcpdf-extensions.php:120
1505
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1506
- msgstr "Vyzkoušejte Premium PDF Invoice & Packing Slips šablony na %s."
1507
-
1508
- #. translators: email link
1509
- #: includes/views/wcpdf-extensions.php:122
1510
- msgid "For custom templates, contact us at %s."
1511
- msgstr "Ohledně vlastních šablon nás kontaktujte na %s."
1512
-
1513
- #: includes/views/wcpdf-settings-page.php:9
1514
- msgid "WooCommerce PDF Invoices"
1515
- msgstr "WooCommerce PDF faktury"
1516
-
1517
- #: includes/wcpdf-functions.php:209
1518
- msgid "Error creating PDF, please contact the site owner."
1519
- msgstr "Při vytváření PDF nastala chyba, prosím kontaktujte vlastníka webu."
1520
-
1521
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1522
- msgid "Billing Address:"
1523
- msgstr "Fakturační adresa:"
1524
-
1525
- #: templates/Simple/invoice.php:48
1526
- msgid "Ship To:"
1527
- msgstr "Odeslat na:"
1528
-
1529
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1530
- msgid "Order Number:"
1531
- msgstr "Číslo objednávky:"
1532
-
1533
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1534
- msgid "Order Date:"
1535
- msgstr "Datum objednávky:"
1536
-
1537
- #: templates/Simple/invoice.php:78
1538
- msgid "Payment Method:"
1539
- msgstr "Způsob platby:"
1540
-
1541
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1542
- msgid "Product"
1543
- msgstr "Zboží"
1544
-
1545
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1546
- msgid "Quantity"
1547
- msgstr "Množství"
1548
-
1549
- #: templates/Simple/invoice.php:94
1550
- msgid "Price"
1551
- msgstr "Cena"
1552
-
1553
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1554
- msgid "SKU"
1555
- msgstr "SKU"
1556
-
1557
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1558
- msgid "SKU:"
1559
- msgstr "SKU:"
1560
-
1561
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1562
- msgid "Weight:"
1563
- msgstr "Hmotnost:"
1564
-
1565
- #: templates/Simple/invoice.php:123
1566
- msgid "Notes"
1567
- msgstr ""
1568
-
1569
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1570
- msgid "Customer Notes"
1571
- msgstr "Poznámka zákazníka"
1572
-
1573
- #: templates/Simple/packing-slip.php:35
1574
- msgid "Shipping Address:"
1575
- msgstr "Doručovací adresa:"
1576
-
1577
- #: templates/Simple/packing-slip.php:66
1578
- msgid "Shipping Method:"
1579
- msgstr "Doručovací metoda:"
1580
-
1581
- #. translators: <a> tags
1582
- #: woocommerce-pdf-invoices-packingslips.php:271
1583
- msgid ""
1584
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1585
- "installed & activated!"
1586
- msgstr ""
1587
-
1588
- #: woocommerce-pdf-invoices-packingslips.php:282
1589
- msgid ""
1590
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1591
- "recommended)."
1592
- msgstr ""
1593
-
1594
- #. translators: <a> tags
1595
- #: woocommerce-pdf-invoices-packingslips.php:284
1596
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1597
- msgstr ""
1598
-
1599
- #. translators: <a> tags
1600
- #: woocommerce-pdf-invoices-packingslips.php:286
1601
- msgid ""
1602
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1603
- "to enable backwards compatibility with PHP5.6."
1604
- msgstr ""
1605
-
1606
- #. translators: directory path
1607
- #: woocommerce-pdf-invoices-packingslips.php:374
1608
- msgid ""
1609
- "The PDF files in %s are not currently protected due to your site running on "
1610
- "<strong>NGINX</strong>."
1611
- msgstr ""
1612
-
1613
- #: woocommerce-pdf-invoices-packingslips.php:375
1614
- msgid "To protect them, you must click the button below."
1615
- msgstr ""
1616
-
1617
- #. translators: plugin name
1618
- #: woocommerce-pdf-invoices-packingslips.php:419
1619
- msgid ""
1620
- "When sending emails with MailPoet 3 and the active sending method is "
1621
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1622
- "the emails."
1623
- msgstr ""
1624
-
1625
- #. translators: "Your web host / web server"
1626
- #: woocommerce-pdf-invoices-packingslips.php:421
1627
- msgid "To fix this you should select other method like %1$s or %2$s."
1628
- msgstr ""
1629
-
1630
- #. translators: "Your web host / web server"
1631
- #: woocommerce-pdf-invoices-packingslips.php:421
1632
- msgid "Your web host / web server"
1633
- msgstr ""
1634
-
1635
- #: woocommerce-pdf-invoices-packingslips.php:422
1636
- msgid "Change MailPoet sending method"
1637
- msgstr ""
1638
-
1639
- #~ msgid "Invoice Number (unformatted!)"
1640
- #~ msgstr "Číslo faktury (neformátováno)"
1641
-
1642
- #~ msgid "h"
1643
- #~ msgstr "h"
1644
-
1645
- #~ msgid "m"
1646
- #~ msgstr "m"
1647
-
1648
- #, php-format
1649
- #~ msgid "Download %s (PDF)"
1650
- #~ msgstr "Stáhnout %s (PDF)"
1651
-
1652
- #~ msgid "Settings"
1653
- #~ msgstr "Nastavení"
1654
-
1655
- #~ msgid "WooCommerce"
1656
- #~ msgstr "WooCommerce"
1657
-
1658
- #, php-format
1659
- #~ msgid "(includes %s)"
1660
- #~ msgstr "(zahrnuje %s)"
1661
-
1662
- #, php-format
1663
- #~ msgid "(Includes %s)"
1664
- #~ msgstr "(Zahrnuje %s)"
1665
-
1666
- #~ msgid ""
1667
- #~ "Display shipping address (in addition to the default billing address) if "
1668
- #~ "different from billing address"
1669
- #~ msgstr ""
1670
- #~ "Zobrazit doručovací adresu na faktuře (společně s fakturační adresou), "
1671
- #~ "pokud se liší"
1672
-
1673
- #~ msgid ""
1674
- #~ "Disable automatic creation/attachment when only free products are ordered"
1675
- #~ msgstr ""
1676
- #~ "Vypnout automatické vytváření/přikládání faktur pokud byly objednány "
1677
- #~ "pouze produkty zdarma"
1678
-
1679
- #~ msgid ""
1680
- #~ "Display billing address (in addition to the default shipping address) if "
1681
- #~ "different from shipping address"
1682
- #~ msgstr ""
1683
- #~ "Zobrazit fakturační adresu na dodacím listu (společně s doručovací "
1684
- #~ "adresou), pokud se liší"
1
+ # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in Czech
2
+ # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
+ "Stable (latest release)\n"
7
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
8
+ "invoices-packing-slips\n"
9
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
10
+ "PO-Revision-Date: 2021-10-27 01:22-0400\n"
11
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
12
+ "Language-Team: \n"
13
+ "Language: cs_CZ\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
+ "X-Generator: Poedit 3.0\n"
19
+
20
+ #. Plugin Name of the plugin
21
+ msgid "WooCommerce PDF Invoices & Packing Slips"
22
+ msgstr "WooCommerce PDF faktury & dodací listy"
23
+
24
+ #. Plugin URI of the plugin
25
+ #. Author URI of the plugin
26
+ msgid "http://www.wpovernight.com"
27
+ msgstr "http://www.wpovernight.com"
28
+
29
+ #. Description of the plugin
30
+ msgid ""
31
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
32
+ msgstr ""
33
+ "Vytváří, tiskne a posílá emailem faktury v PDF a dodací listy k WooCommerce "
34
+ "objednávkám."
35
+
36
+ #. Author of the plugin
37
+ msgid "Ewout Fernhout"
38
+ msgstr "Ewout Fernhout"
39
+
40
+ #. translators: rounded count
41
+ #: includes/class-wcpdf-admin.php:92
42
+ msgid "Wow, you have created more than %d invoices with our plugin!"
43
+ msgstr "Teda, vytvořili jste s pluginem více než %d faktur!"
44
+
45
+ #: includes/class-wcpdf-admin.php:93
46
+ msgid ""
47
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
48
+ "rating. Help us spread the word and boost our motivation!"
49
+ msgstr ""
50
+ "To by pro nás znamenalo hodně, kdybyste nám rychle přidali 5-ti hvězdičkový "
51
+ "plugin. Pomozte nám jej šířit a zvýšit naši motivaci!"
52
+
53
+ #: includes/class-wcpdf-admin.php:95
54
+ msgid "Yes you deserve it!"
55
+ msgstr "Ano, zasloužíte si to!"
56
+
57
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
58
+ #: includes/views/attachment-settings-hint.php:24
59
+ #: includes/views/wcpdf-extensions.php:131
60
+ #: woocommerce-pdf-invoices-packingslips.php:377
61
+ #: woocommerce-pdf-invoices-packingslips.php:423
62
+ msgid "Hide this message"
63
+ msgstr "Skrýt tuto zprávu"
64
+
65
+ #: includes/class-wcpdf-admin.php:96
66
+ msgid "Already did!"
67
+ msgstr "Už je provedeno!"
68
+
69
+ #: includes/class-wcpdf-admin.php:97
70
+ msgid "Actually, I have a complaint..."
71
+ msgstr "Vlastně mám stížnost ..."
72
+
73
+ #: includes/class-wcpdf-admin.php:132
74
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
75
+ msgstr "Novinka na WooCommerce PDF faktury a balíčky?"
76
+
77
+ #: includes/class-wcpdf-admin.php:132
78
+ msgid "Jumpstart the plugin by following our wizard!"
79
+ msgstr "Spusťte plugin podle našeho průvodce!"
80
+
81
+ #: includes/class-wcpdf-admin.php:133
82
+ msgid "Run the Setup Wizard"
83
+ msgstr "Spusťte Průvodce instalací"
84
+
85
+ #: includes/class-wcpdf-admin.php:133
86
+ msgid "I am the wizard"
87
+ msgstr "Já jsem \"kouzelník\""
88
+
89
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
90
+ #: includes/documents/class-wcpdf-invoice.php:302
91
+ msgid "Invoice Number"
92
+ msgstr "Číslo faktury"
93
+
94
+ #: includes/class-wcpdf-admin.php:261
95
+ msgid "Send order email"
96
+ msgstr "Odeslat email s objednávkou"
97
+
98
+ #: includes/class-wcpdf-admin.php:272
99
+ msgid "Create PDF"
100
+ msgstr "Vytvořit PDF"
101
+
102
+ #: includes/class-wcpdf-admin.php:282
103
+ msgid "PDF document data"
104
+ msgstr ""
105
+
106
+ #: includes/class-wcpdf-admin.php:304
107
+ msgid "Choose an email to send&hellip;"
108
+ msgstr ""
109
+
110
+ #: includes/class-wcpdf-admin.php:320
111
+ msgid "Save order & send email"
112
+ msgstr "Uložit objednávku a odeslat email"
113
+
114
+ #: includes/class-wcpdf-admin.php:322
115
+ msgid "Send email"
116
+ msgstr "Odeslat email"
117
+
118
+ #: includes/class-wcpdf-admin.php:378
119
+ #: includes/documents/class-wcpdf-invoice.php:460
120
+ msgid "Invoice Number:"
121
+ msgstr "Číslo faktury:"
122
+
123
+ #: includes/class-wcpdf-admin.php:381
124
+ #: includes/documents/class-wcpdf-invoice.php:468
125
+ msgid "Invoice Date:"
126
+ msgstr "Datum fakturace:"
127
+
128
+ #: includes/class-wcpdf-admin.php:384
129
+ msgid "Notes (printed in the invoice):"
130
+ msgstr ""
131
+
132
+ #. translators: document title
133
+ #: includes/class-wcpdf-admin.php:469
134
+ msgid "Set %s number & date"
135
+ msgstr ""
136
+
137
+ #: includes/class-wcpdf-admin.php:478
138
+ msgid "unformatted!"
139
+ msgstr ""
140
+
141
+ #: includes/class-wcpdf-admin.php:518
142
+ msgid "Save changes"
143
+ msgstr ""
144
+
145
+ #: includes/class-wcpdf-admin.php:519
146
+ msgid "Cancel"
147
+ msgstr ""
148
+
149
+ #. translators: name/description of the context for document creation logs
150
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
151
+ msgid "order details (number and/or date set manually)"
152
+ msgstr ""
153
+
154
+ #. translators: %s: email title
155
+ #: includes/class-wcpdf-admin.php:647
156
+ msgid "%s email notification manually sent."
157
+ msgstr "%s email s upozorněním odeslán manuálně."
158
+
159
+ #: includes/class-wcpdf-admin.php:734
160
+ msgid "Nonce expired!"
161
+ msgstr ""
162
+
163
+ #: includes/class-wcpdf-admin.php:740
164
+ msgid "Bad action!"
165
+ msgstr ""
166
+
167
+ #: includes/class-wcpdf-admin.php:746
168
+ msgid "Incomplete request!"
169
+ msgstr ""
170
+
171
+ #: includes/class-wcpdf-admin.php:752
172
+ msgid "No permissions!"
173
+ msgstr ""
174
+
175
+ #: includes/class-wcpdf-admin.php:776
176
+ msgid "Document data saved!"
177
+ msgstr ""
178
+
179
+ #: includes/class-wcpdf-admin.php:777
180
+ msgid "An error occurred while saving the document data!"
181
+ msgstr ""
182
+
183
+ #: includes/class-wcpdf-admin.php:780
184
+ msgid "Document regenerated!"
185
+ msgstr ""
186
+
187
+ #: includes/class-wcpdf-admin.php:781
188
+ msgid "An error occurred while regenerating the document!"
189
+ msgstr ""
190
+
191
+ #: includes/class-wcpdf-admin.php:784
192
+ msgid "Document deleted!"
193
+ msgstr ""
194
+
195
+ #: includes/class-wcpdf-admin.php:785
196
+ msgid "An error occurred while deleting the document!"
197
+ msgstr ""
198
+
199
+ #: includes/class-wcpdf-admin.php:841
200
+ msgid "Document does not exist."
201
+ msgstr ""
202
+
203
+ #: includes/class-wcpdf-admin.php:850
204
+ msgid "Document is empty."
205
+ msgstr ""
206
+
207
+ #: includes/class-wcpdf-admin.php:881
208
+ msgid "DEBUG output enabled"
209
+ msgstr "DEBUG výstup povolen"
210
+
211
+ #: includes/class-wcpdf-assets.php:94
212
+ msgid "Are you sure you want to delete this document? This cannot be undone."
213
+ msgstr ""
214
+ "Jste si jistí, že chcete smazat tento dokument? Nebude to možné vzít zpět."
215
+
216
+ #: includes/class-wcpdf-assets.php:95
217
+ msgid ""
218
+ "Are you sure you want to regenerate this document? This will make the "
219
+ "document reflect the most current settings (such as footer text, document "
220
+ "name, etc.) rather than using historical settings."
221
+ msgstr ""
222
+
223
+ #: includes/class-wcpdf-frontend.php:129
224
+ msgid "Download invoice (PDF)"
225
+ msgstr "Stáhnout fakturu (PDF)"
226
+
227
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
228
+ #: includes/class-wcpdf-main.php:337
229
+ msgid "You do not have sufficient permissions to access this page."
230
+ msgstr "Nemáte dostatečné oprávnění pro přístup."
231
+
232
+ #: includes/class-wcpdf-main.php:272
233
+ msgid "You haven't selected any orders"
234
+ msgstr "Nevybrali jste žádné objednávky"
235
+
236
+ #: includes/class-wcpdf-main.php:276
237
+ msgid "Some of the export parameters are missing."
238
+ msgstr "Chybí některé z exportních parametrů."
239
+
240
+ #. translators: document type
241
+ #: includes/class-wcpdf-main.php:378
242
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
243
+ msgstr "Dokument typu \"%s\" pro vybrané objednávky nebyl vygenerován"
244
+
245
+ #. translators: 1. plugin name, 2. directory path
246
+ #: includes/class-wcpdf-main.php:603
247
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
248
+ msgstr ""
249
+
250
+ #: includes/class-wcpdf-main.php:604
251
+ msgid ""
252
+ "Please check your directories write permissions or contact your hosting "
253
+ "service provider."
254
+ msgstr ""
255
+
256
+ #: includes/class-wcpdf-main.php:919
257
+ #: includes/documents/class-wcpdf-invoice.php:286
258
+ msgid "Invoice Date"
259
+ msgstr "Datum faktury"
260
+
261
+ #. translators: name/description of the context for document creation logs
262
+ #: includes/class-wcpdf-main.php:949
263
+ msgid "bulk order action"
264
+ msgstr ""
265
+
266
+ #. translators: name/description of the context for document creation logs
267
+ #: includes/class-wcpdf-main.php:957
268
+ msgid "single order action"
269
+ msgstr ""
270
+
271
+ #. translators: name/description of the context for document creation logs
272
+ #: includes/class-wcpdf-main.php:965
273
+ msgid "my account"
274
+ msgstr ""
275
+
276
+ #. translators: name/description of the context for document creation logs
277
+ #: includes/class-wcpdf-main.php:973
278
+ msgid "email attachment"
279
+ msgstr ""
280
+
281
+ #. translators: 1. document title, 2. creation source
282
+ #: includes/class-wcpdf-main.php:982
283
+ msgid "PDF %1$s created via %2$s."
284
+ msgstr ""
285
+
286
+ #. translators: document title
287
+ #: includes/class-wcpdf-main.php:1026
288
+ msgid "Order %s Saved"
289
+ msgstr ""
290
+
291
+ #: includes/class-wcpdf-settings-callbacks.php:27
292
+ msgid ""
293
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
294
+ "Do not use them on a live website!"
295
+ msgstr ""
296
+ "<b>Upozornění!</b> Níže uvedená nastavení slouží pouze pro ladění/vývoj. Na "
297
+ "ostrém webu je nepoužívejte!"
298
+
299
+ #: includes/class-wcpdf-settings-callbacks.php:36
300
+ msgid ""
301
+ "These are used for the (optional) footer columns in the <em>Modern "
302
+ "(Premium)</em> template, but can also be used for other elements in your "
303
+ "custom template"
304
+ msgstr ""
305
+ "Tyto prvky jsou použité jako volitelné části patičky v šabloně <em>Modern "
306
+ "(Premium)</em>, ale mohou být v rámci vaší vlastní šablony využity i jinak"
307
+
308
+ #: includes/class-wcpdf-settings-callbacks.php:384
309
+ msgid "Image resolution"
310
+ msgstr "Rozměry obrázku"
311
+
312
+ #: includes/class-wcpdf-settings-callbacks.php:411
313
+ msgid "Save"
314
+ msgstr "Uložit"
315
+
316
+ #: includes/class-wcpdf-settings-debug.php:45
317
+ #: woocommerce-pdf-invoices-packingslips.php:376
318
+ msgid "Generate random temporary folder name"
319
+ msgstr ""
320
+
321
+ #. translators: directory path
322
+ #: includes/class-wcpdf-settings-debug.php:58
323
+ msgid "Temporary folder moved to %s"
324
+ msgstr ""
325
+
326
+ #: includes/class-wcpdf-settings-debug.php:68
327
+ msgid "Reinstall fonts"
328
+ msgstr "Přeinstalujte písma"
329
+
330
+ #: includes/class-wcpdf-settings-debug.php:89
331
+ msgid "Fonts reinstalled!"
332
+ msgstr "Fonty přeinstalovány!"
333
+
334
+ #: includes/class-wcpdf-settings-debug.php:98
335
+ msgid "Remove temporary files"
336
+ msgstr "Odebrat dočasné soubory"
337
+
338
+ #: includes/class-wcpdf-settings-debug.php:109
339
+ msgid "Unable to read temporary folder contents!"
340
+ msgstr "Nelze číst obsah dočasných složek!"
341
+
342
+ #. translators: 1,2. file count
343
+ #: includes/class-wcpdf-settings-debug.php:127
344
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
345
+ msgstr ""
346
+
347
+ #. translators: file count
348
+ #: includes/class-wcpdf-settings-debug.php:131
349
+ msgid "Successfully deleted %d files!"
350
+ msgstr "Úspěšně odstraněno %d souborů!"
351
+
352
+ #: includes/class-wcpdf-settings-debug.php:135
353
+ msgid "Nothing to delete!"
354
+ msgstr "Nic ke smazání!"
355
+
356
+ #: includes/class-wcpdf-settings-debug.php:146
357
+ msgid "Delete legacy (1.X) settings"
358
+ msgstr "Odstranit starší (1.X) nastavení"
359
+
360
+ #: includes/class-wcpdf-settings-debug.php:162
361
+ msgid "Legacy settings deleted!"
362
+ msgstr "Starší nastavení bylo smazáno!"
363
+
364
+ #: includes/class-wcpdf-settings-debug.php:192
365
+ msgid "Debug settings"
366
+ msgstr "Nastavení pro ladění"
367
+
368
+ #: includes/class-wcpdf-settings-debug.php:198
369
+ msgid "Legacy mode"
370
+ msgstr "Kompatibilní režim"
371
+
372
+ #: includes/class-wcpdf-settings-debug.php:204
373
+ msgid ""
374
+ "Legacy mode ensures compatibility with templates and filters from previous "
375
+ "versions."
376
+ msgstr ""
377
+ "Režim Legacy zajišťuje kompatibilitu s šablonami a filtry z předchozích "
378
+ "verzí."
379
+
380
+ #: includes/class-wcpdf-settings-debug.php:210
381
+ msgid "Legacy textdomain fallback"
382
+ msgstr ""
383
+
384
+ #: includes/class-wcpdf-settings-debug.php:216
385
+ msgid ""
386
+ "Legacy textdomain fallback ensures compatibility with translation files from "
387
+ "versions prior to 2017-05-15."
388
+ msgstr ""
389
+
390
+ #: includes/class-wcpdf-settings-debug.php:222
391
+ msgid "Allow guest access"
392
+ msgstr "Umožnit přístup návštěvníkům"
393
+
394
+ #: includes/class-wcpdf-settings-debug.php:228
395
+ msgid ""
396
+ "Enable this to allow customers that purchase without an account to access "
397
+ "their PDF with a unique key"
398
+ msgstr ""
399
+ "Toto povolte, pokud chcete zákazníkům kteří si objednají bez registrace "
400
+ "konta umožnit přístup k PDF dokumentům prostřednictvím unikátního klíče"
401
+
402
+ #: includes/class-wcpdf-settings-debug.php:234
403
+ msgid "Calculate document numbers (slow)"
404
+ msgstr "Vypočítat čísla dokumentů (pomalé)"
405
+
406
+ #: includes/class-wcpdf-settings-debug.php:240
407
+ msgid ""
408
+ "Document numbers (such as invoice numbers) are generated using "
409
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
410
+ "with more than 1."
411
+ msgstr ""
412
+ "Čísla dokumentů (například čísla faktur) jsou ve výchozím nastavení "
413
+ "generována pomocí funkce AUTO_INCREMENT. Použijte toto nastavení, pokud "
414
+ "databáze zvýší automaticky o více než 1."
415
+
416
+ #: includes/class-wcpdf-settings-debug.php:246
417
+ msgid "Enable debug output"
418
+ msgstr "Povolit výstup ladění"
419
+
420
+ #: includes/class-wcpdf-settings-debug.php:252
421
+ msgid ""
422
+ "Enable this option to output plugin errors if you're getting a blank page or "
423
+ "other PDF generation issues"
424
+ msgstr ""
425
+ "Povolte toto nastavení pro zobrazení chyb pluginu, pokud se zobrazuje "
426
+ "prázdná stránka nebo máte jiný problém s generováním PDF"
427
+
428
+ #: includes/class-wcpdf-settings-debug.php:253
429
+ msgid ""
430
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
431
+ "places on your site too, therefor this is not recommended to leave it "
432
+ "enabled on live sites."
433
+ msgstr ""
434
+ "<b> Upozornění! </b> Toto nastavení může odhalit chyby (z jiných zásuvných "
435
+ "modulů) i na jiných místech vašeho webu, proto se nedoporučuje nechat je "
436
+ "povoleno na produkčních stránkách."
437
+
438
+ #: includes/class-wcpdf-settings-debug.php:254
439
+ msgid ""
440
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
441
+ "order basis."
442
+ msgstr ""
443
+
444
+ #: includes/class-wcpdf-settings-debug.php:260
445
+ msgid "Enable automatic cleanup"
446
+ msgstr "Povolit automatické pročištění"
447
+
448
+ #. translators: number of days
449
+ #: includes/class-wcpdf-settings-debug.php:268
450
+ msgid "every %s days"
451
+ msgstr "každý %s (-tý) den"
452
+
453
+ #: includes/class-wcpdf-settings-debug.php:273
454
+ msgid ""
455
+ "Automatically clean up PDF files stored in the temporary folder (used for "
456
+ "email attachments)"
457
+ msgstr ""
458
+ "Automaticky pročistit PDF soubory uložené ve složkách pro dočasné soubory "
459
+ "(použito pro přílohy emailů)"
460
+
461
+ #: includes/class-wcpdf-settings-debug.php:274
462
+ msgid ""
463
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
464
+ "automatic cleanup but not enabled on your server."
465
+ msgstr ""
466
+ "<b> Zakázáno: </b> Funkce PHP global a filemtime jsou vyžadovány pro "
467
+ "automatické vyčištění, ale nejsou povoleny na vašem serveru."
468
+
469
+ #: includes/class-wcpdf-settings-debug.php:280
470
+ msgid "Output to HTML"
471
+ msgstr "Výstup do HTML"
472
+
473
+ #: includes/class-wcpdf-settings-debug.php:286
474
+ msgid ""
475
+ "Send the template output as HTML to the browser instead of creating a PDF."
476
+ msgstr "Pošle výstup šablony v HTML do prohlížeče místo vytvoření PDF."
477
+
478
+ #: includes/class-wcpdf-settings-debug.php:287
479
+ msgid ""
480
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
481
+ "order basis."
482
+ msgstr ""
483
+
484
+ #: includes/class-wcpdf-settings-debug.php:293
485
+ msgid "Use alternative HTML5 parser to parse HTML"
486
+ msgstr "Použít alternativní HTML5 parser na analýzu HTML"
487
+
488
+ #: includes/class-wcpdf-settings-debug.php:304
489
+ msgid "Log to order notes"
490
+ msgstr ""
491
+
492
+ #: includes/class-wcpdf-settings-debug.php:310
493
+ msgid "Log PDF document creation to order notes."
494
+ msgstr ""
495
+
496
+ #: includes/class-wcpdf-settings-documents.php:30
497
+ #: includes/class-wcpdf-settings.php:104
498
+ msgid "Documents"
499
+ msgstr "Dokumenty"
500
+
501
+ #: includes/class-wcpdf-settings-documents.php:36
502
+ #: includes/class-wcpdf-settings-documents.php:57
503
+ msgid "untitled"
504
+ msgstr ""
505
+
506
+ #: includes/class-wcpdf-settings-documents.php:50
507
+ msgid ""
508
+ "All available documents are listed below. Click on a document to configure "
509
+ "it."
510
+ msgstr ""
511
+ "Všechny dostupné dokumenty jsou uvedeny níže. Klikněte na dokument, který "
512
+ "chcete konfigurovat."
513
+
514
+ #: includes/class-wcpdf-settings-general.php:40
515
+ msgid "General settings"
516
+ msgstr "Všeobecná nastavení"
517
+
518
+ #: includes/class-wcpdf-settings-general.php:46
519
+ msgid "How do you want to view the PDF?"
520
+ msgstr "Jak chcete zobrazit PDF?"
521
+
522
+ #: includes/class-wcpdf-settings-general.php:53
523
+ msgid "Download the PDF"
524
+ msgstr "Stáhnout PDF"
525
+
526
+ #: includes/class-wcpdf-settings-general.php:54
527
+ msgid "Open the PDF in a new browser tab/window"
528
+ msgstr "Otevřít PDF v novém okně"
529
+
530
+ #: includes/class-wcpdf-settings-general.php:61
531
+ msgid "Choose a template"
532
+ msgstr "Vyberte šablonu"
533
+
534
+ #. translators: 1,2. template paths
535
+ #: includes/class-wcpdf-settings-general.php:69
536
+ msgid ""
537
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
538
+ "your (child) theme in <code>%2$s</code> to customize them"
539
+ msgstr ""
540
+
541
+ #: includes/class-wcpdf-settings-general.php:75
542
+ msgid "Paper size"
543
+ msgstr "Velikost papíru"
544
+
545
+ #: includes/class-wcpdf-settings-general.php:82
546
+ #: includes/views/setup-wizard/paper-format.php:12
547
+ msgid "A4"
548
+ msgstr "A4"
549
+
550
+ #: includes/class-wcpdf-settings-general.php:83
551
+ #: includes/views/setup-wizard/paper-format.php:13
552
+ msgid "Letter"
553
+ msgstr "Dopis"
554
+
555
+ #: includes/class-wcpdf-settings-general.php:90
556
+ msgid "Test mode"
557
+ msgstr "Testovací režim"
558
+
559
+ #: includes/class-wcpdf-settings-general.php:96
560
+ msgid ""
561
+ "With test mode enabled, any document generated will always use the latest "
562
+ "settings, rather than using the settings as configured at the time the "
563
+ "document was first created."
564
+ msgstr ""
565
+ "Při aktivovaném zkušebním režimu bude každý vygenerovaný dokument vždy "
566
+ "používat nejnovější nastavení, spíše než používat nastavení nakonfigurovaná "
567
+ "v okamžiku, kdy byl dokument vytvořen."
568
+
569
+ #: includes/class-wcpdf-settings-general.php:96
570
+ msgid ""
571
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
572
+ "setting and will still be generated."
573
+ msgstr ""
574
+ "<strong>Poznámka:</strong> čísla a datumy faktur nejsou tímto nastavením "
575
+ "dotčena a budou stále generována."
576
+
577
+ #: includes/class-wcpdf-settings-general.php:102
578
+ msgid "Extended currency symbol support"
579
+ msgstr "Rozšířená podpora symbolů měny"
580
+
581
+ #: includes/class-wcpdf-settings-general.php:108
582
+ msgid "Enable this if your currency symbol is not displaying properly"
583
+ msgstr "Povolte tuto možnost, pokud se symbol měny nezobrazuje správně"
584
+
585
+ #: includes/class-wcpdf-settings-general.php:114
586
+ msgid "Enable font subsetting"
587
+ msgstr "Povolit podnastavení písma"
588
+
589
+ #: includes/class-wcpdf-settings-general.php:120
590
+ msgid ""
591
+ "Font subsetting can reduce file size by only including the characters that "
592
+ "are used in the PDF, but limits the ability to edit PDF files later. "
593
+ "Recommended if you're using an Asian font."
594
+ msgstr ""
595
+ "Font písma může snížit velikost souboru pouze tím, že obsahuje znaky použité "
596
+ "v PDF, ale omezuje možnost později upravovat soubory PDF. Doporučeno, pokud "
597
+ "používáte asijské písmo."
598
+
599
+ #: includes/class-wcpdf-settings-general.php:126
600
+ msgid "Shop header/logo"
601
+ msgstr "Hlavička/logo"
602
+
603
+ #: includes/class-wcpdf-settings-general.php:132
604
+ #: includes/views/setup-wizard/logo.php:20
605
+ msgid "Select or upload your invoice header/logo"
606
+ msgstr "Vyberte nebo nahrajte hlavičku/logo"
607
+
608
+ #: includes/class-wcpdf-settings-general.php:133
609
+ #: includes/views/setup-wizard/logo.php:20
610
+ msgid "Set image"
611
+ msgstr "Vybrat obrázek"
612
+
613
+ #: includes/class-wcpdf-settings-general.php:134
614
+ #: includes/views/setup-wizard/logo.php:20
615
+ msgid "Remove image"
616
+ msgstr "Odebrat obrázek"
617
+
618
+ #: includes/class-wcpdf-settings-general.php:141
619
+ msgid "Logo height"
620
+ msgstr ""
621
+
622
+ #: includes/class-wcpdf-settings-general.php:149
623
+ msgid ""
624
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
625
+ "decimals.<br/>For example: 1.15in or 40mm"
626
+ msgstr ""
627
+
628
+ #: includes/class-wcpdf-settings-general.php:155
629
+ #: includes/class-wcpdf-setup-wizard.php:49
630
+ msgid "Shop Name"
631
+ msgstr "Název obchodu"
632
+
633
+ #: includes/class-wcpdf-settings-general.php:168
634
+ msgid "Shop Address"
635
+ msgstr "Adresa obchodu"
636
+
637
+ #: includes/class-wcpdf-settings-general.php:183
638
+ msgid "Footer: terms & conditions, policies, etc."
639
+ msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
640
+
641
+ #: includes/class-wcpdf-settings-general.php:198
642
+ msgid "Extra template fields"
643
+ msgstr "Extra políčka v šabloně"
644
+
645
+ #: includes/class-wcpdf-settings-general.php:204
646
+ msgid "Extra field 1"
647
+ msgstr "Extra políčko 1"
648
+
649
+ #: includes/class-wcpdf-settings-general.php:212
650
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
651
+ msgstr "Tohle je 1. políčko v patičce šablony <i>Modern (Premium)</i>"
652
+
653
+ #: includes/class-wcpdf-settings-general.php:219
654
+ msgid "Extra field 2"
655
+ msgstr "Extra políčko 2"
656
+
657
+ #: includes/class-wcpdf-settings-general.php:227
658
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
659
+ msgstr "Tohle je 2. políčko v patičce šablony <i>Modern (Premium)</i>"
660
+
661
+ #: includes/class-wcpdf-settings-general.php:234
662
+ msgid "Extra field 3"
663
+ msgstr "Extra políčko 3"
664
+
665
+ #: includes/class-wcpdf-settings-general.php:242
666
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
667
+ msgstr "Tohle je 3. políčko v patičce šablony <i>Modern (Premium)</i>"
668
+
669
+ #: includes/class-wcpdf-settings-general.php:290
670
+ msgid "Custom"
671
+ msgstr ""
672
+
673
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
674
+ msgid "PDF Invoices"
675
+ msgstr "PDF faktury"
676
+
677
+ #: includes/class-wcpdf-settings.php:81
678
+ msgid "Documentation"
679
+ msgstr "Dokumentace"
680
+
681
+ #: includes/class-wcpdf-settings.php:82
682
+ msgid "Support Forum"
683
+ msgstr "Fórum podpory"
684
+
685
+ #. translators: database row value
686
+ #: includes/class-wcpdf-settings.php:95
687
+ msgid ""
688
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
689
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
690
+ "document numbers (slow)' setting in the Status tab to use an alternate "
691
+ "method."
692
+ msgstr ""
693
+ "<strong>Upozornění! </strong> Databáze má velikost kroku AUTO_INCREMENT %s, "
694
+ "čísla faktur nemusí být postupná. Aktivujte nastavení \"Vypočítat čísla "
695
+ "dokumentů (pomalé)\" na kartě Stav, abyste použili alternativní metodu."
696
+
697
+ #: includes/class-wcpdf-settings.php:103
698
+ msgid "General"
699
+ msgstr "Všeobecné"
700
+
701
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
702
+ msgid "Status"
703
+ msgstr "Stav"
704
+
705
+ #. translators: 1. path, 2. template ID
706
+ #: includes/class-wcpdf-settings.php:396
707
+ msgid "Template setting migrated from %1$s to %2$s"
708
+ msgstr ""
709
+
710
+ #: includes/class-wcpdf-setup-wizard.php:53
711
+ #: includes/views/setup-wizard/logo.php:3
712
+ msgid "Your logo"
713
+ msgstr "Vaše logo"
714
+
715
+ #: includes/class-wcpdf-setup-wizard.php:57
716
+ msgid "Attachments"
717
+ msgstr "Přílohy"
718
+
719
+ #: includes/class-wcpdf-setup-wizard.php:61
720
+ #: includes/views/setup-wizard/display-options.php:3
721
+ msgid "Display options"
722
+ msgstr "Možnosti zobrazení"
723
+
724
+ #: includes/class-wcpdf-setup-wizard.php:65
725
+ #: includes/views/setup-wizard/paper-format.php:3
726
+ msgid "Paper format"
727
+ msgstr "Formát papíru"
728
+
729
+ #: includes/class-wcpdf-setup-wizard.php:69
730
+ #: includes/views/setup-wizard/show-action-buttons.php:3
731
+ msgid "Action buttons"
732
+ msgstr "Tlačítka akcí"
733
+
734
+ #: includes/class-wcpdf-setup-wizard.php:73
735
+ msgid "Ready!"
736
+ msgstr "Připraveno!"
737
+
738
+ #: includes/class-wcpdf-setup-wizard.php:135
739
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
740
+ msgstr "WooCommerce PDF faktury a dodací listy &rsaquo; Průvodce instalací"
741
+
742
+ #: includes/class-wcpdf-setup-wizard.php:187
743
+ msgid "Previous"
744
+ msgstr "Předchozí"
745
+
746
+ #: includes/class-wcpdf-setup-wizard.php:192
747
+ msgid "Next"
748
+ msgstr "Další"
749
+
750
+ #: includes/class-wcpdf-setup-wizard.php:193
751
+ msgid "Skip this step"
752
+ msgstr "Přeskočit"
753
+
754
+ #: includes/class-wcpdf-setup-wizard.php:195
755
+ msgid "Finish"
756
+ msgstr "Dokončit"
757
+
758
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
759
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
760
+ msgid "N/A"
761
+ msgstr "Není k dispozici"
762
+
763
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
764
+ msgid "Payment method"
765
+ msgstr "Platební metoda"
766
+
767
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
768
+ msgid "Shipping method"
769
+ msgstr "Doručovací metoda"
770
+
771
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
772
+ msgid "Subtotal"
773
+ msgstr "Mezisoučet"
774
+
775
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
776
+ msgid "Shipping"
777
+ msgstr "Doprava"
778
+
779
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
780
+ msgid "Discount"
781
+ msgstr "Sleva"
782
+
783
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
784
+ msgid "VAT"
785
+ msgstr "DPH"
786
+
787
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
788
+ msgid "Tax rate"
789
+ msgstr "Daňová sazba"
790
+
791
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
792
+ msgid "Total ex. VAT"
793
+ msgstr "Celkem bez DPH"
794
+
795
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
796
+ msgid "Total"
797
+ msgstr "Celkem"
798
+
799
+ #. translators: 1. credit note title, 2. refund id
800
+ #: includes/documents/abstract-wcpdf-order-document.php:336
801
+ msgid "%1$s (refund #%2$s) was regenerated."
802
+ msgstr ""
803
+
804
+ #. translators: 1. credit note title, 2. refund id
805
+ #: includes/documents/abstract-wcpdf-order-document.php:336
806
+ msgid "%s was regenerated"
807
+ msgstr ""
808
+
809
+ #. translators: %s: document name
810
+ #: includes/documents/abstract-wcpdf-order-document.php:422
811
+ msgid "%s Number:"
812
+ msgstr ""
813
+
814
+ #. translators: %s: document name
815
+ #: includes/documents/abstract-wcpdf-order-document.php:428
816
+ msgid "%s Date:"
817
+ msgstr ""
818
+
819
+ #: includes/documents/abstract-wcpdf-order-document.php:904
820
+ msgid "Admin email"
821
+ msgstr "Admin email"
822
+
823
+ #: includes/documents/abstract-wcpdf-order-document.php:907
824
+ msgid "Manual email"
825
+ msgstr "Manuální email"
826
+
827
+ #: includes/documents/class-wcpdf-invoice.php:32
828
+ #: includes/documents/class-wcpdf-invoice.php:56
829
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
830
+ msgid "Invoice"
831
+ msgstr "Faktura"
832
+
833
+ #: includes/documents/class-wcpdf-invoice.php:131
834
+ msgid "invoice"
835
+ msgid_plural "invoices"
836
+ msgstr[0] "faktura"
837
+ msgstr[1] "faktury"
838
+ msgstr[2] "faktur"
839
+
840
+ #: includes/documents/class-wcpdf-invoice.php:186
841
+ #: includes/documents/class-wcpdf-packing-slip.php:88
842
+ msgid "Enable"
843
+ msgstr "Zapnout"
844
+
845
+ #: includes/documents/class-wcpdf-invoice.php:197
846
+ msgid "Attach to:"
847
+ msgstr "Připojit k:"
848
+
849
+ #. translators: directory path
850
+ #: includes/documents/class-wcpdf-invoice.php:205
851
+ msgid ""
852
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
853
+ "permissions for this folder! Without having write access to this folder, the "
854
+ "plugin will not be able to email invoices."
855
+ msgstr ""
856
+ "Zdá se, že dočasná složka (<code>%s</code>) není přístupná, zkontrolujte "
857
+ "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky "
858
+ "nebude možné odesílat faktury e-mailem."
859
+
860
+ #: includes/documents/class-wcpdf-invoice.php:211
861
+ msgid "Disable for:"
862
+ msgstr "Vypnout pro:"
863
+
864
+ #: includes/documents/class-wcpdf-invoice.php:220
865
+ msgid "Select one or more statuses"
866
+ msgstr "Zvolte jeden nebo více stavů"
867
+
868
+ #: includes/documents/class-wcpdf-invoice.php:226
869
+ #: includes/views/setup-wizard/display-options.php:17
870
+ msgid "Display shipping address"
871
+ msgstr "Zobrazit doručovací adresu"
872
+
873
+ #: includes/documents/class-wcpdf-invoice.php:233
874
+ #: includes/documents/class-wcpdf-invoice.php:285
875
+ #: includes/documents/class-wcpdf-invoice.php:301
876
+ #: includes/documents/class-wcpdf-packing-slip.php:106
877
+ msgid "No"
878
+ msgstr "Ne"
879
+
880
+ #: includes/documents/class-wcpdf-invoice.php:234
881
+ msgid "Only when different from billing address"
882
+ msgstr ""
883
+
884
+ #: includes/documents/class-wcpdf-invoice.php:235
885
+ #: includes/documents/class-wcpdf-invoice.php:378
886
+ #: includes/documents/class-wcpdf-packing-slip.php:108
887
+ msgid "Always"
888
+ msgstr "Vždy"
889
+
890
+ #: includes/documents/class-wcpdf-invoice.php:243
891
+ #: includes/documents/class-wcpdf-packing-slip.php:116
892
+ #: includes/views/setup-wizard/display-options.php:26
893
+ msgid "Display email address"
894
+ msgstr "Zobrazit emailovou adresu"
895
+
896
+ #: includes/documents/class-wcpdf-invoice.php:254
897
+ #: includes/documents/class-wcpdf-packing-slip.php:127
898
+ #: includes/views/setup-wizard/display-options.php:35
899
+ msgid "Display phone number"
900
+ msgstr "Zobrazit telefonní číslo"
901
+
902
+ #: includes/documents/class-wcpdf-invoice.php:265
903
+ #: includes/documents/class-wcpdf-packing-slip.php:138
904
+ msgid "Display customer notes"
905
+ msgstr ""
906
+
907
+ #: includes/documents/class-wcpdf-invoice.php:278
908
+ #: includes/views/setup-wizard/display-options.php:44
909
+ msgid "Display invoice date"
910
+ msgstr "Zobrazit datum fakturace"
911
+
912
+ #: includes/documents/class-wcpdf-invoice.php:287
913
+ msgid "Order Date"
914
+ msgstr "Datum objednávky"
915
+
916
+ #: includes/documents/class-wcpdf-invoice.php:294
917
+ #: includes/views/setup-wizard/display-options.php:53
918
+ msgid "Display invoice number"
919
+ msgstr "Zobrazte číslo faktury"
920
+
921
+ #: includes/documents/class-wcpdf-invoice.php:303
922
+ msgid "Order Number"
923
+ msgstr "Číslo objednávky"
924
+
925
+ #: includes/documents/class-wcpdf-invoice.php:307
926
+ msgid "Warning!"
927
+ msgstr "Upozornění!"
928
+
929
+ #: includes/documents/class-wcpdf-invoice.php:308
930
+ msgid ""
931
+ "Using the Order Number as invoice number is not recommended as this may lead "
932
+ "to gaps in the invoice number sequence (even when order numbers are "
933
+ "sequential)."
934
+ msgstr ""
935
+ "Nedoporučujeme používat číslo objednávky pro číslo faktury, protože to může "
936
+ "vést k mezerám v číslování (přestože je číslování objednávek posloupné)."
937
+
938
+ #: includes/documents/class-wcpdf-invoice.php:309
939
+ msgid "More information"
940
+ msgstr "Více informací"
941
+
942
+ #: includes/documents/class-wcpdf-invoice.php:316
943
+ msgid "Next invoice number (without prefix/suffix etc.)"
944
+ msgstr "Další číslo faktury (bez předpony/přípony)"
945
+
946
+ #: includes/documents/class-wcpdf-invoice.php:322
947
+ msgid ""
948
+ "This is the number that will be used for the next document. By default, "
949
+ "numbering starts from 1 and increases for every new document. Note that if "
950
+ "you override this and set it lower than the current/highest number, this "
951
+ "could create duplicate numbers!"
952
+ msgstr ""
953
+ "Toto je číslo, které bude použito pro další dokument. Ve výchozím nastavení "
954
+ "začíná číslování od 1 a zvyšuje se pro každý nový dokument. Všimněte si, že "
955
+ "pokud to přepíšete a nastavíte jej nižší než aktuální / nejvyšší číslo, "
956
+ "mohlo by to vytvořit duplicitní čísla!"
957
+
958
+ #: includes/documents/class-wcpdf-invoice.php:328
959
+ msgid "Number format"
960
+ msgstr "Formát čísel"
961
+
962
+ #: includes/documents/class-wcpdf-invoice.php:336
963
+ msgid "Prefix"
964
+ msgstr "Předpona"
965
+
966
+ #: includes/documents/class-wcpdf-invoice.php:338
967
+ msgid ""
968
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
969
+ "respectively"
970
+ msgstr "použijte [order_year] pro rok a [order_month] pro měsíc objednání"
971
+
972
+ #: includes/documents/class-wcpdf-invoice.php:341
973
+ msgid "Suffix"
974
+ msgstr "Přípona"
975
+
976
+ #: includes/documents/class-wcpdf-invoice.php:346
977
+ msgid "Padding"
978
+ msgstr "Výplň"
979
+
980
+ #: includes/documents/class-wcpdf-invoice.php:349
981
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
982
+ msgstr ""
983
+ "zde vložte počet číslic - napište \"6\", aby se 42 zobrazilo jako 000042"
984
+
985
+ #: includes/documents/class-wcpdf-invoice.php:352
986
+ msgid ""
987
+ "note: if you have already created a custom invoice number format with a "
988
+ "filter, the above settings will be ignored"
989
+ msgstr ""
990
+ "poznámka: pokud jste si nastavili vlastní číslování faktur pomocí filtru, "
991
+ "výše uvedená nastavení budou ignorována"
992
+
993
+ #: includes/documents/class-wcpdf-invoice.php:358
994
+ msgid "Reset invoice number yearly"
995
+ msgstr "Obnovit číslování faktur ročně"
996
+
997
+ #: includes/documents/class-wcpdf-invoice.php:369
998
+ msgid "Allow My Account invoice download"
999
+ msgstr "Umožnit stažení faktury na stránce Můj účet"
1000
+
1001
+ #: includes/documents/class-wcpdf-invoice.php:376
1002
+ msgid "Only when an invoice is already created/emailed"
1003
+ msgstr "Pouze když už byla faktura vytvořena/odeslána"
1004
+
1005
+ #: includes/documents/class-wcpdf-invoice.php:377
1006
+ msgid "Only for specific order statuses (define below)"
1007
+ msgstr "Pouze pro určité stavy objednávek (definujte níže)"
1008
+
1009
+ #: includes/documents/class-wcpdf-invoice.php:379
1010
+ msgid "Never"
1011
+ msgstr "Nikdy"
1012
+
1013
+ #: includes/documents/class-wcpdf-invoice.php:394
1014
+ msgid "Enable invoice number column in the orders list"
1015
+ msgstr "Zobrazit v seznamu objednávek sloupec s čísly faktur"
1016
+
1017
+ #: includes/documents/class-wcpdf-invoice.php:405
1018
+ msgid "Disable for free orders"
1019
+ msgstr ""
1020
+
1021
+ #. translators: zero number
1022
+ #: includes/documents/class-wcpdf-invoice.php:412
1023
+ msgid "Disable document when the order total is %s"
1024
+ msgstr ""
1025
+
1026
+ #: includes/documents/class-wcpdf-invoice.php:418
1027
+ msgid "Always use most current settings"
1028
+ msgstr "Vždy používat nejaktuálnější nastavení"
1029
+
1030
+ #: includes/documents/class-wcpdf-invoice.php:424
1031
+ msgid ""
1032
+ "When enabled, the document will always reflect the most current settings "
1033
+ "(such as footer text, document name, etc.) rather than using historical "
1034
+ "settings."
1035
+ msgstr ""
1036
+ "Pokud je tato funkce povolena, dokument bude vždy odrážet nejaktuálnější "
1037
+ "nastavení (například text zápatí, název dokumentu atd.), Nikoli pomocí "
1038
+ "historických nastavení."
1039
+
1040
+ #: includes/documents/class-wcpdf-invoice.php:426
1041
+ msgid ""
1042
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1043
+ "your company name or address in the future, previously generated documents "
1044
+ "will also be affected."
1045
+ msgstr ""
1046
+ "<strong> Upozornění: </strong> povolíte také, že pokud změníte název vaší "
1047
+ "firmy nebo adresu v budoucnu, budou také ovlivněny dříve generované "
1048
+ "dokumenty."
1049
+
1050
+ #: includes/documents/class-wcpdf-invoice.php:439
1051
+ msgid "Invoice numbers are created by a third-party extension."
1052
+ msgstr "Čísla faktur jsou vytvářena rozšířením třetí strany."
1053
+
1054
+ #. translators: link
1055
+ #: includes/documents/class-wcpdf-invoice.php:442
1056
+ msgid "Configure it <a href=\"%s\">here</a>."
1057
+ msgstr "Nakonfigurujte jej <a href=\"%s\"> zde </a>."
1058
+
1059
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1060
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1061
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1062
+ msgid "Packing Slip"
1063
+ msgstr "Dodací List"
1064
+
1065
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1066
+ msgid "packing-slip"
1067
+ msgid_plural "packing-slips"
1068
+ msgstr[0] "dodací list"
1069
+ msgstr[1] "dodací listy"
1070
+ msgstr[2] "dodacích listů"
1071
+
1072
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1073
+ msgid "Display billing address"
1074
+ msgstr "Zobrazit fakturační adresu"
1075
+
1076
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1077
+ msgid "Only when different from shipping address"
1078
+ msgstr ""
1079
+
1080
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1081
+ msgid "Packing Slip Number:"
1082
+ msgstr ""
1083
+
1084
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1085
+ msgid "Packing Slip Date:"
1086
+ msgstr ""
1087
+
1088
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1089
+ msgid "Legacy Document"
1090
+ msgstr "Starší dokument"
1091
+
1092
+ #: includes/legacy/class-wcpdf-legacy.php:72
1093
+ msgid "Error"
1094
+ msgstr "Chyba"
1095
+
1096
+ #: includes/legacy/class-wcpdf-legacy.php:73
1097
+ msgid ""
1098
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1099
+ "mode has been activated, please try again by reloading this page."
1100
+ msgstr ""
1101
+ "Za účelem vytvoření PDF byla použita zastaralá šablona nebo akční hák. "
1102
+ "Starší režim byl aktivován, zkuste znovu znovu načtěte tuto stránku."
1103
+
1104
+ #: includes/legacy/class-wcpdf-legacy.php:76
1105
+ msgid "The following function was called"
1106
+ msgstr "Byla vyvolána následující funkce"
1107
+
1108
+ #. translators: <a> tags
1109
+ #: includes/views/attachment-settings-hint.php:23
1110
+ msgid ""
1111
+ "It looks like you haven't setup any email attachments yet, check the "
1112
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1113
+ msgstr ""
1114
+
1115
+ #: includes/views/dompdf-status.php:11
1116
+ msgid "7.1+ (7.4 or higher recommended)"
1117
+ msgstr ""
1118
+
1119
+ #: includes/views/dompdf-status.php:24
1120
+ msgid "Recommended, will use fallback functions"
1121
+ msgstr ""
1122
+
1123
+ #: includes/views/dompdf-status.php:30
1124
+ msgid "Required if you have images in your documents"
1125
+ msgstr ""
1126
+
1127
+ #: includes/views/dompdf-status.php:39
1128
+ msgid "To compress PDF documents"
1129
+ msgstr ""
1130
+
1131
+ #: includes/views/dompdf-status.php:42
1132
+ msgid "Recommended to compress PDF documents"
1133
+ msgstr ""
1134
+
1135
+ #: includes/views/dompdf-status.php:45
1136
+ msgid "For better performances"
1137
+ msgstr ""
1138
+
1139
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1140
+ msgid "Recommended for better performances"
1141
+ msgstr ""
1142
+
1143
+ #: includes/views/dompdf-status.php:51
1144
+ msgid "Better with transparent PNG images"
1145
+ msgstr ""
1146
+
1147
+ #: includes/views/dompdf-status.php:57
1148
+ msgid ""
1149
+ "Required to detect custom templates and to clear the temp folder periodically"
1150
+ msgstr ""
1151
+
1152
+ #: includes/views/dompdf-status.php:60
1153
+ msgid "Check PHP disable_functions"
1154
+ msgstr ""
1155
+
1156
+ #. translators: <a> tags
1157
+ #: includes/views/dompdf-status.php:64
1158
+ msgid ""
1159
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1160
+ "WordPress Memory Limit%2$s"
1161
+ msgstr ""
1162
+
1163
+ #: includes/views/dompdf-status.php:69
1164
+ msgid "Allow remote stylesheets and images"
1165
+ msgstr ""
1166
+
1167
+ #: includes/views/dompdf-status.php:72
1168
+ msgid "allow_url_fopen disabled"
1169
+ msgstr ""
1170
+
1171
+ #: includes/views/dompdf-status.php:75
1172
+ msgid "To compress and decompress font data"
1173
+ msgstr ""
1174
+
1175
+ #: includes/views/dompdf-status.php:78
1176
+ msgid "base64_decode disabled"
1177
+ msgstr ""
1178
+
1179
+ #. translators: <a> tags
1180
+ #: includes/views/dompdf-status.php:98
1181
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1182
+ msgstr ""
1183
+
1184
+ #: includes/views/dompdf-status.php:103
1185
+ msgid "System Configuration"
1186
+ msgstr ""
1187
+
1188
+ #: includes/views/dompdf-status.php:108
1189
+ msgid "Required"
1190
+ msgstr ""
1191
+
1192
+ #: includes/views/dompdf-status.php:109
1193
+ msgid "Present"
1194
+ msgstr ""
1195
+
1196
+ #: includes/views/dompdf-status.php:148
1197
+ msgid "Writable"
1198
+ msgstr ""
1199
+
1200
+ #: includes/views/dompdf-status.php:149
1201
+ msgid "Not writable"
1202
+ msgstr ""
1203
+
1204
+ #: includes/views/dompdf-status.php:154
1205
+ msgid "Central temporary plugin folder"
1206
+ msgstr ""
1207
+
1208
+ #: includes/views/dompdf-status.php:160
1209
+ msgid "Temporary attachments folder"
1210
+ msgstr ""
1211
+
1212
+ #: includes/views/dompdf-status.php:166
1213
+ msgid "Temporary DOMPDF folder"
1214
+ msgstr ""
1215
+
1216
+ #: includes/views/dompdf-status.php:172
1217
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1218
+ msgstr ""
1219
+
1220
+ #: includes/views/dompdf-status.php:183
1221
+ msgid "Write Permissions"
1222
+ msgstr ""
1223
+
1224
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1225
+ #: templates/Simple/packing-slip.php:88
1226
+ msgid "Description"
1227
+ msgstr "Popis"
1228
+
1229
+ #: includes/views/dompdf-status.php:187
1230
+ msgid "Value"
1231
+ msgstr ""
1232
+
1233
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1234
+ #: includes/views/dompdf-status.php:213
1235
+ msgid ""
1236
+ "The central temp folder is %1$s. By default, this folder is created in the "
1237
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1238
+ "config.php. Alternatively, you can control the specific folder for PDF "
1239
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1240
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1241
+ "by the plugin if the central temp folder is writable)."
1242
+ msgstr ""
1243
+
1244
+ #. translators: directory path
1245
+ #: includes/views/dompdf-status.php:226
1246
+ msgid ""
1247
+ "If the temporary folders were not automatically created by the plugin, "
1248
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1249
+ "Normally, this is fully automated, but if your server has strict security "
1250
+ "settings, this automated copying may have been prohibited. In that case, you "
1251
+ "also need to make sure these folders get synchronized on plugin updates!"
1252
+ msgstr ""
1253
+
1254
+ #: includes/views/setup-wizard/attach-to.php:3
1255
+ msgid "Attach too..."
1256
+ msgstr "Připojte se také ..."
1257
+
1258
+ #: includes/views/setup-wizard/attach-to.php:4
1259
+ msgid "Select to which emails you would like to attach your invoice."
1260
+ msgstr "Vyberte, ke kterým emailům byste chtěli připojit fakturu."
1261
+
1262
+ #: includes/views/setup-wizard/display-options.php:4
1263
+ msgid "Select some additional display options for your invoice."
1264
+ msgstr "Vyberte další možnosti zobrazení faktury."
1265
+
1266
+ #: includes/views/setup-wizard/good-to-go.php:3
1267
+ msgid "You are good to go!"
1268
+ msgstr "Můžeš jít!"
1269
+
1270
+ #: includes/views/setup-wizard/good-to-go.php:4
1271
+ msgid "If you have any questions please have a look at our documentation:"
1272
+ msgstr "Pokud máte nějaké dotazy, prosím prohlédněte si dokumentaci:"
1273
+
1274
+ #: includes/views/setup-wizard/good-to-go.php:5
1275
+ msgid "Invoices & Packing Slips"
1276
+ msgstr "Faktury a dodací listy"
1277
+
1278
+ #: includes/views/setup-wizard/good-to-go.php:6
1279
+ msgid "Happy selling!"
1280
+ msgstr "Šťastný prodej!"
1281
+
1282
+ #: includes/views/setup-wizard/logo.php:4
1283
+ msgid "Set the header image that will display on your invoice."
1284
+ msgstr "Nastavte obrázek záhlaví, který se zobrazí na faktuře."
1285
+
1286
+ #: includes/views/setup-wizard/paper-format.php:4
1287
+ msgid "Select the paper format for your invoice."
1288
+ msgstr "Vyberte formát papíru pro vaše faktury."
1289
+
1290
+ #: includes/views/setup-wizard/shop-name.php:3
1291
+ msgid "Enter your shop name"
1292
+ msgstr "Zadejte jméno obchodu"
1293
+
1294
+ #: includes/views/setup-wizard/shop-name.php:4
1295
+ msgid ""
1296
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1297
+ "shop in the fields on the right."
1298
+ msgstr ""
1299
+ "Nastavme rychle fakturaci. Prosím zadejte jméno a adresu vašeho obchodu do "
1300
+ "položek na pravé straně."
1301
+
1302
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1303
+ msgid ""
1304
+ "Would you like to display the action buttons in your WooCommerce order list? "
1305
+ "The action buttons allow you to manually create a PDF."
1306
+ msgstr ""
1307
+ "Přejete si zobrazovat tlačítka akcí ve WooCommerce přehledu objednávek? "
1308
+ "Tlačítka akcí vám umožní ručně vytvořit PDF."
1309
+
1310
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1311
+ msgid "(You can always change this setting later via the Screen Options menu)"
1312
+ msgstr ""
1313
+ "(Toto nastavení můžete později změnit přes Nastavení zobrazených informací)"
1314
+
1315
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1316
+ msgid "Show action buttons"
1317
+ msgstr "Zobrazit tlačítka akcí"
1318
+
1319
+ #: includes/views/wcpdf-extensions.php:16
1320
+ msgid "Check out these premium extensions!"
1321
+ msgstr "Vyzkoušejte tato prémiová rozšíření!"
1322
+
1323
+ #: includes/views/wcpdf-extensions.php:17
1324
+ msgid "click items to read more"
1325
+ msgstr "pro více informací klikněte na položky"
1326
+
1327
+ #: includes/views/wcpdf-extensions.php:22
1328
+ msgid ""
1329
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1330
+ "system"
1331
+ msgstr ""
1332
+ "Premium PDF Balíček faktur: Vše, co potřebujete pro dokonalý systém fakturace"
1333
+
1334
+ #: includes/views/wcpdf-extensions.php:24
1335
+ msgid ""
1336
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1337
+ "premium extensions:"
1338
+ msgstr ""
1339
+ "Supercharge WooCommerce PDF faktury a balíčky s našimi prémiovými "
1340
+ "rozšířeními:"
1341
+
1342
+ #: includes/views/wcpdf-extensions.php:25
1343
+ msgid "Professional features:"
1344
+ msgstr "Profesionální funkce:"
1345
+
1346
+ #: includes/views/wcpdf-extensions.php:27
1347
+ #: includes/views/wcpdf-extensions.php:57
1348
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1349
+ msgstr "Mailujte/tiskněte/stahujte <b>PDF dobropisy a proforma faktury</b>"
1350
+
1351
+ #: includes/views/wcpdf-extensions.php:28
1352
+ #: includes/views/wcpdf-extensions.php:58
1353
+ msgid ""
1354
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1355
+ "packing slips, for example to a drop-shipper or a supplier."
1356
+ msgstr ""
1357
+ "Posílejte zvláštní <b>notifikační email</b> s (nebo bez) PDF fakturami/"
1358
+ "dodacími listy, např. pro drop-shippera nebo dodavatele."
1359
+
1360
+ #: includes/views/wcpdf-extensions.php:29
1361
+ #: includes/views/wcpdf-extensions.php:59
1362
+ msgid ""
1363
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1364
+ "document) to the WooCommerce emails of your choice."
1365
+ msgstr ""
1366
+ "Přikládejte k vybraným WooCommerce emailům <b>až 3 statické soubory</b> "
1367
+ "(např. dokument s obchodními podmínkami)."
1368
+
1369
+ #: includes/views/wcpdf-extensions.php:30
1370
+ #: includes/views/wcpdf-extensions.php:60
1371
+ msgid ""
1372
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1373
+ "and credit notes or utilize the main invoice numbering system"
1374
+ msgstr ""
1375
+ "Používejte <b>samostatné číslování</b> a/nebo formát proforma faktur a "
1376
+ "dobropisů nebo používejte hlavní číslování"
1377
+
1378
+ #: includes/views/wcpdf-extensions.php:31
1379
+ #: includes/views/wcpdf-extensions.php:61
1380
+ msgid ""
1381
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1382
+ "additional custom fields, font sizes etc. without the need to create a "
1383
+ "custom template."
1384
+ msgstr ""
1385
+ "<b>Přizpůsobte si formát dodací a fakturační adresy</b>, aby obsahovaly "
1386
+ "další vlastní pole, velikosti písma, atd. bez nutnosti vytvářet vlastní "
1387
+ "šablonu."
1388
+
1389
+ #: includes/views/wcpdf-extensions.php:32
1390
+ #: includes/views/wcpdf-extensions.php:62
1391
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1392
+ msgstr "Používejte plugin v multijazyčném nastavení <b>WPML</b>"
1393
+
1394
+ #: includes/views/wcpdf-extensions.php:34
1395
+ #: includes/views/wcpdf-extensions.php:114
1396
+ msgid "Advanced, customizable templates"
1397
+ msgstr "Pokročilé, přizpůsobitelné šablony"
1398
+
1399
+ #: includes/views/wcpdf-extensions.php:36
1400
+ #: includes/views/wcpdf-extensions.php:117
1401
+ msgid ""
1402
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1403
+ "your needs with a drag & drop customizer"
1404
+ msgstr ""
1405
+ "Přizpůsobte si kompletní obsah faktur (ceny, daně, náhledové obrázky) vašim "
1406
+ "potřebám pomocí jednoduchého editoru"
1407
+
1408
+ #: includes/views/wcpdf-extensions.php:37
1409
+ #: includes/views/wcpdf-extensions.php:118
1410
+ msgid "Two extra stylish premade templates (Modern & Business)"
1411
+ msgstr "Další dvě stylisticky připravené šablony (Modern a Business)"
1412
+
1413
+ #: includes/views/wcpdf-extensions.php:39
1414
+ #: includes/views/wcpdf-extensions.php:63
1415
+ msgid "Upload automatically to dropbox"
1416
+ msgstr "Nahrát automaticky do dropboxu"
1417
+
1418
+ #: includes/views/wcpdf-extensions.php:41
1419
+ msgid ""
1420
+ "This extension conveniently uploads all the invoices (and other pdf "
1421
+ "documents from the professional extension) that are emailed to your "
1422
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1423
+ "date!"
1424
+ msgstr ""
1425
+ "Toto rozšíření umožňuje pohodlně nahrávat do Dropboxu všechny faktury (a "
1426
+ "další pdf dokumenty z profi rozšíření), které jsou posílány zákazníkovi. "
1427
+ "Nejlepší způsob, jak udržet správu fakturu v aktuální podobě!"
1428
+
1429
+ #: includes/views/wcpdf-extensions.php:44
1430
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1431
+ msgstr "Získejte WooCommerce PDF faktury a balíček doplňků"
1432
+
1433
+ #: includes/views/wcpdf-extensions.php:53
1434
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1435
+ msgstr "Pro verze: proforma faktury, dobropisy a další!"
1436
+
1437
+ #: includes/views/wcpdf-extensions.php:55
1438
+ msgid ""
1439
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1440
+ "features:"
1441
+ msgstr "Nabijte WooCommerce PDF Invoices & Packing Slips těmito funkcemi:"
1442
+
1443
+ #: includes/views/wcpdf-extensions.php:65
1444
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1445
+ msgstr "Získejte WooCommerce PDF Invoices & Packing Slips Professional!"
1446
+
1447
+ #: includes/views/wcpdf-extensions.php:73
1448
+ msgid "Automatically send payment reminders to your customers"
1449
+ msgstr "Automaticky posílejte připomenutí plateb vašim zákazníkům"
1450
+
1451
+ #: includes/views/wcpdf-extensions.php:75
1452
+ msgid "WooCommerce Smart Reminder emails"
1453
+ msgstr "WooCommerce Smart Reminder e-maily"
1454
+
1455
+ #: includes/views/wcpdf-extensions.php:77
1456
+ msgid "<b>Completely automatic</b> scheduled emails"
1457
+ msgstr "<b> Plně automatické </b> plánované e-maily"
1458
+
1459
+ #: includes/views/wcpdf-extensions.php:78
1460
+ msgid ""
1461
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1462
+ "from the order (name, order total, etc)"
1463
+ msgstr ""
1464
+ "<b> Textový editor s rozšířeným textem </b> pro text e-mailu včetně "
1465
+ "zástupných symbolů pro data z objednávky (název, celkový počet objednávek "
1466
+ "atd.)"
1467
+
1468
+ #: includes/views/wcpdf-extensions.php:79
1469
+ msgid ""
1470
+ "Configure the exact requirements for sending an email (time after order, "
1471
+ "order status, payment method)"
1472
+ msgstr ""
1473
+ "Konfigurovat přesné požadavky na odeslání e-mailu (čas po objednávce, stav "
1474
+ "objednávky, způsob platby)"
1475
+
1476
+ #: includes/views/wcpdf-extensions.php:80
1477
+ msgid ""
1478
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1479
+ "order language."
1480
+ msgstr ""
1481
+ "Plně <b> Kompatibilní s WPML</b> - emaily budou automaticky odeslány v "
1482
+ "jazyce objednávky."
1483
+
1484
+ #: includes/views/wcpdf-extensions.php:81
1485
+ msgid ""
1486
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1487
+ "reminders, repeat purchases)"
1488
+ msgstr ""
1489
+ "<b> Velmi univerzální! </b> Lze použít pro jakýkoli druh upomínací e-mailové "
1490
+ "zprávy (přehledy připomenutí, opakované nákupy)"
1491
+
1492
+ #: includes/views/wcpdf-extensions.php:82
1493
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1494
+ msgstr "Bezproblémová integrace s pluginem PDF Faktury a balíčky svazků"
1495
+
1496
+ #: includes/views/wcpdf-extensions.php:84
1497
+ msgid "Get WooCommerce Smart Reminder Emails"
1498
+ msgstr "Získejte e-maily Smart Reminder společnosti WooCommerce"
1499
+
1500
+ #: includes/views/wcpdf-extensions.php:93
1501
+ msgid ""
1502
+ "Automatically send new orders or packing slips to your printer, as soon as "
1503
+ "the customer orders!"
1504
+ msgstr ""
1505
+ "Posílejte automaticky nové objednávky nebo dodací listy na svou tiskárnu, "
1506
+ "jakmile si zákazník objedná!"
1507
+
1508
+ #: includes/views/wcpdf-extensions.php:99
1509
+ msgid ""
1510
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1511
+ "partners at Simba Hosting"
1512
+ msgstr ""
1513
+ "Vyzkoušejte rozšíření WooCommerce Automatic Order Printing od našich "
1514
+ "partnerů ze Simba Hosting"
1515
+
1516
+ #: includes/views/wcpdf-extensions.php:100
1517
+ msgid "WooCommerce Automatic Order Printing"
1518
+ msgstr "WooCommerce automatizovaný tisk objednávek"
1519
+
1520
+ #. translators: Premium Templates link
1521
+ #: includes/views/wcpdf-extensions.php:120
1522
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1523
+ msgstr "Vyzkoušejte Premium PDF Invoice & Packing Slips šablony na %s."
1524
+
1525
+ #. translators: email link
1526
+ #: includes/views/wcpdf-extensions.php:122
1527
+ msgid "For custom templates, contact us at %s."
1528
+ msgstr "Ohledně vlastních šablon nás kontaktujte na %s."
1529
+
1530
+ #: includes/views/wcpdf-settings-page.php:9
1531
+ msgid "WooCommerce PDF Invoices"
1532
+ msgstr "WooCommerce PDF faktury"
1533
+
1534
+ #: includes/wcpdf-functions.php:209
1535
+ msgid "Error creating PDF, please contact the site owner."
1536
+ msgstr "Při vytváření PDF nastala chyba, prosím kontaktujte vlastníka webu."
1537
+
1538
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1539
+ msgid "Billing Address:"
1540
+ msgstr "Fakturační adresa:"
1541
+
1542
+ #: templates/Simple/invoice.php:48
1543
+ msgid "Ship To:"
1544
+ msgstr "Odeslat na:"
1545
+
1546
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1547
+ msgid "Order Number:"
1548
+ msgstr "Číslo objednávky:"
1549
+
1550
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1551
+ msgid "Order Date:"
1552
+ msgstr "Datum objednávky:"
1553
+
1554
+ #: templates/Simple/invoice.php:78
1555
+ msgid "Payment Method:"
1556
+ msgstr "Způsob platby:"
1557
+
1558
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1559
+ msgid "Product"
1560
+ msgstr "Zboží"
1561
+
1562
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1563
+ msgid "Quantity"
1564
+ msgstr "Množství"
1565
+
1566
+ #: templates/Simple/invoice.php:94
1567
+ msgid "Price"
1568
+ msgstr "Cena"
1569
+
1570
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1571
+ msgid "SKU"
1572
+ msgstr "SKU"
1573
+
1574
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1575
+ msgid "SKU:"
1576
+ msgstr "SKU:"
1577
+
1578
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1579
+ msgid "Weight:"
1580
+ msgstr "Hmotnost:"
1581
+
1582
+ #: templates/Simple/invoice.php:123
1583
+ msgid "Notes"
1584
+ msgstr ""
1585
+
1586
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1587
+ msgid "Customer Notes"
1588
+ msgstr "Poznámka zákazníka"
1589
+
1590
+ #: templates/Simple/packing-slip.php:35
1591
+ msgid "Shipping Address:"
1592
+ msgstr "Doručovací adresa:"
1593
+
1594
+ #: templates/Simple/packing-slip.php:66
1595
+ msgid "Shipping Method:"
1596
+ msgstr "Doručovací metoda:"
1597
+
1598
+ #. translators: <a> tags
1599
+ #: woocommerce-pdf-invoices-packingslips.php:271
1600
+ msgid ""
1601
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1602
+ "installed & activated!"
1603
+ msgstr ""
1604
+
1605
+ #: woocommerce-pdf-invoices-packingslips.php:282
1606
+ msgid ""
1607
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1608
+ "recommended)."
1609
+ msgstr ""
1610
+
1611
+ #. translators: <a> tags
1612
+ #: woocommerce-pdf-invoices-packingslips.php:284
1613
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1614
+ msgstr ""
1615
+
1616
+ #. translators: <a> tags
1617
+ #: woocommerce-pdf-invoices-packingslips.php:286
1618
+ msgid ""
1619
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1620
+ "to enable backwards compatibility with PHP5.6."
1621
+ msgstr ""
1622
+
1623
+ #. translators: directory path
1624
+ #: woocommerce-pdf-invoices-packingslips.php:374
1625
+ msgid ""
1626
+ "The PDF files in %s are not currently protected due to your site running on "
1627
+ "<strong>NGINX</strong>."
1628
+ msgstr ""
1629
+
1630
+ #: woocommerce-pdf-invoices-packingslips.php:375
1631
+ msgid "To protect them, you must click the button below."
1632
+ msgstr ""
1633
+
1634
+ #. translators: plugin name
1635
+ #: woocommerce-pdf-invoices-packingslips.php:419
1636
+ msgid ""
1637
+ "When sending emails with MailPoet 3 and the active sending method is "
1638
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1639
+ "the emails."
1640
+ msgstr ""
1641
+
1642
+ #. translators: "Your web host / web server"
1643
+ #: woocommerce-pdf-invoices-packingslips.php:421
1644
+ msgid "To fix this you should select other method like %1$s or %2$s."
1645
+ msgstr ""
1646
+
1647
+ #. translators: "Your web host / web server"
1648
+ #: woocommerce-pdf-invoices-packingslips.php:421
1649
+ msgid "Your web host / web server"
1650
+ msgstr ""
1651
+
1652
+ #: woocommerce-pdf-invoices-packingslips.php:422
1653
+ msgid "Change MailPoet sending method"
1654
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-da_DK.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-da_DK.po CHANGED
@@ -1,1762 +1,1592 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:17+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
- "Language: da_DK\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 3.0\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #. Plugin Name of the plugin
22
- msgid "WooCommerce PDF Invoices & Packing Slips"
23
- msgstr "WooCommerce PDF Invoices & Packing Slips"
24
-
25
- #. Plugin URI of the plugin
26
- #. Author URI of the plugin
27
- msgid "http://www.wpovernight.com"
28
- msgstr "http://www.wpovernight.com"
29
-
30
- #. Description of the plugin
31
- msgid ""
32
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
- msgstr ""
34
-
35
- #. Author of the plugin
36
- msgid "Ewout Fernhout"
37
- msgstr ""
38
-
39
- #. translators: rounded count
40
- #: includes/class-wcpdf-admin.php:92
41
- msgid "Wow, you have created more than %d invoices with our plugin!"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:93
45
- msgid ""
46
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
- "rating. Help us spread the word and boost our motivation!"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:95
51
- msgid "Yes you deserve it!"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
- #: includes/views/attachment-settings-hint.php:24
56
- #: includes/views/wcpdf-extensions.php:131
57
- #: woocommerce-pdf-invoices-packingslips.php:377
58
- #: woocommerce-pdf-invoices-packingslips.php:423
59
- msgid "Hide this message"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-admin.php:96
63
- msgid "Already did!"
64
- msgstr ""
65
-
66
- #: includes/class-wcpdf-admin.php:97
67
- msgid "Actually, I have a complaint..."
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:132
71
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:132
75
- msgid "Jumpstart the plugin by following our wizard!"
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:133
79
- msgid "Run the Setup Wizard"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:133
83
- msgid "I am the wizard"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
- #: includes/documents/class-wcpdf-invoice.php:302
88
- msgid "Invoice Number"
89
- msgstr "Fakturanummer"
90
-
91
- #: includes/class-wcpdf-admin.php:261
92
- msgid "Send order email"
93
- msgstr ""
94
-
95
- #: includes/class-wcpdf-admin.php:272
96
- msgid "Create PDF"
97
- msgstr "Opret PDF"
98
-
99
- #: includes/class-wcpdf-admin.php:282
100
- msgid "PDF document data"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:304
104
- msgid "Choose an email to send&hellip;"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-admin.php:320
108
- msgid "Save order & send email"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:322
112
- msgid "Send email"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:378
116
- #: includes/documents/class-wcpdf-invoice.php:460
117
- msgid "Invoice Number:"
118
- msgstr "Fakturanummer:"
119
-
120
- #: includes/class-wcpdf-admin.php:381
121
- #: includes/documents/class-wcpdf-invoice.php:468
122
- msgid "Invoice Date:"
123
- msgstr "Fakturadato:"
124
-
125
- #: includes/class-wcpdf-admin.php:384
126
- msgid "Notes (printed in the invoice):"
127
- msgstr ""
128
-
129
- #. translators: document title
130
- #: includes/class-wcpdf-admin.php:469
131
- msgid "Set %s number & date"
132
- msgstr ""
133
-
134
- #: includes/class-wcpdf-admin.php:478
135
- msgid "unformatted!"
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-admin.php:518
139
- msgid "Save changes"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:519
143
- msgid "Cancel"
144
- msgstr ""
145
-
146
- #. translators: name/description of the context for document creation logs
147
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
- msgid "order details (number and/or date set manually)"
149
- msgstr ""
150
-
151
- #. translators: %s: email title
152
- #: includes/class-wcpdf-admin.php:647
153
- msgid "%s email notification manually sent."
154
- msgstr ""
155
-
156
- #: includes/class-wcpdf-admin.php:734
157
- msgid "Nonce expired!"
158
- msgstr ""
159
-
160
- #: includes/class-wcpdf-admin.php:740
161
- msgid "Bad action!"
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:746
165
- msgid "Incomplete request!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:752
169
- msgid "No permissions!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:776
173
- msgid "Document data saved!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:777
177
- msgid "An error occurred while saving the document data!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:780
181
- msgid "Document regenerated!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:781
185
- msgid "An error occurred while regenerating the document!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:784
189
- msgid "Document deleted!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:785
193
- msgid "An error occurred while deleting the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:841
197
- msgid "Document does not exist."
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:850
201
- msgid "Document is empty."
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:881
205
- msgid "DEBUG output enabled"
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-assets.php:91
209
- msgid "Are you sure you want to delete this document? This cannot be undone."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-assets.php:92
213
- msgid ""
214
- "Are you sure you want to regenerate this document? This will make the "
215
- "document reflect the most current settings (such as footer text, document "
216
- "name, etc.) rather than using historical settings."
217
- msgstr ""
218
-
219
- #: includes/class-wcpdf-frontend.php:126
220
- msgid "Download invoice (PDF)"
221
- msgstr "Hent faktura (PDF)"
222
-
223
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
224
- #: includes/class-wcpdf-main.php:338
225
- msgid "You do not have sufficient permissions to access this page."
226
- msgstr "Du har ikke tilstrækkelig tilladelse til at tilgå denne side."
227
-
228
- #: includes/class-wcpdf-main.php:275
229
- msgid "You haven't selected any orders"
230
- msgstr ""
231
-
232
- #: includes/class-wcpdf-main.php:279
233
- msgid "Some of the export parameters are missing."
234
- msgstr "Nogle af parametrene for eksport mangler."
235
-
236
- #. translators: document type
237
- #: includes/class-wcpdf-main.php:379
238
- msgid "Document of type '%s' for the selected order(s) could not be generated"
239
- msgstr ""
240
-
241
- #. translators: 1. plugin name, 2. directory path
242
- #: includes/class-wcpdf-main.php:591
243
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
- msgstr ""
245
-
246
- #: includes/class-wcpdf-main.php:592
247
- msgid ""
248
- "Please check your directories write permissions or contact your hosting "
249
- "service provider."
250
- msgstr ""
251
-
252
- #: includes/class-wcpdf-main.php:907
253
- #: includes/documents/class-wcpdf-invoice.php:286
254
- msgid "Invoice Date"
255
- msgstr ""
256
-
257
- #. translators: name/description of the context for document creation logs
258
- #: includes/class-wcpdf-main.php:937
259
- msgid "bulk order action"
260
- msgstr ""
261
-
262
- #. translators: name/description of the context for document creation logs
263
- #: includes/class-wcpdf-main.php:945
264
- msgid "single order action"
265
- msgstr ""
266
-
267
- #. translators: name/description of the context for document creation logs
268
- #: includes/class-wcpdf-main.php:953
269
- msgid "my account"
270
- msgstr ""
271
-
272
- #. translators: name/description of the context for document creation logs
273
- #: includes/class-wcpdf-main.php:961
274
- msgid "email attachment"
275
- msgstr ""
276
-
277
- #. translators: 1. document title, 2. creation source
278
- #: includes/class-wcpdf-main.php:970
279
- msgid "PDF %1$s created via %2$s."
280
- msgstr ""
281
-
282
- #. translators: document title
283
- #: includes/class-wcpdf-main.php:1006
284
- msgid "Order %s Saved"
285
- msgstr ""
286
-
287
- #: includes/class-wcpdf-settings-callbacks.php:27
288
- msgid ""
289
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
- "Do not use them on a live website!"
291
- msgstr ""
292
- "<b>Advarsel!</b> Indstillingerne nedenfor er kun beregnet for fejlfinding/"
293
- "udvikling. Brug dem ikke på et live websted!"
294
-
295
- #: includes/class-wcpdf-settings-callbacks.php:36
296
- msgid ""
297
- "These are used for the (optional) footer columns in the <em>Modern "
298
- "(Premium)</em> template, but can also be used for other elements in your "
299
- "custom template"
300
- msgstr "Disse bruges (valgfrit)"
301
-
302
- #: includes/class-wcpdf-settings-callbacks.php:383
303
- msgid "Image resolution"
304
- msgstr "Billede opløsning"
305
-
306
- #: includes/class-wcpdf-settings-callbacks.php:410
307
- msgid "Save"
308
- msgstr ""
309
-
310
- #: includes/class-wcpdf-settings-debug.php:45
311
- #: woocommerce-pdf-invoices-packingslips.php:376
312
- msgid "Generate random temporary folder name"
313
- msgstr ""
314
-
315
- #. translators: directory path
316
- #: includes/class-wcpdf-settings-debug.php:58
317
- msgid "Temporary folder moved to %s"
318
- msgstr ""
319
-
320
- #: includes/class-wcpdf-settings-debug.php:68
321
- msgid "Reinstall fonts"
322
- msgstr ""
323
-
324
- #: includes/class-wcpdf-settings-debug.php:89
325
- msgid "Fonts reinstalled!"
326
- msgstr ""
327
-
328
- #: includes/class-wcpdf-settings-debug.php:98
329
- msgid "Remove temporary files"
330
- msgstr ""
331
-
332
- #: includes/class-wcpdf-settings-debug.php:109
333
- msgid "Unable to read temporary folder contents!"
334
- msgstr ""
335
-
336
- #. translators: 1,2. file count
337
- #: includes/class-wcpdf-settings-debug.php:127
338
- msgid "Unable to delete %1$d files! (deleted %2$d)"
339
- msgstr ""
340
-
341
- #. translators: file count
342
- #: includes/class-wcpdf-settings-debug.php:131
343
- msgid "Successfully deleted %d files!"
344
- msgstr ""
345
-
346
- #: includes/class-wcpdf-settings-debug.php:135
347
- msgid "Nothing to delete!"
348
- msgstr ""
349
-
350
- #: includes/class-wcpdf-settings-debug.php:146
351
- msgid "Delete legacy (1.X) settings"
352
- msgstr ""
353
-
354
- #: includes/class-wcpdf-settings-debug.php:162
355
- msgid "Legacy settings deleted!"
356
- msgstr ""
357
-
358
- #: includes/class-wcpdf-settings-debug.php:192
359
- msgid "Debug settings"
360
- msgstr "Debug indstillinger"
361
-
362
- #: includes/class-wcpdf-settings-debug.php:198
363
- msgid "Legacy mode"
364
- msgstr ""
365
-
366
- #: includes/class-wcpdf-settings-debug.php:204
367
- msgid ""
368
- "Legacy mode ensures compatibility with templates and filters from previous "
369
- "versions."
370
- msgstr ""
371
-
372
- #: includes/class-wcpdf-settings-debug.php:210
373
- msgid "Legacy textdomain fallback"
374
- msgstr ""
375
-
376
- #: includes/class-wcpdf-settings-debug.php:216
377
- msgid ""
378
- "Legacy textdomain fallback ensures compatibility with translation files from "
379
- "versions prior to 2017-05-15."
380
- msgstr ""
381
-
382
- #: includes/class-wcpdf-settings-debug.php:222
383
- msgid "Allow guest access"
384
- msgstr ""
385
-
386
- #: includes/class-wcpdf-settings-debug.php:228
387
- msgid ""
388
- "Enable this to allow customers that purchase without an account to access "
389
- "their PDF with a unique key"
390
- msgstr ""
391
-
392
- #: includes/class-wcpdf-settings-debug.php:234
393
- msgid "Calculate document numbers (slow)"
394
- msgstr ""
395
-
396
- #: includes/class-wcpdf-settings-debug.php:240
397
- msgid ""
398
- "Document numbers (such as invoice numbers) are generated using "
399
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
400
- "with more than 1."
401
- msgstr ""
402
-
403
- #: includes/class-wcpdf-settings-debug.php:246
404
- msgid "Enable debug output"
405
- msgstr "Aktiver debug output"
406
-
407
- #: includes/class-wcpdf-settings-debug.php:252
408
- msgid ""
409
- "Enable this option to output plugin errors if you're getting a blank page or "
410
- "other PDF generation issues"
411
- msgstr ""
412
- "Aktivér denne indstilling for output plugin fejl, hvis du får en blank side "
413
- "eller andre PDF generations problemstillinger"
414
-
415
- #: includes/class-wcpdf-settings-debug.php:253
416
- msgid ""
417
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
418
- "places on your site too, therefor this is not recommended to leave it "
419
- "enabled on live sites."
420
- msgstr ""
421
-
422
- #: includes/class-wcpdf-settings-debug.php:254
423
- msgid ""
424
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
425
- "order basis."
426
- msgstr ""
427
-
428
- #: includes/class-wcpdf-settings-debug.php:260
429
- msgid "Enable automatic cleanup"
430
- msgstr ""
431
-
432
- #. translators: number of days
433
- #: includes/class-wcpdf-settings-debug.php:268
434
- msgid "every %s days"
435
- msgstr ""
436
-
437
- #: includes/class-wcpdf-settings-debug.php:273
438
- msgid ""
439
- "Automatically clean up PDF files stored in the temporary folder (used for "
440
- "email attachments)"
441
- msgstr ""
442
-
443
- #: includes/class-wcpdf-settings-debug.php:274
444
- msgid ""
445
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
446
- "automatic cleanup but not enabled on your server."
447
- msgstr ""
448
-
449
- #: includes/class-wcpdf-settings-debug.php:280
450
- msgid "Output to HTML"
451
- msgstr "Output til HTML"
452
-
453
- #: includes/class-wcpdf-settings-debug.php:286
454
- msgid ""
455
- "Send the template output as HTML to the browser instead of creating a PDF."
456
- msgstr ""
457
- "Send skabelonen outputtet som HTML til browseren i stedet for at lave en PDF."
458
-
459
- #: includes/class-wcpdf-settings-debug.php:287
460
- msgid ""
461
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
462
- "order basis."
463
- msgstr ""
464
-
465
- #: includes/class-wcpdf-settings-debug.php:293
466
- msgid "Use alternative HTML5 parser to parse HTML"
467
- msgstr ""
468
-
469
- #: includes/class-wcpdf-settings-debug.php:304
470
- msgid "Log to order notes"
471
- msgstr ""
472
-
473
- #: includes/class-wcpdf-settings-debug.php:310
474
- msgid "Log PDF document creation to order notes."
475
- msgstr ""
476
-
477
- #: includes/class-wcpdf-settings-documents.php:30
478
- #: includes/class-wcpdf-settings.php:97
479
- msgid "Documents"
480
- msgstr ""
481
-
482
- #: includes/class-wcpdf-settings-documents.php:36
483
- #: includes/class-wcpdf-settings-documents.php:57
484
- msgid "untitled"
485
- msgstr ""
486
-
487
- #: includes/class-wcpdf-settings-documents.php:50
488
- msgid ""
489
- "All available documents are listed below. Click on a document to configure "
490
- "it."
491
- msgstr ""
492
-
493
- #: includes/class-wcpdf-settings-general.php:40
494
- msgid "General settings"
495
- msgstr "Generelle indstillinger"
496
-
497
- #: includes/class-wcpdf-settings-general.php:46
498
- msgid "How do you want to view the PDF?"
499
- msgstr "Hvordan ønsker du at vise PDF'en?"
500
-
501
- #: includes/class-wcpdf-settings-general.php:53
502
- msgid "Download the PDF"
503
- msgstr "Hent PDF'en"
504
-
505
- #: includes/class-wcpdf-settings-general.php:54
506
- msgid "Open the PDF in a new browser tab/window"
507
- msgstr "Åben PDF'en i en ny browser fane/vindue"
508
-
509
- #: includes/class-wcpdf-settings-general.php:61
510
- msgid "Choose a template"
511
- msgstr "Vælg en skabelon"
512
-
513
- #. translators: 1,2. template paths
514
- #: includes/class-wcpdf-settings-general.php:69
515
- msgid ""
516
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
517
- "your (child) theme in <code>%2$s</code> to customize them"
518
- msgstr ""
519
-
520
- #: includes/class-wcpdf-settings-general.php:75
521
- msgid "Paper size"
522
- msgstr "Papir størrelse"
523
-
524
- #: includes/class-wcpdf-settings-general.php:82
525
- #: includes/views/setup-wizard/paper-format.php:12
526
- msgid "A4"
527
- msgstr "A4"
528
-
529
- #: includes/class-wcpdf-settings-general.php:83
530
- #: includes/views/setup-wizard/paper-format.php:13
531
- msgid "Letter"
532
- msgstr "Brev"
533
-
534
- #: includes/class-wcpdf-settings-general.php:90
535
- msgid "Test mode"
536
- msgstr ""
537
-
538
- #: includes/class-wcpdf-settings-general.php:96
539
- msgid ""
540
- "With test mode enabled, any document generated will always use the latest "
541
- "settings, rather than using the settings as configured at the time the "
542
- "document was first created."
543
- msgstr ""
544
-
545
- #: includes/class-wcpdf-settings-general.php:96
546
- msgid ""
547
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
548
- "setting and will still be generated."
549
- msgstr ""
550
-
551
- #: includes/class-wcpdf-settings-general.php:102
552
- msgid "Extended currency symbol support"
553
- msgstr ""
554
-
555
- #: includes/class-wcpdf-settings-general.php:108
556
- msgid "Enable this if your currency symbol is not displaying properly"
557
- msgstr ""
558
-
559
- #: includes/class-wcpdf-settings-general.php:114
560
- msgid "Enable font subsetting"
561
- msgstr ""
562
-
563
- #: includes/class-wcpdf-settings-general.php:120
564
- msgid ""
565
- "Font subsetting can reduce file size by only including the characters that "
566
- "are used in the PDF, but limits the ability to edit PDF files later. "
567
- "Recommended if you're using an Asian font."
568
- msgstr ""
569
-
570
- #: includes/class-wcpdf-settings-general.php:126
571
- msgid "Shop header/logo"
572
- msgstr "Butik header/logo"
573
-
574
- #: includes/class-wcpdf-settings-general.php:132
575
- #: includes/views/setup-wizard/logo.php:20
576
- msgid "Select or upload your invoice header/logo"
577
- msgstr "Vælg eller upload dit faktura header/logo"
578
-
579
- #: includes/class-wcpdf-settings-general.php:133
580
- #: includes/views/setup-wizard/logo.php:20
581
- msgid "Set image"
582
- msgstr "Indstil billedet"
583
-
584
- #: includes/class-wcpdf-settings-general.php:134
585
- #: includes/views/setup-wizard/logo.php:20
586
- msgid "Remove image"
587
- msgstr "Fjern billede"
588
-
589
- #: includes/class-wcpdf-settings-general.php:141
590
- msgid "Logo height"
591
- msgstr ""
592
-
593
- #: includes/class-wcpdf-settings-general.php:149
594
- msgid ""
595
- "Enter the total height of the logo in mm, cm or in and use a dot for "
596
- "decimals.<br/>For example: 1.15in or 40mm"
597
- msgstr ""
598
-
599
- #: includes/class-wcpdf-settings-general.php:155
600
- #: includes/class-wcpdf-setup-wizard.php:47
601
- msgid "Shop Name"
602
- msgstr "Butik navn"
603
-
604
- #: includes/class-wcpdf-settings-general.php:168
605
- msgid "Shop Address"
606
- msgstr "Butik adresse"
607
-
608
- #: includes/class-wcpdf-settings-general.php:183
609
- msgid "Footer: terms & conditions, policies, etc."
610
- msgstr "Sidefod: Vilkår & betingelser, politikker mm."
611
-
612
- #: includes/class-wcpdf-settings-general.php:198
613
- msgid "Extra template fields"
614
- msgstr "Ekstra skabelons felter"
615
-
616
- #: includes/class-wcpdf-settings-general.php:204
617
- msgid "Extra field 1"
618
- msgstr "Ekstra felt 1"
619
-
620
- #: includes/class-wcpdf-settings-general.php:212
621
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
622
- msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen"
623
-
624
- #: includes/class-wcpdf-settings-general.php:219
625
- msgid "Extra field 2"
626
- msgstr "Ekstra felt 2"
627
-
628
- #: includes/class-wcpdf-settings-general.php:227
629
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
630
- msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen"
631
-
632
- #: includes/class-wcpdf-settings-general.php:234
633
- msgid "Extra field 3"
634
- msgstr "Ekstra felt 3"
635
-
636
- #: includes/class-wcpdf-settings-general.php:242
637
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
638
- msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen"
639
-
640
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
641
- msgid "PDF Invoices"
642
- msgstr "PDF fakturaer"
643
-
644
- #: includes/class-wcpdf-settings.php:74
645
- msgid "Documentation"
646
- msgstr ""
647
-
648
- #: includes/class-wcpdf-settings.php:75
649
- msgid "Support Forum"
650
- msgstr ""
651
-
652
- #. translators: database row value
653
- #: includes/class-wcpdf-settings.php:88
654
- msgid ""
655
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
656
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
657
- "document numbers (slow)' setting in the Status tab to use an alternate "
658
- "method."
659
- msgstr ""
660
-
661
- #: includes/class-wcpdf-settings.php:96
662
- msgid "General"
663
- msgstr "Generelt"
664
-
665
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
666
- msgid "Status"
667
- msgstr "Status"
668
-
669
- #: includes/class-wcpdf-setup-wizard.php:51
670
- #: includes/views/setup-wizard/logo.php:3
671
- msgid "Your logo"
672
- msgstr ""
673
-
674
- #: includes/class-wcpdf-setup-wizard.php:55
675
- msgid "Attachments"
676
- msgstr ""
677
-
678
- #: includes/class-wcpdf-setup-wizard.php:59
679
- #: includes/views/setup-wizard/display-options.php:3
680
- msgid "Display options"
681
- msgstr ""
682
-
683
- #: includes/class-wcpdf-setup-wizard.php:63
684
- #: includes/views/setup-wizard/paper-format.php:3
685
- msgid "Paper format"
686
- msgstr ""
687
-
688
- #: includes/class-wcpdf-setup-wizard.php:67
689
- #: includes/views/setup-wizard/show-action-buttons.php:3
690
- msgid "Action buttons"
691
- msgstr ""
692
-
693
- #: includes/class-wcpdf-setup-wizard.php:71
694
- msgid "Ready!"
695
- msgstr ""
696
-
697
- #: includes/class-wcpdf-setup-wizard.php:133
698
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
699
- msgstr ""
700
-
701
- #: includes/class-wcpdf-setup-wizard.php:185
702
- msgid "Previous"
703
- msgstr ""
704
-
705
- #: includes/class-wcpdf-setup-wizard.php:190
706
- msgid "Next"
707
- msgstr ""
708
-
709
- #: includes/class-wcpdf-setup-wizard.php:191
710
- msgid "Skip this step"
711
- msgstr ""
712
-
713
- #: includes/class-wcpdf-setup-wizard.php:193
714
- msgid "Finish"
715
- msgstr ""
716
-
717
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
718
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
719
- msgid "N/A"
720
- msgstr "N/A"
721
-
722
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
723
- msgid "Payment method"
724
- msgstr "Betaling"
725
-
726
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
727
- msgid "Shipping method"
728
- msgstr "Fragt"
729
-
730
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
731
- msgid "Subtotal"
732
- msgstr "Subtotal"
733
-
734
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
735
- msgid "Shipping"
736
- msgstr "Fragt"
737
-
738
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
739
- msgid "Discount"
740
- msgstr "Rabat"
741
-
742
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
743
- msgid "VAT"
744
- msgstr "Moms"
745
-
746
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
747
- msgid "Tax rate"
748
- msgstr "Moms"
749
-
750
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
751
- msgid "Total ex. VAT"
752
- msgstr "Total ex. moms"
753
-
754
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
755
- msgid "Total"
756
- msgstr "Total"
757
-
758
- #. translators: 1. credit note title, 2. refund id
759
- #: includes/documents/abstract-wcpdf-order-document.php:336
760
- msgid "%1$s (refund #%2$s) was regenerated."
761
- msgstr ""
762
-
763
- #. translators: 1. credit note title, 2. refund id
764
- #: includes/documents/abstract-wcpdf-order-document.php:336
765
- msgid "%s was regenerated"
766
- msgstr ""
767
-
768
- #. translators: %s: document name
769
- #: includes/documents/abstract-wcpdf-order-document.php:422
770
- msgid "%s Number:"
771
- msgstr ""
772
-
773
- #. translators: %s: document name
774
- #: includes/documents/abstract-wcpdf-order-document.php:428
775
- msgid "%s Date:"
776
- msgstr ""
777
-
778
- #: includes/documents/abstract-wcpdf-order-document.php:891
779
- msgid "Admin email"
780
- msgstr ""
781
-
782
- #: includes/documents/abstract-wcpdf-order-document.php:894
783
- msgid "Manual email"
784
- msgstr ""
785
-
786
- #: includes/documents/class-wcpdf-invoice.php:32
787
- #: includes/documents/class-wcpdf-invoice.php:56
788
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
789
- msgid "Invoice"
790
- msgstr "Faktura"
791
-
792
- # This is a filename (prefix). do not use spaces or special characters!
793
- #: includes/documents/class-wcpdf-invoice.php:131
794
- msgid "invoice"
795
- msgid_plural "invoices"
796
- msgstr[0] "faktura"
797
- msgstr[1] "fakturaen"
798
-
799
- #: includes/documents/class-wcpdf-invoice.php:186
800
- #: includes/documents/class-wcpdf-packing-slip.php:88
801
- msgid "Enable"
802
- msgstr ""
803
-
804
- #: includes/documents/class-wcpdf-invoice.php:197
805
- msgid "Attach to:"
806
- msgstr ""
807
-
808
- #. translators: directory path
809
- #: includes/documents/class-wcpdf-invoice.php:205
810
- msgid ""
811
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
812
- "permissions for this folder! Without having write access to this folder, the "
813
- "plugin will not be able to email invoices."
814
- msgstr ""
815
- "Det ser ud som om at skabelon mappen (<code>%s</code>) ikke er skrivebar, "
816
- "kontrollere adgangskravene for denne mappe. Uden at have adgang til at "
817
- "redigere i mappen, vil dette plugin ikke være i stand til at sende e-mails "
818
- "med fakturaer."
819
-
820
- #: includes/documents/class-wcpdf-invoice.php:211
821
- msgid "Disable for:"
822
- msgstr ""
823
-
824
- #: includes/documents/class-wcpdf-invoice.php:220
825
- msgid "Select one or more statuses"
826
- msgstr ""
827
-
828
- #: includes/documents/class-wcpdf-invoice.php:226
829
- #: includes/views/setup-wizard/display-options.php:17
830
- msgid "Display shipping address"
831
- msgstr "Vis leveringsadresse"
832
-
833
- #: includes/documents/class-wcpdf-invoice.php:233
834
- #: includes/documents/class-wcpdf-invoice.php:285
835
- #: includes/documents/class-wcpdf-invoice.php:301
836
- #: includes/documents/class-wcpdf-packing-slip.php:106
837
- msgid "No"
838
- msgstr ""
839
-
840
- #: includes/documents/class-wcpdf-invoice.php:234
841
- msgid "Only when different from billing address"
842
- msgstr ""
843
-
844
- #: includes/documents/class-wcpdf-invoice.php:235
845
- #: includes/documents/class-wcpdf-invoice.php:378
846
- #: includes/documents/class-wcpdf-packing-slip.php:108
847
- msgid "Always"
848
- msgstr "Altid"
849
-
850
- #: includes/documents/class-wcpdf-invoice.php:243
851
- #: includes/documents/class-wcpdf-packing-slip.php:116
852
- #: includes/views/setup-wizard/display-options.php:26
853
- msgid "Display email address"
854
- msgstr "Vis email adresse"
855
-
856
- #: includes/documents/class-wcpdf-invoice.php:254
857
- #: includes/documents/class-wcpdf-packing-slip.php:127
858
- #: includes/views/setup-wizard/display-options.php:35
859
- msgid "Display phone number"
860
- msgstr "Vis telefon nummer"
861
-
862
- #: includes/documents/class-wcpdf-invoice.php:265
863
- #: includes/documents/class-wcpdf-packing-slip.php:138
864
- msgid "Display customer notes"
865
- msgstr ""
866
-
867
- #: includes/documents/class-wcpdf-invoice.php:278
868
- #: includes/views/setup-wizard/display-options.php:44
869
- msgid "Display invoice date"
870
- msgstr "Vis faktura dato"
871
-
872
- #: includes/documents/class-wcpdf-invoice.php:287
873
- msgid "Order Date"
874
- msgstr ""
875
-
876
- #: includes/documents/class-wcpdf-invoice.php:294
877
- #: includes/views/setup-wizard/display-options.php:53
878
- msgid "Display invoice number"
879
- msgstr ""
880
-
881
- #: includes/documents/class-wcpdf-invoice.php:303
882
- msgid "Order Number"
883
- msgstr ""
884
-
885
- #: includes/documents/class-wcpdf-invoice.php:307
886
- msgid "Warning!"
887
- msgstr ""
888
-
889
- #: includes/documents/class-wcpdf-invoice.php:308
890
- msgid ""
891
- "Using the Order Number as invoice number is not recommended as this may lead "
892
- "to gaps in the invoice number sequence (even when order numbers are "
893
- "sequential)."
894
- msgstr ""
895
-
896
- #: includes/documents/class-wcpdf-invoice.php:309
897
- msgid "More information"
898
- msgstr ""
899
-
900
- #: includes/documents/class-wcpdf-invoice.php:316
901
- msgid "Next invoice number (without prefix/suffix etc.)"
902
- msgstr "Næste faktura nummer (uden prefix/suffix mm.)"
903
-
904
- #: includes/documents/class-wcpdf-invoice.php:322
905
- msgid ""
906
- "This is the number that will be used for the next document. By default, "
907
- "numbering starts from 1 and increases for every new document. Note that if "
908
- "you override this and set it lower than the current/highest number, this "
909
- "could create duplicate numbers!"
910
- msgstr ""
911
-
912
- #: includes/documents/class-wcpdf-invoice.php:328
913
- msgid "Number format"
914
- msgstr ""
915
-
916
- #: includes/documents/class-wcpdf-invoice.php:336
917
- msgid "Prefix"
918
- msgstr "Prefix"
919
-
920
- #: includes/documents/class-wcpdf-invoice.php:338
921
- msgid ""
922
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
923
- "respectively"
924
- msgstr ""
925
-
926
- #: includes/documents/class-wcpdf-invoice.php:341
927
- msgid "Suffix"
928
- msgstr "Suffix"
929
-
930
- #: includes/documents/class-wcpdf-invoice.php:346
931
- msgid "Padding"
932
- msgstr "Padding"
933
-
934
- #: includes/documents/class-wcpdf-invoice.php:349
935
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
936
- msgstr ""
937
- "indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 000042"
938
-
939
- #: includes/documents/class-wcpdf-invoice.php:352
940
- msgid ""
941
- "note: if you have already created a custom invoice number format with a "
942
- "filter, the above settings will be ignored"
943
- msgstr ""
944
- "Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
945
- "format med et filter, så vil denne indstillingen ovenover blive ignoreret"
946
-
947
- #: includes/documents/class-wcpdf-invoice.php:358
948
- msgid "Reset invoice number yearly"
949
- msgstr ""
950
-
951
- #: includes/documents/class-wcpdf-invoice.php:369
952
- msgid "Allow My Account invoice download"
953
- msgstr "Tillad at downloade faktura via min konto"
954
-
955
- #: includes/documents/class-wcpdf-invoice.php:376
956
- msgid "Only when an invoice is already created/emailed"
957
- msgstr "Kun når en faktura allerede er oprettet/sendt på mail"
958
-
959
- #: includes/documents/class-wcpdf-invoice.php:377
960
- msgid "Only for specific order statuses (define below)"
961
- msgstr "Kun for specifikke ordre statusser (Definer nedenfor)"
962
-
963
- #: includes/documents/class-wcpdf-invoice.php:379
964
- msgid "Never"
965
- msgstr ""
966
-
967
- #: includes/documents/class-wcpdf-invoice.php:394
968
- msgid "Enable invoice number column in the orders list"
969
- msgstr "Aktiver faktura nummer kolonne i ordre listen"
970
-
971
- #: includes/documents/class-wcpdf-invoice.php:405
972
- msgid "Disable for free orders"
973
- msgstr ""
974
-
975
- #. translators: zero number
976
- #: includes/documents/class-wcpdf-invoice.php:412
977
- msgid "Disable document when the order total is %s"
978
- msgstr ""
979
-
980
- #: includes/documents/class-wcpdf-invoice.php:418
981
- msgid "Always use most current settings"
982
- msgstr ""
983
-
984
- #: includes/documents/class-wcpdf-invoice.php:424
985
- msgid ""
986
- "When enabled, the document will always reflect the most current settings "
987
- "(such as footer text, document name, etc.) rather than using historical "
988
- "settings."
989
- msgstr ""
990
-
991
- #: includes/documents/class-wcpdf-invoice.php:426
992
- msgid ""
993
- "<strong>Caution:</strong> enabling this will also mean that if you change "
994
- "your company name or address in the future, previously generated documents "
995
- "will also be affected."
996
- msgstr ""
997
-
998
- #: includes/documents/class-wcpdf-invoice.php:439
999
- msgid "Invoice numbers are created by a third-party extension."
1000
- msgstr ""
1001
-
1002
- #. translators: link
1003
- #: includes/documents/class-wcpdf-invoice.php:442
1004
- msgid "Configure it <a href=\"%s\">here</a>."
1005
- msgstr ""
1006
-
1007
- #: includes/documents/class-wcpdf-packing-slip.php:32
1008
- #: includes/documents/class-wcpdf-packing-slip.php:41
1009
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1010
- msgid "Packing Slip"
1011
- msgstr "Følgeseddel"
1012
-
1013
- # This is a filename (prefix). do not use spaces or special characters!
1014
- #: includes/documents/class-wcpdf-packing-slip.php:47
1015
- msgid "packing-slip"
1016
- msgid_plural "packing-slips"
1017
- msgstr[0] "følgeseddel"
1018
- msgstr[1] "følgesedler"
1019
-
1020
- #: includes/documents/class-wcpdf-packing-slip.php:99
1021
- msgid "Display billing address"
1022
- msgstr "Vis leveringsadresse"
1023
-
1024
- #: includes/documents/class-wcpdf-packing-slip.php:107
1025
- msgid "Only when different from shipping address"
1026
- msgstr ""
1027
-
1028
- #: includes/documents/class-wcpdf-packing-slip.php:162
1029
- msgid "Packing Slip Number:"
1030
- msgstr ""
1031
-
1032
- #: includes/documents/class-wcpdf-packing-slip.php:170
1033
- msgid "Packing Slip Date:"
1034
- msgstr ""
1035
-
1036
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1037
- msgid "Legacy Document"
1038
- msgstr ""
1039
-
1040
- #: includes/legacy/class-wcpdf-legacy.php:72
1041
- msgid "Error"
1042
- msgstr ""
1043
-
1044
- #: includes/legacy/class-wcpdf-legacy.php:73
1045
- msgid ""
1046
- "An outdated template or action hook was used to generate the PDF. Legacy "
1047
- "mode has been activated, please try again by reloading this page."
1048
- msgstr ""
1049
-
1050
- #: includes/legacy/class-wcpdf-legacy.php:76
1051
- msgid "The following function was called"
1052
- msgstr ""
1053
-
1054
- #. translators: <a> tags
1055
- #: includes/views/attachment-settings-hint.php:23
1056
- msgid ""
1057
- "It looks like you haven't setup any email attachments yet, check the "
1058
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1059
- msgstr ""
1060
-
1061
- #: includes/views/dompdf-status.php:11
1062
- msgid "7.1+ (7.4 or higher recommended)"
1063
- msgstr ""
1064
-
1065
- #: includes/views/dompdf-status.php:24
1066
- msgid "Recommended, will use fallback functions"
1067
- msgstr ""
1068
-
1069
- #: includes/views/dompdf-status.php:30
1070
- msgid "Required if you have images in your documents"
1071
- msgstr ""
1072
-
1073
- #: includes/views/dompdf-status.php:39
1074
- msgid "To compress PDF documents"
1075
- msgstr ""
1076
-
1077
- #: includes/views/dompdf-status.php:42
1078
- msgid "Recommended to compress PDF documents"
1079
- msgstr ""
1080
-
1081
- #: includes/views/dompdf-status.php:45
1082
- msgid "For better performances"
1083
- msgstr ""
1084
-
1085
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1086
- msgid "Recommended for better performances"
1087
- msgstr ""
1088
-
1089
- #: includes/views/dompdf-status.php:51
1090
- msgid "Better with transparent PNG images"
1091
- msgstr ""
1092
-
1093
- #: includes/views/dompdf-status.php:57
1094
- msgid ""
1095
- "Required to detect custom templates and to clear the temp folder periodically"
1096
- msgstr ""
1097
-
1098
- #: includes/views/dompdf-status.php:60
1099
- msgid "Check PHP disable_functions"
1100
- msgstr ""
1101
-
1102
- #. translators: <a> tags
1103
- #: includes/views/dompdf-status.php:64
1104
- msgid ""
1105
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1106
- "WordPress Memory Limit%2$s"
1107
- msgstr ""
1108
-
1109
- #: includes/views/dompdf-status.php:69
1110
- msgid "Allow remote stylesheets and images"
1111
- msgstr ""
1112
-
1113
- #: includes/views/dompdf-status.php:72
1114
- msgid "allow_url_fopen disabled"
1115
- msgstr ""
1116
-
1117
- #. translators: <a> tags
1118
- #: includes/views/dompdf-status.php:92
1119
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1120
- msgstr ""
1121
-
1122
- #: includes/views/dompdf-status.php:97
1123
- msgid "System Configuration"
1124
- msgstr ""
1125
-
1126
- #: includes/views/dompdf-status.php:102
1127
- msgid "Required"
1128
- msgstr ""
1129
-
1130
- #: includes/views/dompdf-status.php:103
1131
- msgid "Present"
1132
- msgstr ""
1133
-
1134
- #: includes/views/dompdf-status.php:142
1135
- msgid "Writable"
1136
- msgstr ""
1137
-
1138
- #: includes/views/dompdf-status.php:143
1139
- msgid "Not writable"
1140
- msgstr ""
1141
-
1142
- #: includes/views/dompdf-status.php:148
1143
- msgid "Central temporary plugin folder"
1144
- msgstr ""
1145
-
1146
- #: includes/views/dompdf-status.php:154
1147
- msgid "Temporary attachments folder"
1148
- msgstr ""
1149
-
1150
- #: includes/views/dompdf-status.php:160
1151
- msgid "Temporary DOMPDF folder"
1152
- msgstr ""
1153
-
1154
- #: includes/views/dompdf-status.php:166
1155
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1156
- msgstr ""
1157
-
1158
- #: includes/views/dompdf-status.php:177
1159
- msgid "Write Permissions"
1160
- msgstr ""
1161
-
1162
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1163
- #: templates/Simple/packing-slip.php:88
1164
- msgid "Description"
1165
- msgstr "Beskrivelse"
1166
-
1167
- #: includes/views/dompdf-status.php:181
1168
- msgid "Value"
1169
- msgstr ""
1170
-
1171
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1172
- #: includes/views/dompdf-status.php:207
1173
- msgid ""
1174
- "The central temp folder is %1$s. By default, this folder is created in the "
1175
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1176
- "config.php. Alternatively, you can control the specific folder for PDF "
1177
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1178
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1179
- "by the plugin if the central temp folder is writable)."
1180
- msgstr ""
1181
-
1182
- #. translators: directory path
1183
- #: includes/views/dompdf-status.php:220
1184
- msgid ""
1185
- "If the temporary folders were not automatically created by the plugin, "
1186
- "verify that all the font files (from %s) are copied to the fonts folder. "
1187
- "Normally, this is fully automated, but if your server has strict security "
1188
- "settings, this automated copying may have been prohibited. In that case, you "
1189
- "also need to make sure these folders get synchronized on plugin updates!"
1190
- msgstr ""
1191
-
1192
- #: includes/views/setup-wizard/attach-to.php:3
1193
- msgid "Attach too..."
1194
- msgstr ""
1195
-
1196
- #: includes/views/setup-wizard/attach-to.php:4
1197
- msgid "Select to which emails you would like to attach your invoice."
1198
- msgstr ""
1199
-
1200
- #: includes/views/setup-wizard/display-options.php:4
1201
- msgid "Select some additional display options for your invoice."
1202
- msgstr ""
1203
-
1204
- #: includes/views/setup-wizard/good-to-go.php:3
1205
- msgid "You are good to go!"
1206
- msgstr ""
1207
-
1208
- #: includes/views/setup-wizard/good-to-go.php:4
1209
- msgid "If you have any questions please have a look at our documentation:"
1210
- msgstr ""
1211
-
1212
- #: includes/views/setup-wizard/good-to-go.php:5
1213
- msgid "Invoices & Packing Slips"
1214
- msgstr ""
1215
-
1216
- #: includes/views/setup-wizard/good-to-go.php:6
1217
- msgid "Happy selling!"
1218
- msgstr ""
1219
-
1220
- #: includes/views/setup-wizard/logo.php:4
1221
- msgid "Set the header image that will display on your invoice."
1222
- msgstr ""
1223
-
1224
- #: includes/views/setup-wizard/paper-format.php:4
1225
- msgid "Select the paper format for your invoice."
1226
- msgstr ""
1227
-
1228
- #: includes/views/setup-wizard/shop-name.php:3
1229
- msgid "Enter your shop name"
1230
- msgstr ""
1231
-
1232
- #: includes/views/setup-wizard/shop-name.php:4
1233
- msgid ""
1234
- "Lets quickly setup your invoice. Please enter the name and address of your "
1235
- "shop in the fields on the right."
1236
- msgstr ""
1237
-
1238
- #: includes/views/setup-wizard/show-action-buttons.php:4
1239
- msgid ""
1240
- "Would you like to display the action buttons in your WooCommerce order list? "
1241
- "The action buttons allow you to manually create a PDF."
1242
- msgstr ""
1243
-
1244
- #: includes/views/setup-wizard/show-action-buttons.php:5
1245
- msgid "(You can always change this setting later via the Screen Options menu)"
1246
- msgstr ""
1247
-
1248
- #: includes/views/setup-wizard/show-action-buttons.php:18
1249
- msgid "Show action buttons"
1250
- msgstr ""
1251
-
1252
- #: includes/views/wcpdf-extensions.php:16
1253
- msgid "Check out these premium extensions!"
1254
- msgstr "Tjek disse Premium tilføjelser!"
1255
-
1256
- #: includes/views/wcpdf-extensions.php:17
1257
- msgid "click items to read more"
1258
- msgstr "klik elementer for at læse mere"
1259
-
1260
- #: includes/views/wcpdf-extensions.php:22
1261
- msgid ""
1262
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1263
- "system"
1264
- msgstr ""
1265
-
1266
- #: includes/views/wcpdf-extensions.php:24
1267
- msgid ""
1268
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1269
- "premium extensions:"
1270
- msgstr ""
1271
-
1272
- #: includes/views/wcpdf-extensions.php:25
1273
- msgid "Professional features:"
1274
- msgstr ""
1275
-
1276
- #: includes/views/wcpdf-extensions.php:27
1277
- #: includes/views/wcpdf-extensions.php:57
1278
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1279
- msgstr "E-mail/print/download <b>PDF kreditnotaer & Proforma fakturaer</b>"
1280
-
1281
- #: includes/views/wcpdf-extensions.php:28
1282
- #: includes/views/wcpdf-extensions.php:58
1283
- msgid ""
1284
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1285
- "packing slips, for example to a drop-shipper or a supplier."
1286
- msgstr ""
1287
- "Send en separat <b>e-mail</b> med (eller uden) PDF fakturaer/følgesedler, "
1288
- "for eksempel til en fragtmand eller en leverandør."
1289
-
1290
- #: includes/views/wcpdf-extensions.php:29
1291
- #: includes/views/wcpdf-extensions.php:59
1292
- msgid ""
1293
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1294
- "document) to the WooCommerce emails of your choice."
1295
- msgstr ""
1296
- "Vedhæft <b>op til 3 statiske filer</b> (f.eks. en vilkår & betingelser-"
1297
- "dokument) til WooCommerce e-mails efter dit valg."
1298
-
1299
- #: includes/views/wcpdf-extensions.php:30
1300
- #: includes/views/wcpdf-extensions.php:60
1301
- msgid ""
1302
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1303
- "and credit notes or utilize the main invoice numbering system"
1304
- msgstr ""
1305
- "Brug et <b>separat nummererings system</b> og/eller format for proforma "
1306
- "fakturaer og kreditnotaer eller anvend de vigtigste faktura nummerering "
1307
- "system"
1308
-
1309
- #: includes/views/wcpdf-extensions.php:31
1310
- #: includes/views/wcpdf-extensions.php:61
1311
- msgid ""
1312
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1313
- "additional custom fields, font sizes etc. without the need to create a "
1314
- "custom template."
1315
- msgstr ""
1316
- "<b>Tilpas</b> <b>levering & fakturerings adresse</b> format til at medtage "
1317
- "brugerdefinerede felter, skriftstørrelser osv uden at skulle oprette en "
1318
- "brugerdefineret skabelon."
1319
-
1320
- #: includes/views/wcpdf-extensions.php:32
1321
- #: includes/views/wcpdf-extensions.php:62
1322
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1323
- msgstr "Brug dette plugin i flersprogede <b>WPML</b> opsætninger"
1324
-
1325
- #: includes/views/wcpdf-extensions.php:34
1326
- #: includes/views/wcpdf-extensions.php:114
1327
- msgid "Advanced, customizable templates"
1328
- msgstr ""
1329
-
1330
- #: includes/views/wcpdf-extensions.php:36
1331
- #: includes/views/wcpdf-extensions.php:117
1332
- msgid ""
1333
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1334
- "your needs with a drag & drop customizer"
1335
- msgstr ""
1336
-
1337
- #: includes/views/wcpdf-extensions.php:37
1338
- #: includes/views/wcpdf-extensions.php:118
1339
- msgid "Two extra stylish premade templates (Modern & Business)"
1340
- msgstr ""
1341
-
1342
- #: includes/views/wcpdf-extensions.php:39
1343
- #: includes/views/wcpdf-extensions.php:63
1344
- msgid "Upload automatically to dropbox"
1345
- msgstr ""
1346
-
1347
- #: includes/views/wcpdf-extensions.php:41
1348
- msgid ""
1349
- "This extension conveniently uploads all the invoices (and other pdf "
1350
- "documents from the professional extension) that are emailed to your "
1351
- "customers to Dropbox. The best way to keep your invoice administration up to "
1352
- "date!"
1353
- msgstr ""
1354
- "Denne udvidelse uploader alle fakturaer (og andre PDF-dokumenter fra den "
1355
- "professionelle udvidelse), der er sendt til din kunder til Dropbox. Den "
1356
- "bedste måde at holde din faktura administration opdateret!"
1357
-
1358
- #: includes/views/wcpdf-extensions.php:44
1359
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1360
- msgstr ""
1361
-
1362
- #: includes/views/wcpdf-extensions.php:53
1363
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1364
- msgstr "Go Pro: Proforma fakturaer, kreditnotaer (=tilbagebetaling) og mere!"
1365
-
1366
- #: includes/views/wcpdf-extensions.php:55
1367
- msgid ""
1368
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1369
- "features:"
1370
- msgstr ""
1371
- "Opgrader WooCommerce PDF-fakturaer & følgesedler med følgende funktioner:"
1372
-
1373
- #: includes/views/wcpdf-extensions.php:65
1374
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1375
- msgstr "Få WooCommerce PDF-fakturaer & følgesedler Professional!"
1376
-
1377
- #: includes/views/wcpdf-extensions.php:73
1378
- msgid "Automatically send payment reminders to your customers"
1379
- msgstr ""
1380
-
1381
- #: includes/views/wcpdf-extensions.php:75
1382
- msgid "WooCommerce Smart Reminder emails"
1383
- msgstr ""
1384
-
1385
- #: includes/views/wcpdf-extensions.php:77
1386
- msgid "<b>Completely automatic</b> scheduled emails"
1387
- msgstr ""
1388
-
1389
- #: includes/views/wcpdf-extensions.php:78
1390
- msgid ""
1391
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1392
- "from the order (name, order total, etc)"
1393
- msgstr ""
1394
-
1395
- #: includes/views/wcpdf-extensions.php:79
1396
- msgid ""
1397
- "Configure the exact requirements for sending an email (time after order, "
1398
- "order status, payment method)"
1399
- msgstr ""
1400
-
1401
- #: includes/views/wcpdf-extensions.php:80
1402
- msgid ""
1403
- "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1404
- "order language."
1405
- msgstr ""
1406
-
1407
- #: includes/views/wcpdf-extensions.php:81
1408
- msgid ""
1409
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1410
- "reminders, repeat purchases)"
1411
- msgstr ""
1412
-
1413
- #: includes/views/wcpdf-extensions.php:82
1414
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1415
- msgstr ""
1416
-
1417
- #: includes/views/wcpdf-extensions.php:84
1418
- msgid "Get WooCommerce Smart Reminder Emails"
1419
- msgstr ""
1420
-
1421
- #: includes/views/wcpdf-extensions.php:93
1422
- msgid ""
1423
- "Automatically send new orders or packing slips to your printer, as soon as "
1424
- "the customer orders!"
1425
- msgstr ""
1426
- "Send automatisk nye ordrer eller pakkesedler til din printer, snart "
1427
- "kunden bestiller!"
1428
-
1429
- #: includes/views/wcpdf-extensions.php:99
1430
- msgid ""
1431
- "Check out the WooCommerce Automatic Order Printing extension from our "
1432
- "partners at Simba Hosting"
1433
- msgstr ""
1434
- "Tjek WooCommerce Automatisk ordre udskrft udvidelse ud fra vores partnere på "
1435
- "Simba Hosting"
1436
-
1437
- #: includes/views/wcpdf-extensions.php:100
1438
- msgid "WooCommerce Automatic Order Printing"
1439
- msgstr "WooCommerce automatisk ordre udskrift"
1440
-
1441
- #. translators: Premium Templates link
1442
- #: includes/views/wcpdf-extensions.php:120
1443
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1444
- msgstr "Se Premium PDF faktura & pakkesedler skabeloner på %s."
1445
-
1446
- #. translators: email link
1447
- #: includes/views/wcpdf-extensions.php:122
1448
- msgid "For custom templates, contact us at %s."
1449
- msgstr "For brugerdefinerede skabeloner, kontakt os på %s."
1450
-
1451
- #: includes/views/wcpdf-settings-page.php:9
1452
- msgid "WooCommerce PDF Invoices"
1453
- msgstr "WooCommerce PDF faktura"
1454
-
1455
- #: includes/wcpdf-functions.php:209
1456
- msgid "Error creating PDF, please contact the site owner."
1457
- msgstr ""
1458
-
1459
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1460
- msgid "Billing Address:"
1461
- msgstr "Faktureringsadresse:"
1462
-
1463
- #: templates/Simple/invoice.php:48
1464
- msgid "Ship To:"
1465
- msgstr "Leveringsadresse:"
1466
-
1467
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1468
- msgid "Order Number:"
1469
- msgstr "Ordrenummer:"
1470
-
1471
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1472
- msgid "Order Date:"
1473
- msgstr "Ordredato:"
1474
-
1475
- #: templates/Simple/invoice.php:78
1476
- msgid "Payment Method:"
1477
- msgstr "Betaling:"
1478
-
1479
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1480
- msgid "Product"
1481
- msgstr "Produkt"
1482
-
1483
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1484
- msgid "Quantity"
1485
- msgstr "Antal"
1486
-
1487
- #: templates/Simple/invoice.php:94
1488
- msgid "Price"
1489
- msgstr "Pris"
1490
-
1491
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1492
- msgid "SKU"
1493
- msgstr "Varenummer"
1494
-
1495
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1496
- msgid "SKU:"
1497
- msgstr "Varenummer:"
1498
-
1499
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1500
- msgid "Weight:"
1501
- msgstr "Vægt:"
1502
-
1503
- #: templates/Simple/invoice.php:123
1504
- msgid "Notes"
1505
- msgstr ""
1506
-
1507
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1508
- msgid "Customer Notes"
1509
- msgstr "Kunde bemærkning"
1510
-
1511
- #: templates/Simple/packing-slip.php:35
1512
- msgid "Shipping Address:"
1513
- msgstr "Leveringsadresse:"
1514
-
1515
- #: templates/Simple/packing-slip.php:66
1516
- msgid "Shipping Method:"
1517
- msgstr "Leveringsmetode:"
1518
-
1519
- #. translators: <a> tags
1520
- #: woocommerce-pdf-invoices-packingslips.php:271
1521
- msgid ""
1522
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1523
- "installed & activated!"
1524
- msgstr ""
1525
-
1526
- #: woocommerce-pdf-invoices-packingslips.php:282
1527
- msgid ""
1528
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1529
- "recommended)."
1530
- msgstr ""
1531
-
1532
- #. translators: <a> tags
1533
- #: woocommerce-pdf-invoices-packingslips.php:284
1534
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1535
- msgstr ""
1536
-
1537
- #. translators: <a> tags
1538
- #: woocommerce-pdf-invoices-packingslips.php:286
1539
- msgid ""
1540
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1541
- "to enable backwards compatibility with PHP5.6."
1542
- msgstr ""
1543
-
1544
- #. translators: directory path
1545
- #: woocommerce-pdf-invoices-packingslips.php:374
1546
- msgid ""
1547
- "The PDF files in %s are not currently protected due to your site running on "
1548
- "<strong>NGINX</strong>."
1549
- msgstr ""
1550
-
1551
- #: woocommerce-pdf-invoices-packingslips.php:375
1552
- msgid "To protect them, you must click the button below."
1553
- msgstr ""
1554
-
1555
- #. translators: plugin name
1556
- #: woocommerce-pdf-invoices-packingslips.php:419
1557
- msgid ""
1558
- "When sending emails with MailPoet 3 and the active sending method is "
1559
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1560
- "the emails."
1561
- msgstr ""
1562
-
1563
- #. translators: "Your web host / web server"
1564
- #: woocommerce-pdf-invoices-packingslips.php:421
1565
- msgid "To fix this you should select other method like %1$s or %2$s."
1566
- msgstr ""
1567
-
1568
- #. translators: "Your web host / web server"
1569
- #: woocommerce-pdf-invoices-packingslips.php:421
1570
- msgid "Your web host / web server"
1571
- msgstr ""
1572
-
1573
- #: woocommerce-pdf-invoices-packingslips.php:422
1574
- msgid "Change MailPoet sending method"
1575
- msgstr ""
1576
-
1577
- #~ msgid "h"
1578
- #~ msgstr "t"
1579
-
1580
- #~ msgid "m"
1581
- #~ msgstr "m"
1582
-
1583
- #, php-format
1584
- #~ msgid ""
1585
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1586
- #~ "your (child) theme in <code>%s</code> to customize them"
1587
- #~ msgstr ""
1588
- #~ "Vil du bruge din egen skabelon? Kopier alle filer fra <code>%s</code> til "
1589
- #~ "din (barn) tema i <code>%s</code> at tilpasse dem."
1590
-
1591
- #~ msgid "Settings"
1592
- #~ msgstr "Indstillinger "
1593
-
1594
- #~ msgid "Disable for free products"
1595
- #~ msgstr "Deaktiver for gratis produkter"
1596
-
1597
- #~ msgid "Upload all invoices automatically to your dropbox"
1598
- #~ msgstr "Upload alle fakturaer automatisk til din Dropbox!"
1599
-
1600
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1601
- #~ msgstr "Få WooCommerce PDF Fakturaer & pakkesedler til dropbox!"
1602
-
1603
- #, php-format
1604
- #~ msgid ""
1605
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1606
- #~ "installed & activated!"
1607
- #~ msgstr ""
1608
- #~ "WooCommerce PDF faktura & følgeseddel kræver at %sWooCommerce%s er "
1609
- #~ "installeret og aktiveret! "
1610
-
1611
- #~ msgid "Attach invoice to:"
1612
- #~ msgstr "Vedhæft fakturaen til: "
1613
-
1614
- #~ msgid ""
1615
- #~ "Display shipping address on invoice (in addition to the default billing "
1616
- #~ "address) if different from billing address"
1617
- #~ msgstr ""
1618
- #~ "Vis leveringsadresse på faktura (ud over standard faktureringsadresse) "
1619
- #~ "hvis den er forskellig fra faktureringsadressen"
1620
-
1621
- #~ msgid ""
1622
- #~ "This is the number that will be used on the next invoice that is created. "
1623
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1624
- #~ "first invoice that is created and increases for every new invoice. Note "
1625
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1626
- #~ "number, this could create double invoice numbers!"
1627
- #~ msgstr ""
1628
- #~ "Dette er nummeret som vil blive brugt på den næste faktura. Som standard "
1629
- #~ "starter numrene fra WooCommerce ordre nummer for den første faktura der "
1630
- #~ "bliver oprettet og stiger med en for hver ny faktura. Bemærk: Hvis du "
1631
- #~ "tilsidesætter dette og sætter den lavere end den højeste (PDF) "
1632
- #~ "fakturanummer, kan dette skabe dobbelt fakturanumre. "
1633
-
1634
- #~ msgid "Invoice number format"
1635
- #~ msgstr "Fakturanummer format "
1636
-
1637
- #~ msgid ""
1638
- #~ "Disable automatic creation/attachment of invoices when only free products "
1639
- #~ "are ordered"
1640
- #~ msgstr ""
1641
- #~ "Deaktiver automatisk oprettelse/fastgørelse af fakturaer, når kun gratis "
1642
- #~ "produkter er bestilt"
1643
-
1644
- #~ msgid ""
1645
- #~ "Display billing address on packing slip (in addition to the default "
1646
- #~ "shipping address) if different from shipping address"
1647
- #~ msgstr ""
1648
- #~ "Vis faktureringsadresse på følgeseddel (ud over standard "
1649
- #~ "leveringsadresse) hvis forskellig fra leveringsadresse"
1650
-
1651
- #~ msgid "Template"
1652
- #~ msgstr "Skabelon "
1653
-
1654
- #~ msgid "Admin New Order email"
1655
- #~ msgstr "Admin ny ordre e-mail"
1656
-
1657
- #~ msgid "Customer Processing Order email"
1658
- #~ msgstr "Kunde behandler ordre e-mail"
1659
-
1660
- #~ msgid "Customer Completed Order email"
1661
- #~ msgstr "Kunde fuldført ordre e-mail "
1662
-
1663
- #~ msgid "Customer Invoice email"
1664
- #~ msgstr "Kunde faktura e-mail"
1665
-
1666
- #~ msgid "Interface"
1667
- #~ msgstr "Grænseflade"
1668
-
1669
- #~ msgid "PDF Template settings"
1670
- #~ msgstr "PDF skabelon indstillinger "
1671
-
1672
- #~ msgid "Display built-in sequential invoice number"
1673
- #~ msgstr "Vis indbygget sekventiel faktura nummer"
1674
-
1675
- #~ msgid ""
1676
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
1677
- #~ "respectively"
1678
- #~ msgstr ""
1679
- #~ "for at bruge ordre år og/eller måned, brug [order_year] eller "
1680
- #~ "[order_month]. "
1681
-
1682
- #~ msgid "Use old tmp folder"
1683
- #~ msgstr "Brug gammel tmp mappe"
1684
-
1685
- #~ msgid ""
1686
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1687
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1688
- #~ "not recommended on new installs!"
1689
- #~ msgstr ""
1690
- #~ "Før version 1.5 af PDF fakturaer blev midlertidige filer gemt i plugin "
1691
- #~ "mappen. Denne indstilling er kun beregnet til bagudkompatibilitet, "
1692
- #~ "anbefales ikke på nye installationer!"
1693
-
1694
- #~ msgid "PDF Packing Slips"
1695
- #~ msgstr "PDF følgesedler "
1696
-
1697
- #~ msgid "PDF Invoice"
1698
- #~ msgstr "PDF Faktura"
1699
-
1700
- #~ msgid "PDF Packing Slip"
1701
- #~ msgstr "PDF følgeseddel "
1702
-
1703
- #~ msgid "PDF Invoice Number (unformatted!)"
1704
- #~ msgstr "PDF faktura nummer (uformateret!)"
1705
-
1706
- #~ msgid "More advanced templates"
1707
- #~ msgstr "Flere avancerede skabeloner"
1708
-
1709
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
1710
- #~ msgstr "Stilfuldt moderne fakturaer og følgesedler med produkt- thumbnails!"
1711
-
1712
- #~ msgid "More tax details on the invoices!"
1713
- #~ msgstr "Flere moms detaljer på fakturaer!"
1714
-
1715
- #~ msgid ""
1716
- #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
1717
- #~ "extension."
1718
- #~ msgstr ""
1719
- #~ "Upload alle fakturaer automatisk til din Dropbox! <br/> Tjek denne %s "
1720
- #~ "udvidelse "
1721
-
1722
- #~ msgid ""
1723
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
1724
- #~ "Packing Slips templates at %s."
1725
- #~ msgstr ""
1726
- #~ "Leder du efter flere avancerede skabeloner? Se Premium PDF Invoice & "
1727
- #~ "Packing Slips templates ved %s."
1728
-
1729
- #~ msgid ""
1730
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1731
- #~ "<code>%s</code> to customize them"
1732
- #~ msgstr ""
1733
- #~ "Ønsker du at benytte din egen skabelon? Kopier alle filerne fra <code>%s</"
1734
- #~ "code> til <code>%s</code> for at tilpasse den"
1735
-
1736
- #~ msgid "Number to display on invoice"
1737
- #~ msgstr "Nummer der vises på fakturaen "
1738
-
1739
- #~ msgid "WooCommerce order number"
1740
- #~ msgstr "WooCommerce ordre nummer "
1741
-
1742
- #~ msgid "Built-in sequential invoice number"
1743
- #~ msgstr "Indbygget sekventiel faktura nummer"
1744
-
1745
- #~ msgid ""
1746
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
1747
- #~ "the WooCommerce order number"
1748
- #~ msgstr ""
1749
- #~ "Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
1750
- #~ "WooCommerce ordre nummer "
1751
-
1752
- #~ msgid "Date to display on invoice"
1753
- #~ msgstr "Dato der skal vises på fakturaerne "
1754
-
1755
- #~ msgid "Order date"
1756
- #~ msgstr "Ordredato"
1757
-
1758
- #~ msgid "Invoice date"
1759
- #~ msgstr "Fakturadato"
1760
-
1761
- #~ msgid "PDF invoice"
1762
- #~ msgstr "PDF faktura "
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:22-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
+ "Language: da_DK\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 3.0\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #. Plugin Name of the plugin
22
+ msgid "WooCommerce PDF Invoices & Packing Slips"
23
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
24
+
25
+ #. Plugin URI of the plugin
26
+ #. Author URI of the plugin
27
+ msgid "http://www.wpovernight.com"
28
+ msgstr "http://www.wpovernight.com"
29
+
30
+ #. Description of the plugin
31
+ msgid ""
32
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
+ msgstr ""
34
+
35
+ #. Author of the plugin
36
+ msgid "Ewout Fernhout"
37
+ msgstr ""
38
+
39
+ #. translators: rounded count
40
+ #: includes/class-wcpdf-admin.php:92
41
+ msgid "Wow, you have created more than %d invoices with our plugin!"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:93
45
+ msgid ""
46
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
+ "rating. Help us spread the word and boost our motivation!"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:95
51
+ msgid "Yes you deserve it!"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
+ #: includes/views/attachment-settings-hint.php:24
56
+ #: includes/views/wcpdf-extensions.php:131
57
+ #: woocommerce-pdf-invoices-packingslips.php:377
58
+ #: woocommerce-pdf-invoices-packingslips.php:423
59
+ msgid "Hide this message"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-admin.php:96
63
+ msgid "Already did!"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-admin.php:97
67
+ msgid "Actually, I have a complaint..."
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:132
71
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:132
75
+ msgid "Jumpstart the plugin by following our wizard!"
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:133
79
+ msgid "Run the Setup Wizard"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:133
83
+ msgid "I am the wizard"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
+ #: includes/documents/class-wcpdf-invoice.php:302
88
+ msgid "Invoice Number"
89
+ msgstr "Fakturanummer"
90
+
91
+ #: includes/class-wcpdf-admin.php:261
92
+ msgid "Send order email"
93
+ msgstr ""
94
+
95
+ #: includes/class-wcpdf-admin.php:272
96
+ msgid "Create PDF"
97
+ msgstr "Opret PDF"
98
+
99
+ #: includes/class-wcpdf-admin.php:282
100
+ msgid "PDF document data"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:304
104
+ msgid "Choose an email to send&hellip;"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-admin.php:320
108
+ msgid "Save order & send email"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:322
112
+ msgid "Send email"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
+ msgid "Invoice Number:"
118
+ msgstr "Fakturanummer:"
119
+
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
+ msgid "Invoice Date:"
123
+ msgstr "Fakturadato:"
124
+
125
+ #: includes/class-wcpdf-admin.php:384
126
+ msgid "Notes (printed in the invoice):"
127
+ msgstr ""
128
+
129
+ #. translators: document title
130
+ #: includes/class-wcpdf-admin.php:469
131
+ msgid "Set %s number & date"
132
+ msgstr ""
133
+
134
+ #: includes/class-wcpdf-admin.php:478
135
+ msgid "unformatted!"
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-admin.php:518
139
+ msgid "Save changes"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:519
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
146
+ #. translators: name/description of the context for document creation logs
147
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
+ msgid "order details (number and/or date set manually)"
149
+ msgstr ""
150
+
151
+ #. translators: %s: email title
152
+ #: includes/class-wcpdf-admin.php:647
153
+ msgid "%s email notification manually sent."
154
+ msgstr ""
155
+
156
+ #: includes/class-wcpdf-admin.php:734
157
+ msgid "Nonce expired!"
158
+ msgstr ""
159
+
160
+ #: includes/class-wcpdf-admin.php:740
161
+ msgid "Bad action!"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:746
165
+ msgid "Incomplete request!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:752
169
+ msgid "No permissions!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:776
173
+ msgid "Document data saved!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:777
177
+ msgid "An error occurred while saving the document data!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:780
181
+ msgid "Document regenerated!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:781
185
+ msgid "An error occurred while regenerating the document!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:784
189
+ msgid "Document deleted!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:785
193
+ msgid "An error occurred while deleting the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:841
197
+ msgid "Document does not exist."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:850
201
+ msgid "Document is empty."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:881
205
+ msgid "DEBUG output enabled"
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-assets.php:94
209
+ msgid "Are you sure you want to delete this document? This cannot be undone."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-assets.php:95
213
+ msgid ""
214
+ "Are you sure you want to regenerate this document? This will make the "
215
+ "document reflect the most current settings (such as footer text, document "
216
+ "name, etc.) rather than using historical settings."
217
+ msgstr ""
218
+
219
+ #: includes/class-wcpdf-frontend.php:129
220
+ msgid "Download invoice (PDF)"
221
+ msgstr "Hent faktura (PDF)"
222
+
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
+ msgid "You do not have sufficient permissions to access this page."
226
+ msgstr "Du har ikke tilstrækkelig tilladelse til at tilgå denne side."
227
+
228
+ #: includes/class-wcpdf-main.php:272
229
+ msgid "You haven't selected any orders"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-main.php:276
233
+ msgid "Some of the export parameters are missing."
234
+ msgstr "Nogle af parametrene for eksport mangler."
235
+
236
+ #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
239
+ msgstr ""
240
+
241
+ #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-main.php:604
247
+ msgid ""
248
+ "Please check your directories write permissions or contact your hosting "
249
+ "service provider."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-main.php:919
253
+ #: includes/documents/class-wcpdf-invoice.php:286
254
+ msgid "Invoice Date"
255
+ msgstr ""
256
+
257
+ #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
+ msgid "bulk order action"
260
+ msgstr ""
261
+
262
+ #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
+ msgid "single order action"
265
+ msgstr ""
266
+
267
+ #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
+ msgid "my account"
270
+ msgstr ""
271
+
272
+ #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
+ msgid "email attachment"
275
+ msgstr ""
276
+
277
+ #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
+ msgid "PDF %1$s created via %2$s."
280
+ msgstr ""
281
+
282
+ #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
+ msgid "Order %s Saved"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings-callbacks.php:27
288
+ msgid ""
289
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
+ "Do not use them on a live website!"
291
+ msgstr ""
292
+ "<b>Advarsel!</b> Indstillingerne nedenfor er kun beregnet for fejlfinding/"
293
+ "udvikling. Brug dem ikke på et live websted!"
294
+
295
+ #: includes/class-wcpdf-settings-callbacks.php:36
296
+ msgid ""
297
+ "These are used for the (optional) footer columns in the <em>Modern "
298
+ "(Premium)</em> template, but can also be used for other elements in your "
299
+ "custom template"
300
+ msgstr "Disse bruges (valgfrit)"
301
+
302
+ #: includes/class-wcpdf-settings-callbacks.php:384
303
+ msgid "Image resolution"
304
+ msgstr "Billede opløsning"
305
+
306
+ #: includes/class-wcpdf-settings-callbacks.php:411
307
+ msgid "Save"
308
+ msgstr ""
309
+
310
+ #: includes/class-wcpdf-settings-debug.php:45
311
+ #: woocommerce-pdf-invoices-packingslips.php:376
312
+ msgid "Generate random temporary folder name"
313
+ msgstr ""
314
+
315
+ #. translators: directory path
316
+ #: includes/class-wcpdf-settings-debug.php:58
317
+ msgid "Temporary folder moved to %s"
318
+ msgstr ""
319
+
320
+ #: includes/class-wcpdf-settings-debug.php:68
321
+ msgid "Reinstall fonts"
322
+ msgstr ""
323
+
324
+ #: includes/class-wcpdf-settings-debug.php:89
325
+ msgid "Fonts reinstalled!"
326
+ msgstr ""
327
+
328
+ #: includes/class-wcpdf-settings-debug.php:98
329
+ msgid "Remove temporary files"
330
+ msgstr ""
331
+
332
+ #: includes/class-wcpdf-settings-debug.php:109
333
+ msgid "Unable to read temporary folder contents!"
334
+ msgstr ""
335
+
336
+ #. translators: 1,2. file count
337
+ #: includes/class-wcpdf-settings-debug.php:127
338
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
339
+ msgstr ""
340
+
341
+ #. translators: file count
342
+ #: includes/class-wcpdf-settings-debug.php:131
343
+ msgid "Successfully deleted %d files!"
344
+ msgstr ""
345
+
346
+ #: includes/class-wcpdf-settings-debug.php:135
347
+ msgid "Nothing to delete!"
348
+ msgstr ""
349
+
350
+ #: includes/class-wcpdf-settings-debug.php:146
351
+ msgid "Delete legacy (1.X) settings"
352
+ msgstr ""
353
+
354
+ #: includes/class-wcpdf-settings-debug.php:162
355
+ msgid "Legacy settings deleted!"
356
+ msgstr ""
357
+
358
+ #: includes/class-wcpdf-settings-debug.php:192
359
+ msgid "Debug settings"
360
+ msgstr "Debug indstillinger"
361
+
362
+ #: includes/class-wcpdf-settings-debug.php:198
363
+ msgid "Legacy mode"
364
+ msgstr ""
365
+
366
+ #: includes/class-wcpdf-settings-debug.php:204
367
+ msgid ""
368
+ "Legacy mode ensures compatibility with templates and filters from previous "
369
+ "versions."
370
+ msgstr ""
371
+
372
+ #: includes/class-wcpdf-settings-debug.php:210
373
+ msgid "Legacy textdomain fallback"
374
+ msgstr ""
375
+
376
+ #: includes/class-wcpdf-settings-debug.php:216
377
+ msgid ""
378
+ "Legacy textdomain fallback ensures compatibility with translation files from "
379
+ "versions prior to 2017-05-15."
380
+ msgstr ""
381
+
382
+ #: includes/class-wcpdf-settings-debug.php:222
383
+ msgid "Allow guest access"
384
+ msgstr ""
385
+
386
+ #: includes/class-wcpdf-settings-debug.php:228
387
+ msgid ""
388
+ "Enable this to allow customers that purchase without an account to access "
389
+ "their PDF with a unique key"
390
+ msgstr ""
391
+
392
+ #: includes/class-wcpdf-settings-debug.php:234
393
+ msgid "Calculate document numbers (slow)"
394
+ msgstr ""
395
+
396
+ #: includes/class-wcpdf-settings-debug.php:240
397
+ msgid ""
398
+ "Document numbers (such as invoice numbers) are generated using "
399
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
400
+ "with more than 1."
401
+ msgstr ""
402
+
403
+ #: includes/class-wcpdf-settings-debug.php:246
404
+ msgid "Enable debug output"
405
+ msgstr "Aktiver debug output"
406
+
407
+ #: includes/class-wcpdf-settings-debug.php:252
408
+ msgid ""
409
+ "Enable this option to output plugin errors if you're getting a blank page or "
410
+ "other PDF generation issues"
411
+ msgstr ""
412
+ "Aktivér denne indstilling for output plugin fejl, hvis du får en blank side "
413
+ "eller andre PDF generations problemstillinger"
414
+
415
+ #: includes/class-wcpdf-settings-debug.php:253
416
+ msgid ""
417
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
418
+ "places on your site too, therefor this is not recommended to leave it "
419
+ "enabled on live sites."
420
+ msgstr ""
421
+
422
+ #: includes/class-wcpdf-settings-debug.php:254
423
+ msgid ""
424
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
425
+ "order basis."
426
+ msgstr ""
427
+
428
+ #: includes/class-wcpdf-settings-debug.php:260
429
+ msgid "Enable automatic cleanup"
430
+ msgstr ""
431
+
432
+ #. translators: number of days
433
+ #: includes/class-wcpdf-settings-debug.php:268
434
+ msgid "every %s days"
435
+ msgstr ""
436
+
437
+ #: includes/class-wcpdf-settings-debug.php:273
438
+ msgid ""
439
+ "Automatically clean up PDF files stored in the temporary folder (used for "
440
+ "email attachments)"
441
+ msgstr ""
442
+
443
+ #: includes/class-wcpdf-settings-debug.php:274
444
+ msgid ""
445
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
446
+ "automatic cleanup but not enabled on your server."
447
+ msgstr ""
448
+
449
+ #: includes/class-wcpdf-settings-debug.php:280
450
+ msgid "Output to HTML"
451
+ msgstr "Output til HTML"
452
+
453
+ #: includes/class-wcpdf-settings-debug.php:286
454
+ msgid ""
455
+ "Send the template output as HTML to the browser instead of creating a PDF."
456
+ msgstr ""
457
+ "Send skabelonen outputtet som HTML til browseren i stedet for at lave en PDF."
458
+
459
+ #: includes/class-wcpdf-settings-debug.php:287
460
+ msgid ""
461
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
462
+ "order basis."
463
+ msgstr ""
464
+
465
+ #: includes/class-wcpdf-settings-debug.php:293
466
+ msgid "Use alternative HTML5 parser to parse HTML"
467
+ msgstr ""
468
+
469
+ #: includes/class-wcpdf-settings-debug.php:304
470
+ msgid "Log to order notes"
471
+ msgstr ""
472
+
473
+ #: includes/class-wcpdf-settings-debug.php:310
474
+ msgid "Log PDF document creation to order notes."
475
+ msgstr ""
476
+
477
+ #: includes/class-wcpdf-settings-documents.php:30
478
+ #: includes/class-wcpdf-settings.php:104
479
+ msgid "Documents"
480
+ msgstr ""
481
+
482
+ #: includes/class-wcpdf-settings-documents.php:36
483
+ #: includes/class-wcpdf-settings-documents.php:57
484
+ msgid "untitled"
485
+ msgstr ""
486
+
487
+ #: includes/class-wcpdf-settings-documents.php:50
488
+ msgid ""
489
+ "All available documents are listed below. Click on a document to configure "
490
+ "it."
491
+ msgstr ""
492
+
493
+ #: includes/class-wcpdf-settings-general.php:40
494
+ msgid "General settings"
495
+ msgstr "Generelle indstillinger"
496
+
497
+ #: includes/class-wcpdf-settings-general.php:46
498
+ msgid "How do you want to view the PDF?"
499
+ msgstr "Hvordan ønsker du at vise PDF'en?"
500
+
501
+ #: includes/class-wcpdf-settings-general.php:53
502
+ msgid "Download the PDF"
503
+ msgstr "Hent PDF'en"
504
+
505
+ #: includes/class-wcpdf-settings-general.php:54
506
+ msgid "Open the PDF in a new browser tab/window"
507
+ msgstr "Åben PDF'en i en ny browser fane/vindue"
508
+
509
+ #: includes/class-wcpdf-settings-general.php:61
510
+ msgid "Choose a template"
511
+ msgstr "Vælg en skabelon"
512
+
513
+ #. translators: 1,2. template paths
514
+ #: includes/class-wcpdf-settings-general.php:69
515
+ msgid ""
516
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
517
+ "your (child) theme in <code>%2$s</code> to customize them"
518
+ msgstr ""
519
+
520
+ #: includes/class-wcpdf-settings-general.php:75
521
+ msgid "Paper size"
522
+ msgstr "Papir størrelse"
523
+
524
+ #: includes/class-wcpdf-settings-general.php:82
525
+ #: includes/views/setup-wizard/paper-format.php:12
526
+ msgid "A4"
527
+ msgstr "A4"
528
+
529
+ #: includes/class-wcpdf-settings-general.php:83
530
+ #: includes/views/setup-wizard/paper-format.php:13
531
+ msgid "Letter"
532
+ msgstr "Brev"
533
+
534
+ #: includes/class-wcpdf-settings-general.php:90
535
+ msgid "Test mode"
536
+ msgstr ""
537
+
538
+ #: includes/class-wcpdf-settings-general.php:96
539
+ msgid ""
540
+ "With test mode enabled, any document generated will always use the latest "
541
+ "settings, rather than using the settings as configured at the time the "
542
+ "document was first created."
543
+ msgstr ""
544
+
545
+ #: includes/class-wcpdf-settings-general.php:96
546
+ msgid ""
547
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
548
+ "setting and will still be generated."
549
+ msgstr ""
550
+
551
+ #: includes/class-wcpdf-settings-general.php:102
552
+ msgid "Extended currency symbol support"
553
+ msgstr ""
554
+
555
+ #: includes/class-wcpdf-settings-general.php:108
556
+ msgid "Enable this if your currency symbol is not displaying properly"
557
+ msgstr ""
558
+
559
+ #: includes/class-wcpdf-settings-general.php:114
560
+ msgid "Enable font subsetting"
561
+ msgstr ""
562
+
563
+ #: includes/class-wcpdf-settings-general.php:120
564
+ msgid ""
565
+ "Font subsetting can reduce file size by only including the characters that "
566
+ "are used in the PDF, but limits the ability to edit PDF files later. "
567
+ "Recommended if you're using an Asian font."
568
+ msgstr ""
569
+
570
+ #: includes/class-wcpdf-settings-general.php:126
571
+ msgid "Shop header/logo"
572
+ msgstr "Butik header/logo"
573
+
574
+ #: includes/class-wcpdf-settings-general.php:132
575
+ #: includes/views/setup-wizard/logo.php:20
576
+ msgid "Select or upload your invoice header/logo"
577
+ msgstr "Vælg eller upload dit faktura header/logo"
578
+
579
+ #: includes/class-wcpdf-settings-general.php:133
580
+ #: includes/views/setup-wizard/logo.php:20
581
+ msgid "Set image"
582
+ msgstr "Indstil billedet"
583
+
584
+ #: includes/class-wcpdf-settings-general.php:134
585
+ #: includes/views/setup-wizard/logo.php:20
586
+ msgid "Remove image"
587
+ msgstr "Fjern billede"
588
+
589
+ #: includes/class-wcpdf-settings-general.php:141
590
+ msgid "Logo height"
591
+ msgstr ""
592
+
593
+ #: includes/class-wcpdf-settings-general.php:149
594
+ msgid ""
595
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
596
+ "decimals.<br/>For example: 1.15in or 40mm"
597
+ msgstr ""
598
+
599
+ #: includes/class-wcpdf-settings-general.php:155
600
+ #: includes/class-wcpdf-setup-wizard.php:49
601
+ msgid "Shop Name"
602
+ msgstr "Butik navn"
603
+
604
+ #: includes/class-wcpdf-settings-general.php:168
605
+ msgid "Shop Address"
606
+ msgstr "Butik adresse"
607
+
608
+ #: includes/class-wcpdf-settings-general.php:183
609
+ msgid "Footer: terms & conditions, policies, etc."
610
+ msgstr "Sidefod: Vilkår & betingelser, politikker mm."
611
+
612
+ #: includes/class-wcpdf-settings-general.php:198
613
+ msgid "Extra template fields"
614
+ msgstr "Ekstra skabelons felter"
615
+
616
+ #: includes/class-wcpdf-settings-general.php:204
617
+ msgid "Extra field 1"
618
+ msgstr "Ekstra felt 1"
619
+
620
+ #: includes/class-wcpdf-settings-general.php:212
621
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
622
+ msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen"
623
+
624
+ #: includes/class-wcpdf-settings-general.php:219
625
+ msgid "Extra field 2"
626
+ msgstr "Ekstra felt 2"
627
+
628
+ #: includes/class-wcpdf-settings-general.php:227
629
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
630
+ msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen"
631
+
632
+ #: includes/class-wcpdf-settings-general.php:234
633
+ msgid "Extra field 3"
634
+ msgstr "Ekstra felt 3"
635
+
636
+ #: includes/class-wcpdf-settings-general.php:242
637
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
638
+ msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen"
639
+
640
+ #: includes/class-wcpdf-settings-general.php:290
641
+ msgid "Custom"
642
+ msgstr ""
643
+
644
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
645
+ msgid "PDF Invoices"
646
+ msgstr "PDF fakturaer"
647
+
648
+ #: includes/class-wcpdf-settings.php:81
649
+ msgid "Documentation"
650
+ msgstr ""
651
+
652
+ #: includes/class-wcpdf-settings.php:82
653
+ msgid "Support Forum"
654
+ msgstr ""
655
+
656
+ #. translators: database row value
657
+ #: includes/class-wcpdf-settings.php:95
658
+ msgid ""
659
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
660
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
661
+ "document numbers (slow)' setting in the Status tab to use an alternate "
662
+ "method."
663
+ msgstr ""
664
+
665
+ #: includes/class-wcpdf-settings.php:103
666
+ msgid "General"
667
+ msgstr "Generelt"
668
+
669
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
670
+ msgid "Status"
671
+ msgstr "Status"
672
+
673
+ #. translators: 1. path, 2. template ID
674
+ #: includes/class-wcpdf-settings.php:396
675
+ msgid "Template setting migrated from %1$s to %2$s"
676
+ msgstr ""
677
+
678
+ #: includes/class-wcpdf-setup-wizard.php:53
679
+ #: includes/views/setup-wizard/logo.php:3
680
+ msgid "Your logo"
681
+ msgstr ""
682
+
683
+ #: includes/class-wcpdf-setup-wizard.php:57
684
+ msgid "Attachments"
685
+ msgstr ""
686
+
687
+ #: includes/class-wcpdf-setup-wizard.php:61
688
+ #: includes/views/setup-wizard/display-options.php:3
689
+ msgid "Display options"
690
+ msgstr ""
691
+
692
+ #: includes/class-wcpdf-setup-wizard.php:65
693
+ #: includes/views/setup-wizard/paper-format.php:3
694
+ msgid "Paper format"
695
+ msgstr ""
696
+
697
+ #: includes/class-wcpdf-setup-wizard.php:69
698
+ #: includes/views/setup-wizard/show-action-buttons.php:3
699
+ msgid "Action buttons"
700
+ msgstr ""
701
+
702
+ #: includes/class-wcpdf-setup-wizard.php:73
703
+ msgid "Ready!"
704
+ msgstr ""
705
+
706
+ #: includes/class-wcpdf-setup-wizard.php:135
707
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
708
+ msgstr ""
709
+
710
+ #: includes/class-wcpdf-setup-wizard.php:187
711
+ msgid "Previous"
712
+ msgstr ""
713
+
714
+ #: includes/class-wcpdf-setup-wizard.php:192
715
+ msgid "Next"
716
+ msgstr ""
717
+
718
+ #: includes/class-wcpdf-setup-wizard.php:193
719
+ msgid "Skip this step"
720
+ msgstr ""
721
+
722
+ #: includes/class-wcpdf-setup-wizard.php:195
723
+ msgid "Finish"
724
+ msgstr ""
725
+
726
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
727
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
728
+ msgid "N/A"
729
+ msgstr "N/A"
730
+
731
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
732
+ msgid "Payment method"
733
+ msgstr "Betaling"
734
+
735
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
736
+ msgid "Shipping method"
737
+ msgstr "Fragt"
738
+
739
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
740
+ msgid "Subtotal"
741
+ msgstr "Subtotal"
742
+
743
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
744
+ msgid "Shipping"
745
+ msgstr "Fragt"
746
+
747
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
748
+ msgid "Discount"
749
+ msgstr "Rabat"
750
+
751
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
752
+ msgid "VAT"
753
+ msgstr "Moms"
754
+
755
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
756
+ msgid "Tax rate"
757
+ msgstr "Moms"
758
+
759
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
760
+ msgid "Total ex. VAT"
761
+ msgstr "Total ex. moms"
762
+
763
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
764
+ msgid "Total"
765
+ msgstr "Total"
766
+
767
+ #. translators: 1. credit note title, 2. refund id
768
+ #: includes/documents/abstract-wcpdf-order-document.php:336
769
+ msgid "%1$s (refund #%2$s) was regenerated."
770
+ msgstr ""
771
+
772
+ #. translators: 1. credit note title, 2. refund id
773
+ #: includes/documents/abstract-wcpdf-order-document.php:336
774
+ msgid "%s was regenerated"
775
+ msgstr ""
776
+
777
+ #. translators: %s: document name
778
+ #: includes/documents/abstract-wcpdf-order-document.php:422
779
+ msgid "%s Number:"
780
+ msgstr ""
781
+
782
+ #. translators: %s: document name
783
+ #: includes/documents/abstract-wcpdf-order-document.php:428
784
+ msgid "%s Date:"
785
+ msgstr ""
786
+
787
+ #: includes/documents/abstract-wcpdf-order-document.php:904
788
+ msgid "Admin email"
789
+ msgstr ""
790
+
791
+ #: includes/documents/abstract-wcpdf-order-document.php:907
792
+ msgid "Manual email"
793
+ msgstr ""
794
+
795
+ #: includes/documents/class-wcpdf-invoice.php:32
796
+ #: includes/documents/class-wcpdf-invoice.php:56
797
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
798
+ msgid "Invoice"
799
+ msgstr "Faktura"
800
+
801
+ # This is a filename (prefix). do not use spaces or special characters!
802
+ #: includes/documents/class-wcpdf-invoice.php:131
803
+ msgid "invoice"
804
+ msgid_plural "invoices"
805
+ msgstr[0] "faktura"
806
+ msgstr[1] "fakturaen"
807
+
808
+ #: includes/documents/class-wcpdf-invoice.php:186
809
+ #: includes/documents/class-wcpdf-packing-slip.php:88
810
+ msgid "Enable"
811
+ msgstr ""
812
+
813
+ #: includes/documents/class-wcpdf-invoice.php:197
814
+ msgid "Attach to:"
815
+ msgstr ""
816
+
817
+ #. translators: directory path
818
+ #: includes/documents/class-wcpdf-invoice.php:205
819
+ msgid ""
820
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
821
+ "permissions for this folder! Without having write access to this folder, the "
822
+ "plugin will not be able to email invoices."
823
+ msgstr ""
824
+ "Det ser ud som om at skabelon mappen (<code>%s</code>) ikke er skrivebar, "
825
+ "kontrollere adgangskravene for denne mappe. Uden at have adgang til at "
826
+ "redigere i mappen, vil dette plugin ikke være i stand til at sende e-mails "
827
+ "med fakturaer."
828
+
829
+ #: includes/documents/class-wcpdf-invoice.php:211
830
+ msgid "Disable for:"
831
+ msgstr ""
832
+
833
+ #: includes/documents/class-wcpdf-invoice.php:220
834
+ msgid "Select one or more statuses"
835
+ msgstr ""
836
+
837
+ #: includes/documents/class-wcpdf-invoice.php:226
838
+ #: includes/views/setup-wizard/display-options.php:17
839
+ msgid "Display shipping address"
840
+ msgstr "Vis leveringsadresse"
841
+
842
+ #: includes/documents/class-wcpdf-invoice.php:233
843
+ #: includes/documents/class-wcpdf-invoice.php:285
844
+ #: includes/documents/class-wcpdf-invoice.php:301
845
+ #: includes/documents/class-wcpdf-packing-slip.php:106
846
+ msgid "No"
847
+ msgstr ""
848
+
849
+ #: includes/documents/class-wcpdf-invoice.php:234
850
+ msgid "Only when different from billing address"
851
+ msgstr ""
852
+
853
+ #: includes/documents/class-wcpdf-invoice.php:235
854
+ #: includes/documents/class-wcpdf-invoice.php:378
855
+ #: includes/documents/class-wcpdf-packing-slip.php:108
856
+ msgid "Always"
857
+ msgstr "Altid"
858
+
859
+ #: includes/documents/class-wcpdf-invoice.php:243
860
+ #: includes/documents/class-wcpdf-packing-slip.php:116
861
+ #: includes/views/setup-wizard/display-options.php:26
862
+ msgid "Display email address"
863
+ msgstr "Vis email adresse"
864
+
865
+ #: includes/documents/class-wcpdf-invoice.php:254
866
+ #: includes/documents/class-wcpdf-packing-slip.php:127
867
+ #: includes/views/setup-wizard/display-options.php:35
868
+ msgid "Display phone number"
869
+ msgstr "Vis telefon nummer"
870
+
871
+ #: includes/documents/class-wcpdf-invoice.php:265
872
+ #: includes/documents/class-wcpdf-packing-slip.php:138
873
+ msgid "Display customer notes"
874
+ msgstr ""
875
+
876
+ #: includes/documents/class-wcpdf-invoice.php:278
877
+ #: includes/views/setup-wizard/display-options.php:44
878
+ msgid "Display invoice date"
879
+ msgstr "Vis faktura dato"
880
+
881
+ #: includes/documents/class-wcpdf-invoice.php:287
882
+ msgid "Order Date"
883
+ msgstr ""
884
+
885
+ #: includes/documents/class-wcpdf-invoice.php:294
886
+ #: includes/views/setup-wizard/display-options.php:53
887
+ msgid "Display invoice number"
888
+ msgstr ""
889
+
890
+ #: includes/documents/class-wcpdf-invoice.php:303
891
+ msgid "Order Number"
892
+ msgstr ""
893
+
894
+ #: includes/documents/class-wcpdf-invoice.php:307
895
+ msgid "Warning!"
896
+ msgstr ""
897
+
898
+ #: includes/documents/class-wcpdf-invoice.php:308
899
+ msgid ""
900
+ "Using the Order Number as invoice number is not recommended as this may lead "
901
+ "to gaps in the invoice number sequence (even when order numbers are "
902
+ "sequential)."
903
+ msgstr ""
904
+
905
+ #: includes/documents/class-wcpdf-invoice.php:309
906
+ msgid "More information"
907
+ msgstr ""
908
+
909
+ #: includes/documents/class-wcpdf-invoice.php:316
910
+ msgid "Next invoice number (without prefix/suffix etc.)"
911
+ msgstr "Næste faktura nummer (uden prefix/suffix mm.)"
912
+
913
+ #: includes/documents/class-wcpdf-invoice.php:322
914
+ msgid ""
915
+ "This is the number that will be used for the next document. By default, "
916
+ "numbering starts from 1 and increases for every new document. Note that if "
917
+ "you override this and set it lower than the current/highest number, this "
918
+ "could create duplicate numbers!"
919
+ msgstr ""
920
+
921
+ #: includes/documents/class-wcpdf-invoice.php:328
922
+ msgid "Number format"
923
+ msgstr ""
924
+
925
+ #: includes/documents/class-wcpdf-invoice.php:336
926
+ msgid "Prefix"
927
+ msgstr "Prefix"
928
+
929
+ #: includes/documents/class-wcpdf-invoice.php:338
930
+ msgid ""
931
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
932
+ "respectively"
933
+ msgstr ""
934
+
935
+ #: includes/documents/class-wcpdf-invoice.php:341
936
+ msgid "Suffix"
937
+ msgstr "Suffix"
938
+
939
+ #: includes/documents/class-wcpdf-invoice.php:346
940
+ msgid "Padding"
941
+ msgstr "Padding"
942
+
943
+ #: includes/documents/class-wcpdf-invoice.php:349
944
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
945
+ msgstr ""
946
+ "indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 000042"
947
+
948
+ #: includes/documents/class-wcpdf-invoice.php:352
949
+ msgid ""
950
+ "note: if you have already created a custom invoice number format with a "
951
+ "filter, the above settings will be ignored"
952
+ msgstr ""
953
+ "Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
954
+ "format med et filter, så vil denne indstillingen ovenover blive ignoreret"
955
+
956
+ #: includes/documents/class-wcpdf-invoice.php:358
957
+ msgid "Reset invoice number yearly"
958
+ msgstr ""
959
+
960
+ #: includes/documents/class-wcpdf-invoice.php:369
961
+ msgid "Allow My Account invoice download"
962
+ msgstr "Tillad at downloade faktura via min konto"
963
+
964
+ #: includes/documents/class-wcpdf-invoice.php:376
965
+ msgid "Only when an invoice is already created/emailed"
966
+ msgstr "Kun når en faktura allerede er oprettet/sendt på mail"
967
+
968
+ #: includes/documents/class-wcpdf-invoice.php:377
969
+ msgid "Only for specific order statuses (define below)"
970
+ msgstr "Kun for specifikke ordre statusser (Definer nedenfor)"
971
+
972
+ #: includes/documents/class-wcpdf-invoice.php:379
973
+ msgid "Never"
974
+ msgstr ""
975
+
976
+ #: includes/documents/class-wcpdf-invoice.php:394
977
+ msgid "Enable invoice number column in the orders list"
978
+ msgstr "Aktiver faktura nummer kolonne i ordre listen"
979
+
980
+ #: includes/documents/class-wcpdf-invoice.php:405
981
+ msgid "Disable for free orders"
982
+ msgstr ""
983
+
984
+ #. translators: zero number
985
+ #: includes/documents/class-wcpdf-invoice.php:412
986
+ msgid "Disable document when the order total is %s"
987
+ msgstr ""
988
+
989
+ #: includes/documents/class-wcpdf-invoice.php:418
990
+ msgid "Always use most current settings"
991
+ msgstr ""
992
+
993
+ #: includes/documents/class-wcpdf-invoice.php:424
994
+ msgid ""
995
+ "When enabled, the document will always reflect the most current settings "
996
+ "(such as footer text, document name, etc.) rather than using historical "
997
+ "settings."
998
+ msgstr ""
999
+
1000
+ #: includes/documents/class-wcpdf-invoice.php:426
1001
+ msgid ""
1002
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1003
+ "your company name or address in the future, previously generated documents "
1004
+ "will also be affected."
1005
+ msgstr ""
1006
+
1007
+ #: includes/documents/class-wcpdf-invoice.php:439
1008
+ msgid "Invoice numbers are created by a third-party extension."
1009
+ msgstr ""
1010
+
1011
+ #. translators: link
1012
+ #: includes/documents/class-wcpdf-invoice.php:442
1013
+ msgid "Configure it <a href=\"%s\">here</a>."
1014
+ msgstr ""
1015
+
1016
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1017
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1018
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1019
+ msgid "Packing Slip"
1020
+ msgstr "Følgeseddel"
1021
+
1022
+ # This is a filename (prefix). do not use spaces or special characters!
1023
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1024
+ msgid "packing-slip"
1025
+ msgid_plural "packing-slips"
1026
+ msgstr[0] "følgeseddel"
1027
+ msgstr[1] "følgesedler"
1028
+
1029
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1030
+ msgid "Display billing address"
1031
+ msgstr "Vis leveringsadresse"
1032
+
1033
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1034
+ msgid "Only when different from shipping address"
1035
+ msgstr ""
1036
+
1037
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1038
+ msgid "Packing Slip Number:"
1039
+ msgstr ""
1040
+
1041
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1042
+ msgid "Packing Slip Date:"
1043
+ msgstr ""
1044
+
1045
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1046
+ msgid "Legacy Document"
1047
+ msgstr ""
1048
+
1049
+ #: includes/legacy/class-wcpdf-legacy.php:72
1050
+ msgid "Error"
1051
+ msgstr ""
1052
+
1053
+ #: includes/legacy/class-wcpdf-legacy.php:73
1054
+ msgid ""
1055
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1056
+ "mode has been activated, please try again by reloading this page."
1057
+ msgstr ""
1058
+
1059
+ #: includes/legacy/class-wcpdf-legacy.php:76
1060
+ msgid "The following function was called"
1061
+ msgstr ""
1062
+
1063
+ #. translators: <a> tags
1064
+ #: includes/views/attachment-settings-hint.php:23
1065
+ msgid ""
1066
+ "It looks like you haven't setup any email attachments yet, check the "
1067
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1068
+ msgstr ""
1069
+
1070
+ #: includes/views/dompdf-status.php:11
1071
+ msgid "7.1+ (7.4 or higher recommended)"
1072
+ msgstr ""
1073
+
1074
+ #: includes/views/dompdf-status.php:24
1075
+ msgid "Recommended, will use fallback functions"
1076
+ msgstr ""
1077
+
1078
+ #: includes/views/dompdf-status.php:30
1079
+ msgid "Required if you have images in your documents"
1080
+ msgstr ""
1081
+
1082
+ #: includes/views/dompdf-status.php:39
1083
+ msgid "To compress PDF documents"
1084
+ msgstr ""
1085
+
1086
+ #: includes/views/dompdf-status.php:42
1087
+ msgid "Recommended to compress PDF documents"
1088
+ msgstr ""
1089
+
1090
+ #: includes/views/dompdf-status.php:45
1091
+ msgid "For better performances"
1092
+ msgstr ""
1093
+
1094
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1095
+ msgid "Recommended for better performances"
1096
+ msgstr ""
1097
+
1098
+ #: includes/views/dompdf-status.php:51
1099
+ msgid "Better with transparent PNG images"
1100
+ msgstr ""
1101
+
1102
+ #: includes/views/dompdf-status.php:57
1103
+ msgid ""
1104
+ "Required to detect custom templates and to clear the temp folder periodically"
1105
+ msgstr ""
1106
+
1107
+ #: includes/views/dompdf-status.php:60
1108
+ msgid "Check PHP disable_functions"
1109
+ msgstr ""
1110
+
1111
+ #. translators: <a> tags
1112
+ #: includes/views/dompdf-status.php:64
1113
+ msgid ""
1114
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1115
+ "WordPress Memory Limit%2$s"
1116
+ msgstr ""
1117
+
1118
+ #: includes/views/dompdf-status.php:69
1119
+ msgid "Allow remote stylesheets and images"
1120
+ msgstr ""
1121
+
1122
+ #: includes/views/dompdf-status.php:72
1123
+ msgid "allow_url_fopen disabled"
1124
+ msgstr ""
1125
+
1126
+ #: includes/views/dompdf-status.php:75
1127
+ msgid "To compress and decompress font data"
1128
+ msgstr ""
1129
+
1130
+ #: includes/views/dompdf-status.php:78
1131
+ msgid "base64_decode disabled"
1132
+ msgstr ""
1133
+
1134
+ #. translators: <a> tags
1135
+ #: includes/views/dompdf-status.php:98
1136
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1137
+ msgstr ""
1138
+
1139
+ #: includes/views/dompdf-status.php:103
1140
+ msgid "System Configuration"
1141
+ msgstr ""
1142
+
1143
+ #: includes/views/dompdf-status.php:108
1144
+ msgid "Required"
1145
+ msgstr ""
1146
+
1147
+ #: includes/views/dompdf-status.php:109
1148
+ msgid "Present"
1149
+ msgstr ""
1150
+
1151
+ #: includes/views/dompdf-status.php:148
1152
+ msgid "Writable"
1153
+ msgstr ""
1154
+
1155
+ #: includes/views/dompdf-status.php:149
1156
+ msgid "Not writable"
1157
+ msgstr ""
1158
+
1159
+ #: includes/views/dompdf-status.php:154
1160
+ msgid "Central temporary plugin folder"
1161
+ msgstr ""
1162
+
1163
+ #: includes/views/dompdf-status.php:160
1164
+ msgid "Temporary attachments folder"
1165
+ msgstr ""
1166
+
1167
+ #: includes/views/dompdf-status.php:166
1168
+ msgid "Temporary DOMPDF folder"
1169
+ msgstr ""
1170
+
1171
+ #: includes/views/dompdf-status.php:172
1172
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1173
+ msgstr ""
1174
+
1175
+ #: includes/views/dompdf-status.php:183
1176
+ msgid "Write Permissions"
1177
+ msgstr ""
1178
+
1179
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1180
+ #: templates/Simple/packing-slip.php:88
1181
+ msgid "Description"
1182
+ msgstr "Beskrivelse"
1183
+
1184
+ #: includes/views/dompdf-status.php:187
1185
+ msgid "Value"
1186
+ msgstr ""
1187
+
1188
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1189
+ #: includes/views/dompdf-status.php:213
1190
+ msgid ""
1191
+ "The central temp folder is %1$s. By default, this folder is created in the "
1192
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1193
+ "config.php. Alternatively, you can control the specific folder for PDF "
1194
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1195
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1196
+ "by the plugin if the central temp folder is writable)."
1197
+ msgstr ""
1198
+
1199
+ #. translators: directory path
1200
+ #: includes/views/dompdf-status.php:226
1201
+ msgid ""
1202
+ "If the temporary folders were not automatically created by the plugin, "
1203
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1204
+ "Normally, this is fully automated, but if your server has strict security "
1205
+ "settings, this automated copying may have been prohibited. In that case, you "
1206
+ "also need to make sure these folders get synchronized on plugin updates!"
1207
+ msgstr ""
1208
+
1209
+ #: includes/views/setup-wizard/attach-to.php:3
1210
+ msgid "Attach too..."
1211
+ msgstr ""
1212
+
1213
+ #: includes/views/setup-wizard/attach-to.php:4
1214
+ msgid "Select to which emails you would like to attach your invoice."
1215
+ msgstr ""
1216
+
1217
+ #: includes/views/setup-wizard/display-options.php:4
1218
+ msgid "Select some additional display options for your invoice."
1219
+ msgstr ""
1220
+
1221
+ #: includes/views/setup-wizard/good-to-go.php:3
1222
+ msgid "You are good to go!"
1223
+ msgstr ""
1224
+
1225
+ #: includes/views/setup-wizard/good-to-go.php:4
1226
+ msgid "If you have any questions please have a look at our documentation:"
1227
+ msgstr ""
1228
+
1229
+ #: includes/views/setup-wizard/good-to-go.php:5
1230
+ msgid "Invoices & Packing Slips"
1231
+ msgstr ""
1232
+
1233
+ #: includes/views/setup-wizard/good-to-go.php:6
1234
+ msgid "Happy selling!"
1235
+ msgstr ""
1236
+
1237
+ #: includes/views/setup-wizard/logo.php:4
1238
+ msgid "Set the header image that will display on your invoice."
1239
+ msgstr ""
1240
+
1241
+ #: includes/views/setup-wizard/paper-format.php:4
1242
+ msgid "Select the paper format for your invoice."
1243
+ msgstr ""
1244
+
1245
+ #: includes/views/setup-wizard/shop-name.php:3
1246
+ msgid "Enter your shop name"
1247
+ msgstr ""
1248
+
1249
+ #: includes/views/setup-wizard/shop-name.php:4
1250
+ msgid ""
1251
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1252
+ "shop in the fields on the right."
1253
+ msgstr ""
1254
+
1255
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1256
+ msgid ""
1257
+ "Would you like to display the action buttons in your WooCommerce order list? "
1258
+ "The action buttons allow you to manually create a PDF."
1259
+ msgstr ""
1260
+
1261
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1262
+ msgid "(You can always change this setting later via the Screen Options menu)"
1263
+ msgstr ""
1264
+
1265
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1266
+ msgid "Show action buttons"
1267
+ msgstr ""
1268
+
1269
+ #: includes/views/wcpdf-extensions.php:16
1270
+ msgid "Check out these premium extensions!"
1271
+ msgstr "Tjek disse Premium tilføjelser!"
1272
+
1273
+ #: includes/views/wcpdf-extensions.php:17
1274
+ msgid "click items to read more"
1275
+ msgstr "klik på elementer for at læse mere"
1276
+
1277
+ #: includes/views/wcpdf-extensions.php:22
1278
+ msgid ""
1279
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1280
+ "system"
1281
+ msgstr ""
1282
+
1283
+ #: includes/views/wcpdf-extensions.php:24
1284
+ msgid ""
1285
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1286
+ "premium extensions:"
1287
+ msgstr ""
1288
+
1289
+ #: includes/views/wcpdf-extensions.php:25
1290
+ msgid "Professional features:"
1291
+ msgstr ""
1292
+
1293
+ #: includes/views/wcpdf-extensions.php:27
1294
+ #: includes/views/wcpdf-extensions.php:57
1295
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1296
+ msgstr "E-mail/print/download <b>PDF kreditnotaer & Proforma fakturaer</b>"
1297
+
1298
+ #: includes/views/wcpdf-extensions.php:28
1299
+ #: includes/views/wcpdf-extensions.php:58
1300
+ msgid ""
1301
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1302
+ "packing slips, for example to a drop-shipper or a supplier."
1303
+ msgstr ""
1304
+ "Send en separat <b>e-mail</b> med (eller uden) PDF fakturaer/følgesedler, "
1305
+ "for eksempel til en fragtmand eller en leverandør."
1306
+
1307
+ #: includes/views/wcpdf-extensions.php:29
1308
+ #: includes/views/wcpdf-extensions.php:59
1309
+ msgid ""
1310
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1311
+ "document) to the WooCommerce emails of your choice."
1312
+ msgstr ""
1313
+ "Vedhæft <b>op til 3 statiske filer</b> (f.eks. en vilkår & betingelser-"
1314
+ "dokument) til WooCommerce e-mails efter dit valg."
1315
+
1316
+ #: includes/views/wcpdf-extensions.php:30
1317
+ #: includes/views/wcpdf-extensions.php:60
1318
+ msgid ""
1319
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1320
+ "and credit notes or utilize the main invoice numbering system"
1321
+ msgstr ""
1322
+ "Brug et <b>separat nummererings system</b> og/eller format for proforma "
1323
+ "fakturaer og kreditnotaer eller anvend de vigtigste faktura nummerering "
1324
+ "system"
1325
+
1326
+ #: includes/views/wcpdf-extensions.php:31
1327
+ #: includes/views/wcpdf-extensions.php:61
1328
+ msgid ""
1329
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1330
+ "additional custom fields, font sizes etc. without the need to create a "
1331
+ "custom template."
1332
+ msgstr ""
1333
+ "<b>Tilpas</b> <b>levering & fakturerings adresse</b> format til at medtage "
1334
+ "brugerdefinerede felter, skriftstørrelser osv uden at skulle oprette en "
1335
+ "brugerdefineret skabelon."
1336
+
1337
+ #: includes/views/wcpdf-extensions.php:32
1338
+ #: includes/views/wcpdf-extensions.php:62
1339
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1340
+ msgstr "Brug dette plugin i flersprogede <b>WPML</b> opsætninger"
1341
+
1342
+ #: includes/views/wcpdf-extensions.php:34
1343
+ #: includes/views/wcpdf-extensions.php:114
1344
+ msgid "Advanced, customizable templates"
1345
+ msgstr ""
1346
+
1347
+ #: includes/views/wcpdf-extensions.php:36
1348
+ #: includes/views/wcpdf-extensions.php:117
1349
+ msgid ""
1350
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1351
+ "your needs with a drag & drop customizer"
1352
+ msgstr ""
1353
+
1354
+ #: includes/views/wcpdf-extensions.php:37
1355
+ #: includes/views/wcpdf-extensions.php:118
1356
+ msgid "Two extra stylish premade templates (Modern & Business)"
1357
+ msgstr ""
1358
+
1359
+ #: includes/views/wcpdf-extensions.php:39
1360
+ #: includes/views/wcpdf-extensions.php:63
1361
+ msgid "Upload automatically to dropbox"
1362
+ msgstr ""
1363
+
1364
+ #: includes/views/wcpdf-extensions.php:41
1365
+ msgid ""
1366
+ "This extension conveniently uploads all the invoices (and other pdf "
1367
+ "documents from the professional extension) that are emailed to your "
1368
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1369
+ "date!"
1370
+ msgstr ""
1371
+ "Denne udvidelse uploader alle fakturaer (og andre PDF-dokumenter fra den "
1372
+ "professionelle udvidelse), der er sendt til din kunder til Dropbox. Den "
1373
+ "bedste måde at holde din faktura administration opdateret!"
1374
+
1375
+ #: includes/views/wcpdf-extensions.php:44
1376
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1377
+ msgstr ""
1378
+
1379
+ #: includes/views/wcpdf-extensions.php:53
1380
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1381
+ msgstr "Go Pro: Proforma fakturaer, kreditnotaer (=tilbagebetaling) og mere!"
1382
+
1383
+ #: includes/views/wcpdf-extensions.php:55
1384
+ msgid ""
1385
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1386
+ "features:"
1387
+ msgstr ""
1388
+ "Opgrader WooCommerce PDF-fakturaer & følgesedler med følgende funktioner:"
1389
+
1390
+ #: includes/views/wcpdf-extensions.php:65
1391
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1392
+ msgstr " WooCommerce PDF-fakturaer & følgesedler Professional!"
1393
+
1394
+ #: includes/views/wcpdf-extensions.php:73
1395
+ msgid "Automatically send payment reminders to your customers"
1396
+ msgstr ""
1397
+
1398
+ #: includes/views/wcpdf-extensions.php:75
1399
+ msgid "WooCommerce Smart Reminder emails"
1400
+ msgstr ""
1401
+
1402
+ #: includes/views/wcpdf-extensions.php:77
1403
+ msgid "<b>Completely automatic</b> scheduled emails"
1404
+ msgstr ""
1405
+
1406
+ #: includes/views/wcpdf-extensions.php:78
1407
+ msgid ""
1408
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1409
+ "from the order (name, order total, etc)"
1410
+ msgstr ""
1411
+
1412
+ #: includes/views/wcpdf-extensions.php:79
1413
+ msgid ""
1414
+ "Configure the exact requirements for sending an email (time after order, "
1415
+ "order status, payment method)"
1416
+ msgstr ""
1417
+
1418
+ #: includes/views/wcpdf-extensions.php:80
1419
+ msgid ""
1420
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1421
+ "order language."
1422
+ msgstr ""
1423
+
1424
+ #: includes/views/wcpdf-extensions.php:81
1425
+ msgid ""
1426
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1427
+ "reminders, repeat purchases)"
1428
+ msgstr ""
1429
+
1430
+ #: includes/views/wcpdf-extensions.php:82
1431
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1432
+ msgstr ""
1433
+
1434
+ #: includes/views/wcpdf-extensions.php:84
1435
+ msgid "Get WooCommerce Smart Reminder Emails"
1436
+ msgstr ""
1437
+
1438
+ #: includes/views/wcpdf-extensions.php:93
1439
+ msgid ""
1440
+ "Automatically send new orders or packing slips to your printer, as soon as "
1441
+ "the customer orders!"
1442
+ msgstr ""
1443
+ "Send automatisk nye ordrer eller pakkesedler til din printer, snart "
1444
+ "kunden bestiller!"
1445
+
1446
+ #: includes/views/wcpdf-extensions.php:99
1447
+ msgid ""
1448
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1449
+ "partners at Simba Hosting"
1450
+ msgstr ""
1451
+ "Tjek WooCommerce Automatisk ordre udskrft udvidelse ud fra vores partnere på "
1452
+ "Simba Hosting"
1453
+
1454
+ #: includes/views/wcpdf-extensions.php:100
1455
+ msgid "WooCommerce Automatic Order Printing"
1456
+ msgstr "WooCommerce automatisk ordre udskrift"
1457
+
1458
+ #. translators: Premium Templates link
1459
+ #: includes/views/wcpdf-extensions.php:120
1460
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1461
+ msgstr "Se Premium PDF faktura & pakkesedler skabeloner på %s."
1462
+
1463
+ #. translators: email link
1464
+ #: includes/views/wcpdf-extensions.php:122
1465
+ msgid "For custom templates, contact us at %s."
1466
+ msgstr "For brugerdefinerede skabeloner, kontakt os på %s."
1467
+
1468
+ #: includes/views/wcpdf-settings-page.php:9
1469
+ msgid "WooCommerce PDF Invoices"
1470
+ msgstr "WooCommerce PDF faktura"
1471
+
1472
+ #: includes/wcpdf-functions.php:209
1473
+ msgid "Error creating PDF, please contact the site owner."
1474
+ msgstr ""
1475
+
1476
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1477
+ msgid "Billing Address:"
1478
+ msgstr "Faktureringsadresse:"
1479
+
1480
+ #: templates/Simple/invoice.php:48
1481
+ msgid "Ship To:"
1482
+ msgstr "Leveringsadresse:"
1483
+
1484
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1485
+ msgid "Order Number:"
1486
+ msgstr "Ordrenummer:"
1487
+
1488
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1489
+ msgid "Order Date:"
1490
+ msgstr "Ordredato:"
1491
+
1492
+ #: templates/Simple/invoice.php:78
1493
+ msgid "Payment Method:"
1494
+ msgstr "Betaling:"
1495
+
1496
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1497
+ msgid "Product"
1498
+ msgstr "Produkt"
1499
+
1500
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1501
+ msgid "Quantity"
1502
+ msgstr "Antal"
1503
+
1504
+ #: templates/Simple/invoice.php:94
1505
+ msgid "Price"
1506
+ msgstr "Pris"
1507
+
1508
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1509
+ msgid "SKU"
1510
+ msgstr "Varenummer"
1511
+
1512
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1513
+ msgid "SKU:"
1514
+ msgstr "Varenummer:"
1515
+
1516
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1517
+ msgid "Weight:"
1518
+ msgstr "Vægt:"
1519
+
1520
+ #: templates/Simple/invoice.php:123
1521
+ msgid "Notes"
1522
+ msgstr ""
1523
+
1524
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1525
+ msgid "Customer Notes"
1526
+ msgstr "Kunde bemærkning"
1527
+
1528
+ #: templates/Simple/packing-slip.php:35
1529
+ msgid "Shipping Address:"
1530
+ msgstr "Leveringsadresse:"
1531
+
1532
+ #: templates/Simple/packing-slip.php:66
1533
+ msgid "Shipping Method:"
1534
+ msgstr "Leveringsmetode:"
1535
+
1536
+ #. translators: <a> tags
1537
+ #: woocommerce-pdf-invoices-packingslips.php:271
1538
+ msgid ""
1539
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1540
+ "installed & activated!"
1541
+ msgstr ""
1542
+
1543
+ #: woocommerce-pdf-invoices-packingslips.php:282
1544
+ msgid ""
1545
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1546
+ "recommended)."
1547
+ msgstr ""
1548
+
1549
+ #. translators: <a> tags
1550
+ #: woocommerce-pdf-invoices-packingslips.php:284
1551
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1552
+ msgstr ""
1553
+
1554
+ #. translators: <a> tags
1555
+ #: woocommerce-pdf-invoices-packingslips.php:286
1556
+ msgid ""
1557
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1558
+ "to enable backwards compatibility with PHP5.6."
1559
+ msgstr ""
1560
+
1561
+ #. translators: directory path
1562
+ #: woocommerce-pdf-invoices-packingslips.php:374
1563
+ msgid ""
1564
+ "The PDF files in %s are not currently protected due to your site running on "
1565
+ "<strong>NGINX</strong>."
1566
+ msgstr ""
1567
+
1568
+ #: woocommerce-pdf-invoices-packingslips.php:375
1569
+ msgid "To protect them, you must click the button below."
1570
+ msgstr ""
1571
+
1572
+ #. translators: plugin name
1573
+ #: woocommerce-pdf-invoices-packingslips.php:419
1574
+ msgid ""
1575
+ "When sending emails with MailPoet 3 and the active sending method is "
1576
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1577
+ "the emails."
1578
+ msgstr ""
1579
+
1580
+ #. translators: "Your web host / web server"
1581
+ #: woocommerce-pdf-invoices-packingslips.php:421
1582
+ msgid "To fix this you should select other method like %1$s or %2$s."
1583
+ msgstr ""
1584
+
1585
+ #. translators: "Your web host / web server"
1586
+ #: woocommerce-pdf-invoices-packingslips.php:421
1587
+ msgid "Your web host / web server"
1588
+ msgstr ""
1589
+
1590
+ #: woocommerce-pdf-invoices-packingslips.php:422
1591
+ msgid "Change MailPoet sending method"
1592
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-de_DE.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-de_DE.po CHANGED
@@ -1,1745 +1,1631 @@
1
- # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in German
2
- # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
- "Stable (latest release)\n"
7
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
8
- "invoices-packing-slips\n"
9
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
10
- "PO-Revision-Date: 2021-07-26 17:18+0200\n"
11
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
12
- "Language-Team: \n"
13
- "Language: de_DE\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Generator: Poedit 3.0\n"
19
-
20
- #. Plugin Name of the plugin
21
- msgid "WooCommerce PDF Invoices & Packing Slips"
22
- msgstr "WooCommerce PDF Invoices & Packing Slips"
23
-
24
- #. Plugin URI of the plugin
25
- #. Author URI of the plugin
26
- msgid "http://www.wpovernight.com"
27
- msgstr "http://www.wpovernight.com"
28
-
29
- #. Description of the plugin
30
- msgid ""
31
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
32
- msgstr ""
33
- "Erstelle, drucke & verschicke PDF Rechnungen & Lieferscheine per Email für "
34
- "WooCommerce Bestellungen."
35
-
36
- #. Author of the plugin
37
- msgid "Ewout Fernhout"
38
- msgstr "Ewout Fernhout"
39
-
40
- #. translators: rounded count
41
- #: includes/class-wcpdf-admin.php:92
42
- msgid "Wow, you have created more than %d invoices with our plugin!"
43
- msgstr ""
44
-
45
- #: includes/class-wcpdf-admin.php:93
46
- msgid ""
47
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
48
- "rating. Help us spread the word and boost our motivation!"
49
- msgstr ""
50
-
51
- #: includes/class-wcpdf-admin.php:95
52
- msgid "Yes you deserve it!"
53
- msgstr ""
54
-
55
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
56
- #: includes/views/attachment-settings-hint.php:24
57
- #: includes/views/wcpdf-extensions.php:131
58
- #: woocommerce-pdf-invoices-packingslips.php:377
59
- #: woocommerce-pdf-invoices-packingslips.php:423
60
- msgid "Hide this message"
61
- msgstr "Diese Nachricht ausblenden"
62
-
63
- #: includes/class-wcpdf-admin.php:96
64
- msgid "Already did!"
65
- msgstr ""
66
-
67
- #: includes/class-wcpdf-admin.php:97
68
- msgid "Actually, I have a complaint..."
69
- msgstr ""
70
-
71
- #: includes/class-wcpdf-admin.php:132
72
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
73
- msgstr ""
74
-
75
- #: includes/class-wcpdf-admin.php:132
76
- msgid "Jumpstart the plugin by following our wizard!"
77
- msgstr ""
78
-
79
- #: includes/class-wcpdf-admin.php:133
80
- msgid "Run the Setup Wizard"
81
- msgstr ""
82
-
83
- #: includes/class-wcpdf-admin.php:133
84
- msgid "I am the wizard"
85
- msgstr ""
86
-
87
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
88
- #: includes/documents/class-wcpdf-invoice.php:302
89
- msgid "Invoice Number"
90
- msgstr "Rechnungsnummer"
91
-
92
- #: includes/class-wcpdf-admin.php:261
93
- msgid "Send order email"
94
- msgstr ""
95
-
96
- #: includes/class-wcpdf-admin.php:272
97
- msgid "Create PDF"
98
- msgstr "PDF erstellen"
99
-
100
- #: includes/class-wcpdf-admin.php:282
101
- msgid "PDF document data"
102
- msgstr ""
103
-
104
- #: includes/class-wcpdf-admin.php:304
105
- msgid "Choose an email to send&hellip;"
106
- msgstr ""
107
-
108
- #: includes/class-wcpdf-admin.php:320
109
- msgid "Save order & send email"
110
- msgstr ""
111
-
112
- #: includes/class-wcpdf-admin.php:322
113
- msgid "Send email"
114
- msgstr ""
115
-
116
- #: includes/class-wcpdf-admin.php:378
117
- #: includes/documents/class-wcpdf-invoice.php:460
118
- msgid "Invoice Number:"
119
- msgstr "Rechnungsnummer:"
120
-
121
- #: includes/class-wcpdf-admin.php:381
122
- #: includes/documents/class-wcpdf-invoice.php:468
123
- msgid "Invoice Date:"
124
- msgstr "Rechnungsdatum:"
125
-
126
- #: includes/class-wcpdf-admin.php:384
127
- msgid "Notes (printed in the invoice):"
128
- msgstr ""
129
-
130
- #. translators: document title
131
- #: includes/class-wcpdf-admin.php:469
132
- msgid "Set %s number & date"
133
- msgstr ""
134
-
135
- #: includes/class-wcpdf-admin.php:478
136
- msgid "unformatted!"
137
- msgstr ""
138
-
139
- #: includes/class-wcpdf-admin.php:518
140
- msgid "Save changes"
141
- msgstr ""
142
-
143
- #: includes/class-wcpdf-admin.php:519
144
- msgid "Cancel"
145
- msgstr ""
146
-
147
- #. translators: name/description of the context for document creation logs
148
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
149
- msgid "order details (number and/or date set manually)"
150
- msgstr ""
151
-
152
- #. translators: %s: email title
153
- #: includes/class-wcpdf-admin.php:647
154
- msgid "%s email notification manually sent."
155
- msgstr ""
156
-
157
- #: includes/class-wcpdf-admin.php:734
158
- msgid "Nonce expired!"
159
- msgstr ""
160
-
161
- #: includes/class-wcpdf-admin.php:740
162
- msgid "Bad action!"
163
- msgstr ""
164
-
165
- #: includes/class-wcpdf-admin.php:746
166
- msgid "Incomplete request!"
167
- msgstr ""
168
-
169
- #: includes/class-wcpdf-admin.php:752
170
- msgid "No permissions!"
171
- msgstr ""
172
-
173
- #: includes/class-wcpdf-admin.php:776
174
- msgid "Document data saved!"
175
- msgstr ""
176
-
177
- #: includes/class-wcpdf-admin.php:777
178
- msgid "An error occurred while saving the document data!"
179
- msgstr ""
180
-
181
- #: includes/class-wcpdf-admin.php:780
182
- msgid "Document regenerated!"
183
- msgstr ""
184
-
185
- #: includes/class-wcpdf-admin.php:781
186
- msgid "An error occurred while regenerating the document!"
187
- msgstr ""
188
-
189
- #: includes/class-wcpdf-admin.php:784
190
- msgid "Document deleted!"
191
- msgstr ""
192
-
193
- #: includes/class-wcpdf-admin.php:785
194
- msgid "An error occurred while deleting the document!"
195
- msgstr ""
196
-
197
- #: includes/class-wcpdf-admin.php:841
198
- msgid "Document does not exist."
199
- msgstr ""
200
-
201
- #: includes/class-wcpdf-admin.php:850
202
- msgid "Document is empty."
203
- msgstr ""
204
-
205
- #: includes/class-wcpdf-admin.php:881
206
- msgid "DEBUG output enabled"
207
- msgstr ""
208
-
209
- #: includes/class-wcpdf-assets.php:91
210
- msgid "Are you sure you want to delete this document? This cannot be undone."
211
- msgstr ""
212
-
213
- #: includes/class-wcpdf-assets.php:92
214
- msgid ""
215
- "Are you sure you want to regenerate this document? This will make the "
216
- "document reflect the most current settings (such as footer text, document "
217
- "name, etc.) rather than using historical settings."
218
- msgstr ""
219
-
220
- #: includes/class-wcpdf-frontend.php:126
221
- msgid "Download invoice (PDF)"
222
- msgstr "Rechnung runterladen (PDF)"
223
-
224
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
225
- #: includes/class-wcpdf-main.php:338
226
- msgid "You do not have sufficient permissions to access this page."
227
- msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
228
-
229
- #: includes/class-wcpdf-main.php:275
230
- msgid "You haven't selected any orders"
231
- msgstr ""
232
-
233
- #: includes/class-wcpdf-main.php:279
234
- msgid "Some of the export parameters are missing."
235
- msgstr "Einige Export Parameter fehlen"
236
-
237
- #. translators: document type
238
- #: includes/class-wcpdf-main.php:379
239
- msgid "Document of type '%s' for the selected order(s) could not be generated"
240
- msgstr ""
241
-
242
- #. translators: 1. plugin name, 2. directory path
243
- #: includes/class-wcpdf-main.php:591
244
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
245
- msgstr ""
246
-
247
- #: includes/class-wcpdf-main.php:592
248
- msgid ""
249
- "Please check your directories write permissions or contact your hosting "
250
- "service provider."
251
- msgstr ""
252
-
253
- #: includes/class-wcpdf-main.php:907
254
- #: includes/documents/class-wcpdf-invoice.php:286
255
- msgid "Invoice Date"
256
- msgstr ""
257
-
258
- #. translators: name/description of the context for document creation logs
259
- #: includes/class-wcpdf-main.php:937
260
- msgid "bulk order action"
261
- msgstr ""
262
-
263
- #. translators: name/description of the context for document creation logs
264
- #: includes/class-wcpdf-main.php:945
265
- msgid "single order action"
266
- msgstr ""
267
-
268
- #. translators: name/description of the context for document creation logs
269
- #: includes/class-wcpdf-main.php:953
270
- msgid "my account"
271
- msgstr ""
272
-
273
- #. translators: name/description of the context for document creation logs
274
- #: includes/class-wcpdf-main.php:961
275
- msgid "email attachment"
276
- msgstr ""
277
-
278
- #. translators: 1. document title, 2. creation source
279
- #: includes/class-wcpdf-main.php:970
280
- msgid "PDF %1$s created via %2$s."
281
- msgstr ""
282
-
283
- #. translators: document title
284
- #: includes/class-wcpdf-main.php:1006
285
- msgid "Order %s Saved"
286
- msgstr ""
287
-
288
- #: includes/class-wcpdf-settings-callbacks.php:27
289
- msgid ""
290
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
291
- "Do not use them on a live website!"
292
- msgstr ""
293
- "<b>Achtung!</b> Die unten stehenden Einstellungen sind für Entwickler "
294
- "vorgehalten. Nutzen Sie diese bitte nur wenn Ihre Website offline ist!"
295
-
296
- #: includes/class-wcpdf-settings-callbacks.php:36
297
- msgid ""
298
- "These are used for the (optional) footer columns in the <em>Modern "
299
- "(Premium)</em> template, but can also be used for other elements in your "
300
- "custom template"
301
- msgstr ""
302
- "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
303
- "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
304
- "deiner angepassten Vorlage verwendet werden."
305
-
306
- #: includes/class-wcpdf-settings-callbacks.php:383
307
- msgid "Image resolution"
308
- msgstr "Bildauflösung"
309
-
310
- #: includes/class-wcpdf-settings-callbacks.php:410
311
- msgid "Save"
312
- msgstr "Speichern"
313
-
314
- #: includes/class-wcpdf-settings-debug.php:45
315
- #: woocommerce-pdf-invoices-packingslips.php:376
316
- msgid "Generate random temporary folder name"
317
- msgstr ""
318
-
319
- #. translators: directory path
320
- #: includes/class-wcpdf-settings-debug.php:58
321
- msgid "Temporary folder moved to %s"
322
- msgstr ""
323
-
324
- #: includes/class-wcpdf-settings-debug.php:68
325
- msgid "Reinstall fonts"
326
- msgstr ""
327
-
328
- #: includes/class-wcpdf-settings-debug.php:89
329
- msgid "Fonts reinstalled!"
330
- msgstr ""
331
-
332
- #: includes/class-wcpdf-settings-debug.php:98
333
- msgid "Remove temporary files"
334
- msgstr ""
335
-
336
- #: includes/class-wcpdf-settings-debug.php:109
337
- msgid "Unable to read temporary folder contents!"
338
- msgstr ""
339
-
340
- #. translators: 1,2. file count
341
- #: includes/class-wcpdf-settings-debug.php:127
342
- msgid "Unable to delete %1$d files! (deleted %2$d)"
343
- msgstr ""
344
-
345
- #. translators: file count
346
- #: includes/class-wcpdf-settings-debug.php:131
347
- msgid "Successfully deleted %d files!"
348
- msgstr ""
349
-
350
- #: includes/class-wcpdf-settings-debug.php:135
351
- msgid "Nothing to delete!"
352
- msgstr ""
353
-
354
- #: includes/class-wcpdf-settings-debug.php:146
355
- msgid "Delete legacy (1.X) settings"
356
- msgstr ""
357
-
358
- #: includes/class-wcpdf-settings-debug.php:162
359
- msgid "Legacy settings deleted!"
360
- msgstr ""
361
-
362
- #: includes/class-wcpdf-settings-debug.php:192
363
- msgid "Debug settings"
364
- msgstr "Einstellungen debuggen"
365
-
366
- #: includes/class-wcpdf-settings-debug.php:198
367
- msgid "Legacy mode"
368
- msgstr "Legacy Modus "
369
-
370
- #: includes/class-wcpdf-settings-debug.php:204
371
- msgid ""
372
- "Legacy mode ensures compatibility with templates and filters from previous "
373
- "versions."
374
- msgstr ""
375
- "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
376
- "früheren Versionen."
377
-
378
- #: includes/class-wcpdf-settings-debug.php:210
379
- msgid "Legacy textdomain fallback"
380
- msgstr ""
381
-
382
- #: includes/class-wcpdf-settings-debug.php:216
383
- msgid ""
384
- "Legacy textdomain fallback ensures compatibility with translation files from "
385
- "versions prior to 2017-05-15."
386
- msgstr ""
387
-
388
- #: includes/class-wcpdf-settings-debug.php:222
389
- msgid "Allow guest access"
390
- msgstr ""
391
-
392
- #: includes/class-wcpdf-settings-debug.php:228
393
- msgid ""
394
- "Enable this to allow customers that purchase without an account to access "
395
- "their PDF with a unique key"
396
- msgstr ""
397
-
398
- #: includes/class-wcpdf-settings-debug.php:234
399
- msgid "Calculate document numbers (slow)"
400
- msgstr ""
401
-
402
- #: includes/class-wcpdf-settings-debug.php:240
403
- msgid ""
404
- "Document numbers (such as invoice numbers) are generated using "
405
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
406
- "with more than 1."
407
- msgstr ""
408
-
409
- #: includes/class-wcpdf-settings-debug.php:246
410
- msgid "Enable debug output"
411
- msgstr "Debug Ausgabe Aktivieren"
412
-
413
- #: includes/class-wcpdf-settings-debug.php:252
414
- msgid ""
415
- "Enable this option to output plugin errors if you're getting a blank page or "
416
- "other PDF generation issues"
417
- msgstr ""
418
- "Diese Option aktivieren um Fehler auszugeben, wenn beim Generieren der PDF "
419
- "Probleme auftreten sollten. "
420
-
421
- #: includes/class-wcpdf-settings-debug.php:253
422
- msgid ""
423
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
424
- "places on your site too, therefor this is not recommended to leave it "
425
- "enabled on live sites."
426
- msgstr ""
427
-
428
- #: includes/class-wcpdf-settings-debug.php:254
429
- msgid ""
430
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
431
- "order basis."
432
- msgstr ""
433
-
434
- #: includes/class-wcpdf-settings-debug.php:260
435
- msgid "Enable automatic cleanup"
436
- msgstr ""
437
-
438
- #. translators: number of days
439
- #: includes/class-wcpdf-settings-debug.php:268
440
- msgid "every %s days"
441
- msgstr ""
442
-
443
- #: includes/class-wcpdf-settings-debug.php:273
444
- msgid ""
445
- "Automatically clean up PDF files stored in the temporary folder (used for "
446
- "email attachments)"
447
- msgstr ""
448
-
449
- #: includes/class-wcpdf-settings-debug.php:274
450
- msgid ""
451
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
452
- "automatic cleanup but not enabled on your server."
453
- msgstr ""
454
-
455
- #: includes/class-wcpdf-settings-debug.php:280
456
- msgid "Output to HTML"
457
- msgstr "Als HTML ausgeben"
458
-
459
- #: includes/class-wcpdf-settings-debug.php:286
460
- msgid ""
461
- "Send the template output as HTML to the browser instead of creating a PDF."
462
- msgstr ""
463
- "Die Template-Ausgabe als HTML an den Browser senden, anstatt eine PDF zu "
464
- "erstellen."
465
-
466
- #: includes/class-wcpdf-settings-debug.php:287
467
- msgid ""
468
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
469
- "order basis."
470
- msgstr ""
471
-
472
- #: includes/class-wcpdf-settings-debug.php:293
473
- msgid "Use alternative HTML5 parser to parse HTML"
474
- msgstr ""
475
-
476
- #: includes/class-wcpdf-settings-debug.php:304
477
- msgid "Log to order notes"
478
- msgstr ""
479
-
480
- #: includes/class-wcpdf-settings-debug.php:310
481
- msgid "Log PDF document creation to order notes."
482
- msgstr ""
483
-
484
- #: includes/class-wcpdf-settings-documents.php:30
485
- #: includes/class-wcpdf-settings.php:97
486
- msgid "Documents"
487
- msgstr "Dokumente"
488
-
489
- #: includes/class-wcpdf-settings-documents.php:36
490
- #: includes/class-wcpdf-settings-documents.php:57
491
- msgid "untitled"
492
- msgstr ""
493
-
494
- #: includes/class-wcpdf-settings-documents.php:50
495
- msgid ""
496
- "All available documents are listed below. Click on a document to configure "
497
- "it."
498
- msgstr ""
499
- "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
500
- "Dokument, um es zu konfigurieren."
501
-
502
- #: includes/class-wcpdf-settings-general.php:40
503
- msgid "General settings"
504
- msgstr "Allgemeine Einstellungen"
505
-
506
- #: includes/class-wcpdf-settings-general.php:46
507
- msgid "How do you want to view the PDF?"
508
- msgstr "Wie soll das PDF angezeigt werden?"
509
-
510
- #: includes/class-wcpdf-settings-general.php:53
511
- msgid "Download the PDF"
512
- msgstr "PDF runterladen"
513
-
514
- #: includes/class-wcpdf-settings-general.php:54
515
- msgid "Open the PDF in a new browser tab/window"
516
- msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
517
-
518
- #: includes/class-wcpdf-settings-general.php:61
519
- msgid "Choose a template"
520
- msgstr "Wähle ein Template"
521
-
522
- #. translators: 1,2. template paths
523
- #: includes/class-wcpdf-settings-general.php:69
524
- msgid ""
525
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
526
- "your (child) theme in <code>%2$s</code> to customize them"
527
- msgstr ""
528
-
529
- #: includes/class-wcpdf-settings-general.php:75
530
- msgid "Paper size"
531
- msgstr "Papierformat"
532
-
533
- #: includes/class-wcpdf-settings-general.php:82
534
- #: includes/views/setup-wizard/paper-format.php:12
535
- msgid "A4"
536
- msgstr "A4"
537
-
538
- #: includes/class-wcpdf-settings-general.php:83
539
- #: includes/views/setup-wizard/paper-format.php:13
540
- msgid "Letter"
541
- msgstr "Letter"
542
-
543
- #: includes/class-wcpdf-settings-general.php:90
544
- msgid "Test mode"
545
- msgstr ""
546
-
547
- #: includes/class-wcpdf-settings-general.php:96
548
- msgid ""
549
- "With test mode enabled, any document generated will always use the latest "
550
- "settings, rather than using the settings as configured at the time the "
551
- "document was first created."
552
- msgstr ""
553
-
554
- #: includes/class-wcpdf-settings-general.php:96
555
- msgid ""
556
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
557
- "setting and will still be generated."
558
- msgstr ""
559
-
560
- #: includes/class-wcpdf-settings-general.php:102
561
- msgid "Extended currency symbol support"
562
- msgstr "Support für erweiterte Währungs Zeichen"
563
-
564
- #: includes/class-wcpdf-settings-general.php:108
565
- msgid "Enable this if your currency symbol is not displaying properly"
566
- msgstr ""
567
- "Aktivieren Sie diese Option, wenn Ihr Währungssymbol nicht korrekt "
568
- "ausgespielt wird."
569
-
570
- #: includes/class-wcpdf-settings-general.php:114
571
- msgid "Enable font subsetting"
572
- msgstr ""
573
-
574
- #: includes/class-wcpdf-settings-general.php:120
575
- msgid ""
576
- "Font subsetting can reduce file size by only including the characters that "
577
- "are used in the PDF, but limits the ability to edit PDF files later. "
578
- "Recommended if you're using an Asian font."
579
- msgstr ""
580
-
581
- #: includes/class-wcpdf-settings-general.php:126
582
- msgid "Shop header/logo"
583
- msgstr "Briefkopf-Logo"
584
-
585
- #: includes/class-wcpdf-settings-general.php:132
586
- #: includes/views/setup-wizard/logo.php:20
587
- msgid "Select or upload your invoice header/logo"
588
- msgstr "Auswählen oder hochladen des Logos"
589
-
590
- #: includes/class-wcpdf-settings-general.php:133
591
- #: includes/views/setup-wizard/logo.php:20
592
- msgid "Set image"
593
- msgstr "Logo festlegen"
594
-
595
- #: includes/class-wcpdf-settings-general.php:134
596
- #: includes/views/setup-wizard/logo.php:20
597
- msgid "Remove image"
598
- msgstr "Logo entfernen"
599
-
600
- #: includes/class-wcpdf-settings-general.php:141
601
- msgid "Logo height"
602
- msgstr ""
603
-
604
- #: includes/class-wcpdf-settings-general.php:149
605
- msgid ""
606
- "Enter the total height of the logo in mm, cm or in and use a dot for "
607
- "decimals.<br/>For example: 1.15in or 40mm"
608
- msgstr ""
609
-
610
- #: includes/class-wcpdf-settings-general.php:155
611
- #: includes/class-wcpdf-setup-wizard.php:47
612
- msgid "Shop Name"
613
- msgstr "Name des Shops"
614
-
615
- #: includes/class-wcpdf-settings-general.php:168
616
- msgid "Shop Address"
617
- msgstr "Adresse des Shops"
618
-
619
- #: includes/class-wcpdf-settings-general.php:183
620
- msgid "Footer: terms & conditions, policies, etc."
621
- msgstr "Fußzeile: allgemeine Bestimmungen, etc."
622
-
623
- #: includes/class-wcpdf-settings-general.php:198
624
- msgid "Extra template fields"
625
- msgstr "Zusätzliche Vorlagenfelder"
626
-
627
- #: includes/class-wcpdf-settings-general.php:204
628
- msgid "Extra field 1"
629
- msgstr "Zusatzfeld 1"
630
-
631
- #: includes/class-wcpdf-settings-general.php:212
632
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
633
- msgstr ""
634
- "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
635
-
636
- #: includes/class-wcpdf-settings-general.php:219
637
- msgid "Extra field 2"
638
- msgstr "Zusatzfeld 2"
639
-
640
- #: includes/class-wcpdf-settings-general.php:227
641
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
642
- msgstr ""
643
- "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
644
-
645
- #: includes/class-wcpdf-settings-general.php:234
646
- msgid "Extra field 3"
647
- msgstr "Zusatzfeld 3"
648
-
649
- #: includes/class-wcpdf-settings-general.php:242
650
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
651
- msgstr ""
652
- "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
653
-
654
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
655
- msgid "PDF Invoices"
656
- msgstr "PDF Rechnungen"
657
-
658
- #: includes/class-wcpdf-settings.php:74
659
- msgid "Documentation"
660
- msgstr "Dokumentation"
661
-
662
- #: includes/class-wcpdf-settings.php:75
663
- msgid "Support Forum"
664
- msgstr "Support Forum"
665
-
666
- #. translators: database row value
667
- #: includes/class-wcpdf-settings.php:88
668
- msgid ""
669
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
670
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
671
- "document numbers (slow)' setting in the Status tab to use an alternate "
672
- "method."
673
- msgstr ""
674
-
675
- #: includes/class-wcpdf-settings.php:96
676
- msgid "General"
677
- msgstr "Allgemein"
678
-
679
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
680
- msgid "Status"
681
- msgstr "Status"
682
-
683
- #: includes/class-wcpdf-setup-wizard.php:51
684
- #: includes/views/setup-wizard/logo.php:3
685
- msgid "Your logo"
686
- msgstr ""
687
-
688
- #: includes/class-wcpdf-setup-wizard.php:55
689
- msgid "Attachments"
690
- msgstr ""
691
-
692
- #: includes/class-wcpdf-setup-wizard.php:59
693
- #: includes/views/setup-wizard/display-options.php:3
694
- msgid "Display options"
695
- msgstr ""
696
-
697
- #: includes/class-wcpdf-setup-wizard.php:63
698
- #: includes/views/setup-wizard/paper-format.php:3
699
- msgid "Paper format"
700
- msgstr ""
701
-
702
- #: includes/class-wcpdf-setup-wizard.php:67
703
- #: includes/views/setup-wizard/show-action-buttons.php:3
704
- msgid "Action buttons"
705
- msgstr ""
706
-
707
- #: includes/class-wcpdf-setup-wizard.php:71
708
- msgid "Ready!"
709
- msgstr ""
710
-
711
- #: includes/class-wcpdf-setup-wizard.php:133
712
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
713
- msgstr ""
714
-
715
- #: includes/class-wcpdf-setup-wizard.php:185
716
- msgid "Previous"
717
- msgstr ""
718
-
719
- #: includes/class-wcpdf-setup-wizard.php:190
720
- msgid "Next"
721
- msgstr ""
722
-
723
- #: includes/class-wcpdf-setup-wizard.php:191
724
- msgid "Skip this step"
725
- msgstr ""
726
-
727
- #: includes/class-wcpdf-setup-wizard.php:193
728
- msgid "Finish"
729
- msgstr ""
730
-
731
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
732
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
733
- msgid "N/A"
734
- msgstr "nicht verfügbar"
735
-
736
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
737
- msgid "Payment method"
738
- msgstr "Zahlungsart"
739
-
740
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
741
- msgid "Shipping method"
742
- msgstr "Versandart"
743
-
744
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
745
- msgid "Subtotal"
746
- msgstr "Zwischensumme"
747
-
748
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
749
- msgid "Shipping"
750
- msgstr "Versand"
751
-
752
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
753
- msgid "Discount"
754
- msgstr "Rabatt"
755
-
756
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
757
- msgid "VAT"
758
- msgstr "MwSt."
759
-
760
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
761
- msgid "Tax rate"
762
- msgstr "MwSt-Satz"
763
-
764
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
765
- msgid "Total ex. VAT"
766
- msgstr "Gesamtsumme ohne MwSt."
767
-
768
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
769
- msgid "Total"
770
- msgstr "Gesamtsumme"
771
-
772
- #. translators: 1. credit note title, 2. refund id
773
- #: includes/documents/abstract-wcpdf-order-document.php:336
774
- msgid "%1$s (refund #%2$s) was regenerated."
775
- msgstr ""
776
-
777
- #. translators: 1. credit note title, 2. refund id
778
- #: includes/documents/abstract-wcpdf-order-document.php:336
779
- msgid "%s was regenerated"
780
- msgstr ""
781
-
782
- #. translators: %s: document name
783
- #: includes/documents/abstract-wcpdf-order-document.php:422
784
- msgid "%s Number:"
785
- msgstr ""
786
-
787
- #. translators: %s: document name
788
- #: includes/documents/abstract-wcpdf-order-document.php:428
789
- msgid "%s Date:"
790
- msgstr ""
791
-
792
- #: includes/documents/abstract-wcpdf-order-document.php:891
793
- msgid "Admin email"
794
- msgstr "Admin E-Mail"
795
-
796
- #: includes/documents/abstract-wcpdf-order-document.php:894
797
- msgid "Manual email"
798
- msgstr "Manuelle E-Mail"
799
-
800
- #: includes/documents/class-wcpdf-invoice.php:32
801
- #: includes/documents/class-wcpdf-invoice.php:56
802
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
803
- msgid "Invoice"
804
- msgstr "Rechnung"
805
-
806
- #: includes/documents/class-wcpdf-invoice.php:131
807
- msgid "invoice"
808
- msgid_plural "invoices"
809
- msgstr[0] "Rechnung"
810
- msgstr[1] "Rechnungen"
811
-
812
- #: includes/documents/class-wcpdf-invoice.php:186
813
- #: includes/documents/class-wcpdf-packing-slip.php:88
814
- msgid "Enable"
815
- msgstr "Aktivieren"
816
-
817
- #: includes/documents/class-wcpdf-invoice.php:197
818
- msgid "Attach to:"
819
- msgstr "Anhängen an"
820
-
821
- #. translators: directory path
822
- #: includes/documents/class-wcpdf-invoice.php:205
823
- msgid ""
824
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
825
- "permissions for this folder! Without having write access to this folder, the "
826
- "plugin will not be able to email invoices."
827
- msgstr ""
828
- "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
829
- "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
830
- "können keine E-Mail - Rechnungen verschickt werden."
831
-
832
- #: includes/documents/class-wcpdf-invoice.php:211
833
- msgid "Disable for:"
834
- msgstr ""
835
-
836
- #: includes/documents/class-wcpdf-invoice.php:220
837
- msgid "Select one or more statuses"
838
- msgstr ""
839
-
840
- #: includes/documents/class-wcpdf-invoice.php:226
841
- #: includes/views/setup-wizard/display-options.php:17
842
- msgid "Display shipping address"
843
- msgstr "Lieferadresse anzeigen"
844
-
845
- #: includes/documents/class-wcpdf-invoice.php:233
846
- #: includes/documents/class-wcpdf-invoice.php:285
847
- #: includes/documents/class-wcpdf-invoice.php:301
848
- #: includes/documents/class-wcpdf-packing-slip.php:106
849
- msgid "No"
850
- msgstr ""
851
-
852
- #: includes/documents/class-wcpdf-invoice.php:234
853
- msgid "Only when different from billing address"
854
- msgstr ""
855
-
856
- #: includes/documents/class-wcpdf-invoice.php:235
857
- #: includes/documents/class-wcpdf-invoice.php:378
858
- #: includes/documents/class-wcpdf-packing-slip.php:108
859
- msgid "Always"
860
- msgstr "Immer"
861
-
862
- #: includes/documents/class-wcpdf-invoice.php:243
863
- #: includes/documents/class-wcpdf-packing-slip.php:116
864
- #: includes/views/setup-wizard/display-options.php:26
865
- msgid "Display email address"
866
- msgstr "Email Adresse anzeigen"
867
-
868
- #: includes/documents/class-wcpdf-invoice.php:254
869
- #: includes/documents/class-wcpdf-packing-slip.php:127
870
- #: includes/views/setup-wizard/display-options.php:35
871
- msgid "Display phone number"
872
- msgstr "Telefonnummer anzeigen"
873
-
874
- #: includes/documents/class-wcpdf-invoice.php:265
875
- #: includes/documents/class-wcpdf-packing-slip.php:138
876
- msgid "Display customer notes"
877
- msgstr ""
878
-
879
- #: includes/documents/class-wcpdf-invoice.php:278
880
- #: includes/views/setup-wizard/display-options.php:44
881
- msgid "Display invoice date"
882
- msgstr "Rechnungsdatum anzeigen"
883
-
884
- #: includes/documents/class-wcpdf-invoice.php:287
885
- msgid "Order Date"
886
- msgstr ""
887
-
888
- #: includes/documents/class-wcpdf-invoice.php:294
889
- #: includes/views/setup-wizard/display-options.php:53
890
- msgid "Display invoice number"
891
- msgstr "Rechnungsnummer anzeigen"
892
-
893
- #: includes/documents/class-wcpdf-invoice.php:303
894
- msgid "Order Number"
895
- msgstr ""
896
-
897
- #: includes/documents/class-wcpdf-invoice.php:307
898
- msgid "Warning!"
899
- msgstr ""
900
-
901
- #: includes/documents/class-wcpdf-invoice.php:308
902
- msgid ""
903
- "Using the Order Number as invoice number is not recommended as this may lead "
904
- "to gaps in the invoice number sequence (even when order numbers are "
905
- "sequential)."
906
- msgstr ""
907
-
908
- #: includes/documents/class-wcpdf-invoice.php:309
909
- msgid "More information"
910
- msgstr ""
911
-
912
- #: includes/documents/class-wcpdf-invoice.php:316
913
- msgid "Next invoice number (without prefix/suffix etc.)"
914
- msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
915
-
916
- #: includes/documents/class-wcpdf-invoice.php:322
917
- msgid ""
918
- "This is the number that will be used for the next document. By default, "
919
- "numbering starts from 1 and increases for every new document. Note that if "
920
- "you override this and set it lower than the current/highest number, this "
921
- "could create duplicate numbers!"
922
- msgstr ""
923
- "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
924
- "Normalerweise startet die Rechnungsnummerierung mit der Nummer 1und erhöht "
925
- "sich mit jeder neuen Rechnung. Beachte bitte das die Überschreibung der "
926
- "höchsten (PDF) Rechnungsnummer mit einer kleineren Nummer zu doppelten "
927
- "Rechnungsnummern führen kann."
928
-
929
- #: includes/documents/class-wcpdf-invoice.php:328
930
- msgid "Number format"
931
- msgstr "Nummernformat"
932
-
933
- #: includes/documents/class-wcpdf-invoice.php:336
934
- msgid "Prefix"
935
- msgstr "Präfix"
936
-
937
- #: includes/documents/class-wcpdf-invoice.php:338
938
- msgid ""
939
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
940
- "respectively"
941
- msgstr ""
942
- "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
943
- "[invoice_year] bzw.[invoice_month]."
944
-
945
- #: includes/documents/class-wcpdf-invoice.php:341
946
- msgid "Suffix"
947
- msgstr "Suffix"
948
-
949
- #: includes/documents/class-wcpdf-invoice.php:346
950
- msgid "Padding"
951
- msgstr "Abstand"
952
-
953
- #: includes/documents/class-wcpdf-invoice.php:349
954
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
955
- msgstr ""
956
- "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
957
- "darzustellen"
958
-
959
- #: includes/documents/class-wcpdf-invoice.php:352
960
- msgid ""
961
- "note: if you have already created a custom invoice number format with a "
962
- "filter, the above settings will be ignored"
963
- msgstr ""
964
- "beachte: solltest du schon mit einem Filter ein eigenes Format der "
965
- "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
966
-
967
- #: includes/documents/class-wcpdf-invoice.php:358
968
- msgid "Reset invoice number yearly"
969
- msgstr "Rechnungsnummer jährlich zurücksetzen"
970
-
971
- #: includes/documents/class-wcpdf-invoice.php:369
972
- msgid "Allow My Account invoice download"
973
- msgstr "Download der Rechnung über Mein Account zulassen"
974
-
975
- #: includes/documents/class-wcpdf-invoice.php:376
976
- msgid "Only when an invoice is already created/emailed"
977
- msgstr "Nur wenn eine Rechnung erstellt/verschickt wurde"
978
-
979
- #: includes/documents/class-wcpdf-invoice.php:377
980
- msgid "Only for specific order statuses (define below)"
981
- msgstr "Nur für bestimmte Auftragsstatus (Definiere unten)"
982
-
983
- #: includes/documents/class-wcpdf-invoice.php:379
984
- msgid "Never"
985
- msgstr "Niemals"
986
-
987
- #: includes/documents/class-wcpdf-invoice.php:394
988
- msgid "Enable invoice number column in the orders list"
989
- msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
990
-
991
- #: includes/documents/class-wcpdf-invoice.php:405
992
- msgid "Disable for free orders"
993
- msgstr ""
994
-
995
- #. translators: zero number
996
- #: includes/documents/class-wcpdf-invoice.php:412
997
- msgid "Disable document when the order total is %s"
998
- msgstr ""
999
-
1000
- #: includes/documents/class-wcpdf-invoice.php:418
1001
- msgid "Always use most current settings"
1002
- msgstr ""
1003
-
1004
- #: includes/documents/class-wcpdf-invoice.php:424
1005
- msgid ""
1006
- "When enabled, the document will always reflect the most current settings "
1007
- "(such as footer text, document name, etc.) rather than using historical "
1008
- "settings."
1009
- msgstr ""
1010
-
1011
- #: includes/documents/class-wcpdf-invoice.php:426
1012
- msgid ""
1013
- "<strong>Caution:</strong> enabling this will also mean that if you change "
1014
- "your company name or address in the future, previously generated documents "
1015
- "will also be affected."
1016
- msgstr ""
1017
-
1018
- #: includes/documents/class-wcpdf-invoice.php:439
1019
- msgid "Invoice numbers are created by a third-party extension."
1020
- msgstr "Rechnungsnummern werden von einer Drittanbieter-Erweiterung erstellt."
1021
-
1022
- #. translators: link
1023
- #: includes/documents/class-wcpdf-invoice.php:442
1024
- msgid "Configure it <a href=\"%s\">here</a>."
1025
- msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
1026
-
1027
- #: includes/documents/class-wcpdf-packing-slip.php:32
1028
- #: includes/documents/class-wcpdf-packing-slip.php:41
1029
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1030
- msgid "Packing Slip"
1031
- msgstr "Lieferschein"
1032
-
1033
- #: includes/documents/class-wcpdf-packing-slip.php:47
1034
- msgid "packing-slip"
1035
- msgid_plural "packing-slips"
1036
- msgstr[0] "Lieferschein"
1037
- msgstr[1] "Lieferscheine"
1038
-
1039
- #: includes/documents/class-wcpdf-packing-slip.php:99
1040
- msgid "Display billing address"
1041
- msgstr "Rechnungsadresse anzeigen"
1042
-
1043
- #: includes/documents/class-wcpdf-packing-slip.php:107
1044
- msgid "Only when different from shipping address"
1045
- msgstr ""
1046
-
1047
- #: includes/documents/class-wcpdf-packing-slip.php:162
1048
- msgid "Packing Slip Number:"
1049
- msgstr ""
1050
-
1051
- #: includes/documents/class-wcpdf-packing-slip.php:170
1052
- msgid "Packing Slip Date:"
1053
- msgstr ""
1054
-
1055
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1056
- msgid "Legacy Document"
1057
- msgstr "Legacy Dokument"
1058
-
1059
- #: includes/legacy/class-wcpdf-legacy.php:72
1060
- msgid "Error"
1061
- msgstr "Fehler"
1062
-
1063
- #: includes/legacy/class-wcpdf-legacy.php:73
1064
- msgid ""
1065
- "An outdated template or action hook was used to generate the PDF. Legacy "
1066
- "mode has been activated, please try again by reloading this page."
1067
- msgstr ""
1068
- "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
1069
- "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
1070
- "indem Sie diese Seite neu laden."
1071
-
1072
- #: includes/legacy/class-wcpdf-legacy.php:76
1073
- msgid "The following function was called"
1074
- msgstr "Die folgende Funktion wurde aufgerufen"
1075
-
1076
- #. translators: <a> tags
1077
- #: includes/views/attachment-settings-hint.php:23
1078
- msgid ""
1079
- "It looks like you haven't setup any email attachments yet, check the "
1080
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1081
- msgstr ""
1082
-
1083
- #: includes/views/dompdf-status.php:11
1084
- msgid "7.1+ (7.4 or higher recommended)"
1085
- msgstr ""
1086
-
1087
- #: includes/views/dompdf-status.php:24
1088
- msgid "Recommended, will use fallback functions"
1089
- msgstr ""
1090
-
1091
- #: includes/views/dompdf-status.php:30
1092
- msgid "Required if you have images in your documents"
1093
- msgstr ""
1094
-
1095
- #: includes/views/dompdf-status.php:39
1096
- msgid "To compress PDF documents"
1097
- msgstr ""
1098
-
1099
- #: includes/views/dompdf-status.php:42
1100
- msgid "Recommended to compress PDF documents"
1101
- msgstr ""
1102
-
1103
- #: includes/views/dompdf-status.php:45
1104
- msgid "For better performances"
1105
- msgstr ""
1106
-
1107
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1108
- msgid "Recommended for better performances"
1109
- msgstr ""
1110
-
1111
- #: includes/views/dompdf-status.php:51
1112
- msgid "Better with transparent PNG images"
1113
- msgstr ""
1114
-
1115
- #: includes/views/dompdf-status.php:57
1116
- msgid ""
1117
- "Required to detect custom templates and to clear the temp folder periodically"
1118
- msgstr ""
1119
-
1120
- #: includes/views/dompdf-status.php:60
1121
- msgid "Check PHP disable_functions"
1122
- msgstr ""
1123
-
1124
- #. translators: <a> tags
1125
- #: includes/views/dompdf-status.php:64
1126
- msgid ""
1127
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1128
- "WordPress Memory Limit%2$s"
1129
- msgstr ""
1130
-
1131
- #: includes/views/dompdf-status.php:69
1132
- msgid "Allow remote stylesheets and images"
1133
- msgstr ""
1134
-
1135
- #: includes/views/dompdf-status.php:72
1136
- msgid "allow_url_fopen disabled"
1137
- msgstr ""
1138
-
1139
- #. translators: <a> tags
1140
- #: includes/views/dompdf-status.php:92
1141
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1142
- msgstr ""
1143
-
1144
- #: includes/views/dompdf-status.php:97
1145
- msgid "System Configuration"
1146
- msgstr ""
1147
-
1148
- #: includes/views/dompdf-status.php:102
1149
- msgid "Required"
1150
- msgstr ""
1151
-
1152
- #: includes/views/dompdf-status.php:103
1153
- msgid "Present"
1154
- msgstr ""
1155
-
1156
- #: includes/views/dompdf-status.php:142
1157
- msgid "Writable"
1158
- msgstr ""
1159
-
1160
- #: includes/views/dompdf-status.php:143
1161
- msgid "Not writable"
1162
- msgstr ""
1163
-
1164
- #: includes/views/dompdf-status.php:148
1165
- msgid "Central temporary plugin folder"
1166
- msgstr ""
1167
-
1168
- #: includes/views/dompdf-status.php:154
1169
- msgid "Temporary attachments folder"
1170
- msgstr ""
1171
-
1172
- #: includes/views/dompdf-status.php:160
1173
- msgid "Temporary DOMPDF folder"
1174
- msgstr ""
1175
-
1176
- #: includes/views/dompdf-status.php:166
1177
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1178
- msgstr ""
1179
-
1180
- #: includes/views/dompdf-status.php:177
1181
- msgid "Write Permissions"
1182
- msgstr ""
1183
-
1184
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1185
- #: templates/Simple/packing-slip.php:88
1186
- msgid "Description"
1187
- msgstr "Beschreibung"
1188
-
1189
- #: includes/views/dompdf-status.php:181
1190
- msgid "Value"
1191
- msgstr ""
1192
-
1193
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1194
- #: includes/views/dompdf-status.php:207
1195
- msgid ""
1196
- "The central temp folder is %1$s. By default, this folder is created in the "
1197
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1198
- "config.php. Alternatively, you can control the specific folder for PDF "
1199
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1200
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1201
- "by the plugin if the central temp folder is writable)."
1202
- msgstr ""
1203
-
1204
- #. translators: directory path
1205
- #: includes/views/dompdf-status.php:220
1206
- msgid ""
1207
- "If the temporary folders were not automatically created by the plugin, "
1208
- "verify that all the font files (from %s) are copied to the fonts folder. "
1209
- "Normally, this is fully automated, but if your server has strict security "
1210
- "settings, this automated copying may have been prohibited. In that case, you "
1211
- "also need to make sure these folders get synchronized on plugin updates!"
1212
- msgstr ""
1213
-
1214
- #: includes/views/setup-wizard/attach-to.php:3
1215
- msgid "Attach too..."
1216
- msgstr ""
1217
-
1218
- #: includes/views/setup-wizard/attach-to.php:4
1219
- msgid "Select to which emails you would like to attach your invoice."
1220
- msgstr ""
1221
-
1222
- #: includes/views/setup-wizard/display-options.php:4
1223
- msgid "Select some additional display options for your invoice."
1224
- msgstr ""
1225
-
1226
- #: includes/views/setup-wizard/good-to-go.php:3
1227
- msgid "You are good to go!"
1228
- msgstr ""
1229
-
1230
- #: includes/views/setup-wizard/good-to-go.php:4
1231
- msgid "If you have any questions please have a look at our documentation:"
1232
- msgstr ""
1233
-
1234
- #: includes/views/setup-wizard/good-to-go.php:5
1235
- msgid "Invoices & Packing Slips"
1236
- msgstr ""
1237
-
1238
- #: includes/views/setup-wizard/good-to-go.php:6
1239
- msgid "Happy selling!"
1240
- msgstr ""
1241
-
1242
- #: includes/views/setup-wizard/logo.php:4
1243
- msgid "Set the header image that will display on your invoice."
1244
- msgstr ""
1245
-
1246
- #: includes/views/setup-wizard/paper-format.php:4
1247
- msgid "Select the paper format for your invoice."
1248
- msgstr ""
1249
-
1250
- #: includes/views/setup-wizard/shop-name.php:3
1251
- msgid "Enter your shop name"
1252
- msgstr ""
1253
-
1254
- #: includes/views/setup-wizard/shop-name.php:4
1255
- msgid ""
1256
- "Lets quickly setup your invoice. Please enter the name and address of your "
1257
- "shop in the fields on the right."
1258
- msgstr ""
1259
-
1260
- #: includes/views/setup-wizard/show-action-buttons.php:4
1261
- msgid ""
1262
- "Would you like to display the action buttons in your WooCommerce order list? "
1263
- "The action buttons allow you to manually create a PDF."
1264
- msgstr ""
1265
-
1266
- #: includes/views/setup-wizard/show-action-buttons.php:5
1267
- msgid "(You can always change this setting later via the Screen Options menu)"
1268
- msgstr ""
1269
-
1270
- #: includes/views/setup-wizard/show-action-buttons.php:18
1271
- msgid "Show action buttons"
1272
- msgstr ""
1273
-
1274
- #: includes/views/wcpdf-extensions.php:16
1275
- msgid "Check out these premium extensions!"
1276
- msgstr "Premium Erweiterungen schon gesehen?"
1277
-
1278
- #: includes/views/wcpdf-extensions.php:17
1279
- msgid "click items to read more"
1280
- msgstr "klicke Elemente um weiterzulesen"
1281
-
1282
- #: includes/views/wcpdf-extensions.php:22
1283
- msgid ""
1284
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1285
- "system"
1286
- msgstr ""
1287
- "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
1288
- "Abrechnungssystem benötigen"
1289
-
1290
- #: includes/views/wcpdf-extensions.php:24
1291
- msgid ""
1292
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1293
- "premium extensions:"
1294
- msgstr ""
1295
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
1296
- "Erweiterungen:"
1297
-
1298
- #: includes/views/wcpdf-extensions.php:25
1299
- msgid "Professional features:"
1300
- msgstr "Professionelle Features:"
1301
-
1302
- #: includes/views/wcpdf-extensions.php:27
1303
- #: includes/views/wcpdf-extensions.php:57
1304
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1305
- msgstr ""
1306
- "E-Mail/Druck/Download <b>PDF Rechnungskorrektur & Proforma Rechnung</b>"
1307
-
1308
- #: includes/views/wcpdf-extensions.php:28
1309
- #: includes/views/wcpdf-extensions.php:58
1310
- msgid ""
1311
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1312
- "packing slips, for example to a drop-shipper or a supplier."
1313
- msgstr ""
1314
- "Sende eine separate <b>E-Mail-Benachrichtigung</b> mit (oder ohne) PDF "
1315
- "invoices/packing slips, zum Beispiel zu einem Drop-Shipper oder einem "
1316
- "Lieferanten."
1317
-
1318
- #: includes/views/wcpdf-extensions.php:29
1319
- #: includes/views/wcpdf-extensions.php:59
1320
- msgid ""
1321
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1322
- "document) to the WooCommerce emails of your choice."
1323
- msgstr ""
1324
- "Hänge <b>bis zu 3 Dateien</b> (zum Beispiel die AGB) an die WooCommerce E-"
1325
- "Mails deiner Wahl an."
1326
-
1327
- #: includes/views/wcpdf-extensions.php:30
1328
- #: includes/views/wcpdf-extensions.php:60
1329
- msgid ""
1330
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1331
- "and credit notes or utilize the main invoice numbering system"
1332
- msgstr ""
1333
- "Anwendung <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
1334
- "Rechnungen und Gutschriften oder Änderung am Hauptsystem der "
1335
- "Rechnungsnummerierung"
1336
-
1337
- #: includes/views/wcpdf-extensions.php:31
1338
- #: includes/views/wcpdf-extensions.php:61
1339
- msgid ""
1340
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1341
- "additional custom fields, font sizes etc. without the need to create a "
1342
- "custom template."
1343
- msgstr ""
1344
- "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
1345
- "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
1346
- "zu erstellen."
1347
-
1348
- #: includes/views/wcpdf-extensions.php:32
1349
- #: includes/views/wcpdf-extensions.php:62
1350
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1351
- msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
1352
-
1353
- #: includes/views/wcpdf-extensions.php:34
1354
- #: includes/views/wcpdf-extensions.php:114
1355
- msgid "Advanced, customizable templates"
1356
- msgstr "Erweiterte, anpassbare Vorlagen"
1357
-
1358
- #: includes/views/wcpdf-extensions.php:36
1359
- #: includes/views/wcpdf-extensions.php:117
1360
- msgid ""
1361
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1362
- "your needs with a drag & drop customizer"
1363
- msgstr ""
1364
- "Stelle die Rechnungen (Preise, Steuern, Thumbnails) komplett per Drag- & "
1365
- "Drop auf deine Bedürfnisse ein"
1366
-
1367
- #: includes/views/wcpdf-extensions.php:37
1368
- #: includes/views/wcpdf-extensions.php:118
1369
- msgid "Two extra stylish premade templates (Modern & Business)"
1370
- msgstr "Zwei zusätzliche stilvolle vorgefertigte Vorlagen (Modern & Business)"
1371
-
1372
- #: includes/views/wcpdf-extensions.php:39
1373
- #: includes/views/wcpdf-extensions.php:63
1374
- msgid "Upload automatically to dropbox"
1375
- msgstr "Automatischer Upload in die Dropbox"
1376
-
1377
- #: includes/views/wcpdf-extensions.php:41
1378
- msgid ""
1379
- "This extension conveniently uploads all the invoices (and other pdf "
1380
- "documents from the professional extension) that are emailed to your "
1381
- "customers to Dropbox. The best way to keep your invoice administration up to "
1382
- "date!"
1383
- msgstr ""
1384
- "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
1385
- "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
1386
- "Rechnungsadministration aktuell zu halten!"
1387
-
1388
- #: includes/views/wcpdf-extensions.php:44
1389
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1390
- msgstr "Hol Dir das WooCommerce PDF Invoices & Packing Slips Bundle"
1391
-
1392
- #: includes/views/wcpdf-extensions.php:53
1393
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1394
- msgstr "Upgrade auf Pro: Proforma Rechnung, Rechnungskorrektur & mehr!"
1395
-
1396
- #: includes/views/wcpdf-extensions.php:55
1397
- msgid ""
1398
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1399
- "features:"
1400
- msgstr ""
1401
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
1402
-
1403
- #: includes/views/wcpdf-extensions.php:65
1404
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1405
- msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
1406
-
1407
- #: includes/views/wcpdf-extensions.php:73
1408
- msgid "Automatically send payment reminders to your customers"
1409
- msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
1410
-
1411
- #: includes/views/wcpdf-extensions.php:75
1412
- msgid "WooCommerce Smart Reminder emails"
1413
- msgstr "WooCommerce Smart Reminder Emails"
1414
-
1415
- #: includes/views/wcpdf-extensions.php:77
1416
- msgid "<b>Completely automatic</b> scheduled emails"
1417
- msgstr "<b>Vollautomatische</b> geplant e-Mails"
1418
-
1419
- #: includes/views/wcpdf-extensions.php:78
1420
- msgid ""
1421
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1422
- "from the order (name, order total, etc)"
1423
- msgstr ""
1424
- "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
1425
- "aus der Bestellung (Name, Auftragssumme, etc.)"
1426
-
1427
- #: includes/views/wcpdf-extensions.php:79
1428
- msgid ""
1429
- "Configure the exact requirements for sending an email (time after order, "
1430
- "order status, payment method)"
1431
- msgstr ""
1432
- "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
1433
- "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
1434
-
1435
- #: includes/views/wcpdf-extensions.php:80
1436
- msgid ""
1437
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1438
- "order language."
1439
- msgstr ""
1440
- "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
1441
- "Bestellsprache versendet."
1442
-
1443
- #: includes/views/wcpdf-extensions.php:81
1444
- msgid ""
1445
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1446
- "reminders, repeat purchases)"
1447
- msgstr ""
1448
- "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
1449
- "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
1450
-
1451
- #: includes/views/wcpdf-extensions.php:82
1452
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1453
- msgstr ""
1454
- "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
1455
-
1456
- #: includes/views/wcpdf-extensions.php:84
1457
- msgid "Get WooCommerce Smart Reminder Emails"
1458
- msgstr "WooCommerce Smart Reminder EMails ordern"
1459
-
1460
- #: includes/views/wcpdf-extensions.php:93
1461
- msgid ""
1462
- "Automatically send new orders or packing slips to your printer, as soon as "
1463
- "the customer orders!"
1464
- msgstr ""
1465
- "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
1466
- "sobald ein Kunde bestellt."
1467
-
1468
- #: includes/views/wcpdf-extensions.php:99
1469
- msgid ""
1470
- "Check out the WooCommerce Automatic Order Printing extension from our "
1471
- "partners at Simba Hosting"
1472
- msgstr ""
1473
- "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
1474
- "Partner Simba Hosting "
1475
-
1476
- #: includes/views/wcpdf-extensions.php:100
1477
- msgid "WooCommerce Automatic Order Printing"
1478
- msgstr "WooCommerce Automatic Order Printing"
1479
-
1480
- #. translators: Premium Templates link
1481
- #: includes/views/wcpdf-extensions.php:120
1482
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1483
- msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
1484
-
1485
- #. translators: email link
1486
- #: includes/views/wcpdf-extensions.php:122
1487
- msgid "For custom templates, contact us at %s."
1488
- msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
1489
-
1490
- #: includes/views/wcpdf-settings-page.php:9
1491
- msgid "WooCommerce PDF Invoices"
1492
- msgstr "WooCommerce PDF Rechnungen"
1493
-
1494
- #: includes/wcpdf-functions.php:209
1495
- msgid "Error creating PDF, please contact the site owner."
1496
- msgstr ""
1497
-
1498
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1499
- msgid "Billing Address:"
1500
- msgstr "Rechnungsadresse:"
1501
-
1502
- #: templates/Simple/invoice.php:48
1503
- msgid "Ship To:"
1504
- msgstr "Versand nach:"
1505
-
1506
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1507
- msgid "Order Number:"
1508
- msgstr "Bestellnummer:"
1509
-
1510
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1511
- msgid "Order Date:"
1512
- msgstr "Bestelldatum:"
1513
-
1514
- #: templates/Simple/invoice.php:78
1515
- msgid "Payment Method:"
1516
- msgstr "Zahlungsart:"
1517
-
1518
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1519
- msgid "Product"
1520
- msgstr "Produkt"
1521
-
1522
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1523
- msgid "Quantity"
1524
- msgstr "Anzahl"
1525
-
1526
- #: templates/Simple/invoice.php:94
1527
- msgid "Price"
1528
- msgstr "Preis"
1529
-
1530
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1531
- msgid "SKU"
1532
- msgstr "Art.-Nr."
1533
-
1534
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1535
- msgid "SKU:"
1536
- msgstr "Art.-Nr.:"
1537
-
1538
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1539
- msgid "Weight:"
1540
- msgstr "Gewicht:"
1541
-
1542
- #: templates/Simple/invoice.php:123
1543
- msgid "Notes"
1544
- msgstr ""
1545
-
1546
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1547
- msgid "Customer Notes"
1548
- msgstr "Anmerkungen"
1549
-
1550
- #: templates/Simple/packing-slip.php:35
1551
- msgid "Shipping Address:"
1552
- msgstr "Lieferadresse:"
1553
-
1554
- #: templates/Simple/packing-slip.php:66
1555
- msgid "Shipping Method:"
1556
- msgstr "Versandart:"
1557
-
1558
- #. translators: <a> tags
1559
- #: woocommerce-pdf-invoices-packingslips.php:271
1560
- msgid ""
1561
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1562
- "installed & activated!"
1563
- msgstr ""
1564
-
1565
- #: woocommerce-pdf-invoices-packingslips.php:282
1566
- msgid ""
1567
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1568
- "recommended)."
1569
- msgstr ""
1570
-
1571
- #. translators: <a> tags
1572
- #: woocommerce-pdf-invoices-packingslips.php:284
1573
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1574
- msgstr ""
1575
-
1576
- #. translators: <a> tags
1577
- #: woocommerce-pdf-invoices-packingslips.php:286
1578
- msgid ""
1579
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1580
- "to enable backwards compatibility with PHP5.6."
1581
- msgstr ""
1582
-
1583
- #. translators: directory path
1584
- #: woocommerce-pdf-invoices-packingslips.php:374
1585
- msgid ""
1586
- "The PDF files in %s are not currently protected due to your site running on "
1587
- "<strong>NGINX</strong>."
1588
- msgstr ""
1589
-
1590
- #: woocommerce-pdf-invoices-packingslips.php:375
1591
- msgid "To protect them, you must click the button below."
1592
- msgstr ""
1593
-
1594
- #. translators: plugin name
1595
- #: woocommerce-pdf-invoices-packingslips.php:419
1596
- msgid ""
1597
- "When sending emails with MailPoet 3 and the active sending method is "
1598
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1599
- "the emails."
1600
- msgstr ""
1601
-
1602
- #. translators: "Your web host / web server"
1603
- #: woocommerce-pdf-invoices-packingslips.php:421
1604
- msgid "To fix this you should select other method like %1$s or %2$s."
1605
- msgstr ""
1606
-
1607
- #. translators: "Your web host / web server"
1608
- #: woocommerce-pdf-invoices-packingslips.php:421
1609
- msgid "Your web host / web server"
1610
- msgstr ""
1611
-
1612
- #: woocommerce-pdf-invoices-packingslips.php:422
1613
- msgid "Change MailPoet sending method"
1614
- msgstr ""
1615
-
1616
- #~ msgid "PDF Invoice data"
1617
- #~ msgstr "PDF Rechnungsdaten"
1618
-
1619
- #~ msgid "Set invoice number & date"
1620
- #~ msgstr "Erstellen Sie Rechnungsnummer und Rechnungsdatum"
1621
-
1622
- #~ msgid "Invoice Number (unformatted!)"
1623
- #~ msgstr "Rechnungsnummer (unformatiert)"
1624
-
1625
- #~ msgid "h"
1626
- #~ msgstr "Std"
1627
-
1628
- #~ msgid "m"
1629
- #~ msgstr "Min"
1630
-
1631
- #, php-format
1632
- #~ msgid ""
1633
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1634
- #~ "your (child) theme in <code>%s</code> to customize them"
1635
- #~ msgstr ""
1636
- #~ "Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
1637
- #~ "<code>%s</code> nach <code>%s</code> und passe sie dort an."
1638
-
1639
- #~ msgid "Settings"
1640
- #~ msgstr "Einstellungen"
1641
-
1642
- #~ msgid "WooCommerce"
1643
- #~ msgstr "WooCommerce"
1644
-
1645
- #, php-format
1646
- #~ msgid "(includes %s)"
1647
- #~ msgstr "(enthält %s)"
1648
-
1649
- #, php-format
1650
- #~ msgid "(Includes %s)"
1651
- #~ msgstr "(inkl. %s)"
1652
-
1653
- #~ msgid ""
1654
- #~ "Display shipping address (in addition to the default billing address) if "
1655
- #~ "different from billing address"
1656
- #~ msgstr ""
1657
- #~ "Lieferadresse auf Rechnung ergänzend anzeigen bei abweichender "
1658
- #~ "Rechnungsadresse"
1659
-
1660
- #~ msgid "Disable for free products"
1661
- #~ msgstr "Für kostenlose Produkte deaktivieren"
1662
-
1663
- #, fuzzy
1664
- #~| msgid ""
1665
- #~| "Disable automatic creation/attachment of invoices when only free "
1666
- #~| "products are ordered"
1667
- #~ msgid ""
1668
- #~ "Disable automatic creation/attachment when only free products are ordered"
1669
- #~ msgstr ""
1670
- #~ "Deaktiviere das automatische Erstellen/Anhängen von Rechnungen wenn "
1671
- #~ "kostenlose Produkte bestellt wurden"
1672
-
1673
- #~ msgid ""
1674
- #~ "Display billing address (in addition to the default shipping address) if "
1675
- #~ "different from shipping address"
1676
- #~ msgstr ""
1677
- #~ "Rechnungsadresse anzeigen (zusätzlich zur Standardversandadresse), falls "
1678
- #~ "abweichend von der Versandadresse"
1679
-
1680
- #~ msgid "Upload all invoices automatically to your dropbox"
1681
- #~ msgstr "Alle Rechnungen automatisch auf deine Dropbox hochladen"
1682
-
1683
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1684
- #~ msgstr "Hole WooCommerce PDF Invoices & Packing Slips to dropbox!"
1685
-
1686
- #, php-format
1687
- #~ msgid ""
1688
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1689
- #~ "installed & activated!"
1690
- #~ msgstr ""
1691
- #~ "WooCommerce PDF Invoices & Packing Slips benötigt %sWooCommerce%s "
1692
- #~ "installiert und aktiviert!"
1693
-
1694
- #~ msgid ""
1695
- #~ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 "
1696
- #~ "or higher recommended)."
1697
- #~ msgstr ""
1698
- #~ "WooCommerce PDF Invoices & Packing Slips erfordert PHP 5.3 oder höher "
1699
- #~ "(5.6 oder höher empfohlen)."
1700
-
1701
- #~ msgid "How to update your PHP version"
1702
- #~ msgstr "So aktualisieren Sie Ihre PHP-Version"
1703
-
1704
- #~ msgid "PDF Packing Slip"
1705
- #~ msgstr "PDF Lieferschein"
1706
-
1707
- #~ msgid "PDF Invoice"
1708
- #~ msgstr "PDF Rechnung"
1709
-
1710
- #~ msgid "PDF Packing Slips"
1711
- #~ msgstr "PDF Lieferscheine"
1712
-
1713
- #~ msgid ""
1714
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1715
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1716
- #~ "not recommended on new installs!"
1717
- #~ msgstr ""
1718
- #~ "Vor Version 1.5 von PDF Invoices, wurden temporäre Dateien im Plugin-"
1719
- #~ "Ordner gespeichert. Diese Einstellung ist nur für die "
1720
- #~ "Abwärtskompatibilität bestimmt und wird nicht für Neuinstallationen "
1721
- #~ "empfohlen!"
1722
-
1723
- #~ msgid "Use old tmp folder"
1724
- #~ msgstr "Alten tmp Ordner benutzen"
1725
-
1726
- #~ msgid "Display built-in sequential invoice number"
1727
- #~ msgstr "Anzeige integrierte fortlaufende Rechnungsnummer"
1728
-
1729
- #~ msgid "PDF Template settings"
1730
- #~ msgstr "PDF Vorlageneinstellungen"
1731
-
1732
- #~ msgid "Interface"
1733
- #~ msgstr "Interface"
1734
-
1735
- #~ msgid "Customer Invoice email"
1736
- #~ msgstr "Kunde Rechnung E-Mail"
1737
-
1738
- #~ msgid "Customer Completed Order email"
1739
- #~ msgstr "Kunde Bestellung abgeschlossen E-Mail"
1740
-
1741
- #~ msgid "Customer Processing Order email"
1742
- #~ msgstr "Kunde In Bearbeitung E-Mail"
1743
-
1744
- #~ msgid "Template"
1745
- #~ msgstr "Vorlage"
1
+ # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in German
2
+ # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
+ "Stable (latest release)\n"
7
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
8
+ "invoices-packing-slips\n"
9
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
10
+ "PO-Revision-Date: 2021-10-27 01:22-0400\n"
11
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
12
+ "Language-Team: \n"
13
+ "Language: de_DE\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Generator: Poedit 3.0\n"
19
+
20
+ #. Plugin Name of the plugin
21
+ msgid "WooCommerce PDF Invoices & Packing Slips"
22
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
23
+
24
+ #. Plugin URI of the plugin
25
+ #. Author URI of the plugin
26
+ msgid "http://www.wpovernight.com"
27
+ msgstr "http://www.wpovernight.com"
28
+
29
+ #. Description of the plugin
30
+ msgid ""
31
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
32
+ msgstr ""
33
+ "Erstelle, drucke & verschicke PDF Rechnungen & Lieferscheine per Email für "
34
+ "WooCommerce Bestellungen."
35
+
36
+ #. Author of the plugin
37
+ msgid "Ewout Fernhout"
38
+ msgstr "Ewout Fernhout"
39
+
40
+ #. translators: rounded count
41
+ #: includes/class-wcpdf-admin.php:92
42
+ msgid "Wow, you have created more than %d invoices with our plugin!"
43
+ msgstr ""
44
+
45
+ #: includes/class-wcpdf-admin.php:93
46
+ msgid ""
47
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
48
+ "rating. Help us spread the word and boost our motivation!"
49
+ msgstr ""
50
+
51
+ #: includes/class-wcpdf-admin.php:95
52
+ msgid "Yes you deserve it!"
53
+ msgstr ""
54
+
55
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
56
+ #: includes/views/attachment-settings-hint.php:24
57
+ #: includes/views/wcpdf-extensions.php:131
58
+ #: woocommerce-pdf-invoices-packingslips.php:377
59
+ #: woocommerce-pdf-invoices-packingslips.php:423
60
+ msgid "Hide this message"
61
+ msgstr "Diese Nachricht ausblenden"
62
+
63
+ #: includes/class-wcpdf-admin.php:96
64
+ msgid "Already did!"
65
+ msgstr ""
66
+
67
+ #: includes/class-wcpdf-admin.php:97
68
+ msgid "Actually, I have a complaint..."
69
+ msgstr ""
70
+
71
+ #: includes/class-wcpdf-admin.php:132
72
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
73
+ msgstr ""
74
+
75
+ #: includes/class-wcpdf-admin.php:132
76
+ msgid "Jumpstart the plugin by following our wizard!"
77
+ msgstr ""
78
+
79
+ #: includes/class-wcpdf-admin.php:133
80
+ msgid "Run the Setup Wizard"
81
+ msgstr ""
82
+
83
+ #: includes/class-wcpdf-admin.php:133
84
+ msgid "I am the wizard"
85
+ msgstr ""
86
+
87
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
88
+ #: includes/documents/class-wcpdf-invoice.php:302
89
+ msgid "Invoice Number"
90
+ msgstr "Rechnungsnummer"
91
+
92
+ #: includes/class-wcpdf-admin.php:261
93
+ msgid "Send order email"
94
+ msgstr ""
95
+
96
+ #: includes/class-wcpdf-admin.php:272
97
+ msgid "Create PDF"
98
+ msgstr "PDF erstellen"
99
+
100
+ #: includes/class-wcpdf-admin.php:282
101
+ msgid "PDF document data"
102
+ msgstr ""
103
+
104
+ #: includes/class-wcpdf-admin.php:304
105
+ msgid "Choose an email to send&hellip;"
106
+ msgstr ""
107
+
108
+ #: includes/class-wcpdf-admin.php:320
109
+ msgid "Save order & send email"
110
+ msgstr ""
111
+
112
+ #: includes/class-wcpdf-admin.php:322
113
+ msgid "Send email"
114
+ msgstr ""
115
+
116
+ #: includes/class-wcpdf-admin.php:378
117
+ #: includes/documents/class-wcpdf-invoice.php:460
118
+ msgid "Invoice Number:"
119
+ msgstr "Rechnungsnummer:"
120
+
121
+ #: includes/class-wcpdf-admin.php:381
122
+ #: includes/documents/class-wcpdf-invoice.php:468
123
+ msgid "Invoice Date:"
124
+ msgstr "Rechnungsdatum:"
125
+
126
+ #: includes/class-wcpdf-admin.php:384
127
+ msgid "Notes (printed in the invoice):"
128
+ msgstr ""
129
+
130
+ #. translators: document title
131
+ #: includes/class-wcpdf-admin.php:469
132
+ msgid "Set %s number & date"
133
+ msgstr ""
134
+
135
+ #: includes/class-wcpdf-admin.php:478
136
+ msgid "unformatted!"
137
+ msgstr ""
138
+
139
+ #: includes/class-wcpdf-admin.php:518
140
+ msgid "Save changes"
141
+ msgstr ""
142
+
143
+ #: includes/class-wcpdf-admin.php:519
144
+ msgid "Cancel"
145
+ msgstr ""
146
+
147
+ #. translators: name/description of the context for document creation logs
148
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
149
+ msgid "order details (number and/or date set manually)"
150
+ msgstr ""
151
+
152
+ #. translators: %s: email title
153
+ #: includes/class-wcpdf-admin.php:647
154
+ msgid "%s email notification manually sent."
155
+ msgstr ""
156
+
157
+ #: includes/class-wcpdf-admin.php:734
158
+ msgid "Nonce expired!"
159
+ msgstr ""
160
+
161
+ #: includes/class-wcpdf-admin.php:740
162
+ msgid "Bad action!"
163
+ msgstr ""
164
+
165
+ #: includes/class-wcpdf-admin.php:746
166
+ msgid "Incomplete request!"
167
+ msgstr ""
168
+
169
+ #: includes/class-wcpdf-admin.php:752
170
+ msgid "No permissions!"
171
+ msgstr ""
172
+
173
+ #: includes/class-wcpdf-admin.php:776
174
+ msgid "Document data saved!"
175
+ msgstr ""
176
+
177
+ #: includes/class-wcpdf-admin.php:777
178
+ msgid "An error occurred while saving the document data!"
179
+ msgstr ""
180
+
181
+ #: includes/class-wcpdf-admin.php:780
182
+ msgid "Document regenerated!"
183
+ msgstr ""
184
+
185
+ #: includes/class-wcpdf-admin.php:781
186
+ msgid "An error occurred while regenerating the document!"
187
+ msgstr ""
188
+
189
+ #: includes/class-wcpdf-admin.php:784
190
+ msgid "Document deleted!"
191
+ msgstr ""
192
+
193
+ #: includes/class-wcpdf-admin.php:785
194
+ msgid "An error occurred while deleting the document!"
195
+ msgstr ""
196
+
197
+ #: includes/class-wcpdf-admin.php:841
198
+ msgid "Document does not exist."
199
+ msgstr ""
200
+
201
+ #: includes/class-wcpdf-admin.php:850
202
+ msgid "Document is empty."
203
+ msgstr ""
204
+
205
+ #: includes/class-wcpdf-admin.php:881
206
+ msgid "DEBUG output enabled"
207
+ msgstr ""
208
+
209
+ #: includes/class-wcpdf-assets.php:94
210
+ msgid "Are you sure you want to delete this document? This cannot be undone."
211
+ msgstr ""
212
+
213
+ #: includes/class-wcpdf-assets.php:95
214
+ msgid ""
215
+ "Are you sure you want to regenerate this document? This will make the "
216
+ "document reflect the most current settings (such as footer text, document "
217
+ "name, etc.) rather than using historical settings."
218
+ msgstr ""
219
+
220
+ #: includes/class-wcpdf-frontend.php:129
221
+ msgid "Download invoice (PDF)"
222
+ msgstr "Rechnung runterladen (PDF)"
223
+
224
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
225
+ #: includes/class-wcpdf-main.php:337
226
+ msgid "You do not have sufficient permissions to access this page."
227
+ msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
228
+
229
+ #: includes/class-wcpdf-main.php:272
230
+ msgid "You haven't selected any orders"
231
+ msgstr ""
232
+
233
+ #: includes/class-wcpdf-main.php:276
234
+ msgid "Some of the export parameters are missing."
235
+ msgstr "Einige Export Parameter fehlen"
236
+
237
+ #. translators: document type
238
+ #: includes/class-wcpdf-main.php:378
239
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
240
+ msgstr ""
241
+
242
+ #. translators: 1. plugin name, 2. directory path
243
+ #: includes/class-wcpdf-main.php:603
244
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
245
+ msgstr ""
246
+
247
+ #: includes/class-wcpdf-main.php:604
248
+ msgid ""
249
+ "Please check your directories write permissions or contact your hosting "
250
+ "service provider."
251
+ msgstr ""
252
+
253
+ #: includes/class-wcpdf-main.php:919
254
+ #: includes/documents/class-wcpdf-invoice.php:286
255
+ msgid "Invoice Date"
256
+ msgstr ""
257
+
258
+ #. translators: name/description of the context for document creation logs
259
+ #: includes/class-wcpdf-main.php:949
260
+ msgid "bulk order action"
261
+ msgstr ""
262
+
263
+ #. translators: name/description of the context for document creation logs
264
+ #: includes/class-wcpdf-main.php:957
265
+ msgid "single order action"
266
+ msgstr ""
267
+
268
+ #. translators: name/description of the context for document creation logs
269
+ #: includes/class-wcpdf-main.php:965
270
+ msgid "my account"
271
+ msgstr ""
272
+
273
+ #. translators: name/description of the context for document creation logs
274
+ #: includes/class-wcpdf-main.php:973
275
+ msgid "email attachment"
276
+ msgstr ""
277
+
278
+ #. translators: 1. document title, 2. creation source
279
+ #: includes/class-wcpdf-main.php:982
280
+ msgid "PDF %1$s created via %2$s."
281
+ msgstr ""
282
+
283
+ #. translators: document title
284
+ #: includes/class-wcpdf-main.php:1026
285
+ msgid "Order %s Saved"
286
+ msgstr ""
287
+
288
+ #: includes/class-wcpdf-settings-callbacks.php:27
289
+ msgid ""
290
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
291
+ "Do not use them on a live website!"
292
+ msgstr ""
293
+ "<b>Achtung!</b> Die unten stehenden Einstellungen sind für Entwickler "
294
+ "vorgehalten. Nutzen Sie diese bitte nur wenn Ihre Website offline ist!"
295
+
296
+ #: includes/class-wcpdf-settings-callbacks.php:36
297
+ msgid ""
298
+ "These are used for the (optional) footer columns in the <em>Modern "
299
+ "(Premium)</em> template, but can also be used for other elements in your "
300
+ "custom template"
301
+ msgstr ""
302
+ "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
303
+ "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
304
+ "deiner angepassten Vorlage verwendet werden."
305
+
306
+ #: includes/class-wcpdf-settings-callbacks.php:384
307
+ msgid "Image resolution"
308
+ msgstr "Bildauflösung"
309
+
310
+ #: includes/class-wcpdf-settings-callbacks.php:411
311
+ msgid "Save"
312
+ msgstr "Speichern"
313
+
314
+ #: includes/class-wcpdf-settings-debug.php:45
315
+ #: woocommerce-pdf-invoices-packingslips.php:376
316
+ msgid "Generate random temporary folder name"
317
+ msgstr ""
318
+
319
+ #. translators: directory path
320
+ #: includes/class-wcpdf-settings-debug.php:58
321
+ msgid "Temporary folder moved to %s"
322
+ msgstr ""
323
+
324
+ #: includes/class-wcpdf-settings-debug.php:68
325
+ msgid "Reinstall fonts"
326
+ msgstr ""
327
+
328
+ #: includes/class-wcpdf-settings-debug.php:89
329
+ msgid "Fonts reinstalled!"
330
+ msgstr ""
331
+
332
+ #: includes/class-wcpdf-settings-debug.php:98
333
+ msgid "Remove temporary files"
334
+ msgstr ""
335
+
336
+ #: includes/class-wcpdf-settings-debug.php:109
337
+ msgid "Unable to read temporary folder contents!"
338
+ msgstr ""
339
+
340
+ #. translators: 1,2. file count
341
+ #: includes/class-wcpdf-settings-debug.php:127
342
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
343
+ msgstr ""
344
+
345
+ #. translators: file count
346
+ #: includes/class-wcpdf-settings-debug.php:131
347
+ msgid "Successfully deleted %d files!"
348
+ msgstr ""
349
+
350
+ #: includes/class-wcpdf-settings-debug.php:135
351
+ msgid "Nothing to delete!"
352
+ msgstr ""
353
+
354
+ #: includes/class-wcpdf-settings-debug.php:146
355
+ msgid "Delete legacy (1.X) settings"
356
+ msgstr ""
357
+
358
+ #: includes/class-wcpdf-settings-debug.php:162
359
+ msgid "Legacy settings deleted!"
360
+ msgstr ""
361
+
362
+ #: includes/class-wcpdf-settings-debug.php:192
363
+ msgid "Debug settings"
364
+ msgstr "Einstellungen debuggen"
365
+
366
+ #: includes/class-wcpdf-settings-debug.php:198
367
+ msgid "Legacy mode"
368
+ msgstr "Legacy Modus "
369
+
370
+ #: includes/class-wcpdf-settings-debug.php:204
371
+ msgid ""
372
+ "Legacy mode ensures compatibility with templates and filters from previous "
373
+ "versions."
374
+ msgstr ""
375
+ "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
376
+ "früheren Versionen."
377
+
378
+ #: includes/class-wcpdf-settings-debug.php:210
379
+ msgid "Legacy textdomain fallback"
380
+ msgstr ""
381
+
382
+ #: includes/class-wcpdf-settings-debug.php:216
383
+ msgid ""
384
+ "Legacy textdomain fallback ensures compatibility with translation files from "
385
+ "versions prior to 2017-05-15."
386
+ msgstr ""
387
+
388
+ #: includes/class-wcpdf-settings-debug.php:222
389
+ msgid "Allow guest access"
390
+ msgstr ""
391
+
392
+ #: includes/class-wcpdf-settings-debug.php:228
393
+ msgid ""
394
+ "Enable this to allow customers that purchase without an account to access "
395
+ "their PDF with a unique key"
396
+ msgstr ""
397
+
398
+ #: includes/class-wcpdf-settings-debug.php:234
399
+ msgid "Calculate document numbers (slow)"
400
+ msgstr ""
401
+
402
+ #: includes/class-wcpdf-settings-debug.php:240
403
+ msgid ""
404
+ "Document numbers (such as invoice numbers) are generated using "
405
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
406
+ "with more than 1."
407
+ msgstr ""
408
+
409
+ #: includes/class-wcpdf-settings-debug.php:246
410
+ msgid "Enable debug output"
411
+ msgstr "Debug Ausgabe Aktivieren"
412
+
413
+ #: includes/class-wcpdf-settings-debug.php:252
414
+ msgid ""
415
+ "Enable this option to output plugin errors if you're getting a blank page or "
416
+ "other PDF generation issues"
417
+ msgstr ""
418
+ "Diese Option aktivieren um Fehler auszugeben, wenn beim Generieren der PDF "
419
+ "Probleme auftreten sollten. "
420
+
421
+ #: includes/class-wcpdf-settings-debug.php:253
422
+ msgid ""
423
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
424
+ "places on your site too, therefor this is not recommended to leave it "
425
+ "enabled on live sites."
426
+ msgstr ""
427
+
428
+ #: includes/class-wcpdf-settings-debug.php:254
429
+ msgid ""
430
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
431
+ "order basis."
432
+ msgstr ""
433
+
434
+ #: includes/class-wcpdf-settings-debug.php:260
435
+ msgid "Enable automatic cleanup"
436
+ msgstr ""
437
+
438
+ #. translators: number of days
439
+ #: includes/class-wcpdf-settings-debug.php:268
440
+ msgid "every %s days"
441
+ msgstr ""
442
+
443
+ #: includes/class-wcpdf-settings-debug.php:273
444
+ msgid ""
445
+ "Automatically clean up PDF files stored in the temporary folder (used for "
446
+ "email attachments)"
447
+ msgstr ""
448
+
449
+ #: includes/class-wcpdf-settings-debug.php:274
450
+ msgid ""
451
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
452
+ "automatic cleanup but not enabled on your server."
453
+ msgstr ""
454
+
455
+ #: includes/class-wcpdf-settings-debug.php:280
456
+ msgid "Output to HTML"
457
+ msgstr "Als HTML ausgeben"
458
+
459
+ #: includes/class-wcpdf-settings-debug.php:286
460
+ msgid ""
461
+ "Send the template output as HTML to the browser instead of creating a PDF."
462
+ msgstr ""
463
+ "Die Template-Ausgabe als HTML an den Browser senden, anstatt eine PDF zu "
464
+ "erstellen."
465
+
466
+ #: includes/class-wcpdf-settings-debug.php:287
467
+ msgid ""
468
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
469
+ "order basis."
470
+ msgstr ""
471
+
472
+ #: includes/class-wcpdf-settings-debug.php:293
473
+ msgid "Use alternative HTML5 parser to parse HTML"
474
+ msgstr ""
475
+
476
+ #: includes/class-wcpdf-settings-debug.php:304
477
+ msgid "Log to order notes"
478
+ msgstr ""
479
+
480
+ #: includes/class-wcpdf-settings-debug.php:310
481
+ msgid "Log PDF document creation to order notes."
482
+ msgstr ""
483
+
484
+ #: includes/class-wcpdf-settings-documents.php:30
485
+ #: includes/class-wcpdf-settings.php:104
486
+ msgid "Documents"
487
+ msgstr "Dokumente"
488
+
489
+ #: includes/class-wcpdf-settings-documents.php:36
490
+ #: includes/class-wcpdf-settings-documents.php:57
491
+ msgid "untitled"
492
+ msgstr ""
493
+
494
+ #: includes/class-wcpdf-settings-documents.php:50
495
+ msgid ""
496
+ "All available documents are listed below. Click on a document to configure "
497
+ "it."
498
+ msgstr ""
499
+ "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
500
+ "Dokument, um es zu konfigurieren."
501
+
502
+ #: includes/class-wcpdf-settings-general.php:40
503
+ msgid "General settings"
504
+ msgstr "Allgemeine Einstellungen"
505
+
506
+ #: includes/class-wcpdf-settings-general.php:46
507
+ msgid "How do you want to view the PDF?"
508
+ msgstr "Wie soll das PDF angezeigt werden?"
509
+
510
+ #: includes/class-wcpdf-settings-general.php:53
511
+ msgid "Download the PDF"
512
+ msgstr "PDF runterladen"
513
+
514
+ #: includes/class-wcpdf-settings-general.php:54
515
+ msgid "Open the PDF in a new browser tab/window"
516
+ msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
517
+
518
+ #: includes/class-wcpdf-settings-general.php:61
519
+ msgid "Choose a template"
520
+ msgstr "Wähle ein Template"
521
+
522
+ #. translators: 1,2. template paths
523
+ #: includes/class-wcpdf-settings-general.php:69
524
+ msgid ""
525
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
526
+ "your (child) theme in <code>%2$s</code> to customize them"
527
+ msgstr ""
528
+
529
+ #: includes/class-wcpdf-settings-general.php:75
530
+ msgid "Paper size"
531
+ msgstr "Papierformat"
532
+
533
+ #: includes/class-wcpdf-settings-general.php:82
534
+ #: includes/views/setup-wizard/paper-format.php:12
535
+ msgid "A4"
536
+ msgstr "A4"
537
+
538
+ #: includes/class-wcpdf-settings-general.php:83
539
+ #: includes/views/setup-wizard/paper-format.php:13
540
+ msgid "Letter"
541
+ msgstr "Letter"
542
+
543
+ #: includes/class-wcpdf-settings-general.php:90
544
+ msgid "Test mode"
545
+ msgstr ""
546
+
547
+ #: includes/class-wcpdf-settings-general.php:96
548
+ msgid ""
549
+ "With test mode enabled, any document generated will always use the latest "
550
+ "settings, rather than using the settings as configured at the time the "
551
+ "document was first created."
552
+ msgstr ""
553
+
554
+ #: includes/class-wcpdf-settings-general.php:96
555
+ msgid ""
556
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
557
+ "setting and will still be generated."
558
+ msgstr ""
559
+
560
+ #: includes/class-wcpdf-settings-general.php:102
561
+ msgid "Extended currency symbol support"
562
+ msgstr "Support für erweiterte Währungs Zeichen"
563
+
564
+ #: includes/class-wcpdf-settings-general.php:108
565
+ msgid "Enable this if your currency symbol is not displaying properly"
566
+ msgstr ""
567
+ "Aktivieren Sie diese Option, wenn Ihr Währungssymbol nicht korrekt "
568
+ "ausgespielt wird."
569
+
570
+ #: includes/class-wcpdf-settings-general.php:114
571
+ msgid "Enable font subsetting"
572
+ msgstr ""
573
+
574
+ #: includes/class-wcpdf-settings-general.php:120
575
+ msgid ""
576
+ "Font subsetting can reduce file size by only including the characters that "
577
+ "are used in the PDF, but limits the ability to edit PDF files later. "
578
+ "Recommended if you're using an Asian font."
579
+ msgstr ""
580
+
581
+ #: includes/class-wcpdf-settings-general.php:126
582
+ msgid "Shop header/logo"
583
+ msgstr "Briefkopf-Logo"
584
+
585
+ #: includes/class-wcpdf-settings-general.php:132
586
+ #: includes/views/setup-wizard/logo.php:20
587
+ msgid "Select or upload your invoice header/logo"
588
+ msgstr "Auswählen oder hochladen des Logos"
589
+
590
+ #: includes/class-wcpdf-settings-general.php:133
591
+ #: includes/views/setup-wizard/logo.php:20
592
+ msgid "Set image"
593
+ msgstr "Logo festlegen"
594
+
595
+ #: includes/class-wcpdf-settings-general.php:134
596
+ #: includes/views/setup-wizard/logo.php:20
597
+ msgid "Remove image"
598
+ msgstr "Logo entfernen"
599
+
600
+ #: includes/class-wcpdf-settings-general.php:141
601
+ msgid "Logo height"
602
+ msgstr ""
603
+
604
+ #: includes/class-wcpdf-settings-general.php:149
605
+ msgid ""
606
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
607
+ "decimals.<br/>For example: 1.15in or 40mm"
608
+ msgstr ""
609
+
610
+ #: includes/class-wcpdf-settings-general.php:155
611
+ #: includes/class-wcpdf-setup-wizard.php:49
612
+ msgid "Shop Name"
613
+ msgstr "Name des Shops"
614
+
615
+ #: includes/class-wcpdf-settings-general.php:168
616
+ msgid "Shop Address"
617
+ msgstr "Adresse des Shops"
618
+
619
+ #: includes/class-wcpdf-settings-general.php:183
620
+ msgid "Footer: terms & conditions, policies, etc."
621
+ msgstr "Fußzeile: allgemeine Bestimmungen, etc."
622
+
623
+ #: includes/class-wcpdf-settings-general.php:198
624
+ msgid "Extra template fields"
625
+ msgstr "Zusätzliche Vorlagenfelder"
626
+
627
+ #: includes/class-wcpdf-settings-general.php:204
628
+ msgid "Extra field 1"
629
+ msgstr "Zusatzfeld 1"
630
+
631
+ #: includes/class-wcpdf-settings-general.php:212
632
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
633
+ msgstr ""
634
+ "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
635
+
636
+ #: includes/class-wcpdf-settings-general.php:219
637
+ msgid "Extra field 2"
638
+ msgstr "Zusatzfeld 2"
639
+
640
+ #: includes/class-wcpdf-settings-general.php:227
641
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
642
+ msgstr ""
643
+ "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
644
+
645
+ #: includes/class-wcpdf-settings-general.php:234
646
+ msgid "Extra field 3"
647
+ msgstr "Zusatzfeld 3"
648
+
649
+ #: includes/class-wcpdf-settings-general.php:242
650
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
651
+ msgstr ""
652
+ "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
653
+
654
+ #: includes/class-wcpdf-settings-general.php:290
655
+ msgid "Custom"
656
+ msgstr ""
657
+
658
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
659
+ msgid "PDF Invoices"
660
+ msgstr "PDF Rechnungen"
661
+
662
+ #: includes/class-wcpdf-settings.php:81
663
+ msgid "Documentation"
664
+ msgstr "Dokumentation"
665
+
666
+ #: includes/class-wcpdf-settings.php:82
667
+ msgid "Support Forum"
668
+ msgstr "Support Forum"
669
+
670
+ #. translators: database row value
671
+ #: includes/class-wcpdf-settings.php:95
672
+ msgid ""
673
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
674
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
675
+ "document numbers (slow)' setting in the Status tab to use an alternate "
676
+ "method."
677
+ msgstr ""
678
+
679
+ #: includes/class-wcpdf-settings.php:103
680
+ msgid "General"
681
+ msgstr "Allgemein"
682
+
683
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
684
+ msgid "Status"
685
+ msgstr "Status"
686
+
687
+ #. translators: 1. path, 2. template ID
688
+ #: includes/class-wcpdf-settings.php:396
689
+ msgid "Template setting migrated from %1$s to %2$s"
690
+ msgstr ""
691
+
692
+ #: includes/class-wcpdf-setup-wizard.php:53
693
+ #: includes/views/setup-wizard/logo.php:3
694
+ msgid "Your logo"
695
+ msgstr ""
696
+
697
+ #: includes/class-wcpdf-setup-wizard.php:57
698
+ msgid "Attachments"
699
+ msgstr ""
700
+
701
+ #: includes/class-wcpdf-setup-wizard.php:61
702
+ #: includes/views/setup-wizard/display-options.php:3
703
+ msgid "Display options"
704
+ msgstr ""
705
+
706
+ #: includes/class-wcpdf-setup-wizard.php:65
707
+ #: includes/views/setup-wizard/paper-format.php:3
708
+ msgid "Paper format"
709
+ msgstr ""
710
+
711
+ #: includes/class-wcpdf-setup-wizard.php:69
712
+ #: includes/views/setup-wizard/show-action-buttons.php:3
713
+ msgid "Action buttons"
714
+ msgstr ""
715
+
716
+ #: includes/class-wcpdf-setup-wizard.php:73
717
+ msgid "Ready!"
718
+ msgstr ""
719
+
720
+ #: includes/class-wcpdf-setup-wizard.php:135
721
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
722
+ msgstr ""
723
+
724
+ #: includes/class-wcpdf-setup-wizard.php:187
725
+ msgid "Previous"
726
+ msgstr ""
727
+
728
+ #: includes/class-wcpdf-setup-wizard.php:192
729
+ msgid "Next"
730
+ msgstr ""
731
+
732
+ #: includes/class-wcpdf-setup-wizard.php:193
733
+ msgid "Skip this step"
734
+ msgstr ""
735
+
736
+ #: includes/class-wcpdf-setup-wizard.php:195
737
+ msgid "Finish"
738
+ msgstr ""
739
+
740
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
741
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
742
+ msgid "N/A"
743
+ msgstr "nicht verfügbar"
744
+
745
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
746
+ msgid "Payment method"
747
+ msgstr "Zahlungsart"
748
+
749
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
750
+ msgid "Shipping method"
751
+ msgstr "Versandart"
752
+
753
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
754
+ msgid "Subtotal"
755
+ msgstr "Zwischensumme"
756
+
757
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
758
+ msgid "Shipping"
759
+ msgstr "Versand"
760
+
761
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
762
+ msgid "Discount"
763
+ msgstr "Rabatt"
764
+
765
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
766
+ msgid "VAT"
767
+ msgstr "MwSt."
768
+
769
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
770
+ msgid "Tax rate"
771
+ msgstr "MwSt-Satz"
772
+
773
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
774
+ msgid "Total ex. VAT"
775
+ msgstr "Gesamtsumme ohne MwSt."
776
+
777
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
778
+ msgid "Total"
779
+ msgstr "Gesamtsumme"
780
+
781
+ #. translators: 1. credit note title, 2. refund id
782
+ #: includes/documents/abstract-wcpdf-order-document.php:336
783
+ msgid "%1$s (refund #%2$s) was regenerated."
784
+ msgstr ""
785
+
786
+ #. translators: 1. credit note title, 2. refund id
787
+ #: includes/documents/abstract-wcpdf-order-document.php:336
788
+ msgid "%s was regenerated"
789
+ msgstr ""
790
+
791
+ #. translators: %s: document name
792
+ #: includes/documents/abstract-wcpdf-order-document.php:422
793
+ msgid "%s Number:"
794
+ msgstr ""
795
+
796
+ #. translators: %s: document name
797
+ #: includes/documents/abstract-wcpdf-order-document.php:428
798
+ msgid "%s Date:"
799
+ msgstr ""
800
+
801
+ #: includes/documents/abstract-wcpdf-order-document.php:904
802
+ msgid "Admin email"
803
+ msgstr "Admin E-Mail"
804
+
805
+ #: includes/documents/abstract-wcpdf-order-document.php:907
806
+ msgid "Manual email"
807
+ msgstr "Manuelle E-Mail"
808
+
809
+ #: includes/documents/class-wcpdf-invoice.php:32
810
+ #: includes/documents/class-wcpdf-invoice.php:56
811
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
812
+ msgid "Invoice"
813
+ msgstr "Rechnung"
814
+
815
+ #: includes/documents/class-wcpdf-invoice.php:131
816
+ msgid "invoice"
817
+ msgid_plural "invoices"
818
+ msgstr[0] "Rechnung"
819
+ msgstr[1] "Rechnungen"
820
+
821
+ #: includes/documents/class-wcpdf-invoice.php:186
822
+ #: includes/documents/class-wcpdf-packing-slip.php:88
823
+ msgid "Enable"
824
+ msgstr "Aktivieren"
825
+
826
+ #: includes/documents/class-wcpdf-invoice.php:197
827
+ msgid "Attach to:"
828
+ msgstr "Anhängen an"
829
+
830
+ #. translators: directory path
831
+ #: includes/documents/class-wcpdf-invoice.php:205
832
+ msgid ""
833
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
834
+ "permissions for this folder! Without having write access to this folder, the "
835
+ "plugin will not be able to email invoices."
836
+ msgstr ""
837
+ "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
838
+ "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
839
+ "können keine E-Mail - Rechnungen verschickt werden."
840
+
841
+ #: includes/documents/class-wcpdf-invoice.php:211
842
+ msgid "Disable for:"
843
+ msgstr ""
844
+
845
+ #: includes/documents/class-wcpdf-invoice.php:220
846
+ msgid "Select one or more statuses"
847
+ msgstr ""
848
+
849
+ #: includes/documents/class-wcpdf-invoice.php:226
850
+ #: includes/views/setup-wizard/display-options.php:17
851
+ msgid "Display shipping address"
852
+ msgstr "Lieferadresse anzeigen"
853
+
854
+ #: includes/documents/class-wcpdf-invoice.php:233
855
+ #: includes/documents/class-wcpdf-invoice.php:285
856
+ #: includes/documents/class-wcpdf-invoice.php:301
857
+ #: includes/documents/class-wcpdf-packing-slip.php:106
858
+ msgid "No"
859
+ msgstr ""
860
+
861
+ #: includes/documents/class-wcpdf-invoice.php:234
862
+ msgid "Only when different from billing address"
863
+ msgstr ""
864
+
865
+ #: includes/documents/class-wcpdf-invoice.php:235
866
+ #: includes/documents/class-wcpdf-invoice.php:378
867
+ #: includes/documents/class-wcpdf-packing-slip.php:108
868
+ msgid "Always"
869
+ msgstr "Immer"
870
+
871
+ #: includes/documents/class-wcpdf-invoice.php:243
872
+ #: includes/documents/class-wcpdf-packing-slip.php:116
873
+ #: includes/views/setup-wizard/display-options.php:26
874
+ msgid "Display email address"
875
+ msgstr "Email Adresse anzeigen"
876
+
877
+ #: includes/documents/class-wcpdf-invoice.php:254
878
+ #: includes/documents/class-wcpdf-packing-slip.php:127
879
+ #: includes/views/setup-wizard/display-options.php:35
880
+ msgid "Display phone number"
881
+ msgstr "Telefonnummer anzeigen"
882
+
883
+ #: includes/documents/class-wcpdf-invoice.php:265
884
+ #: includes/documents/class-wcpdf-packing-slip.php:138
885
+ msgid "Display customer notes"
886
+ msgstr ""
887
+
888
+ #: includes/documents/class-wcpdf-invoice.php:278
889
+ #: includes/views/setup-wizard/display-options.php:44
890
+ msgid "Display invoice date"
891
+ msgstr "Rechnungsdatum anzeigen"
892
+
893
+ #: includes/documents/class-wcpdf-invoice.php:287
894
+ msgid "Order Date"
895
+ msgstr ""
896
+
897
+ #: includes/documents/class-wcpdf-invoice.php:294
898
+ #: includes/views/setup-wizard/display-options.php:53
899
+ msgid "Display invoice number"
900
+ msgstr "Rechnungsnummer anzeigen"
901
+
902
+ #: includes/documents/class-wcpdf-invoice.php:303
903
+ msgid "Order Number"
904
+ msgstr ""
905
+
906
+ #: includes/documents/class-wcpdf-invoice.php:307
907
+ msgid "Warning!"
908
+ msgstr ""
909
+
910
+ #: includes/documents/class-wcpdf-invoice.php:308
911
+ msgid ""
912
+ "Using the Order Number as invoice number is not recommended as this may lead "
913
+ "to gaps in the invoice number sequence (even when order numbers are "
914
+ "sequential)."
915
+ msgstr ""
916
+
917
+ #: includes/documents/class-wcpdf-invoice.php:309
918
+ msgid "More information"
919
+ msgstr ""
920
+
921
+ #: includes/documents/class-wcpdf-invoice.php:316
922
+ msgid "Next invoice number (without prefix/suffix etc.)"
923
+ msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
924
+
925
+ #: includes/documents/class-wcpdf-invoice.php:322
926
+ msgid ""
927
+ "This is the number that will be used for the next document. By default, "
928
+ "numbering starts from 1 and increases for every new document. Note that if "
929
+ "you override this and set it lower than the current/highest number, this "
930
+ "could create duplicate numbers!"
931
+ msgstr ""
932
+ "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
933
+ "Normalerweise startet die Rechnungsnummerierung mit der Nummer 1und erhöht "
934
+ "sich mit jeder neuen Rechnung. Beachte bitte das die Überschreibung der "
935
+ "höchsten (PDF) Rechnungsnummer mit einer kleineren Nummer zu doppelten "
936
+ "Rechnungsnummern führen kann."
937
+
938
+ #: includes/documents/class-wcpdf-invoice.php:328
939
+ msgid "Number format"
940
+ msgstr "Nummernformat"
941
+
942
+ #: includes/documents/class-wcpdf-invoice.php:336
943
+ msgid "Prefix"
944
+ msgstr "Präfix"
945
+
946
+ #: includes/documents/class-wcpdf-invoice.php:338
947
+ msgid ""
948
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
949
+ "respectively"
950
+ msgstr ""
951
+ "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
952
+ "[invoice_year] bzw.[invoice_month]."
953
+
954
+ #: includes/documents/class-wcpdf-invoice.php:341
955
+ msgid "Suffix"
956
+ msgstr "Suffix"
957
+
958
+ #: includes/documents/class-wcpdf-invoice.php:346
959
+ msgid "Padding"
960
+ msgstr "Abstand"
961
+
962
+ #: includes/documents/class-wcpdf-invoice.php:349
963
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
964
+ msgstr ""
965
+ "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
966
+ "darzustellen"
967
+
968
+ #: includes/documents/class-wcpdf-invoice.php:352
969
+ msgid ""
970
+ "note: if you have already created a custom invoice number format with a "
971
+ "filter, the above settings will be ignored"
972
+ msgstr ""
973
+ "beachte: solltest du schon mit einem Filter ein eigenes Format der "
974
+ "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
975
+
976
+ #: includes/documents/class-wcpdf-invoice.php:358
977
+ msgid "Reset invoice number yearly"
978
+ msgstr "Rechnungsnummer jährlich zurücksetzen"
979
+
980
+ #: includes/documents/class-wcpdf-invoice.php:369
981
+ msgid "Allow My Account invoice download"
982
+ msgstr "Download der Rechnung über Mein Account zulassen"
983
+
984
+ #: includes/documents/class-wcpdf-invoice.php:376
985
+ msgid "Only when an invoice is already created/emailed"
986
+ msgstr "Nur wenn eine Rechnung erstellt/verschickt wurde"
987
+
988
+ #: includes/documents/class-wcpdf-invoice.php:377
989
+ msgid "Only for specific order statuses (define below)"
990
+ msgstr "Nur für bestimmte Auftragsstatus (Definiere unten)"
991
+
992
+ #: includes/documents/class-wcpdf-invoice.php:379
993
+ msgid "Never"
994
+ msgstr "Niemals"
995
+
996
+ #: includes/documents/class-wcpdf-invoice.php:394
997
+ msgid "Enable invoice number column in the orders list"
998
+ msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
999
+
1000
+ #: includes/documents/class-wcpdf-invoice.php:405
1001
+ msgid "Disable for free orders"
1002
+ msgstr ""
1003
+
1004
+ #. translators: zero number
1005
+ #: includes/documents/class-wcpdf-invoice.php:412
1006
+ msgid "Disable document when the order total is %s"
1007
+ msgstr ""
1008
+
1009
+ #: includes/documents/class-wcpdf-invoice.php:418
1010
+ msgid "Always use most current settings"
1011
+ msgstr ""
1012
+
1013
+ #: includes/documents/class-wcpdf-invoice.php:424
1014
+ msgid ""
1015
+ "When enabled, the document will always reflect the most current settings "
1016
+ "(such as footer text, document name, etc.) rather than using historical "
1017
+ "settings."
1018
+ msgstr ""
1019
+
1020
+ #: includes/documents/class-wcpdf-invoice.php:426
1021
+ msgid ""
1022
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1023
+ "your company name or address in the future, previously generated documents "
1024
+ "will also be affected."
1025
+ msgstr ""
1026
+
1027
+ #: includes/documents/class-wcpdf-invoice.php:439
1028
+ msgid "Invoice numbers are created by a third-party extension."
1029
+ msgstr "Rechnungsnummern werden von einer Drittanbieter-Erweiterung erstellt."
1030
+
1031
+ #. translators: link
1032
+ #: includes/documents/class-wcpdf-invoice.php:442
1033
+ msgid "Configure it <a href=\"%s\">here</a>."
1034
+ msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
1035
+
1036
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1037
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1038
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1039
+ msgid "Packing Slip"
1040
+ msgstr "Lieferschein"
1041
+
1042
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1043
+ msgid "packing-slip"
1044
+ msgid_plural "packing-slips"
1045
+ msgstr[0] "Lieferschein"
1046
+ msgstr[1] "Lieferscheine"
1047
+
1048
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1049
+ msgid "Display billing address"
1050
+ msgstr "Rechnungsadresse anzeigen"
1051
+
1052
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1053
+ msgid "Only when different from shipping address"
1054
+ msgstr ""
1055
+
1056
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1057
+ msgid "Packing Slip Number:"
1058
+ msgstr ""
1059
+
1060
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1061
+ msgid "Packing Slip Date:"
1062
+ msgstr ""
1063
+
1064
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1065
+ msgid "Legacy Document"
1066
+ msgstr "Legacy Dokument"
1067
+
1068
+ #: includes/legacy/class-wcpdf-legacy.php:72
1069
+ msgid "Error"
1070
+ msgstr "Fehler"
1071
+
1072
+ #: includes/legacy/class-wcpdf-legacy.php:73
1073
+ msgid ""
1074
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1075
+ "mode has been activated, please try again by reloading this page."
1076
+ msgstr ""
1077
+ "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
1078
+ "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
1079
+ "indem Sie diese Seite neu laden."
1080
+
1081
+ #: includes/legacy/class-wcpdf-legacy.php:76
1082
+ msgid "The following function was called"
1083
+ msgstr "Die folgende Funktion wurde aufgerufen"
1084
+
1085
+ #. translators: <a> tags
1086
+ #: includes/views/attachment-settings-hint.php:23
1087
+ msgid ""
1088
+ "It looks like you haven't setup any email attachments yet, check the "
1089
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1090
+ msgstr ""
1091
+
1092
+ #: includes/views/dompdf-status.php:11
1093
+ msgid "7.1+ (7.4 or higher recommended)"
1094
+ msgstr ""
1095
+
1096
+ #: includes/views/dompdf-status.php:24
1097
+ msgid "Recommended, will use fallback functions"
1098
+ msgstr ""
1099
+
1100
+ #: includes/views/dompdf-status.php:30
1101
+ msgid "Required if you have images in your documents"
1102
+ msgstr ""
1103
+
1104
+ #: includes/views/dompdf-status.php:39
1105
+ msgid "To compress PDF documents"
1106
+ msgstr ""
1107
+
1108
+ #: includes/views/dompdf-status.php:42
1109
+ msgid "Recommended to compress PDF documents"
1110
+ msgstr ""
1111
+
1112
+ #: includes/views/dompdf-status.php:45
1113
+ msgid "For better performances"
1114
+ msgstr ""
1115
+
1116
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1117
+ msgid "Recommended for better performances"
1118
+ msgstr ""
1119
+
1120
+ #: includes/views/dompdf-status.php:51
1121
+ msgid "Better with transparent PNG images"
1122
+ msgstr ""
1123
+
1124
+ #: includes/views/dompdf-status.php:57
1125
+ msgid ""
1126
+ "Required to detect custom templates and to clear the temp folder periodically"
1127
+ msgstr ""
1128
+
1129
+ #: includes/views/dompdf-status.php:60
1130
+ msgid "Check PHP disable_functions"
1131
+ msgstr ""
1132
+
1133
+ #. translators: <a> tags
1134
+ #: includes/views/dompdf-status.php:64
1135
+ msgid ""
1136
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1137
+ "WordPress Memory Limit%2$s"
1138
+ msgstr ""
1139
+
1140
+ #: includes/views/dompdf-status.php:69
1141
+ msgid "Allow remote stylesheets and images"
1142
+ msgstr ""
1143
+
1144
+ #: includes/views/dompdf-status.php:72
1145
+ msgid "allow_url_fopen disabled"
1146
+ msgstr ""
1147
+
1148
+ #: includes/views/dompdf-status.php:75
1149
+ msgid "To compress and decompress font data"
1150
+ msgstr ""
1151
+
1152
+ #: includes/views/dompdf-status.php:78
1153
+ msgid "base64_decode disabled"
1154
+ msgstr ""
1155
+
1156
+ #. translators: <a> tags
1157
+ #: includes/views/dompdf-status.php:98
1158
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1159
+ msgstr ""
1160
+
1161
+ #: includes/views/dompdf-status.php:103
1162
+ msgid "System Configuration"
1163
+ msgstr ""
1164
+
1165
+ #: includes/views/dompdf-status.php:108
1166
+ msgid "Required"
1167
+ msgstr ""
1168
+
1169
+ #: includes/views/dompdf-status.php:109
1170
+ msgid "Present"
1171
+ msgstr ""
1172
+
1173
+ #: includes/views/dompdf-status.php:148
1174
+ msgid "Writable"
1175
+ msgstr ""
1176
+
1177
+ #: includes/views/dompdf-status.php:149
1178
+ msgid "Not writable"
1179
+ msgstr ""
1180
+
1181
+ #: includes/views/dompdf-status.php:154
1182
+ msgid "Central temporary plugin folder"
1183
+ msgstr ""
1184
+
1185
+ #: includes/views/dompdf-status.php:160
1186
+ msgid "Temporary attachments folder"
1187
+ msgstr ""
1188
+
1189
+ #: includes/views/dompdf-status.php:166
1190
+ msgid "Temporary DOMPDF folder"
1191
+ msgstr ""
1192
+
1193
+ #: includes/views/dompdf-status.php:172
1194
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1195
+ msgstr ""
1196
+
1197
+ #: includes/views/dompdf-status.php:183
1198
+ msgid "Write Permissions"
1199
+ msgstr ""
1200
+
1201
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1202
+ #: templates/Simple/packing-slip.php:88
1203
+ msgid "Description"
1204
+ msgstr "Beschreibung"
1205
+
1206
+ #: includes/views/dompdf-status.php:187
1207
+ msgid "Value"
1208
+ msgstr ""
1209
+
1210
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1211
+ #: includes/views/dompdf-status.php:213
1212
+ msgid ""
1213
+ "The central temp folder is %1$s. By default, this folder is created in the "
1214
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1215
+ "config.php. Alternatively, you can control the specific folder for PDF "
1216
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1217
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1218
+ "by the plugin if the central temp folder is writable)."
1219
+ msgstr ""
1220
+
1221
+ #. translators: directory path
1222
+ #: includes/views/dompdf-status.php:226
1223
+ msgid ""
1224
+ "If the temporary folders were not automatically created by the plugin, "
1225
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1226
+ "Normally, this is fully automated, but if your server has strict security "
1227
+ "settings, this automated copying may have been prohibited. In that case, you "
1228
+ "also need to make sure these folders get synchronized on plugin updates!"
1229
+ msgstr ""
1230
+
1231
+ #: includes/views/setup-wizard/attach-to.php:3
1232
+ msgid "Attach too..."
1233
+ msgstr ""
1234
+
1235
+ #: includes/views/setup-wizard/attach-to.php:4
1236
+ msgid "Select to which emails you would like to attach your invoice."
1237
+ msgstr ""
1238
+
1239
+ #: includes/views/setup-wizard/display-options.php:4
1240
+ msgid "Select some additional display options for your invoice."
1241
+ msgstr ""
1242
+
1243
+ #: includes/views/setup-wizard/good-to-go.php:3
1244
+ msgid "You are good to go!"
1245
+ msgstr ""
1246
+
1247
+ #: includes/views/setup-wizard/good-to-go.php:4
1248
+ msgid "If you have any questions please have a look at our documentation:"
1249
+ msgstr ""
1250
+
1251
+ #: includes/views/setup-wizard/good-to-go.php:5
1252
+ msgid "Invoices & Packing Slips"
1253
+ msgstr ""
1254
+
1255
+ #: includes/views/setup-wizard/good-to-go.php:6
1256
+ msgid "Happy selling!"
1257
+ msgstr ""
1258
+
1259
+ #: includes/views/setup-wizard/logo.php:4
1260
+ msgid "Set the header image that will display on your invoice."
1261
+ msgstr ""
1262
+
1263
+ #: includes/views/setup-wizard/paper-format.php:4
1264
+ msgid "Select the paper format for your invoice."
1265
+ msgstr ""
1266
+
1267
+ #: includes/views/setup-wizard/shop-name.php:3
1268
+ msgid "Enter your shop name"
1269
+ msgstr ""
1270
+
1271
+ #: includes/views/setup-wizard/shop-name.php:4
1272
+ msgid ""
1273
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1274
+ "shop in the fields on the right."
1275
+ msgstr ""
1276
+
1277
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1278
+ msgid ""
1279
+ "Would you like to display the action buttons in your WooCommerce order list? "
1280
+ "The action buttons allow you to manually create a PDF."
1281
+ msgstr ""
1282
+
1283
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1284
+ msgid "(You can always change this setting later via the Screen Options menu)"
1285
+ msgstr ""
1286
+
1287
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1288
+ msgid "Show action buttons"
1289
+ msgstr ""
1290
+
1291
+ #: includes/views/wcpdf-extensions.php:16
1292
+ msgid "Check out these premium extensions!"
1293
+ msgstr "Premium Erweiterungen schon gesehen?"
1294
+
1295
+ #: includes/views/wcpdf-extensions.php:17
1296
+ msgid "click items to read more"
1297
+ msgstr "klicke Elemente um weiterzulesen"
1298
+
1299
+ #: includes/views/wcpdf-extensions.php:22
1300
+ msgid ""
1301
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1302
+ "system"
1303
+ msgstr ""
1304
+ "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
1305
+ "Abrechnungssystem benötigen"
1306
+
1307
+ #: includes/views/wcpdf-extensions.php:24
1308
+ msgid ""
1309
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1310
+ "premium extensions:"
1311
+ msgstr ""
1312
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
1313
+ "Erweiterungen:"
1314
+
1315
+ #: includes/views/wcpdf-extensions.php:25
1316
+ msgid "Professional features:"
1317
+ msgstr "Professionelle Features:"
1318
+
1319
+ #: includes/views/wcpdf-extensions.php:27
1320
+ #: includes/views/wcpdf-extensions.php:57
1321
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1322
+ msgstr ""
1323
+ "E-Mail/Druck/Download <b>PDF Rechnungskorrektur & Proforma Rechnung</b>"
1324
+
1325
+ #: includes/views/wcpdf-extensions.php:28
1326
+ #: includes/views/wcpdf-extensions.php:58
1327
+ msgid ""
1328
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1329
+ "packing slips, for example to a drop-shipper or a supplier."
1330
+ msgstr ""
1331
+ "Sende eine separate <b>E-Mail-Benachrichtigung</b> mit (oder ohne) PDF "
1332
+ "invoices/packing slips, zum Beispiel zu einem Drop-Shipper oder einem "
1333
+ "Lieferanten."
1334
+
1335
+ #: includes/views/wcpdf-extensions.php:29
1336
+ #: includes/views/wcpdf-extensions.php:59
1337
+ msgid ""
1338
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1339
+ "document) to the WooCommerce emails of your choice."
1340
+ msgstr ""
1341
+ "Hänge <b>bis zu 3 Dateien</b> (zum Beispiel die AGB) an die WooCommerce E-"
1342
+ "Mails deiner Wahl an."
1343
+
1344
+ #: includes/views/wcpdf-extensions.php:30
1345
+ #: includes/views/wcpdf-extensions.php:60
1346
+ msgid ""
1347
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1348
+ "and credit notes or utilize the main invoice numbering system"
1349
+ msgstr ""
1350
+ "Anwendung <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
1351
+ "Rechnungen und Gutschriften oder Änderung am Hauptsystem der "
1352
+ "Rechnungsnummerierung"
1353
+
1354
+ #: includes/views/wcpdf-extensions.php:31
1355
+ #: includes/views/wcpdf-extensions.php:61
1356
+ msgid ""
1357
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1358
+ "additional custom fields, font sizes etc. without the need to create a "
1359
+ "custom template."
1360
+ msgstr ""
1361
+ "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
1362
+ "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
1363
+ "zu erstellen."
1364
+
1365
+ #: includes/views/wcpdf-extensions.php:32
1366
+ #: includes/views/wcpdf-extensions.php:62
1367
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1368
+ msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
1369
+
1370
+ #: includes/views/wcpdf-extensions.php:34
1371
+ #: includes/views/wcpdf-extensions.php:114
1372
+ msgid "Advanced, customizable templates"
1373
+ msgstr "Erweiterte, anpassbare Vorlagen"
1374
+
1375
+ #: includes/views/wcpdf-extensions.php:36
1376
+ #: includes/views/wcpdf-extensions.php:117
1377
+ msgid ""
1378
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1379
+ "your needs with a drag & drop customizer"
1380
+ msgstr ""
1381
+ "Stelle die Rechnungen (Preise, Steuern, Thumbnails) komplett per Drag- & "
1382
+ "Drop auf deine Bedürfnisse ein"
1383
+
1384
+ #: includes/views/wcpdf-extensions.php:37
1385
+ #: includes/views/wcpdf-extensions.php:118
1386
+ msgid "Two extra stylish premade templates (Modern & Business)"
1387
+ msgstr "Zwei zusätzliche stilvolle vorgefertigte Vorlagen (Modern & Business)"
1388
+
1389
+ #: includes/views/wcpdf-extensions.php:39
1390
+ #: includes/views/wcpdf-extensions.php:63
1391
+ msgid "Upload automatically to dropbox"
1392
+ msgstr "Automatischer Upload in die Dropbox"
1393
+
1394
+ #: includes/views/wcpdf-extensions.php:41
1395
+ msgid ""
1396
+ "This extension conveniently uploads all the invoices (and other pdf "
1397
+ "documents from the professional extension) that are emailed to your "
1398
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1399
+ "date!"
1400
+ msgstr ""
1401
+ "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
1402
+ "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
1403
+ "Rechnungsadministration aktuell zu halten!"
1404
+
1405
+ #: includes/views/wcpdf-extensions.php:44
1406
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1407
+ msgstr "Hol Dir das WooCommerce PDF Invoices & Packing Slips Bundle"
1408
+
1409
+ #: includes/views/wcpdf-extensions.php:53
1410
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1411
+ msgstr "Upgrade auf Pro: Proforma Rechnung, Rechnungskorrektur & mehr!"
1412
+
1413
+ #: includes/views/wcpdf-extensions.php:55
1414
+ msgid ""
1415
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1416
+ "features:"
1417
+ msgstr ""
1418
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
1419
+
1420
+ #: includes/views/wcpdf-extensions.php:65
1421
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1422
+ msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
1423
+
1424
+ #: includes/views/wcpdf-extensions.php:73
1425
+ msgid "Automatically send payment reminders to your customers"
1426
+ msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
1427
+
1428
+ #: includes/views/wcpdf-extensions.php:75
1429
+ msgid "WooCommerce Smart Reminder emails"
1430
+ msgstr "WooCommerce Smart Reminder Emails"
1431
+
1432
+ #: includes/views/wcpdf-extensions.php:77
1433
+ msgid "<b>Completely automatic</b> scheduled emails"
1434
+ msgstr "<b>Vollautomatische</b> geplant e-Mails"
1435
+
1436
+ #: includes/views/wcpdf-extensions.php:78
1437
+ msgid ""
1438
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1439
+ "from the order (name, order total, etc)"
1440
+ msgstr ""
1441
+ "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
1442
+ "aus der Bestellung (Name, Auftragssumme, etc.)"
1443
+
1444
+ #: includes/views/wcpdf-extensions.php:79
1445
+ msgid ""
1446
+ "Configure the exact requirements for sending an email (time after order, "
1447
+ "order status, payment method)"
1448
+ msgstr ""
1449
+ "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
1450
+ "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
1451
+
1452
+ #: includes/views/wcpdf-extensions.php:80
1453
+ msgid ""
1454
+ "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1455
+ "order language."
1456
+ msgstr ""
1457
+ "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
1458
+ "Bestellsprache versendet."
1459
+
1460
+ #: includes/views/wcpdf-extensions.php:81
1461
+ msgid ""
1462
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1463
+ "reminders, repeat purchases)"
1464
+ msgstr ""
1465
+ "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
1466
+ "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
1467
+
1468
+ #: includes/views/wcpdf-extensions.php:82
1469
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1470
+ msgstr ""
1471
+ "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
1472
+
1473
+ #: includes/views/wcpdf-extensions.php:84
1474
+ msgid "Get WooCommerce Smart Reminder Emails"
1475
+ msgstr "WooCommerce Smart Reminder EMails ordern"
1476
+
1477
+ #: includes/views/wcpdf-extensions.php:93
1478
+ msgid ""
1479
+ "Automatically send new orders or packing slips to your printer, as soon as "
1480
+ "the customer orders!"
1481
+ msgstr ""
1482
+ "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
1483
+ "sobald ein Kunde bestellt."
1484
+
1485
+ #: includes/views/wcpdf-extensions.php:99
1486
+ msgid ""
1487
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1488
+ "partners at Simba Hosting"
1489
+ msgstr ""
1490
+ "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
1491
+ "Partner Simba Hosting "
1492
+
1493
+ #: includes/views/wcpdf-extensions.php:100
1494
+ msgid "WooCommerce Automatic Order Printing"
1495
+ msgstr "WooCommerce Automatic Order Printing"
1496
+
1497
+ #. translators: Premium Templates link
1498
+ #: includes/views/wcpdf-extensions.php:120
1499
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1500
+ msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
1501
+
1502
+ #. translators: email link
1503
+ #: includes/views/wcpdf-extensions.php:122
1504
+ msgid "For custom templates, contact us at %s."
1505
+ msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
1506
+
1507
+ #: includes/views/wcpdf-settings-page.php:9
1508
+ msgid "WooCommerce PDF Invoices"
1509
+ msgstr "WooCommerce PDF Rechnungen"
1510
+
1511
+ #: includes/wcpdf-functions.php:209
1512
+ msgid "Error creating PDF, please contact the site owner."
1513
+ msgstr ""
1514
+
1515
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1516
+ msgid "Billing Address:"
1517
+ msgstr "Rechnungsadresse:"
1518
+
1519
+ #: templates/Simple/invoice.php:48
1520
+ msgid "Ship To:"
1521
+ msgstr "Versand nach:"
1522
+
1523
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1524
+ msgid "Order Number:"
1525
+ msgstr "Bestellnummer:"
1526
+
1527
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1528
+ msgid "Order Date:"
1529
+ msgstr "Bestelldatum:"
1530
+
1531
+ #: templates/Simple/invoice.php:78
1532
+ msgid "Payment Method:"
1533
+ msgstr "Zahlungsart:"
1534
+
1535
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1536
+ msgid "Product"
1537
+ msgstr "Produkt"
1538
+
1539
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1540
+ msgid "Quantity"
1541
+ msgstr "Anzahl"
1542
+
1543
+ #: templates/Simple/invoice.php:94
1544
+ msgid "Price"
1545
+ msgstr "Preis"
1546
+
1547
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1548
+ msgid "SKU"
1549
+ msgstr "Art.-Nr."
1550
+
1551
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1552
+ msgid "SKU:"
1553
+ msgstr "Art.-Nr.:"
1554
+
1555
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1556
+ msgid "Weight:"
1557
+ msgstr "Gewicht:"
1558
+
1559
+ #: templates/Simple/invoice.php:123
1560
+ msgid "Notes"
1561
+ msgstr ""
1562
+
1563
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1564
+ msgid "Customer Notes"
1565
+ msgstr "Anmerkungen"
1566
+
1567
+ #: templates/Simple/packing-slip.php:35
1568
+ msgid "Shipping Address:"
1569
+ msgstr "Lieferadresse:"
1570
+
1571
+ #: templates/Simple/packing-slip.php:66
1572
+ msgid "Shipping Method:"
1573
+ msgstr "Versandart:"
1574
+
1575
+ #. translators: <a> tags
1576
+ #: woocommerce-pdf-invoices-packingslips.php:271
1577
+ msgid ""
1578
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1579
+ "installed & activated!"
1580
+ msgstr ""
1581
+
1582
+ #: woocommerce-pdf-invoices-packingslips.php:282
1583
+ msgid ""
1584
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1585
+ "recommended)."
1586
+ msgstr ""
1587
+
1588
+ #. translators: <a> tags
1589
+ #: woocommerce-pdf-invoices-packingslips.php:284
1590
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1591
+ msgstr ""
1592
+
1593
+ #. translators: <a> tags
1594
+ #: woocommerce-pdf-invoices-packingslips.php:286
1595
+ msgid ""
1596
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1597
+ "to enable backwards compatibility with PHP5.6."
1598
+ msgstr ""
1599
+
1600
+ #. translators: directory path
1601
+ #: woocommerce-pdf-invoices-packingslips.php:374
1602
+ msgid ""
1603
+ "The PDF files in %s are not currently protected due to your site running on "
1604
+ "<strong>NGINX</strong>."
1605
+ msgstr ""
1606
+
1607
+ #: woocommerce-pdf-invoices-packingslips.php:375
1608
+ msgid "To protect them, you must click the button below."
1609
+ msgstr ""
1610
+
1611
+ #. translators: plugin name
1612
+ #: woocommerce-pdf-invoices-packingslips.php:419
1613
+ msgid ""
1614
+ "When sending emails with MailPoet 3 and the active sending method is "
1615
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1616
+ "the emails."
1617
+ msgstr ""
1618
+
1619
+ #. translators: "Your web host / web server"
1620
+ #: woocommerce-pdf-invoices-packingslips.php:421
1621
+ msgid "To fix this you should select other method like %1$s or %2$s."
1622
+ msgstr ""
1623
+
1624
+ #. translators: "Your web host / web server"
1625
+ #: woocommerce-pdf-invoices-packingslips.php:421
1626
+ msgid "Your web host / web server"
1627
+ msgstr ""
1628
+
1629
+ #: woocommerce-pdf-invoices-packingslips.php:422
1630
+ msgid "Change MailPoet sending method"
1631
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-de_DE_formal.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-de_DE_formal.po CHANGED
@@ -1,1774 +1,1629 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:18+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: PROnatur24 <info@pronatur24.eu>\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
- "X-Generator: Poedit 3.0\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #. Plugin Name of the plugin
22
- msgid "WooCommerce PDF Invoices & Packing Slips"
23
- msgstr "WooCommerce PDF Invoices & Packing Slips"
24
-
25
- #. Plugin URI of the plugin
26
- #. Author URI of the plugin
27
- msgid "http://www.wpovernight.com"
28
- msgstr "http://www.wpovernight.com"
29
-
30
- #. Description of the plugin
31
- msgid ""
32
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
- msgstr ""
34
-
35
- #. Author of the plugin
36
- msgid "Ewout Fernhout"
37
- msgstr "Ewout Fernhout"
38
-
39
- #. translators: rounded count
40
- #: includes/class-wcpdf-admin.php:92
41
- msgid "Wow, you have created more than %d invoices with our plugin!"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:93
45
- msgid ""
46
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
- "rating. Help us spread the word and boost our motivation!"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:95
51
- msgid "Yes you deserve it!"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
- #: includes/views/attachment-settings-hint.php:24
56
- #: includes/views/wcpdf-extensions.php:131
57
- #: woocommerce-pdf-invoices-packingslips.php:377
58
- #: woocommerce-pdf-invoices-packingslips.php:423
59
- msgid "Hide this message"
60
- msgstr "Diese Nachricht ausblenden"
61
-
62
- #: includes/class-wcpdf-admin.php:96
63
- msgid "Already did!"
64
- msgstr ""
65
-
66
- #: includes/class-wcpdf-admin.php:97
67
- msgid "Actually, I have a complaint..."
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:132
71
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:132
75
- msgid "Jumpstart the plugin by following our wizard!"
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:133
79
- msgid "Run the Setup Wizard"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:133
83
- msgid "I am the wizard"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
- #: includes/documents/class-wcpdf-invoice.php:302
88
- msgid "Invoice Number"
89
- msgstr "Rechnungsnummer"
90
-
91
- #: includes/class-wcpdf-admin.php:261
92
- msgid "Send order email"
93
- msgstr ""
94
-
95
- #: includes/class-wcpdf-admin.php:272
96
- msgid "Create PDF"
97
- msgstr "PDF erstellen"
98
-
99
- #: includes/class-wcpdf-admin.php:282
100
- msgid "PDF document data"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:304
104
- msgid "Choose an email to send&hellip;"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-admin.php:320
108
- msgid "Save order & send email"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:322
112
- msgid "Send email"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:378
116
- #: includes/documents/class-wcpdf-invoice.php:460
117
- msgid "Invoice Number:"
118
- msgstr "Rechnungsnummer:"
119
-
120
- #: includes/class-wcpdf-admin.php:381
121
- #: includes/documents/class-wcpdf-invoice.php:468
122
- msgid "Invoice Date:"
123
- msgstr "Rechnungsdatum:"
124
-
125
- #: includes/class-wcpdf-admin.php:384
126
- msgid "Notes (printed in the invoice):"
127
- msgstr ""
128
-
129
- #. translators: document title
130
- #: includes/class-wcpdf-admin.php:469
131
- msgid "Set %s number & date"
132
- msgstr ""
133
-
134
- #: includes/class-wcpdf-admin.php:478
135
- msgid "unformatted!"
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-admin.php:518
139
- msgid "Save changes"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:519
143
- msgid "Cancel"
144
- msgstr ""
145
-
146
- #. translators: name/description of the context for document creation logs
147
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
- msgid "order details (number and/or date set manually)"
149
- msgstr ""
150
-
151
- #. translators: %s: email title
152
- #: includes/class-wcpdf-admin.php:647
153
- msgid "%s email notification manually sent."
154
- msgstr ""
155
-
156
- #: includes/class-wcpdf-admin.php:734
157
- msgid "Nonce expired!"
158
- msgstr ""
159
-
160
- #: includes/class-wcpdf-admin.php:740
161
- msgid "Bad action!"
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:746
165
- msgid "Incomplete request!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:752
169
- msgid "No permissions!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:776
173
- msgid "Document data saved!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:777
177
- msgid "An error occurred while saving the document data!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:780
181
- msgid "Document regenerated!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:781
185
- msgid "An error occurred while regenerating the document!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:784
189
- msgid "Document deleted!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:785
193
- msgid "An error occurred while deleting the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:841
197
- msgid "Document does not exist."
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:850
201
- msgid "Document is empty."
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:881
205
- msgid "DEBUG output enabled"
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-assets.php:91
209
- msgid "Are you sure you want to delete this document? This cannot be undone."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-assets.php:92
213
- msgid ""
214
- "Are you sure you want to regenerate this document? This will make the "
215
- "document reflect the most current settings (such as footer text, document "
216
- "name, etc.) rather than using historical settings."
217
- msgstr ""
218
-
219
- #: includes/class-wcpdf-frontend.php:126
220
- msgid "Download invoice (PDF)"
221
- msgstr "Rechnung runterladen (PDF)"
222
-
223
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
224
- #: includes/class-wcpdf-main.php:338
225
- msgid "You do not have sufficient permissions to access this page."
226
- msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
227
-
228
- #: includes/class-wcpdf-main.php:275
229
- msgid "You haven't selected any orders"
230
- msgstr ""
231
-
232
- #: includes/class-wcpdf-main.php:279
233
- msgid "Some of the export parameters are missing."
234
- msgstr "Einige der Exportparameter fehlen."
235
-
236
- #. translators: document type
237
- #: includes/class-wcpdf-main.php:379
238
- msgid "Document of type '%s' for the selected order(s) could not be generated"
239
- msgstr ""
240
-
241
- #. translators: 1. plugin name, 2. directory path
242
- #: includes/class-wcpdf-main.php:591
243
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
- msgstr ""
245
-
246
- #: includes/class-wcpdf-main.php:592
247
- msgid ""
248
- "Please check your directories write permissions or contact your hosting "
249
- "service provider."
250
- msgstr ""
251
-
252
- #: includes/class-wcpdf-main.php:907
253
- #: includes/documents/class-wcpdf-invoice.php:286
254
- msgid "Invoice Date"
255
- msgstr ""
256
-
257
- #. translators: name/description of the context for document creation logs
258
- #: includes/class-wcpdf-main.php:937
259
- msgid "bulk order action"
260
- msgstr ""
261
-
262
- #. translators: name/description of the context for document creation logs
263
- #: includes/class-wcpdf-main.php:945
264
- msgid "single order action"
265
- msgstr ""
266
-
267
- #. translators: name/description of the context for document creation logs
268
- #: includes/class-wcpdf-main.php:953
269
- msgid "my account"
270
- msgstr ""
271
-
272
- #. translators: name/description of the context for document creation logs
273
- #: includes/class-wcpdf-main.php:961
274
- msgid "email attachment"
275
- msgstr ""
276
-
277
- #. translators: 1. document title, 2. creation source
278
- #: includes/class-wcpdf-main.php:970
279
- msgid "PDF %1$s created via %2$s."
280
- msgstr ""
281
-
282
- #. translators: document title
283
- #: includes/class-wcpdf-main.php:1006
284
- msgid "Order %s Saved"
285
- msgstr ""
286
-
287
- #: includes/class-wcpdf-settings-callbacks.php:27
288
- msgid ""
289
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
- "Do not use them on a live website!"
291
- msgstr ""
292
- "<b>Achtung:</b> Die folgenden Einstellungen sind nur für die Fehlersuche / "
293
- "Entwicklung gedacht. Verwenden Sie sie nicht auf einer Live-Website!"
294
-
295
- #: includes/class-wcpdf-settings-callbacks.php:36
296
- msgid ""
297
- "These are used for the (optional) footer columns in the <em>Modern "
298
- "(Premium)</em> template, but can also be used for other elements in your "
299
- "custom template"
300
- msgstr ""
301
- "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
302
- "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
303
- "deiner angepassten Vorlage verwendet werden."
304
-
305
- #: includes/class-wcpdf-settings-callbacks.php:383
306
- msgid "Image resolution"
307
- msgstr "Bildauflösung"
308
-
309
- #: includes/class-wcpdf-settings-callbacks.php:410
310
- msgid "Save"
311
- msgstr "Speichern"
312
-
313
- #: includes/class-wcpdf-settings-debug.php:45
314
- #: woocommerce-pdf-invoices-packingslips.php:376
315
- msgid "Generate random temporary folder name"
316
- msgstr ""
317
-
318
- #. translators: directory path
319
- #: includes/class-wcpdf-settings-debug.php:58
320
- msgid "Temporary folder moved to %s"
321
- msgstr ""
322
-
323
- #: includes/class-wcpdf-settings-debug.php:68
324
- msgid "Reinstall fonts"
325
- msgstr ""
326
-
327
- #: includes/class-wcpdf-settings-debug.php:89
328
- msgid "Fonts reinstalled!"
329
- msgstr ""
330
-
331
- #: includes/class-wcpdf-settings-debug.php:98
332
- msgid "Remove temporary files"
333
- msgstr ""
334
-
335
- #: includes/class-wcpdf-settings-debug.php:109
336
- msgid "Unable to read temporary folder contents!"
337
- msgstr ""
338
-
339
- #. translators: 1,2. file count
340
- #: includes/class-wcpdf-settings-debug.php:127
341
- msgid "Unable to delete %1$d files! (deleted %2$d)"
342
- msgstr ""
343
-
344
- #. translators: file count
345
- #: includes/class-wcpdf-settings-debug.php:131
346
- msgid "Successfully deleted %d files!"
347
- msgstr ""
348
-
349
- #: includes/class-wcpdf-settings-debug.php:135
350
- msgid "Nothing to delete!"
351
- msgstr ""
352
-
353
- #: includes/class-wcpdf-settings-debug.php:146
354
- msgid "Delete legacy (1.X) settings"
355
- msgstr ""
356
-
357
- #: includes/class-wcpdf-settings-debug.php:162
358
- msgid "Legacy settings deleted!"
359
- msgstr ""
360
-
361
- #: includes/class-wcpdf-settings-debug.php:192
362
- msgid "Debug settings"
363
- msgstr "Debug Einstellungen"
364
-
365
- #: includes/class-wcpdf-settings-debug.php:198
366
- msgid "Legacy mode"
367
- msgstr "Legacy mode"
368
-
369
- #: includes/class-wcpdf-settings-debug.php:204
370
- msgid ""
371
- "Legacy mode ensures compatibility with templates and filters from previous "
372
- "versions."
373
- msgstr ""
374
- "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
375
- "früheren Versionen."
376
-
377
- #: includes/class-wcpdf-settings-debug.php:210
378
- msgid "Legacy textdomain fallback"
379
- msgstr ""
380
-
381
- #: includes/class-wcpdf-settings-debug.php:216
382
- msgid ""
383
- "Legacy textdomain fallback ensures compatibility with translation files from "
384
- "versions prior to 2017-05-15."
385
- msgstr ""
386
-
387
- #: includes/class-wcpdf-settings-debug.php:222
388
- msgid "Allow guest access"
389
- msgstr ""
390
-
391
- #: includes/class-wcpdf-settings-debug.php:228
392
- msgid ""
393
- "Enable this to allow customers that purchase without an account to access "
394
- "their PDF with a unique key"
395
- msgstr ""
396
-
397
- #: includes/class-wcpdf-settings-debug.php:234
398
- msgid "Calculate document numbers (slow)"
399
- msgstr ""
400
-
401
- #: includes/class-wcpdf-settings-debug.php:240
402
- msgid ""
403
- "Document numbers (such as invoice numbers) are generated using "
404
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
405
- "with more than 1."
406
- msgstr ""
407
-
408
- #: includes/class-wcpdf-settings-debug.php:246
409
- msgid "Enable debug output"
410
- msgstr "Debug-Ausgabe aktivieren"
411
-
412
- #: includes/class-wcpdf-settings-debug.php:252
413
- msgid ""
414
- "Enable this option to output plugin errors if you're getting a blank page or "
415
- "other PDF generation issues"
416
- msgstr ""
417
- "Aktivieren Sie diese Option um Plugin-Fehler auszugeben, wenn Sie eine leere "
418
- "Seite oder andere PDF-Generierung-Probleme bekommen"
419
-
420
- #: includes/class-wcpdf-settings-debug.php:253
421
- msgid ""
422
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
423
- "places on your site too, therefor this is not recommended to leave it "
424
- "enabled on live sites."
425
- msgstr ""
426
-
427
- #: includes/class-wcpdf-settings-debug.php:254
428
- msgid ""
429
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
430
- "order basis."
431
- msgstr ""
432
-
433
- #: includes/class-wcpdf-settings-debug.php:260
434
- msgid "Enable automatic cleanup"
435
- msgstr ""
436
-
437
- #. translators: number of days
438
- #: includes/class-wcpdf-settings-debug.php:268
439
- msgid "every %s days"
440
- msgstr ""
441
-
442
- #: includes/class-wcpdf-settings-debug.php:273
443
- msgid ""
444
- "Automatically clean up PDF files stored in the temporary folder (used for "
445
- "email attachments)"
446
- msgstr ""
447
-
448
- #: includes/class-wcpdf-settings-debug.php:274
449
- msgid ""
450
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
451
- "automatic cleanup but not enabled on your server."
452
- msgstr ""
453
-
454
- #: includes/class-wcpdf-settings-debug.php:280
455
- msgid "Output to HTML"
456
- msgstr "HTML-Ausgabe"
457
-
458
- #: includes/class-wcpdf-settings-debug.php:286
459
- msgid ""
460
- "Send the template output as HTML to the browser instead of creating a PDF."
461
- msgstr ""
462
- "Senden die Ausgabe als HTML an einen Browser, anstatt ein PDF zu erstellen."
463
-
464
- #: includes/class-wcpdf-settings-debug.php:287
465
- msgid ""
466
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
467
- "order basis."
468
- msgstr ""
469
-
470
- #: includes/class-wcpdf-settings-debug.php:293
471
- msgid "Use alternative HTML5 parser to parse HTML"
472
- msgstr ""
473
-
474
- #: includes/class-wcpdf-settings-debug.php:304
475
- msgid "Log to order notes"
476
- msgstr ""
477
-
478
- #: includes/class-wcpdf-settings-debug.php:310
479
- msgid "Log PDF document creation to order notes."
480
- msgstr ""
481
-
482
- #: includes/class-wcpdf-settings-documents.php:30
483
- #: includes/class-wcpdf-settings.php:97
484
- msgid "Documents"
485
- msgstr "Dokumente"
486
-
487
- #: includes/class-wcpdf-settings-documents.php:36
488
- #: includes/class-wcpdf-settings-documents.php:57
489
- msgid "untitled"
490
- msgstr ""
491
-
492
- #: includes/class-wcpdf-settings-documents.php:50
493
- msgid ""
494
- "All available documents are listed below. Click on a document to configure "
495
- "it."
496
- msgstr ""
497
- "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
498
- "Dokument, um es zu konfigurieren."
499
-
500
- #: includes/class-wcpdf-settings-general.php:40
501
- msgid "General settings"
502
- msgstr "Allgemeine Einstellungen"
503
-
504
- #: includes/class-wcpdf-settings-general.php:46
505
- msgid "How do you want to view the PDF?"
506
- msgstr "Wie soll das PDF angezeigt werden?"
507
-
508
- #: includes/class-wcpdf-settings-general.php:53
509
- msgid "Download the PDF"
510
- msgstr "PDF runterladen"
511
-
512
- #: includes/class-wcpdf-settings-general.php:54
513
- msgid "Open the PDF in a new browser tab/window"
514
- msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
515
-
516
- #: includes/class-wcpdf-settings-general.php:61
517
- msgid "Choose a template"
518
- msgstr "Wähle ein Template"
519
-
520
- #. translators: 1,2. template paths
521
- #: includes/class-wcpdf-settings-general.php:69
522
- msgid ""
523
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
524
- "your (child) theme in <code>%2$s</code> to customize them"
525
- msgstr ""
526
-
527
- #: includes/class-wcpdf-settings-general.php:75
528
- msgid "Paper size"
529
- msgstr "Papierformat"
530
-
531
- #: includes/class-wcpdf-settings-general.php:82
532
- #: includes/views/setup-wizard/paper-format.php:12
533
- msgid "A4"
534
- msgstr "A4"
535
-
536
- #: includes/class-wcpdf-settings-general.php:83
537
- #: includes/views/setup-wizard/paper-format.php:13
538
- msgid "Letter"
539
- msgstr "Letter"
540
-
541
- #: includes/class-wcpdf-settings-general.php:90
542
- msgid "Test mode"
543
- msgstr ""
544
-
545
- #: includes/class-wcpdf-settings-general.php:96
546
- msgid ""
547
- "With test mode enabled, any document generated will always use the latest "
548
- "settings, rather than using the settings as configured at the time the "
549
- "document was first created."
550
- msgstr ""
551
-
552
- #: includes/class-wcpdf-settings-general.php:96
553
- msgid ""
554
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
555
- "setting and will still be generated."
556
- msgstr ""
557
-
558
- #: includes/class-wcpdf-settings-general.php:102
559
- msgid "Extended currency symbol support"
560
- msgstr "Support für erweiterte Währungs Zeichen"
561
-
562
- #: includes/class-wcpdf-settings-general.php:108
563
- msgid "Enable this if your currency symbol is not displaying properly"
564
- msgstr ""
565
- "Aktivieren Sie diese Option, wenn Ihre Währungssymbol nicht korrekt "
566
- "ausgespielt wird."
567
-
568
- #: includes/class-wcpdf-settings-general.php:114
569
- msgid "Enable font subsetting"
570
- msgstr ""
571
-
572
- #: includes/class-wcpdf-settings-general.php:120
573
- msgid ""
574
- "Font subsetting can reduce file size by only including the characters that "
575
- "are used in the PDF, but limits the ability to edit PDF files later. "
576
- "Recommended if you're using an Asian font."
577
- msgstr ""
578
-
579
- #: includes/class-wcpdf-settings-general.php:126
580
- msgid "Shop header/logo"
581
- msgstr "Briefkopf-Logo"
582
-
583
- #: includes/class-wcpdf-settings-general.php:132
584
- #: includes/views/setup-wizard/logo.php:20
585
- msgid "Select or upload your invoice header/logo"
586
- msgstr "Auswählen oder hochladen des Logos"
587
-
588
- #: includes/class-wcpdf-settings-general.php:133
589
- #: includes/views/setup-wizard/logo.php:20
590
- msgid "Set image"
591
- msgstr "Logo festlegen"
592
-
593
- #: includes/class-wcpdf-settings-general.php:134
594
- #: includes/views/setup-wizard/logo.php:20
595
- msgid "Remove image"
596
- msgstr "Logo entfernen"
597
-
598
- #: includes/class-wcpdf-settings-general.php:141
599
- msgid "Logo height"
600
- msgstr ""
601
-
602
- #: includes/class-wcpdf-settings-general.php:149
603
- msgid ""
604
- "Enter the total height of the logo in mm, cm or in and use a dot for "
605
- "decimals.<br/>For example: 1.15in or 40mm"
606
- msgstr ""
607
-
608
- #: includes/class-wcpdf-settings-general.php:155
609
- #: includes/class-wcpdf-setup-wizard.php:47
610
- msgid "Shop Name"
611
- msgstr "Name des Shops"
612
-
613
- #: includes/class-wcpdf-settings-general.php:168
614
- msgid "Shop Address"
615
- msgstr "Adresse des Shops"
616
-
617
- #: includes/class-wcpdf-settings-general.php:183
618
- msgid "Footer: terms & conditions, policies, etc."
619
- msgstr "Fußzeile: allgemeine Bestimmungen, etc."
620
-
621
- #: includes/class-wcpdf-settings-general.php:198
622
- msgid "Extra template fields"
623
- msgstr "Zusätzliche Vorlagenfelder"
624
-
625
- #: includes/class-wcpdf-settings-general.php:204
626
- msgid "Extra field 1"
627
- msgstr "Zusatzfeld 1"
628
-
629
- #: includes/class-wcpdf-settings-general.php:212
630
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
631
- msgstr ""
632
- "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
633
-
634
- #: includes/class-wcpdf-settings-general.php:219
635
- msgid "Extra field 2"
636
- msgstr "Zusatzfeld 2"
637
-
638
- #: includes/class-wcpdf-settings-general.php:227
639
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
640
- msgstr ""
641
- "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
642
-
643
- #: includes/class-wcpdf-settings-general.php:234
644
- msgid "Extra field 3"
645
- msgstr "Zusatzfeld 3"
646
-
647
- #: includes/class-wcpdf-settings-general.php:242
648
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
649
- msgstr ""
650
- "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
651
-
652
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
653
- msgid "PDF Invoices"
654
- msgstr "PDF Rechnungen"
655
-
656
- #: includes/class-wcpdf-settings.php:74
657
- msgid "Documentation"
658
- msgstr "Dokumentation"
659
-
660
- #: includes/class-wcpdf-settings.php:75
661
- msgid "Support Forum"
662
- msgstr "Support Forum"
663
-
664
- #. translators: database row value
665
- #: includes/class-wcpdf-settings.php:88
666
- msgid ""
667
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
668
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
669
- "document numbers (slow)' setting in the Status tab to use an alternate "
670
- "method."
671
- msgstr ""
672
-
673
- #: includes/class-wcpdf-settings.php:96
674
- msgid "General"
675
- msgstr "Allgemein"
676
-
677
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
678
- msgid "Status"
679
- msgstr "Status"
680
-
681
- #: includes/class-wcpdf-setup-wizard.php:51
682
- #: includes/views/setup-wizard/logo.php:3
683
- msgid "Your logo"
684
- msgstr ""
685
-
686
- #: includes/class-wcpdf-setup-wizard.php:55
687
- msgid "Attachments"
688
- msgstr ""
689
-
690
- #: includes/class-wcpdf-setup-wizard.php:59
691
- #: includes/views/setup-wizard/display-options.php:3
692
- msgid "Display options"
693
- msgstr ""
694
-
695
- #: includes/class-wcpdf-setup-wizard.php:63
696
- #: includes/views/setup-wizard/paper-format.php:3
697
- msgid "Paper format"
698
- msgstr ""
699
-
700
- #: includes/class-wcpdf-setup-wizard.php:67
701
- #: includes/views/setup-wizard/show-action-buttons.php:3
702
- msgid "Action buttons"
703
- msgstr ""
704
-
705
- #: includes/class-wcpdf-setup-wizard.php:71
706
- msgid "Ready!"
707
- msgstr ""
708
-
709
- #: includes/class-wcpdf-setup-wizard.php:133
710
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
711
- msgstr ""
712
-
713
- #: includes/class-wcpdf-setup-wizard.php:185
714
- msgid "Previous"
715
- msgstr ""
716
-
717
- #: includes/class-wcpdf-setup-wizard.php:190
718
- msgid "Next"
719
- msgstr ""
720
-
721
- #: includes/class-wcpdf-setup-wizard.php:191
722
- msgid "Skip this step"
723
- msgstr ""
724
-
725
- #: includes/class-wcpdf-setup-wizard.php:193
726
- msgid "Finish"
727
- msgstr ""
728
-
729
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
730
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
731
- msgid "N/A"
732
- msgstr "nicht verfügbar"
733
-
734
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
735
- msgid "Payment method"
736
- msgstr "Zahlungsart"
737
-
738
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
739
- msgid "Shipping method"
740
- msgstr "Versandart"
741
-
742
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
743
- msgid "Subtotal"
744
- msgstr "Zwischensumme"
745
-
746
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
747
- msgid "Shipping"
748
- msgstr "Versand"
749
-
750
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
751
- msgid "Discount"
752
- msgstr "Rabatt"
753
-
754
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
755
- msgid "VAT"
756
- msgstr "MwSt."
757
-
758
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
759
- msgid "Tax rate"
760
- msgstr "MwSt-Satz"
761
-
762
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
763
- msgid "Total ex. VAT"
764
- msgstr "Gesamtsumme ohne MwSt."
765
-
766
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
767
- msgid "Total"
768
- msgstr "Gesamtsumme"
769
-
770
- #. translators: 1. credit note title, 2. refund id
771
- #: includes/documents/abstract-wcpdf-order-document.php:336
772
- msgid "%1$s (refund #%2$s) was regenerated."
773
- msgstr ""
774
-
775
- #. translators: 1. credit note title, 2. refund id
776
- #: includes/documents/abstract-wcpdf-order-document.php:336
777
- msgid "%s was regenerated"
778
- msgstr ""
779
-
780
- #. translators: %s: document name
781
- #: includes/documents/abstract-wcpdf-order-document.php:422
782
- msgid "%s Number:"
783
- msgstr ""
784
-
785
- #. translators: %s: document name
786
- #: includes/documents/abstract-wcpdf-order-document.php:428
787
- msgid "%s Date:"
788
- msgstr ""
789
-
790
- #: includes/documents/abstract-wcpdf-order-document.php:891
791
- msgid "Admin email"
792
- msgstr "Admin E-Mail"
793
-
794
- #: includes/documents/abstract-wcpdf-order-document.php:894
795
- msgid "Manual email"
796
- msgstr "Manuelle E-Mail"
797
-
798
- #: includes/documents/class-wcpdf-invoice.php:32
799
- #: includes/documents/class-wcpdf-invoice.php:56
800
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
801
- msgid "Invoice"
802
- msgstr "Rechnung"
803
-
804
- # This is a filename (prefix). do not use spaces or special characters!
805
- #: includes/documents/class-wcpdf-invoice.php:131
806
- msgid "invoice"
807
- msgid_plural "invoices"
808
- msgstr[0] "Rechnung"
809
- msgstr[1] "Rechnungen"
810
-
811
- #: includes/documents/class-wcpdf-invoice.php:186
812
- #: includes/documents/class-wcpdf-packing-slip.php:88
813
- msgid "Enable"
814
- msgstr "Aktivieren"
815
-
816
- #: includes/documents/class-wcpdf-invoice.php:197
817
- msgid "Attach to:"
818
- msgstr "Anhängen an"
819
-
820
- #. translators: directory path
821
- #: includes/documents/class-wcpdf-invoice.php:205
822
- msgid ""
823
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
824
- "permissions for this folder! Without having write access to this folder, the "
825
- "plugin will not be able to email invoices."
826
- msgstr ""
827
- "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
828
- "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
829
- "können keine E-Mail - Rechnungen verschickt werden."
830
-
831
- #: includes/documents/class-wcpdf-invoice.php:211
832
- msgid "Disable for:"
833
- msgstr ""
834
-
835
- #: includes/documents/class-wcpdf-invoice.php:220
836
- msgid "Select one or more statuses"
837
- msgstr ""
838
-
839
- #: includes/documents/class-wcpdf-invoice.php:226
840
- #: includes/views/setup-wizard/display-options.php:17
841
- msgid "Display shipping address"
842
- msgstr "Lieferadresse anzeigen"
843
-
844
- #: includes/documents/class-wcpdf-invoice.php:233
845
- #: includes/documents/class-wcpdf-invoice.php:285
846
- #: includes/documents/class-wcpdf-invoice.php:301
847
- #: includes/documents/class-wcpdf-packing-slip.php:106
848
- msgid "No"
849
- msgstr ""
850
-
851
- #: includes/documents/class-wcpdf-invoice.php:234
852
- msgid "Only when different from billing address"
853
- msgstr ""
854
-
855
- #: includes/documents/class-wcpdf-invoice.php:235
856
- #: includes/documents/class-wcpdf-invoice.php:378
857
- #: includes/documents/class-wcpdf-packing-slip.php:108
858
- msgid "Always"
859
- msgstr "Immer"
860
-
861
- #: includes/documents/class-wcpdf-invoice.php:243
862
- #: includes/documents/class-wcpdf-packing-slip.php:116
863
- #: includes/views/setup-wizard/display-options.php:26
864
- msgid "Display email address"
865
- msgstr "E-Mail-Adresse anzeigen"
866
-
867
- #: includes/documents/class-wcpdf-invoice.php:254
868
- #: includes/documents/class-wcpdf-packing-slip.php:127
869
- #: includes/views/setup-wizard/display-options.php:35
870
- msgid "Display phone number"
871
- msgstr "Telefonnummer anzeigen"
872
-
873
- #: includes/documents/class-wcpdf-invoice.php:265
874
- #: includes/documents/class-wcpdf-packing-slip.php:138
875
- msgid "Display customer notes"
876
- msgstr ""
877
-
878
- #: includes/documents/class-wcpdf-invoice.php:278
879
- #: includes/views/setup-wizard/display-options.php:44
880
- msgid "Display invoice date"
881
- msgstr "Rechnungsdatum anzeigen"
882
-
883
- #: includes/documents/class-wcpdf-invoice.php:287
884
- msgid "Order Date"
885
- msgstr ""
886
-
887
- #: includes/documents/class-wcpdf-invoice.php:294
888
- #: includes/views/setup-wizard/display-options.php:53
889
- msgid "Display invoice number"
890
- msgstr "Rechnungsnummer anzeigen"
891
-
892
- #: includes/documents/class-wcpdf-invoice.php:303
893
- msgid "Order Number"
894
- msgstr ""
895
-
896
- #: includes/documents/class-wcpdf-invoice.php:307
897
- msgid "Warning!"
898
- msgstr ""
899
-
900
- #: includes/documents/class-wcpdf-invoice.php:308
901
- msgid ""
902
- "Using the Order Number as invoice number is not recommended as this may lead "
903
- "to gaps in the invoice number sequence (even when order numbers are "
904
- "sequential)."
905
- msgstr ""
906
-
907
- #: includes/documents/class-wcpdf-invoice.php:309
908
- msgid "More information"
909
- msgstr ""
910
-
911
- #: includes/documents/class-wcpdf-invoice.php:316
912
- msgid "Next invoice number (without prefix/suffix etc.)"
913
- msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
914
-
915
- #: includes/documents/class-wcpdf-invoice.php:322
916
- msgid ""
917
- "This is the number that will be used for the next document. By default, "
918
- "numbering starts from 1 and increases for every new document. Note that if "
919
- "you override this and set it lower than the current/highest number, this "
920
- "could create duplicate numbers!"
921
- msgstr ""
922
- "Dies ist die Nummer, die für das nächste Dokument verwendet wird. "
923
- "Standardmäßig beginnt die Nummerierung bei 1 und erhöht sich mit jedem neuen "
924
- "Dokument. Beachten Sie, dass, wenn Sie dies überschreiben und es niedriger "
925
- "als die aktuelle/höchste Zahl setzen, dies zu doppelten Zahlen führen kann!"
926
-
927
- #: includes/documents/class-wcpdf-invoice.php:328
928
- msgid "Number format"
929
- msgstr "Nummernformat"
930
-
931
- #: includes/documents/class-wcpdf-invoice.php:336
932
- msgid "Prefix"
933
- msgstr "Präfix"
934
-
935
- #: includes/documents/class-wcpdf-invoice.php:338
936
- msgid ""
937
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
938
- "respectively"
939
- msgstr ""
940
- "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
941
- "[invoice_year] bzw.[invoice_month]."
942
-
943
- #: includes/documents/class-wcpdf-invoice.php:341
944
- msgid "Suffix"
945
- msgstr "Suffix"
946
-
947
- #: includes/documents/class-wcpdf-invoice.php:346
948
- msgid "Padding"
949
- msgstr "Abstand"
950
-
951
- #: includes/documents/class-wcpdf-invoice.php:349
952
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
953
- msgstr ""
954
- "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
955
- "darzustellen"
956
-
957
- #: includes/documents/class-wcpdf-invoice.php:352
958
- msgid ""
959
- "note: if you have already created a custom invoice number format with a "
960
- "filter, the above settings will be ignored"
961
- msgstr ""
962
- "beachte: solltest du schon mit einem Filter ein eigenes Format der "
963
- "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
964
-
965
- #: includes/documents/class-wcpdf-invoice.php:358
966
- msgid "Reset invoice number yearly"
967
- msgstr "Rechnungsnummer jährlich zurücksetzen"
968
-
969
- #: includes/documents/class-wcpdf-invoice.php:369
970
- msgid "Allow My Account invoice download"
971
- msgstr "Erlauben Sie den Download der Rechnung im Kunden-Konto"
972
-
973
- #: includes/documents/class-wcpdf-invoice.php:376
974
- msgid "Only when an invoice is already created/emailed"
975
- msgstr "Nur wenn eine Rechnung bereits erstellt bzw. versendet wurde."
976
-
977
- #: includes/documents/class-wcpdf-invoice.php:377
978
- msgid "Only for specific order statuses (define below)"
979
- msgstr "Nur für bestimmten Bestellstatus (Definition unten)"
980
-
981
- #: includes/documents/class-wcpdf-invoice.php:379
982
- msgid "Never"
983
- msgstr "Niemals"
984
-
985
- #: includes/documents/class-wcpdf-invoice.php:394
986
- msgid "Enable invoice number column in the orders list"
987
- msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
988
-
989
- #: includes/documents/class-wcpdf-invoice.php:405
990
- msgid "Disable for free orders"
991
- msgstr ""
992
-
993
- #. translators: zero number
994
- #: includes/documents/class-wcpdf-invoice.php:412
995
- msgid "Disable document when the order total is %s"
996
- msgstr ""
997
-
998
- #: includes/documents/class-wcpdf-invoice.php:418
999
- msgid "Always use most current settings"
1000
- msgstr ""
1001
-
1002
- #: includes/documents/class-wcpdf-invoice.php:424
1003
- msgid ""
1004
- "When enabled, the document will always reflect the most current settings "
1005
- "(such as footer text, document name, etc.) rather than using historical "
1006
- "settings."
1007
- msgstr ""
1008
-
1009
- #: includes/documents/class-wcpdf-invoice.php:426
1010
- msgid ""
1011
- "<strong>Caution:</strong> enabling this will also mean that if you change "
1012
- "your company name or address in the future, previously generated documents "
1013
- "will also be affected."
1014
- msgstr ""
1015
-
1016
- #: includes/documents/class-wcpdf-invoice.php:439
1017
- msgid "Invoice numbers are created by a third-party extension."
1018
- msgstr ""
1019
- "Rechnungsnummern entstehen durch eine Erweiterung eines Drittanbieters."
1020
-
1021
- #. translators: link
1022
- #: includes/documents/class-wcpdf-invoice.php:442
1023
- msgid "Configure it <a href=\"%s\">here</a>."
1024
- msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
1025
-
1026
- #: includes/documents/class-wcpdf-packing-slip.php:32
1027
- #: includes/documents/class-wcpdf-packing-slip.php:41
1028
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1029
- msgid "Packing Slip"
1030
- msgstr "Lieferschein"
1031
-
1032
- # This is a filename (prefix). do not use spaces or special characters!
1033
- #: includes/documents/class-wcpdf-packing-slip.php:47
1034
- msgid "packing-slip"
1035
- msgid_plural "packing-slips"
1036
- msgstr[0] "Lieferschein"
1037
- msgstr[1] "Lieferscheine"
1038
-
1039
- #: includes/documents/class-wcpdf-packing-slip.php:99
1040
- msgid "Display billing address"
1041
- msgstr "Rechnungsadresse anzeigen"
1042
-
1043
- #: includes/documents/class-wcpdf-packing-slip.php:107
1044
- msgid "Only when different from shipping address"
1045
- msgstr ""
1046
-
1047
- #: includes/documents/class-wcpdf-packing-slip.php:162
1048
- msgid "Packing Slip Number:"
1049
- msgstr ""
1050
-
1051
- #: includes/documents/class-wcpdf-packing-slip.php:170
1052
- msgid "Packing Slip Date:"
1053
- msgstr ""
1054
-
1055
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1056
- msgid "Legacy Document"
1057
- msgstr "Legacy Dokument"
1058
-
1059
- #: includes/legacy/class-wcpdf-legacy.php:72
1060
- msgid "Error"
1061
- msgstr "Fehler"
1062
-
1063
- #: includes/legacy/class-wcpdf-legacy.php:73
1064
- msgid ""
1065
- "An outdated template or action hook was used to generate the PDF. Legacy "
1066
- "mode has been activated, please try again by reloading this page."
1067
- msgstr ""
1068
- "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
1069
- "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
1070
- "indem Sie diese Seite neu laden."
1071
-
1072
- #: includes/legacy/class-wcpdf-legacy.php:76
1073
- msgid "The following function was called"
1074
- msgstr "Die folgende Funktion wurde aufgerufen"
1075
-
1076
- #. translators: <a> tags
1077
- #: includes/views/attachment-settings-hint.php:23
1078
- msgid ""
1079
- "It looks like you haven't setup any email attachments yet, check the "
1080
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1081
- msgstr ""
1082
-
1083
- #: includes/views/dompdf-status.php:11
1084
- msgid "7.1+ (7.4 or higher recommended)"
1085
- msgstr ""
1086
-
1087
- #: includes/views/dompdf-status.php:24
1088
- msgid "Recommended, will use fallback functions"
1089
- msgstr ""
1090
-
1091
- #: includes/views/dompdf-status.php:30
1092
- msgid "Required if you have images in your documents"
1093
- msgstr ""
1094
-
1095
- #: includes/views/dompdf-status.php:39
1096
- msgid "To compress PDF documents"
1097
- msgstr ""
1098
-
1099
- #: includes/views/dompdf-status.php:42
1100
- msgid "Recommended to compress PDF documents"
1101
- msgstr ""
1102
-
1103
- #: includes/views/dompdf-status.php:45
1104
- msgid "For better performances"
1105
- msgstr ""
1106
-
1107
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1108
- msgid "Recommended for better performances"
1109
- msgstr ""
1110
-
1111
- #: includes/views/dompdf-status.php:51
1112
- msgid "Better with transparent PNG images"
1113
- msgstr ""
1114
-
1115
- #: includes/views/dompdf-status.php:57
1116
- msgid ""
1117
- "Required to detect custom templates and to clear the temp folder periodically"
1118
- msgstr ""
1119
-
1120
- #: includes/views/dompdf-status.php:60
1121
- msgid "Check PHP disable_functions"
1122
- msgstr ""
1123
-
1124
- #. translators: <a> tags
1125
- #: includes/views/dompdf-status.php:64
1126
- msgid ""
1127
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1128
- "WordPress Memory Limit%2$s"
1129
- msgstr ""
1130
-
1131
- #: includes/views/dompdf-status.php:69
1132
- msgid "Allow remote stylesheets and images"
1133
- msgstr ""
1134
-
1135
- #: includes/views/dompdf-status.php:72
1136
- msgid "allow_url_fopen disabled"
1137
- msgstr ""
1138
-
1139
- #. translators: <a> tags
1140
- #: includes/views/dompdf-status.php:92
1141
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1142
- msgstr ""
1143
-
1144
- #: includes/views/dompdf-status.php:97
1145
- msgid "System Configuration"
1146
- msgstr ""
1147
-
1148
- #: includes/views/dompdf-status.php:102
1149
- msgid "Required"
1150
- msgstr ""
1151
-
1152
- #: includes/views/dompdf-status.php:103
1153
- msgid "Present"
1154
- msgstr ""
1155
-
1156
- #: includes/views/dompdf-status.php:142
1157
- msgid "Writable"
1158
- msgstr ""
1159
-
1160
- #: includes/views/dompdf-status.php:143
1161
- msgid "Not writable"
1162
- msgstr ""
1163
-
1164
- #: includes/views/dompdf-status.php:148
1165
- msgid "Central temporary plugin folder"
1166
- msgstr ""
1167
-
1168
- #: includes/views/dompdf-status.php:154
1169
- msgid "Temporary attachments folder"
1170
- msgstr ""
1171
-
1172
- #: includes/views/dompdf-status.php:160
1173
- msgid "Temporary DOMPDF folder"
1174
- msgstr ""
1175
-
1176
- #: includes/views/dompdf-status.php:166
1177
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1178
- msgstr ""
1179
-
1180
- #: includes/views/dompdf-status.php:177
1181
- msgid "Write Permissions"
1182
- msgstr ""
1183
-
1184
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1185
- #: templates/Simple/packing-slip.php:88
1186
- msgid "Description"
1187
- msgstr "Beschreibung"
1188
-
1189
- #: includes/views/dompdf-status.php:181
1190
- msgid "Value"
1191
- msgstr ""
1192
-
1193
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1194
- #: includes/views/dompdf-status.php:207
1195
- msgid ""
1196
- "The central temp folder is %1$s. By default, this folder is created in the "
1197
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1198
- "config.php. Alternatively, you can control the specific folder for PDF "
1199
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1200
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1201
- "by the plugin if the central temp folder is writable)."
1202
- msgstr ""
1203
-
1204
- #. translators: directory path
1205
- #: includes/views/dompdf-status.php:220
1206
- msgid ""
1207
- "If the temporary folders were not automatically created by the plugin, "
1208
- "verify that all the font files (from %s) are copied to the fonts folder. "
1209
- "Normally, this is fully automated, but if your server has strict security "
1210
- "settings, this automated copying may have been prohibited. In that case, you "
1211
- "also need to make sure these folders get synchronized on plugin updates!"
1212
- msgstr ""
1213
-
1214
- #: includes/views/setup-wizard/attach-to.php:3
1215
- msgid "Attach too..."
1216
- msgstr ""
1217
-
1218
- #: includes/views/setup-wizard/attach-to.php:4
1219
- msgid "Select to which emails you would like to attach your invoice."
1220
- msgstr ""
1221
-
1222
- #: includes/views/setup-wizard/display-options.php:4
1223
- msgid "Select some additional display options for your invoice."
1224
- msgstr ""
1225
-
1226
- #: includes/views/setup-wizard/good-to-go.php:3
1227
- msgid "You are good to go!"
1228
- msgstr ""
1229
-
1230
- #: includes/views/setup-wizard/good-to-go.php:4
1231
- msgid "If you have any questions please have a look at our documentation:"
1232
- msgstr ""
1233
-
1234
- #: includes/views/setup-wizard/good-to-go.php:5
1235
- msgid "Invoices & Packing Slips"
1236
- msgstr ""
1237
-
1238
- #: includes/views/setup-wizard/good-to-go.php:6
1239
- msgid "Happy selling!"
1240
- msgstr ""
1241
-
1242
- #: includes/views/setup-wizard/logo.php:4
1243
- msgid "Set the header image that will display on your invoice."
1244
- msgstr ""
1245
-
1246
- #: includes/views/setup-wizard/paper-format.php:4
1247
- msgid "Select the paper format for your invoice."
1248
- msgstr ""
1249
-
1250
- #: includes/views/setup-wizard/shop-name.php:3
1251
- msgid "Enter your shop name"
1252
- msgstr ""
1253
-
1254
- #: includes/views/setup-wizard/shop-name.php:4
1255
- msgid ""
1256
- "Lets quickly setup your invoice. Please enter the name and address of your "
1257
- "shop in the fields on the right."
1258
- msgstr ""
1259
-
1260
- #: includes/views/setup-wizard/show-action-buttons.php:4
1261
- msgid ""
1262
- "Would you like to display the action buttons in your WooCommerce order list? "
1263
- "The action buttons allow you to manually create a PDF."
1264
- msgstr ""
1265
-
1266
- #: includes/views/setup-wizard/show-action-buttons.php:5
1267
- msgid "(You can always change this setting later via the Screen Options menu)"
1268
- msgstr ""
1269
-
1270
- #: includes/views/setup-wizard/show-action-buttons.php:18
1271
- msgid "Show action buttons"
1272
- msgstr ""
1273
-
1274
- #: includes/views/wcpdf-extensions.php:16
1275
- msgid "Check out these premium extensions!"
1276
- msgstr "Premium Erweiterungen schon gesehen?"
1277
-
1278
- #: includes/views/wcpdf-extensions.php:17
1279
- msgid "click items to read more"
1280
- msgstr "klicke Elemente um weiterzulesen"
1281
-
1282
- #: includes/views/wcpdf-extensions.php:22
1283
- msgid ""
1284
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1285
- "system"
1286
- msgstr ""
1287
- "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
1288
- "Abrechnungssystem benötigen"
1289
-
1290
- #: includes/views/wcpdf-extensions.php:24
1291
- msgid ""
1292
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1293
- "premium extensions:"
1294
- msgstr ""
1295
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
1296
- "Erweiterungen:"
1297
-
1298
- #: includes/views/wcpdf-extensions.php:25
1299
- msgid "Professional features:"
1300
- msgstr "Professionelle Features:"
1301
-
1302
- #: includes/views/wcpdf-extensions.php:27
1303
- #: includes/views/wcpdf-extensions.php:57
1304
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1305
- msgstr "E-Mail/Druck/Download <b>PDF Gutschrift & Proforma Rechnung</b>"
1306
-
1307
- #: includes/views/wcpdf-extensions.php:28
1308
- #: includes/views/wcpdf-extensions.php:58
1309
- msgid ""
1310
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1311
- "packing slips, for example to a drop-shipper or a supplier."
1312
- msgstr ""
1313
- "Senden Sie eine separate <b>Benachrichtigungs-E-Mail</b> mit (oder ohne) PDF-"
1314
- "Rechnungen/Packzettel, z.B. an einen Drop-Shipper oder Lieferanten."
1315
-
1316
- #: includes/views/wcpdf-extensions.php:29
1317
- #: includes/views/wcpdf-extensions.php:59
1318
- msgid ""
1319
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1320
- "document) to the WooCommerce emails of your choice."
1321
- msgstr ""
1322
- "Hängen Sie <b>bis zu 3 statische Dateien</b> (z.B. ein AGB-Dokument) an die "
1323
- "WooCommerce-E-Mails Ihrer Wahl an."
1324
-
1325
- #: includes/views/wcpdf-extensions.php:30
1326
- #: includes/views/wcpdf-extensions.php:60
1327
- msgid ""
1328
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1329
- "and credit notes or utilize the main invoice numbering system"
1330
- msgstr ""
1331
- "Wendet ein <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
1332
- "Rechnungen und Gutschriften oder passt das Hauptsystem der "
1333
- "Rechnungsnummerierung an"
1334
-
1335
- #: includes/views/wcpdf-extensions.php:31
1336
- #: includes/views/wcpdf-extensions.php:61
1337
- msgid ""
1338
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1339
- "additional custom fields, font sizes etc. without the need to create a "
1340
- "custom template."
1341
- msgstr ""
1342
- "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
1343
- "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
1344
- "zu erstellen."
1345
-
1346
- #: includes/views/wcpdf-extensions.php:32
1347
- #: includes/views/wcpdf-extensions.php:62
1348
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1349
- msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
1350
-
1351
- #: includes/views/wcpdf-extensions.php:34
1352
- #: includes/views/wcpdf-extensions.php:114
1353
- msgid "Advanced, customizable templates"
1354
- msgstr "Erweiterte, anpassbare Vorlagen"
1355
-
1356
- #: includes/views/wcpdf-extensions.php:36
1357
- #: includes/views/wcpdf-extensions.php:117
1358
- msgid ""
1359
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1360
- "your needs with a drag & drop customizer"
1361
- msgstr ""
1362
- "Passen Sie den Rechnungsinhalt (Preise, Steuern, Thumbnails) mit einem Drag "
1363
- "& Drop-Customizer vollständig an Ihre Bedürfnisse an."
1364
-
1365
- #: includes/views/wcpdf-extensions.php:37
1366
- #: includes/views/wcpdf-extensions.php:118
1367
- msgid "Two extra stylish premade templates (Modern & Business)"
1368
- msgstr "Zwei extra stylische vorgefertigte Templates (Modern & Business)"
1369
-
1370
- #: includes/views/wcpdf-extensions.php:39
1371
- #: includes/views/wcpdf-extensions.php:63
1372
- msgid "Upload automatically to dropbox"
1373
- msgstr "Automatischer Upload in die Dropbox"
1374
-
1375
- #: includes/views/wcpdf-extensions.php:41
1376
- msgid ""
1377
- "This extension conveniently uploads all the invoices (and other pdf "
1378
- "documents from the professional extension) that are emailed to your "
1379
- "customers to Dropbox. The best way to keep your invoice administration up to "
1380
- "date!"
1381
- msgstr ""
1382
- "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
1383
- "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
1384
- "Rechnungsadministration aktuell zu halten!"
1385
-
1386
- #: includes/views/wcpdf-extensions.php:44
1387
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1388
- msgstr "WooCommerce PDF Invoices & Packing Slips ordern"
1389
-
1390
- #: includes/views/wcpdf-extensions.php:53
1391
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1392
- msgstr "Upgrade auf Pro: Proforma Rechnung, Gutschrift & mehr!"
1393
-
1394
- #: includes/views/wcpdf-extensions.php:55
1395
- msgid ""
1396
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1397
- "features:"
1398
- msgstr ""
1399
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
1400
-
1401
- #: includes/views/wcpdf-extensions.php:65
1402
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1403
- msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
1404
-
1405
- #: includes/views/wcpdf-extensions.php:73
1406
- msgid "Automatically send payment reminders to your customers"
1407
- msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
1408
-
1409
- #: includes/views/wcpdf-extensions.php:75
1410
- msgid "WooCommerce Smart Reminder emails"
1411
- msgstr "WooCommerce Smart Erinnerungsmails"
1412
-
1413
- #: includes/views/wcpdf-extensions.php:77
1414
- msgid "<b>Completely automatic</b> scheduled emails"
1415
- msgstr "<b>Vollautomatische</b> geplant e-Mails"
1416
-
1417
- #: includes/views/wcpdf-extensions.php:78
1418
- msgid ""
1419
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1420
- "from the order (name, order total, etc)"
1421
- msgstr ""
1422
- "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
1423
- "aus der Bestellung (Name, Auftragssumme, etc.)"
1424
-
1425
- #: includes/views/wcpdf-extensions.php:79
1426
- msgid ""
1427
- "Configure the exact requirements for sending an email (time after order, "
1428
- "order status, payment method)"
1429
- msgstr ""
1430
- "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
1431
- "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
1432
-
1433
- #: includes/views/wcpdf-extensions.php:80
1434
- msgid ""
1435
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1436
- "order language."
1437
- msgstr ""
1438
- "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
1439
- "Bestellsprache versendet."
1440
-
1441
- #: includes/views/wcpdf-extensions.php:81
1442
- msgid ""
1443
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1444
- "reminders, repeat purchases)"
1445
- msgstr ""
1446
- "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
1447
- "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
1448
-
1449
- #: includes/views/wcpdf-extensions.php:82
1450
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1451
- msgstr ""
1452
- "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
1453
-
1454
- #: includes/views/wcpdf-extensions.php:84
1455
- msgid "Get WooCommerce Smart Reminder Emails"
1456
- msgstr "WooCommerce Smart Erinnerungsmails ordern"
1457
-
1458
- #: includes/views/wcpdf-extensions.php:93
1459
- msgid ""
1460
- "Automatically send new orders or packing slips to your printer, as soon as "
1461
- "the customer orders!"
1462
- msgstr ""
1463
- "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
1464
- "sobald ein Kunde bestellt."
1465
-
1466
- #: includes/views/wcpdf-extensions.php:99
1467
- msgid ""
1468
- "Check out the WooCommerce Automatic Order Printing extension from our "
1469
- "partners at Simba Hosting"
1470
- msgstr ""
1471
- "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
1472
- "Partner Simba Hosting "
1473
-
1474
- #: includes/views/wcpdf-extensions.php:100
1475
- msgid "WooCommerce Automatic Order Printing"
1476
- msgstr "WooCommerce Automatic Order Printing"
1477
-
1478
- #. translators: Premium Templates link
1479
- #: includes/views/wcpdf-extensions.php:120
1480
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1481
- msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
1482
-
1483
- #. translators: email link
1484
- #: includes/views/wcpdf-extensions.php:122
1485
- msgid "For custom templates, contact us at %s."
1486
- msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
1487
-
1488
- #: includes/views/wcpdf-settings-page.php:9
1489
- msgid "WooCommerce PDF Invoices"
1490
- msgstr "WooCommerce PDF Rechnungen"
1491
-
1492
- #: includes/wcpdf-functions.php:209
1493
- msgid "Error creating PDF, please contact the site owner."
1494
- msgstr ""
1495
-
1496
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1497
- msgid "Billing Address:"
1498
- msgstr "Rechnungsadresse:"
1499
-
1500
- #: templates/Simple/invoice.php:48
1501
- msgid "Ship To:"
1502
- msgstr "Versand nach:"
1503
-
1504
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1505
- msgid "Order Number:"
1506
- msgstr "Bestellnummer:"
1507
-
1508
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1509
- msgid "Order Date:"
1510
- msgstr "Bestelldatum:"
1511
-
1512
- #: templates/Simple/invoice.php:78
1513
- msgid "Payment Method:"
1514
- msgstr "Zahlungsart:"
1515
-
1516
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1517
- msgid "Product"
1518
- msgstr "Produkt"
1519
-
1520
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1521
- msgid "Quantity"
1522
- msgstr "Anzahl"
1523
-
1524
- #: templates/Simple/invoice.php:94
1525
- msgid "Price"
1526
- msgstr "Preis"
1527
-
1528
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1529
- msgid "SKU"
1530
- msgstr "Art.-Nr."
1531
-
1532
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1533
- msgid "SKU:"
1534
- msgstr "Art.-Nr.:"
1535
-
1536
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1537
- msgid "Weight:"
1538
- msgstr "Gewicht:"
1539
-
1540
- #: templates/Simple/invoice.php:123
1541
- msgid "Notes"
1542
- msgstr ""
1543
-
1544
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1545
- msgid "Customer Notes"
1546
- msgstr "Anmerkungen"
1547
-
1548
- #: templates/Simple/packing-slip.php:35
1549
- msgid "Shipping Address:"
1550
- msgstr "Lieferadresse:"
1551
-
1552
- #: templates/Simple/packing-slip.php:66
1553
- msgid "Shipping Method:"
1554
- msgstr "Versandart:"
1555
-
1556
- #. translators: <a> tags
1557
- #: woocommerce-pdf-invoices-packingslips.php:271
1558
- msgid ""
1559
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1560
- "installed & activated!"
1561
- msgstr ""
1562
-
1563
- #: woocommerce-pdf-invoices-packingslips.php:282
1564
- msgid ""
1565
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1566
- "recommended)."
1567
- msgstr ""
1568
-
1569
- #. translators: <a> tags
1570
- #: woocommerce-pdf-invoices-packingslips.php:284
1571
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1572
- msgstr ""
1573
-
1574
- #. translators: <a> tags
1575
- #: woocommerce-pdf-invoices-packingslips.php:286
1576
- msgid ""
1577
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1578
- "to enable backwards compatibility with PHP5.6."
1579
- msgstr ""
1580
-
1581
- #. translators: directory path
1582
- #: woocommerce-pdf-invoices-packingslips.php:374
1583
- msgid ""
1584
- "The PDF files in %s are not currently protected due to your site running on "
1585
- "<strong>NGINX</strong>."
1586
- msgstr ""
1587
-
1588
- #: woocommerce-pdf-invoices-packingslips.php:375
1589
- msgid "To protect them, you must click the button below."
1590
- msgstr ""
1591
-
1592
- #. translators: plugin name
1593
- #: woocommerce-pdf-invoices-packingslips.php:419
1594
- msgid ""
1595
- "When sending emails with MailPoet 3 and the active sending method is "
1596
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1597
- "the emails."
1598
- msgstr ""
1599
-
1600
- #. translators: "Your web host / web server"
1601
- #: woocommerce-pdf-invoices-packingslips.php:421
1602
- msgid "To fix this you should select other method like %1$s or %2$s."
1603
- msgstr ""
1604
-
1605
- #. translators: "Your web host / web server"
1606
- #: woocommerce-pdf-invoices-packingslips.php:421
1607
- msgid "Your web host / web server"
1608
- msgstr ""
1609
-
1610
- #: woocommerce-pdf-invoices-packingslips.php:422
1611
- msgid "Change MailPoet sending method"
1612
- msgstr ""
1613
-
1614
- #~ msgid "PDF Invoice data"
1615
- #~ msgstr "PDF Rechnungs Daten"
1616
-
1617
- #~ msgid "Set invoice number & date"
1618
- #~ msgstr "Erstellen Sie Rechnungsnummer und Rechnungsdatum"
1619
-
1620
- #~ msgid "Invoice Number (unformatted!)"
1621
- #~ msgstr "Rechnungsnummer (unformatiert!)"
1622
-
1623
- #~ msgid "h"
1624
- #~ msgstr "Std"
1625
-
1626
- #~ msgid "m"
1627
- #~ msgstr "Min"
1628
-
1629
- #, php-format
1630
- #~ msgid ""
1631
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1632
- #~ "your (child) theme in <code>%s</code> to customize them"
1633
- #~ msgstr ""
1634
- #~ "Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
1635
- #~ "<code>%s</code> nach <code>%s</code> und passe sie dort an."
1636
-
1637
- #~ msgid "Settings"
1638
- #~ msgstr "Einstellungen"
1639
-
1640
- #~ msgid "WooCommerce"
1641
- #~ msgstr "WooCommerce"
1642
-
1643
- #, php-format
1644
- #~ msgid "(includes %s)"
1645
- #~ msgstr "(enthält %s)"
1646
-
1647
- #, php-format
1648
- #~ msgid "(Includes %s)"
1649
- #~ msgstr "(Enthält %s)"
1650
-
1651
- #~ msgid ""
1652
- #~ "Display shipping address (in addition to the default billing address) if "
1653
- #~ "different from billing address"
1654
- #~ msgstr ""
1655
- #~ "Zeigt die Lieferadresse auf der Rechnung (zusätzlich zu den Standard-"
1656
- #~ "Rechnungsadresse), falls abweichend von Rechnungsadresse"
1657
-
1658
- #~ msgid "Disable for free products"
1659
- #~ msgstr "Für kostenlose Produkte deaktivieren"
1660
-
1661
- #~ msgid ""
1662
- #~ "Disable automatic creation/attachment when only free products are ordered"
1663
- #~ msgstr ""
1664
- #~ "Deaktivieren Sie das automatische Erstellen/Anhängen, wenn nur kostenlose "
1665
- #~ "Produkte bestellt werden."
1666
-
1667
- #~ msgid ""
1668
- #~ "Display billing address (in addition to the default shipping address) if "
1669
- #~ "different from shipping address"
1670
- #~ msgstr ""
1671
- #~ "Rechnungsadresse anzeigen (zusätzlich zur Standard-Lieferadresse), falls "
1672
- #~ "abweichend von der Versandadresse"
1673
-
1674
- #~ msgid "Upload all invoices automatically to your dropbox"
1675
- #~ msgstr "Alle Rechnungen automatisch auf deine Dropbox hochladen"
1676
-
1677
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1678
- #~ msgstr "Hole WooCommerce PDF Invoices & Packing Slips to dropbox!"
1679
-
1680
- #, php-format
1681
- #~ msgid ""
1682
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1683
- #~ "installed & activated!"
1684
- #~ msgstr ""
1685
- #~ "WooCommerce PDF Invoices & Packing Slips benötigt %sWooCommerce%s "
1686
- #~ "installiert und aktiviert!"
1687
-
1688
- #~ msgid ""
1689
- #~ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 "
1690
- #~ "or higher recommended)."
1691
- #~ msgstr ""
1692
- #~ "WooCommerce PDF Invoices & Packing Slips erfordert PHP 5.3 oder höher "
1693
- #~ "(5.6 oder höher empfohlen)."
1694
-
1695
- #~ msgid "How to update your PHP version"
1696
- #~ msgstr "So aktualisieren Sie Ihre PHP-Version"
1697
-
1698
- #~ msgid "Attach invoice to:"
1699
- #~ msgstr "Rechnung anfügen zu:"
1700
-
1701
- #~ msgid ""
1702
- #~ "This is the number that will be used on the next invoice that is created. "
1703
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1704
- #~ "first invoice that is created and increases for every new invoice. Note "
1705
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1706
- #~ "number, this could create double invoice numbers!"
1707
- #~ msgstr ""
1708
- #~ "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
1709
- #~ "Vordefiniert startet die Rechnungsnummerierung mit der WooCommerce "
1710
- #~ "Bestellnummer auf der ersten generierten Rechnung und erhöht mit jeder "
1711
- #~ "neuen Rechnung. Beachte bitte das die Überschreibung der höchsten (PDF) "
1712
- #~ "Rechnungsnummer mit einer kleineren Nummer zu doppelten Rechnungsnummern "
1713
- #~ "führen kann."
1714
-
1715
- #~ msgid "Invoice number format"
1716
- #~ msgstr "Rechnungsnummer"
1717
-
1718
- #~ msgid "Template"
1719
- #~ msgstr "Vorlage"
1720
-
1721
- #~ msgid "Admin New Order email"
1722
- #~ msgstr "Admin Neue Bestellung E-Mail"
1723
-
1724
- #~ msgid "Customer Processing Order email"
1725
- #~ msgstr "Kunde In Bearbeitung E-Mail"
1726
-
1727
- #~ msgid "Customer Completed Order email"
1728
- #~ msgstr "Kunde Bestellung abgeschlossen E-Mail"
1729
-
1730
- #~ msgid "Customer Invoice email"
1731
- #~ msgstr "Kunde Rechnung E-Mail"
1732
-
1733
- #~ msgid "PDF Template settings"
1734
- #~ msgstr "PDF Vorlageneinstellungen"
1735
-
1736
- #~ msgid "Display built-in sequential invoice number"
1737
- #~ msgstr "Anzeige integrierte fortlaufende Rechnungsnummer"
1738
-
1739
- #~ msgid ""
1740
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
1741
- #~ "respectively"
1742
- #~ msgstr ""
1743
- #~ "um das Bestelljahr und/oder -monat zu nutzen, verwende [order_year] oder "
1744
- #~ "[order_month]"
1745
-
1746
- #~ msgid "PDF Packing Slips"
1747
- #~ msgstr "PDF Lieferscheine"
1748
-
1749
- #~ msgid "PDF Invoice"
1750
- #~ msgstr "PDF Rechnung"
1751
-
1752
- #~ msgid "PDF Packing Slip"
1753
- #~ msgstr "PDF Lieferschein"
1754
-
1755
- #~ msgid "PDF Invoice Number (unformatted!)"
1756
- #~ msgstr "PDF Rechnungsnummer (unformatiert)"
1757
-
1758
- #~ msgid "More advanced templates"
1759
- #~ msgstr "Weiter entwickelte Voralgen"
1760
-
1761
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
1762
- #~ msgstr ""
1763
- #~ "Stylisch moderne Rechnungen & Lieferscheine mit Miniaturbildern vom "
1764
- #~ "Produkt!"
1765
-
1766
- #~ msgid "More tax details on the invoices!"
1767
- #~ msgstr "Zusätzliche Steuerdetails auf der Rechnung!"
1768
-
1769
- #~ msgid ""
1770
- #~ "Attach a <b>static file</b> (for example a terms & conditions document) "
1771
- #~ "to the WooCommerce emails of your choice."
1772
- #~ msgstr ""
1773
- #~ "Hinzufügen einer beliebigen <b>Datei </b> (beispielweise AGB, "
1774
- #~ "Widerrufsbelehrung) zum WooCommerce E-Mail"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:22-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: PROnatur24 <info@pronatur24.eu>\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
+ "X-Generator: Poedit 3.0\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #. Plugin Name of the plugin
22
+ msgid "WooCommerce PDF Invoices & Packing Slips"
23
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
24
+
25
+ #. Plugin URI of the plugin
26
+ #. Author URI of the plugin
27
+ msgid "http://www.wpovernight.com"
28
+ msgstr "http://www.wpovernight.com"
29
+
30
+ #. Description of the plugin
31
+ msgid ""
32
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
+ msgstr ""
34
+
35
+ #. Author of the plugin
36
+ msgid "Ewout Fernhout"
37
+ msgstr "Ewout Fernhout"
38
+
39
+ #. translators: rounded count
40
+ #: includes/class-wcpdf-admin.php:92
41
+ msgid "Wow, you have created more than %d invoices with our plugin!"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:93
45
+ msgid ""
46
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
+ "rating. Help us spread the word and boost our motivation!"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:95
51
+ msgid "Yes you deserve it!"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
+ #: includes/views/attachment-settings-hint.php:24
56
+ #: includes/views/wcpdf-extensions.php:131
57
+ #: woocommerce-pdf-invoices-packingslips.php:377
58
+ #: woocommerce-pdf-invoices-packingslips.php:423
59
+ msgid "Hide this message"
60
+ msgstr "Diese Nachricht ausblenden"
61
+
62
+ #: includes/class-wcpdf-admin.php:96
63
+ msgid "Already did!"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-admin.php:97
67
+ msgid "Actually, I have a complaint..."
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:132
71
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:132
75
+ msgid "Jumpstart the plugin by following our wizard!"
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:133
79
+ msgid "Run the Setup Wizard"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:133
83
+ msgid "I am the wizard"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
+ #: includes/documents/class-wcpdf-invoice.php:302
88
+ msgid "Invoice Number"
89
+ msgstr "Rechnungsnummer"
90
+
91
+ #: includes/class-wcpdf-admin.php:261
92
+ msgid "Send order email"
93
+ msgstr ""
94
+
95
+ #: includes/class-wcpdf-admin.php:272
96
+ msgid "Create PDF"
97
+ msgstr "PDF erstellen"
98
+
99
+ #: includes/class-wcpdf-admin.php:282
100
+ msgid "PDF document data"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:304
104
+ msgid "Choose an email to send&hellip;"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-admin.php:320
108
+ msgid "Save order & send email"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:322
112
+ msgid "Send email"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
+ msgid "Invoice Number:"
118
+ msgstr "Rechnungsnummer:"
119
+
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
+ msgid "Invoice Date:"
123
+ msgstr "Rechnungsdatum:"
124
+
125
+ #: includes/class-wcpdf-admin.php:384
126
+ msgid "Notes (printed in the invoice):"
127
+ msgstr ""
128
+
129
+ #. translators: document title
130
+ #: includes/class-wcpdf-admin.php:469
131
+ msgid "Set %s number & date"
132
+ msgstr ""
133
+
134
+ #: includes/class-wcpdf-admin.php:478
135
+ msgid "unformatted!"
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-admin.php:518
139
+ msgid "Save changes"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:519
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
146
+ #. translators: name/description of the context for document creation logs
147
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
+ msgid "order details (number and/or date set manually)"
149
+ msgstr ""
150
+
151
+ #. translators: %s: email title
152
+ #: includes/class-wcpdf-admin.php:647
153
+ msgid "%s email notification manually sent."
154
+ msgstr ""
155
+
156
+ #: includes/class-wcpdf-admin.php:734
157
+ msgid "Nonce expired!"
158
+ msgstr ""
159
+
160
+ #: includes/class-wcpdf-admin.php:740
161
+ msgid "Bad action!"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:746
165
+ msgid "Incomplete request!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:752
169
+ msgid "No permissions!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:776
173
+ msgid "Document data saved!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:777
177
+ msgid "An error occurred while saving the document data!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:780
181
+ msgid "Document regenerated!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:781
185
+ msgid "An error occurred while regenerating the document!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:784
189
+ msgid "Document deleted!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:785
193
+ msgid "An error occurred while deleting the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:841
197
+ msgid "Document does not exist."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:850
201
+ msgid "Document is empty."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:881
205
+ msgid "DEBUG output enabled"
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-assets.php:94
209
+ msgid "Are you sure you want to delete this document? This cannot be undone."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-assets.php:95
213
+ msgid ""
214
+ "Are you sure you want to regenerate this document? This will make the "
215
+ "document reflect the most current settings (such as footer text, document "
216
+ "name, etc.) rather than using historical settings."
217
+ msgstr ""
218
+
219
+ #: includes/class-wcpdf-frontend.php:129
220
+ msgid "Download invoice (PDF)"
221
+ msgstr "Rechnung runterladen (PDF)"
222
+
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
+ msgid "You do not have sufficient permissions to access this page."
226
+ msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
227
+
228
+ #: includes/class-wcpdf-main.php:272
229
+ msgid "You haven't selected any orders"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-main.php:276
233
+ msgid "Some of the export parameters are missing."
234
+ msgstr "Einige der Exportparameter fehlen."
235
+
236
+ #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
239
+ msgstr ""
240
+
241
+ #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-main.php:604
247
+ msgid ""
248
+ "Please check your directories write permissions or contact your hosting "
249
+ "service provider."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-main.php:919
253
+ #: includes/documents/class-wcpdf-invoice.php:286
254
+ msgid "Invoice Date"
255
+ msgstr ""
256
+
257
+ #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
+ msgid "bulk order action"
260
+ msgstr ""
261
+
262
+ #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
+ msgid "single order action"
265
+ msgstr ""
266
+
267
+ #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
+ msgid "my account"
270
+ msgstr ""
271
+
272
+ #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
+ msgid "email attachment"
275
+ msgstr ""
276
+
277
+ #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
+ msgid "PDF %1$s created via %2$s."
280
+ msgstr ""
281
+
282
+ #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
+ msgid "Order %s Saved"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings-callbacks.php:27
288
+ msgid ""
289
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
+ "Do not use them on a live website!"
291
+ msgstr ""
292
+ "<b>Achtung:</b> Die folgenden Einstellungen sind nur für die Fehlersuche / "
293
+ "Entwicklung gedacht. Verwenden Sie sie nicht auf einer Live-Website!"
294
+
295
+ #: includes/class-wcpdf-settings-callbacks.php:36
296
+ msgid ""
297
+ "These are used for the (optional) footer columns in the <em>Modern "
298
+ "(Premium)</em> template, but can also be used for other elements in your "
299
+ "custom template"
300
+ msgstr ""
301
+ "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
302
+ "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
303
+ "deiner angepassten Vorlage verwendet werden."
304
+
305
+ #: includes/class-wcpdf-settings-callbacks.php:384
306
+ msgid "Image resolution"
307
+ msgstr "Bildauflösung"
308
+
309
+ #: includes/class-wcpdf-settings-callbacks.php:411
310
+ msgid "Save"
311
+ msgstr "Speichern"
312
+
313
+ #: includes/class-wcpdf-settings-debug.php:45
314
+ #: woocommerce-pdf-invoices-packingslips.php:376
315
+ msgid "Generate random temporary folder name"
316
+ msgstr ""
317
+
318
+ #. translators: directory path
319
+ #: includes/class-wcpdf-settings-debug.php:58
320
+ msgid "Temporary folder moved to %s"
321
+ msgstr ""
322
+
323
+ #: includes/class-wcpdf-settings-debug.php:68
324
+ msgid "Reinstall fonts"
325
+ msgstr ""
326
+
327
+ #: includes/class-wcpdf-settings-debug.php:89
328
+ msgid "Fonts reinstalled!"
329
+ msgstr ""
330
+
331
+ #: includes/class-wcpdf-settings-debug.php:98
332
+ msgid "Remove temporary files"
333
+ msgstr ""
334
+
335
+ #: includes/class-wcpdf-settings-debug.php:109
336
+ msgid "Unable to read temporary folder contents!"
337
+ msgstr ""
338
+
339
+ #. translators: 1,2. file count
340
+ #: includes/class-wcpdf-settings-debug.php:127
341
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
342
+ msgstr ""
343
+
344
+ #. translators: file count
345
+ #: includes/class-wcpdf-settings-debug.php:131
346
+ msgid "Successfully deleted %d files!"
347
+ msgstr ""
348
+
349
+ #: includes/class-wcpdf-settings-debug.php:135
350
+ msgid "Nothing to delete!"
351
+ msgstr ""
352
+
353
+ #: includes/class-wcpdf-settings-debug.php:146
354
+ msgid "Delete legacy (1.X) settings"
355
+ msgstr ""
356
+
357
+ #: includes/class-wcpdf-settings-debug.php:162
358
+ msgid "Legacy settings deleted!"
359
+ msgstr ""
360
+
361
+ #: includes/class-wcpdf-settings-debug.php:192
362
+ msgid "Debug settings"
363
+ msgstr "Debug Einstellungen"
364
+
365
+ #: includes/class-wcpdf-settings-debug.php:198
366
+ msgid "Legacy mode"
367
+ msgstr "Legacy mode"
368
+
369
+ #: includes/class-wcpdf-settings-debug.php:204
370
+ msgid ""
371
+ "Legacy mode ensures compatibility with templates and filters from previous "
372
+ "versions."
373
+ msgstr ""
374
+ "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
375
+ "früheren Versionen."
376
+
377
+ #: includes/class-wcpdf-settings-debug.php:210
378
+ msgid "Legacy textdomain fallback"
379
+ msgstr ""
380
+
381
+ #: includes/class-wcpdf-settings-debug.php:216
382
+ msgid ""
383
+ "Legacy textdomain fallback ensures compatibility with translation files from "
384
+ "versions prior to 2017-05-15."
385
+ msgstr ""
386
+
387
+ #: includes/class-wcpdf-settings-debug.php:222
388
+ msgid "Allow guest access"
389
+ msgstr ""
390
+
391
+ #: includes/class-wcpdf-settings-debug.php:228
392
+ msgid ""
393
+ "Enable this to allow customers that purchase without an account to access "
394
+ "their PDF with a unique key"
395
+ msgstr ""
396
+
397
+ #: includes/class-wcpdf-settings-debug.php:234
398
+ msgid "Calculate document numbers (slow)"
399
+ msgstr ""
400
+
401
+ #: includes/class-wcpdf-settings-debug.php:240
402
+ msgid ""
403
+ "Document numbers (such as invoice numbers) are generated using "
404
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
405
+ "with more than 1."
406
+ msgstr ""
407
+
408
+ #: includes/class-wcpdf-settings-debug.php:246
409
+ msgid "Enable debug output"
410
+ msgstr "Debug-Ausgabe aktivieren"
411
+
412
+ #: includes/class-wcpdf-settings-debug.php:252
413
+ msgid ""
414
+ "Enable this option to output plugin errors if you're getting a blank page or "
415
+ "other PDF generation issues"
416
+ msgstr ""
417
+ "Aktivieren Sie diese Option um Plugin-Fehler auszugeben, wenn Sie eine leere "
418
+ "Seite oder andere PDF-Generierung-Probleme bekommen"
419
+
420
+ #: includes/class-wcpdf-settings-debug.php:253
421
+ msgid ""
422
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
423
+ "places on your site too, therefor this is not recommended to leave it "
424
+ "enabled on live sites."
425
+ msgstr ""
426
+
427
+ #: includes/class-wcpdf-settings-debug.php:254
428
+ msgid ""
429
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
430
+ "order basis."
431
+ msgstr ""
432
+
433
+ #: includes/class-wcpdf-settings-debug.php:260
434
+ msgid "Enable automatic cleanup"
435
+ msgstr ""
436
+
437
+ #. translators: number of days
438
+ #: includes/class-wcpdf-settings-debug.php:268
439
+ msgid "every %s days"
440
+ msgstr ""
441
+
442
+ #: includes/class-wcpdf-settings-debug.php:273
443
+ msgid ""
444
+ "Automatically clean up PDF files stored in the temporary folder (used for "
445
+ "email attachments)"
446
+ msgstr ""
447
+
448
+ #: includes/class-wcpdf-settings-debug.php:274
449
+ msgid ""
450
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
451
+ "automatic cleanup but not enabled on your server."
452
+ msgstr ""
453
+
454
+ #: includes/class-wcpdf-settings-debug.php:280
455
+ msgid "Output to HTML"
456
+ msgstr "HTML-Ausgabe"
457
+
458
+ #: includes/class-wcpdf-settings-debug.php:286
459
+ msgid ""
460
+ "Send the template output as HTML to the browser instead of creating a PDF."
461
+ msgstr ""
462
+ "Senden die Ausgabe als HTML an einen Browser, anstatt ein PDF zu erstellen."
463
+
464
+ #: includes/class-wcpdf-settings-debug.php:287
465
+ msgid ""
466
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
467
+ "order basis."
468
+ msgstr ""
469
+
470
+ #: includes/class-wcpdf-settings-debug.php:293
471
+ msgid "Use alternative HTML5 parser to parse HTML"
472
+ msgstr ""
473
+
474
+ #: includes/class-wcpdf-settings-debug.php:304
475
+ msgid "Log to order notes"
476
+ msgstr ""
477
+
478
+ #: includes/class-wcpdf-settings-debug.php:310
479
+ msgid "Log PDF document creation to order notes."
480
+ msgstr ""
481
+
482
+ #: includes/class-wcpdf-settings-documents.php:30
483
+ #: includes/class-wcpdf-settings.php:104
484
+ msgid "Documents"
485
+ msgstr "Dokumente"
486
+
487
+ #: includes/class-wcpdf-settings-documents.php:36
488
+ #: includes/class-wcpdf-settings-documents.php:57
489
+ msgid "untitled"
490
+ msgstr ""
491
+
492
+ #: includes/class-wcpdf-settings-documents.php:50
493
+ msgid ""
494
+ "All available documents are listed below. Click on a document to configure "
495
+ "it."
496
+ msgstr ""
497
+ "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
498
+ "Dokument, um es zu konfigurieren."
499
+
500
+ #: includes/class-wcpdf-settings-general.php:40
501
+ msgid "General settings"
502
+ msgstr "Allgemeine Einstellungen"
503
+
504
+ #: includes/class-wcpdf-settings-general.php:46
505
+ msgid "How do you want to view the PDF?"
506
+ msgstr "Wie soll das PDF angezeigt werden?"
507
+
508
+ #: includes/class-wcpdf-settings-general.php:53
509
+ msgid "Download the PDF"
510
+ msgstr "PDF runterladen"
511
+
512
+ #: includes/class-wcpdf-settings-general.php:54
513
+ msgid "Open the PDF in a new browser tab/window"
514
+ msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
515
+
516
+ #: includes/class-wcpdf-settings-general.php:61
517
+ msgid "Choose a template"
518
+ msgstr "Wähle ein Template"
519
+
520
+ #. translators: 1,2. template paths
521
+ #: includes/class-wcpdf-settings-general.php:69
522
+ msgid ""
523
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
524
+ "your (child) theme in <code>%2$s</code> to customize them"
525
+ msgstr ""
526
+
527
+ #: includes/class-wcpdf-settings-general.php:75
528
+ msgid "Paper size"
529
+ msgstr "Papierformat"
530
+
531
+ #: includes/class-wcpdf-settings-general.php:82
532
+ #: includes/views/setup-wizard/paper-format.php:12
533
+ msgid "A4"
534
+ msgstr "A4"
535
+
536
+ #: includes/class-wcpdf-settings-general.php:83
537
+ #: includes/views/setup-wizard/paper-format.php:13
538
+ msgid "Letter"
539
+ msgstr "Letter"
540
+
541
+ #: includes/class-wcpdf-settings-general.php:90
542
+ msgid "Test mode"
543
+ msgstr ""
544
+
545
+ #: includes/class-wcpdf-settings-general.php:96
546
+ msgid ""
547
+ "With test mode enabled, any document generated will always use the latest "
548
+ "settings, rather than using the settings as configured at the time the "
549
+ "document was first created."
550
+ msgstr ""
551
+
552
+ #: includes/class-wcpdf-settings-general.php:96
553
+ msgid ""
554
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
555
+ "setting and will still be generated."
556
+ msgstr ""
557
+
558
+ #: includes/class-wcpdf-settings-general.php:102
559
+ msgid "Extended currency symbol support"
560
+ msgstr "Support für erweiterte Währungs Zeichen"
561
+
562
+ #: includes/class-wcpdf-settings-general.php:108
563
+ msgid "Enable this if your currency symbol is not displaying properly"
564
+ msgstr ""
565
+ "Aktivieren Sie diese Option, wenn Ihre Währungssymbol nicht korrekt "
566
+ "ausgespielt wird."
567
+
568
+ #: includes/class-wcpdf-settings-general.php:114
569
+ msgid "Enable font subsetting"
570
+ msgstr ""
571
+
572
+ #: includes/class-wcpdf-settings-general.php:120
573
+ msgid ""
574
+ "Font subsetting can reduce file size by only including the characters that "
575
+ "are used in the PDF, but limits the ability to edit PDF files later. "
576
+ "Recommended if you're using an Asian font."
577
+ msgstr ""
578
+
579
+ #: includes/class-wcpdf-settings-general.php:126
580
+ msgid "Shop header/logo"
581
+ msgstr "Briefkopf-Logo"
582
+
583
+ #: includes/class-wcpdf-settings-general.php:132
584
+ #: includes/views/setup-wizard/logo.php:20
585
+ msgid "Select or upload your invoice header/logo"
586
+ msgstr "Auswählen oder hochladen des Logos"
587
+
588
+ #: includes/class-wcpdf-settings-general.php:133
589
+ #: includes/views/setup-wizard/logo.php:20
590
+ msgid "Set image"
591
+ msgstr "Logo festlegen"
592
+
593
+ #: includes/class-wcpdf-settings-general.php:134
594
+ #: includes/views/setup-wizard/logo.php:20
595
+ msgid "Remove image"
596
+ msgstr "Logo entfernen"
597
+
598
+ #: includes/class-wcpdf-settings-general.php:141
599
+ msgid "Logo height"
600
+ msgstr ""
601
+
602
+ #: includes/class-wcpdf-settings-general.php:149
603
+ msgid ""
604
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
605
+ "decimals.<br/>For example: 1.15in or 40mm"
606
+ msgstr ""
607
+
608
+ #: includes/class-wcpdf-settings-general.php:155
609
+ #: includes/class-wcpdf-setup-wizard.php:49
610
+ msgid "Shop Name"
611
+ msgstr "Name des Shops"
612
+
613
+ #: includes/class-wcpdf-settings-general.php:168
614
+ msgid "Shop Address"
615
+ msgstr "Adresse des Shops"
616
+
617
+ #: includes/class-wcpdf-settings-general.php:183
618
+ msgid "Footer: terms & conditions, policies, etc."
619
+ msgstr "Fußzeile: allgemeine Bestimmungen, etc."
620
+
621
+ #: includes/class-wcpdf-settings-general.php:198
622
+ msgid "Extra template fields"
623
+ msgstr "Zusätzliche Vorlagenfelder"
624
+
625
+ #: includes/class-wcpdf-settings-general.php:204
626
+ msgid "Extra field 1"
627
+ msgstr "Zusatzfeld 1"
628
+
629
+ #: includes/class-wcpdf-settings-general.php:212
630
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
631
+ msgstr ""
632
+ "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
633
+
634
+ #: includes/class-wcpdf-settings-general.php:219
635
+ msgid "Extra field 2"
636
+ msgstr "Zusatzfeld 2"
637
+
638
+ #: includes/class-wcpdf-settings-general.php:227
639
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
640
+ msgstr ""
641
+ "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
642
+
643
+ #: includes/class-wcpdf-settings-general.php:234
644
+ msgid "Extra field 3"
645
+ msgstr "Zusatzfeld 3"
646
+
647
+ #: includes/class-wcpdf-settings-general.php:242
648
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
649
+ msgstr ""
650
+ "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
651
+
652
+ #: includes/class-wcpdf-settings-general.php:290
653
+ msgid "Custom"
654
+ msgstr ""
655
+
656
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
657
+ msgid "PDF Invoices"
658
+ msgstr "PDF Rechnungen"
659
+
660
+ #: includes/class-wcpdf-settings.php:81
661
+ msgid "Documentation"
662
+ msgstr "Dokumentation"
663
+
664
+ #: includes/class-wcpdf-settings.php:82
665
+ msgid "Support Forum"
666
+ msgstr "Support Forum"
667
+
668
+ #. translators: database row value
669
+ #: includes/class-wcpdf-settings.php:95
670
+ msgid ""
671
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
672
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
673
+ "document numbers (slow)' setting in the Status tab to use an alternate "
674
+ "method."
675
+ msgstr ""
676
+
677
+ #: includes/class-wcpdf-settings.php:103
678
+ msgid "General"
679
+ msgstr "Allgemein"
680
+
681
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
682
+ msgid "Status"
683
+ msgstr "Status"
684
+
685
+ #. translators: 1. path, 2. template ID
686
+ #: includes/class-wcpdf-settings.php:396
687
+ msgid "Template setting migrated from %1$s to %2$s"
688
+ msgstr ""
689
+
690
+ #: includes/class-wcpdf-setup-wizard.php:53
691
+ #: includes/views/setup-wizard/logo.php:3
692
+ msgid "Your logo"
693
+ msgstr ""
694
+
695
+ #: includes/class-wcpdf-setup-wizard.php:57
696
+ msgid "Attachments"
697
+ msgstr ""
698
+
699
+ #: includes/class-wcpdf-setup-wizard.php:61
700
+ #: includes/views/setup-wizard/display-options.php:3
701
+ msgid "Display options"
702
+ msgstr ""
703
+
704
+ #: includes/class-wcpdf-setup-wizard.php:65
705
+ #: includes/views/setup-wizard/paper-format.php:3
706
+ msgid "Paper format"
707
+ msgstr ""
708
+
709
+ #: includes/class-wcpdf-setup-wizard.php:69
710
+ #: includes/views/setup-wizard/show-action-buttons.php:3
711
+ msgid "Action buttons"
712
+ msgstr ""
713
+
714
+ #: includes/class-wcpdf-setup-wizard.php:73
715
+ msgid "Ready!"
716
+ msgstr ""
717
+
718
+ #: includes/class-wcpdf-setup-wizard.php:135
719
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
720
+ msgstr ""
721
+
722
+ #: includes/class-wcpdf-setup-wizard.php:187
723
+ msgid "Previous"
724
+ msgstr ""
725
+
726
+ #: includes/class-wcpdf-setup-wizard.php:192
727
+ msgid "Next"
728
+ msgstr ""
729
+
730
+ #: includes/class-wcpdf-setup-wizard.php:193
731
+ msgid "Skip this step"
732
+ msgstr ""
733
+
734
+ #: includes/class-wcpdf-setup-wizard.php:195
735
+ msgid "Finish"
736
+ msgstr ""
737
+
738
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
739
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
740
+ msgid "N/A"
741
+ msgstr "nicht verfügbar"
742
+
743
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
744
+ msgid "Payment method"
745
+ msgstr "Zahlungsart"
746
+
747
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
748
+ msgid "Shipping method"
749
+ msgstr "Versandart"
750
+
751
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
752
+ msgid "Subtotal"
753
+ msgstr "Zwischensumme"
754
+
755
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
756
+ msgid "Shipping"
757
+ msgstr "Versand"
758
+
759
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
760
+ msgid "Discount"
761
+ msgstr "Rabatt"
762
+
763
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
764
+ msgid "VAT"
765
+ msgstr "MwSt."
766
+
767
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
768
+ msgid "Tax rate"
769
+ msgstr "MwSt-Satz"
770
+
771
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
772
+ msgid "Total ex. VAT"
773
+ msgstr "Gesamtsumme ohne MwSt."
774
+
775
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
776
+ msgid "Total"
777
+ msgstr "Gesamtsumme"
778
+
779
+ #. translators: 1. credit note title, 2. refund id
780
+ #: includes/documents/abstract-wcpdf-order-document.php:336
781
+ msgid "%1$s (refund #%2$s) was regenerated."
782
+ msgstr ""
783
+
784
+ #. translators: 1. credit note title, 2. refund id
785
+ #: includes/documents/abstract-wcpdf-order-document.php:336
786
+ msgid "%s was regenerated"
787
+ msgstr ""
788
+
789
+ #. translators: %s: document name
790
+ #: includes/documents/abstract-wcpdf-order-document.php:422
791
+ msgid "%s Number:"
792
+ msgstr ""
793
+
794
+ #. translators: %s: document name
795
+ #: includes/documents/abstract-wcpdf-order-document.php:428
796
+ msgid "%s Date:"
797
+ msgstr ""
798
+
799
+ #: includes/documents/abstract-wcpdf-order-document.php:904
800
+ msgid "Admin email"
801
+ msgstr "Admin E-Mail"
802
+
803
+ #: includes/documents/abstract-wcpdf-order-document.php:907
804
+ msgid "Manual email"
805
+ msgstr "Manuelle E-Mail"
806
+
807
+ #: includes/documents/class-wcpdf-invoice.php:32
808
+ #: includes/documents/class-wcpdf-invoice.php:56
809
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
810
+ msgid "Invoice"
811
+ msgstr "Rechnung"
812
+
813
+ # This is a filename (prefix). do not use spaces or special characters!
814
+ #: includes/documents/class-wcpdf-invoice.php:131
815
+ msgid "invoice"
816
+ msgid_plural "invoices"
817
+ msgstr[0] "Rechnung"
818
+ msgstr[1] "Rechnungen"
819
+
820
+ #: includes/documents/class-wcpdf-invoice.php:186
821
+ #: includes/documents/class-wcpdf-packing-slip.php:88
822
+ msgid "Enable"
823
+ msgstr "Aktivieren"
824
+
825
+ #: includes/documents/class-wcpdf-invoice.php:197
826
+ msgid "Attach to:"
827
+ msgstr "Anhängen an"
828
+
829
+ #. translators: directory path
830
+ #: includes/documents/class-wcpdf-invoice.php:205
831
+ msgid ""
832
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
833
+ "permissions for this folder! Without having write access to this folder, the "
834
+ "plugin will not be able to email invoices."
835
+ msgstr ""
836
+ "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
837
+ "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
838
+ "können keine E-Mail - Rechnungen verschickt werden."
839
+
840
+ #: includes/documents/class-wcpdf-invoice.php:211
841
+ msgid "Disable for:"
842
+ msgstr ""
843
+
844
+ #: includes/documents/class-wcpdf-invoice.php:220
845
+ msgid "Select one or more statuses"
846
+ msgstr ""
847
+
848
+ #: includes/documents/class-wcpdf-invoice.php:226
849
+ #: includes/views/setup-wizard/display-options.php:17
850
+ msgid "Display shipping address"
851
+ msgstr "Lieferadresse anzeigen"
852
+
853
+ #: includes/documents/class-wcpdf-invoice.php:233
854
+ #: includes/documents/class-wcpdf-invoice.php:285
855
+ #: includes/documents/class-wcpdf-invoice.php:301
856
+ #: includes/documents/class-wcpdf-packing-slip.php:106
857
+ msgid "No"
858
+ msgstr ""
859
+
860
+ #: includes/documents/class-wcpdf-invoice.php:234
861
+ msgid "Only when different from billing address"
862
+ msgstr ""
863
+
864
+ #: includes/documents/class-wcpdf-invoice.php:235
865
+ #: includes/documents/class-wcpdf-invoice.php:378
866
+ #: includes/documents/class-wcpdf-packing-slip.php:108
867
+ msgid "Always"
868
+ msgstr "Immer"
869
+
870
+ #: includes/documents/class-wcpdf-invoice.php:243
871
+ #: includes/documents/class-wcpdf-packing-slip.php:116
872
+ #: includes/views/setup-wizard/display-options.php:26
873
+ msgid "Display email address"
874
+ msgstr "E-Mail-Adresse anzeigen"
875
+
876
+ #: includes/documents/class-wcpdf-invoice.php:254
877
+ #: includes/documents/class-wcpdf-packing-slip.php:127
878
+ #: includes/views/setup-wizard/display-options.php:35
879
+ msgid "Display phone number"
880
+ msgstr "Telefonnummer anzeigen"
881
+
882
+ #: includes/documents/class-wcpdf-invoice.php:265
883
+ #: includes/documents/class-wcpdf-packing-slip.php:138
884
+ msgid "Display customer notes"
885
+ msgstr ""
886
+
887
+ #: includes/documents/class-wcpdf-invoice.php:278
888
+ #: includes/views/setup-wizard/display-options.php:44
889
+ msgid "Display invoice date"
890
+ msgstr "Rechnungsdatum anzeigen"
891
+
892
+ #: includes/documents/class-wcpdf-invoice.php:287
893
+ msgid "Order Date"
894
+ msgstr ""
895
+
896
+ #: includes/documents/class-wcpdf-invoice.php:294
897
+ #: includes/views/setup-wizard/display-options.php:53
898
+ msgid "Display invoice number"
899
+ msgstr "Rechnungsnummer anzeigen"
900
+
901
+ #: includes/documents/class-wcpdf-invoice.php:303
902
+ msgid "Order Number"
903
+ msgstr ""
904
+
905
+ #: includes/documents/class-wcpdf-invoice.php:307
906
+ msgid "Warning!"
907
+ msgstr ""
908
+
909
+ #: includes/documents/class-wcpdf-invoice.php:308
910
+ msgid ""
911
+ "Using the Order Number as invoice number is not recommended as this may lead "
912
+ "to gaps in the invoice number sequence (even when order numbers are "
913
+ "sequential)."
914
+ msgstr ""
915
+
916
+ #: includes/documents/class-wcpdf-invoice.php:309
917
+ msgid "More information"
918
+ msgstr ""
919
+
920
+ #: includes/documents/class-wcpdf-invoice.php:316
921
+ msgid "Next invoice number (without prefix/suffix etc.)"
922
+ msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
923
+
924
+ #: includes/documents/class-wcpdf-invoice.php:322
925
+ msgid ""
926
+ "This is the number that will be used for the next document. By default, "
927
+ "numbering starts from 1 and increases for every new document. Note that if "
928
+ "you override this and set it lower than the current/highest number, this "
929
+ "could create duplicate numbers!"
930
+ msgstr ""
931
+ "Dies ist die Nummer, die für das nächste Dokument verwendet wird. "
932
+ "Standardmäßig beginnt die Nummerierung bei 1 und erhöht sich mit jedem neuen "
933
+ "Dokument. Beachten Sie, dass, wenn Sie dies überschreiben und es niedriger "
934
+ "als die aktuelle/höchste Zahl setzen, dies zu doppelten Zahlen führen kann!"
935
+
936
+ #: includes/documents/class-wcpdf-invoice.php:328
937
+ msgid "Number format"
938
+ msgstr "Nummernformat"
939
+
940
+ #: includes/documents/class-wcpdf-invoice.php:336
941
+ msgid "Prefix"
942
+ msgstr "Präfix"
943
+
944
+ #: includes/documents/class-wcpdf-invoice.php:338
945
+ msgid ""
946
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
947
+ "respectively"
948
+ msgstr ""
949
+ "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
950
+ "[invoice_year] bzw.[invoice_month]."
951
+
952
+ #: includes/documents/class-wcpdf-invoice.php:341
953
+ msgid "Suffix"
954
+ msgstr "Suffix"
955
+
956
+ #: includes/documents/class-wcpdf-invoice.php:346
957
+ msgid "Padding"
958
+ msgstr "Abstand"
959
+
960
+ #: includes/documents/class-wcpdf-invoice.php:349
961
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
962
+ msgstr ""
963
+ "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
964
+ "darzustellen"
965
+
966
+ #: includes/documents/class-wcpdf-invoice.php:352
967
+ msgid ""
968
+ "note: if you have already created a custom invoice number format with a "
969
+ "filter, the above settings will be ignored"
970
+ msgstr ""
971
+ "beachte: solltest du schon mit einem Filter ein eigenes Format der "
972
+ "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
973
+
974
+ #: includes/documents/class-wcpdf-invoice.php:358
975
+ msgid "Reset invoice number yearly"
976
+ msgstr "Rechnungsnummer jährlich zurücksetzen"
977
+
978
+ #: includes/documents/class-wcpdf-invoice.php:369
979
+ msgid "Allow My Account invoice download"
980
+ msgstr "Erlauben Sie den Download der Rechnung im Kunden-Konto"
981
+
982
+ #: includes/documents/class-wcpdf-invoice.php:376
983
+ msgid "Only when an invoice is already created/emailed"
984
+ msgstr "Nur wenn eine Rechnung bereits erstellt bzw. versendet wurde."
985
+
986
+ #: includes/documents/class-wcpdf-invoice.php:377
987
+ msgid "Only for specific order statuses (define below)"
988
+ msgstr "Nur für bestimmten Bestellstatus (Definition unten)"
989
+
990
+ #: includes/documents/class-wcpdf-invoice.php:379
991
+ msgid "Never"
992
+ msgstr "Niemals"
993
+
994
+ #: includes/documents/class-wcpdf-invoice.php:394
995
+ msgid "Enable invoice number column in the orders list"
996
+ msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
997
+
998
+ #: includes/documents/class-wcpdf-invoice.php:405
999
+ msgid "Disable for free orders"
1000
+ msgstr ""
1001
+
1002
+ #. translators: zero number
1003
+ #: includes/documents/class-wcpdf-invoice.php:412
1004
+ msgid "Disable document when the order total is %s"
1005
+ msgstr ""
1006
+
1007
+ #: includes/documents/class-wcpdf-invoice.php:418
1008
+ msgid "Always use most current settings"
1009
+ msgstr ""
1010
+
1011
+ #: includes/documents/class-wcpdf-invoice.php:424
1012
+ msgid ""
1013
+ "When enabled, the document will always reflect the most current settings "
1014
+ "(such as footer text, document name, etc.) rather than using historical "
1015
+ "settings."
1016
+ msgstr ""
1017
+
1018
+ #: includes/documents/class-wcpdf-invoice.php:426
1019
+ msgid ""
1020
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1021
+ "your company name or address in the future, previously generated documents "
1022
+ "will also be affected."
1023
+ msgstr ""
1024
+
1025
+ #: includes/documents/class-wcpdf-invoice.php:439
1026
+ msgid "Invoice numbers are created by a third-party extension."
1027
+ msgstr ""
1028
+ "Rechnungsnummern entstehen durch eine Erweiterung eines Drittanbieters."
1029
+
1030
+ #. translators: link
1031
+ #: includes/documents/class-wcpdf-invoice.php:442
1032
+ msgid "Configure it <a href=\"%s\">here</a>."
1033
+ msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
1034
+
1035
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1036
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1037
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1038
+ msgid "Packing Slip"
1039
+ msgstr "Lieferschein"
1040
+
1041
+ # This is a filename (prefix). do not use spaces or special characters!
1042
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1043
+ msgid "packing-slip"
1044
+ msgid_plural "packing-slips"
1045
+ msgstr[0] "Lieferschein"
1046
+ msgstr[1] "Lieferscheine"
1047
+
1048
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1049
+ msgid "Display billing address"
1050
+ msgstr "Rechnungsadresse anzeigen"
1051
+
1052
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1053
+ msgid "Only when different from shipping address"
1054
+ msgstr ""
1055
+
1056
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1057
+ msgid "Packing Slip Number:"
1058
+ msgstr ""
1059
+
1060
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1061
+ msgid "Packing Slip Date:"
1062
+ msgstr ""
1063
+
1064
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1065
+ msgid "Legacy Document"
1066
+ msgstr "Legacy Dokument"
1067
+
1068
+ #: includes/legacy/class-wcpdf-legacy.php:72
1069
+ msgid "Error"
1070
+ msgstr "Fehler"
1071
+
1072
+ #: includes/legacy/class-wcpdf-legacy.php:73
1073
+ msgid ""
1074
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1075
+ "mode has been activated, please try again by reloading this page."
1076
+ msgstr ""
1077
+ "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
1078
+ "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
1079
+ "indem Sie diese Seite neu laden."
1080
+
1081
+ #: includes/legacy/class-wcpdf-legacy.php:76
1082
+ msgid "The following function was called"
1083
+ msgstr "Die folgende Funktion wurde aufgerufen"
1084
+
1085
+ #. translators: <a> tags
1086
+ #: includes/views/attachment-settings-hint.php:23
1087
+ msgid ""
1088
+ "It looks like you haven't setup any email attachments yet, check the "
1089
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1090
+ msgstr ""
1091
+
1092
+ #: includes/views/dompdf-status.php:11
1093
+ msgid "7.1+ (7.4 or higher recommended)"
1094
+ msgstr ""
1095
+
1096
+ #: includes/views/dompdf-status.php:24
1097
+ msgid "Recommended, will use fallback functions"
1098
+ msgstr ""
1099
+
1100
+ #: includes/views/dompdf-status.php:30
1101
+ msgid "Required if you have images in your documents"
1102
+ msgstr ""
1103
+
1104
+ #: includes/views/dompdf-status.php:39
1105
+ msgid "To compress PDF documents"
1106
+ msgstr ""
1107
+
1108
+ #: includes/views/dompdf-status.php:42
1109
+ msgid "Recommended to compress PDF documents"
1110
+ msgstr ""
1111
+
1112
+ #: includes/views/dompdf-status.php:45
1113
+ msgid "For better performances"
1114
+ msgstr ""
1115
+
1116
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1117
+ msgid "Recommended for better performances"
1118
+ msgstr ""
1119
+
1120
+ #: includes/views/dompdf-status.php:51
1121
+ msgid "Better with transparent PNG images"
1122
+ msgstr ""
1123
+
1124
+ #: includes/views/dompdf-status.php:57
1125
+ msgid ""
1126
+ "Required to detect custom templates and to clear the temp folder periodically"
1127
+ msgstr ""
1128
+
1129
+ #: includes/views/dompdf-status.php:60
1130
+ msgid "Check PHP disable_functions"
1131
+ msgstr ""
1132
+
1133
+ #. translators: <a> tags
1134
+ #: includes/views/dompdf-status.php:64
1135
+ msgid ""
1136
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1137
+ "WordPress Memory Limit%2$s"
1138
+ msgstr ""
1139
+
1140
+ #: includes/views/dompdf-status.php:69
1141
+ msgid "Allow remote stylesheets and images"
1142
+ msgstr ""
1143
+
1144
+ #: includes/views/dompdf-status.php:72
1145
+ msgid "allow_url_fopen disabled"
1146
+ msgstr ""
1147
+
1148
+ #: includes/views/dompdf-status.php:75
1149
+ msgid "To compress and decompress font data"
1150
+ msgstr ""
1151
+
1152
+ #: includes/views/dompdf-status.php:78
1153
+ msgid "base64_decode disabled"
1154
+ msgstr ""
1155
+
1156
+ #. translators: <a> tags
1157
+ #: includes/views/dompdf-status.php:98
1158
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1159
+ msgstr ""
1160
+
1161
+ #: includes/views/dompdf-status.php:103
1162
+ msgid "System Configuration"
1163
+ msgstr ""
1164
+
1165
+ #: includes/views/dompdf-status.php:108
1166
+ msgid "Required"
1167
+ msgstr ""
1168
+
1169
+ #: includes/views/dompdf-status.php:109
1170
+ msgid "Present"
1171
+ msgstr ""
1172
+
1173
+ #: includes/views/dompdf-status.php:148
1174
+ msgid "Writable"
1175
+ msgstr ""
1176
+
1177
+ #: includes/views/dompdf-status.php:149
1178
+ msgid "Not writable"
1179
+ msgstr ""
1180
+
1181
+ #: includes/views/dompdf-status.php:154
1182
+ msgid "Central temporary plugin folder"
1183
+ msgstr ""
1184
+
1185
+ #: includes/views/dompdf-status.php:160
1186
+ msgid "Temporary attachments folder"
1187
+ msgstr ""
1188
+
1189
+ #: includes/views/dompdf-status.php:166
1190
+ msgid "Temporary DOMPDF folder"
1191
+ msgstr ""
1192
+
1193
+ #: includes/views/dompdf-status.php:172
1194
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1195
+ msgstr ""
1196
+
1197
+ #: includes/views/dompdf-status.php:183
1198
+ msgid "Write Permissions"
1199
+ msgstr ""
1200
+
1201
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1202
+ #: templates/Simple/packing-slip.php:88
1203
+ msgid "Description"
1204
+ msgstr "Beschreibung"
1205
+
1206
+ #: includes/views/dompdf-status.php:187
1207
+ msgid "Value"
1208
+ msgstr ""
1209
+
1210
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1211
+ #: includes/views/dompdf-status.php:213
1212
+ msgid ""
1213
+ "The central temp folder is %1$s. By default, this folder is created in the "
1214
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1215
+ "config.php. Alternatively, you can control the specific folder for PDF "
1216
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1217
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1218
+ "by the plugin if the central temp folder is writable)."
1219
+ msgstr ""
1220
+
1221
+ #. translators: directory path
1222
+ #: includes/views/dompdf-status.php:226
1223
+ msgid ""
1224
+ "If the temporary folders were not automatically created by the plugin, "
1225
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1226
+ "Normally, this is fully automated, but if your server has strict security "
1227
+ "settings, this automated copying may have been prohibited. In that case, you "
1228
+ "also need to make sure these folders get synchronized on plugin updates!"
1229
+ msgstr ""
1230
+
1231
+ #: includes/views/setup-wizard/attach-to.php:3
1232
+ msgid "Attach too..."
1233
+ msgstr ""
1234
+
1235
+ #: includes/views/setup-wizard/attach-to.php:4
1236
+ msgid "Select to which emails you would like to attach your invoice."
1237
+ msgstr ""
1238
+
1239
+ #: includes/views/setup-wizard/display-options.php:4
1240
+ msgid "Select some additional display options for your invoice."
1241
+ msgstr ""
1242
+
1243
+ #: includes/views/setup-wizard/good-to-go.php:3
1244
+ msgid "You are good to go!"
1245
+ msgstr ""
1246
+
1247
+ #: includes/views/setup-wizard/good-to-go.php:4
1248
+ msgid "If you have any questions please have a look at our documentation:"
1249
+ msgstr ""
1250
+
1251
+ #: includes/views/setup-wizard/good-to-go.php:5
1252
+ msgid "Invoices & Packing Slips"
1253
+ msgstr ""
1254
+
1255
+ #: includes/views/setup-wizard/good-to-go.php:6
1256
+ msgid "Happy selling!"
1257
+ msgstr ""
1258
+
1259
+ #: includes/views/setup-wizard/logo.php:4
1260
+ msgid "Set the header image that will display on your invoice."
1261
+ msgstr ""
1262
+
1263
+ #: includes/views/setup-wizard/paper-format.php:4
1264
+ msgid "Select the paper format for your invoice."
1265
+ msgstr ""
1266
+
1267
+ #: includes/views/setup-wizard/shop-name.php:3
1268
+ msgid "Enter your shop name"
1269
+ msgstr ""
1270
+
1271
+ #: includes/views/setup-wizard/shop-name.php:4
1272
+ msgid ""
1273
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1274
+ "shop in the fields on the right."
1275
+ msgstr ""
1276
+
1277
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1278
+ msgid ""
1279
+ "Would you like to display the action buttons in your WooCommerce order list? "
1280
+ "The action buttons allow you to manually create a PDF."
1281
+ msgstr ""
1282
+
1283
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1284
+ msgid "(You can always change this setting later via the Screen Options menu)"
1285
+ msgstr ""
1286
+
1287
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1288
+ msgid "Show action buttons"
1289
+ msgstr ""
1290
+
1291
+ #: includes/views/wcpdf-extensions.php:16
1292
+ msgid "Check out these premium extensions!"
1293
+ msgstr "Premium Erweiterungen schon gesehen?"
1294
+
1295
+ #: includes/views/wcpdf-extensions.php:17
1296
+ msgid "click items to read more"
1297
+ msgstr "klicke Elemente um weiterzulesen"
1298
+
1299
+ #: includes/views/wcpdf-extensions.php:22
1300
+ msgid ""
1301
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1302
+ "system"
1303
+ msgstr ""
1304
+ "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
1305
+ "Abrechnungssystem benötigen"
1306
+
1307
+ #: includes/views/wcpdf-extensions.php:24
1308
+ msgid ""
1309
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1310
+ "premium extensions:"
1311
+ msgstr ""
1312
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
1313
+ "Erweiterungen:"
1314
+
1315
+ #: includes/views/wcpdf-extensions.php:25
1316
+ msgid "Professional features:"
1317
+ msgstr "Professionelle Features:"
1318
+
1319
+ #: includes/views/wcpdf-extensions.php:27
1320
+ #: includes/views/wcpdf-extensions.php:57
1321
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1322
+ msgstr "E-Mail/Druck/Download <b>PDF Gutschrift & Proforma Rechnung</b>"
1323
+
1324
+ #: includes/views/wcpdf-extensions.php:28
1325
+ #: includes/views/wcpdf-extensions.php:58
1326
+ msgid ""
1327
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1328
+ "packing slips, for example to a drop-shipper or a supplier."
1329
+ msgstr ""
1330
+ "Senden Sie eine separate <b>Benachrichtigungs-E-Mail</b> mit (oder ohne) PDF-"
1331
+ "Rechnungen/Packzettel, z.B. an einen Drop-Shipper oder Lieferanten."
1332
+
1333
+ #: includes/views/wcpdf-extensions.php:29
1334
+ #: includes/views/wcpdf-extensions.php:59
1335
+ msgid ""
1336
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1337
+ "document) to the WooCommerce emails of your choice."
1338
+ msgstr ""
1339
+ "Hängen Sie <b>bis zu 3 statische Dateien</b> (z.B. ein AGB-Dokument) an die "
1340
+ "WooCommerce-E-Mails Ihrer Wahl an."
1341
+
1342
+ #: includes/views/wcpdf-extensions.php:30
1343
+ #: includes/views/wcpdf-extensions.php:60
1344
+ msgid ""
1345
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1346
+ "and credit notes or utilize the main invoice numbering system"
1347
+ msgstr ""
1348
+ "Wendet ein <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
1349
+ "Rechnungen und Gutschriften oder passt das Hauptsystem der "
1350
+ "Rechnungsnummerierung an"
1351
+
1352
+ #: includes/views/wcpdf-extensions.php:31
1353
+ #: includes/views/wcpdf-extensions.php:61
1354
+ msgid ""
1355
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1356
+ "additional custom fields, font sizes etc. without the need to create a "
1357
+ "custom template."
1358
+ msgstr ""
1359
+ "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
1360
+ "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
1361
+ "zu erstellen."
1362
+
1363
+ #: includes/views/wcpdf-extensions.php:32
1364
+ #: includes/views/wcpdf-extensions.php:62
1365
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1366
+ msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
1367
+
1368
+ #: includes/views/wcpdf-extensions.php:34
1369
+ #: includes/views/wcpdf-extensions.php:114
1370
+ msgid "Advanced, customizable templates"
1371
+ msgstr "Erweiterte, anpassbare Vorlagen"
1372
+
1373
+ #: includes/views/wcpdf-extensions.php:36
1374
+ #: includes/views/wcpdf-extensions.php:117
1375
+ msgid ""
1376
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1377
+ "your needs with a drag & drop customizer"
1378
+ msgstr ""
1379
+ "Passen Sie den Rechnungsinhalt (Preise, Steuern, Thumbnails) mit einem Drag "
1380
+ "& Drop-Customizer vollständig an Ihre Bedürfnisse an."
1381
+
1382
+ #: includes/views/wcpdf-extensions.php:37
1383
+ #: includes/views/wcpdf-extensions.php:118
1384
+ msgid "Two extra stylish premade templates (Modern & Business)"
1385
+ msgstr "Zwei extra stylische vorgefertigte Templates (Modern & Business)"
1386
+
1387
+ #: includes/views/wcpdf-extensions.php:39
1388
+ #: includes/views/wcpdf-extensions.php:63
1389
+ msgid "Upload automatically to dropbox"
1390
+ msgstr "Automatischer Upload in die Dropbox"
1391
+
1392
+ #: includes/views/wcpdf-extensions.php:41
1393
+ msgid ""
1394
+ "This extension conveniently uploads all the invoices (and other pdf "
1395
+ "documents from the professional extension) that are emailed to your "
1396
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1397
+ "date!"
1398
+ msgstr ""
1399
+ "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
1400
+ "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
1401
+ "Rechnungsadministration aktuell zu halten!"
1402
+
1403
+ #: includes/views/wcpdf-extensions.php:44
1404
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1405
+ msgstr "WooCommerce PDF Invoices & Packing Slips ordern"
1406
+
1407
+ #: includes/views/wcpdf-extensions.php:53
1408
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1409
+ msgstr "Upgrade auf Pro: Proforma Rechnung, Gutschrift & mehr!"
1410
+
1411
+ #: includes/views/wcpdf-extensions.php:55
1412
+ msgid ""
1413
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1414
+ "features:"
1415
+ msgstr ""
1416
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
1417
+
1418
+ #: includes/views/wcpdf-extensions.php:65
1419
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1420
+ msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
1421
+
1422
+ #: includes/views/wcpdf-extensions.php:73
1423
+ msgid "Automatically send payment reminders to your customers"
1424
+ msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
1425
+
1426
+ #: includes/views/wcpdf-extensions.php:75
1427
+ msgid "WooCommerce Smart Reminder emails"
1428
+ msgstr "WooCommerce Smart Erinnerungsmails"
1429
+
1430
+ #: includes/views/wcpdf-extensions.php:77
1431
+ msgid "<b>Completely automatic</b> scheduled emails"
1432
+ msgstr "<b>Vollautomatische</b> geplant e-Mails"
1433
+
1434
+ #: includes/views/wcpdf-extensions.php:78
1435
+ msgid ""
1436
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1437
+ "from the order (name, order total, etc)"
1438
+ msgstr ""
1439
+ "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
1440
+ "aus der Bestellung (Name, Auftragssumme, etc.)"
1441
+
1442
+ #: includes/views/wcpdf-extensions.php:79
1443
+ msgid ""
1444
+ "Configure the exact requirements for sending an email (time after order, "
1445
+ "order status, payment method)"
1446
+ msgstr ""
1447
+ "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
1448
+ "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
1449
+
1450
+ #: includes/views/wcpdf-extensions.php:80
1451
+ msgid ""
1452
+ "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1453
+ "order language."
1454
+ msgstr ""
1455
+ "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
1456
+ "Bestellsprache versendet."
1457
+
1458
+ #: includes/views/wcpdf-extensions.php:81
1459
+ msgid ""
1460
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1461
+ "reminders, repeat purchases)"
1462
+ msgstr ""
1463
+ "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
1464
+ "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
1465
+
1466
+ #: includes/views/wcpdf-extensions.php:82
1467
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1468
+ msgstr ""
1469
+ "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
1470
+
1471
+ #: includes/views/wcpdf-extensions.php:84
1472
+ msgid "Get WooCommerce Smart Reminder Emails"
1473
+ msgstr "WooCommerce Smart Erinnerungsmails ordern"
1474
+
1475
+ #: includes/views/wcpdf-extensions.php:93
1476
+ msgid ""
1477
+ "Automatically send new orders or packing slips to your printer, as soon as "
1478
+ "the customer orders!"
1479
+ msgstr ""
1480
+ "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
1481
+ "sobald ein Kunde bestellt."
1482
+
1483
+ #: includes/views/wcpdf-extensions.php:99
1484
+ msgid ""
1485
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1486
+ "partners at Simba Hosting"
1487
+ msgstr ""
1488
+ "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
1489
+ "Partner Simba Hosting "
1490
+
1491
+ #: includes/views/wcpdf-extensions.php:100
1492
+ msgid "WooCommerce Automatic Order Printing"
1493
+ msgstr "WooCommerce Automatic Order Printing"
1494
+
1495
+ #. translators: Premium Templates link
1496
+ #: includes/views/wcpdf-extensions.php:120
1497
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1498
+ msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
1499
+
1500
+ #. translators: email link
1501
+ #: includes/views/wcpdf-extensions.php:122
1502
+ msgid "For custom templates, contact us at %s."
1503
+ msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
1504
+
1505
+ #: includes/views/wcpdf-settings-page.php:9
1506
+ msgid "WooCommerce PDF Invoices"
1507
+ msgstr "WooCommerce PDF Rechnungen"
1508
+
1509
+ #: includes/wcpdf-functions.php:209
1510
+ msgid "Error creating PDF, please contact the site owner."
1511
+ msgstr ""
1512
+
1513
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1514
+ msgid "Billing Address:"
1515
+ msgstr "Rechnungsadresse:"
1516
+
1517
+ #: templates/Simple/invoice.php:48
1518
+ msgid "Ship To:"
1519
+ msgstr "Versand nach:"
1520
+
1521
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1522
+ msgid "Order Number:"
1523
+ msgstr "Bestellnummer:"
1524
+
1525
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1526
+ msgid "Order Date:"
1527
+ msgstr "Bestelldatum:"
1528
+
1529
+ #: templates/Simple/invoice.php:78
1530
+ msgid "Payment Method:"
1531
+ msgstr "Zahlungsart:"
1532
+
1533
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1534
+ msgid "Product"
1535
+ msgstr "Produkt"
1536
+
1537
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1538
+ msgid "Quantity"
1539
+ msgstr "Anzahl"
1540
+
1541
+ #: templates/Simple/invoice.php:94
1542
+ msgid "Price"
1543
+ msgstr "Preis"
1544
+
1545
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1546
+ msgid "SKU"
1547
+ msgstr "Art.-Nr."
1548
+
1549
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1550
+ msgid "SKU:"
1551
+ msgstr "Art.-Nr.:"
1552
+
1553
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1554
+ msgid "Weight:"
1555
+ msgstr "Gewicht:"
1556
+
1557
+ #: templates/Simple/invoice.php:123
1558
+ msgid "Notes"
1559
+ msgstr ""
1560
+
1561
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1562
+ msgid "Customer Notes"
1563
+ msgstr "Anmerkungen"
1564
+
1565
+ #: templates/Simple/packing-slip.php:35
1566
+ msgid "Shipping Address:"
1567
+ msgstr "Lieferadresse:"
1568
+
1569
+ #: templates/Simple/packing-slip.php:66
1570
+ msgid "Shipping Method:"
1571
+ msgstr "Versandart:"
1572
+
1573
+ #. translators: <a> tags
1574
+ #: woocommerce-pdf-invoices-packingslips.php:271
1575
+ msgid ""
1576
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1577
+ "installed & activated!"
1578
+ msgstr ""
1579
+
1580
+ #: woocommerce-pdf-invoices-packingslips.php:282
1581
+ msgid ""
1582
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1583
+ "recommended)."
1584
+ msgstr ""
1585
+
1586
+ #. translators: <a> tags
1587
+ #: woocommerce-pdf-invoices-packingslips.php:284
1588
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1589
+ msgstr ""
1590
+
1591
+ #. translators: <a> tags
1592
+ #: woocommerce-pdf-invoices-packingslips.php:286
1593
+ msgid ""
1594
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1595
+ "to enable backwards compatibility with PHP5.6."
1596
+ msgstr ""
1597
+
1598
+ #. translators: directory path
1599
+ #: woocommerce-pdf-invoices-packingslips.php:374
1600
+ msgid ""
1601
+ "The PDF files in %s are not currently protected due to your site running on "
1602
+ "<strong>NGINX</strong>."
1603
+ msgstr ""
1604
+
1605
+ #: woocommerce-pdf-invoices-packingslips.php:375
1606
+ msgid "To protect them, you must click the button below."
1607
+ msgstr ""
1608
+
1609
+ #. translators: plugin name
1610
+ #: woocommerce-pdf-invoices-packingslips.php:419
1611
+ msgid ""
1612
+ "When sending emails with MailPoet 3 and the active sending method is "
1613
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1614
+ "the emails."
1615
+ msgstr ""
1616
+
1617
+ #. translators: "Your web host / web server"
1618
+ #: woocommerce-pdf-invoices-packingslips.php:421
1619
+ msgid "To fix this you should select other method like %1$s or %2$s."
1620
+ msgstr ""
1621
+
1622
+ #. translators: "Your web host / web server"
1623
+ #: woocommerce-pdf-invoices-packingslips.php:421
1624
+ msgid "Your web host / web server"
1625
+ msgstr ""
1626
+
1627
+ #: woocommerce-pdf-invoices-packingslips.php:422
1628
+ msgid "Change MailPoet sending method"
1629
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-en_AU.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-en_AU.po CHANGED
@@ -1,1545 +1,1562 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:10+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
- "Language: en_AU\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 3.0\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #. Plugin Name of the plugin
22
- msgid "WooCommerce PDF Invoices & Packing Slips"
23
- msgstr "WooCommerce PDF Invoices & Packing Slips"
24
-
25
- #. Plugin URI of the plugin
26
- #. Author URI of the plugin
27
- msgid "http://www.wpovernight.com"
28
- msgstr "http://www.wpovernight.com"
29
-
30
- #. Description of the plugin
31
- msgid ""
32
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
- msgstr ""
34
-
35
- #. Author of the plugin
36
- msgid "Ewout Fernhout"
37
- msgstr "Ewout Fernhout"
38
-
39
- #. translators: rounded count
40
- #: includes/class-wcpdf-admin.php:92
41
- msgid "Wow, you have created more than %d invoices with our plugin!"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:93
45
- msgid ""
46
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
- "rating. Help us spread the word and boost our motivation!"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:95
51
- msgid "Yes you deserve it!"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
- #: includes/views/attachment-settings-hint.php:24
56
- #: includes/views/wcpdf-extensions.php:131
57
- #: woocommerce-pdf-invoices-packingslips.php:377
58
- #: woocommerce-pdf-invoices-packingslips.php:423
59
- msgid "Hide this message"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-admin.php:96
63
- msgid "Already did!"
64
- msgstr ""
65
-
66
- #: includes/class-wcpdf-admin.php:97
67
- msgid "Actually, I have a complaint..."
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:132
71
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:132
75
- msgid "Jumpstart the plugin by following our wizard!"
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:133
79
- msgid "Run the Setup Wizard"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:133
83
- msgid "I am the wizard"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
- #: includes/documents/class-wcpdf-invoice.php:302
88
- msgid "Invoice Number"
89
- msgstr ""
90
-
91
- #: includes/class-wcpdf-admin.php:261
92
- msgid "Send order email"
93
- msgstr ""
94
-
95
- #: includes/class-wcpdf-admin.php:272
96
- msgid "Create PDF"
97
- msgstr ""
98
-
99
- #: includes/class-wcpdf-admin.php:282
100
- msgid "PDF document data"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:304
104
- msgid "Choose an email to send&hellip;"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-admin.php:320
108
- msgid "Save order & send email"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:322
112
- msgid "Send email"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:378
116
- #: includes/documents/class-wcpdf-invoice.php:460
117
- msgid "Invoice Number:"
118
- msgstr ""
119
-
120
- #: includes/class-wcpdf-admin.php:381
121
- #: includes/documents/class-wcpdf-invoice.php:468
122
- msgid "Invoice Date:"
123
- msgstr ""
124
-
125
- #: includes/class-wcpdf-admin.php:384
126
- msgid "Notes (printed in the invoice):"
127
- msgstr ""
128
-
129
- #. translators: document title
130
- #: includes/class-wcpdf-admin.php:469
131
- msgid "Set %s number & date"
132
- msgstr ""
133
-
134
- #: includes/class-wcpdf-admin.php:478
135
- msgid "unformatted!"
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-admin.php:518
139
- msgid "Save changes"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:519
143
- msgid "Cancel"
144
- msgstr ""
145
-
146
- #. translators: name/description of the context for document creation logs
147
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
- msgid "order details (number and/or date set manually)"
149
- msgstr ""
150
-
151
- #. translators: %s: email title
152
- #: includes/class-wcpdf-admin.php:647
153
- msgid "%s email notification manually sent."
154
- msgstr ""
155
-
156
- #: includes/class-wcpdf-admin.php:734
157
- msgid "Nonce expired!"
158
- msgstr ""
159
-
160
- #: includes/class-wcpdf-admin.php:740
161
- msgid "Bad action!"
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:746
165
- msgid "Incomplete request!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:752
169
- msgid "No permissions!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:776
173
- msgid "Document data saved!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:777
177
- msgid "An error occurred while saving the document data!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:780
181
- msgid "Document regenerated!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:781
185
- msgid "An error occurred while regenerating the document!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:784
189
- msgid "Document deleted!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:785
193
- msgid "An error occurred while deleting the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:841
197
- msgid "Document does not exist."
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:850
201
- msgid "Document is empty."
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:881
205
- msgid "DEBUG output enabled"
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-assets.php:91
209
- msgid "Are you sure you want to delete this document? This cannot be undone."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-assets.php:92
213
- msgid ""
214
- "Are you sure you want to regenerate this document? This will make the "
215
- "document reflect the most current settings (such as footer text, document "
216
- "name, etc.) rather than using historical settings."
217
- msgstr ""
218
-
219
- #: includes/class-wcpdf-frontend.php:126
220
- msgid "Download invoice (PDF)"
221
- msgstr ""
222
-
223
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
224
- #: includes/class-wcpdf-main.php:338
225
- msgid "You do not have sufficient permissions to access this page."
226
- msgstr ""
227
-
228
- #: includes/class-wcpdf-main.php:275
229
- msgid "You haven't selected any orders"
230
- msgstr ""
231
-
232
- #: includes/class-wcpdf-main.php:279
233
- msgid "Some of the export parameters are missing."
234
- msgstr ""
235
-
236
- #. translators: document type
237
- #: includes/class-wcpdf-main.php:379
238
- msgid "Document of type '%s' for the selected order(s) could not be generated"
239
- msgstr ""
240
-
241
- #. translators: 1. plugin name, 2. directory path
242
- #: includes/class-wcpdf-main.php:591
243
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
- msgstr ""
245
-
246
- #: includes/class-wcpdf-main.php:592
247
- msgid ""
248
- "Please check your directories write permissions or contact your hosting "
249
- "service provider."
250
- msgstr ""
251
-
252
- #: includes/class-wcpdf-main.php:907
253
- #: includes/documents/class-wcpdf-invoice.php:286
254
- msgid "Invoice Date"
255
- msgstr ""
256
-
257
- #. translators: name/description of the context for document creation logs
258
- #: includes/class-wcpdf-main.php:937
259
- msgid "bulk order action"
260
- msgstr ""
261
-
262
- #. translators: name/description of the context for document creation logs
263
- #: includes/class-wcpdf-main.php:945
264
- msgid "single order action"
265
- msgstr ""
266
-
267
- #. translators: name/description of the context for document creation logs
268
- #: includes/class-wcpdf-main.php:953
269
- msgid "my account"
270
- msgstr ""
271
-
272
- #. translators: name/description of the context for document creation logs
273
- #: includes/class-wcpdf-main.php:961
274
- msgid "email attachment"
275
- msgstr ""
276
-
277
- #. translators: 1. document title, 2. creation source
278
- #: includes/class-wcpdf-main.php:970
279
- msgid "PDF %1$s created via %2$s."
280
- msgstr ""
281
-
282
- #. translators: document title
283
- #: includes/class-wcpdf-main.php:1006
284
- msgid "Order %s Saved"
285
- msgstr ""
286
-
287
- #: includes/class-wcpdf-settings-callbacks.php:27
288
- msgid ""
289
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
- "Do not use them on a live website!"
291
- msgstr ""
292
-
293
- #: includes/class-wcpdf-settings-callbacks.php:36
294
- msgid ""
295
- "These are used for the (optional) footer columns in the <em>Modern "
296
- "(Premium)</em> template, but can also be used for other elements in your "
297
- "custom template"
298
- msgstr ""
299
-
300
- #: includes/class-wcpdf-settings-callbacks.php:383
301
- msgid "Image resolution"
302
- msgstr ""
303
-
304
- #: includes/class-wcpdf-settings-callbacks.php:410
305
- msgid "Save"
306
- msgstr ""
307
-
308
- #: includes/class-wcpdf-settings-debug.php:45
309
- #: woocommerce-pdf-invoices-packingslips.php:376
310
- msgid "Generate random temporary folder name"
311
- msgstr ""
312
-
313
- #. translators: directory path
314
- #: includes/class-wcpdf-settings-debug.php:58
315
- msgid "Temporary folder moved to %s"
316
- msgstr ""
317
-
318
- #: includes/class-wcpdf-settings-debug.php:68
319
- msgid "Reinstall fonts"
320
- msgstr ""
321
-
322
- #: includes/class-wcpdf-settings-debug.php:89
323
- msgid "Fonts reinstalled!"
324
- msgstr ""
325
-
326
- #: includes/class-wcpdf-settings-debug.php:98
327
- msgid "Remove temporary files"
328
- msgstr ""
329
-
330
- #: includes/class-wcpdf-settings-debug.php:109
331
- msgid "Unable to read temporary folder contents!"
332
- msgstr ""
333
-
334
- #. translators: 1,2. file count
335
- #: includes/class-wcpdf-settings-debug.php:127
336
- msgid "Unable to delete %1$d files! (deleted %2$d)"
337
- msgstr ""
338
-
339
- #. translators: file count
340
- #: includes/class-wcpdf-settings-debug.php:131
341
- msgid "Successfully deleted %d files!"
342
- msgstr ""
343
-
344
- #: includes/class-wcpdf-settings-debug.php:135
345
- msgid "Nothing to delete!"
346
- msgstr ""
347
-
348
- #: includes/class-wcpdf-settings-debug.php:146
349
- msgid "Delete legacy (1.X) settings"
350
- msgstr ""
351
-
352
- #: includes/class-wcpdf-settings-debug.php:162
353
- msgid "Legacy settings deleted!"
354
- msgstr ""
355
-
356
- #: includes/class-wcpdf-settings-debug.php:192
357
- msgid "Debug settings"
358
- msgstr ""
359
-
360
- #: includes/class-wcpdf-settings-debug.php:198
361
- msgid "Legacy mode"
362
- msgstr ""
363
-
364
- #: includes/class-wcpdf-settings-debug.php:204
365
- msgid ""
366
- "Legacy mode ensures compatibility with templates and filters from previous "
367
- "versions."
368
- msgstr ""
369
-
370
- #: includes/class-wcpdf-settings-debug.php:210
371
- msgid "Legacy textdomain fallback"
372
- msgstr ""
373
-
374
- #: includes/class-wcpdf-settings-debug.php:216
375
- msgid ""
376
- "Legacy textdomain fallback ensures compatibility with translation files from "
377
- "versions prior to 2017-05-15."
378
- msgstr ""
379
-
380
- #: includes/class-wcpdf-settings-debug.php:222
381
- msgid "Allow guest access"
382
- msgstr ""
383
-
384
- #: includes/class-wcpdf-settings-debug.php:228
385
- msgid ""
386
- "Enable this to allow customers that purchase without an account to access "
387
- "their PDF with a unique key"
388
- msgstr ""
389
-
390
- #: includes/class-wcpdf-settings-debug.php:234
391
- msgid "Calculate document numbers (slow)"
392
- msgstr ""
393
-
394
- #: includes/class-wcpdf-settings-debug.php:240
395
- msgid ""
396
- "Document numbers (such as invoice numbers) are generated using "
397
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
398
- "with more than 1."
399
- msgstr ""
400
-
401
- #: includes/class-wcpdf-settings-debug.php:246
402
- msgid "Enable debug output"
403
- msgstr ""
404
-
405
- #: includes/class-wcpdf-settings-debug.php:252
406
- msgid ""
407
- "Enable this option to output plugin errors if you're getting a blank page or "
408
- "other PDF generation issues"
409
- msgstr ""
410
-
411
- #: includes/class-wcpdf-settings-debug.php:253
412
- msgid ""
413
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
414
- "places on your site too, therefor this is not recommended to leave it "
415
- "enabled on live sites."
416
- msgstr ""
417
-
418
- #: includes/class-wcpdf-settings-debug.php:254
419
- msgid ""
420
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
421
- "order basis."
422
- msgstr ""
423
-
424
- #: includes/class-wcpdf-settings-debug.php:260
425
- msgid "Enable automatic cleanup"
426
- msgstr ""
427
-
428
- #. translators: number of days
429
- #: includes/class-wcpdf-settings-debug.php:268
430
- msgid "every %s days"
431
- msgstr ""
432
-
433
- #: includes/class-wcpdf-settings-debug.php:273
434
- msgid ""
435
- "Automatically clean up PDF files stored in the temporary folder (used for "
436
- "email attachments)"
437
- msgstr ""
438
-
439
- #: includes/class-wcpdf-settings-debug.php:274
440
- msgid ""
441
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
442
- "automatic cleanup but not enabled on your server."
443
- msgstr ""
444
-
445
- #: includes/class-wcpdf-settings-debug.php:280
446
- msgid "Output to HTML"
447
- msgstr ""
448
-
449
- #: includes/class-wcpdf-settings-debug.php:286
450
- msgid ""
451
- "Send the template output as HTML to the browser instead of creating a PDF."
452
- msgstr ""
453
-
454
- #: includes/class-wcpdf-settings-debug.php:287
455
- msgid ""
456
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
457
- "order basis."
458
- msgstr ""
459
-
460
- #: includes/class-wcpdf-settings-debug.php:293
461
- msgid "Use alternative HTML5 parser to parse HTML"
462
- msgstr ""
463
-
464
- #: includes/class-wcpdf-settings-debug.php:304
465
- msgid "Log to order notes"
466
- msgstr ""
467
-
468
- #: includes/class-wcpdf-settings-debug.php:310
469
- msgid "Log PDF document creation to order notes."
470
- msgstr ""
471
-
472
- #: includes/class-wcpdf-settings-documents.php:30
473
- #: includes/class-wcpdf-settings.php:97
474
- msgid "Documents"
475
- msgstr ""
476
-
477
- #: includes/class-wcpdf-settings-documents.php:36
478
- #: includes/class-wcpdf-settings-documents.php:57
479
- msgid "untitled"
480
- msgstr ""
481
-
482
- #: includes/class-wcpdf-settings-documents.php:50
483
- msgid ""
484
- "All available documents are listed below. Click on a document to configure "
485
- "it."
486
- msgstr ""
487
-
488
- #: includes/class-wcpdf-settings-general.php:40
489
- msgid "General settings"
490
- msgstr ""
491
-
492
- #: includes/class-wcpdf-settings-general.php:46
493
- msgid "How do you want to view the PDF?"
494
- msgstr ""
495
-
496
- #: includes/class-wcpdf-settings-general.php:53
497
- msgid "Download the PDF"
498
- msgstr ""
499
-
500
- #: includes/class-wcpdf-settings-general.php:54
501
- msgid "Open the PDF in a new browser tab/window"
502
- msgstr ""
503
-
504
- #: includes/class-wcpdf-settings-general.php:61
505
- msgid "Choose a template"
506
- msgstr ""
507
-
508
- #. translators: 1,2. template paths
509
- #: includes/class-wcpdf-settings-general.php:69
510
- msgid ""
511
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
512
- "your (child) theme in <code>%2$s</code> to customize them"
513
- msgstr ""
514
-
515
- #: includes/class-wcpdf-settings-general.php:75
516
- msgid "Paper size"
517
- msgstr ""
518
-
519
- #: includes/class-wcpdf-settings-general.php:82
520
- #: includes/views/setup-wizard/paper-format.php:12
521
- msgid "A4"
522
- msgstr ""
523
-
524
- #: includes/class-wcpdf-settings-general.php:83
525
- #: includes/views/setup-wizard/paper-format.php:13
526
- msgid "Letter"
527
- msgstr ""
528
-
529
- #: includes/class-wcpdf-settings-general.php:90
530
- msgid "Test mode"
531
- msgstr ""
532
-
533
- #: includes/class-wcpdf-settings-general.php:96
534
- msgid ""
535
- "With test mode enabled, any document generated will always use the latest "
536
- "settings, rather than using the settings as configured at the time the "
537
- "document was first created."
538
- msgstr ""
539
-
540
- #: includes/class-wcpdf-settings-general.php:96
541
- msgid ""
542
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
543
- "setting and will still be generated."
544
- msgstr ""
545
-
546
- #: includes/class-wcpdf-settings-general.php:102
547
- msgid "Extended currency symbol support"
548
- msgstr ""
549
-
550
- #: includes/class-wcpdf-settings-general.php:108
551
- msgid "Enable this if your currency symbol is not displaying properly"
552
- msgstr ""
553
-
554
- #: includes/class-wcpdf-settings-general.php:114
555
- msgid "Enable font subsetting"
556
- msgstr ""
557
-
558
- #: includes/class-wcpdf-settings-general.php:120
559
- msgid ""
560
- "Font subsetting can reduce file size by only including the characters that "
561
- "are used in the PDF, but limits the ability to edit PDF files later. "
562
- "Recommended if you're using an Asian font."
563
- msgstr ""
564
-
565
- #: includes/class-wcpdf-settings-general.php:126
566
- msgid "Shop header/logo"
567
- msgstr ""
568
-
569
- #: includes/class-wcpdf-settings-general.php:132
570
- #: includes/views/setup-wizard/logo.php:20
571
- msgid "Select or upload your invoice header/logo"
572
- msgstr ""
573
-
574
- #: includes/class-wcpdf-settings-general.php:133
575
- #: includes/views/setup-wizard/logo.php:20
576
- msgid "Set image"
577
- msgstr ""
578
-
579
- #: includes/class-wcpdf-settings-general.php:134
580
- #: includes/views/setup-wizard/logo.php:20
581
- msgid "Remove image"
582
- msgstr ""
583
-
584
- #: includes/class-wcpdf-settings-general.php:141
585
- msgid "Logo height"
586
- msgstr ""
587
-
588
- #: includes/class-wcpdf-settings-general.php:149
589
- msgid ""
590
- "Enter the total height of the logo in mm, cm or in and use a dot for "
591
- "decimals.<br/>For example: 1.15in or 40mm"
592
- msgstr ""
593
-
594
- #: includes/class-wcpdf-settings-general.php:155
595
- #: includes/class-wcpdf-setup-wizard.php:47
596
- msgid "Shop Name"
597
- msgstr ""
598
-
599
- #: includes/class-wcpdf-settings-general.php:168
600
- msgid "Shop Address"
601
- msgstr ""
602
-
603
- #: includes/class-wcpdf-settings-general.php:183
604
- msgid "Footer: terms & conditions, policies, etc."
605
- msgstr ""
606
-
607
- #: includes/class-wcpdf-settings-general.php:198
608
- msgid "Extra template fields"
609
- msgstr ""
610
-
611
- #: includes/class-wcpdf-settings-general.php:204
612
- msgid "Extra field 1"
613
- msgstr ""
614
-
615
- #: includes/class-wcpdf-settings-general.php:212
616
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
617
- msgstr ""
618
-
619
- #: includes/class-wcpdf-settings-general.php:219
620
- msgid "Extra field 2"
621
- msgstr ""
622
-
623
- #: includes/class-wcpdf-settings-general.php:227
624
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
625
- msgstr ""
626
-
627
- #: includes/class-wcpdf-settings-general.php:234
628
- msgid "Extra field 3"
629
- msgstr ""
630
-
631
- #: includes/class-wcpdf-settings-general.php:242
632
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
633
- msgstr ""
634
-
635
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
636
- msgid "PDF Invoices"
637
- msgstr ""
638
-
639
- #: includes/class-wcpdf-settings.php:74
640
- msgid "Documentation"
641
- msgstr ""
642
-
643
- #: includes/class-wcpdf-settings.php:75
644
- msgid "Support Forum"
645
- msgstr ""
646
-
647
- #. translators: database row value
648
- #: includes/class-wcpdf-settings.php:88
649
- msgid ""
650
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
651
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
652
- "document numbers (slow)' setting in the Status tab to use an alternate "
653
- "method."
654
- msgstr ""
655
-
656
- #: includes/class-wcpdf-settings.php:96
657
- msgid "General"
658
- msgstr ""
659
-
660
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
661
- msgid "Status"
662
- msgstr ""
663
-
664
- #: includes/class-wcpdf-setup-wizard.php:51
665
- #: includes/views/setup-wizard/logo.php:3
666
- msgid "Your logo"
667
- msgstr ""
668
-
669
- #: includes/class-wcpdf-setup-wizard.php:55
670
- msgid "Attachments"
671
- msgstr ""
672
-
673
- #: includes/class-wcpdf-setup-wizard.php:59
674
- #: includes/views/setup-wizard/display-options.php:3
675
- msgid "Display options"
676
- msgstr ""
677
-
678
- #: includes/class-wcpdf-setup-wizard.php:63
679
- #: includes/views/setup-wizard/paper-format.php:3
680
- msgid "Paper format"
681
- msgstr ""
682
-
683
- #: includes/class-wcpdf-setup-wizard.php:67
684
- #: includes/views/setup-wizard/show-action-buttons.php:3
685
- msgid "Action buttons"
686
- msgstr ""
687
-
688
- #: includes/class-wcpdf-setup-wizard.php:71
689
- msgid "Ready!"
690
- msgstr ""
691
-
692
- #: includes/class-wcpdf-setup-wizard.php:133
693
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
694
- msgstr ""
695
-
696
- #: includes/class-wcpdf-setup-wizard.php:185
697
- msgid "Previous"
698
- msgstr ""
699
-
700
- #: includes/class-wcpdf-setup-wizard.php:190
701
- msgid "Next"
702
- msgstr ""
703
-
704
- #: includes/class-wcpdf-setup-wizard.php:191
705
- msgid "Skip this step"
706
- msgstr ""
707
-
708
- #: includes/class-wcpdf-setup-wizard.php:193
709
- msgid "Finish"
710
- msgstr ""
711
-
712
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
713
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
714
- msgid "N/A"
715
- msgstr ""
716
-
717
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
718
- msgid "Payment method"
719
- msgstr ""
720
-
721
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
722
- msgid "Shipping method"
723
- msgstr ""
724
-
725
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
726
- msgid "Subtotal"
727
- msgstr ""
728
-
729
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
730
- msgid "Shipping"
731
- msgstr ""
732
-
733
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
734
- msgid "Discount"
735
- msgstr ""
736
-
737
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
738
- msgid "VAT"
739
- msgstr "GST"
740
-
741
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
742
- msgid "Tax rate"
743
- msgstr ""
744
-
745
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
746
- msgid "Total ex. VAT"
747
- msgstr "Total ex. GST"
748
-
749
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
750
- msgid "Total"
751
- msgstr ""
752
-
753
- #. translators: 1. credit note title, 2. refund id
754
- #: includes/documents/abstract-wcpdf-order-document.php:336
755
- msgid "%1$s (refund #%2$s) was regenerated."
756
- msgstr ""
757
-
758
- #. translators: 1. credit note title, 2. refund id
759
- #: includes/documents/abstract-wcpdf-order-document.php:336
760
- msgid "%s was regenerated"
761
- msgstr ""
762
-
763
- #. translators: %s: document name
764
- #: includes/documents/abstract-wcpdf-order-document.php:422
765
- msgid "%s Number:"
766
- msgstr ""
767
-
768
- #. translators: %s: document name
769
- #: includes/documents/abstract-wcpdf-order-document.php:428
770
- msgid "%s Date:"
771
- msgstr ""
772
-
773
- #: includes/documents/abstract-wcpdf-order-document.php:891
774
- msgid "Admin email"
775
- msgstr ""
776
-
777
- #: includes/documents/abstract-wcpdf-order-document.php:894
778
- msgid "Manual email"
779
- msgstr ""
780
-
781
- #: includes/documents/class-wcpdf-invoice.php:32
782
- #: includes/documents/class-wcpdf-invoice.php:56
783
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
784
- msgid "Invoice"
785
- msgstr ""
786
-
787
- # This is a filename (prefix). do not use spaces or special characters!
788
- #: includes/documents/class-wcpdf-invoice.php:131
789
- msgid "invoice"
790
- msgid_plural "invoices"
791
- msgstr[0] ""
792
- msgstr[1] ""
793
-
794
- #: includes/documents/class-wcpdf-invoice.php:186
795
- #: includes/documents/class-wcpdf-packing-slip.php:88
796
- msgid "Enable"
797
- msgstr ""
798
-
799
- #: includes/documents/class-wcpdf-invoice.php:197
800
- msgid "Attach to:"
801
- msgstr ""
802
-
803
- #. translators: directory path
804
- #: includes/documents/class-wcpdf-invoice.php:205
805
- msgid ""
806
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
807
- "permissions for this folder! Without having write access to this folder, the "
808
- "plugin will not be able to email invoices."
809
- msgstr ""
810
-
811
- #: includes/documents/class-wcpdf-invoice.php:211
812
- msgid "Disable for:"
813
- msgstr ""
814
-
815
- #: includes/documents/class-wcpdf-invoice.php:220
816
- msgid "Select one or more statuses"
817
- msgstr ""
818
-
819
- #: includes/documents/class-wcpdf-invoice.php:226
820
- #: includes/views/setup-wizard/display-options.php:17
821
- msgid "Display shipping address"
822
- msgstr ""
823
-
824
- #: includes/documents/class-wcpdf-invoice.php:233
825
- #: includes/documents/class-wcpdf-invoice.php:285
826
- #: includes/documents/class-wcpdf-invoice.php:301
827
- #: includes/documents/class-wcpdf-packing-slip.php:106
828
- msgid "No"
829
- msgstr ""
830
-
831
- #: includes/documents/class-wcpdf-invoice.php:234
832
- msgid "Only when different from billing address"
833
- msgstr ""
834
-
835
- #: includes/documents/class-wcpdf-invoice.php:235
836
- #: includes/documents/class-wcpdf-invoice.php:378
837
- #: includes/documents/class-wcpdf-packing-slip.php:108
838
- msgid "Always"
839
- msgstr ""
840
-
841
- #: includes/documents/class-wcpdf-invoice.php:243
842
- #: includes/documents/class-wcpdf-packing-slip.php:116
843
- #: includes/views/setup-wizard/display-options.php:26
844
- msgid "Display email address"
845
- msgstr ""
846
-
847
- #: includes/documents/class-wcpdf-invoice.php:254
848
- #: includes/documents/class-wcpdf-packing-slip.php:127
849
- #: includes/views/setup-wizard/display-options.php:35
850
- msgid "Display phone number"
851
- msgstr ""
852
-
853
- #: includes/documents/class-wcpdf-invoice.php:265
854
- #: includes/documents/class-wcpdf-packing-slip.php:138
855
- msgid "Display customer notes"
856
- msgstr ""
857
-
858
- #: includes/documents/class-wcpdf-invoice.php:278
859
- #: includes/views/setup-wizard/display-options.php:44
860
- msgid "Display invoice date"
861
- msgstr ""
862
-
863
- #: includes/documents/class-wcpdf-invoice.php:287
864
- msgid "Order Date"
865
- msgstr ""
866
-
867
- #: includes/documents/class-wcpdf-invoice.php:294
868
- #: includes/views/setup-wizard/display-options.php:53
869
- msgid "Display invoice number"
870
- msgstr ""
871
-
872
- #: includes/documents/class-wcpdf-invoice.php:303
873
- msgid "Order Number"
874
- msgstr ""
875
-
876
- #: includes/documents/class-wcpdf-invoice.php:307
877
- msgid "Warning!"
878
- msgstr ""
879
-
880
- #: includes/documents/class-wcpdf-invoice.php:308
881
- msgid ""
882
- "Using the Order Number as invoice number is not recommended as this may lead "
883
- "to gaps in the invoice number sequence (even when order numbers are "
884
- "sequential)."
885
- msgstr ""
886
-
887
- #: includes/documents/class-wcpdf-invoice.php:309
888
- msgid "More information"
889
- msgstr ""
890
-
891
- #: includes/documents/class-wcpdf-invoice.php:316
892
- msgid "Next invoice number (without prefix/suffix etc.)"
893
- msgstr ""
894
-
895
- #: includes/documents/class-wcpdf-invoice.php:322
896
- msgid ""
897
- "This is the number that will be used for the next document. By default, "
898
- "numbering starts from 1 and increases for every new document. Note that if "
899
- "you override this and set it lower than the current/highest number, this "
900
- "could create duplicate numbers!"
901
- msgstr ""
902
-
903
- #: includes/documents/class-wcpdf-invoice.php:328
904
- msgid "Number format"
905
- msgstr ""
906
-
907
- #: includes/documents/class-wcpdf-invoice.php:336
908
- msgid "Prefix"
909
- msgstr ""
910
-
911
- #: includes/documents/class-wcpdf-invoice.php:338
912
- msgid ""
913
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
914
- "respectively"
915
- msgstr ""
916
-
917
- #: includes/documents/class-wcpdf-invoice.php:341
918
- msgid "Suffix"
919
- msgstr ""
920
-
921
- #: includes/documents/class-wcpdf-invoice.php:346
922
- msgid "Padding"
923
- msgstr ""
924
-
925
- #: includes/documents/class-wcpdf-invoice.php:349
926
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
927
- msgstr ""
928
-
929
- #: includes/documents/class-wcpdf-invoice.php:352
930
- msgid ""
931
- "note: if you have already created a custom invoice number format with a "
932
- "filter, the above settings will be ignored"
933
- msgstr ""
934
-
935
- #: includes/documents/class-wcpdf-invoice.php:358
936
- msgid "Reset invoice number yearly"
937
- msgstr ""
938
-
939
- #: includes/documents/class-wcpdf-invoice.php:369
940
- msgid "Allow My Account invoice download"
941
- msgstr ""
942
-
943
- #: includes/documents/class-wcpdf-invoice.php:376
944
- msgid "Only when an invoice is already created/emailed"
945
- msgstr ""
946
-
947
- #: includes/documents/class-wcpdf-invoice.php:377
948
- msgid "Only for specific order statuses (define below)"
949
- msgstr ""
950
-
951
- #: includes/documents/class-wcpdf-invoice.php:379
952
- msgid "Never"
953
- msgstr ""
954
-
955
- #: includes/documents/class-wcpdf-invoice.php:394
956
- msgid "Enable invoice number column in the orders list"
957
- msgstr ""
958
-
959
- #: includes/documents/class-wcpdf-invoice.php:405
960
- msgid "Disable for free orders"
961
- msgstr ""
962
-
963
- #. translators: zero number
964
- #: includes/documents/class-wcpdf-invoice.php:412
965
- msgid "Disable document when the order total is %s"
966
- msgstr ""
967
-
968
- #: includes/documents/class-wcpdf-invoice.php:418
969
- msgid "Always use most current settings"
970
- msgstr ""
971
-
972
- #: includes/documents/class-wcpdf-invoice.php:424
973
- msgid ""
974
- "When enabled, the document will always reflect the most current settings "
975
- "(such as footer text, document name, etc.) rather than using historical "
976
- "settings."
977
- msgstr ""
978
-
979
- #: includes/documents/class-wcpdf-invoice.php:426
980
- msgid ""
981
- "<strong>Caution:</strong> enabling this will also mean that if you change "
982
- "your company name or address in the future, previously generated documents "
983
- "will also be affected."
984
- msgstr ""
985
-
986
- #: includes/documents/class-wcpdf-invoice.php:439
987
- msgid "Invoice numbers are created by a third-party extension."
988
- msgstr ""
989
-
990
- #. translators: link
991
- #: includes/documents/class-wcpdf-invoice.php:442
992
- msgid "Configure it <a href=\"%s\">here</a>."
993
- msgstr ""
994
-
995
- #: includes/documents/class-wcpdf-packing-slip.php:32
996
- #: includes/documents/class-wcpdf-packing-slip.php:41
997
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
998
- msgid "Packing Slip"
999
- msgstr ""
1000
-
1001
- # This is a filename (prefix). do not use spaces or special characters!
1002
- #: includes/documents/class-wcpdf-packing-slip.php:47
1003
- msgid "packing-slip"
1004
- msgid_plural "packing-slips"
1005
- msgstr[0] ""
1006
- msgstr[1] ""
1007
-
1008
- #: includes/documents/class-wcpdf-packing-slip.php:99
1009
- msgid "Display billing address"
1010
- msgstr ""
1011
-
1012
- #: includes/documents/class-wcpdf-packing-slip.php:107
1013
- msgid "Only when different from shipping address"
1014
- msgstr ""
1015
-
1016
- #: includes/documents/class-wcpdf-packing-slip.php:162
1017
- msgid "Packing Slip Number:"
1018
- msgstr ""
1019
-
1020
- #: includes/documents/class-wcpdf-packing-slip.php:170
1021
- msgid "Packing Slip Date:"
1022
- msgstr ""
1023
-
1024
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1025
- msgid "Legacy Document"
1026
- msgstr ""
1027
-
1028
- #: includes/legacy/class-wcpdf-legacy.php:72
1029
- msgid "Error"
1030
- msgstr ""
1031
-
1032
- #: includes/legacy/class-wcpdf-legacy.php:73
1033
- msgid ""
1034
- "An outdated template or action hook was used to generate the PDF. Legacy "
1035
- "mode has been activated, please try again by reloading this page."
1036
- msgstr ""
1037
-
1038
- #: includes/legacy/class-wcpdf-legacy.php:76
1039
- msgid "The following function was called"
1040
- msgstr ""
1041
-
1042
- #. translators: <a> tags
1043
- #: includes/views/attachment-settings-hint.php:23
1044
- msgid ""
1045
- "It looks like you haven't setup any email attachments yet, check the "
1046
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1047
- msgstr ""
1048
-
1049
- #: includes/views/dompdf-status.php:11
1050
- msgid "7.1+ (7.4 or higher recommended)"
1051
- msgstr ""
1052
-
1053
- #: includes/views/dompdf-status.php:24
1054
- msgid "Recommended, will use fallback functions"
1055
- msgstr ""
1056
-
1057
- #: includes/views/dompdf-status.php:30
1058
- msgid "Required if you have images in your documents"
1059
- msgstr ""
1060
-
1061
- #: includes/views/dompdf-status.php:39
1062
- msgid "To compress PDF documents"
1063
- msgstr ""
1064
-
1065
- #: includes/views/dompdf-status.php:42
1066
- msgid "Recommended to compress PDF documents"
1067
- msgstr ""
1068
-
1069
- #: includes/views/dompdf-status.php:45
1070
- msgid "For better performances"
1071
- msgstr ""
1072
-
1073
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1074
- msgid "Recommended for better performances"
1075
- msgstr ""
1076
-
1077
- #: includes/views/dompdf-status.php:51
1078
- msgid "Better with transparent PNG images"
1079
- msgstr ""
1080
-
1081
- #: includes/views/dompdf-status.php:57
1082
- msgid ""
1083
- "Required to detect custom templates and to clear the temp folder periodically"
1084
- msgstr ""
1085
-
1086
- #: includes/views/dompdf-status.php:60
1087
- msgid "Check PHP disable_functions"
1088
- msgstr ""
1089
-
1090
- #. translators: <a> tags
1091
- #: includes/views/dompdf-status.php:64
1092
- msgid ""
1093
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1094
- "WordPress Memory Limit%2$s"
1095
- msgstr ""
1096
-
1097
- #: includes/views/dompdf-status.php:69
1098
- msgid "Allow remote stylesheets and images"
1099
- msgstr ""
1100
-
1101
- #: includes/views/dompdf-status.php:72
1102
- msgid "allow_url_fopen disabled"
1103
- msgstr ""
1104
-
1105
- #. translators: <a> tags
1106
- #: includes/views/dompdf-status.php:92
1107
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1108
- msgstr ""
1109
-
1110
- #: includes/views/dompdf-status.php:97
1111
- msgid "System Configuration"
1112
- msgstr ""
1113
-
1114
- #: includes/views/dompdf-status.php:102
1115
- msgid "Required"
1116
- msgstr ""
1117
-
1118
- #: includes/views/dompdf-status.php:103
1119
- msgid "Present"
1120
- msgstr ""
1121
-
1122
- #: includes/views/dompdf-status.php:142
1123
- msgid "Writable"
1124
- msgstr ""
1125
-
1126
- #: includes/views/dompdf-status.php:143
1127
- msgid "Not writable"
1128
- msgstr ""
1129
-
1130
- #: includes/views/dompdf-status.php:148
1131
- msgid "Central temporary plugin folder"
1132
- msgstr ""
1133
-
1134
- #: includes/views/dompdf-status.php:154
1135
- msgid "Temporary attachments folder"
1136
- msgstr ""
1137
-
1138
- #: includes/views/dompdf-status.php:160
1139
- msgid "Temporary DOMPDF folder"
1140
- msgstr ""
1141
-
1142
- #: includes/views/dompdf-status.php:166
1143
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1144
- msgstr ""
1145
-
1146
- #: includes/views/dompdf-status.php:177
1147
- msgid "Write Permissions"
1148
- msgstr ""
1149
-
1150
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1151
- #: templates/Simple/packing-slip.php:88
1152
- msgid "Description"
1153
- msgstr ""
1154
-
1155
- #: includes/views/dompdf-status.php:181
1156
- msgid "Value"
1157
- msgstr ""
1158
-
1159
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1160
- #: includes/views/dompdf-status.php:207
1161
- msgid ""
1162
- "The central temp folder is %1$s. By default, this folder is created in the "
1163
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1164
- "config.php. Alternatively, you can control the specific folder for PDF "
1165
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1166
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1167
- "by the plugin if the central temp folder is writable)."
1168
- msgstr ""
1169
-
1170
- #. translators: directory path
1171
- #: includes/views/dompdf-status.php:220
1172
- msgid ""
1173
- "If the temporary folders were not automatically created by the plugin, "
1174
- "verify that all the font files (from %s) are copied to the fonts folder. "
1175
- "Normally, this is fully automated, but if your server has strict security "
1176
- "settings, this automated copying may have been prohibited. In that case, you "
1177
- "also need to make sure these folders get synchronized on plugin updates!"
1178
- msgstr ""
1179
-
1180
- #: includes/views/setup-wizard/attach-to.php:3
1181
- msgid "Attach too..."
1182
- msgstr ""
1183
-
1184
- #: includes/views/setup-wizard/attach-to.php:4
1185
- msgid "Select to which emails you would like to attach your invoice."
1186
- msgstr ""
1187
-
1188
- #: includes/views/setup-wizard/display-options.php:4
1189
- msgid "Select some additional display options for your invoice."
1190
- msgstr ""
1191
-
1192
- #: includes/views/setup-wizard/good-to-go.php:3
1193
- msgid "You are good to go!"
1194
- msgstr ""
1195
-
1196
- #: includes/views/setup-wizard/good-to-go.php:4
1197
- msgid "If you have any questions please have a look at our documentation:"
1198
- msgstr ""
1199
-
1200
- #: includes/views/setup-wizard/good-to-go.php:5
1201
- msgid "Invoices & Packing Slips"
1202
- msgstr ""
1203
-
1204
- #: includes/views/setup-wizard/good-to-go.php:6
1205
- msgid "Happy selling!"
1206
- msgstr ""
1207
-
1208
- #: includes/views/setup-wizard/logo.php:4
1209
- msgid "Set the header image that will display on your invoice."
1210
- msgstr ""
1211
-
1212
- #: includes/views/setup-wizard/paper-format.php:4
1213
- msgid "Select the paper format for your invoice."
1214
- msgstr ""
1215
-
1216
- #: includes/views/setup-wizard/shop-name.php:3
1217
- msgid "Enter your shop name"
1218
- msgstr ""
1219
-
1220
- #: includes/views/setup-wizard/shop-name.php:4
1221
- msgid ""
1222
- "Lets quickly setup your invoice. Please enter the name and address of your "
1223
- "shop in the fields on the right."
1224
- msgstr ""
1225
-
1226
- #: includes/views/setup-wizard/show-action-buttons.php:4
1227
- msgid ""
1228
- "Would you like to display the action buttons in your WooCommerce order list? "
1229
- "The action buttons allow you to manually create a PDF."
1230
- msgstr ""
1231
-
1232
- #: includes/views/setup-wizard/show-action-buttons.php:5
1233
- msgid "(You can always change this setting later via the Screen Options menu)"
1234
- msgstr ""
1235
-
1236
- #: includes/views/setup-wizard/show-action-buttons.php:18
1237
- msgid "Show action buttons"
1238
- msgstr ""
1239
-
1240
- #: includes/views/wcpdf-extensions.php:16
1241
- msgid "Check out these premium extensions!"
1242
- msgstr ""
1243
-
1244
- #: includes/views/wcpdf-extensions.php:17
1245
- msgid "click items to read more"
1246
- msgstr ""
1247
-
1248
- #: includes/views/wcpdf-extensions.php:22
1249
- msgid ""
1250
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1251
- "system"
1252
- msgstr ""
1253
-
1254
- #: includes/views/wcpdf-extensions.php:24
1255
- msgid ""
1256
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1257
- "premium extensions:"
1258
- msgstr ""
1259
-
1260
- #: includes/views/wcpdf-extensions.php:25
1261
- msgid "Professional features:"
1262
- msgstr ""
1263
-
1264
- #: includes/views/wcpdf-extensions.php:27
1265
- #: includes/views/wcpdf-extensions.php:57
1266
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1267
- msgstr ""
1268
-
1269
- #: includes/views/wcpdf-extensions.php:28
1270
- #: includes/views/wcpdf-extensions.php:58
1271
- msgid ""
1272
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1273
- "packing slips, for example to a drop-shipper or a supplier."
1274
- msgstr ""
1275
-
1276
- #: includes/views/wcpdf-extensions.php:29
1277
- #: includes/views/wcpdf-extensions.php:59
1278
- msgid ""
1279
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1280
- "document) to the WooCommerce emails of your choice."
1281
- msgstr ""
1282
-
1283
- #: includes/views/wcpdf-extensions.php:30
1284
- #: includes/views/wcpdf-extensions.php:60
1285
- msgid ""
1286
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1287
- "and credit notes or utilize the main invoice numbering system"
1288
- msgstr ""
1289
-
1290
- #: includes/views/wcpdf-extensions.php:31
1291
- #: includes/views/wcpdf-extensions.php:61
1292
- msgid ""
1293
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1294
- "additional custom fields, font sizes etc. without the need to create a "
1295
- "custom template."
1296
- msgstr ""
1297
-
1298
- #: includes/views/wcpdf-extensions.php:32
1299
- #: includes/views/wcpdf-extensions.php:62
1300
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1301
- msgstr ""
1302
-
1303
- #: includes/views/wcpdf-extensions.php:34
1304
- #: includes/views/wcpdf-extensions.php:114
1305
- msgid "Advanced, customizable templates"
1306
- msgstr ""
1307
-
1308
- #: includes/views/wcpdf-extensions.php:36
1309
- #: includes/views/wcpdf-extensions.php:117
1310
- msgid ""
1311
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1312
- "your needs with a drag & drop customizer"
1313
- msgstr ""
1314
-
1315
- #: includes/views/wcpdf-extensions.php:37
1316
- #: includes/views/wcpdf-extensions.php:118
1317
- msgid "Two extra stylish premade templates (Modern & Business)"
1318
- msgstr ""
1319
-
1320
- #: includes/views/wcpdf-extensions.php:39
1321
- #: includes/views/wcpdf-extensions.php:63
1322
- msgid "Upload automatically to dropbox"
1323
- msgstr ""
1324
-
1325
- #: includes/views/wcpdf-extensions.php:41
1326
- msgid ""
1327
- "This extension conveniently uploads all the invoices (and other pdf "
1328
- "documents from the professional extension) that are emailed to your "
1329
- "customers to Dropbox. The best way to keep your invoice administration up to "
1330
- "date!"
1331
- msgstr ""
1332
-
1333
- #: includes/views/wcpdf-extensions.php:44
1334
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1335
- msgstr ""
1336
-
1337
- #: includes/views/wcpdf-extensions.php:53
1338
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1339
- msgstr ""
1340
-
1341
- #: includes/views/wcpdf-extensions.php:55
1342
- msgid ""
1343
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1344
- "features:"
1345
- msgstr ""
1346
-
1347
- #: includes/views/wcpdf-extensions.php:65
1348
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1349
- msgstr ""
1350
-
1351
- #: includes/views/wcpdf-extensions.php:73
1352
- msgid "Automatically send payment reminders to your customers"
1353
- msgstr ""
1354
-
1355
- #: includes/views/wcpdf-extensions.php:75
1356
- msgid "WooCommerce Smart Reminder emails"
1357
- msgstr ""
1358
-
1359
- #: includes/views/wcpdf-extensions.php:77
1360
- msgid "<b>Completely automatic</b> scheduled emails"
1361
- msgstr ""
1362
-
1363
- #: includes/views/wcpdf-extensions.php:78
1364
- msgid ""
1365
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1366
- "from the order (name, order total, etc)"
1367
- msgstr ""
1368
-
1369
- #: includes/views/wcpdf-extensions.php:79
1370
- msgid ""
1371
- "Configure the exact requirements for sending an email (time after order, "
1372
- "order status, payment method)"
1373
- msgstr ""
1374
-
1375
- #: includes/views/wcpdf-extensions.php:80
1376
- msgid ""
1377
- "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1378
- "order language."
1379
- msgstr ""
1380
-
1381
- #: includes/views/wcpdf-extensions.php:81
1382
- msgid ""
1383
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1384
- "reminders, repeat purchases)"
1385
- msgstr ""
1386
-
1387
- #: includes/views/wcpdf-extensions.php:82
1388
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1389
- msgstr ""
1390
-
1391
- #: includes/views/wcpdf-extensions.php:84
1392
- msgid "Get WooCommerce Smart Reminder Emails"
1393
- msgstr ""
1394
-
1395
- #: includes/views/wcpdf-extensions.php:93
1396
- msgid ""
1397
- "Automatically send new orders or packing slips to your printer, as soon as "
1398
- "the customer orders!"
1399
- msgstr ""
1400
-
1401
- #: includes/views/wcpdf-extensions.php:99
1402
- msgid ""
1403
- "Check out the WooCommerce Automatic Order Printing extension from our "
1404
- "partners at Simba Hosting"
1405
- msgstr ""
1406
-
1407
- #: includes/views/wcpdf-extensions.php:100
1408
- msgid "WooCommerce Automatic Order Printing"
1409
- msgstr ""
1410
-
1411
- #. translators: Premium Templates link
1412
- #: includes/views/wcpdf-extensions.php:120
1413
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1414
- msgstr ""
1415
-
1416
- #. translators: email link
1417
- #: includes/views/wcpdf-extensions.php:122
1418
- msgid "For custom templates, contact us at %s."
1419
- msgstr ""
1420
-
1421
- #: includes/views/wcpdf-settings-page.php:9
1422
- msgid "WooCommerce PDF Invoices"
1423
- msgstr ""
1424
-
1425
- #: includes/wcpdf-functions.php:209
1426
- msgid "Error creating PDF, please contact the site owner."
1427
- msgstr ""
1428
-
1429
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1430
- msgid "Billing Address:"
1431
- msgstr ""
1432
-
1433
- #: templates/Simple/invoice.php:48
1434
- msgid "Ship To:"
1435
- msgstr ""
1436
-
1437
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1438
- msgid "Order Number:"
1439
- msgstr ""
1440
-
1441
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1442
- msgid "Order Date:"
1443
- msgstr ""
1444
-
1445
- #: templates/Simple/invoice.php:78
1446
- msgid "Payment Method:"
1447
- msgstr ""
1448
-
1449
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1450
- msgid "Product"
1451
- msgstr ""
1452
-
1453
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1454
- msgid "Quantity"
1455
- msgstr ""
1456
-
1457
- #: templates/Simple/invoice.php:94
1458
- msgid "Price"
1459
- msgstr ""
1460
-
1461
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1462
- msgid "SKU"
1463
- msgstr ""
1464
-
1465
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1466
- msgid "SKU:"
1467
- msgstr ""
1468
-
1469
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1470
- msgid "Weight:"
1471
- msgstr ""
1472
-
1473
- #: templates/Simple/invoice.php:123
1474
- msgid "Notes"
1475
- msgstr ""
1476
-
1477
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1478
- msgid "Customer Notes"
1479
- msgstr ""
1480
-
1481
- #: templates/Simple/packing-slip.php:35
1482
- msgid "Shipping Address:"
1483
- msgstr ""
1484
-
1485
- #: templates/Simple/packing-slip.php:66
1486
- msgid "Shipping Method:"
1487
- msgstr ""
1488
-
1489
- #. translators: <a> tags
1490
- #: woocommerce-pdf-invoices-packingslips.php:271
1491
- msgid ""
1492
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1493
- "installed & activated!"
1494
- msgstr ""
1495
-
1496
- #: woocommerce-pdf-invoices-packingslips.php:282
1497
- msgid ""
1498
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1499
- "recommended)."
1500
- msgstr ""
1501
-
1502
- #. translators: <a> tags
1503
- #: woocommerce-pdf-invoices-packingslips.php:284
1504
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1505
- msgstr ""
1506
-
1507
- #. translators: <a> tags
1508
- #: woocommerce-pdf-invoices-packingslips.php:286
1509
- msgid ""
1510
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1511
- "to enable backwards compatibility with PHP5.6."
1512
- msgstr ""
1513
-
1514
- #. translators: directory path
1515
- #: woocommerce-pdf-invoices-packingslips.php:374
1516
- msgid ""
1517
- "The PDF files in %s are not currently protected due to your site running on "
1518
- "<strong>NGINX</strong>."
1519
- msgstr ""
1520
-
1521
- #: woocommerce-pdf-invoices-packingslips.php:375
1522
- msgid "To protect them, you must click the button below."
1523
- msgstr ""
1524
-
1525
- #. translators: plugin name
1526
- #: woocommerce-pdf-invoices-packingslips.php:419
1527
- msgid ""
1528
- "When sending emails with MailPoet 3 and the active sending method is "
1529
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1530
- "the emails."
1531
- msgstr ""
1532
-
1533
- #. translators: "Your web host / web server"
1534
- #: woocommerce-pdf-invoices-packingslips.php:421
1535
- msgid "To fix this you should select other method like %1$s or %2$s."
1536
- msgstr ""
1537
-
1538
- #. translators: "Your web host / web server"
1539
- #: woocommerce-pdf-invoices-packingslips.php:421
1540
- msgid "Your web host / web server"
1541
- msgstr ""
1542
-
1543
- #: woocommerce-pdf-invoices-packingslips.php:422
1544
- msgid "Change MailPoet sending method"
1545
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:23-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
+ "Language: en_AU\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 3.0\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #. Plugin Name of the plugin
22
+ msgid "WooCommerce PDF Invoices & Packing Slips"
23
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
24
+
25
+ #. Plugin URI of the plugin
26
+ #. Author URI of the plugin
27
+ msgid "http://www.wpovernight.com"
28
+ msgstr "http://www.wpovernight.com"
29
+
30
+ #. Description of the plugin
31
+ msgid ""
32
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
+ msgstr ""
34
+
35
+ #. Author of the plugin
36
+ msgid "Ewout Fernhout"
37
+ msgstr "Ewout Fernhout"
38
+
39
+ #. translators: rounded count
40
+ #: includes/class-wcpdf-admin.php:92
41
+ msgid "Wow, you have created more than %d invoices with our plugin!"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:93
45
+ msgid ""
46
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
+ "rating. Help us spread the word and boost our motivation!"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:95
51
+ msgid "Yes you deserve it!"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
+ #: includes/views/attachment-settings-hint.php:24
56
+ #: includes/views/wcpdf-extensions.php:131
57
+ #: woocommerce-pdf-invoices-packingslips.php:377
58
+ #: woocommerce-pdf-invoices-packingslips.php:423
59
+ msgid "Hide this message"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-admin.php:96
63
+ msgid "Already did!"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-admin.php:97
67
+ msgid "Actually, I have a complaint..."
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:132
71
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:132
75
+ msgid "Jumpstart the plugin by following our wizard!"
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:133
79
+ msgid "Run the Setup Wizard"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:133
83
+ msgid "I am the wizard"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
+ #: includes/documents/class-wcpdf-invoice.php:302
88
+ msgid "Invoice Number"
89
+ msgstr ""
90
+
91
+ #: includes/class-wcpdf-admin.php:261
92
+ msgid "Send order email"
93
+ msgstr ""
94
+
95
+ #: includes/class-wcpdf-admin.php:272
96
+ msgid "Create PDF"
97
+ msgstr ""
98
+
99
+ #: includes/class-wcpdf-admin.php:282
100
+ msgid "PDF document data"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:304
104
+ msgid "Choose an email to send&hellip;"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-admin.php:320
108
+ msgid "Save order & send email"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:322
112
+ msgid "Send email"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
+ msgid "Invoice Number:"
118
+ msgstr ""
119
+
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
+ msgid "Invoice Date:"
123
+ msgstr ""
124
+
125
+ #: includes/class-wcpdf-admin.php:384
126
+ msgid "Notes (printed in the invoice):"
127
+ msgstr ""
128
+
129
+ #. translators: document title
130
+ #: includes/class-wcpdf-admin.php:469
131
+ msgid "Set %s number & date"
132
+ msgstr ""
133
+
134
+ #: includes/class-wcpdf-admin.php:478
135
+ msgid "unformatted!"
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-admin.php:518
139
+ msgid "Save changes"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:519
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
146
+ #. translators: name/description of the context for document creation logs
147
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
+ msgid "order details (number and/or date set manually)"
149
+ msgstr ""
150
+
151
+ #. translators: %s: email title
152
+ #: includes/class-wcpdf-admin.php:647
153
+ msgid "%s email notification manually sent."
154
+ msgstr ""
155
+
156
+ #: includes/class-wcpdf-admin.php:734
157
+ msgid "Nonce expired!"
158
+ msgstr ""
159
+
160
+ #: includes/class-wcpdf-admin.php:740
161
+ msgid "Bad action!"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:746
165
+ msgid "Incomplete request!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:752
169
+ msgid "No permissions!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:776
173
+ msgid "Document data saved!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:777
177
+ msgid "An error occurred while saving the document data!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:780
181
+ msgid "Document regenerated!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:781
185
+ msgid "An error occurred while regenerating the document!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:784
189
+ msgid "Document deleted!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:785
193
+ msgid "An error occurred while deleting the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:841
197
+ msgid "Document does not exist."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:850
201
+ msgid "Document is empty."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:881
205
+ msgid "DEBUG output enabled"
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-assets.php:94
209
+ msgid "Are you sure you want to delete this document? This cannot be undone."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-assets.php:95
213
+ msgid ""
214
+ "Are you sure you want to regenerate this document? This will make the "
215
+ "document reflect the most current settings (such as footer text, document "
216
+ "name, etc.) rather than using historical settings."
217
+ msgstr ""
218
+
219
+ #: includes/class-wcpdf-frontend.php:129
220
+ msgid "Download invoice (PDF)"
221
+ msgstr ""
222
+
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
+ msgid "You do not have sufficient permissions to access this page."
226
+ msgstr ""
227
+
228
+ #: includes/class-wcpdf-main.php:272
229
+ msgid "You haven't selected any orders"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-main.php:276
233
+ msgid "Some of the export parameters are missing."
234
+ msgstr ""
235
+
236
+ #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
239
+ msgstr ""
240
+
241
+ #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-main.php:604
247
+ msgid ""
248
+ "Please check your directories write permissions or contact your hosting "
249
+ "service provider."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-main.php:919
253
+ #: includes/documents/class-wcpdf-invoice.php:286
254
+ msgid "Invoice Date"
255
+ msgstr ""
256
+
257
+ #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
+ msgid "bulk order action"
260
+ msgstr ""
261
+
262
+ #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
+ msgid "single order action"
265
+ msgstr ""
266
+
267
+ #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
+ msgid "my account"
270
+ msgstr ""
271
+
272
+ #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
+ msgid "email attachment"
275
+ msgstr ""
276
+
277
+ #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
+ msgid "PDF %1$s created via %2$s."
280
+ msgstr ""
281
+
282
+ #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
+ msgid "Order %s Saved"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings-callbacks.php:27
288
+ msgid ""
289
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
+ "Do not use them on a live website!"
291
+ msgstr ""
292
+
293
+ #: includes/class-wcpdf-settings-callbacks.php:36
294
+ msgid ""
295
+ "These are used for the (optional) footer columns in the <em>Modern "
296
+ "(Premium)</em> template, but can also be used for other elements in your "
297
+ "custom template"
298
+ msgstr ""
299
+
300
+ #: includes/class-wcpdf-settings-callbacks.php:384
301
+ msgid "Image resolution"
302
+ msgstr ""
303
+
304
+ #: includes/class-wcpdf-settings-callbacks.php:411
305
+ msgid "Save"
306
+ msgstr ""
307
+
308
+ #: includes/class-wcpdf-settings-debug.php:45
309
+ #: woocommerce-pdf-invoices-packingslips.php:376
310
+ msgid "Generate random temporary folder name"
311
+ msgstr ""
312
+
313
+ #. translators: directory path
314
+ #: includes/class-wcpdf-settings-debug.php:58
315
+ msgid "Temporary folder moved to %s"
316
+ msgstr ""
317
+
318
+ #: includes/class-wcpdf-settings-debug.php:68
319
+ msgid "Reinstall fonts"
320
+ msgstr ""
321
+
322
+ #: includes/class-wcpdf-settings-debug.php:89
323
+ msgid "Fonts reinstalled!"
324
+ msgstr ""
325
+
326
+ #: includes/class-wcpdf-settings-debug.php:98
327
+ msgid "Remove temporary files"
328
+ msgstr ""
329
+
330
+ #: includes/class-wcpdf-settings-debug.php:109
331
+ msgid "Unable to read temporary folder contents!"
332
+ msgstr ""
333
+
334
+ #. translators: 1,2. file count
335
+ #: includes/class-wcpdf-settings-debug.php:127
336
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
337
+ msgstr ""
338
+
339
+ #. translators: file count
340
+ #: includes/class-wcpdf-settings-debug.php:131
341
+ msgid "Successfully deleted %d files!"
342
+ msgstr ""
343
+
344
+ #: includes/class-wcpdf-settings-debug.php:135
345
+ msgid "Nothing to delete!"
346
+ msgstr ""
347
+
348
+ #: includes/class-wcpdf-settings-debug.php:146
349
+ msgid "Delete legacy (1.X) settings"
350
+ msgstr ""
351
+
352
+ #: includes/class-wcpdf-settings-debug.php:162
353
+ msgid "Legacy settings deleted!"
354
+ msgstr ""
355
+
356
+ #: includes/class-wcpdf-settings-debug.php:192
357
+ msgid "Debug settings"
358
+ msgstr ""
359
+
360
+ #: includes/class-wcpdf-settings-debug.php:198
361
+ msgid "Legacy mode"
362
+ msgstr ""
363
+
364
+ #: includes/class-wcpdf-settings-debug.php:204
365
+ msgid ""
366
+ "Legacy mode ensures compatibility with templates and filters from previous "
367
+ "versions."
368
+ msgstr ""
369
+
370
+ #: includes/class-wcpdf-settings-debug.php:210
371
+ msgid "Legacy textdomain fallback"
372
+ msgstr ""
373
+
374
+ #: includes/class-wcpdf-settings-debug.php:216
375
+ msgid ""
376
+ "Legacy textdomain fallback ensures compatibility with translation files from "
377
+ "versions prior to 2017-05-15."
378
+ msgstr ""
379
+
380
+ #: includes/class-wcpdf-settings-debug.php:222
381
+ msgid "Allow guest access"
382
+ msgstr ""
383
+
384
+ #: includes/class-wcpdf-settings-debug.php:228
385
+ msgid ""
386
+ "Enable this to allow customers that purchase without an account to access "
387
+ "their PDF with a unique key"
388
+ msgstr ""
389
+
390
+ #: includes/class-wcpdf-settings-debug.php:234
391
+ msgid "Calculate document numbers (slow)"
392
+ msgstr ""
393
+
394
+ #: includes/class-wcpdf-settings-debug.php:240
395
+ msgid ""
396
+ "Document numbers (such as invoice numbers) are generated using "
397
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
398
+ "with more than 1."
399
+ msgstr ""
400
+
401
+ #: includes/class-wcpdf-settings-debug.php:246
402
+ msgid "Enable debug output"
403
+ msgstr ""
404
+
405
+ #: includes/class-wcpdf-settings-debug.php:252
406
+ msgid ""
407
+ "Enable this option to output plugin errors if you're getting a blank page or "
408
+ "other PDF generation issues"
409
+ msgstr ""
410
+
411
+ #: includes/class-wcpdf-settings-debug.php:253
412
+ msgid ""
413
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
414
+ "places on your site too, therefor this is not recommended to leave it "
415
+ "enabled on live sites."
416
+ msgstr ""
417
+
418
+ #: includes/class-wcpdf-settings-debug.php:254
419
+ msgid ""
420
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
421
+ "order basis."
422
+ msgstr ""
423
+
424
+ #: includes/class-wcpdf-settings-debug.php:260
425
+ msgid "Enable automatic cleanup"
426
+ msgstr ""
427
+
428
+ #. translators: number of days
429
+ #: includes/class-wcpdf-settings-debug.php:268
430
+ msgid "every %s days"
431
+ msgstr ""
432
+
433
+ #: includes/class-wcpdf-settings-debug.php:273
434
+ msgid ""
435
+ "Automatically clean up PDF files stored in the temporary folder (used for "
436
+ "email attachments)"
437
+ msgstr ""
438
+
439
+ #: includes/class-wcpdf-settings-debug.php:274
440
+ msgid ""
441
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
442
+ "automatic cleanup but not enabled on your server."
443
+ msgstr ""
444
+
445
+ #: includes/class-wcpdf-settings-debug.php:280
446
+ msgid "Output to HTML"
447
+ msgstr ""
448
+
449
+ #: includes/class-wcpdf-settings-debug.php:286
450
+ msgid ""
451
+ "Send the template output as HTML to the browser instead of creating a PDF."
452
+ msgstr ""
453
+
454
+ #: includes/class-wcpdf-settings-debug.php:287
455
+ msgid ""
456
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
457
+ "order basis."
458
+ msgstr ""
459
+
460
+ #: includes/class-wcpdf-settings-debug.php:293
461
+ msgid "Use alternative HTML5 parser to parse HTML"
462
+ msgstr ""
463
+
464
+ #: includes/class-wcpdf-settings-debug.php:304
465
+ msgid "Log to order notes"
466
+ msgstr ""
467
+
468
+ #: includes/class-wcpdf-settings-debug.php:310
469
+ msgid "Log PDF document creation to order notes."
470
+ msgstr ""
471
+
472
+ #: includes/class-wcpdf-settings-documents.php:30
473
+ #: includes/class-wcpdf-settings.php:104
474
+ msgid "Documents"
475
+ msgstr ""
476
+
477
+ #: includes/class-wcpdf-settings-documents.php:36
478
+ #: includes/class-wcpdf-settings-documents.php:57
479
+ msgid "untitled"
480
+ msgstr ""
481
+
482
+ #: includes/class-wcpdf-settings-documents.php:50
483
+ msgid ""
484
+ "All available documents are listed below. Click on a document to configure "
485
+ "it."
486
+ msgstr ""
487
+
488
+ #: includes/class-wcpdf-settings-general.php:40
489
+ msgid "General settings"
490
+ msgstr ""
491
+
492
+ #: includes/class-wcpdf-settings-general.php:46
493
+ msgid "How do you want to view the PDF?"
494
+ msgstr ""
495
+
496
+ #: includes/class-wcpdf-settings-general.php:53
497
+ msgid "Download the PDF"
498
+ msgstr ""
499
+
500
+ #: includes/class-wcpdf-settings-general.php:54
501
+ msgid "Open the PDF in a new browser tab/window"
502
+ msgstr ""
503
+
504
+ #: includes/class-wcpdf-settings-general.php:61
505
+ msgid "Choose a template"
506
+ msgstr ""
507
+
508
+ #. translators: 1,2. template paths
509
+ #: includes/class-wcpdf-settings-general.php:69
510
+ msgid ""
511
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
512
+ "your (child) theme in <code>%2$s</code> to customize them"
513
+ msgstr ""
514
+
515
+ #: includes/class-wcpdf-settings-general.php:75
516
+ msgid "Paper size"
517
+ msgstr ""
518
+
519
+ #: includes/class-wcpdf-settings-general.php:82
520
+ #: includes/views/setup-wizard/paper-format.php:12
521
+ msgid "A4"
522
+ msgstr ""
523
+
524
+ #: includes/class-wcpdf-settings-general.php:83
525
+ #: includes/views/setup-wizard/paper-format.php:13
526
+ msgid "Letter"
527
+ msgstr ""
528
+
529
+ #: includes/class-wcpdf-settings-general.php:90
530
+ msgid "Test mode"
531
+ msgstr ""
532
+
533
+ #: includes/class-wcpdf-settings-general.php:96
534
+ msgid ""
535
+ "With test mode enabled, any document generated will always use the latest "
536
+ "settings, rather than using the settings as configured at the time the "
537
+ "document was first created."
538
+ msgstr ""
539
+
540
+ #: includes/class-wcpdf-settings-general.php:96
541
+ msgid ""
542
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
543
+ "setting and will still be generated."
544
+ msgstr ""
545
+
546
+ #: includes/class-wcpdf-settings-general.php:102
547
+ msgid "Extended currency symbol support"
548
+ msgstr ""
549
+
550
+ #: includes/class-wcpdf-settings-general.php:108
551
+ msgid "Enable this if your currency symbol is not displaying properly"
552
+ msgstr ""
553
+
554
+ #: includes/class-wcpdf-settings-general.php:114
555
+ msgid "Enable font subsetting"
556
+ msgstr ""
557
+
558
+ #: includes/class-wcpdf-settings-general.php:120
559
+ msgid ""
560
+ "Font subsetting can reduce file size by only including the characters that "
561
+ "are used in the PDF, but limits the ability to edit PDF files later. "
562
+ "Recommended if you're using an Asian font."
563
+ msgstr ""
564
+
565
+ #: includes/class-wcpdf-settings-general.php:126
566
+ msgid "Shop header/logo"
567
+ msgstr ""
568
+
569
+ #: includes/class-wcpdf-settings-general.php:132
570
+ #: includes/views/setup-wizard/logo.php:20
571
+ msgid "Select or upload your invoice header/logo"
572
+ msgstr ""
573
+
574
+ #: includes/class-wcpdf-settings-general.php:133
575
+ #: includes/views/setup-wizard/logo.php:20
576
+ msgid "Set image"
577
+ msgstr ""
578
+
579
+ #: includes/class-wcpdf-settings-general.php:134
580
+ #: includes/views/setup-wizard/logo.php:20
581
+ msgid "Remove image"
582
+ msgstr ""
583
+
584
+ #: includes/class-wcpdf-settings-general.php:141
585
+ msgid "Logo height"
586
+ msgstr ""
587
+
588
+ #: includes/class-wcpdf-settings-general.php:149
589
+ msgid ""
590
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
591
+ "decimals.<br/>For example: 1.15in or 40mm"
592
+ msgstr ""
593
+
594
+ #: includes/class-wcpdf-settings-general.php:155
595
+ #: includes/class-wcpdf-setup-wizard.php:49
596
+ msgid "Shop Name"
597
+ msgstr ""
598
+
599
+ #: includes/class-wcpdf-settings-general.php:168
600
+ msgid "Shop Address"
601
+ msgstr ""
602
+
603
+ #: includes/class-wcpdf-settings-general.php:183
604
+ msgid "Footer: terms & conditions, policies, etc."
605
+ msgstr ""
606
+
607
+ #: includes/class-wcpdf-settings-general.php:198
608
+ msgid "Extra template fields"
609
+ msgstr ""
610
+
611
+ #: includes/class-wcpdf-settings-general.php:204
612
+ msgid "Extra field 1"
613
+ msgstr ""
614
+
615
+ #: includes/class-wcpdf-settings-general.php:212
616
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
617
+ msgstr ""
618
+
619
+ #: includes/class-wcpdf-settings-general.php:219
620
+ msgid "Extra field 2"
621
+ msgstr ""
622
+
623
+ #: includes/class-wcpdf-settings-general.php:227
624
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
625
+ msgstr ""
626
+
627
+ #: includes/class-wcpdf-settings-general.php:234
628
+ msgid "Extra field 3"
629
+ msgstr ""
630
+
631
+ #: includes/class-wcpdf-settings-general.php:242
632
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
633
+ msgstr ""
634
+
635
+ #: includes/class-wcpdf-settings-general.php:290
636
+ msgid "Custom"
637
+ msgstr ""
638
+
639
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
640
+ msgid "PDF Invoices"
641
+ msgstr ""
642
+
643
+ #: includes/class-wcpdf-settings.php:81
644
+ msgid "Documentation"
645
+ msgstr ""
646
+
647
+ #: includes/class-wcpdf-settings.php:82
648
+ msgid "Support Forum"
649
+ msgstr ""
650
+
651
+ #. translators: database row value
652
+ #: includes/class-wcpdf-settings.php:95
653
+ msgid ""
654
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
655
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
656
+ "document numbers (slow)' setting in the Status tab to use an alternate "
657
+ "method."
658
+ msgstr ""
659
+
660
+ #: includes/class-wcpdf-settings.php:103
661
+ msgid "General"
662
+ msgstr ""
663
+
664
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
665
+ msgid "Status"
666
+ msgstr ""
667
+
668
+ #. translators: 1. path, 2. template ID
669
+ #: includes/class-wcpdf-settings.php:396
670
+ msgid "Template setting migrated from %1$s to %2$s"
671
+ msgstr ""
672
+
673
+ #: includes/class-wcpdf-setup-wizard.php:53
674
+ #: includes/views/setup-wizard/logo.php:3
675
+ msgid "Your logo"
676
+ msgstr ""
677
+
678
+ #: includes/class-wcpdf-setup-wizard.php:57
679
+ msgid "Attachments"
680
+ msgstr ""
681
+
682
+ #: includes/class-wcpdf-setup-wizard.php:61
683
+ #: includes/views/setup-wizard/display-options.php:3
684
+ msgid "Display options"
685
+ msgstr ""
686
+
687
+ #: includes/class-wcpdf-setup-wizard.php:65
688
+ #: includes/views/setup-wizard/paper-format.php:3
689
+ msgid "Paper format"
690
+ msgstr ""
691
+
692
+ #: includes/class-wcpdf-setup-wizard.php:69
693
+ #: includes/views/setup-wizard/show-action-buttons.php:3
694
+ msgid "Action buttons"
695
+ msgstr ""
696
+
697
+ #: includes/class-wcpdf-setup-wizard.php:73
698
+ msgid "Ready!"
699
+ msgstr ""
700
+
701
+ #: includes/class-wcpdf-setup-wizard.php:135
702
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
703
+ msgstr ""
704
+
705
+ #: includes/class-wcpdf-setup-wizard.php:187
706
+ msgid "Previous"
707
+ msgstr ""
708
+
709
+ #: includes/class-wcpdf-setup-wizard.php:192
710
+ msgid "Next"
711
+ msgstr ""
712
+
713
+ #: includes/class-wcpdf-setup-wizard.php:193
714
+ msgid "Skip this step"
715
+ msgstr ""
716
+
717
+ #: includes/class-wcpdf-setup-wizard.php:195
718
+ msgid "Finish"
719
+ msgstr ""
720
+
721
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
722
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
723
+ msgid "N/A"
724
+ msgstr ""
725
+
726
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
727
+ msgid "Payment method"
728
+ msgstr ""
729
+
730
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
731
+ msgid "Shipping method"
732
+ msgstr ""
733
+
734
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
735
+ msgid "Subtotal"
736
+ msgstr ""
737
+
738
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
739
+ msgid "Shipping"
740
+ msgstr ""
741
+
742
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
743
+ msgid "Discount"
744
+ msgstr ""
745
+
746
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
747
+ msgid "VAT"
748
+ msgstr "GST"
749
+
750
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
751
+ msgid "Tax rate"
752
+ msgstr ""
753
+
754
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
755
+ msgid "Total ex. VAT"
756
+ msgstr "Total ex. GST"
757
+
758
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
759
+ msgid "Total"
760
+ msgstr ""
761
+
762
+ #. translators: 1. credit note title, 2. refund id
763
+ #: includes/documents/abstract-wcpdf-order-document.php:336
764
+ msgid "%1$s (refund #%2$s) was regenerated."
765
+ msgstr ""
766
+
767
+ #. translators: 1. credit note title, 2. refund id
768
+ #: includes/documents/abstract-wcpdf-order-document.php:336
769
+ msgid "%s was regenerated"
770
+ msgstr ""
771
+
772
+ #. translators: %s: document name
773
+ #: includes/documents/abstract-wcpdf-order-document.php:422
774
+ msgid "%s Number:"
775
+ msgstr ""
776
+
777
+ #. translators: %s: document name
778
+ #: includes/documents/abstract-wcpdf-order-document.php:428
779
+ msgid "%s Date:"
780
+ msgstr ""
781
+
782
+ #: includes/documents/abstract-wcpdf-order-document.php:904
783
+ msgid "Admin email"
784
+ msgstr ""
785
+
786
+ #: includes/documents/abstract-wcpdf-order-document.php:907
787
+ msgid "Manual email"
788
+ msgstr ""
789
+
790
+ #: includes/documents/class-wcpdf-invoice.php:32
791
+ #: includes/documents/class-wcpdf-invoice.php:56
792
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
793
+ msgid "Invoice"
794
+ msgstr ""
795
+
796
+ # This is a filename (prefix). do not use spaces or special characters!
797
+ #: includes/documents/class-wcpdf-invoice.php:131
798
+ msgid "invoice"
799
+ msgid_plural "invoices"
800
+ msgstr[0] ""
801
+ msgstr[1] ""
802
+
803
+ #: includes/documents/class-wcpdf-invoice.php:186
804
+ #: includes/documents/class-wcpdf-packing-slip.php:88
805
+ msgid "Enable"
806
+ msgstr ""
807
+
808
+ #: includes/documents/class-wcpdf-invoice.php:197
809
+ msgid "Attach to:"
810
+ msgstr ""
811
+
812
+ #. translators: directory path
813
+ #: includes/documents/class-wcpdf-invoice.php:205
814
+ msgid ""
815
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
816
+ "permissions for this folder! Without having write access to this folder, the "
817
+ "plugin will not be able to email invoices."
818
+ msgstr ""
819
+
820
+ #: includes/documents/class-wcpdf-invoice.php:211
821
+ msgid "Disable for:"
822
+ msgstr ""
823
+
824
+ #: includes/documents/class-wcpdf-invoice.php:220
825
+ msgid "Select one or more statuses"
826
+ msgstr ""
827
+
828
+ #: includes/documents/class-wcpdf-invoice.php:226
829
+ #: includes/views/setup-wizard/display-options.php:17
830
+ msgid "Display shipping address"
831
+ msgstr ""
832
+
833
+ #: includes/documents/class-wcpdf-invoice.php:233
834
+ #: includes/documents/class-wcpdf-invoice.php:285
835
+ #: includes/documents/class-wcpdf-invoice.php:301
836
+ #: includes/documents/class-wcpdf-packing-slip.php:106
837
+ msgid "No"
838
+ msgstr ""
839
+
840
+ #: includes/documents/class-wcpdf-invoice.php:234
841
+ msgid "Only when different from billing address"
842
+ msgstr ""
843
+
844
+ #: includes/documents/class-wcpdf-invoice.php:235
845
+ #: includes/documents/class-wcpdf-invoice.php:378
846
+ #: includes/documents/class-wcpdf-packing-slip.php:108
847
+ msgid "Always"
848
+ msgstr ""
849
+
850
+ #: includes/documents/class-wcpdf-invoice.php:243
851
+ #: includes/documents/class-wcpdf-packing-slip.php:116
852
+ #: includes/views/setup-wizard/display-options.php:26
853
+ msgid "Display email address"
854
+ msgstr ""
855
+
856
+ #: includes/documents/class-wcpdf-invoice.php:254
857
+ #: includes/documents/class-wcpdf-packing-slip.php:127
858
+ #: includes/views/setup-wizard/display-options.php:35
859
+ msgid "Display phone number"
860
+ msgstr ""
861
+
862
+ #: includes/documents/class-wcpdf-invoice.php:265
863
+ #: includes/documents/class-wcpdf-packing-slip.php:138
864
+ msgid "Display customer notes"
865
+ msgstr ""
866
+
867
+ #: includes/documents/class-wcpdf-invoice.php:278
868
+ #: includes/views/setup-wizard/display-options.php:44
869
+ msgid "Display invoice date"
870
+ msgstr ""
871
+
872
+ #: includes/documents/class-wcpdf-invoice.php:287
873
+ msgid "Order Date"
874
+ msgstr ""
875
+
876
+ #: includes/documents/class-wcpdf-invoice.php:294
877
+ #: includes/views/setup-wizard/display-options.php:53
878
+ msgid "Display invoice number"
879
+ msgstr ""
880
+
881
+ #: includes/documents/class-wcpdf-invoice.php:303
882
+ msgid "Order Number"
883
+ msgstr ""
884
+
885
+ #: includes/documents/class-wcpdf-invoice.php:307
886
+ msgid "Warning!"
887
+ msgstr ""
888
+
889
+ #: includes/documents/class-wcpdf-invoice.php:308
890
+ msgid ""
891
+ "Using the Order Number as invoice number is not recommended as this may lead "
892
+ "to gaps in the invoice number sequence (even when order numbers are "
893
+ "sequential)."
894
+ msgstr ""
895
+
896
+ #: includes/documents/class-wcpdf-invoice.php:309
897
+ msgid "More information"
898
+ msgstr ""
899
+
900
+ #: includes/documents/class-wcpdf-invoice.php:316
901
+ msgid "Next invoice number (without prefix/suffix etc.)"
902
+ msgstr ""
903
+
904
+ #: includes/documents/class-wcpdf-invoice.php:322
905
+ msgid ""
906
+ "This is the number that will be used for the next document. By default, "
907
+ "numbering starts from 1 and increases for every new document. Note that if "
908
+ "you override this and set it lower than the current/highest number, this "
909
+ "could create duplicate numbers!"
910
+ msgstr ""
911
+
912
+ #: includes/documents/class-wcpdf-invoice.php:328
913
+ msgid "Number format"
914
+ msgstr ""
915
+
916
+ #: includes/documents/class-wcpdf-invoice.php:336
917
+ msgid "Prefix"
918
+ msgstr ""
919
+
920
+ #: includes/documents/class-wcpdf-invoice.php:338
921
+ msgid ""
922
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
923
+ "respectively"
924
+ msgstr ""
925
+
926
+ #: includes/documents/class-wcpdf-invoice.php:341
927
+ msgid "Suffix"
928
+ msgstr ""
929
+
930
+ #: includes/documents/class-wcpdf-invoice.php:346
931
+ msgid "Padding"
932
+ msgstr ""
933
+
934
+ #: includes/documents/class-wcpdf-invoice.php:349
935
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
936
+ msgstr ""
937
+
938
+ #: includes/documents/class-wcpdf-invoice.php:352
939
+ msgid ""
940
+ "note: if you have already created a custom invoice number format with a "
941
+ "filter, the above settings will be ignored"
942
+ msgstr ""
943
+
944
+ #: includes/documents/class-wcpdf-invoice.php:358
945
+ msgid "Reset invoice number yearly"
946
+ msgstr ""
947
+
948
+ #: includes/documents/class-wcpdf-invoice.php:369
949
+ msgid "Allow My Account invoice download"
950
+ msgstr ""
951
+
952
+ #: includes/documents/class-wcpdf-invoice.php:376
953
+ msgid "Only when an invoice is already created/emailed"
954
+ msgstr ""
955
+
956
+ #: includes/documents/class-wcpdf-invoice.php:377
957
+ msgid "Only for specific order statuses (define below)"
958
+ msgstr ""
959
+
960
+ #: includes/documents/class-wcpdf-invoice.php:379
961
+ msgid "Never"
962
+ msgstr ""
963
+
964
+ #: includes/documents/class-wcpdf-invoice.php:394
965
+ msgid "Enable invoice number column in the orders list"
966
+ msgstr ""
967
+
968
+ #: includes/documents/class-wcpdf-invoice.php:405
969
+ msgid "Disable for free orders"
970
+ msgstr ""
971
+
972
+ #. translators: zero number
973
+ #: includes/documents/class-wcpdf-invoice.php:412
974
+ msgid "Disable document when the order total is %s"
975
+ msgstr ""
976
+
977
+ #: includes/documents/class-wcpdf-invoice.php:418
978
+ msgid "Always use most current settings"
979
+ msgstr ""
980
+
981
+ #: includes/documents/class-wcpdf-invoice.php:424
982
+ msgid ""
983
+ "When enabled, the document will always reflect the most current settings "
984
+ "(such as footer text, document name, etc.) rather than using historical "
985
+ "settings."
986
+ msgstr ""
987
+
988
+ #: includes/documents/class-wcpdf-invoice.php:426
989
+ msgid ""
990
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
991
+ "your company name or address in the future, previously generated documents "
992
+ "will also be affected."
993
+ msgstr ""
994
+
995
+ #: includes/documents/class-wcpdf-invoice.php:439
996
+ msgid "Invoice numbers are created by a third-party extension."
997
+ msgstr ""
998
+
999
+ #. translators: link
1000
+ #: includes/documents/class-wcpdf-invoice.php:442
1001
+ msgid "Configure it <a href=\"%s\">here</a>."
1002
+ msgstr ""
1003
+
1004
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1005
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1006
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1007
+ msgid "Packing Slip"
1008
+ msgstr ""
1009
+
1010
+ # This is a filename (prefix). do not use spaces or special characters!
1011
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1012
+ msgid "packing-slip"
1013
+ msgid_plural "packing-slips"
1014
+ msgstr[0] ""
1015
+ msgstr[1] ""
1016
+
1017
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1018
+ msgid "Display billing address"
1019
+ msgstr ""
1020
+
1021
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1022
+ msgid "Only when different from shipping address"
1023
+ msgstr ""
1024
+
1025
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1026
+ msgid "Packing Slip Number:"
1027
+ msgstr ""
1028
+
1029
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1030
+ msgid "Packing Slip Date:"
1031
+ msgstr ""
1032
+
1033
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1034
+ msgid "Legacy Document"
1035
+ msgstr ""
1036
+
1037
+ #: includes/legacy/class-wcpdf-legacy.php:72
1038
+ msgid "Error"
1039
+ msgstr ""
1040
+
1041
+ #: includes/legacy/class-wcpdf-legacy.php:73
1042
+ msgid ""
1043
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1044
+ "mode has been activated, please try again by reloading this page."
1045
+ msgstr ""
1046
+
1047
+ #: includes/legacy/class-wcpdf-legacy.php:76
1048
+ msgid "The following function was called"
1049
+ msgstr ""
1050
+
1051
+ #. translators: <a> tags
1052
+ #: includes/views/attachment-settings-hint.php:23
1053
+ msgid ""
1054
+ "It looks like you haven't setup any email attachments yet, check the "
1055
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1056
+ msgstr ""
1057
+
1058
+ #: includes/views/dompdf-status.php:11
1059
+ msgid "7.1+ (7.4 or higher recommended)"
1060
+ msgstr ""
1061
+
1062
+ #: includes/views/dompdf-status.php:24
1063
+ msgid "Recommended, will use fallback functions"
1064
+ msgstr ""
1065
+
1066
+ #: includes/views/dompdf-status.php:30
1067
+ msgid "Required if you have images in your documents"
1068
+ msgstr ""
1069
+
1070
+ #: includes/views/dompdf-status.php:39
1071
+ msgid "To compress PDF documents"
1072
+ msgstr ""
1073
+
1074
+ #: includes/views/dompdf-status.php:42
1075
+ msgid "Recommended to compress PDF documents"
1076
+ msgstr ""
1077
+
1078
+ #: includes/views/dompdf-status.php:45
1079
+ msgid "For better performances"
1080
+ msgstr ""
1081
+
1082
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1083
+ msgid "Recommended for better performances"
1084
+ msgstr ""
1085
+
1086
+ #: includes/views/dompdf-status.php:51
1087
+ msgid "Better with transparent PNG images"
1088
+ msgstr ""
1089
+
1090
+ #: includes/views/dompdf-status.php:57
1091
+ msgid ""
1092
+ "Required to detect custom templates and to clear the temp folder periodically"
1093
+ msgstr ""
1094
+
1095
+ #: includes/views/dompdf-status.php:60
1096
+ msgid "Check PHP disable_functions"
1097
+ msgstr ""
1098
+
1099
+ #. translators: <a> tags
1100
+ #: includes/views/dompdf-status.php:64
1101
+ msgid ""
1102
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1103
+ "WordPress Memory Limit%2$s"
1104
+ msgstr ""
1105
+
1106
+ #: includes/views/dompdf-status.php:69
1107
+ msgid "Allow remote stylesheets and images"
1108
+ msgstr ""
1109
+
1110
+ #: includes/views/dompdf-status.php:72
1111
+ msgid "allow_url_fopen disabled"
1112
+ msgstr ""
1113
+
1114
+ #: includes/views/dompdf-status.php:75
1115
+ msgid "To compress and decompress font data"
1116
+ msgstr ""
1117
+
1118
+ #: includes/views/dompdf-status.php:78
1119
+ msgid "base64_decode disabled"
1120
+ msgstr ""
1121
+
1122
+ #. translators: <a> tags
1123
+ #: includes/views/dompdf-status.php:98
1124
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1125
+ msgstr ""
1126
+
1127
+ #: includes/views/dompdf-status.php:103
1128
+ msgid "System Configuration"
1129
+ msgstr ""
1130
+
1131
+ #: includes/views/dompdf-status.php:108
1132
+ msgid "Required"
1133
+ msgstr ""
1134
+
1135
+ #: includes/views/dompdf-status.php:109
1136
+ msgid "Present"
1137
+ msgstr ""
1138
+
1139
+ #: includes/views/dompdf-status.php:148
1140
+ msgid "Writable"
1141
+ msgstr ""
1142
+
1143
+ #: includes/views/dompdf-status.php:149
1144
+ msgid "Not writable"
1145
+ msgstr ""
1146
+
1147
+ #: includes/views/dompdf-status.php:154
1148
+ msgid "Central temporary plugin folder"
1149
+ msgstr ""
1150
+
1151
+ #: includes/views/dompdf-status.php:160
1152
+ msgid "Temporary attachments folder"
1153
+ msgstr ""
1154
+
1155
+ #: includes/views/dompdf-status.php:166
1156
+ msgid "Temporary DOMPDF folder"
1157
+ msgstr ""
1158
+
1159
+ #: includes/views/dompdf-status.php:172
1160
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1161
+ msgstr ""
1162
+
1163
+ #: includes/views/dompdf-status.php:183
1164
+ msgid "Write Permissions"
1165
+ msgstr ""
1166
+
1167
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1168
+ #: templates/Simple/packing-slip.php:88
1169
+ msgid "Description"
1170
+ msgstr ""
1171
+
1172
+ #: includes/views/dompdf-status.php:187
1173
+ msgid "Value"
1174
+ msgstr ""
1175
+
1176
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1177
+ #: includes/views/dompdf-status.php:213
1178
+ msgid ""
1179
+ "The central temp folder is %1$s. By default, this folder is created in the "
1180
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1181
+ "config.php. Alternatively, you can control the specific folder for PDF "
1182
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1183
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1184
+ "by the plugin if the central temp folder is writable)."
1185
+ msgstr ""
1186
+
1187
+ #. translators: directory path
1188
+ #: includes/views/dompdf-status.php:226
1189
+ msgid ""
1190
+ "If the temporary folders were not automatically created by the plugin, "
1191
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1192
+ "Normally, this is fully automated, but if your server has strict security "
1193
+ "settings, this automated copying may have been prohibited. In that case, you "
1194
+ "also need to make sure these folders get synchronized on plugin updates!"
1195
+ msgstr ""
1196
+
1197
+ #: includes/views/setup-wizard/attach-to.php:3
1198
+ msgid "Attach too..."
1199
+ msgstr ""
1200
+
1201
+ #: includes/views/setup-wizard/attach-to.php:4
1202
+ msgid "Select to which emails you would like to attach your invoice."
1203
+ msgstr ""
1204
+
1205
+ #: includes/views/setup-wizard/display-options.php:4
1206
+ msgid "Select some additional display options for your invoice."
1207
+ msgstr ""
1208
+
1209
+ #: includes/views/setup-wizard/good-to-go.php:3
1210
+ msgid "You are good to go!"
1211
+ msgstr ""
1212
+
1213
+ #: includes/views/setup-wizard/good-to-go.php:4
1214
+ msgid "If you have any questions please have a look at our documentation:"
1215
+ msgstr ""
1216
+
1217
+ #: includes/views/setup-wizard/good-to-go.php:5
1218
+ msgid "Invoices & Packing Slips"
1219
+ msgstr ""
1220
+
1221
+ #: includes/views/setup-wizard/good-to-go.php:6
1222
+ msgid "Happy selling!"
1223
+ msgstr ""
1224
+
1225
+ #: includes/views/setup-wizard/logo.php:4
1226
+ msgid "Set the header image that will display on your invoice."
1227
+ msgstr ""
1228
+
1229
+ #: includes/views/setup-wizard/paper-format.php:4
1230
+ msgid "Select the paper format for your invoice."
1231
+ msgstr ""
1232
+
1233
+ #: includes/views/setup-wizard/shop-name.php:3
1234
+ msgid "Enter your shop name"
1235
+ msgstr ""
1236
+
1237
+ #: includes/views/setup-wizard/shop-name.php:4
1238
+ msgid ""
1239
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1240
+ "shop in the fields on the right."
1241
+ msgstr ""
1242
+
1243
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1244
+ msgid ""
1245
+ "Would you like to display the action buttons in your WooCommerce order list? "
1246
+ "The action buttons allow you to manually create a PDF."
1247
+ msgstr ""
1248
+
1249
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1250
+ msgid "(You can always change this setting later via the Screen Options menu)"
1251
+ msgstr ""
1252
+
1253
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1254
+ msgid "Show action buttons"
1255
+ msgstr ""
1256
+
1257
+ #: includes/views/wcpdf-extensions.php:16
1258
+ msgid "Check out these premium extensions!"
1259
+ msgstr ""
1260
+
1261
+ #: includes/views/wcpdf-extensions.php:17
1262
+ msgid "click items to read more"
1263
+ msgstr ""
1264
+
1265
+ #: includes/views/wcpdf-extensions.php:22
1266
+ msgid ""
1267
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1268
+ "system"
1269
+ msgstr ""
1270
+
1271
+ #: includes/views/wcpdf-extensions.php:24
1272
+ msgid ""
1273
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1274
+ "premium extensions:"
1275
+ msgstr ""
1276
+
1277
+ #: includes/views/wcpdf-extensions.php:25
1278
+ msgid "Professional features:"
1279
+ msgstr ""
1280
+
1281
+ #: includes/views/wcpdf-extensions.php:27
1282
+ #: includes/views/wcpdf-extensions.php:57
1283
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1284
+ msgstr ""
1285
+
1286
+ #: includes/views/wcpdf-extensions.php:28
1287
+ #: includes/views/wcpdf-extensions.php:58
1288
+ msgid ""
1289
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1290
+ "packing slips, for example to a drop-shipper or a supplier."
1291
+ msgstr ""
1292
+
1293
+ #: includes/views/wcpdf-extensions.php:29
1294
+ #: includes/views/wcpdf-extensions.php:59
1295
+ msgid ""
1296
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1297
+ "document) to the WooCommerce emails of your choice."
1298
+ msgstr ""
1299
+
1300
+ #: includes/views/wcpdf-extensions.php:30
1301
+ #: includes/views/wcpdf-extensions.php:60
1302
+ msgid ""
1303
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1304
+ "and credit notes or utilize the main invoice numbering system"
1305
+ msgstr ""
1306
+
1307
+ #: includes/views/wcpdf-extensions.php:31
1308
+ #: includes/views/wcpdf-extensions.php:61
1309
+ msgid ""
1310
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1311
+ "additional custom fields, font sizes etc. without the need to create a "
1312
+ "custom template."
1313
+ msgstr ""
1314
+
1315
+ #: includes/views/wcpdf-extensions.php:32
1316
+ #: includes/views/wcpdf-extensions.php:62
1317
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1318
+ msgstr ""
1319
+
1320
+ #: includes/views/wcpdf-extensions.php:34
1321
+ #: includes/views/wcpdf-extensions.php:114
1322
+ msgid "Advanced, customizable templates"
1323
+ msgstr ""
1324
+
1325
+ #: includes/views/wcpdf-extensions.php:36
1326
+ #: includes/views/wcpdf-extensions.php:117
1327
+ msgid ""
1328
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1329
+ "your needs with a drag & drop customizer"
1330
+ msgstr ""
1331
+
1332
+ #: includes/views/wcpdf-extensions.php:37
1333
+ #: includes/views/wcpdf-extensions.php:118
1334
+ msgid "Two extra stylish premade templates (Modern & Business)"
1335
+ msgstr ""
1336
+
1337
+ #: includes/views/wcpdf-extensions.php:39
1338
+ #: includes/views/wcpdf-extensions.php:63
1339
+ msgid "Upload automatically to dropbox"
1340
+ msgstr ""
1341
+
1342
+ #: includes/views/wcpdf-extensions.php:41
1343
+ msgid ""
1344
+ "This extension conveniently uploads all the invoices (and other pdf "
1345
+ "documents from the professional extension) that are emailed to your "
1346
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1347
+ "date!"
1348
+ msgstr ""
1349
+
1350
+ #: includes/views/wcpdf-extensions.php:44
1351
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1352
+ msgstr ""
1353
+
1354
+ #: includes/views/wcpdf-extensions.php:53
1355
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1356
+ msgstr ""
1357
+
1358
+ #: includes/views/wcpdf-extensions.php:55
1359
+ msgid ""
1360
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1361
+ "features:"
1362
+ msgstr ""
1363
+
1364
+ #: includes/views/wcpdf-extensions.php:65
1365
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1366
+ msgstr ""
1367
+
1368
+ #: includes/views/wcpdf-extensions.php:73
1369
+ msgid "Automatically send payment reminders to your customers"
1370
+ msgstr ""
1371
+
1372
+ #: includes/views/wcpdf-extensions.php:75
1373
+ msgid "WooCommerce Smart Reminder emails"
1374
+ msgstr ""
1375
+
1376
+ #: includes/views/wcpdf-extensions.php:77
1377
+ msgid "<b>Completely automatic</b> scheduled emails"
1378
+ msgstr ""
1379
+
1380
+ #: includes/views/wcpdf-extensions.php:78
1381
+ msgid ""
1382
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1383
+ "from the order (name, order total, etc)"
1384
+ msgstr ""
1385
+
1386
+ #: includes/views/wcpdf-extensions.php:79
1387
+ msgid ""
1388
+ "Configure the exact requirements for sending an email (time after order, "
1389
+ "order status, payment method)"
1390
+ msgstr ""
1391
+
1392
+ #: includes/views/wcpdf-extensions.php:80
1393
+ msgid ""
1394
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1395
+ "order language."
1396
+ msgstr ""
1397
+
1398
+ #: includes/views/wcpdf-extensions.php:81
1399
+ msgid ""
1400
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1401
+ "reminders, repeat purchases)"
1402
+ msgstr ""
1403
+
1404
+ #: includes/views/wcpdf-extensions.php:82
1405
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1406
+ msgstr ""
1407
+
1408
+ #: includes/views/wcpdf-extensions.php:84
1409
+ msgid "Get WooCommerce Smart Reminder Emails"
1410
+ msgstr ""
1411
+
1412
+ #: includes/views/wcpdf-extensions.php:93
1413
+ msgid ""
1414
+ "Automatically send new orders or packing slips to your printer, as soon as "
1415
+ "the customer orders!"
1416
+ msgstr ""
1417
+
1418
+ #: includes/views/wcpdf-extensions.php:99
1419
+ msgid ""
1420
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1421
+ "partners at Simba Hosting"
1422
+ msgstr ""
1423
+
1424
+ #: includes/views/wcpdf-extensions.php:100
1425
+ msgid "WooCommerce Automatic Order Printing"
1426
+ msgstr ""
1427
+
1428
+ #. translators: Premium Templates link
1429
+ #: includes/views/wcpdf-extensions.php:120
1430
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1431
+ msgstr ""
1432
+
1433
+ #. translators: email link
1434
+ #: includes/views/wcpdf-extensions.php:122
1435
+ msgid "For custom templates, contact us at %s."
1436
+ msgstr ""
1437
+
1438
+ #: includes/views/wcpdf-settings-page.php:9
1439
+ msgid "WooCommerce PDF Invoices"
1440
+ msgstr ""
1441
+
1442
+ #: includes/wcpdf-functions.php:209
1443
+ msgid "Error creating PDF, please contact the site owner."
1444
+ msgstr ""
1445
+
1446
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1447
+ msgid "Billing Address:"
1448
+ msgstr ""
1449
+
1450
+ #: templates/Simple/invoice.php:48
1451
+ msgid "Ship To:"
1452
+ msgstr ""
1453
+
1454
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1455
+ msgid "Order Number:"
1456
+ msgstr ""
1457
+
1458
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1459
+ msgid "Order Date:"
1460
+ msgstr ""
1461
+
1462
+ #: templates/Simple/invoice.php:78
1463
+ msgid "Payment Method:"
1464
+ msgstr ""
1465
+
1466
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1467
+ msgid "Product"
1468
+ msgstr ""
1469
+
1470
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1471
+ msgid "Quantity"
1472
+ msgstr ""
1473
+
1474
+ #: templates/Simple/invoice.php:94
1475
+ msgid "Price"
1476
+ msgstr ""
1477
+
1478
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1479
+ msgid "SKU"
1480
+ msgstr ""
1481
+
1482
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1483
+ msgid "SKU:"
1484
+ msgstr ""
1485
+
1486
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1487
+ msgid "Weight:"
1488
+ msgstr ""
1489
+
1490
+ #: templates/Simple/invoice.php:123
1491
+ msgid "Notes"
1492
+ msgstr ""
1493
+
1494
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1495
+ msgid "Customer Notes"
1496
+ msgstr ""
1497
+
1498
+ #: templates/Simple/packing-slip.php:35
1499
+ msgid "Shipping Address:"
1500
+ msgstr ""
1501
+
1502
+ #: templates/Simple/packing-slip.php:66
1503
+ msgid "Shipping Method:"
1504
+ msgstr ""
1505
+
1506
+ #. translators: <a> tags
1507
+ #: woocommerce-pdf-invoices-packingslips.php:271
1508
+ msgid ""
1509
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1510
+ "installed & activated!"
1511
+ msgstr ""
1512
+
1513
+ #: woocommerce-pdf-invoices-packingslips.php:282
1514
+ msgid ""
1515
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1516
+ "recommended)."
1517
+ msgstr ""
1518
+
1519
+ #. translators: <a> tags
1520
+ #: woocommerce-pdf-invoices-packingslips.php:284
1521
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1522
+ msgstr ""
1523
+
1524
+ #. translators: <a> tags
1525
+ #: woocommerce-pdf-invoices-packingslips.php:286
1526
+ msgid ""
1527
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1528
+ "to enable backwards compatibility with PHP5.6."
1529
+ msgstr ""
1530
+
1531
+ #. translators: directory path
1532
+ #: woocommerce-pdf-invoices-packingslips.php:374
1533
+ msgid ""
1534
+ "The PDF files in %s are not currently protected due to your site running on "
1535
+ "<strong>NGINX</strong>."
1536
+ msgstr ""
1537
+
1538
+ #: woocommerce-pdf-invoices-packingslips.php:375
1539
+ msgid "To protect them, you must click the button below."
1540
+ msgstr ""
1541
+
1542
+ #. translators: plugin name
1543
+ #: woocommerce-pdf-invoices-packingslips.php:419
1544
+ msgid ""
1545
+ "When sending emails with MailPoet 3 and the active sending method is "
1546
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1547
+ "the emails."
1548
+ msgstr ""
1549
+
1550
+ #. translators: "Your web host / web server"
1551
+ #: woocommerce-pdf-invoices-packingslips.php:421
1552
+ msgid "To fix this you should select other method like %1$s or %2$s."
1553
+ msgstr ""
1554
+
1555
+ #. translators: "Your web host / web server"
1556
+ #: woocommerce-pdf-invoices-packingslips.php:421
1557
+ msgid "Your web host / web server"
1558
+ msgstr ""
1559
+
1560
+ #: woocommerce-pdf-invoices-packingslips.php:422
1561
+ msgid "Change MailPoet sending method"
1562
+ msgstr ""
languages/woocommerce-pdf-invoices-packing-slips-es_ES.mo DELETED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-es_ES.po DELETED
@@ -1,1742 +0,0 @@
1
- # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in Spanish (Spain)
2
- # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
- "Stable (latest release)\n"
7
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
8
- "invoices-packing-slips\n"
9
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
10
- "PO-Revision-Date: 2021-07-26 17:11+0200\n"
11
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
12
- "Language-Team: \n"
13
- "Language: es_ES\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Generator: Poedit 3.0\n"
19
-
20
- #. Plugin Name of the plugin
21
- msgid "WooCommerce PDF Invoices & Packing Slips"
22
- msgstr "WooCommerce PDF Invoices & Packing Slips"
23
-
24
- #. Plugin URI of the plugin
25
- #. Author URI of the plugin
26
- msgid "http://www.wpovernight.com"
27
- msgstr "http://www.wpovernight.com"
28
-
29
- #. Description of the plugin
30
- msgid ""
31
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
32
- msgstr ""
33
- "Crea, imprime y manda por correo electrónico facturas en PDF y comprobantes "
34
- "de envío de los pedidos de WooCommerce."
35
-
36
- #. Author of the plugin
37
- msgid "Ewout Fernhout"
38
- msgstr "Ewout Fernhout"
39
-
40
- #. translators: rounded count
41
- #: includes/class-wcpdf-admin.php:92
42
- msgid "Wow, you have created more than %d invoices with our plugin!"
43
- msgstr "¡Vaya, has creado más de %d facturas con nuestro plugin!"
44
-
45
- #: includes/class-wcpdf-admin.php:93
46
- msgid ""
47
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
48
- "rating. Help us spread the word and boost our motivation!"
49
- msgstr ""
50
- "Apreciaríamos un montón si nos dieses una valoración de 5 estrellas. "
51
- "¡Ayúdanos a difundir la palabra y refuerza nuestra motivación!"
52
-
53
- #: includes/class-wcpdf-admin.php:95
54
- msgid "Yes you deserve it!"
55
- msgstr "¡Sí, lo mereces!"
56
-
57
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
58
- #: includes/views/attachment-settings-hint.php:24
59
- #: includes/views/wcpdf-extensions.php:131
60
- #: woocommerce-pdf-invoices-packingslips.php:377
61
- #: woocommerce-pdf-invoices-packingslips.php:423
62
- msgid "Hide this message"
63
- msgstr "Ocultar este mensaje"
64
-
65
- #: includes/class-wcpdf-admin.php:96
66
- msgid "Already did!"
67
- msgstr "¡Ya lo hice!"
68
-
69
- #: includes/class-wcpdf-admin.php:97
70
- msgid "Actually, I have a complaint..."
71
- msgstr "En realidad tengo una queja…"
72
-
73
- #: includes/class-wcpdf-admin.php:132
74
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
75
- msgstr "¿Eres nuevo con WooCommerce PDF Invoices & Packing Slips?"
76
-
77
- #: includes/class-wcpdf-admin.php:132
78
- msgid "Jumpstart the plugin by following our wizard!"
79
- msgstr "¡Comienza ya con el plugin siguiendo nuestro asistente!"
80
-
81
- #: includes/class-wcpdf-admin.php:133
82
- msgid "Run the Setup Wizard"
83
- msgstr "Ejecuta el asistente de instalación"
84
-
85
- #: includes/class-wcpdf-admin.php:133
86
- msgid "I am the wizard"
87
- msgstr "Soy el asistente"
88
-
89
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
90
- #: includes/documents/class-wcpdf-invoice.php:302
91
- msgid "Invoice Number"
92
- msgstr "Número de factura"
93
-
94
- #: includes/class-wcpdf-admin.php:261
95
- msgid "Send order email"
96
- msgstr "Enviar correo electrónico del pedido"
97
-
98
- #: includes/class-wcpdf-admin.php:272
99
- msgid "Create PDF"
100
- msgstr "Crear PDF"
101
-
102
- #: includes/class-wcpdf-admin.php:282
103
- msgid "PDF document data"
104
- msgstr "Datos del documento en PDF"
105
-
106
- #: includes/class-wcpdf-admin.php:304
107
- msgid "Choose an email to send&hellip;"
108
- msgstr "Elige un correo electrónico para el envío&hellip;"
109
-
110
- #: includes/class-wcpdf-admin.php:320
111
- msgid "Save order & send email"
112
- msgstr "Guardar pedido y enviar correo"
113
-
114
- #: includes/class-wcpdf-admin.php:322
115
- msgid "Send email"
116
- msgstr "Enviar correo electrónico"
117
-
118
- #: includes/class-wcpdf-admin.php:378
119
- #: includes/documents/class-wcpdf-invoice.php:460
120
- msgid "Invoice Number:"
121
- msgstr "Número de factura:"
122
-
123
- #: includes/class-wcpdf-admin.php:381
124
- #: includes/documents/class-wcpdf-invoice.php:468
125
- msgid "Invoice Date:"
126
- msgstr "Fecha de factura:"
127
-
128
- #: includes/class-wcpdf-admin.php:384
129
- msgid "Notes (printed in the invoice):"
130
- msgstr "Notas (impresas en la factura):"
131
-
132
- #. translators: document title
133
- #: includes/class-wcpdf-admin.php:469
134
- msgid "Set %s number & date"
135
- msgstr "Establecer el número y fecha de %s"
136
-
137
- #: includes/class-wcpdf-admin.php:478
138
- msgid "unformatted!"
139
- msgstr "¡sin formato!"
140
-
141
- #: includes/class-wcpdf-admin.php:518
142
- msgid "Save changes"
143
- msgstr "Guardar cambios"
144
-
145
- #: includes/class-wcpdf-admin.php:519
146
- msgid "Cancel"
147
- msgstr "Cancelar"
148
-
149
- #. translators: name/description of the context for document creation logs
150
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
151
- msgid "order details (number and/or date set manually)"
152
- msgstr "detalles del pedido (número y/o fecha establecidos manualmente)"
153
-
154
- #. translators: %s: email title
155
- #: includes/class-wcpdf-admin.php:647
156
- msgid "%s email notification manually sent."
157
- msgstr "%s correo electrónico de aviso enviado manualmente."
158
-
159
- #: includes/class-wcpdf-admin.php:734
160
- msgid "Nonce expired!"
161
- msgstr "¡El nonce ha caducado!"
162
-
163
- #: includes/class-wcpdf-admin.php:740
164
- msgid "Bad action!"
165
- msgstr "¡Acción incorrecta!"
166
-
167
- #: includes/class-wcpdf-admin.php:746
168
- msgid "Incomplete request!"
169
- msgstr "¡Solicitud incompleta!"
170
-
171
- #: includes/class-wcpdf-admin.php:752
172
- msgid "No permissions!"
173
- msgstr "¡No tienes permisos!"
174
-
175
- #: includes/class-wcpdf-admin.php:776
176
- msgid "Document data saved!"
177
- msgstr "¡Los datos del documento se han guardado!"
178
-
179
- #: includes/class-wcpdf-admin.php:777
180
- msgid "An error occurred while saving the document data!"
181
- msgstr "¡Se ha producido un error al guardar los datos del documento!"
182
-
183
- #: includes/class-wcpdf-admin.php:780
184
- msgid "Document regenerated!"
185
- msgstr "¡El documento se ha regenerado!"
186
-
187
- #: includes/class-wcpdf-admin.php:781
188
- msgid "An error occurred while regenerating the document!"
189
- msgstr "¡Se ha producido un error al regenerar el documento!"
190
-
191
- #: includes/class-wcpdf-admin.php:784
192
- msgid "Document deleted!"
193
- msgstr "¡Datos del documento en PDF!"
194
-
195
- #: includes/class-wcpdf-admin.php:785
196
- msgid "An error occurred while deleting the document!"
197
- msgstr "¡Se ha producido un error al borrar el documento!"
198
-
199
- #: includes/class-wcpdf-admin.php:841
200
- msgid "Document does not exist."
201
- msgstr "El documento no existe."
202
-
203
- #: includes/class-wcpdf-admin.php:850
204
- msgid "Document is empty."
205
- msgstr "El documento está vacío."
206
-
207
- #: includes/class-wcpdf-admin.php:881
208
- msgid "DEBUG output enabled"
209
- msgstr "Salida de DEPURACIÓN activa"
210
-
211
- #: includes/class-wcpdf-assets.php:91
212
- msgid "Are you sure you want to delete this document? This cannot be undone."
213
- msgstr ""
214
- "¿Estás seguro de que quieres borrar este documento? Esto no puede deshacerse."
215
-
216
- #: includes/class-wcpdf-assets.php:92
217
- msgid ""
218
- "Are you sure you want to regenerate this document? This will make the "
219
- "document reflect the most current settings (such as footer text, document "
220
- "name, etc.) rather than using historical settings."
221
- msgstr ""
222
- "¿Estás seguro de querer regenerar este documento? Esto hará que el documento "
223
- "refleje los ajustes más actuales (como el texto del pié de página, nombre "
224
- "del documento, etc.) en vez de usar los ajustes históricos."
225
-
226
- #: includes/class-wcpdf-frontend.php:126
227
- msgid "Download invoice (PDF)"
228
- msgstr "Descargar factura (PDF)"
229
-
230
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
231
- #: includes/class-wcpdf-main.php:338
232
- msgid "You do not have sufficient permissions to access this page."
233
- msgstr "No tienes suficientes permisos para acceder a esta página."
234
-
235
- #: includes/class-wcpdf-main.php:275
236
- msgid "You haven't selected any orders"
237
- msgstr "No has seleccionado ningún pedido"
238
-
239
- #: includes/class-wcpdf-main.php:279
240
- msgid "Some of the export parameters are missing."
241
- msgstr "Faltan algunos parámetros de exportación."
242
-
243
- #. translators: document type
244
- #: includes/class-wcpdf-main.php:379
245
- msgid "Document of type '%s' for the selected order(s) could not be generated"
246
- msgstr ""
247
- "No se pudo generar el tipo de documento '%s' para el/los pedido(s) "
248
- "seleccionado(s)"
249
-
250
- #. translators: 1. plugin name, 2. directory path
251
- #: includes/class-wcpdf-main.php:591
252
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
253
- msgstr ""
254
- "¡El directorio %2$s de %1$s no se ha podido crear o no tiene permisos de "
255
- "escritura!"
256
-
257
- #: includes/class-wcpdf-main.php:592
258
- msgid ""
259
- "Please check your directories write permissions or contact your hosting "
260
- "service provider."
261
- msgstr ""
262
- "Por favor, comprueba los permisos de escritura de tus directorios o contacta "
263
- "con tu proveedor del servicio de alojamiento."
264
-
265
- #: includes/class-wcpdf-main.php:907
266
- #: includes/documents/class-wcpdf-invoice.php:286
267
- msgid "Invoice Date"
268
- msgstr "Fecha de factura"
269
-
270
- #. translators: name/description of the context for document creation logs
271
- #: includes/class-wcpdf-main.php:937
272
- msgid "bulk order action"
273
- msgstr "acción de pedido en lote"
274
-
275
- #. translators: name/description of the context for document creation logs
276
- #: includes/class-wcpdf-main.php:945
277
- msgid "single order action"
278
- msgstr "acción de pedido individual"
279
-
280
- #. translators: name/description of the context for document creation logs
281
- #: includes/class-wcpdf-main.php:953
282
- msgid "my account"
283
- msgstr "mi cuenta"
284
-
285
- #. translators: name/description of the context for document creation logs
286
- #: includes/class-wcpdf-main.php:961
287
- msgid "email attachment"
288
- msgstr "archivo adjunto de correo electrónico"
289
-
290
- #. translators: 1. document title, 2. creation source
291
- #: includes/class-wcpdf-main.php:970
292
- msgid "PDF %1$s created via %2$s."
293
- msgstr "El PDF de %1$s se ha creado a través de %2$s."
294
-
295
- #. translators: document title
296
- #: includes/class-wcpdf-main.php:1006
297
- msgid "Order %s Saved"
298
- msgstr "Pedido %s guardado"
299
-
300
- #: includes/class-wcpdf-settings-callbacks.php:27
301
- msgid ""
302
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
303
- "Do not use them on a live website!"
304
- msgstr ""
305
- "<b>¡Advertencia!</b> Los siguientes ajustes solo son para depuración/"
306
- "desarrollo. ¡No los uses en un sitio en directo!"
307
-
308
- #: includes/class-wcpdf-settings-callbacks.php:36
309
- msgid ""
310
- "These are used for the (optional) footer columns in the <em>Modern "
311
- "(Premium)</em> template, but can also be used for other elements in your "
312
- "custom template"
313
- msgstr ""
314
- "Estos se usan para las columnas del pie de página (opcional) en la plantilla "
315
- "<em>Modern (Premium)</em>, pero también se pueden emplear en tu plantilla "
316
- "personalizada"
317
-
318
- #: includes/class-wcpdf-settings-callbacks.php:383
319
- msgid "Image resolution"
320
- msgstr "Resolución de la imagen"
321
-
322
- #: includes/class-wcpdf-settings-callbacks.php:410
323
- msgid "Save"
324
- msgstr "Guardar"
325
-
326
- #: includes/class-wcpdf-settings-debug.php:45
327
- #: woocommerce-pdf-invoices-packingslips.php:376
328
- msgid "Generate random temporary folder name"
329
- msgstr "Generar nombre de carpeta temporal aleatoriamente"
330
-
331
- #. translators: directory path
332
- #: includes/class-wcpdf-settings-debug.php:58
333
- msgid "Temporary folder moved to %s"
334
- msgstr "Carpeta movida temporalmente a %s"
335
-
336
- #: includes/class-wcpdf-settings-debug.php:68
337
- msgid "Reinstall fonts"
338
- msgstr "Reinstalar fuentes"
339
-
340
- #: includes/class-wcpdf-settings-debug.php:89
341
- msgid "Fonts reinstalled!"
342
- msgstr "¡Fuentes reinstaladas!"
343
-
344
- #: includes/class-wcpdf-settings-debug.php:98
345
- msgid "Remove temporary files"
346
- msgstr "Eliminar archivos temporales"
347
-
348
- #: includes/class-wcpdf-settings-debug.php:109
349
- msgid "Unable to read temporary folder contents!"
350
- msgstr "¡No ha sido posible leer el contenido de la carpeta temporal!"
351
-
352
- #. translators: 1,2. file count
353
- #: includes/class-wcpdf-settings-debug.php:127
354
- msgid "Unable to delete %1$d files! (deleted %2$d)"
355
- msgstr "No ha sido posible eliminar %1$d archivos (borrados %2$d)"
356
-
357
- #. translators: file count
358
- #: includes/class-wcpdf-settings-debug.php:131
359
- msgid "Successfully deleted %d files!"
360
- msgstr "¡Se han borrado %d archivos correctamente!"
361
-
362
- #: includes/class-wcpdf-settings-debug.php:135
363
- msgid "Nothing to delete!"
364
- msgstr "¡No hay nada que borrar!"
365
-
366
- #: includes/class-wcpdf-settings-debug.php:146
367
- msgid "Delete legacy (1.X) settings"
368
- msgstr "Borrar ajustes heredados (1.X)"
369
-
370
- #: includes/class-wcpdf-settings-debug.php:162
371
- msgid "Legacy settings deleted!"
372
- msgstr "¡Ajustes heredados borrados!"
373
-
374
- #: includes/class-wcpdf-settings-debug.php:192
375
- msgid "Debug settings"
376
- msgstr "Ajustes de depuración"
377
-
378
- #: includes/class-wcpdf-settings-debug.php:198
379
- msgid "Legacy mode"
380
- msgstr "Modo heredado"
381
-
382
- #: includes/class-wcpdf-settings-debug.php:204
383
- msgid ""
384
- "Legacy mode ensures compatibility with templates and filters from previous "
385
- "versions."
386
- msgstr ""
387
- "El modo heredado asegura la compatibilidad con plantillas y filtros de "
388
- "versiones anteriores."
389
-
390
- #: includes/class-wcpdf-settings-debug.php:210
391
- msgid "Legacy textdomain fallback"
392
- msgstr "Retroactividad del textdomain heredado"
393
-
394
- #: includes/class-wcpdf-settings-debug.php:216
395
- msgid ""
396
- "Legacy textdomain fallback ensures compatibility with translation files from "
397
- "versions prior to 2017-05-15."
398
- msgstr ""
399
- "La compatibilidad heredada del texto de dominio asegura la compatibilidad "
400
- "con los archivos de traducción de versiones anteriores al 15 de mayo de 2017."
401
-
402
- #: includes/class-wcpdf-settings-debug.php:222
403
- msgid "Allow guest access"
404
- msgstr "Permitir acceso a invitados"
405
-
406
- #: includes/class-wcpdf-settings-debug.php:228
407
- msgid ""
408
- "Enable this to allow customers that purchase without an account to access "
409
- "their PDF with a unique key"
410
- msgstr ""
411
- "Activa esto para permitir a los clientes que compran sin cuenta acceder a "
412
- "sus PDF con una clave única"
413
-
414
- #: includes/class-wcpdf-settings-debug.php:234
415
- msgid "Calculate document numbers (slow)"
416
- msgstr "Calcular números de documento (lento)"
417
-
418
- #: includes/class-wcpdf-settings-debug.php:240
419
- msgid ""
420
- "Document numbers (such as invoice numbers) are generated using "
421
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
422
- "with more than 1."
423
- msgstr ""
424
- "Los números de documento (como los números de factura) se generan usando por "
425
- "defecto AUTO_INCREMENT. Utiliza este ajuste si tu base de datos incrementa "
426
- "automáticamente con más de 1."
427
-
428
- #: includes/class-wcpdf-settings-debug.php:246
429
- msgid "Enable debug output"
430
- msgstr "Activar la salida de depuración"
431
-
432
- #: includes/class-wcpdf-settings-debug.php:252
433
- msgid ""
434
- "Enable this option to output plugin errors if you're getting a blank page or "
435
- "other PDF generation issues"
436
- msgstr ""
437
- "Activa esta opción para mostrar los errores del plugin si estás recibiendo "
438
- "una página en blanco u otros errores de generación del PDF"
439
-
440
- #: includes/class-wcpdf-settings-debug.php:253
441
- msgid ""
442
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
443
- "places on your site too, therefor this is not recommended to leave it "
444
- "enabled on live sites."
445
- msgstr ""
446
- "<b>¡Precaución!</b> Este ajuste puede mostrar también errores (de otros "
447
- "plugins) en otras partes de tu web, por tanto no se recomienda dejarlo "
448
- "activo en sitios en producción."
449
-
450
- #: includes/class-wcpdf-settings-debug.php:254
451
- msgid ""
452
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
453
- "order basis."
454
- msgstr ""
455
- "También puedes añadir <code>&debug=true</code> a la URL para aplicar esto en "
456
- "cada pedido."
457
-
458
- #: includes/class-wcpdf-settings-debug.php:260
459
- msgid "Enable automatic cleanup"
460
- msgstr "Activar la limpieza automática"
461
-
462
- #. translators: number of days
463
- #: includes/class-wcpdf-settings-debug.php:268
464
- msgid "every %s days"
465
- msgstr "cada %s días"
466
-
467
- #: includes/class-wcpdf-settings-debug.php:273
468
- msgid ""
469
- "Automatically clean up PDF files stored in the temporary folder (used for "
470
- "email attachments)"
471
- msgstr ""
472
- "Archivos PDF limpiados automáticamente almacenados en la carpeta temporal "
473
- "(utilizados para los adjuntos por correo electrónico)"
474
-
475
- #: includes/class-wcpdf-settings-debug.php:274
476
- msgid ""
477
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
478
- "automatic cleanup but not enabled on your server."
479
- msgstr ""
480
- "<b>Desactivado:</b> Las funciones PHP glob y filemtime son obligatorias para "
481
- "la limpieza automática pero no están activas en tu servidor."
482
-
483
- #: includes/class-wcpdf-settings-debug.php:280
484
- msgid "Output to HTML"
485
- msgstr "Enviar como HTML"
486
-
487
- #: includes/class-wcpdf-settings-debug.php:286
488
- msgid ""
489
- "Send the template output as HTML to the browser instead of creating a PDF."
490
- msgstr "Envía la plantilla como HTML al navegador en vez de crear un PDF."
491
-
492
- #: includes/class-wcpdf-settings-debug.php:287
493
- msgid ""
494
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
495
- "order basis."
496
- msgstr ""
497
- "También puedes añadir <code>&output=html</code> a la URL para aplicar esto "
498
- "en cada pedido."
499
-
500
- #: includes/class-wcpdf-settings-debug.php:293
501
- msgid "Use alternative HTML5 parser to parse HTML"
502
- msgstr "Usar el analizador alternativo en HTML5 para analizar el HTML"
503
-
504
- #: includes/class-wcpdf-settings-debug.php:304
505
- msgid "Log to order notes"
506
- msgstr "Registrar en las notas del pedido"
507
-
508
- #: includes/class-wcpdf-settings-debug.php:310
509
- msgid "Log PDF document creation to order notes."
510
- msgstr "Registra la creación de documentos PDF en las notas del pedido."
511
-
512
- #: includes/class-wcpdf-settings-documents.php:30
513
- #: includes/class-wcpdf-settings.php:97
514
- msgid "Documents"
515
- msgstr "Documentos"
516
-
517
- #: includes/class-wcpdf-settings-documents.php:36
518
- #: includes/class-wcpdf-settings-documents.php:57
519
- msgid "untitled"
520
- msgstr "sin título"
521
-
522
- #: includes/class-wcpdf-settings-documents.php:50
523
- msgid ""
524
- "All available documents are listed below. Click on a document to configure "
525
- "it."
526
- msgstr ""
527
- "A continuación se muestran todos los documentos disponibles. Haz clic en un "
528
- "documento para configurarlo."
529
-
530
- #: includes/class-wcpdf-settings-general.php:40
531
- msgid "General settings"
532
- msgstr "Ajustes generales"
533
-
534
- #: includes/class-wcpdf-settings-general.php:46
535
- msgid "How do you want to view the PDF?"
536
- msgstr "¿Cómo deseas visualizar el PDF?"
537
-
538
- #: includes/class-wcpdf-settings-general.php:53
539
- msgid "Download the PDF"
540
- msgstr "Descargando el PDF"
541
-
542
- #: includes/class-wcpdf-settings-general.php:54
543
- msgid "Open the PDF in a new browser tab/window"
544
- msgstr "Abriendo el PDF en una nueva pestaña/ventana del navegador"
545
-
546
- #: includes/class-wcpdf-settings-general.php:61
547
- msgid "Choose a template"
548
- msgstr "Elige una plantilla"
549
-
550
- #. translators: 1,2. template paths
551
- #: includes/class-wcpdf-settings-general.php:69
552
- msgid ""
553
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
554
- "your (child) theme in <code>%2$s</code> to customize them"
555
- msgstr ""
556
- "¿Quieres usar tu propia plantilla? Copia todos los archivos de <code>%1$s</"
557
- "code> a tu tema (hijo) en <code>%2$s</code> para personalizarlos"
558
-
559
- #: includes/class-wcpdf-settings-general.php:75
560
- msgid "Paper size"
561
- msgstr "Tamaño del papel"
562
-
563
- #: includes/class-wcpdf-settings-general.php:82
564
- #: includes/views/setup-wizard/paper-format.php:12
565
- msgid "A4"
566
- msgstr "A4"
567
-
568
- #: includes/class-wcpdf-settings-general.php:83
569
- #: includes/views/setup-wizard/paper-format.php:13
570
- msgid "Letter"
571
- msgstr "Carta"
572
-
573
- #: includes/class-wcpdf-settings-general.php:90
574
- msgid "Test mode"
575
- msgstr "Modo de pruebas"
576
-
577
- #: includes/class-wcpdf-settings-general.php:96
578
- msgid ""
579
- "With test mode enabled, any document generated will always use the latest "
580
- "settings, rather than using the settings as configured at the time the "
581
- "document was first created."
582
- msgstr ""
583
- "Con el modo de pruebas activo cualquier documento que se genere usará "
584
- "siempre los últimos ajustes, en vez de usar los ajustes como se configuraron "
585
- "en el momento en que se creó el documento por primera vez."
586
-
587
- #: includes/class-wcpdf-settings-general.php:96
588
- msgid ""
589
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
590
- "setting and will still be generated."
591
- msgstr ""
592
- "<strong>Nota:</strong> Los números y fechas de factura no se ven afectados "
593
- "por este ajuste y se seguirán generando."
594
-
595
- #: includes/class-wcpdf-settings-general.php:102
596
- msgid "Extended currency symbol support"
597
- msgstr "Compatibilidad con símbolo de moneda extendido"
598
-
599
- #: includes/class-wcpdf-settings-general.php:108
600
- msgid "Enable this if your currency symbol is not displaying properly"
601
- msgstr "Activa esto si tu símbolo de moneda no se está mostrando correctamente"
602
-
603
- #: includes/class-wcpdf-settings-general.php:114
604
- msgid "Enable font subsetting"
605
- msgstr "Activar ajuste de fuentes"
606
-
607
- #: includes/class-wcpdf-settings-general.php:120
608
- msgid ""
609
- "Font subsetting can reduce file size by only including the characters that "
610
- "are used in the PDF, but limits the ability to edit PDF files later. "
611
- "Recommended if you're using an Asian font."
612
- msgstr ""
613
- "El ajuste de fuentes puede reducir el tamaño de archivo simplemente "
614
- "incluyendo los caracteres utilizados en el PDF, pero limita la posibilidad "
615
- "de modificar posteriormente los archivos PDF. Recomendable si usas una "
616
- "fuente asiática."
617
-
618
- #: includes/class-wcpdf-settings-general.php:126
619
- msgid "Shop header/logo"
620
- msgstr "Cabecera/logotipo de la tienda"
621
-
622
- #: includes/class-wcpdf-settings-general.php:132
623
- #: includes/views/setup-wizard/logo.php:20
624
- msgid "Select or upload your invoice header/logo"
625
- msgstr "Selecciona o sube una logotipo para la cabecera/logo de la factura"
626
-
627
- #: includes/class-wcpdf-settings-general.php:133
628
- #: includes/views/setup-wizard/logo.php:20
629
- msgid "Set image"
630
- msgstr "Añadir imagen"
631
-
632
- #: includes/class-wcpdf-settings-general.php:134
633
- #: includes/views/setup-wizard/logo.php:20
634
- msgid "Remove image"
635
- msgstr "Eliminar la imagen"
636
-
637
- #: includes/class-wcpdf-settings-general.php:141
638
- msgid "Logo height"
639
- msgstr "Altura del logotipo"
640
-
641
- #: includes/class-wcpdf-settings-general.php:149
642
- msgid ""
643
- "Enter the total height of the logo in mm, cm or in and use a dot for "
644
- "decimals.<br/>For example: 1.15in or 40mm"
645
- msgstr ""
646
- "Introduce la altura total del logotipo en mm, cm o in, y utiliza un punto "
647
- "para los decimales.<br/>Por ejemplo: 1.15in o 40mm"
648
-
649
- #: includes/class-wcpdf-settings-general.php:155
650
- #: includes/class-wcpdf-setup-wizard.php:47
651
- msgid "Shop Name"
652
- msgstr "Nombre de la tienda"
653
-
654
- #: includes/class-wcpdf-settings-general.php:168
655
- msgid "Shop Address"
656
- msgstr "Dirección de la tienda"
657
-
658
- #: includes/class-wcpdf-settings-general.php:183
659
- msgid "Footer: terms & conditions, policies, etc."
660
- msgstr "Pie de página: términos y condiciones, políticas, etc."
661
-
662
- #: includes/class-wcpdf-settings-general.php:198
663
- msgid "Extra template fields"
664
- msgstr "Campos extra de la plantilla"
665
-
666
- #: includes/class-wcpdf-settings-general.php:204
667
- msgid "Extra field 1"
668
- msgstr "Campo extra 1"
669
-
670
- #: includes/class-wcpdf-settings-general.php:212
671
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
672
- msgstr ""
673
- "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
674
- "i>"
675
-
676
- #: includes/class-wcpdf-settings-general.php:219
677
- msgid "Extra field 2"
678
- msgstr "Campo extra 2"
679
-
680
- #: includes/class-wcpdf-settings-general.php:227
681
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
682
- msgstr ""
683
- "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
684
- "i>"
685
-
686
- #: includes/class-wcpdf-settings-general.php:234
687
- msgid "Extra field 3"
688
- msgstr "Campo extra 3"
689
-
690
- #: includes/class-wcpdf-settings-general.php:242
691
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
692
- msgstr ""
693
- "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</i"
694
-
695
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
696
- msgid "PDF Invoices"
697
- msgstr "Facturas PDF"
698
-
699
- #: includes/class-wcpdf-settings.php:74
700
- msgid "Documentation"
701
- msgstr "Documentación"
702
-
703
- #: includes/class-wcpdf-settings.php:75
704
- msgid "Support Forum"
705
- msgstr "Foro de soporte"
706
-
707
- #. translators: database row value
708
- #: includes/class-wcpdf-settings.php:88
709
- msgid ""
710
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
711
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
712
- "document numbers (slow)' setting in the Status tab to use an alternate "
713
- "method."
714
- msgstr ""
715
- "<strong>¡Advertencia!</strong> Tu base de datos tiene un tamaño de paso de "
716
- "AUTO_INCREMENT de %s, tus números de factura podrán no ser consecutivos. "
717
- "Activa el ajuste «Calcular números del documento (lento)» en la pestaña "
718
- "«Estado» o usa un método alternativo."
719
-
720
- #: includes/class-wcpdf-settings.php:96
721
- msgid "General"
722
- msgstr "General"
723
-
724
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
725
- msgid "Status"
726
- msgstr "Estado"
727
-
728
- #: includes/class-wcpdf-setup-wizard.php:51
729
- #: includes/views/setup-wizard/logo.php:3
730
- msgid "Your logo"
731
- msgstr "Tu logotipo"
732
-
733
- #: includes/class-wcpdf-setup-wizard.php:55
734
- msgid "Attachments"
735
- msgstr "Adjuntos"
736
-
737
- #: includes/class-wcpdf-setup-wizard.php:59
738
- #: includes/views/setup-wizard/display-options.php:3
739
- msgid "Display options"
740
- msgstr "Opciones de visualización"
741
-
742
- #: includes/class-wcpdf-setup-wizard.php:63
743
- #: includes/views/setup-wizard/paper-format.php:3
744
- msgid "Paper format"
745
- msgstr "Formato del papél"
746
-
747
- #: includes/class-wcpdf-setup-wizard.php:67
748
- #: includes/views/setup-wizard/show-action-buttons.php:3
749
- msgid "Action buttons"
750
- msgstr "Botones de acción"
751
-
752
- #: includes/class-wcpdf-setup-wizard.php:71
753
- msgid "Ready!"
754
- msgstr "¡Listo!"
755
-
756
- #: includes/class-wcpdf-setup-wizard.php:133
757
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
758
- msgstr ""
759
- "WooCommerce PDF Invoices & Packing Slips &rsaquo; Asistente de configuración"
760
-
761
- #: includes/class-wcpdf-setup-wizard.php:185
762
- msgid "Previous"
763
- msgstr "Anterior"
764
-
765
- #: includes/class-wcpdf-setup-wizard.php:190
766
- msgid "Next"
767
- msgstr "Siguiente"
768
-
769
- #: includes/class-wcpdf-setup-wizard.php:191
770
- msgid "Skip this step"
771
- msgstr "Saltar este paso"
772
-
773
- #: includes/class-wcpdf-setup-wizard.php:193
774
- msgid "Finish"
775
- msgstr "Finalizar"
776
-
777
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
778
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
779
- msgid "N/A"
780
- msgstr "N/D"
781
-
782
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
783
- msgid "Payment method"
784
- msgstr "Método de pago"
785
-
786
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
787
- msgid "Shipping method"
788
- msgstr "Método de envío"
789
-
790
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
791
- msgid "Subtotal"
792
- msgstr "Subtotal"
793
-
794
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
795
- msgid "Shipping"
796
- msgstr "Envío"
797
-
798
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
799
- msgid "Discount"
800
- msgstr "Descuento"
801
-
802
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
803
- msgid "VAT"
804
- msgstr "IVA"
805
-
806
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
807
- msgid "Tax rate"
808
- msgstr "Tasa de impuestos"
809
-
810
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
811
- msgid "Total ex. VAT"
812
- msgstr "Total sin IVA"
813
-
814
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
815
- msgid "Total"
816
- msgstr "Total"
817
-
818
- #. translators: 1. credit note title, 2. refund id
819
- #: includes/documents/abstract-wcpdf-order-document.php:336
820
- msgid "%1$s (refund #%2$s) was regenerated."
821
- msgstr "La %s (reembolso #%s) se ha regenerado."
822
-
823
- #. translators: 1. credit note title, 2. refund id
824
- #: includes/documents/abstract-wcpdf-order-document.php:336
825
- msgid "%s was regenerated"
826
- msgstr "%s se regeneró"
827
-
828
- #. translators: %s: document name
829
- #: includes/documents/abstract-wcpdf-order-document.php:422
830
- msgid "%s Number:"
831
- msgstr ""
832
-
833
- #. translators: %s: document name
834
- #: includes/documents/abstract-wcpdf-order-document.php:428
835
- msgid "%s Date:"
836
- msgstr ""
837
-
838
- #: includes/documents/abstract-wcpdf-order-document.php:891
839
- msgid "Admin email"
840
- msgstr "Correo electrónico de administrador"
841
-
842
- #: includes/documents/abstract-wcpdf-order-document.php:894
843
- msgid "Manual email"
844
- msgstr "Correo electrónico manual"
845
-
846
- #: includes/documents/class-wcpdf-invoice.php:32
847
- #: includes/documents/class-wcpdf-invoice.php:56
848
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
849
- msgid "Invoice"
850
- msgstr "Factura"
851
-
852
- #: includes/documents/class-wcpdf-invoice.php:131
853
- msgid "invoice"
854
- msgid_plural "invoices"
855
- msgstr[0] "factura"
856
- msgstr[1] "facturas"
857
-
858
- #: includes/documents/class-wcpdf-invoice.php:186
859
- #: includes/documents/class-wcpdf-packing-slip.php:88
860
- msgid "Enable"
861
- msgstr "Activar"
862
-
863
- #: includes/documents/class-wcpdf-invoice.php:197
864
- msgid "Attach to:"
865
- msgstr "Adjuntar a:"
866
-
867
- #. translators: directory path
868
- #: includes/documents/class-wcpdf-invoice.php:205
869
- msgid ""
870
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
871
- "permissions for this folder! Without having write access to this folder, the "
872
- "plugin will not be able to email invoices."
873
- msgstr ""
874
- "Parece que la carpeta temporal (<code>%s</code>) no es modificable, "
875
- "¡comprueba los permisos de esta carpeta! Sin acceso de escritura a esta "
876
- "carpeta el plugin no será capaz de enviar facturas por correo electrónico."
877
-
878
- #: includes/documents/class-wcpdf-invoice.php:211
879
- msgid "Disable for:"
880
- msgstr "Desactivar para:"
881
-
882
- #: includes/documents/class-wcpdf-invoice.php:220
883
- msgid "Select one or more statuses"
884
- msgstr "Selecciona uno o más estados"
885
-
886
- #: includes/documents/class-wcpdf-invoice.php:226
887
- #: includes/views/setup-wizard/display-options.php:17
888
- msgid "Display shipping address"
889
- msgstr "Mostrar dirección de envío"
890
-
891
- #: includes/documents/class-wcpdf-invoice.php:233
892
- #: includes/documents/class-wcpdf-invoice.php:285
893
- #: includes/documents/class-wcpdf-invoice.php:301
894
- #: includes/documents/class-wcpdf-packing-slip.php:106
895
- msgid "No"
896
- msgstr "No"
897
-
898
- #: includes/documents/class-wcpdf-invoice.php:234
899
- msgid "Only when different from billing address"
900
- msgstr "Solo cuando sea diferente de la dirección de facturación"
901
-
902
- #: includes/documents/class-wcpdf-invoice.php:235
903
- #: includes/documents/class-wcpdf-invoice.php:378
904
- #: includes/documents/class-wcpdf-packing-slip.php:108
905
- msgid "Always"
906
- msgstr "Siempre"
907
-
908
- #: includes/documents/class-wcpdf-invoice.php:243
909
- #: includes/documents/class-wcpdf-packing-slip.php:116
910
- #: includes/views/setup-wizard/display-options.php:26
911
- msgid "Display email address"
912
- msgstr "Mostrar dirección de correo eletrónico"
913
-
914
- #: includes/documents/class-wcpdf-invoice.php:254
915
- #: includes/documents/class-wcpdf-packing-slip.php:127
916
- #: includes/views/setup-wizard/display-options.php:35
917
- msgid "Display phone number"
918
- msgstr "Mostrar número de teléfono"
919
-
920
- #: includes/documents/class-wcpdf-invoice.php:265
921
- #: includes/documents/class-wcpdf-packing-slip.php:138
922
- msgid "Display customer notes"
923
- msgstr "Mostrar notas del cliente"
924
-
925
- #: includes/documents/class-wcpdf-invoice.php:278
926
- #: includes/views/setup-wizard/display-options.php:44
927
- msgid "Display invoice date"
928
- msgstr "Mostrar la fecha de factura"
929
-
930
- #: includes/documents/class-wcpdf-invoice.php:287
931
- msgid "Order Date"
932
- msgstr "Fecha del pedido"
933
-
934
- #: includes/documents/class-wcpdf-invoice.php:294
935
- #: includes/views/setup-wizard/display-options.php:53
936
- msgid "Display invoice number"
937
- msgstr "Mostrar número de factura"
938
-
939
- #: includes/documents/class-wcpdf-invoice.php:303
940
- msgid "Order Number"
941
- msgstr "Número de pedido"
942
-
943
- #: includes/documents/class-wcpdf-invoice.php:307
944
- msgid "Warning!"
945
- msgstr "¡Advertencia!"
946
-
947
- #: includes/documents/class-wcpdf-invoice.php:308
948
- msgid ""
949
- "Using the Order Number as invoice number is not recommended as this may lead "
950
- "to gaps in the invoice number sequence (even when order numbers are "
951
- "sequential)."
952
- msgstr ""
953
- "No se recomienda usar el número de pedido como número de factura, ya que "
954
- "esto puede generar lagunas en la secuencia de los números de factura "
955
- "(incluso cuando los números de pedido son secuenciales)."
956
-
957
- #: includes/documents/class-wcpdf-invoice.php:309
958
- msgid "More information"
959
- msgstr "Más información"
960
-
961
- #: includes/documents/class-wcpdf-invoice.php:316
962
- msgid "Next invoice number (without prefix/suffix etc.)"
963
- msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
964
-
965
- #: includes/documents/class-wcpdf-invoice.php:322
966
- msgid ""
967
- "This is the number that will be used for the next document. By default, "
968
- "numbering starts from 1 and increases for every new document. Note that if "
969
- "you override this and set it lower than the current/highest number, this "
970
- "could create duplicate numbers!"
971
- msgstr ""
972
- "Este es el número que se usará en el siguiente documento. Por defecto, la "
973
- "numeración comienza desde 1 y se incrementa en cada nuevo documento. ¡Ten en "
974
- "cuenta que si omites esto y lo configuras a un número inferior que el número "
975
- "actual más alto, esto ¡creará números duplicados!"
976
-
977
- #: includes/documents/class-wcpdf-invoice.php:328
978
- msgid "Number format"
979
- msgstr "Formato de numeración"
980
-
981
- #: includes/documents/class-wcpdf-invoice.php:336
982
- msgid "Prefix"
983
- msgstr "Prefijo"
984
-
985
- #: includes/documents/class-wcpdf-invoice.php:338
986
- msgid ""
987
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
988
- "respectively"
989
- msgstr ""
990
- "para usar el año y/o el mes de la factura utiliza [invoice_year] o "
991
- "[invoice_month] respectivamente"
992
-
993
- #: includes/documents/class-wcpdf-invoice.php:341
994
- msgid "Suffix"
995
- msgstr "Sufijo"
996
-
997
- #: includes/documents/class-wcpdf-invoice.php:346
998
- msgid "Padding"
999
- msgstr "Relleno"
1000
-
1001
- #: includes/documents/class-wcpdf-invoice.php:349
1002
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
1003
- msgstr ""
1004
- "introduce aquí el número de dígitos - introduce «6» para mostrar 42 como "
1005
- "000042"
1006
-
1007
- #: includes/documents/class-wcpdf-invoice.php:352
1008
- msgid ""
1009
- "note: if you have already created a custom invoice number format with a "
1010
- "filter, the above settings will be ignored"
1011
- msgstr ""
1012
- "Nota: si ya has creado un formato personalizado de numeración de facturas "
1013
- "con un filtro, los ajustes anteriores se ignorarán"
1014
-
1015
- #: includes/documents/class-wcpdf-invoice.php:358
1016
- msgid "Reset invoice number yearly"
1017
- msgstr "Restablecer el número de factura anualmente"
1018
-
1019
- #: includes/documents/class-wcpdf-invoice.php:369
1020
- msgid "Allow My Account invoice download"
1021
- msgstr "Permitir descarga de facturas en Mi cuenta"
1022
-
1023
- #: includes/documents/class-wcpdf-invoice.php:376
1024
- msgid "Only when an invoice is already created/emailed"
1025
- msgstr "Solo cuando ya se haya creado/enviado una factura"
1026
-
1027
- #: includes/documents/class-wcpdf-invoice.php:377
1028
- msgid "Only for specific order statuses (define below)"
1029
- msgstr "Solo para estados de pedido específicos (definir a continuación)"
1030
-
1031
- #: includes/documents/class-wcpdf-invoice.php:379
1032
- msgid "Never"
1033
- msgstr "Nunca"
1034
-
1035
- #: includes/documents/class-wcpdf-invoice.php:394
1036
- msgid "Enable invoice number column in the orders list"
1037
- msgstr "Activar la columna de número de factura en pedidos"
1038
-
1039
- #: includes/documents/class-wcpdf-invoice.php:405
1040
- msgid "Disable for free orders"
1041
- msgstr "Desactivar para pedidos gratuitos"
1042
-
1043
- #. translators: zero number
1044
- #: includes/documents/class-wcpdf-invoice.php:412
1045
- msgid "Disable document when the order total is %s"
1046
- msgstr "Desactiva el documento cuando el total del pedido sea %s"
1047
-
1048
- #: includes/documents/class-wcpdf-invoice.php:418
1049
- msgid "Always use most current settings"
1050
- msgstr "Usar siempre los ajustes más actuales"
1051
-
1052
- #: includes/documents/class-wcpdf-invoice.php:424
1053
- msgid ""
1054
- "When enabled, the document will always reflect the most current settings "
1055
- "(such as footer text, document name, etc.) rather than using historical "
1056
- "settings."
1057
- msgstr ""
1058
- "Cuando se activa el documento siempre reflejará los ajustes más recientes "
1059
- "(como el texto del pié de página, nombre del documento, etc.) en vez de usar "
1060
- "ajustes históricos."
1061
-
1062
- #: includes/documents/class-wcpdf-invoice.php:426
1063
- msgid ""
1064
- "<strong>Caution:</strong> enabling this will also mean that if you change "
1065
- "your company name or address in the future, previously generated documents "
1066
- "will also be affected."
1067
- msgstr ""
1068
- "<strong>Precaución:</strong> activar esto también implicará que si cambias "
1069
- "el nombre o dirección de empresa en un futuro también afectará a los "
1070
- "documentos generados previamente."
1071
-
1072
- #: includes/documents/class-wcpdf-invoice.php:439
1073
- msgid "Invoice numbers are created by a third-party extension."
1074
- msgstr "Los números de factura los crea una extensión de terceros."
1075
-
1076
- #. translators: link
1077
- #: includes/documents/class-wcpdf-invoice.php:442
1078
- msgid "Configure it <a href=\"%s\">here</a>."
1079
- msgstr "Configúralo <a href=\"%s\">aquí</a>."
1080
-
1081
- #: includes/documents/class-wcpdf-packing-slip.php:32
1082
- #: includes/documents/class-wcpdf-packing-slip.php:41
1083
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1084
- msgid "Packing Slip"
1085
- msgstr "Albarán"
1086
-
1087
- #: includes/documents/class-wcpdf-packing-slip.php:47
1088
- msgid "packing-slip"
1089
- msgid_plural "packing-slips"
1090
- msgstr[0] "albarán de entrega"
1091
- msgstr[1] "albaranes de entrega"
1092
-
1093
- #: includes/documents/class-wcpdf-packing-slip.php:99
1094
- msgid "Display billing address"
1095
- msgstr "Mostrar dirección de facturación"
1096
-
1097
- #: includes/documents/class-wcpdf-packing-slip.php:107
1098
- msgid "Only when different from shipping address"
1099
- msgstr "Solo cuando sea diferente de la dirección de envío"
1100
-
1101
- #: includes/documents/class-wcpdf-packing-slip.php:162
1102
- msgid "Packing Slip Number:"
1103
- msgstr ""
1104
-
1105
- #: includes/documents/class-wcpdf-packing-slip.php:170
1106
- msgid "Packing Slip Date:"
1107
- msgstr ""
1108
-
1109
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1110
- msgid "Legacy Document"
1111
- msgstr "Documento heredado"
1112
-
1113
- #: includes/legacy/class-wcpdf-legacy.php:72
1114
- msgid "Error"
1115
- msgstr "Error"
1116
-
1117
- #: includes/legacy/class-wcpdf-legacy.php:73
1118
- msgid ""
1119
- "An outdated template or action hook was used to generate the PDF. Legacy "
1120
- "mode has been activated, please try again by reloading this page."
1121
- msgstr ""
1122
- "Se ha utilizado una plantilla o gancho de acción obsoleto para generar el "
1123
- "PDF. Se ha activado el modo heredado, por favor, inténtalo de nuevo "
1124
- "recargando esta página."
1125
-
1126
- #: includes/legacy/class-wcpdf-legacy.php:76
1127
- msgid "The following function was called"
1128
- msgstr "Se llamó a la siguiente función"
1129
-
1130
- #. translators: <a> tags
1131
- #: includes/views/attachment-settings-hint.php:23
1132
- msgid ""
1133
- "It looks like you haven't setup any email attachments yet, check the "
1134
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1135
- msgstr ""
1136
- "Parece que todavía no has configurado ningún archivo adjunto de correo "
1137
- "electrónico, comprueba los ajustes en <b>%1$sDocumentos > Factura%2$s</b>"
1138
-
1139
- #: includes/views/dompdf-status.php:11
1140
- msgid "7.1+ (7.4 or higher recommended)"
1141
- msgstr "7.1 o superior (se recomienda 7.4 o superior)"
1142
-
1143
- #: includes/views/dompdf-status.php:24
1144
- msgid "Recommended, will use fallback functions"
1145
- msgstr "Recomendado, usará funciones alternativas"
1146
-
1147
- #: includes/views/dompdf-status.php:30
1148
- msgid "Required if you have images in your documents"
1149
- msgstr "Necesario si tienes imágenes en tus documentos"
1150
-
1151
- #: includes/views/dompdf-status.php:39
1152
- msgid "To compress PDF documents"
1153
- msgstr "Para comprimir documentos PDF"
1154
-
1155
- #: includes/views/dompdf-status.php:42
1156
- msgid "Recommended to compress PDF documents"
1157
- msgstr "Recomendado para comprimir documentos PDF"
1158
-
1159
- #: includes/views/dompdf-status.php:45
1160
- msgid "For better performances"
1161
- msgstr "Para mejorar el rendimiento"
1162
-
1163
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1164
- msgid "Recommended for better performances"
1165
- msgstr "Recomendado para un mejor rendimiento"
1166
-
1167
- #: includes/views/dompdf-status.php:51
1168
- msgid "Better with transparent PNG images"
1169
- msgstr "Funciona mejor con imágenes PNG transparentes"
1170
-
1171
- #: includes/views/dompdf-status.php:57
1172
- msgid ""
1173
- "Required to detect custom templates and to clear the temp folder periodically"
1174
- msgstr ""
1175
- "Se necesita para detectar las plantillas personalizadas y para limpiar la "
1176
- "carpeta temporal periódicamente"
1177
-
1178
- #: includes/views/dompdf-status.php:60
1179
- msgid "Check PHP disable_functions"
1180
- msgstr "Comprobar la directiva disable_functions de PHP"
1181
-
1182
- #. translators: <a> tags
1183
- #: includes/views/dompdf-status.php:64
1184
- msgid ""
1185
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1186
- "WordPress Memory Limit%2$s"
1187
- msgstr ""
1188
- "Recomendado: 128MB (más para configuraciones con muchos plugins<br/>Ver: "
1189
- "%1$sAumentar el límite de memoria de WordPress%2$s"
1190
-
1191
- #: includes/views/dompdf-status.php:69
1192
- msgid "Allow remote stylesheets and images"
1193
- msgstr "Permitir imágenes y hojas de estilo remotas"
1194
-
1195
- #: includes/views/dompdf-status.php:72
1196
- msgid "allow_url_fopen disabled"
1197
- msgstr "allow_url_fopen desactivada"
1198
-
1199
- #. translators: <a> tags
1200
- #: includes/views/dompdf-status.php:92
1201
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1202
- msgstr ""
1203
- "<br/>Descarga %1$sesta extensión%2$s para activar la compatibilidad con "
1204
- "versiones anteriores."
1205
-
1206
- #: includes/views/dompdf-status.php:97
1207
- msgid "System Configuration"
1208
- msgstr "Configuración del sistema"
1209
-
1210
- #: includes/views/dompdf-status.php:102
1211
- msgid "Required"
1212
- msgstr "Obligatorio"
1213
-
1214
- #: includes/views/dompdf-status.php:103
1215
- msgid "Present"
1216
- msgstr "Presente"
1217
-
1218
- #: includes/views/dompdf-status.php:142
1219
- msgid "Writable"
1220
- msgstr "Escribible"
1221
-
1222
- #: includes/views/dompdf-status.php:143
1223
- msgid "Not writable"
1224
- msgstr "No escribible"
1225
-
1226
- #: includes/views/dompdf-status.php:148
1227
- msgid "Central temporary plugin folder"
1228
- msgstr "Carpeta temporal central del plugin"
1229
-
1230
- #: includes/views/dompdf-status.php:154
1231
- msgid "Temporary attachments folder"
1232
- msgstr "Carpeta de archivos adjuntos temporales"
1233
-
1234
- #: includes/views/dompdf-status.php:160
1235
- msgid "Temporary DOMPDF folder"
1236
- msgstr "Carpeta temporal DOMPDF"
1237
-
1238
- #: includes/views/dompdf-status.php:166
1239
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1240
- msgstr ""
1241
- "Carpeta de fuentes DOMPDF (debe poder escribirse para las fuentes "
1242
- "personalizadas/remotas)"
1243
-
1244
- #: includes/views/dompdf-status.php:177
1245
- msgid "Write Permissions"
1246
- msgstr "Permisos de escritura"
1247
-
1248
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1249
- #: templates/Simple/packing-slip.php:88
1250
- msgid "Description"
1251
- msgstr "Descripción"
1252
-
1253
- #: includes/views/dompdf-status.php:181
1254
- msgid "Value"
1255
- msgstr "Valor"
1256
-
1257
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1258
- #: includes/views/dompdf-status.php:207
1259
- msgid ""
1260
- "The central temp folder is %1$s. By default, this folder is created in the "
1261
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1262
- "config.php. Alternatively, you can control the specific folder for PDF "
1263
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1264
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1265
- "by the plugin if the central temp folder is writable)."
1266
- msgstr ""
1267
- "La carpeta temporal central es %1$s. Por defecto, esta carpeta se crea en la "
1268
- "carpeta de subidas de WordPress (%2$s), que puede definirse estableciendo "
1269
- "%3$s en wp-config.php. Alternativamente, puedes controlar la carpeta "
1270
- "específica para las facturas PDF usando el filtro %4$s. Asegúrate de que "
1271
- "esta carpeta tiene permisos de escritura y de que las subcarpetas %5$s, %6$s "
1272
- "y %7$s están presentes (éstas serán creadas por el plugin si la carpeta "
1273
- "temporal central tiene permisos de escritura)."
1274
-
1275
- #. translators: directory path
1276
- #: includes/views/dompdf-status.php:220
1277
- msgid ""
1278
- "If the temporary folders were not automatically created by the plugin, "
1279
- "verify that all the font files (from %s) are copied to the fonts folder. "
1280
- "Normally, this is fully automated, but if your server has strict security "
1281
- "settings, this automated copying may have been prohibited. In that case, you "
1282
- "also need to make sure these folders get synchronized on plugin updates!"
1283
- msgstr ""
1284
- "Si las carpetas temporales no fueron creadas automáticamente por el plugin, "
1285
- "comprueba que todos los archivos de fuentes (de %s) se copien en la carpeta "
1286
- "de fuentes. Normalmente, esto es totalmente automático, pero si tu servidor "
1287
- "tiene ajustes de seguridad estrictos, esta copia automática puede haber sido "
1288
- "denegada. En ese caso, ¡también debes asegurarte de que estas carpetas se "
1289
- "sincronizan en las actualizaciones del plugin!"
1290
-
1291
- #: includes/views/setup-wizard/attach-to.php:3
1292
- msgid "Attach too..."
1293
- msgstr "Adjuntar a…"
1294
-
1295
- #: includes/views/setup-wizard/attach-to.php:4
1296
- msgid "Select to which emails you would like to attach your invoice."
1297
- msgstr "Elige a qué correos electrónicos te gustaría adjuntar tu factura."
1298
-
1299
- #: includes/views/setup-wizard/display-options.php:4
1300
- msgid "Select some additional display options for your invoice."
1301
- msgstr "Elige alguna opción adicional de visualización para tu factura."
1302
-
1303
- #: includes/views/setup-wizard/good-to-go.php:3
1304
- msgid "You are good to go!"
1305
- msgstr "¡Ya estás listo para empezar!"
1306
-
1307
- #: includes/views/setup-wizard/good-to-go.php:4
1308
- msgid "If you have any questions please have a look at our documentation:"
1309
- msgstr ""
1310
- "Si tienes alguna pregunta, por favor, echa un vistazo a nuestra "
1311
- "documentación:"
1312
-
1313
- #: includes/views/setup-wizard/good-to-go.php:5
1314
- msgid "Invoices & Packing Slips"
1315
- msgstr "Facturas y albaranes"
1316
-
1317
- #: includes/views/setup-wizard/good-to-go.php:6
1318
- msgid "Happy selling!"
1319
- msgstr "¡Buenas ventas!"
1320
-
1321
- #: includes/views/setup-wizard/logo.php:4
1322
- msgid "Set the header image that will display on your invoice."
1323
- msgstr "Establece la imagen de cabecera que se mostrará en tu factura."
1324
-
1325
- #: includes/views/setup-wizard/paper-format.php:4
1326
- msgid "Select the paper format for your invoice."
1327
- msgstr "Elige el formato adecuado para tu factura."
1328
-
1329
- #: includes/views/setup-wizard/shop-name.php:3
1330
- msgid "Enter your shop name"
1331
- msgstr "Introduce el nombre de tu tienda"
1332
-
1333
- #: includes/views/setup-wizard/shop-name.php:4
1334
- msgid ""
1335
- "Lets quickly setup your invoice. Please enter the name and address of your "
1336
- "shop in the fields on the right."
1337
- msgstr ""
1338
- "Permite la configuración rápida de tu factura. Por favor, introduce el "
1339
- "nombre y dirección de tu tienda en los campos de la derecha."
1340
-
1341
- #: includes/views/setup-wizard/show-action-buttons.php:4
1342
- msgid ""
1343
- "Would you like to display the action buttons in your WooCommerce order list? "
1344
- "The action buttons allow you to manually create a PDF."
1345
- msgstr ""
1346
- "¿Te gustaría mostrar los botones de acción en tu lista de pedidos de "
1347
- "WooCommerce? Los botones de acción te permiten crear un PDF manualmente."
1348
-
1349
- #: includes/views/setup-wizard/show-action-buttons.php:5
1350
- msgid "(You can always change this setting later via the Screen Options menu)"
1351
- msgstr ""
1352
- "(Siempre puedes cambiar este ajuste más tarde desde el menú de opciones de "
1353
- "pantalla)"
1354
-
1355
- #: includes/views/setup-wizard/show-action-buttons.php:18
1356
- msgid "Show action buttons"
1357
- msgstr "Mostrar los botones de acción"
1358
-
1359
- #: includes/views/wcpdf-extensions.php:16
1360
- msgid "Check out these premium extensions!"
1361
- msgstr "¡Echa un vistazo a estas extensiones premium!"
1362
-
1363
- #: includes/views/wcpdf-extensions.php:17
1364
- msgid "click items to read more"
1365
- msgstr "haz clic en los elementos para saber más"
1366
-
1367
- #: includes/views/wcpdf-extensions.php:22
1368
- msgid ""
1369
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1370
- "system"
1371
- msgstr ""
1372
- "Paquete premium de PDF Invoice: Todo lo que necesitas para un sistema de "
1373
- "facturas perfecto"
1374
-
1375
- #: includes/views/wcpdf-extensions.php:24
1376
- msgid ""
1377
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1378
- "premium extensions:"
1379
- msgstr ""
1380
- "Potencia WooCommerce PDF Invoices & Packing Slips con todas nuestras "
1381
- "extensiones premium:"
1382
-
1383
- #: includes/views/wcpdf-extensions.php:25
1384
- msgid "Professional features:"
1385
- msgstr "Características profesionales:"
1386
-
1387
- #: includes/views/wcpdf-extensions.php:27
1388
- #: includes/views/wcpdf-extensions.php:57
1389
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1390
- msgstr ""
1391
- "Envía por correo electrónico/imprime <b>facturas proforma y rectificativas "
1392
- "en PDF</b>"
1393
-
1394
- #: includes/views/wcpdf-extensions.php:28
1395
- #: includes/views/wcpdf-extensions.php:58
1396
- msgid ""
1397
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1398
- "packing slips, for example to a drop-shipper or a supplier."
1399
- msgstr ""
1400
- "Envía otro <b>aviso por correo electrónico</b> con (o sin) etiquetas de "
1401
- "factura/envío, por ejemplo a un proveedor o suministrador."
1402
-
1403
- #: includes/views/wcpdf-extensions.php:29
1404
- #: includes/views/wcpdf-extensions.php:59
1405
- msgid ""
1406
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1407
- "document) to the WooCommerce emails of your choice."
1408
- msgstr ""
1409
- "Adjunta <b>hasta 3 archivos estáticos</b> de tu elección (por ejemplo, un "
1410
- "documento de términos y condiciones) a los correos electrónicos de "
1411
- "WooCommerce."
1412
-
1413
- #: includes/views/wcpdf-extensions.php:30
1414
- #: includes/views/wcpdf-extensions.php:60
1415
- msgid ""
1416
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1417
- "and credit notes or utilize the main invoice numbering system"
1418
- msgstr ""
1419
- "Utiliza <b>distintos sistemas de numeración</b> y/o formatos para facturas "
1420
- "proforma y facturas rectificativas, o utiliza el sistema de numeración de "
1421
- "facturas principal"
1422
-
1423
- #: includes/views/wcpdf-extensions.php:31
1424
- #: includes/views/wcpdf-extensions.php:61
1425
- msgid ""
1426
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1427
- "additional custom fields, font sizes etc. without the need to create a "
1428
- "custom template."
1429
- msgstr ""
1430
- "<b>Personaliza</b> el formato de la <b>dirección de envío y facturación</b> "
1431
- "para incluir más campos personalizados, tamaños de fuentes, etc., sin "
1432
- "necesidad de crear una plantilla personalizada."
1433
-
1434
- #: includes/views/wcpdf-extensions.php:32
1435
- #: includes/views/wcpdf-extensions.php:62
1436
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1437
- msgstr "Utiliza el plugin en instalaciones multilingues con <b>WPML</b>"
1438
-
1439
- #: includes/views/wcpdf-extensions.php:34
1440
- #: includes/views/wcpdf-extensions.php:114
1441
- msgid "Advanced, customizable templates"
1442
- msgstr "Plantillas avanzadas, personalizables"
1443
-
1444
- #: includes/views/wcpdf-extensions.php:36
1445
- #: includes/views/wcpdf-extensions.php:117
1446
- msgid ""
1447
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1448
- "your needs with a drag & drop customizer"
1449
- msgstr ""
1450
- "Personaliza completamente el contenido de la factura (precios, impuestos, "
1451
- "miniaturas) según tus necesidades con un personalizador de arrastrar y soltar"
1452
-
1453
- #: includes/views/wcpdf-extensions.php:37
1454
- #: includes/views/wcpdf-extensions.php:118
1455
- msgid "Two extra stylish premade templates (Modern & Business)"
1456
- msgstr "Dos plantillas con estilo adicionales (moderna y negocios)"
1457
-
1458
- #: includes/views/wcpdf-extensions.php:39
1459
- #: includes/views/wcpdf-extensions.php:63
1460
- msgid "Upload automatically to dropbox"
1461
- msgstr "Subida automática a dropbox"
1462
-
1463
- #: includes/views/wcpdf-extensions.php:41
1464
- msgid ""
1465
- "This extension conveniently uploads all the invoices (and other pdf "
1466
- "documents from the professional extension) that are emailed to your "
1467
- "customers to Dropbox. The best way to keep your invoice administration up to "
1468
- "date!"
1469
- msgstr ""
1470
- "Esta extensión sube cómodamente todas las facturas (y otros documentos pdf "
1471
- "de la extensión profesional) que se envían por correo electrónico a tus "
1472
- "clientes en Dropbox. ¡El mejor modo de tener al día tu administración de "
1473
- "facturas!"
1474
-
1475
- #: includes/views/wcpdf-extensions.php:44
1476
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1477
- msgstr "Obtén el paquete de WooCommerce PDF Invoices & Packing Slips"
1478
-
1479
- #: includes/views/wcpdf-extensions.php:53
1480
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1481
- msgstr ""
1482
- "Hazte pro: ¡Facturas proforma, facturas rectificativas (=reembolsos) y más!"
1483
-
1484
- #: includes/views/wcpdf-extensions.php:55
1485
- msgid ""
1486
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1487
- "features:"
1488
- msgstr ""
1489
- "Potencia WooCommerce PDF Invoices & Packing Slips con las siguientes "
1490
- "características:"
1491
-
1492
- #: includes/views/wcpdf-extensions.php:65
1493
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1494
- msgstr "¡Obtén WooCommerce PDF Invoices & Packing Slips Professional!"
1495
-
1496
- #: includes/views/wcpdf-extensions.php:73
1497
- msgid "Automatically send payment reminders to your customers"
1498
- msgstr "Envío automático de recordatorios de pago a tus clientes"
1499
-
1500
- #: includes/views/wcpdf-extensions.php:75
1501
- msgid "WooCommerce Smart Reminder emails"
1502
- msgstr "WooCommerce Smart Reminder emails"
1503
-
1504
- #: includes/views/wcpdf-extensions.php:77
1505
- msgid "<b>Completely automatic</b> scheduled emails"
1506
- msgstr "Correos electrónicos <b>completamente automáticos</b>"
1507
-
1508
- #: includes/views/wcpdf-extensions.php:78
1509
- msgid ""
1510
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1511
- "from the order (name, order total, etc)"
1512
- msgstr ""
1513
- "<b>Editor visual</b> para el texto del correo electrónico, incluyendo los "
1514
- "marcadores de posición de los datos del pedido (nombre, total del pedido, "
1515
- "etc)"
1516
-
1517
- #: includes/views/wcpdf-extensions.php:79
1518
- msgid ""
1519
- "Configure the exact requirements for sending an email (time after order, "
1520
- "order status, payment method)"
1521
- msgstr ""
1522
- "Configura los requisitos exactos para el envío de un correo electrónico "
1523
- "(tiempo después del pedido, estado del pedido, método de pago)"
1524
-
1525
- #: includes/views/wcpdf-extensions.php:80
1526
- msgid ""
1527
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1528
- "order language."
1529
- msgstr ""
1530
- "Totalmente <b>compatible con WPML</b> – se enviarán automáticamente correos "
1531
- "electrónicos en el idioma del pedido."
1532
-
1533
- #: includes/views/wcpdf-extensions.php:81
1534
- msgid ""
1535
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1536
- "reminders, repeat purchases)"
1537
- msgstr ""
1538
- "<b>¡Súper versatil!</b> Se puede utilizar en cualquier recordatorio por "
1539
- "correo electrónico (recordatorios de valoraciones, compras repetidas)"
1540
-
1541
- #: includes/views/wcpdf-extensions.php:82
1542
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1543
- msgstr "Se integra de manera fluida con el plugin PDF Invoices & Packing Slips"
1544
-
1545
- #: includes/views/wcpdf-extensions.php:84
1546
- msgid "Get WooCommerce Smart Reminder Emails"
1547
- msgstr "Obtener WooCommerce Smart Reminder Emails"
1548
-
1549
- #: includes/views/wcpdf-extensions.php:93
1550
- msgid ""
1551
- "Automatically send new orders or packing slips to your printer, as soon as "
1552
- "the customer orders!"
1553
- msgstr ""
1554
- "Envía automáticamente los nuevos pedidos y albaranes a tu impresor, ¡en el "
1555
- "momento en que el cliente haga el pedido!"
1556
-
1557
- #: includes/views/wcpdf-extensions.php:99
1558
- msgid ""
1559
- "Check out the WooCommerce Automatic Order Printing extension from our "
1560
- "partners at Simba Hosting"
1561
- msgstr ""
1562
- "Conoce la extensión WooCommerce Automatic Order Printing de nuestros "
1563
- "colaboradores Simba Hosting"
1564
-
1565
- #: includes/views/wcpdf-extensions.php:100
1566
- msgid "WooCommerce Automatic Order Printing"
1567
- msgstr "WooCommerce Automatic Order Printing"
1568
-
1569
- #. translators: Premium Templates link
1570
- #: includes/views/wcpdf-extensions.php:120
1571
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1572
- msgstr "Conoce las plantillas premium de PDF Invoice & Packing Slips en %s."
1573
-
1574
- #. translators: email link
1575
- #: includes/views/wcpdf-extensions.php:122
1576
- msgid "For custom templates, contact us at %s."
1577
- msgstr "Para plantillas personalizadas contacta con nosotros en %s."
1578
-
1579
- #: includes/views/wcpdf-settings-page.php:9
1580
- msgid "WooCommerce PDF Invoices"
1581
- msgstr "WooCommerce PDF Invoices"
1582
-
1583
- #: includes/wcpdf-functions.php:209
1584
- msgid "Error creating PDF, please contact the site owner."
1585
- msgstr ""
1586
- "Error al crear el PDF, por favor, contacta con el propietario del sitio."
1587
-
1588
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1589
- msgid "Billing Address:"
1590
- msgstr "Dirección de facturación:"
1591
-
1592
- #: templates/Simple/invoice.php:48
1593
- msgid "Ship To:"
1594
- msgstr "Enviar a:"
1595
-
1596
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1597
- msgid "Order Number:"
1598
- msgstr "Número de pedido:"
1599
-
1600
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1601
- msgid "Order Date:"
1602
- msgstr "Fecha de pedido:"
1603
-
1604
- #: templates/Simple/invoice.php:78
1605
- msgid "Payment Method:"
1606
- msgstr "Método de pago:"
1607
-
1608
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1609
- msgid "Product"
1610
- msgstr "Producto"
1611
-
1612
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1613
- msgid "Quantity"
1614
- msgstr "Cantidad"
1615
-
1616
- #: templates/Simple/invoice.php:94
1617
- msgid "Price"
1618
- msgstr "Precio"
1619
-
1620
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1621
- msgid "SKU"
1622
- msgstr "SKU"
1623
-
1624
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1625
- msgid "SKU:"
1626
- msgstr "SKU:"
1627
-
1628
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1629
- msgid "Weight:"
1630
- msgstr "Peso:"
1631
-
1632
- #: templates/Simple/invoice.php:123
1633
- msgid "Notes"
1634
- msgstr "Notas"
1635
-
1636
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1637
- msgid "Customer Notes"
1638
- msgstr "Notas del cliente"
1639
-
1640
- #: templates/Simple/packing-slip.php:35
1641
- msgid "Shipping Address:"
1642
- msgstr "Dirección de envío:"
1643
-
1644
- #: templates/Simple/packing-slip.php:66
1645
- msgid "Shipping Method:"
1646
- msgstr "Método de envío:"
1647
-
1648
- #. translators: <a> tags
1649
- #: woocommerce-pdf-invoices-packingslips.php:271
1650
- msgid ""
1651
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1652
- "installed & activated!"
1653
- msgstr ""
1654
- "¡WooCommerce PDF Invoices & Packing Slips necesita de %1$sWooCommerce%2$s "
1655
- "instalado y activado!"
1656
-
1657
- #: woocommerce-pdf-invoices-packingslips.php:282
1658
- msgid ""
1659
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1660
- "recommended)."
1661
- msgstr ""
1662
- "WooCommerce PDF Invoices & Packing Slips necesita PHP 7.1 (se recomienda 7.4 "
1663
- "o superior)."
1664
-
1665
- #. translators: <a> tags
1666
- #: woocommerce-pdf-invoices-packingslips.php:284
1667
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1668
- msgstr "Recomendamos encarecidamente %1$sactualizar tu versión de PHP%2$s."
1669
-
1670
- #. translators: <a> tags
1671
- #: woocommerce-pdf-invoices-packingslips.php:286
1672
- msgid ""
1673
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1674
- "to enable backwards compatibility with PHP5.6."
1675
- msgstr ""
1676
- "Si no puede actualizar tu versión de PHP, puedes descargar %1$sesta extensión"
1677
- "%2$s para permitir la compatibilidad con PHP5.6."
1678
-
1679
- #. translators: directory path
1680
- #: woocommerce-pdf-invoices-packingslips.php:374
1681
- msgid ""
1682
- "The PDF files in %s are not currently protected due to your site running on "
1683
- "<strong>NGINX</strong>."
1684
- msgstr ""
1685
- "Los archivos PDF en %s no están actualmente protegidos debido a que tu sitio "
1686
- "funciona con <strong>NGINX</strong>."
1687
-
1688
- #: woocommerce-pdf-invoices-packingslips.php:375
1689
- msgid "To protect them, you must click the button below."
1690
- msgstr "Para protegerlos debes hacer clic en el siguiente botón."
1691
-
1692
- #. translators: plugin name
1693
- #: woocommerce-pdf-invoices-packingslips.php:419
1694
- msgid ""
1695
- "When sending emails with MailPoet 3 and the active sending method is "
1696
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1697
- "the emails."
1698
- msgstr ""
1699
- "Al enviar correos electrónicos con MailPoet 3 y si el método de envío activo "
1700
- "es el servicio de envío de MailPoet, MailPoet no incluye los adjuntos de %s "
1701
- "en los correos electrónicos."
1702
-
1703
- #. translators: "Your web host / web server"
1704
- #: woocommerce-pdf-invoices-packingslips.php:421
1705
- msgid "To fix this you should select other method like %1$s or %2$s."
1706
- msgstr "Para solucionarlo debes seleccionar otro método como %1$s o %2$s."
1707
-
1708
- #. translators: "Your web host / web server"
1709
- #: woocommerce-pdf-invoices-packingslips.php:421
1710
- msgid "Your web host / web server"
1711
- msgstr "Tu servidor/host web"
1712
-
1713
- #: woocommerce-pdf-invoices-packingslips.php:422
1714
- msgid "Change MailPoet sending method"
1715
- msgstr "Cambiar método de envío de MailPoet"
1716
-
1717
- #~ msgid "An error ocurred while saving the document data!"
1718
- #~ msgstr "¡Se ha producido un error al guardar los datos del documento!"
1719
-
1720
- #~ msgid "An error ocurred while regenerating the document!"
1721
- #~ msgstr "¡Se ha producido un error al regenerar el documento!"
1722
-
1723
- #~ msgid "An error ocurred while deleting the document!"
1724
- #~ msgstr "¡Se ha producido un error al borrar el documento!"
1725
-
1726
- #~ msgid "(includes %s)"
1727
- #~ msgstr "(incluye %s)"
1728
-
1729
- #~ msgid "WooCommerce"
1730
- #~ msgstr "WooCommerce"
1731
-
1732
- #~ msgid "(Includes %s)"
1733
- #~ msgstr "(incluye %s)"
1734
-
1735
- #~ msgid "m"
1736
- #~ msgstr "m"
1737
-
1738
- #~ msgid "h"
1739
- #~ msgstr "h"
1740
-
1741
- #~ msgid "Settings"
1742
- #~ msgstr "Ajustes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-et.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-et.po CHANGED
@@ -1,1706 +1,1592 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:19+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
- "Language: et\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 3.0\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #. Plugin Name of the plugin
22
- msgid "WooCommerce PDF Invoices & Packing Slips"
23
- msgstr "WooCommerce PDF Invoices & Packing Slips"
24
-
25
- #. Plugin URI of the plugin
26
- #. Author URI of the plugin
27
- msgid "http://www.wpovernight.com"
28
- msgstr "http://www.wpovernight.com"
29
-
30
- #. Description of the plugin
31
- msgid ""
32
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
- msgstr ""
34
-
35
- #. Author of the plugin
36
- msgid "Ewout Fernhout"
37
- msgstr "Ewout Fernhout"
38
-
39
- #. translators: rounded count
40
- #: includes/class-wcpdf-admin.php:92
41
- msgid "Wow, you have created more than %d invoices with our plugin!"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:93
45
- msgid ""
46
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
- "rating. Help us spread the word and boost our motivation!"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:95
51
- msgid "Yes you deserve it!"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
- #: includes/views/attachment-settings-hint.php:24
56
- #: includes/views/wcpdf-extensions.php:131
57
- #: woocommerce-pdf-invoices-packingslips.php:377
58
- #: woocommerce-pdf-invoices-packingslips.php:423
59
- msgid "Hide this message"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-admin.php:96
63
- msgid "Already did!"
64
- msgstr ""
65
-
66
- #: includes/class-wcpdf-admin.php:97
67
- msgid "Actually, I have a complaint..."
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:132
71
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:132
75
- msgid "Jumpstart the plugin by following our wizard!"
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:133
79
- msgid "Run the Setup Wizard"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:133
83
- msgid "I am the wizard"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
- #: includes/documents/class-wcpdf-invoice.php:302
88
- msgid "Invoice Number"
89
- msgstr "Arve number"
90
-
91
- #: includes/class-wcpdf-admin.php:261
92
- msgid "Send order email"
93
- msgstr ""
94
-
95
- #: includes/class-wcpdf-admin.php:272
96
- msgid "Create PDF"
97
- msgstr "Loo PDF"
98
-
99
- #: includes/class-wcpdf-admin.php:282
100
- msgid "PDF document data"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:304
104
- msgid "Choose an email to send&hellip;"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-admin.php:320
108
- msgid "Save order & send email"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:322
112
- msgid "Send email"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:378
116
- #: includes/documents/class-wcpdf-invoice.php:460
117
- msgid "Invoice Number:"
118
- msgstr "Arve number:"
119
-
120
- #: includes/class-wcpdf-admin.php:381
121
- #: includes/documents/class-wcpdf-invoice.php:468
122
- msgid "Invoice Date:"
123
- msgstr "Arve kuupäev:"
124
-
125
- #: includes/class-wcpdf-admin.php:384
126
- msgid "Notes (printed in the invoice):"
127
- msgstr ""
128
-
129
- #. translators: document title
130
- #: includes/class-wcpdf-admin.php:469
131
- msgid "Set %s number & date"
132
- msgstr ""
133
-
134
- #: includes/class-wcpdf-admin.php:478
135
- msgid "unformatted!"
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-admin.php:518
139
- msgid "Save changes"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:519
143
- msgid "Cancel"
144
- msgstr ""
145
-
146
- #. translators: name/description of the context for document creation logs
147
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
- msgid "order details (number and/or date set manually)"
149
- msgstr ""
150
-
151
- #. translators: %s: email title
152
- #: includes/class-wcpdf-admin.php:647
153
- msgid "%s email notification manually sent."
154
- msgstr ""
155
-
156
- #: includes/class-wcpdf-admin.php:734
157
- msgid "Nonce expired!"
158
- msgstr ""
159
-
160
- #: includes/class-wcpdf-admin.php:740
161
- msgid "Bad action!"
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:746
165
- msgid "Incomplete request!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:752
169
- msgid "No permissions!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:776
173
- msgid "Document data saved!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:777
177
- msgid "An error occurred while saving the document data!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:780
181
- msgid "Document regenerated!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:781
185
- msgid "An error occurred while regenerating the document!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:784
189
- msgid "Document deleted!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:785
193
- msgid "An error occurred while deleting the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:841
197
- msgid "Document does not exist."
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:850
201
- msgid "Document is empty."
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:881
205
- msgid "DEBUG output enabled"
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-assets.php:91
209
- msgid "Are you sure you want to delete this document? This cannot be undone."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-assets.php:92
213
- msgid ""
214
- "Are you sure you want to regenerate this document? This will make the "
215
- "document reflect the most current settings (such as footer text, document "
216
- "name, etc.) rather than using historical settings."
217
- msgstr ""
218
-
219
- #: includes/class-wcpdf-frontend.php:126
220
- msgid "Download invoice (PDF)"
221
- msgstr "Lae arve alla (PDF)"
222
-
223
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
224
- #: includes/class-wcpdf-main.php:338
225
- msgid "You do not have sufficient permissions to access this page."
226
- msgstr "Sul ei ole selle lehe vaatamiseks piisavalt õigusi."
227
-
228
- #: includes/class-wcpdf-main.php:275
229
- msgid "You haven't selected any orders"
230
- msgstr ""
231
-
232
- #: includes/class-wcpdf-main.php:279
233
- msgid "Some of the export parameters are missing."
234
- msgstr "Mõned eksportimise parameetrid on puudu."
235
-
236
- #. translators: document type
237
- #: includes/class-wcpdf-main.php:379
238
- msgid "Document of type '%s' for the selected order(s) could not be generated"
239
- msgstr ""
240
-
241
- #. translators: 1. plugin name, 2. directory path
242
- #: includes/class-wcpdf-main.php:591
243
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
- msgstr ""
245
-
246
- #: includes/class-wcpdf-main.php:592
247
- msgid ""
248
- "Please check your directories write permissions or contact your hosting "
249
- "service provider."
250
- msgstr ""
251
-
252
- #: includes/class-wcpdf-main.php:907
253
- #: includes/documents/class-wcpdf-invoice.php:286
254
- msgid "Invoice Date"
255
- msgstr ""
256
-
257
- #. translators: name/description of the context for document creation logs
258
- #: includes/class-wcpdf-main.php:937
259
- msgid "bulk order action"
260
- msgstr ""
261
-
262
- #. translators: name/description of the context for document creation logs
263
- #: includes/class-wcpdf-main.php:945
264
- msgid "single order action"
265
- msgstr ""
266
-
267
- #. translators: name/description of the context for document creation logs
268
- #: includes/class-wcpdf-main.php:953
269
- msgid "my account"
270
- msgstr ""
271
-
272
- #. translators: name/description of the context for document creation logs
273
- #: includes/class-wcpdf-main.php:961
274
- msgid "email attachment"
275
- msgstr ""
276
-
277
- #. translators: 1. document title, 2. creation source
278
- #: includes/class-wcpdf-main.php:970
279
- msgid "PDF %1$s created via %2$s."
280
- msgstr ""
281
-
282
- #. translators: document title
283
- #: includes/class-wcpdf-main.php:1006
284
- msgid "Order %s Saved"
285
- msgstr ""
286
-
287
- #: includes/class-wcpdf-settings-callbacks.php:27
288
- msgid ""
289
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
- "Do not use them on a live website!"
291
- msgstr ""
292
- "<b>Hoiatus!</b> Allolevad sätted on mõeldud ainult veaotsinguks/arenduseks. "
293
- "Ära kasuta neid rakenduskeskkonnas!"
294
-
295
- #: includes/class-wcpdf-settings-callbacks.php:36
296
- msgid ""
297
- "These are used for the (optional) footer columns in the <em>Modern "
298
- "(Premium)</em> template, but can also be used for other elements in your "
299
- "custom template"
300
- msgstr ""
301
- "Neid kasutatakse <em>Modern (Preemium)</em> mallis (valikuliste) "
302
- "jalusetulpade jaoks, kuid on kasutatavad ka muude elementide jaoks sinu "
303
- "kohandatud mallis."
304
-
305
- #: includes/class-wcpdf-settings-callbacks.php:383
306
- msgid "Image resolution"
307
- msgstr "Pildi resolutsioon"
308
-
309
- #: includes/class-wcpdf-settings-callbacks.php:410
310
- msgid "Save"
311
- msgstr ""
312
-
313
- #: includes/class-wcpdf-settings-debug.php:45
314
- #: woocommerce-pdf-invoices-packingslips.php:376
315
- msgid "Generate random temporary folder name"
316
- msgstr ""
317
-
318
- #. translators: directory path
319
- #: includes/class-wcpdf-settings-debug.php:58
320
- msgid "Temporary folder moved to %s"
321
- msgstr ""
322
-
323
- #: includes/class-wcpdf-settings-debug.php:68
324
- msgid "Reinstall fonts"
325
- msgstr ""
326
-
327
- #: includes/class-wcpdf-settings-debug.php:89
328
- msgid "Fonts reinstalled!"
329
- msgstr ""
330
-
331
- #: includes/class-wcpdf-settings-debug.php:98
332
- msgid "Remove temporary files"
333
- msgstr ""
334
-
335
- #: includes/class-wcpdf-settings-debug.php:109
336
- msgid "Unable to read temporary folder contents!"
337
- msgstr ""
338
-
339
- #. translators: 1,2. file count
340
- #: includes/class-wcpdf-settings-debug.php:127
341
- msgid "Unable to delete %1$d files! (deleted %2$d)"
342
- msgstr ""
343
-
344
- #. translators: file count
345
- #: includes/class-wcpdf-settings-debug.php:131
346
- msgid "Successfully deleted %d files!"
347
- msgstr ""
348
-
349
- #: includes/class-wcpdf-settings-debug.php:135
350
- msgid "Nothing to delete!"
351
- msgstr ""
352
-
353
- #: includes/class-wcpdf-settings-debug.php:146
354
- msgid "Delete legacy (1.X) settings"
355
- msgstr ""
356
-
357
- #: includes/class-wcpdf-settings-debug.php:162
358
- msgid "Legacy settings deleted!"
359
- msgstr ""
360
-
361
- #: includes/class-wcpdf-settings-debug.php:192
362
- msgid "Debug settings"
363
- msgstr "Veaotsingu sätted"
364
-
365
- #: includes/class-wcpdf-settings-debug.php:198
366
- msgid "Legacy mode"
367
- msgstr ""
368
-
369
- #: includes/class-wcpdf-settings-debug.php:204
370
- msgid ""
371
- "Legacy mode ensures compatibility with templates and filters from previous "
372
- "versions."
373
- msgstr ""
374
-
375
- #: includes/class-wcpdf-settings-debug.php:210
376
- msgid "Legacy textdomain fallback"
377
- msgstr ""
378
-
379
- #: includes/class-wcpdf-settings-debug.php:216
380
- msgid ""
381
- "Legacy textdomain fallback ensures compatibility with translation files from "
382
- "versions prior to 2017-05-15."
383
- msgstr ""
384
-
385
- #: includes/class-wcpdf-settings-debug.php:222
386
- msgid "Allow guest access"
387
- msgstr ""
388
-
389
- #: includes/class-wcpdf-settings-debug.php:228
390
- msgid ""
391
- "Enable this to allow customers that purchase without an account to access "
392
- "their PDF with a unique key"
393
- msgstr ""
394
-
395
- #: includes/class-wcpdf-settings-debug.php:234
396
- msgid "Calculate document numbers (slow)"
397
- msgstr ""
398
-
399
- #: includes/class-wcpdf-settings-debug.php:240
400
- msgid ""
401
- "Document numbers (such as invoice numbers) are generated using "
402
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
403
- "with more than 1."
404
- msgstr ""
405
-
406
- #: includes/class-wcpdf-settings-debug.php:246
407
- msgid "Enable debug output"
408
- msgstr "Lülita sisse veaotsingu väljund"
409
-
410
- #: includes/class-wcpdf-settings-debug.php:252
411
- msgid ""
412
- "Enable this option to output plugin errors if you're getting a blank page or "
413
- "other PDF generation issues"
414
- msgstr ""
415
- "Lülita see valik sisse, et väljastada plugina veateateid, kui näed tühja "
416
- "lehte või PDF genereerimisel esineb mõni muu probleem"
417
-
418
- #: includes/class-wcpdf-settings-debug.php:253
419
- msgid ""
420
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
421
- "places on your site too, therefor this is not recommended to leave it "
422
- "enabled on live sites."
423
- msgstr ""
424
-
425
- #: includes/class-wcpdf-settings-debug.php:254
426
- msgid ""
427
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
428
- "order basis."
429
- msgstr ""
430
-
431
- #: includes/class-wcpdf-settings-debug.php:260
432
- msgid "Enable automatic cleanup"
433
- msgstr ""
434
-
435
- #. translators: number of days
436
- #: includes/class-wcpdf-settings-debug.php:268
437
- msgid "every %s days"
438
- msgstr ""
439
-
440
- #: includes/class-wcpdf-settings-debug.php:273
441
- msgid ""
442
- "Automatically clean up PDF files stored in the temporary folder (used for "
443
- "email attachments)"
444
- msgstr ""
445
-
446
- #: includes/class-wcpdf-settings-debug.php:274
447
- msgid ""
448
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
449
- "automatic cleanup but not enabled on your server."
450
- msgstr ""
451
-
452
- #: includes/class-wcpdf-settings-debug.php:280
453
- msgid "Output to HTML"
454
- msgstr "Väljasta HTML kujul"
455
-
456
- #: includes/class-wcpdf-settings-debug.php:286
457
- msgid ""
458
- "Send the template output as HTML to the browser instead of creating a PDF."
459
- msgstr ""
460
- "PDF faili loomise asemel saada malli väljund HTML kujul veebilehitsejasse."
461
-
462
- #: includes/class-wcpdf-settings-debug.php:287
463
- msgid ""
464
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
465
- "order basis."
466
- msgstr ""
467
-
468
- #: includes/class-wcpdf-settings-debug.php:293
469
- msgid "Use alternative HTML5 parser to parse HTML"
470
- msgstr ""
471
-
472
- #: includes/class-wcpdf-settings-debug.php:304
473
- msgid "Log to order notes"
474
- msgstr ""
475
-
476
- #: includes/class-wcpdf-settings-debug.php:310
477
- msgid "Log PDF document creation to order notes."
478
- msgstr ""
479
-
480
- #: includes/class-wcpdf-settings-documents.php:30
481
- #: includes/class-wcpdf-settings.php:97
482
- msgid "Documents"
483
- msgstr ""
484
-
485
- #: includes/class-wcpdf-settings-documents.php:36
486
- #: includes/class-wcpdf-settings-documents.php:57
487
- msgid "untitled"
488
- msgstr ""
489
-
490
- #: includes/class-wcpdf-settings-documents.php:50
491
- msgid ""
492
- "All available documents are listed below. Click on a document to configure "
493
- "it."
494
- msgstr ""
495
-
496
- #: includes/class-wcpdf-settings-general.php:40
497
- msgid "General settings"
498
- msgstr "Üldised sätted"
499
-
500
- #: includes/class-wcpdf-settings-general.php:46
501
- msgid "How do you want to view the PDF?"
502
- msgstr "Kuidas sa soovid PDF-i vaadata?"
503
-
504
- #: includes/class-wcpdf-settings-general.php:53
505
- msgid "Download the PDF"
506
- msgstr "Lae PDF alla"
507
-
508
- #: includes/class-wcpdf-settings-general.php:54
509
- msgid "Open the PDF in a new browser tab/window"
510
- msgstr "Ava PDF uues veebilehitseja sakis/aknas"
511
-
512
- #: includes/class-wcpdf-settings-general.php:61
513
- msgid "Choose a template"
514
- msgstr "Vali mall"
515
-
516
- #. translators: 1,2. template paths
517
- #: includes/class-wcpdf-settings-general.php:69
518
- msgid ""
519
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
520
- "your (child) theme in <code>%2$s</code> to customize them"
521
- msgstr ""
522
-
523
- #: includes/class-wcpdf-settings-general.php:75
524
- msgid "Paper size"
525
- msgstr "Paberi suurus"
526
-
527
- #: includes/class-wcpdf-settings-general.php:82
528
- #: includes/views/setup-wizard/paper-format.php:12
529
- msgid "A4"
530
- msgstr "A4"
531
-
532
- #: includes/class-wcpdf-settings-general.php:83
533
- #: includes/views/setup-wizard/paper-format.php:13
534
- msgid "Letter"
535
- msgstr "Ümbrik"
536
-
537
- #: includes/class-wcpdf-settings-general.php:90
538
- msgid "Test mode"
539
- msgstr ""
540
-
541
- #: includes/class-wcpdf-settings-general.php:96
542
- msgid ""
543
- "With test mode enabled, any document generated will always use the latest "
544
- "settings, rather than using the settings as configured at the time the "
545
- "document was first created."
546
- msgstr ""
547
-
548
- #: includes/class-wcpdf-settings-general.php:96
549
- msgid ""
550
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
551
- "setting and will still be generated."
552
- msgstr ""
553
-
554
- #: includes/class-wcpdf-settings-general.php:102
555
- msgid "Extended currency symbol support"
556
- msgstr ""
557
-
558
- #: includes/class-wcpdf-settings-general.php:108
559
- msgid "Enable this if your currency symbol is not displaying properly"
560
- msgstr ""
561
-
562
- #: includes/class-wcpdf-settings-general.php:114
563
- msgid "Enable font subsetting"
564
- msgstr ""
565
-
566
- #: includes/class-wcpdf-settings-general.php:120
567
- msgid ""
568
- "Font subsetting can reduce file size by only including the characters that "
569
- "are used in the PDF, but limits the ability to edit PDF files later. "
570
- "Recommended if you're using an Asian font."
571
- msgstr ""
572
-
573
- #: includes/class-wcpdf-settings-general.php:126
574
- msgid "Shop header/logo"
575
- msgstr "Poe päis/logo"
576
-
577
- #: includes/class-wcpdf-settings-general.php:132
578
- #: includes/views/setup-wizard/logo.php:20
579
- msgid "Select or upload your invoice header/logo"
580
- msgstr "Vali või lae üles oma arve päis/logo"
581
-
582
- #: includes/class-wcpdf-settings-general.php:133
583
- #: includes/views/setup-wizard/logo.php:20
584
- msgid "Set image"
585
- msgstr "Määra pilt"
586
-
587
- #: includes/class-wcpdf-settings-general.php:134
588
- #: includes/views/setup-wizard/logo.php:20
589
- msgid "Remove image"
590
- msgstr "Eemalda pilt"
591
-
592
- #: includes/class-wcpdf-settings-general.php:141
593
- msgid "Logo height"
594
- msgstr ""
595
-
596
- #: includes/class-wcpdf-settings-general.php:149
597
- msgid ""
598
- "Enter the total height of the logo in mm, cm or in and use a dot for "
599
- "decimals.<br/>For example: 1.15in or 40mm"
600
- msgstr ""
601
-
602
- #: includes/class-wcpdf-settings-general.php:155
603
- #: includes/class-wcpdf-setup-wizard.php:47
604
- msgid "Shop Name"
605
- msgstr "Poe nimi"
606
-
607
- #: includes/class-wcpdf-settings-general.php:168
608
- msgid "Shop Address"
609
- msgstr "Poe aadress"
610
-
611
- #: includes/class-wcpdf-settings-general.php:183
612
- msgid "Footer: terms & conditions, policies, etc."
613
- msgstr "Jalus: tingimused, poliisid jne"
614
-
615
- #: includes/class-wcpdf-settings-general.php:198
616
- msgid "Extra template fields"
617
- msgstr "Malli lisaväljad"
618
-
619
- #: includes/class-wcpdf-settings-general.php:204
620
- msgid "Extra field 1"
621
- msgstr "Lisaväli 1"
622
-
623
- #: includes/class-wcpdf-settings-general.php:212
624
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
625
- msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 1"
626
-
627
- #: includes/class-wcpdf-settings-general.php:219
628
- msgid "Extra field 2"
629
- msgstr "Lisaväli 2"
630
-
631
- #: includes/class-wcpdf-settings-general.php:227
632
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
633
- msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 2"
634
-
635
- #: includes/class-wcpdf-settings-general.php:234
636
- msgid "Extra field 3"
637
- msgstr "Lisaväli 3"
638
-
639
- #: includes/class-wcpdf-settings-general.php:242
640
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
641
- msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 3"
642
-
643
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
644
- msgid "PDF Invoices"
645
- msgstr "PDF Arved"
646
-
647
- #: includes/class-wcpdf-settings.php:74
648
- msgid "Documentation"
649
- msgstr ""
650
-
651
- #: includes/class-wcpdf-settings.php:75
652
- msgid "Support Forum"
653
- msgstr ""
654
-
655
- #. translators: database row value
656
- #: includes/class-wcpdf-settings.php:88
657
- msgid ""
658
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
659
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
660
- "document numbers (slow)' setting in the Status tab to use an alternate "
661
- "method."
662
- msgstr ""
663
-
664
- #: includes/class-wcpdf-settings.php:96
665
- msgid "General"
666
- msgstr "Üldine"
667
-
668
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
669
- msgid "Status"
670
- msgstr "Staatus"
671
-
672
- #: includes/class-wcpdf-setup-wizard.php:51
673
- #: includes/views/setup-wizard/logo.php:3
674
- msgid "Your logo"
675
- msgstr ""
676
-
677
- #: includes/class-wcpdf-setup-wizard.php:55
678
- msgid "Attachments"
679
- msgstr ""
680
-
681
- #: includes/class-wcpdf-setup-wizard.php:59
682
- #: includes/views/setup-wizard/display-options.php:3
683
- msgid "Display options"
684
- msgstr ""
685
-
686
- #: includes/class-wcpdf-setup-wizard.php:63
687
- #: includes/views/setup-wizard/paper-format.php:3
688
- msgid "Paper format"
689
- msgstr ""
690
-
691
- #: includes/class-wcpdf-setup-wizard.php:67
692
- #: includes/views/setup-wizard/show-action-buttons.php:3
693
- msgid "Action buttons"
694
- msgstr ""
695
-
696
- #: includes/class-wcpdf-setup-wizard.php:71
697
- msgid "Ready!"
698
- msgstr ""
699
-
700
- #: includes/class-wcpdf-setup-wizard.php:133
701
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
702
- msgstr ""
703
-
704
- #: includes/class-wcpdf-setup-wizard.php:185
705
- msgid "Previous"
706
- msgstr ""
707
-
708
- #: includes/class-wcpdf-setup-wizard.php:190
709
- msgid "Next"
710
- msgstr ""
711
-
712
- #: includes/class-wcpdf-setup-wizard.php:191
713
- msgid "Skip this step"
714
- msgstr ""
715
-
716
- #: includes/class-wcpdf-setup-wizard.php:193
717
- msgid "Finish"
718
- msgstr ""
719
-
720
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
721
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
722
- msgid "N/A"
723
- msgstr "N/A"
724
-
725
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
726
- msgid "Payment method"
727
- msgstr "Makseviis"
728
-
729
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
730
- msgid "Shipping method"
731
- msgstr "Tarneviis"
732
-
733
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
734
- msgid "Subtotal"
735
- msgstr "Vahesumma"
736
-
737
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
738
- msgid "Shipping"
739
- msgstr "Tarne"
740
-
741
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
742
- msgid "Discount"
743
- msgstr "Allahindlus"
744
-
745
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
746
- msgid "VAT"
747
- msgstr "KM"
748
-
749
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
750
- msgid "Tax rate"
751
- msgstr "Maksumäär"
752
-
753
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
754
- msgid "Total ex. VAT"
755
- msgstr "Summa ilma KM-ta"
756
-
757
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
758
- msgid "Total"
759
- msgstr "Kogusumma"
760
-
761
- #. translators: 1. credit note title, 2. refund id
762
- #: includes/documents/abstract-wcpdf-order-document.php:336
763
- msgid "%1$s (refund #%2$s) was regenerated."
764
- msgstr ""
765
-
766
- #. translators: 1. credit note title, 2. refund id
767
- #: includes/documents/abstract-wcpdf-order-document.php:336
768
- msgid "%s was regenerated"
769
- msgstr ""
770
-
771
- #. translators: %s: document name
772
- #: includes/documents/abstract-wcpdf-order-document.php:422
773
- msgid "%s Number:"
774
- msgstr ""
775
-
776
- #. translators: %s: document name
777
- #: includes/documents/abstract-wcpdf-order-document.php:428
778
- msgid "%s Date:"
779
- msgstr ""
780
-
781
- #: includes/documents/abstract-wcpdf-order-document.php:891
782
- msgid "Admin email"
783
- msgstr ""
784
-
785
- #: includes/documents/abstract-wcpdf-order-document.php:894
786
- msgid "Manual email"
787
- msgstr ""
788
-
789
- #: includes/documents/class-wcpdf-invoice.php:32
790
- #: includes/documents/class-wcpdf-invoice.php:56
791
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
792
- msgid "Invoice"
793
- msgstr "Arve"
794
-
795
- #: includes/documents/class-wcpdf-invoice.php:131
796
- msgid "invoice"
797
- msgid_plural "invoices"
798
- msgstr[0] "arve"
799
- msgstr[1] "arved"
800
-
801
- #: includes/documents/class-wcpdf-invoice.php:186
802
- #: includes/documents/class-wcpdf-packing-slip.php:88
803
- msgid "Enable"
804
- msgstr ""
805
-
806
- #: includes/documents/class-wcpdf-invoice.php:197
807
- msgid "Attach to:"
808
- msgstr ""
809
-
810
- #. translators: directory path
811
- #: includes/documents/class-wcpdf-invoice.php:205
812
- msgid ""
813
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
814
- "permissions for this folder! Without having write access to this folder, the "
815
- "plugin will not be able to email invoices."
816
- msgstr ""
817
- "Paistab, et ajutine kaust (<code>%s</code) ei ole kirjutatav, kontrolli "
818
- "selle kausta õiguseid! Ilma kirjutusõigusteta ei saa see plugin arveid saata."
819
-
820
- #: includes/documents/class-wcpdf-invoice.php:211
821
- msgid "Disable for:"
822
- msgstr ""
823
-
824
- #: includes/documents/class-wcpdf-invoice.php:220
825
- msgid "Select one or more statuses"
826
- msgstr ""
827
-
828
- #: includes/documents/class-wcpdf-invoice.php:226
829
- #: includes/views/setup-wizard/display-options.php:17
830
- msgid "Display shipping address"
831
- msgstr "Näita tarne aadressi"
832
-
833
- #: includes/documents/class-wcpdf-invoice.php:233
834
- #: includes/documents/class-wcpdf-invoice.php:285
835
- #: includes/documents/class-wcpdf-invoice.php:301
836
- #: includes/documents/class-wcpdf-packing-slip.php:106
837
- msgid "No"
838
- msgstr ""
839
-
840
- #: includes/documents/class-wcpdf-invoice.php:234
841
- msgid "Only when different from billing address"
842
- msgstr ""
843
-
844
- #: includes/documents/class-wcpdf-invoice.php:235
845
- #: includes/documents/class-wcpdf-invoice.php:378
846
- #: includes/documents/class-wcpdf-packing-slip.php:108
847
- msgid "Always"
848
- msgstr "Alati"
849
-
850
- #: includes/documents/class-wcpdf-invoice.php:243
851
- #: includes/documents/class-wcpdf-packing-slip.php:116
852
- #: includes/views/setup-wizard/display-options.php:26
853
- msgid "Display email address"
854
- msgstr "Näita e-posti aadressi"
855
-
856
- #: includes/documents/class-wcpdf-invoice.php:254
857
- #: includes/documents/class-wcpdf-packing-slip.php:127
858
- #: includes/views/setup-wizard/display-options.php:35
859
- msgid "Display phone number"
860
- msgstr "Näita telefoninumbrit"
861
-
862
- #: includes/documents/class-wcpdf-invoice.php:265
863
- #: includes/documents/class-wcpdf-packing-slip.php:138
864
- msgid "Display customer notes"
865
- msgstr ""
866
-
867
- #: includes/documents/class-wcpdf-invoice.php:278
868
- #: includes/views/setup-wizard/display-options.php:44
869
- msgid "Display invoice date"
870
- msgstr "Näita arve kuupäeva"
871
-
872
- #: includes/documents/class-wcpdf-invoice.php:287
873
- msgid "Order Date"
874
- msgstr ""
875
-
876
- #: includes/documents/class-wcpdf-invoice.php:294
877
- #: includes/views/setup-wizard/display-options.php:53
878
- msgid "Display invoice number"
879
- msgstr ""
880
-
881
- #: includes/documents/class-wcpdf-invoice.php:303
882
- msgid "Order Number"
883
- msgstr ""
884
-
885
- #: includes/documents/class-wcpdf-invoice.php:307
886
- msgid "Warning!"
887
- msgstr ""
888
-
889
- #: includes/documents/class-wcpdf-invoice.php:308
890
- msgid ""
891
- "Using the Order Number as invoice number is not recommended as this may lead "
892
- "to gaps in the invoice number sequence (even when order numbers are "
893
- "sequential)."
894
- msgstr ""
895
-
896
- #: includes/documents/class-wcpdf-invoice.php:309
897
- msgid "More information"
898
- msgstr ""
899
-
900
- #: includes/documents/class-wcpdf-invoice.php:316
901
- msgid "Next invoice number (without prefix/suffix etc.)"
902
- msgstr "Järgmine arvenumber (ilma ees-/järelliiteta vms)"
903
-
904
- #: includes/documents/class-wcpdf-invoice.php:322
905
- msgid ""
906
- "This is the number that will be used for the next document. By default, "
907
- "numbering starts from 1 and increases for every new document. Note that if "
908
- "you override this and set it lower than the current/highest number, this "
909
- "could create duplicate numbers!"
910
- msgstr ""
911
-
912
- #: includes/documents/class-wcpdf-invoice.php:328
913
- msgid "Number format"
914
- msgstr ""
915
-
916
- #: includes/documents/class-wcpdf-invoice.php:336
917
- msgid "Prefix"
918
- msgstr "Eesliide"
919
-
920
- #: includes/documents/class-wcpdf-invoice.php:338
921
- msgid ""
922
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
923
- "respectively"
924
- msgstr ""
925
-
926
- #: includes/documents/class-wcpdf-invoice.php:341
927
- msgid "Suffix"
928
- msgstr "Järelliide"
929
-
930
- #: includes/documents/class-wcpdf-invoice.php:346
931
- msgid "Padding"
932
- msgstr "Polster"
933
-
934
- #: includes/documents/class-wcpdf-invoice.php:349
935
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
936
- msgstr ""
937
- "sisesta siia numbrikohtade arv - näiteks \"6\", et näidata 42 kujul 000042"
938
-
939
- #: includes/documents/class-wcpdf-invoice.php:352
940
- msgid ""
941
- "note: if you have already created a custom invoice number format with a "
942
- "filter, the above settings will be ignored"
943
- msgstr ""
944
- "märkus: kui oled juba loonud enda arvenumbri formaadi filtri abil, "
945
- "ignoreeritakse ülalolevaid sätteid"
946
-
947
- #: includes/documents/class-wcpdf-invoice.php:358
948
- msgid "Reset invoice number yearly"
949
- msgstr ""
950
-
951
- #: includes/documents/class-wcpdf-invoice.php:369
952
- msgid "Allow My Account invoice download"
953
- msgstr "Luba \"minu konto\" lehel arveid alla laadida"
954
-
955
- #: includes/documents/class-wcpdf-invoice.php:376
956
- msgid "Only when an invoice is already created/emailed"
957
- msgstr "Ainult siis, kui arve on juba loodud/saadetud"
958
-
959
- #: includes/documents/class-wcpdf-invoice.php:377
960
- msgid "Only for specific order statuses (define below)"
961
- msgstr "Ainult kindlate tellimuse staatuste korral (määra allpool)"
962
-
963
- #: includes/documents/class-wcpdf-invoice.php:379
964
- msgid "Never"
965
- msgstr ""
966
-
967
- #: includes/documents/class-wcpdf-invoice.php:394
968
- msgid "Enable invoice number column in the orders list"
969
- msgstr "Näita tellimuste nimekirjas arve numbri tulpa"
970
-
971
- #: includes/documents/class-wcpdf-invoice.php:405
972
- msgid "Disable for free orders"
973
- msgstr ""
974
-
975
- #. translators: zero number
976
- #: includes/documents/class-wcpdf-invoice.php:412
977
- msgid "Disable document when the order total is %s"
978
- msgstr ""
979
-
980
- #: includes/documents/class-wcpdf-invoice.php:418
981
- msgid "Always use most current settings"
982
- msgstr ""
983
-
984
- #: includes/documents/class-wcpdf-invoice.php:424
985
- msgid ""
986
- "When enabled, the document will always reflect the most current settings "
987
- "(such as footer text, document name, etc.) rather than using historical "
988
- "settings."
989
- msgstr ""
990
-
991
- #: includes/documents/class-wcpdf-invoice.php:426
992
- msgid ""
993
- "<strong>Caution:</strong> enabling this will also mean that if you change "
994
- "your company name or address in the future, previously generated documents "
995
- "will also be affected."
996
- msgstr ""
997
-
998
- #: includes/documents/class-wcpdf-invoice.php:439
999
- msgid "Invoice numbers are created by a third-party extension."
1000
- msgstr ""
1001
-
1002
- #. translators: link
1003
- #: includes/documents/class-wcpdf-invoice.php:442
1004
- msgid "Configure it <a href=\"%s\">here</a>."
1005
- msgstr ""
1006
-
1007
- #: includes/documents/class-wcpdf-packing-slip.php:32
1008
- #: includes/documents/class-wcpdf-packing-slip.php:41
1009
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1010
- msgid "Packing Slip"
1011
- msgstr "Saateleht"
1012
-
1013
- #: includes/documents/class-wcpdf-packing-slip.php:47
1014
- msgid "packing-slip"
1015
- msgid_plural "packing-slips"
1016
- msgstr[0] "saateleht"
1017
- msgstr[1] "saatelehed"
1018
-
1019
- #: includes/documents/class-wcpdf-packing-slip.php:99
1020
- msgid "Display billing address"
1021
- msgstr "Näita arveaadressi"
1022
-
1023
- #: includes/documents/class-wcpdf-packing-slip.php:107
1024
- msgid "Only when different from shipping address"
1025
- msgstr ""
1026
-
1027
- #: includes/documents/class-wcpdf-packing-slip.php:162
1028
- msgid "Packing Slip Number:"
1029
- msgstr ""
1030
-
1031
- #: includes/documents/class-wcpdf-packing-slip.php:170
1032
- msgid "Packing Slip Date:"
1033
- msgstr ""
1034
-
1035
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1036
- msgid "Legacy Document"
1037
- msgstr ""
1038
-
1039
- #: includes/legacy/class-wcpdf-legacy.php:72
1040
- msgid "Error"
1041
- msgstr ""
1042
-
1043
- #: includes/legacy/class-wcpdf-legacy.php:73
1044
- msgid ""
1045
- "An outdated template or action hook was used to generate the PDF. Legacy "
1046
- "mode has been activated, please try again by reloading this page."
1047
- msgstr ""
1048
-
1049
- #: includes/legacy/class-wcpdf-legacy.php:76
1050
- msgid "The following function was called"
1051
- msgstr ""
1052
-
1053
- #. translators: <a> tags
1054
- #: includes/views/attachment-settings-hint.php:23
1055
- msgid ""
1056
- "It looks like you haven't setup any email attachments yet, check the "
1057
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1058
- msgstr ""
1059
-
1060
- #: includes/views/dompdf-status.php:11
1061
- msgid "7.1+ (7.4 or higher recommended)"
1062
- msgstr ""
1063
-
1064
- #: includes/views/dompdf-status.php:24
1065
- msgid "Recommended, will use fallback functions"
1066
- msgstr ""
1067
-
1068
- #: includes/views/dompdf-status.php:30
1069
- msgid "Required if you have images in your documents"
1070
- msgstr ""
1071
-
1072
- #: includes/views/dompdf-status.php:39
1073
- msgid "To compress PDF documents"
1074
- msgstr ""
1075
-
1076
- #: includes/views/dompdf-status.php:42
1077
- msgid "Recommended to compress PDF documents"
1078
- msgstr ""
1079
-
1080
- #: includes/views/dompdf-status.php:45
1081
- msgid "For better performances"
1082
- msgstr ""
1083
-
1084
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1085
- msgid "Recommended for better performances"
1086
- msgstr ""
1087
-
1088
- #: includes/views/dompdf-status.php:51
1089
- msgid "Better with transparent PNG images"
1090
- msgstr ""
1091
-
1092
- #: includes/views/dompdf-status.php:57
1093
- msgid ""
1094
- "Required to detect custom templates and to clear the temp folder periodically"
1095
- msgstr ""
1096
-
1097
- #: includes/views/dompdf-status.php:60
1098
- msgid "Check PHP disable_functions"
1099
- msgstr ""
1100
-
1101
- #. translators: <a> tags
1102
- #: includes/views/dompdf-status.php:64
1103
- msgid ""
1104
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1105
- "WordPress Memory Limit%2$s"
1106
- msgstr ""
1107
-
1108
- #: includes/views/dompdf-status.php:69
1109
- msgid "Allow remote stylesheets and images"
1110
- msgstr ""
1111
-
1112
- #: includes/views/dompdf-status.php:72
1113
- msgid "allow_url_fopen disabled"
1114
- msgstr ""
1115
-
1116
- #. translators: <a> tags
1117
- #: includes/views/dompdf-status.php:92
1118
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1119
- msgstr ""
1120
-
1121
- #: includes/views/dompdf-status.php:97
1122
- msgid "System Configuration"
1123
- msgstr ""
1124
-
1125
- #: includes/views/dompdf-status.php:102
1126
- msgid "Required"
1127
- msgstr ""
1128
-
1129
- #: includes/views/dompdf-status.php:103
1130
- msgid "Present"
1131
- msgstr ""
1132
-
1133
- #: includes/views/dompdf-status.php:142
1134
- msgid "Writable"
1135
- msgstr ""
1136
-
1137
- #: includes/views/dompdf-status.php:143
1138
- msgid "Not writable"
1139
- msgstr ""
1140
-
1141
- #: includes/views/dompdf-status.php:148
1142
- msgid "Central temporary plugin folder"
1143
- msgstr ""
1144
-
1145
- #: includes/views/dompdf-status.php:154
1146
- msgid "Temporary attachments folder"
1147
- msgstr ""
1148
-
1149
- #: includes/views/dompdf-status.php:160
1150
- msgid "Temporary DOMPDF folder"
1151
- msgstr ""
1152
-
1153
- #: includes/views/dompdf-status.php:166
1154
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1155
- msgstr ""
1156
-
1157
- #: includes/views/dompdf-status.php:177
1158
- msgid "Write Permissions"
1159
- msgstr ""
1160
-
1161
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1162
- #: templates/Simple/packing-slip.php:88
1163
- msgid "Description"
1164
- msgstr "Kirjeldus"
1165
-
1166
- #: includes/views/dompdf-status.php:181
1167
- msgid "Value"
1168
- msgstr ""
1169
-
1170
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1171
- #: includes/views/dompdf-status.php:207
1172
- msgid ""
1173
- "The central temp folder is %1$s. By default, this folder is created in the "
1174
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1175
- "config.php. Alternatively, you can control the specific folder for PDF "
1176
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1177
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1178
- "by the plugin if the central temp folder is writable)."
1179
- msgstr ""
1180
-
1181
- #. translators: directory path
1182
- #: includes/views/dompdf-status.php:220
1183
- msgid ""
1184
- "If the temporary folders were not automatically created by the plugin, "
1185
- "verify that all the font files (from %s) are copied to the fonts folder. "
1186
- "Normally, this is fully automated, but if your server has strict security "
1187
- "settings, this automated copying may have been prohibited. In that case, you "
1188
- "also need to make sure these folders get synchronized on plugin updates!"
1189
- msgstr ""
1190
-
1191
- #: includes/views/setup-wizard/attach-to.php:3
1192
- msgid "Attach too..."
1193
- msgstr ""
1194
-
1195
- #: includes/views/setup-wizard/attach-to.php:4
1196
- msgid "Select to which emails you would like to attach your invoice."
1197
- msgstr ""
1198
-
1199
- #: includes/views/setup-wizard/display-options.php:4
1200
- msgid "Select some additional display options for your invoice."
1201
- msgstr ""
1202
-
1203
- #: includes/views/setup-wizard/good-to-go.php:3
1204
- msgid "You are good to go!"
1205
- msgstr ""
1206
-
1207
- #: includes/views/setup-wizard/good-to-go.php:4
1208
- msgid "If you have any questions please have a look at our documentation:"
1209
- msgstr ""
1210
-
1211
- #: includes/views/setup-wizard/good-to-go.php:5
1212
- msgid "Invoices & Packing Slips"
1213
- msgstr ""
1214
-
1215
- #: includes/views/setup-wizard/good-to-go.php:6
1216
- msgid "Happy selling!"
1217
- msgstr ""
1218
-
1219
- #: includes/views/setup-wizard/logo.php:4
1220
- msgid "Set the header image that will display on your invoice."
1221
- msgstr ""
1222
-
1223
- #: includes/views/setup-wizard/paper-format.php:4
1224
- msgid "Select the paper format for your invoice."
1225
- msgstr ""
1226
-
1227
- #: includes/views/setup-wizard/shop-name.php:3
1228
- msgid "Enter your shop name"
1229
- msgstr ""
1230
-
1231
- #: includes/views/setup-wizard/shop-name.php:4
1232
- msgid ""
1233
- "Lets quickly setup your invoice. Please enter the name and address of your "
1234
- "shop in the fields on the right."
1235
- msgstr ""
1236
-
1237
- #: includes/views/setup-wizard/show-action-buttons.php:4
1238
- msgid ""
1239
- "Would you like to display the action buttons in your WooCommerce order list? "
1240
- "The action buttons allow you to manually create a PDF."
1241
- msgstr ""
1242
-
1243
- #: includes/views/setup-wizard/show-action-buttons.php:5
1244
- msgid "(You can always change this setting later via the Screen Options menu)"
1245
- msgstr ""
1246
-
1247
- #: includes/views/setup-wizard/show-action-buttons.php:18
1248
- msgid "Show action buttons"
1249
- msgstr ""
1250
-
1251
- #: includes/views/wcpdf-extensions.php:16
1252
- msgid "Check out these premium extensions!"
1253
- msgstr "Tutvu preemium laiendustega!"
1254
-
1255
- #: includes/views/wcpdf-extensions.php:17
1256
- msgid "click items to read more"
1257
- msgstr "lisainfo lugemiseks vajuta elemendile"
1258
-
1259
- #: includes/views/wcpdf-extensions.php:22
1260
- msgid ""
1261
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1262
- "system"
1263
- msgstr ""
1264
-
1265
- #: includes/views/wcpdf-extensions.php:24
1266
- msgid ""
1267
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1268
- "premium extensions:"
1269
- msgstr ""
1270
-
1271
- #: includes/views/wcpdf-extensions.php:25
1272
- msgid "Professional features:"
1273
- msgstr ""
1274
-
1275
- #: includes/views/wcpdf-extensions.php:27
1276
- #: includes/views/wcpdf-extensions.php:57
1277
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1278
- msgstr "Emaili/prindi/lae alla <b>PDF Credit Notes & Proforma Invoices</b>"
1279
-
1280
- #: includes/views/wcpdf-extensions.php:28
1281
- #: includes/views/wcpdf-extensions.php:58
1282
- msgid ""
1283
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1284
- "packing slips, for example to a drop-shipper or a supplier."
1285
- msgstr ""
1286
- "Saada eraldi <b>teavituse e-kiri</b> koos (või ilma) PDF arve/saatelehega, "
1287
- "näiteks maaletoojale või varustajale."
1288
-
1289
- #: includes/views/wcpdf-extensions.php:29
1290
- #: includes/views/wcpdf-extensions.php:59
1291
- msgid ""
1292
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1293
- "document) to the WooCommerce emails of your choice."
1294
- msgstr ""
1295
- "Manusta <b>kuni 3 staatilist faili</b> (näiteks müügitingimuste document) "
1296
- "enda valitud WooCommerce e-kirjade külge."
1297
-
1298
- #: includes/views/wcpdf-extensions.php:30
1299
- #: includes/views/wcpdf-extensions.php:60
1300
- msgid ""
1301
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1302
- "and credit notes or utilize the main invoice numbering system"
1303
- msgstr ""
1304
- "Kasuta <b>eraldi numbreid</b> ja/või formaati proforma arvete ning krediidi "
1305
- "märkuste jaoks või kasuta põhilist arvete numbrisüsteemi."
1306
-
1307
- #: includes/views/wcpdf-extensions.php:31
1308
- #: includes/views/wcpdf-extensions.php:61
1309
- msgid ""
1310
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1311
- "additional custom fields, font sizes etc. without the need to create a "
1312
- "custom template."
1313
- msgstr ""
1314
- "<b>Kohanda tarne & arve aadresside</b> formaati lisaväljade, fondisuuruste "
1315
- "ja muu taolisega ilma kohandatud malli loomise vajaduseta."
1316
-
1317
- #: includes/views/wcpdf-extensions.php:32
1318
- #: includes/views/wcpdf-extensions.php:62
1319
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1320
- msgstr "Kasuta pluginat mitmekeelses <b>WPML</b> keskkonnas"
1321
-
1322
- #: includes/views/wcpdf-extensions.php:34
1323
- #: includes/views/wcpdf-extensions.php:114
1324
- msgid "Advanced, customizable templates"
1325
- msgstr "Keerukad, kohandatavad mallid"
1326
-
1327
- #: includes/views/wcpdf-extensions.php:36
1328
- #: includes/views/wcpdf-extensions.php:117
1329
- msgid ""
1330
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1331
- "your needs with a drag & drop customizer"
1332
- msgstr ""
1333
- "Kohanda kogu arve sisu (hinnad, maksud, pisipildid) vastavalt oma "
1334
- "vajadustele lohistamismeetodil."
1335
-
1336
- #: includes/views/wcpdf-extensions.php:37
1337
- #: includes/views/wcpdf-extensions.php:118
1338
- msgid "Two extra stylish premade templates (Modern & Business)"
1339
- msgstr "Kaks eriti stiilset valmismalli (Modern & Business)"
1340
-
1341
- #: includes/views/wcpdf-extensions.php:39
1342
- #: includes/views/wcpdf-extensions.php:63
1343
- msgid "Upload automatically to dropbox"
1344
- msgstr ""
1345
-
1346
- #: includes/views/wcpdf-extensions.php:41
1347
- msgid ""
1348
- "This extension conveniently uploads all the invoices (and other pdf "
1349
- "documents from the professional extension) that are emailed to your "
1350
- "customers to Dropbox. The best way to keep your invoice administration up to "
1351
- "date!"
1352
- msgstr ""
1353
- "See laiendus laeb kõik kliendile saadetavad arved (ja muud pdf dokumendid "
1354
- "professionaali laiendusest) Dropboxi. Parim viis hoida arvete haldamine "
1355
- "ajakohane!"
1356
-
1357
- #: includes/views/wcpdf-extensions.php:44
1358
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1359
- msgstr ""
1360
-
1361
- #: includes/views/wcpdf-extensions.php:53
1362
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1363
- msgstr ""
1364
- "Hakka profiks: proforma arved, krediidi märkused (=tagasimaksed) & muud!"
1365
-
1366
- #: includes/views/wcpdf-extensions.php:55
1367
- msgid ""
1368
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1369
- "features:"
1370
- msgstr ""
1371
- "Lae WooCommerce PDF Invoices & Packing Slips üle järgnevate omadustega:"
1372
-
1373
- #: includes/views/wcpdf-extensions.php:65
1374
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1375
- msgstr "Hangi WooCommerce PDF Invoices & Packing Slips Professional!"
1376
-
1377
- #: includes/views/wcpdf-extensions.php:73
1378
- msgid "Automatically send payment reminders to your customers"
1379
- msgstr ""
1380
-
1381
- #: includes/views/wcpdf-extensions.php:75
1382
- msgid "WooCommerce Smart Reminder emails"
1383
- msgstr ""
1384
-
1385
- #: includes/views/wcpdf-extensions.php:77
1386
- msgid "<b>Completely automatic</b> scheduled emails"
1387
- msgstr ""
1388
-
1389
- #: includes/views/wcpdf-extensions.php:78
1390
- msgid ""
1391
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1392
- "from the order (name, order total, etc)"
1393
- msgstr ""
1394
-
1395
- #: includes/views/wcpdf-extensions.php:79
1396
- msgid ""
1397
- "Configure the exact requirements for sending an email (time after order, "
1398
- "order status, payment method)"
1399
- msgstr ""
1400
-
1401
- #: includes/views/wcpdf-extensions.php:80
1402
- msgid ""
1403
- "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1404
- "order language."
1405
- msgstr ""
1406
-
1407
- #: includes/views/wcpdf-extensions.php:81
1408
- msgid ""
1409
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1410
- "reminders, repeat purchases)"
1411
- msgstr ""
1412
-
1413
- #: includes/views/wcpdf-extensions.php:82
1414
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1415
- msgstr ""
1416
-
1417
- #: includes/views/wcpdf-extensions.php:84
1418
- msgid "Get WooCommerce Smart Reminder Emails"
1419
- msgstr ""
1420
-
1421
- #: includes/views/wcpdf-extensions.php:93
1422
- msgid ""
1423
- "Automatically send new orders or packing slips to your printer, as soon as "
1424
- "the customer orders!"
1425
- msgstr ""
1426
- "Saada uued tellimused või saatelehed automaatselt printerisse, niipea kui "
1427
- "klient tellib!"
1428
-
1429
- #: includes/views/wcpdf-extensions.php:99
1430
- msgid ""
1431
- "Check out the WooCommerce Automatic Order Printing extension from our "
1432
- "partners at Simba Hosting"
1433
- msgstr ""
1434
- "Tutvu laiendusega WooCommerce Automatic Order Printing meie partnerfirmalt "
1435
- "Simba Hosting"
1436
-
1437
- #: includes/views/wcpdf-extensions.php:100
1438
- msgid "WooCommerce Automatic Order Printing"
1439
- msgstr "automaatne WooCommerce tellimuste printimine"
1440
-
1441
- #. translators: Premium Templates link
1442
- #: includes/views/wcpdf-extensions.php:120
1443
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1444
- msgstr "Tutvu PDF Invoice & Packing Slips preemium mallidega lehel %s."
1445
-
1446
- #. translators: email link
1447
- #: includes/views/wcpdf-extensions.php:122
1448
- msgid "For custom templates, contact us at %s."
1449
- msgstr "Kohandatud mallide jaoks võta meiega ühendust: %s."
1450
-
1451
- #: includes/views/wcpdf-settings-page.php:9
1452
- msgid "WooCommerce PDF Invoices"
1453
- msgstr "WooCommerce PDF Arved"
1454
-
1455
- #: includes/wcpdf-functions.php:209
1456
- msgid "Error creating PDF, please contact the site owner."
1457
- msgstr ""
1458
-
1459
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1460
- msgid "Billing Address:"
1461
- msgstr "Arve aadress:"
1462
-
1463
- #: templates/Simple/invoice.php:48
1464
- msgid "Ship To:"
1465
- msgstr "Vastuvõtja:"
1466
-
1467
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1468
- msgid "Order Number:"
1469
- msgstr "Tellimuse number:"
1470
-
1471
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1472
- msgid "Order Date:"
1473
- msgstr "Tellimuse kuupäev:"
1474
-
1475
- #: templates/Simple/invoice.php:78
1476
- msgid "Payment Method:"
1477
- msgstr "Makseviis:"
1478
-
1479
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1480
- msgid "Product"
1481
- msgstr "Toode"
1482
-
1483
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1484
- msgid "Quantity"
1485
- msgstr "Kogus"
1486
-
1487
- #: templates/Simple/invoice.php:94
1488
- msgid "Price"
1489
- msgstr "Hind"
1490
-
1491
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1492
- msgid "SKU"
1493
- msgstr "Tootekood"
1494
-
1495
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1496
- msgid "SKU:"
1497
- msgstr "Tootekood:"
1498
-
1499
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1500
- msgid "Weight:"
1501
- msgstr "Kaal:"
1502
-
1503
- #: templates/Simple/invoice.php:123
1504
- msgid "Notes"
1505
- msgstr ""
1506
-
1507
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1508
- msgid "Customer Notes"
1509
- msgstr "Kliendi märkused"
1510
-
1511
- #: templates/Simple/packing-slip.php:35
1512
- msgid "Shipping Address:"
1513
- msgstr "Tarne aadress:"
1514
-
1515
- #: templates/Simple/packing-slip.php:66
1516
- msgid "Shipping Method:"
1517
- msgstr "Tarneviis:"
1518
-
1519
- #. translators: <a> tags
1520
- #: woocommerce-pdf-invoices-packingslips.php:271
1521
- msgid ""
1522
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1523
- "installed & activated!"
1524
- msgstr ""
1525
-
1526
- #: woocommerce-pdf-invoices-packingslips.php:282
1527
- msgid ""
1528
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1529
- "recommended)."
1530
- msgstr ""
1531
-
1532
- #. translators: <a> tags
1533
- #: woocommerce-pdf-invoices-packingslips.php:284
1534
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1535
- msgstr ""
1536
-
1537
- #. translators: <a> tags
1538
- #: woocommerce-pdf-invoices-packingslips.php:286
1539
- msgid ""
1540
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1541
- "to enable backwards compatibility with PHP5.6."
1542
- msgstr ""
1543
-
1544
- #. translators: directory path
1545
- #: woocommerce-pdf-invoices-packingslips.php:374
1546
- msgid ""
1547
- "The PDF files in %s are not currently protected due to your site running on "
1548
- "<strong>NGINX</strong>."
1549
- msgstr ""
1550
-
1551
- #: woocommerce-pdf-invoices-packingslips.php:375
1552
- msgid "To protect them, you must click the button below."
1553
- msgstr ""
1554
-
1555
- #. translators: plugin name
1556
- #: woocommerce-pdf-invoices-packingslips.php:419
1557
- msgid ""
1558
- "When sending emails with MailPoet 3 and the active sending method is "
1559
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1560
- "the emails."
1561
- msgstr ""
1562
-
1563
- #. translators: "Your web host / web server"
1564
- #: woocommerce-pdf-invoices-packingslips.php:421
1565
- msgid "To fix this you should select other method like %1$s or %2$s."
1566
- msgstr ""
1567
-
1568
- #. translators: "Your web host / web server"
1569
- #: woocommerce-pdf-invoices-packingslips.php:421
1570
- msgid "Your web host / web server"
1571
- msgstr ""
1572
-
1573
- #: woocommerce-pdf-invoices-packingslips.php:422
1574
- msgid "Change MailPoet sending method"
1575
- msgstr ""
1576
-
1577
- #~ msgid "PDF Invoice data"
1578
- #~ msgstr "PDF arve andmed"
1579
-
1580
- #~ msgid "Invoice Number (unformatted!)"
1581
- #~ msgstr "Arve number (vorminguta)"
1582
-
1583
- #~ msgid "h"
1584
- #~ msgstr "h"
1585
-
1586
- #~ msgid "m"
1587
- #~ msgstr "m"
1588
-
1589
- #, php-format
1590
- #~ msgid ""
1591
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1592
- #~ "your (child) theme in <code>%s</code> to customize them"
1593
- #~ msgstr ""
1594
- #~ "Tahad kasutada enda malli? Kopeeri kõik failid kaustast <code>%s</code> "
1595
- #~ "oma (laps)teema kausta <code>%s</code> kohanduste tegemiseks."
1596
-
1597
- #~ msgid "Settings"
1598
- #~ msgstr "Sätted"
1599
-
1600
- #~ msgid "Disable for free products"
1601
- #~ msgstr "Lülita tasuta toodete puhul välja"
1602
-
1603
- #~ msgid "Upload all invoices automatically to your dropbox"
1604
- #~ msgstr "Lae kõik arved automaatselt oma dropboxi"
1605
-
1606
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1607
- #~ msgstr "Vii WooCommerce PDF Invoices & Packing Slips dropboxi!"
1608
-
1609
- #, php-format
1610
- #~ msgid ""
1611
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1612
- #~ "installed & activated!"
1613
- #~ msgstr ""
1614
- #~ "WooCommerce PDF Invoices & Packing Slips vajab, et %sWooCommerce%s oleks "
1615
- #~ "paigaldatud ja aktiveeritud!"
1616
-
1617
- #~ msgid "Attach invoice to:"
1618
- #~ msgstr "Lisa arve järgnevatele:"
1619
-
1620
- #~ msgid ""
1621
- #~ "Display shipping address on invoice (in addition to the default billing "
1622
- #~ "address) if different from billing address"
1623
- #~ msgstr ""
1624
- #~ "Näita arvel tarneaadressi (lisaks vaikimisi näidatavale arveaadressile), "
1625
- #~ "kui see erineb arve aadressist."
1626
-
1627
- #~ msgid ""
1628
- #~ "This is the number that will be used on the next invoice that is created. "
1629
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1630
- #~ "first invoice that is created and increases for every new invoice. Note "
1631
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1632
- #~ "number, this could create double invoice numbers!"
1633
- #~ msgstr ""
1634
- #~ "Seda numbrit kasutatakse järgmise arve loomisel. Vaikimisi alustatakse "
1635
- #~ "esimese loodava arve WooCommerce tellimuse numbrist ning suurendatakse "
1636
- #~ "seda iga järgneva arve jaoks. Pane tähele, et kui seda käsitsi väiksemaks "
1637
- #~ "muudad, siis võib esineda korduvaid arvenumbreid!"
1638
-
1639
- #~ msgid "Invoice number format"
1640
- #~ msgstr "Arve numbriformaat"
1641
-
1642
- #~ msgid ""
1643
- #~ "Disable automatic creation/attachment of invoices when only free products "
1644
- #~ "are ordered"
1645
- #~ msgstr ""
1646
- #~ "Ära loo ega manusta arveid automaatselt, kui tellimuses on kõik tooted "
1647
- #~ "tasuta."
1648
-
1649
- #~ msgid ""
1650
- #~ "Display billing address on packing slip (in addition to the default "
1651
- #~ "shipping address) if different from shipping address"
1652
- #~ msgstr ""
1653
- #~ "Näita arveaadressi saatelehel (lisaks vaikimisi tarneaadressile), kui see "
1654
- #~ "erineb tarneaadressist"
1655
-
1656
- #~ msgid "Template"
1657
- #~ msgstr "Mall"
1658
-
1659
- #~ msgid "Admin New Order email"
1660
- #~ msgstr "Halduri \"uus tellimus\" e-kiri"
1661
-
1662
- #~ msgid "Customer Processing Order email"
1663
- #~ msgstr "Kliendi \"tellimus töötluses\" e-kiri"
1664
-
1665
- #~ msgid "Customer Completed Order email"
1666
- #~ msgstr "Kliendi \"tellimus täidetud\" e-kiri"
1667
-
1668
- #~ msgid "Customer Invoice email"
1669
- #~ msgstr "Kliendi \"arve\" e-kiri"
1670
-
1671
- #~ msgid "Interface"
1672
- #~ msgstr "Liides"
1673
-
1674
- #~ msgid "PDF Template settings"
1675
- #~ msgstr "PDF malli sätted"
1676
-
1677
- #~ msgid "Display built-in sequential invoice number"
1678
- #~ msgstr "Näita sisseehitatud järjestikust arvenumbrit"
1679
-
1680
- #~ msgid ""
1681
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
1682
- #~ "respectively"
1683
- #~ msgstr ""
1684
- #~ "tellimuse aasta ja/või kuu kasutamiseks on vastavalt [order_year] ning "
1685
- #~ "[order_month]"
1686
-
1687
- #~ msgid "Use old tmp folder"
1688
- #~ msgstr "Kasuta vana ajutist kausta"
1689
-
1690
- #~ msgid ""
1691
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1692
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1693
- #~ "not recommended on new installs!"
1694
- #~ msgstr ""
1695
- #~ "Enne PDF arvete versiooni 1.5 hoiti ajutisi faile pluginate kaustas. See "
1696
- #~ "säte on mõeldud tagasiulatuva ühilduvuse jaoks, uutele paigaldustele "
1697
- #~ "mittesoovitatav!"
1698
-
1699
- #~ msgid "PDF Packing Slips"
1700
- #~ msgstr "PDF saatelehed"
1701
-
1702
- #~ msgid "PDF Invoice"
1703
- #~ msgstr "PDF arve"
1704
-
1705
- #~ msgid "PDF Packing Slip"
1706
- #~ msgstr "PDF saateleht"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:23-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
+ "Language: et\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 3.0\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #. Plugin Name of the plugin
22
+ msgid "WooCommerce PDF Invoices & Packing Slips"
23
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
24
+
25
+ #. Plugin URI of the plugin
26
+ #. Author URI of the plugin
27
+ msgid "http://www.wpovernight.com"
28
+ msgstr "http://www.wpovernight.com"
29
+
30
+ #. Description of the plugin
31
+ msgid ""
32
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
+ msgstr ""
34
+
35
+ #. Author of the plugin
36
+ msgid "Ewout Fernhout"
37
+ msgstr "Ewout Fernhout"
38
+
39
+ #. translators: rounded count
40
+ #: includes/class-wcpdf-admin.php:92
41
+ msgid "Wow, you have created more than %d invoices with our plugin!"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:93
45
+ msgid ""
46
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
+ "rating. Help us spread the word and boost our motivation!"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:95
51
+ msgid "Yes you deserve it!"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
+ #: includes/views/attachment-settings-hint.php:24
56
+ #: includes/views/wcpdf-extensions.php:131
57
+ #: woocommerce-pdf-invoices-packingslips.php:377
58
+ #: woocommerce-pdf-invoices-packingslips.php:423
59
+ msgid "Hide this message"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-admin.php:96
63
+ msgid "Already did!"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-admin.php:97
67
+ msgid "Actually, I have a complaint..."
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:132
71
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:132
75
+ msgid "Jumpstart the plugin by following our wizard!"
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:133
79
+ msgid "Run the Setup Wizard"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:133
83
+ msgid "I am the wizard"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
+ #: includes/documents/class-wcpdf-invoice.php:302
88
+ msgid "Invoice Number"
89
+ msgstr "Arve number"
90
+
91
+ #: includes/class-wcpdf-admin.php:261
92
+ msgid "Send order email"
93
+ msgstr ""
94
+
95
+ #: includes/class-wcpdf-admin.php:272
96
+ msgid "Create PDF"
97
+ msgstr "Loo PDF"
98
+
99
+ #: includes/class-wcpdf-admin.php:282
100
+ msgid "PDF document data"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:304
104
+ msgid "Choose an email to send&hellip;"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-admin.php:320
108
+ msgid "Save order & send email"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:322
112
+ msgid "Send email"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
+ msgid "Invoice Number:"
118
+ msgstr "Arve number:"
119
+
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
+ msgid "Invoice Date:"
123
+ msgstr "Arve kuupäev:"
124
+
125
+ #: includes/class-wcpdf-admin.php:384
126
+ msgid "Notes (printed in the invoice):"
127
+ msgstr ""
128
+
129
+ #. translators: document title
130
+ #: includes/class-wcpdf-admin.php:469
131
+ msgid "Set %s number & date"
132
+ msgstr ""
133
+
134
+ #: includes/class-wcpdf-admin.php:478
135
+ msgid "unformatted!"
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-admin.php:518
139
+ msgid "Save changes"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:519
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
146
+ #. translators: name/description of the context for document creation logs
147
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
+ msgid "order details (number and/or date set manually)"
149
+ msgstr ""
150
+
151
+ #. translators: %s: email title
152
+ #: includes/class-wcpdf-admin.php:647
153
+ msgid "%s email notification manually sent."
154
+ msgstr ""
155
+
156
+ #: includes/class-wcpdf-admin.php:734
157
+ msgid "Nonce expired!"
158
+ msgstr ""
159
+
160
+ #: includes/class-wcpdf-admin.php:740
161
+ msgid "Bad action!"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:746
165
+ msgid "Incomplete request!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:752
169
+ msgid "No permissions!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:776
173
+ msgid "Document data saved!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:777
177
+ msgid "An error occurred while saving the document data!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:780
181
+ msgid "Document regenerated!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:781
185
+ msgid "An error occurred while regenerating the document!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:784
189
+ msgid "Document deleted!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:785
193
+ msgid "An error occurred while deleting the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:841
197
+ msgid "Document does not exist."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:850
201
+ msgid "Document is empty."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:881
205
+ msgid "DEBUG output enabled"
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-assets.php:94
209
+ msgid "Are you sure you want to delete this document? This cannot be undone."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-assets.php:95
213
+ msgid ""
214
+ "Are you sure you want to regenerate this document? This will make the "
215
+ "document reflect the most current settings (such as footer text, document "
216
+ "name, etc.) rather than using historical settings."
217
+ msgstr ""
218
+
219
+ #: includes/class-wcpdf-frontend.php:129
220
+ msgid "Download invoice (PDF)"
221
+ msgstr "Lae arve alla (PDF)"
222
+
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
+ msgid "You do not have sufficient permissions to access this page."
226
+ msgstr "Sul ei ole selle lehe vaatamiseks piisavalt õigusi."
227
+
228
+ #: includes/class-wcpdf-main.php:272
229
+ msgid "You haven't selected any orders"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-main.php:276
233
+ msgid "Some of the export parameters are missing."
234
+ msgstr "Mõned eksportimise parameetrid on puudu."
235
+
236
+ #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
239
+ msgstr ""
240
+
241
+ #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-main.php:604
247
+ msgid ""
248
+ "Please check your directories write permissions or contact your hosting "
249
+ "service provider."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-main.php:919
253
+ #: includes/documents/class-wcpdf-invoice.php:286
254
+ msgid "Invoice Date"
255
+ msgstr ""
256
+
257
+ #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
+ msgid "bulk order action"
260
+ msgstr ""
261
+
262
+ #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
+ msgid "single order action"
265
+ msgstr ""
266
+
267
+ #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
+ msgid "my account"
270
+ msgstr ""
271
+
272
+ #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
+ msgid "email attachment"
275
+ msgstr ""
276
+
277
+ #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
+ msgid "PDF %1$s created via %2$s."
280
+ msgstr ""
281
+
282
+ #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
+ msgid "Order %s Saved"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings-callbacks.php:27
288
+ msgid ""
289
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
+ "Do not use them on a live website!"
291
+ msgstr ""
292
+ "<b>Hoiatus!</b> Allolevad sätted on mõeldud ainult veaotsinguks/arenduseks. "
293
+ "Ära kasuta neid rakenduskeskkonnas!"
294
+
295
+ #: includes/class-wcpdf-settings-callbacks.php:36
296
+ msgid ""
297
+ "These are used for the (optional) footer columns in the <em>Modern "
298
+ "(Premium)</em> template, but can also be used for other elements in your "
299
+ "custom template"
300
+ msgstr ""
301
+ "Neid kasutatakse <em>Modern (Preemium)</em> mallis (valikuliste) "
302
+ "jalusetulpade jaoks, kuid on kasutatavad ka muude elementide jaoks sinu "
303
+ "kohandatud mallis."
304
+
305
+ #: includes/class-wcpdf-settings-callbacks.php:384
306
+ msgid "Image resolution"
307
+ msgstr "Pildi resolutsioon"
308
+
309
+ #: includes/class-wcpdf-settings-callbacks.php:411
310
+ msgid "Save"
311
+ msgstr ""
312
+
313
+ #: includes/class-wcpdf-settings-debug.php:45
314
+ #: woocommerce-pdf-invoices-packingslips.php:376
315
+ msgid "Generate random temporary folder name"
316
+ msgstr ""
317
+
318
+ #. translators: directory path
319
+ #: includes/class-wcpdf-settings-debug.php:58
320
+ msgid "Temporary folder moved to %s"
321
+ msgstr ""
322
+
323
+ #: includes/class-wcpdf-settings-debug.php:68
324
+ msgid "Reinstall fonts"
325
+ msgstr ""
326
+
327
+ #: includes/class-wcpdf-settings-debug.php:89
328
+ msgid "Fonts reinstalled!"
329
+ msgstr ""
330
+
331
+ #: includes/class-wcpdf-settings-debug.php:98
332
+ msgid "Remove temporary files"
333
+ msgstr ""
334
+
335
+ #: includes/class-wcpdf-settings-debug.php:109
336
+ msgid "Unable to read temporary folder contents!"
337
+ msgstr ""
338
+
339
+ #. translators: 1,2. file count
340
+ #: includes/class-wcpdf-settings-debug.php:127
341
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
342
+ msgstr ""
343
+
344
+ #. translators: file count
345
+ #: includes/class-wcpdf-settings-debug.php:131
346
+ msgid "Successfully deleted %d files!"
347
+ msgstr ""
348
+
349
+ #: includes/class-wcpdf-settings-debug.php:135
350
+ msgid "Nothing to delete!"
351
+ msgstr ""
352
+
353
+ #: includes/class-wcpdf-settings-debug.php:146
354
+ msgid "Delete legacy (1.X) settings"
355
+ msgstr ""
356
+
357
+ #: includes/class-wcpdf-settings-debug.php:162
358
+ msgid "Legacy settings deleted!"
359
+ msgstr ""
360
+
361
+ #: includes/class-wcpdf-settings-debug.php:192
362
+ msgid "Debug settings"
363
+ msgstr "Veaotsingu sätted"
364
+
365
+ #: includes/class-wcpdf-settings-debug.php:198
366
+ msgid "Legacy mode"
367
+ msgstr ""
368
+
369
+ #: includes/class-wcpdf-settings-debug.php:204
370
+ msgid ""
371
+ "Legacy mode ensures compatibility with templates and filters from previous "
372
+ "versions."
373
+ msgstr ""
374
+
375
+ #: includes/class-wcpdf-settings-debug.php:210
376
+ msgid "Legacy textdomain fallback"
377
+ msgstr ""
378
+
379
+ #: includes/class-wcpdf-settings-debug.php:216
380
+ msgid ""
381
+ "Legacy textdomain fallback ensures compatibility with translation files from "
382
+ "versions prior to 2017-05-15."
383
+ msgstr ""
384
+
385
+ #: includes/class-wcpdf-settings-debug.php:222
386
+ msgid "Allow guest access"
387
+ msgstr ""
388
+
389
+ #: includes/class-wcpdf-settings-debug.php:228
390
+ msgid ""
391
+ "Enable this to allow customers that purchase without an account to access "
392
+ "their PDF with a unique key"
393
+ msgstr ""
394
+
395
+ #: includes/class-wcpdf-settings-debug.php:234
396
+ msgid "Calculate document numbers (slow)"
397
+ msgstr ""
398
+
399
+ #: includes/class-wcpdf-settings-debug.php:240
400
+ msgid ""
401
+ "Document numbers (such as invoice numbers) are generated using "
402
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
403
+ "with more than 1."
404
+ msgstr ""
405
+
406
+ #: includes/class-wcpdf-settings-debug.php:246
407
+ msgid "Enable debug output"
408
+ msgstr "Lülita sisse veaotsingu väljund"
409
+
410
+ #: includes/class-wcpdf-settings-debug.php:252
411
+ msgid ""
412
+ "Enable this option to output plugin errors if you're getting a blank page or "
413
+ "other PDF generation issues"
414
+ msgstr ""
415
+ "Lülita see valik sisse, et väljastada plugina veateateid, kui näed tühja "
416
+ "lehte või PDF genereerimisel esineb mõni muu probleem"
417
+
418
+ #: includes/class-wcpdf-settings-debug.php:253
419
+ msgid ""
420
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
421
+ "places on your site too, therefor this is not recommended to leave it "
422
+ "enabled on live sites."
423
+ msgstr ""
424
+
425
+ #: includes/class-wcpdf-settings-debug.php:254
426
+ msgid ""
427
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
428
+ "order basis."
429
+ msgstr ""
430
+
431
+ #: includes/class-wcpdf-settings-debug.php:260
432
+ msgid "Enable automatic cleanup"
433
+ msgstr ""
434
+
435
+ #. translators: number of days
436
+ #: includes/class-wcpdf-settings-debug.php:268
437
+ msgid "every %s days"
438
+ msgstr ""
439
+
440
+ #: includes/class-wcpdf-settings-debug.php:273
441
+ msgid ""
442
+ "Automatically clean up PDF files stored in the temporary folder (used for "
443
+ "email attachments)"
444
+ msgstr ""
445
+
446
+ #: includes/class-wcpdf-settings-debug.php:274
447
+ msgid ""
448
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
449
+ "automatic cleanup but not enabled on your server."
450
+ msgstr ""
451
+
452
+ #: includes/class-wcpdf-settings-debug.php:280
453
+ msgid "Output to HTML"
454
+ msgstr "Väljasta HTML kujul"
455
+
456
+ #: includes/class-wcpdf-settings-debug.php:286
457
+ msgid ""
458
+ "Send the template output as HTML to the browser instead of creating a PDF."
459
+ msgstr ""
460
+ "PDF faili loomise asemel saada malli väljund HTML kujul veebilehitsejasse."
461
+
462
+ #: includes/class-wcpdf-settings-debug.php:287
463
+ msgid ""
464
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
465
+ "order basis."
466
+ msgstr ""
467
+
468
+ #: includes/class-wcpdf-settings-debug.php:293
469
+ msgid "Use alternative HTML5 parser to parse HTML"
470
+ msgstr ""
471
+
472
+ #: includes/class-wcpdf-settings-debug.php:304
473
+ msgid "Log to order notes"
474
+ msgstr ""
475
+
476
+ #: includes/class-wcpdf-settings-debug.php:310
477
+ msgid "Log PDF document creation to order notes."
478
+ msgstr ""
479
+
480
+ #: includes/class-wcpdf-settings-documents.php:30
481
+ #: includes/class-wcpdf-settings.php:104
482
+ msgid "Documents"
483
+ msgstr ""
484
+
485
+ #: includes/class-wcpdf-settings-documents.php:36
486
+ #: includes/class-wcpdf-settings-documents.php:57
487
+ msgid "untitled"
488
+ msgstr ""
489
+
490
+ #: includes/class-wcpdf-settings-documents.php:50
491
+ msgid ""
492
+ "All available documents are listed below. Click on a document to configure "
493
+ "it."
494
+ msgstr ""
495
+
496
+ #: includes/class-wcpdf-settings-general.php:40
497
+ msgid "General settings"
498
+ msgstr "Üldised sätted"
499
+
500
+ #: includes/class-wcpdf-settings-general.php:46
501
+ msgid "How do you want to view the PDF?"
502
+ msgstr "Kuidas sa soovid PDF-i vaadata?"
503
+
504
+ #: includes/class-wcpdf-settings-general.php:53
505
+ msgid "Download the PDF"
506
+ msgstr "Lae PDF alla"
507
+
508
+ #: includes/class-wcpdf-settings-general.php:54
509
+ msgid "Open the PDF in a new browser tab/window"
510
+ msgstr "Ava PDF uues veebilehitseja sakis/aknas"
511
+
512
+ #: includes/class-wcpdf-settings-general.php:61
513
+ msgid "Choose a template"
514
+ msgstr "Vali mall"
515
+
516
+ #. translators: 1,2. template paths
517
+ #: includes/class-wcpdf-settings-general.php:69
518
+ msgid ""
519
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
520
+ "your (child) theme in <code>%2$s</code> to customize them"
521
+ msgstr ""
522
+
523
+ #: includes/class-wcpdf-settings-general.php:75
524
+ msgid "Paper size"
525
+ msgstr "Paberi suurus"
526
+
527
+ #: includes/class-wcpdf-settings-general.php:82
528
+ #: includes/views/setup-wizard/paper-format.php:12
529
+ msgid "A4"
530
+ msgstr "A4"
531
+
532
+ #: includes/class-wcpdf-settings-general.php:83
533
+ #: includes/views/setup-wizard/paper-format.php:13
534
+ msgid "Letter"
535
+ msgstr "Ümbrik"
536
+
537
+ #: includes/class-wcpdf-settings-general.php:90
538
+ msgid "Test mode"
539
+ msgstr ""
540
+
541
+ #: includes/class-wcpdf-settings-general.php:96
542
+ msgid ""
543
+ "With test mode enabled, any document generated will always use the latest "
544
+ "settings, rather than using the settings as configured at the time the "
545
+ "document was first created."
546
+ msgstr ""
547
+
548
+ #: includes/class-wcpdf-settings-general.php:96
549
+ msgid ""
550
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
551
+ "setting and will still be generated."
552
+ msgstr ""
553
+
554
+ #: includes/class-wcpdf-settings-general.php:102
555
+ msgid "Extended currency symbol support"
556
+ msgstr ""
557
+
558
+ #: includes/class-wcpdf-settings-general.php:108
559
+ msgid "Enable this if your currency symbol is not displaying properly"
560
+ msgstr ""
561
+
562
+ #: includes/class-wcpdf-settings-general.php:114
563
+ msgid "Enable font subsetting"
564
+ msgstr ""
565
+
566
+ #: includes/class-wcpdf-settings-general.php:120
567
+ msgid ""
568
+ "Font subsetting can reduce file size by only including the characters that "
569
+ "are used in the PDF, but limits the ability to edit PDF files later. "
570
+ "Recommended if you're using an Asian font."
571
+ msgstr ""
572
+
573
+ #: includes/class-wcpdf-settings-general.php:126
574
+ msgid "Shop header/logo"
575
+ msgstr "Poe päis/logo"
576
+
577
+ #: includes/class-wcpdf-settings-general.php:132
578
+ #: includes/views/setup-wizard/logo.php:20
579
+ msgid "Select or upload your invoice header/logo"
580
+ msgstr "Vali või lae üles oma arve päis/logo"
581
+
582
+ #: includes/class-wcpdf-settings-general.php:133
583
+ #: includes/views/setup-wizard/logo.php:20
584
+ msgid "Set image"
585
+ msgstr "Määra pilt"
586
+
587
+ #: includes/class-wcpdf-settings-general.php:134
588
+ #: includes/views/setup-wizard/logo.php:20
589
+ msgid "Remove image"
590
+ msgstr "Eemalda pilt"
591
+
592
+ #: includes/class-wcpdf-settings-general.php:141
593
+ msgid "Logo height"
594
+ msgstr ""
595
+
596
+ #: includes/class-wcpdf-settings-general.php:149
597
+ msgid ""
598
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
599
+ "decimals.<br/>For example: 1.15in or 40mm"
600
+ msgstr ""
601
+
602
+ #: includes/class-wcpdf-settings-general.php:155
603
+ #: includes/class-wcpdf-setup-wizard.php:49
604
+ msgid "Shop Name"
605
+ msgstr "Poe nimi"
606
+
607
+ #: includes/class-wcpdf-settings-general.php:168
608
+ msgid "Shop Address"
609
+ msgstr "Poe aadress"
610
+
611
+ #: includes/class-wcpdf-settings-general.php:183
612
+ msgid "Footer: terms & conditions, policies, etc."
613
+ msgstr "Jalus: tingimused, poliisid jne"
614
+
615
+ #: includes/class-wcpdf-settings-general.php:198
616
+ msgid "Extra template fields"
617
+ msgstr "Malli lisaväljad"
618
+
619
+ #: includes/class-wcpdf-settings-general.php:204
620
+ msgid "Extra field 1"
621
+ msgstr "Lisaväli 1"
622
+
623
+ #: includes/class-wcpdf-settings-general.php:212
624
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
625
+ msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 1"
626
+
627
+ #: includes/class-wcpdf-settings-general.php:219
628
+ msgid "Extra field 2"
629
+ msgstr "Lisaväli 2"
630
+
631
+ #: includes/class-wcpdf-settings-general.php:227
632
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
633
+ msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 2"
634
+
635
+ #: includes/class-wcpdf-settings-general.php:234
636
+ msgid "Extra field 3"
637
+ msgstr "Lisaväli 3"
638
+
639
+ #: includes/class-wcpdf-settings-general.php:242
640
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
641
+ msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 3"
642
+
643
+ #: includes/class-wcpdf-settings-general.php:290
644
+ msgid "Custom"
645
+ msgstr ""
646
+
647
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
648
+ msgid "PDF Invoices"
649
+ msgstr "PDF Arved"
650
+
651
+ #: includes/class-wcpdf-settings.php:81
652
+ msgid "Documentation"
653
+ msgstr ""
654
+
655
+ #: includes/class-wcpdf-settings.php:82
656
+ msgid "Support Forum"
657
+ msgstr ""
658
+
659
+ #. translators: database row value
660
+ #: includes/class-wcpdf-settings.php:95
661
+ msgid ""
662
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
663
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
664
+ "document numbers (slow)' setting in the Status tab to use an alternate "
665
+ "method."
666
+ msgstr ""
667
+
668
+ #: includes/class-wcpdf-settings.php:103
669
+ msgid "General"
670
+ msgstr "Üldine"
671
+
672
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
673
+ msgid "Status"
674
+ msgstr "Staatus"
675
+
676
+ #. translators: 1. path, 2. template ID
677
+ #: includes/class-wcpdf-settings.php:396
678
+ msgid "Template setting migrated from %1$s to %2$s"
679
+ msgstr ""
680
+
681
+ #: includes/class-wcpdf-setup-wizard.php:53
682
+ #: includes/views/setup-wizard/logo.php:3
683
+ msgid "Your logo"
684
+ msgstr ""
685
+
686
+ #: includes/class-wcpdf-setup-wizard.php:57
687
+ msgid "Attachments"
688
+ msgstr ""
689
+
690
+ #: includes/class-wcpdf-setup-wizard.php:61
691
+ #: includes/views/setup-wizard/display-options.php:3
692
+ msgid "Display options"
693
+ msgstr ""
694
+
695
+ #: includes/class-wcpdf-setup-wizard.php:65
696
+ #: includes/views/setup-wizard/paper-format.php:3
697
+ msgid "Paper format"
698
+ msgstr ""
699
+
700
+ #: includes/class-wcpdf-setup-wizard.php:69
701
+ #: includes/views/setup-wizard/show-action-buttons.php:3
702
+ msgid "Action buttons"
703
+ msgstr ""
704
+
705
+ #: includes/class-wcpdf-setup-wizard.php:73
706
+ msgid "Ready!"
707
+ msgstr ""
708
+
709
+ #: includes/class-wcpdf-setup-wizard.php:135
710
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
711
+ msgstr ""
712
+
713
+ #: includes/class-wcpdf-setup-wizard.php:187
714
+ msgid "Previous"
715
+ msgstr ""
716
+
717
+ #: includes/class-wcpdf-setup-wizard.php:192
718
+ msgid "Next"
719
+ msgstr ""
720
+
721
+ #: includes/class-wcpdf-setup-wizard.php:193
722
+ msgid "Skip this step"
723
+ msgstr ""
724
+
725
+ #: includes/class-wcpdf-setup-wizard.php:195
726
+ msgid "Finish"
727
+ msgstr ""
728
+
729
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
730
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
731
+ msgid "N/A"
732
+ msgstr "N/A"
733
+
734
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
735
+ msgid "Payment method"
736
+ msgstr "Makseviis"
737
+
738
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
739
+ msgid "Shipping method"
740
+ msgstr "Tarneviis"
741
+
742
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
743
+ msgid "Subtotal"
744
+ msgstr "Vahesumma"
745
+
746
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
747
+ msgid "Shipping"
748
+ msgstr "Tarne"
749
+
750
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
751
+ msgid "Discount"
752
+ msgstr "Allahindlus"
753
+
754
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
755
+ msgid "VAT"
756
+ msgstr "KM"
757
+
758
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
759
+ msgid "Tax rate"
760
+ msgstr "Maksumäär"
761
+
762
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
763
+ msgid "Total ex. VAT"
764
+ msgstr "Summa ilma KM-ta"
765
+
766
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
767
+ msgid "Total"
768
+ msgstr "Kogusumma"
769
+
770
+ #. translators: 1. credit note title, 2. refund id
771
+ #: includes/documents/abstract-wcpdf-order-document.php:336
772
+ msgid "%1$s (refund #%2$s) was regenerated."
773
+ msgstr ""
774
+
775
+ #. translators: 1. credit note title, 2. refund id
776
+ #: includes/documents/abstract-wcpdf-order-document.php:336
777
+ msgid "%s was regenerated"
778
+ msgstr ""
779
+
780
+ #. translators: %s: document name
781
+ #: includes/documents/abstract-wcpdf-order-document.php:422
782
+ msgid "%s Number:"
783
+ msgstr ""
784
+
785
+ #. translators: %s: document name
786
+ #: includes/documents/abstract-wcpdf-order-document.php:428
787
+ msgid "%s Date:"
788
+ msgstr ""
789
+
790
+ #: includes/documents/abstract-wcpdf-order-document.php:904
791
+ msgid "Admin email"
792
+ msgstr ""
793
+
794
+ #: includes/documents/abstract-wcpdf-order-document.php:907
795
+ msgid "Manual email"
796
+ msgstr ""
797
+
798
+ #: includes/documents/class-wcpdf-invoice.php:32
799
+ #: includes/documents/class-wcpdf-invoice.php:56
800
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
801
+ msgid "Invoice"
802
+ msgstr "Arve"
803
+
804
+ #: includes/documents/class-wcpdf-invoice.php:131
805
+ msgid "invoice"
806
+ msgid_plural "invoices"
807
+ msgstr[0] "arve"
808
+ msgstr[1] "arved"
809
+
810
+ #: includes/documents/class-wcpdf-invoice.php:186
811
+ #: includes/documents/class-wcpdf-packing-slip.php:88
812
+ msgid "Enable"
813
+ msgstr ""
814
+
815
+ #: includes/documents/class-wcpdf-invoice.php:197
816
+ msgid "Attach to:"
817
+ msgstr ""
818
+
819
+ #. translators: directory path
820
+ #: includes/documents/class-wcpdf-invoice.php:205
821
+ msgid ""
822
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
823
+ "permissions for this folder! Without having write access to this folder, the "
824
+ "plugin will not be able to email invoices."
825
+ msgstr ""
826
+ "Paistab, et ajutine kaust (<code>%s</code) ei ole kirjutatav, kontrolli "
827
+ "selle kausta õiguseid! Ilma kirjutusõigusteta ei saa see plugin arveid saata."
828
+
829
+ #: includes/documents/class-wcpdf-invoice.php:211
830
+ msgid "Disable for:"
831
+ msgstr ""
832
+
833
+ #: includes/documents/class-wcpdf-invoice.php:220
834
+ msgid "Select one or more statuses"
835
+ msgstr ""
836
+
837
+ #: includes/documents/class-wcpdf-invoice.php:226
838
+ #: includes/views/setup-wizard/display-options.php:17
839
+ msgid "Display shipping address"
840
+ msgstr "Näita tarne aadressi"
841
+
842
+ #: includes/documents/class-wcpdf-invoice.php:233
843
+ #: includes/documents/class-wcpdf-invoice.php:285
844
+ #: includes/documents/class-wcpdf-invoice.php:301
845
+ #: includes/documents/class-wcpdf-packing-slip.php:106
846
+ msgid "No"
847
+ msgstr ""
848
+
849
+ #: includes/documents/class-wcpdf-invoice.php:234
850
+ msgid "Only when different from billing address"
851
+ msgstr ""
852
+
853
+ #: includes/documents/class-wcpdf-invoice.php:235
854
+ #: includes/documents/class-wcpdf-invoice.php:378
855
+ #: includes/documents/class-wcpdf-packing-slip.php:108
856
+ msgid "Always"
857
+ msgstr "Alati"
858
+
859
+ #: includes/documents/class-wcpdf-invoice.php:243
860
+ #: includes/documents/class-wcpdf-packing-slip.php:116
861
+ #: includes/views/setup-wizard/display-options.php:26
862
+ msgid "Display email address"
863
+ msgstr "Näita e-posti aadressi"
864
+
865
+ #: includes/documents/class-wcpdf-invoice.php:254
866
+ #: includes/documents/class-wcpdf-packing-slip.php:127
867
+ #: includes/views/setup-wizard/display-options.php:35
868
+ msgid "Display phone number"
869
+ msgstr "Näita telefoninumbrit"
870
+
871
+ #: includes/documents/class-wcpdf-invoice.php:265
872
+ #: includes/documents/class-wcpdf-packing-slip.php:138
873
+ msgid "Display customer notes"
874
+ msgstr ""
875
+
876
+ #: includes/documents/class-wcpdf-invoice.php:278
877
+ #: includes/views/setup-wizard/display-options.php:44
878
+ msgid "Display invoice date"
879
+ msgstr "Näita arve kuupäeva"
880
+
881
+ #: includes/documents/class-wcpdf-invoice.php:287
882
+ msgid "Order Date"
883
+ msgstr ""
884
+
885
+ #: includes/documents/class-wcpdf-invoice.php:294
886
+ #: includes/views/setup-wizard/display-options.php:53
887
+ msgid "Display invoice number"
888
+ msgstr ""
889
+
890
+ #: includes/documents/class-wcpdf-invoice.php:303
891
+ msgid "Order Number"
892
+ msgstr ""
893
+
894
+ #: includes/documents/class-wcpdf-invoice.php:307
895
+ msgid "Warning!"
896
+ msgstr ""
897
+
898
+ #: includes/documents/class-wcpdf-invoice.php:308
899
+ msgid ""
900
+ "Using the Order Number as invoice number is not recommended as this may lead "
901
+ "to gaps in the invoice number sequence (even when order numbers are "
902
+ "sequential)."
903
+ msgstr ""
904
+
905
+ #: includes/documents/class-wcpdf-invoice.php:309
906
+ msgid "More information"
907
+ msgstr ""
908
+
909
+ #: includes/documents/class-wcpdf-invoice.php:316
910
+ msgid "Next invoice number (without prefix/suffix etc.)"
911
+ msgstr "Järgmine arvenumber (ilma ees-/järelliiteta vms)"
912
+
913
+ #: includes/documents/class-wcpdf-invoice.php:322
914
+ msgid ""
915
+ "This is the number that will be used for the next document. By default, "
916
+ "numbering starts from 1 and increases for every new document. Note that if "
917
+ "you override this and set it lower than the current/highest number, this "
918
+ "could create duplicate numbers!"
919
+ msgstr ""
920
+
921
+ #: includes/documents/class-wcpdf-invoice.php:328
922
+ msgid "Number format"
923
+ msgstr ""
924
+
925
+ #: includes/documents/class-wcpdf-invoice.php:336
926
+ msgid "Prefix"
927
+ msgstr "Eesliide"
928
+
929
+ #: includes/documents/class-wcpdf-invoice.php:338
930
+ msgid ""
931
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
932
+ "respectively"
933
+ msgstr ""
934
+
935
+ #: includes/documents/class-wcpdf-invoice.php:341
936
+ msgid "Suffix"
937
+ msgstr "Järelliide"
938
+
939
+ #: includes/documents/class-wcpdf-invoice.php:346
940
+ msgid "Padding"
941
+ msgstr "Polster"
942
+
943
+ #: includes/documents/class-wcpdf-invoice.php:349
944
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
945
+ msgstr ""
946
+ "sisesta siia numbrikohtade arv - näiteks \"6\", et näidata 42 kujul 000042"
947
+
948
+ #: includes/documents/class-wcpdf-invoice.php:352
949
+ msgid ""
950
+ "note: if you have already created a custom invoice number format with a "
951
+ "filter, the above settings will be ignored"
952
+ msgstr ""
953
+ "märkus: kui oled juba loonud enda arvenumbri formaadi filtri abil, "
954
+ "ignoreeritakse ülalolevaid sätteid"
955
+
956
+ #: includes/documents/class-wcpdf-invoice.php:358
957
+ msgid "Reset invoice number yearly"
958
+ msgstr ""
959
+
960
+ #: includes/documents/class-wcpdf-invoice.php:369
961
+ msgid "Allow My Account invoice download"
962
+ msgstr "Luba \"minu konto\" lehel arveid alla laadida"
963
+
964
+ #: includes/documents/class-wcpdf-invoice.php:376
965
+ msgid "Only when an invoice is already created/emailed"
966
+ msgstr "Ainult siis, kui arve on juba loodud/saadetud"
967
+
968
+ #: includes/documents/class-wcpdf-invoice.php:377
969
+ msgid "Only for specific order statuses (define below)"
970
+ msgstr "Ainult kindlate tellimuse staatuste korral (määra allpool)"
971
+
972
+ #: includes/documents/class-wcpdf-invoice.php:379
973
+ msgid "Never"
974
+ msgstr ""
975
+
976
+ #: includes/documents/class-wcpdf-invoice.php:394
977
+ msgid "Enable invoice number column in the orders list"
978
+ msgstr "Näita tellimuste nimekirjas arve numbri tulpa"
979
+
980
+ #: includes/documents/class-wcpdf-invoice.php:405
981
+ msgid "Disable for free orders"
982
+ msgstr ""
983
+
984
+ #. translators: zero number
985
+ #: includes/documents/class-wcpdf-invoice.php:412
986
+ msgid "Disable document when the order total is %s"
987
+ msgstr ""
988
+
989
+ #: includes/documents/class-wcpdf-invoice.php:418
990
+ msgid "Always use most current settings"
991
+ msgstr ""
992
+
993
+ #: includes/documents/class-wcpdf-invoice.php:424
994
+ msgid ""
995
+ "When enabled, the document will always reflect the most current settings "
996
+ "(such as footer text, document name, etc.) rather than using historical "
997
+ "settings."
998
+ msgstr ""
999
+
1000
+ #: includes/documents/class-wcpdf-invoice.php:426
1001
+ msgid ""
1002
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1003
+ "your company name or address in the future, previously generated documents "
1004
+ "will also be affected."
1005
+ msgstr ""
1006
+
1007
+ #: includes/documents/class-wcpdf-invoice.php:439
1008
+ msgid "Invoice numbers are created by a third-party extension."
1009
+ msgstr ""
1010
+
1011
+ #. translators: link
1012
+ #: includes/documents/class-wcpdf-invoice.php:442
1013
+ msgid "Configure it <a href=\"%s\">here</a>."
1014
+ msgstr ""
1015
+
1016
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1017
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1018
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1019
+ msgid "Packing Slip"
1020
+ msgstr "Saateleht"
1021
+
1022
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1023
+ msgid "packing-slip"
1024
+ msgid_plural "packing-slips"
1025
+ msgstr[0] "saateleht"
1026
+ msgstr[1] "saatelehed"
1027
+
1028
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1029
+ msgid "Display billing address"
1030
+ msgstr "Näita arveaadressi"
1031
+
1032
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1033
+ msgid "Only when different from shipping address"
1034
+ msgstr ""
1035
+
1036
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1037
+ msgid "Packing Slip Number:"
1038
+ msgstr ""
1039
+
1040
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1041
+ msgid "Packing Slip Date:"
1042
+ msgstr ""
1043
+
1044
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1045
+ msgid "Legacy Document"
1046
+ msgstr ""
1047
+
1048
+ #: includes/legacy/class-wcpdf-legacy.php:72
1049
+ msgid "Error"
1050
+ msgstr ""
1051
+
1052
+ #: includes/legacy/class-wcpdf-legacy.php:73
1053
+ msgid ""
1054
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1055
+ "mode has been activated, please try again by reloading this page."
1056
+ msgstr ""
1057
+
1058
+ #: includes/legacy/class-wcpdf-legacy.php:76
1059
+ msgid "The following function was called"
1060
+ msgstr ""
1061
+
1062
+ #. translators: <a> tags
1063
+ #: includes/views/attachment-settings-hint.php:23
1064
+ msgid ""
1065
+ "It looks like you haven't setup any email attachments yet, check the "
1066
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1067
+ msgstr ""
1068
+
1069
+ #: includes/views/dompdf-status.php:11
1070
+ msgid "7.1+ (7.4 or higher recommended)"
1071
+ msgstr ""
1072
+
1073
+ #: includes/views/dompdf-status.php:24
1074
+ msgid "Recommended, will use fallback functions"
1075
+ msgstr ""
1076
+
1077
+ #: includes/views/dompdf-status.php:30
1078
+ msgid "Required if you have images in your documents"
1079
+ msgstr ""
1080
+
1081
+ #: includes/views/dompdf-status.php:39
1082
+ msgid "To compress PDF documents"
1083
+ msgstr ""
1084
+
1085
+ #: includes/views/dompdf-status.php:42
1086
+ msgid "Recommended to compress PDF documents"
1087
+ msgstr ""
1088
+
1089
+ #: includes/views/dompdf-status.php:45
1090
+ msgid "For better performances"
1091
+ msgstr ""
1092
+
1093
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1094
+ msgid "Recommended for better performances"
1095
+ msgstr ""
1096
+
1097
+ #: includes/views/dompdf-status.php:51
1098
+ msgid "Better with transparent PNG images"
1099
+ msgstr ""
1100
+
1101
+ #: includes/views/dompdf-status.php:57
1102
+ msgid ""
1103
+ "Required to detect custom templates and to clear the temp folder periodically"
1104
+ msgstr ""
1105
+
1106
+ #: includes/views/dompdf-status.php:60
1107
+ msgid "Check PHP disable_functions"
1108
+ msgstr ""
1109
+
1110
+ #. translators: <a> tags
1111
+ #: includes/views/dompdf-status.php:64
1112
+ msgid ""
1113
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1114
+ "WordPress Memory Limit%2$s"
1115
+ msgstr ""
1116
+
1117
+ #: includes/views/dompdf-status.php:69
1118
+ msgid "Allow remote stylesheets and images"
1119
+ msgstr ""
1120
+
1121
+ #: includes/views/dompdf-status.php:72
1122
+ msgid "allow_url_fopen disabled"
1123
+ msgstr ""
1124
+
1125
+ #: includes/views/dompdf-status.php:75
1126
+ msgid "To compress and decompress font data"
1127
+ msgstr ""
1128
+
1129
+ #: includes/views/dompdf-status.php:78
1130
+ msgid "base64_decode disabled"
1131
+ msgstr ""
1132
+
1133
+ #. translators: <a> tags
1134
+ #: includes/views/dompdf-status.php:98
1135
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1136
+ msgstr ""
1137
+
1138
+ #: includes/views/dompdf-status.php:103
1139
+ msgid "System Configuration"
1140
+ msgstr ""
1141
+
1142
+ #: includes/views/dompdf-status.php:108
1143
+ msgid "Required"
1144
+ msgstr ""
1145
+
1146
+ #: includes/views/dompdf-status.php:109
1147
+ msgid "Present"
1148
+ msgstr ""
1149
+
1150
+ #: includes/views/dompdf-status.php:148
1151
+ msgid "Writable"
1152
+ msgstr ""
1153
+
1154
+ #: includes/views/dompdf-status.php:149
1155
+ msgid "Not writable"
1156
+ msgstr ""
1157
+
1158
+ #: includes/views/dompdf-status.php:154
1159
+ msgid "Central temporary plugin folder"
1160
+ msgstr ""
1161
+
1162
+ #: includes/views/dompdf-status.php:160
1163
+ msgid "Temporary attachments folder"
1164
+ msgstr ""
1165
+
1166
+ #: includes/views/dompdf-status.php:166
1167
+ msgid "Temporary DOMPDF folder"
1168
+ msgstr ""
1169
+
1170
+ #: includes/views/dompdf-status.php:172
1171
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1172
+ msgstr ""
1173
+
1174
+ #: includes/views/dompdf-status.php:183
1175
+ msgid "Write Permissions"
1176
+ msgstr ""
1177
+
1178
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1179
+ #: templates/Simple/packing-slip.php:88
1180
+ msgid "Description"
1181
+ msgstr "Kirjeldus"
1182
+
1183
+ #: includes/views/dompdf-status.php:187
1184
+ msgid "Value"
1185
+ msgstr ""
1186
+
1187
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1188
+ #: includes/views/dompdf-status.php:213
1189
+ msgid ""
1190
+ "The central temp folder is %1$s. By default, this folder is created in the "
1191
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1192
+ "config.php. Alternatively, you can control the specific folder for PDF "
1193
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1194
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1195
+ "by the plugin if the central temp folder is writable)."
1196
+ msgstr ""
1197
+
1198
+ #. translators: directory path
1199
+ #: includes/views/dompdf-status.php:226
1200
+ msgid ""
1201
+ "If the temporary folders were not automatically created by the plugin, "
1202
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1203
+ "Normally, this is fully automated, but if your server has strict security "
1204
+ "settings, this automated copying may have been prohibited. In that case, you "
1205
+ "also need to make sure these folders get synchronized on plugin updates!"
1206
+ msgstr ""
1207
+
1208
+ #: includes/views/setup-wizard/attach-to.php:3
1209
+ msgid "Attach too..."
1210
+ msgstr ""
1211
+
1212
+ #: includes/views/setup-wizard/attach-to.php:4
1213
+ msgid "Select to which emails you would like to attach your invoice."
1214
+ msgstr ""
1215
+
1216
+ #: includes/views/setup-wizard/display-options.php:4
1217
+ msgid "Select some additional display options for your invoice."
1218
+ msgstr ""
1219
+
1220
+ #: includes/views/setup-wizard/good-to-go.php:3
1221
+ msgid "You are good to go!"
1222
+ msgstr ""
1223
+
1224
+ #: includes/views/setup-wizard/good-to-go.php:4
1225
+ msgid "If you have any questions please have a look at our documentation:"
1226
+ msgstr ""
1227
+
1228
+ #: includes/views/setup-wizard/good-to-go.php:5
1229
+ msgid "Invoices & Packing Slips"
1230
+ msgstr ""
1231
+
1232
+ #: includes/views/setup-wizard/good-to-go.php:6
1233
+ msgid "Happy selling!"
1234
+ msgstr ""
1235
+
1236
+ #: includes/views/setup-wizard/logo.php:4
1237
+ msgid "Set the header image that will display on your invoice."
1238
+ msgstr ""
1239
+
1240
+ #: includes/views/setup-wizard/paper-format.php:4
1241
+ msgid "Select the paper format for your invoice."
1242
+ msgstr ""
1243
+
1244
+ #: includes/views/setup-wizard/shop-name.php:3
1245
+ msgid "Enter your shop name"
1246
+ msgstr ""
1247
+
1248
+ #: includes/views/setup-wizard/shop-name.php:4
1249
+ msgid ""
1250
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1251
+ "shop in the fields on the right."
1252
+ msgstr ""
1253
+
1254
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1255
+ msgid ""
1256
+ "Would you like to display the action buttons in your WooCommerce order list? "
1257
+ "The action buttons allow you to manually create a PDF."
1258
+ msgstr ""
1259
+
1260
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1261
+ msgid "(You can always change this setting later via the Screen Options menu)"
1262
+ msgstr ""
1263
+
1264
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1265
+ msgid "Show action buttons"
1266
+ msgstr ""
1267
+
1268
+ #: includes/views/wcpdf-extensions.php:16
1269
+ msgid "Check out these premium extensions!"
1270
+ msgstr "Tutvu preemium laiendustega!"
1271
+
1272
+ #: includes/views/wcpdf-extensions.php:17
1273
+ msgid "click items to read more"
1274
+ msgstr "lisainfo lugemiseks vajuta elemendile"
1275
+
1276
+ #: includes/views/wcpdf-extensions.php:22
1277
+ msgid ""
1278
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1279
+ "system"
1280
+ msgstr ""
1281
+
1282
+ #: includes/views/wcpdf-extensions.php:24
1283
+ msgid ""
1284
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1285
+ "premium extensions:"
1286
+ msgstr ""
1287
+
1288
+ #: includes/views/wcpdf-extensions.php:25
1289
+ msgid "Professional features:"
1290
+ msgstr ""
1291
+
1292
+ #: includes/views/wcpdf-extensions.php:27
1293
+ #: includes/views/wcpdf-extensions.php:57
1294
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1295
+ msgstr "Emaili/prindi/lae alla <b>PDF Credit Notes & Proforma Invoices</b>"
1296
+
1297
+ #: includes/views/wcpdf-extensions.php:28
1298
+ #: includes/views/wcpdf-extensions.php:58
1299
+ msgid ""
1300
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1301
+ "packing slips, for example to a drop-shipper or a supplier."
1302
+ msgstr ""
1303
+ "Saada eraldi <b>teavituse e-kiri</b> koos (või ilma) PDF arve/saatelehega, "
1304
+ "näiteks maaletoojale või varustajale."
1305
+
1306
+ #: includes/views/wcpdf-extensions.php:29
1307
+ #: includes/views/wcpdf-extensions.php:59
1308
+ msgid ""
1309
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1310
+ "document) to the WooCommerce emails of your choice."
1311
+ msgstr ""
1312
+ "Manusta <b>kuni 3 staatilist faili</b> (näiteks müügitingimuste document) "
1313
+ "enda valitud WooCommerce e-kirjade külge."
1314
+
1315
+ #: includes/views/wcpdf-extensions.php:30
1316
+ #: includes/views/wcpdf-extensions.php:60
1317
+ msgid ""
1318
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1319
+ "and credit notes or utilize the main invoice numbering system"
1320
+ msgstr ""
1321
+ "Kasuta <b>eraldi numbreid</b> ja/või formaati proforma arvete ning krediidi "
1322
+ "märkuste jaoks või kasuta põhilist arvete numbrisüsteemi."
1323
+
1324
+ #: includes/views/wcpdf-extensions.php:31
1325
+ #: includes/views/wcpdf-extensions.php:61
1326
+ msgid ""
1327
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1328
+ "additional custom fields, font sizes etc. without the need to create a "
1329
+ "custom template."
1330
+ msgstr ""
1331
+ "<b>Kohanda tarne & arve aadresside</b> formaati lisaväljade, fondisuuruste "
1332
+ "ja muu taolisega ilma kohandatud malli loomise vajaduseta."
1333
+
1334
+ #: includes/views/wcpdf-extensions.php:32
1335
+ #: includes/views/wcpdf-extensions.php:62
1336
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1337
+ msgstr "Kasuta pluginat mitmekeelses <b>WPML</b> keskkonnas"
1338
+
1339
+ #: includes/views/wcpdf-extensions.php:34
1340
+ #: includes/views/wcpdf-extensions.php:114
1341
+ msgid "Advanced, customizable templates"
1342
+ msgstr "Keerukad, kohandatavad mallid"
1343
+
1344
+ #: includes/views/wcpdf-extensions.php:36
1345
+ #: includes/views/wcpdf-extensions.php:117
1346
+ msgid ""
1347
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1348
+ "your needs with a drag & drop customizer"
1349
+ msgstr ""
1350
+ "Kohanda kogu arve sisu (hinnad, maksud, pisipildid) vastavalt oma "
1351
+ "vajadustele lohistamismeetodil."
1352
+
1353
+ #: includes/views/wcpdf-extensions.php:37
1354
+ #: includes/views/wcpdf-extensions.php:118
1355
+ msgid "Two extra stylish premade templates (Modern & Business)"
1356
+ msgstr "Kaks eriti stiilset valmismalli (Modern & Business)"
1357
+
1358
+ #: includes/views/wcpdf-extensions.php:39
1359
+ #: includes/views/wcpdf-extensions.php:63
1360
+ msgid "Upload automatically to dropbox"
1361
+ msgstr ""
1362
+
1363
+ #: includes/views/wcpdf-extensions.php:41
1364
+ msgid ""
1365
+ "This extension conveniently uploads all the invoices (and other pdf "
1366
+ "documents from the professional extension) that are emailed to your "
1367
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1368
+ "date!"
1369
+ msgstr ""
1370
+ "See laiendus laeb kõik kliendile saadetavad arved (ja muud pdf dokumendid "
1371
+ "professionaali laiendusest) Dropboxi. Parim viis hoida arvete haldamine "
1372
+ "ajakohane!"
1373
+
1374
+ #: includes/views/wcpdf-extensions.php:44
1375
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1376
+ msgstr ""
1377
+
1378
+ #: includes/views/wcpdf-extensions.php:53
1379
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1380
+ msgstr ""
1381
+ "Hakka profiks: proforma arved, krediidi märkused (=tagasimaksed) & muud!"
1382
+
1383
+ #: includes/views/wcpdf-extensions.php:55
1384
+ msgid ""
1385
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1386
+ "features:"
1387
+ msgstr ""
1388
+ "Lae WooCommerce PDF Invoices & Packing Slips üle järgnevate omadustega:"
1389
+
1390
+ #: includes/views/wcpdf-extensions.php:65
1391
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1392
+ msgstr "Hangi WooCommerce PDF Invoices & Packing Slips Professional!"
1393
+
1394
+ #: includes/views/wcpdf-extensions.php:73
1395
+ msgid "Automatically send payment reminders to your customers"
1396
+ msgstr ""
1397
+
1398
+ #: includes/views/wcpdf-extensions.php:75
1399
+ msgid "WooCommerce Smart Reminder emails"
1400
+ msgstr ""
1401
+
1402
+ #: includes/views/wcpdf-extensions.php:77
1403
+ msgid "<b>Completely automatic</b> scheduled emails"
1404
+ msgstr ""
1405
+
1406
+ #: includes/views/wcpdf-extensions.php:78
1407
+ msgid ""
1408
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1409
+ "from the order (name, order total, etc)"
1410
+ msgstr ""
1411
+
1412
+ #: includes/views/wcpdf-extensions.php:79
1413
+ msgid ""
1414
+ "Configure the exact requirements for sending an email (time after order, "
1415
+ "order status, payment method)"
1416
+ msgstr ""
1417
+
1418
+ #: includes/views/wcpdf-extensions.php:80
1419
+ msgid ""
1420
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1421
+ "order language."
1422
+ msgstr ""
1423
+
1424
+ #: includes/views/wcpdf-extensions.php:81
1425
+ msgid ""
1426
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1427
+ "reminders, repeat purchases)"
1428
+ msgstr ""
1429
+
1430
+ #: includes/views/wcpdf-extensions.php:82
1431
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1432
+ msgstr ""
1433
+
1434
+ #: includes/views/wcpdf-extensions.php:84
1435
+ msgid "Get WooCommerce Smart Reminder Emails"
1436
+ msgstr ""
1437
+
1438
+ #: includes/views/wcpdf-extensions.php:93
1439
+ msgid ""
1440
+ "Automatically send new orders or packing slips to your printer, as soon as "
1441
+ "the customer orders!"
1442
+ msgstr ""
1443
+ "Saada uued tellimused või saatelehed automaatselt printerisse, niipea kui "
1444
+ "klient tellib!"
1445
+
1446
+ #: includes/views/wcpdf-extensions.php:99
1447
+ msgid ""
1448
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1449
+ "partners at Simba Hosting"
1450
+ msgstr ""
1451
+ "Tutvu laiendusega WooCommerce Automatic Order Printing meie partnerfirmalt "
1452
+ "Simba Hosting"
1453
+
1454
+ #: includes/views/wcpdf-extensions.php:100
1455
+ msgid "WooCommerce Automatic Order Printing"
1456
+ msgstr "automaatne WooCommerce tellimuste printimine"
1457
+
1458
+ #. translators: Premium Templates link
1459
+ #: includes/views/wcpdf-extensions.php:120
1460
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1461
+ msgstr "Tutvu PDF Invoice & Packing Slips preemium mallidega lehel %s."
1462
+
1463
+ #. translators: email link
1464
+ #: includes/views/wcpdf-extensions.php:122
1465
+ msgid "For custom templates, contact us at %s."
1466
+ msgstr "Kohandatud mallide jaoks võta meiega ühendust: %s."
1467
+
1468
+ #: includes/views/wcpdf-settings-page.php:9
1469
+ msgid "WooCommerce PDF Invoices"
1470
+ msgstr "WooCommerce PDF Arved"
1471
+
1472
+ #: includes/wcpdf-functions.php:209
1473
+ msgid "Error creating PDF, please contact the site owner."
1474
+ msgstr ""
1475
+
1476
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1477
+ msgid "Billing Address:"
1478
+ msgstr "Arve aadress:"
1479
+
1480
+ #: templates/Simple/invoice.php:48
1481
+ msgid "Ship To:"
1482
+ msgstr "Vastuvõtja:"
1483
+
1484
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1485
+ msgid "Order Number:"
1486
+ msgstr "Tellimuse number:"
1487
+
1488
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1489
+ msgid "Order Date:"
1490
+ msgstr "Tellimuse kuupäev:"
1491
+
1492
+ #: templates/Simple/invoice.php:78
1493
+ msgid "Payment Method:"
1494
+ msgstr "Makseviis:"
1495
+
1496
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1497
+ msgid "Product"
1498
+ msgstr "Toode"
1499
+
1500
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1501
+ msgid "Quantity"
1502
+ msgstr "Kogus"
1503
+
1504
+ #: templates/Simple/invoice.php:94
1505
+ msgid "Price"
1506
+ msgstr "Hind"
1507
+
1508
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1509
+ msgid "SKU"
1510
+ msgstr "Tootekood"
1511
+
1512
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1513
+ msgid "SKU:"
1514
+ msgstr "Tootekood:"
1515
+
1516
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1517
+ msgid "Weight:"
1518
+ msgstr "Kaal:"
1519
+
1520
+ #: templates/Simple/invoice.php:123
1521
+ msgid "Notes"
1522
+ msgstr ""
1523
+
1524
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1525
+ msgid "Customer Notes"
1526
+ msgstr "Kliendi märkused"
1527
+
1528
+ #: templates/Simple/packing-slip.php:35
1529
+ msgid "Shipping Address:"
1530
+ msgstr "Tarne aadress:"
1531
+
1532
+ #: templates/Simple/packing-slip.php:66
1533
+ msgid "Shipping Method:"
1534
+ msgstr "Tarneviis:"
1535
+
1536
+ #. translators: <a> tags
1537
+ #: woocommerce-pdf-invoices-packingslips.php:271
1538
+ msgid ""
1539
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1540
+ "installed & activated!"
1541
+ msgstr ""
1542
+
1543
+ #: woocommerce-pdf-invoices-packingslips.php:282
1544
+ msgid ""
1545
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1546
+ "recommended)."
1547
+ msgstr ""
1548
+
1549
+ #. translators: <a> tags
1550
+ #: woocommerce-pdf-invoices-packingslips.php:284
1551
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1552
+ msgstr ""
1553
+
1554
+ #. translators: <a> tags
1555
+ #: woocommerce-pdf-invoices-packingslips.php:286
1556
+ msgid ""
1557
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1558
+ "to enable backwards compatibility with PHP5.6."
1559
+ msgstr ""
1560
+
1561
+ #. translators: directory path
1562
+ #: woocommerce-pdf-invoices-packingslips.php:374
1563
+ msgid ""
1564
+ "The PDF files in %s are not currently protected due to your site running on "
1565
+ "<strong>NGINX</strong>."
1566
+ msgstr ""
1567
+
1568
+ #: woocommerce-pdf-invoices-packingslips.php:375
1569
+ msgid "To protect them, you must click the button below."
1570
+ msgstr ""
1571
+
1572
+ #. translators: plugin name
1573
+ #: woocommerce-pdf-invoices-packingslips.php:419
1574
+ msgid ""
1575
+ "When sending emails with MailPoet 3 and the active sending method is "
1576
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1577
+ "the emails."
1578
+ msgstr ""
1579
+
1580
+ #. translators: "Your web host / web server"
1581
+ #: woocommerce-pdf-invoices-packingslips.php:421
1582
+ msgid "To fix this you should select other method like %1$s or %2$s."
1583
+ msgstr ""
1584
+
1585
+ #. translators: "Your web host / web server"
1586
+ #: woocommerce-pdf-invoices-packingslips.php:421
1587
+ msgid "Your web host / web server"
1588
+ msgstr ""
1589
+
1590
+ #: woocommerce-pdf-invoices-packingslips.php:422
1591
+ msgid "Change MailPoet sending method"
1592
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-fi.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-fi.po CHANGED
@@ -1,1759 +1,1589 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:18+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: Contrast Digital Oy <hello@contrast.fi>\n"
10
- "Language: fi\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 3.0\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #. Plugin Name of the plugin
22
- msgid "WooCommerce PDF Invoices & Packing Slips"
23
- msgstr "WooCommerce PDF Invoices & Packing Slips"
24
-
25
- #. Plugin URI of the plugin
26
- #. Author URI of the plugin
27
- msgid "http://www.wpovernight.com"
28
- msgstr "http://www.wpovernight.com"
29
-
30
- #. Description of the plugin
31
- msgid ""
32
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
- msgstr ""
34
-
35
- #. Author of the plugin
36
- msgid "Ewout Fernhout"
37
- msgstr "Ewout Fernhout"
38
-
39
- #. translators: rounded count
40
- #: includes/class-wcpdf-admin.php:92
41
- msgid "Wow, you have created more than %d invoices with our plugin!"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:93
45
- msgid ""
46
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
- "rating. Help us spread the word and boost our motivation!"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:95
51
- msgid "Yes you deserve it!"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
- #: includes/views/attachment-settings-hint.php:24
56
- #: includes/views/wcpdf-extensions.php:131
57
- #: woocommerce-pdf-invoices-packingslips.php:377
58
- #: woocommerce-pdf-invoices-packingslips.php:423
59
- msgid "Hide this message"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-admin.php:96
63
- msgid "Already did!"
64
- msgstr ""
65
-
66
- #: includes/class-wcpdf-admin.php:97
67
- msgid "Actually, I have a complaint..."
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:132
71
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:132
75
- msgid "Jumpstart the plugin by following our wizard!"
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:133
79
- msgid "Run the Setup Wizard"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:133
83
- msgid "I am the wizard"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
- #: includes/documents/class-wcpdf-invoice.php:302
88
- msgid "Invoice Number"
89
- msgstr "Laskun numero"
90
-
91
- #: includes/class-wcpdf-admin.php:261
92
- msgid "Send order email"
93
- msgstr ""
94
-
95
- #: includes/class-wcpdf-admin.php:272
96
- msgid "Create PDF"
97
- msgstr "Luo PDF"
98
-
99
- #: includes/class-wcpdf-admin.php:282
100
- msgid "PDF document data"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:304
104
- msgid "Choose an email to send&hellip;"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-admin.php:320
108
- msgid "Save order & send email"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:322
112
- msgid "Send email"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:378
116
- #: includes/documents/class-wcpdf-invoice.php:460
117
- msgid "Invoice Number:"
118
- msgstr "Laskun numero:"
119
-
120
- #: includes/class-wcpdf-admin.php:381
121
- #: includes/documents/class-wcpdf-invoice.php:468
122
- msgid "Invoice Date:"
123
- msgstr "Laskun Päiväys:"
124
-
125
- #: includes/class-wcpdf-admin.php:384
126
- msgid "Notes (printed in the invoice):"
127
- msgstr ""
128
-
129
- #. translators: document title
130
- #: includes/class-wcpdf-admin.php:469
131
- msgid "Set %s number & date"
132
- msgstr ""
133
-
134
- #: includes/class-wcpdf-admin.php:478
135
- msgid "unformatted!"
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-admin.php:518
139
- msgid "Save changes"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:519
143
- msgid "Cancel"
144
- msgstr ""
145
-
146
- #. translators: name/description of the context for document creation logs
147
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
- msgid "order details (number and/or date set manually)"
149
- msgstr ""
150
-
151
- #. translators: %s: email title
152
- #: includes/class-wcpdf-admin.php:647
153
- msgid "%s email notification manually sent."
154
- msgstr ""
155
-
156
- #: includes/class-wcpdf-admin.php:734
157
- msgid "Nonce expired!"
158
- msgstr ""
159
-
160
- #: includes/class-wcpdf-admin.php:740
161
- msgid "Bad action!"
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:746
165
- msgid "Incomplete request!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:752
169
- msgid "No permissions!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:776
173
- msgid "Document data saved!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:777
177
- msgid "An error occurred while saving the document data!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:780
181
- msgid "Document regenerated!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:781
185
- msgid "An error occurred while regenerating the document!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:784
189
- msgid "Document deleted!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:785
193
- msgid "An error occurred while deleting the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:841
197
- msgid "Document does not exist."
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:850
201
- msgid "Document is empty."
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:881
205
- msgid "DEBUG output enabled"
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-assets.php:91
209
- msgid "Are you sure you want to delete this document? This cannot be undone."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-assets.php:92
213
- msgid ""
214
- "Are you sure you want to regenerate this document? This will make the "
215
- "document reflect the most current settings (such as footer text, document "
216
- "name, etc.) rather than using historical settings."
217
- msgstr ""
218
-
219
- #: includes/class-wcpdf-frontend.php:126
220
- msgid "Download invoice (PDF)"
221
- msgstr "Lataa lasku (PDF)"
222
-
223
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
224
- #: includes/class-wcpdf-main.php:338
225
- msgid "You do not have sufficient permissions to access this page."
226
- msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
227
-
228
- #: includes/class-wcpdf-main.php:275
229
- msgid "You haven't selected any orders"
230
- msgstr ""
231
-
232
- #: includes/class-wcpdf-main.php:279
233
- msgid "Some of the export parameters are missing."
234
- msgstr "Osa vientiparametreistä on puutteellisia."
235
-
236
- #. translators: document type
237
- #: includes/class-wcpdf-main.php:379
238
- msgid "Document of type '%s' for the selected order(s) could not be generated"
239
- msgstr ""
240
-
241
- #. translators: 1. plugin name, 2. directory path
242
- #: includes/class-wcpdf-main.php:591
243
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
- msgstr ""
245
-
246
- #: includes/class-wcpdf-main.php:592
247
- msgid ""
248
- "Please check your directories write permissions or contact your hosting "
249
- "service provider."
250
- msgstr ""
251
-
252
- #: includes/class-wcpdf-main.php:907
253
- #: includes/documents/class-wcpdf-invoice.php:286
254
- msgid "Invoice Date"
255
- msgstr ""
256
-
257
- #. translators: name/description of the context for document creation logs
258
- #: includes/class-wcpdf-main.php:937
259
- msgid "bulk order action"
260
- msgstr ""
261
-
262
- #. translators: name/description of the context for document creation logs
263
- #: includes/class-wcpdf-main.php:945
264
- msgid "single order action"
265
- msgstr ""
266
-
267
- #. translators: name/description of the context for document creation logs
268
- #: includes/class-wcpdf-main.php:953
269
- msgid "my account"
270
- msgstr ""
271
-
272
- #. translators: name/description of the context for document creation logs
273
- #: includes/class-wcpdf-main.php:961
274
- msgid "email attachment"
275
- msgstr ""
276
-
277
- #. translators: 1. document title, 2. creation source
278
- #: includes/class-wcpdf-main.php:970
279
- msgid "PDF %1$s created via %2$s."
280
- msgstr ""
281
-
282
- #. translators: document title
283
- #: includes/class-wcpdf-main.php:1006
284
- msgid "Order %s Saved"
285
- msgstr ""
286
-
287
- #: includes/class-wcpdf-settings-callbacks.php:27
288
- msgid ""
289
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
- "Do not use them on a live website!"
291
- msgstr ""
292
- "<b>Huom!</b> Nämä asetukset on tarkoitettu vain vianetsintään! Älä käytä "
293
- "niitä tuotantokäytössä!"
294
-
295
- #: includes/class-wcpdf-settings-callbacks.php:36
296
- msgid ""
297
- "These are used for the (optional) footer columns in the <em>Modern "
298
- "(Premium)</em> template, but can also be used for other elements in your "
299
- "custom template"
300
- msgstr ""
301
- "Nämä asetukset koskevat alapalkin kolumneja <em>Modern (Premium)</em> -"
302
- "sivupohjassa, mutta niitä voidaan myös käyttää muissa elementeissä omissa "
303
- "sivupohjissasi."
304
-
305
- #: includes/class-wcpdf-settings-callbacks.php:383
306
- msgid "Image resolution"
307
- msgstr "Kuvan resoluutio"
308
-
309
- #: includes/class-wcpdf-settings-callbacks.php:410
310
- msgid "Save"
311
- msgstr ""
312
-
313
- #: includes/class-wcpdf-settings-debug.php:45
314
- #: woocommerce-pdf-invoices-packingslips.php:376
315
- msgid "Generate random temporary folder name"
316
- msgstr ""
317
-
318
- #. translators: directory path
319
- #: includes/class-wcpdf-settings-debug.php:58
320
- msgid "Temporary folder moved to %s"
321
- msgstr ""
322
-
323
- #: includes/class-wcpdf-settings-debug.php:68
324
- msgid "Reinstall fonts"
325
- msgstr ""
326
-
327
- #: includes/class-wcpdf-settings-debug.php:89
328
- msgid "Fonts reinstalled!"
329
- msgstr ""
330
-
331
- #: includes/class-wcpdf-settings-debug.php:98
332
- msgid "Remove temporary files"
333
- msgstr ""
334
-
335
- #: includes/class-wcpdf-settings-debug.php:109
336
- msgid "Unable to read temporary folder contents!"
337
- msgstr ""
338
-
339
- #. translators: 1,2. file count
340
- #: includes/class-wcpdf-settings-debug.php:127
341
- msgid "Unable to delete %1$d files! (deleted %2$d)"
342
- msgstr ""
343
-
344
- #. translators: file count
345
- #: includes/class-wcpdf-settings-debug.php:131
346
- msgid "Successfully deleted %d files!"
347
- msgstr ""
348
-
349
- #: includes/class-wcpdf-settings-debug.php:135
350
- msgid "Nothing to delete!"
351
- msgstr ""
352
-
353
- #: includes/class-wcpdf-settings-debug.php:146
354
- msgid "Delete legacy (1.X) settings"
355
- msgstr ""
356
-
357
- #: includes/class-wcpdf-settings-debug.php:162
358
- msgid "Legacy settings deleted!"
359
- msgstr ""
360
-
361
- #: includes/class-wcpdf-settings-debug.php:192
362
- msgid "Debug settings"
363
- msgstr "Vian paikannnus asetukset"
364
-
365
- #: includes/class-wcpdf-settings-debug.php:198
366
- msgid "Legacy mode"
367
- msgstr ""
368
-
369
- #: includes/class-wcpdf-settings-debug.php:204
370
- msgid ""
371
- "Legacy mode ensures compatibility with templates and filters from previous "
372
- "versions."
373
- msgstr ""
374
-
375
- #: includes/class-wcpdf-settings-debug.php:210
376
- msgid "Legacy textdomain fallback"
377
- msgstr ""
378
-
379
- #: includes/class-wcpdf-settings-debug.php:216
380
- msgid ""
381
- "Legacy textdomain fallback ensures compatibility with translation files from "
382
- "versions prior to 2017-05-15."
383
- msgstr ""
384
-
385
- #: includes/class-wcpdf-settings-debug.php:222
386
- msgid "Allow guest access"
387
- msgstr ""
388
-
389
- #: includes/class-wcpdf-settings-debug.php:228
390
- msgid ""
391
- "Enable this to allow customers that purchase without an account to access "
392
- "their PDF with a unique key"
393
- msgstr ""
394
-
395
- #: includes/class-wcpdf-settings-debug.php:234
396
- msgid "Calculate document numbers (slow)"
397
- msgstr ""
398
-
399
- #: includes/class-wcpdf-settings-debug.php:240
400
- msgid ""
401
- "Document numbers (such as invoice numbers) are generated using "
402
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
403
- "with more than 1."
404
- msgstr ""
405
-
406
- #: includes/class-wcpdf-settings-debug.php:246
407
- msgid "Enable debug output"
408
- msgstr "Ota käyttöön vikalogi"
409
-
410
- #: includes/class-wcpdf-settings-debug.php:252
411
- msgid ""
412
- "Enable this option to output plugin errors if you're getting a blank page or "
413
- "other PDF generation issues"
414
- msgstr ""
415
- "Ota käyttöön tämä toiminto näyttääksesi lisäosan virheilmoitukset jos "
416
- "lisäosa näyttää pelkän tyhjän sivun tai saat muita virheilmoituksia"
417
-
418
- #: includes/class-wcpdf-settings-debug.php:253
419
- msgid ""
420
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
421
- "places on your site too, therefor this is not recommended to leave it "
422
- "enabled on live sites."
423
- msgstr ""
424
-
425
- #: includes/class-wcpdf-settings-debug.php:254
426
- msgid ""
427
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
428
- "order basis."
429
- msgstr ""
430
-
431
- #: includes/class-wcpdf-settings-debug.php:260
432
- msgid "Enable automatic cleanup"
433
- msgstr ""
434
-
435
- #. translators: number of days
436
- #: includes/class-wcpdf-settings-debug.php:268
437
- msgid "every %s days"
438
- msgstr ""
439
-
440
- #: includes/class-wcpdf-settings-debug.php:273
441
- msgid ""
442
- "Automatically clean up PDF files stored in the temporary folder (used for "
443
- "email attachments)"
444
- msgstr ""
445
-
446
- #: includes/class-wcpdf-settings-debug.php:274
447
- msgid ""
448
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
449
- "automatic cleanup but not enabled on your server."
450
- msgstr ""
451
-
452
- #: includes/class-wcpdf-settings-debug.php:280
453
- msgid "Output to HTML"
454
- msgstr "HTML muotoilu"
455
-
456
- #: includes/class-wcpdf-settings-debug.php:286
457
- msgid ""
458
- "Send the template output as HTML to the browser instead of creating a PDF."
459
- msgstr ""
460
- "Lähetä sivupohja HTML muodossa selaimeen, sen sijaan että luotaisiin PDF "
461
- "tiedosto"
462
-
463
- #: includes/class-wcpdf-settings-debug.php:287
464
- msgid ""
465
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
466
- "order basis."
467
- msgstr ""
468
-
469
- #: includes/class-wcpdf-settings-debug.php:293
470
- msgid "Use alternative HTML5 parser to parse HTML"
471
- msgstr ""
472
-
473
- #: includes/class-wcpdf-settings-debug.php:304
474
- msgid "Log to order notes"
475
- msgstr ""
476
-
477
- #: includes/class-wcpdf-settings-debug.php:310
478
- msgid "Log PDF document creation to order notes."
479
- msgstr ""
480
-
481
- #: includes/class-wcpdf-settings-documents.php:30
482
- #: includes/class-wcpdf-settings.php:97
483
- msgid "Documents"
484
- msgstr ""
485
-
486
- #: includes/class-wcpdf-settings-documents.php:36
487
- #: includes/class-wcpdf-settings-documents.php:57
488
- msgid "untitled"
489
- msgstr ""
490
-
491
- #: includes/class-wcpdf-settings-documents.php:50
492
- msgid ""
493
- "All available documents are listed below. Click on a document to configure "
494
- "it."
495
- msgstr ""
496
-
497
- #: includes/class-wcpdf-settings-general.php:40
498
- msgid "General settings"
499
- msgstr "Yleiset asetukset"
500
-
501
- #: includes/class-wcpdf-settings-general.php:46
502
- msgid "How do you want to view the PDF?"
503
- msgstr "Miten haluat esittää PDF-tiedoston?"
504
-
505
- #: includes/class-wcpdf-settings-general.php:53
506
- msgid "Download the PDF"
507
- msgstr "Lataa PDF-tiedosto"
508
-
509
- #: includes/class-wcpdf-settings-general.php:54
510
- msgid "Open the PDF in a new browser tab/window"
511
- msgstr "Avaa PDF-tiedosto uudessa selainikkunassa/välilehdellä"
512
-
513
- #: includes/class-wcpdf-settings-general.php:61
514
- msgid "Choose a template"
515
- msgstr "Valitse sivupohja"
516
-
517
- #. translators: 1,2. template paths
518
- #: includes/class-wcpdf-settings-general.php:69
519
- msgid ""
520
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
521
- "your (child) theme in <code>%2$s</code> to customize them"
522
- msgstr ""
523
-
524
- #: includes/class-wcpdf-settings-general.php:75
525
- msgid "Paper size"
526
- msgstr "Paperin koko"
527
-
528
- #: includes/class-wcpdf-settings-general.php:82
529
- #: includes/views/setup-wizard/paper-format.php:12
530
- msgid "A4"
531
- msgstr "A4"
532
-
533
- #: includes/class-wcpdf-settings-general.php:83
534
- #: includes/views/setup-wizard/paper-format.php:13
535
- msgid "Letter"
536
- msgstr "Kirje"
537
-
538
- #: includes/class-wcpdf-settings-general.php:90
539
- msgid "Test mode"
540
- msgstr ""
541
-
542
- #: includes/class-wcpdf-settings-general.php:96
543
- msgid ""
544
- "With test mode enabled, any document generated will always use the latest "
545
- "settings, rather than using the settings as configured at the time the "
546
- "document was first created."
547
- msgstr ""
548
-
549
- #: includes/class-wcpdf-settings-general.php:96
550
- msgid ""
551
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
552
- "setting and will still be generated."
553
- msgstr ""
554
-
555
- #: includes/class-wcpdf-settings-general.php:102
556
- msgid "Extended currency symbol support"
557
- msgstr ""
558
-
559
- #: includes/class-wcpdf-settings-general.php:108
560
- msgid "Enable this if your currency symbol is not displaying properly"
561
- msgstr ""
562
-
563
- #: includes/class-wcpdf-settings-general.php:114
564
- msgid "Enable font subsetting"
565
- msgstr ""
566
-
567
- #: includes/class-wcpdf-settings-general.php:120
568
- msgid ""
569
- "Font subsetting can reduce file size by only including the characters that "
570
- "are used in the PDF, but limits the ability to edit PDF files later. "
571
- "Recommended if you're using an Asian font."
572
- msgstr ""
573
-
574
- #: includes/class-wcpdf-settings-general.php:126
575
- msgid "Shop header/logo"
576
- msgstr "Kaupan logo"
577
-
578
- #: includes/class-wcpdf-settings-general.php:132
579
- #: includes/views/setup-wizard/logo.php:20
580
- msgid "Select or upload your invoice header/logo"
581
- msgstr "Valitse tai lataa laskun logo"
582
-
583
- #: includes/class-wcpdf-settings-general.php:133
584
- #: includes/views/setup-wizard/logo.php:20
585
- msgid "Set image"
586
- msgstr "Aseta kuva"
587
-
588
- #: includes/class-wcpdf-settings-general.php:134
589
- #: includes/views/setup-wizard/logo.php:20
590
- msgid "Remove image"
591
- msgstr "Poista kuva"
592
-
593
- #: includes/class-wcpdf-settings-general.php:141
594
- msgid "Logo height"
595
- msgstr ""
596
-
597
- #: includes/class-wcpdf-settings-general.php:149
598
- msgid ""
599
- "Enter the total height of the logo in mm, cm or in and use a dot for "
600
- "decimals.<br/>For example: 1.15in or 40mm"
601
- msgstr ""
602
-
603
- #: includes/class-wcpdf-settings-general.php:155
604
- #: includes/class-wcpdf-setup-wizard.php:47
605
- msgid "Shop Name"
606
- msgstr "Kaupan nimi"
607
-
608
- #: includes/class-wcpdf-settings-general.php:168
609
- msgid "Shop Address"
610
- msgstr "Kaupan osoite"
611
-
612
- #: includes/class-wcpdf-settings-general.php:183
613
- msgid "Footer: terms & conditions, policies, etc."
614
- msgstr "Alapalkki: ehdot, periaatteet jne…"
615
-
616
- #: includes/class-wcpdf-settings-general.php:198
617
- msgid "Extra template fields"
618
- msgstr "Lisäkentät"
619
-
620
- #: includes/class-wcpdf-settings-general.php:204
621
- msgid "Extra field 1"
622
- msgstr "Lisäkenttä 1"
623
-
624
- #: includes/class-wcpdf-settings-general.php:212
625
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
626
- msgstr "Tämä on alapalkin sarake 1 <i>Modern (Premium)</i> -sivupohjassa."
627
-
628
- #: includes/class-wcpdf-settings-general.php:219
629
- msgid "Extra field 2"
630
- msgstr "Lisäkenttä 2"
631
-
632
- #: includes/class-wcpdf-settings-general.php:227
633
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
634
- msgstr "Tämä on alapalkin sarake 2 <i>Modern (Premium)</i> -sivupohjassa."
635
-
636
- #: includes/class-wcpdf-settings-general.php:234
637
- msgid "Extra field 3"
638
- msgstr "Lisäkenttä 3"
639
-
640
- #: includes/class-wcpdf-settings-general.php:242
641
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
642
- msgstr "Tämä on alapalkin sarake 3 <i>Modern (Premium)</i> -sivupohjassa."
643
-
644
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
645
- msgid "PDF Invoices"
646
- msgstr "PDF-laskut"
647
-
648
- #: includes/class-wcpdf-settings.php:74
649
- msgid "Documentation"
650
- msgstr ""
651
-
652
- #: includes/class-wcpdf-settings.php:75
653
- msgid "Support Forum"
654
- msgstr ""
655
-
656
- #. translators: database row value
657
- #: includes/class-wcpdf-settings.php:88
658
- msgid ""
659
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
660
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
661
- "document numbers (slow)' setting in the Status tab to use an alternate "
662
- "method."
663
- msgstr ""
664
-
665
- #: includes/class-wcpdf-settings.php:96
666
- msgid "General"
667
- msgstr "Yleiset"
668
-
669
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
670
- msgid "Status"
671
- msgstr "Tila"
672
-
673
- #: includes/class-wcpdf-setup-wizard.php:51
674
- #: includes/views/setup-wizard/logo.php:3
675
- msgid "Your logo"
676
- msgstr ""
677
-
678
- #: includes/class-wcpdf-setup-wizard.php:55
679
- msgid "Attachments"
680
- msgstr ""
681
-
682
- #: includes/class-wcpdf-setup-wizard.php:59
683
- #: includes/views/setup-wizard/display-options.php:3
684
- msgid "Display options"
685
- msgstr ""
686
-
687
- #: includes/class-wcpdf-setup-wizard.php:63
688
- #: includes/views/setup-wizard/paper-format.php:3
689
- msgid "Paper format"
690
- msgstr ""
691
-
692
- #: includes/class-wcpdf-setup-wizard.php:67
693
- #: includes/views/setup-wizard/show-action-buttons.php:3
694
- msgid "Action buttons"
695
- msgstr ""
696
-
697
- #: includes/class-wcpdf-setup-wizard.php:71
698
- msgid "Ready!"
699
- msgstr ""
700
-
701
- #: includes/class-wcpdf-setup-wizard.php:133
702
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
703
- msgstr ""
704
-
705
- #: includes/class-wcpdf-setup-wizard.php:185
706
- msgid "Previous"
707
- msgstr ""
708
-
709
- #: includes/class-wcpdf-setup-wizard.php:190
710
- msgid "Next"
711
- msgstr ""
712
-
713
- #: includes/class-wcpdf-setup-wizard.php:191
714
- msgid "Skip this step"
715
- msgstr ""
716
-
717
- #: includes/class-wcpdf-setup-wizard.php:193
718
- msgid "Finish"
719
- msgstr ""
720
-
721
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
722
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
723
- msgid "N/A"
724
- msgstr "-"
725
-
726
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
727
- msgid "Payment method"
728
- msgstr "Maksutapa"
729
-
730
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
731
- msgid "Shipping method"
732
- msgstr "Toimitustapa"
733
-
734
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
735
- msgid "Subtotal"
736
- msgstr "Välisumma"
737
-
738
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
739
- msgid "Shipping"
740
- msgstr "Toimitus"
741
-
742
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
743
- msgid "Discount"
744
- msgstr "Alennus"
745
-
746
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
747
- msgid "VAT"
748
- msgstr "Arvonlisävero"
749
-
750
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
751
- msgid "Tax rate"
752
- msgstr "Veroprosentti"
753
-
754
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
755
- msgid "Total ex. VAT"
756
- msgstr "Yhteensä (ei sis. Alv)"
757
-
758
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
759
- msgid "Total"
760
- msgstr "Yhteensä"
761
-
762
- #. translators: 1. credit note title, 2. refund id
763
- #: includes/documents/abstract-wcpdf-order-document.php:336
764
- msgid "%1$s (refund #%2$s) was regenerated."
765
- msgstr ""
766
-
767
- #. translators: 1. credit note title, 2. refund id
768
- #: includes/documents/abstract-wcpdf-order-document.php:336
769
- msgid "%s was regenerated"
770
- msgstr ""
771
-
772
- #. translators: %s: document name
773
- #: includes/documents/abstract-wcpdf-order-document.php:422
774
- msgid "%s Number:"
775
- msgstr ""
776
-
777
- #. translators: %s: document name
778
- #: includes/documents/abstract-wcpdf-order-document.php:428
779
- msgid "%s Date:"
780
- msgstr ""
781
-
782
- #: includes/documents/abstract-wcpdf-order-document.php:891
783
- msgid "Admin email"
784
- msgstr ""
785
-
786
- #: includes/documents/abstract-wcpdf-order-document.php:894
787
- msgid "Manual email"
788
- msgstr ""
789
-
790
- #: includes/documents/class-wcpdf-invoice.php:32
791
- #: includes/documents/class-wcpdf-invoice.php:56
792
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
793
- msgid "Invoice"
794
- msgstr "Lasku"
795
-
796
- # This is a filename (prefix). do not use spaces or special characters!
797
- #: includes/documents/class-wcpdf-invoice.php:131
798
- msgid "invoice"
799
- msgid_plural "invoices"
800
- msgstr[0] "lasku"
801
- msgstr[1] "laskut"
802
-
803
- #: includes/documents/class-wcpdf-invoice.php:186
804
- #: includes/documents/class-wcpdf-packing-slip.php:88
805
- msgid "Enable"
806
- msgstr ""
807
-
808
- #: includes/documents/class-wcpdf-invoice.php:197
809
- msgid "Attach to:"
810
- msgstr ""
811
-
812
- #. translators: directory path
813
- #: includes/documents/class-wcpdf-invoice.php:205
814
- msgid ""
815
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
816
- "permissions for this folder! Without having write access to this folder, the "
817
- "plugin will not be able to email invoices."
818
- msgstr ""
819
- "Näyttää siltä, että temp-tiedosto (<code>%s</code>) on kirjoitussuojattu, "
820
- "tarkista tiedosto-oikeudet tälle kensiolle. Ilman kirjoitusoikeutta tämä "
821
- "lisäosa ei pysty lähettämään laskuja sähköpostilla."
822
-
823
- #: includes/documents/class-wcpdf-invoice.php:211
824
- msgid "Disable for:"
825
- msgstr ""
826
-
827
- #: includes/documents/class-wcpdf-invoice.php:220
828
- msgid "Select one or more statuses"
829
- msgstr ""
830
-
831
- #: includes/documents/class-wcpdf-invoice.php:226
832
- #: includes/views/setup-wizard/display-options.php:17
833
- msgid "Display shipping address"
834
- msgstr "Näytä toimitusosoite"
835
-
836
- #: includes/documents/class-wcpdf-invoice.php:233
837
- #: includes/documents/class-wcpdf-invoice.php:285
838
- #: includes/documents/class-wcpdf-invoice.php:301
839
- #: includes/documents/class-wcpdf-packing-slip.php:106
840
- msgid "No"
841
- msgstr ""
842
-
843
- #: includes/documents/class-wcpdf-invoice.php:234
844
- msgid "Only when different from billing address"
845
- msgstr ""
846
-
847
- #: includes/documents/class-wcpdf-invoice.php:235
848
- #: includes/documents/class-wcpdf-invoice.php:378
849
- #: includes/documents/class-wcpdf-packing-slip.php:108
850
- msgid "Always"
851
- msgstr "Aina"
852
-
853
- #: includes/documents/class-wcpdf-invoice.php:243
854
- #: includes/documents/class-wcpdf-packing-slip.php:116
855
- #: includes/views/setup-wizard/display-options.php:26
856
- msgid "Display email address"
857
- msgstr "Näytä sähköpostiosoite"
858
-
859
- #: includes/documents/class-wcpdf-invoice.php:254
860
- #: includes/documents/class-wcpdf-packing-slip.php:127
861
- #: includes/views/setup-wizard/display-options.php:35
862
- msgid "Display phone number"
863
- msgstr "Näytä puhelinnumero"
864
-
865
- #: includes/documents/class-wcpdf-invoice.php:265
866
- #: includes/documents/class-wcpdf-packing-slip.php:138
867
- msgid "Display customer notes"
868
- msgstr ""
869
-
870
- #: includes/documents/class-wcpdf-invoice.php:278
871
- #: includes/views/setup-wizard/display-options.php:44
872
- msgid "Display invoice date"
873
- msgstr "Näytä laskun päivämäärä"
874
-
875
- #: includes/documents/class-wcpdf-invoice.php:287
876
- msgid "Order Date"
877
- msgstr ""
878
-
879
- #: includes/documents/class-wcpdf-invoice.php:294
880
- #: includes/views/setup-wizard/display-options.php:53
881
- msgid "Display invoice number"
882
- msgstr ""
883
-
884
- #: includes/documents/class-wcpdf-invoice.php:303
885
- msgid "Order Number"
886
- msgstr ""
887
-
888
- #: includes/documents/class-wcpdf-invoice.php:307
889
- msgid "Warning!"
890
- msgstr ""
891
-
892
- #: includes/documents/class-wcpdf-invoice.php:308
893
- msgid ""
894
- "Using the Order Number as invoice number is not recommended as this may lead "
895
- "to gaps in the invoice number sequence (even when order numbers are "
896
- "sequential)."
897
- msgstr ""
898
-
899
- #: includes/documents/class-wcpdf-invoice.php:309
900
- msgid "More information"
901
- msgstr ""
902
-
903
- #: includes/documents/class-wcpdf-invoice.php:316
904
- msgid "Next invoice number (without prefix/suffix etc.)"
905
- msgstr "Seuraavan laskun numero (ilman etu/takaliitteitä tms.)"
906
-
907
- #: includes/documents/class-wcpdf-invoice.php:322
908
- msgid ""
909
- "This is the number that will be used for the next document. By default, "
910
- "numbering starts from 1 and increases for every new document. Note that if "
911
- "you override this and set it lower than the current/highest number, this "
912
- "could create duplicate numbers!"
913
- msgstr ""
914
-
915
- #: includes/documents/class-wcpdf-invoice.php:328
916
- msgid "Number format"
917
- msgstr ""
918
-
919
- #: includes/documents/class-wcpdf-invoice.php:336
920
- msgid "Prefix"
921
- msgstr "Etuliite"
922
-
923
- #: includes/documents/class-wcpdf-invoice.php:338
924
- msgid ""
925
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
926
- "respectively"
927
- msgstr ""
928
-
929
- #: includes/documents/class-wcpdf-invoice.php:341
930
- msgid "Suffix"
931
- msgstr "Takaliite"
932
-
933
- #: includes/documents/class-wcpdf-invoice.php:346
934
- msgid "Padding"
935
- msgstr "Padding"
936
-
937
- #: includes/documents/class-wcpdf-invoice.php:349
938
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
939
- msgstr "syötä lukujen määrä tähän - syötä 6 näyttääksesi 42 seuraavasti 000042"
940
-
941
- #: includes/documents/class-wcpdf-invoice.php:352
942
- msgid ""
943
- "note: if you have already created a custom invoice number format with a "
944
- "filter, the above settings will be ignored"
945
- msgstr ""
946
- "huomio: jos olet jo luonut räätälöidyn laskun numeron muodon filtterillä, "
947
- "yllä olevat asetukset ohitetaan"
948
-
949
- #: includes/documents/class-wcpdf-invoice.php:358
950
- msgid "Reset invoice number yearly"
951
- msgstr "Nollaa laskun numero vuosittain"
952
-
953
- #: includes/documents/class-wcpdf-invoice.php:369
954
- msgid "Allow My Account invoice download"
955
- msgstr "Salli laskun lataaminen oman tilin kautta"
956
-
957
- #: includes/documents/class-wcpdf-invoice.php:376
958
- msgid "Only when an invoice is already created/emailed"
959
- msgstr "Ainoastaan kun lasku on luotu/lähetetty"
960
-
961
- #: includes/documents/class-wcpdf-invoice.php:377
962
- msgid "Only for specific order statuses (define below)"
963
- msgstr "Ainoastaan tietyille tilauksen tiloille (määrittele alla)"
964
-
965
- #: includes/documents/class-wcpdf-invoice.php:379
966
- msgid "Never"
967
- msgstr "Ei koskaan"
968
-
969
- #: includes/documents/class-wcpdf-invoice.php:394
970
- msgid "Enable invoice number column in the orders list"
971
- msgstr "Aktivoi laskun numerot sarake Tilaukset-listalla."
972
-
973
- #: includes/documents/class-wcpdf-invoice.php:405
974
- msgid "Disable for free orders"
975
- msgstr ""
976
-
977
- #. translators: zero number
978
- #: includes/documents/class-wcpdf-invoice.php:412
979
- msgid "Disable document when the order total is %s"
980
- msgstr ""
981
-
982
- #: includes/documents/class-wcpdf-invoice.php:418
983
- msgid "Always use most current settings"
984
- msgstr ""
985
-
986
- #: includes/documents/class-wcpdf-invoice.php:424
987
- msgid ""
988
- "When enabled, the document will always reflect the most current settings "
989
- "(such as footer text, document name, etc.) rather than using historical "
990
- "settings."
991
- msgstr ""
992
-
993
- #: includes/documents/class-wcpdf-invoice.php:426
994
- msgid ""
995
- "<strong>Caution:</strong> enabling this will also mean that if you change "
996
- "your company name or address in the future, previously generated documents "
997
- "will also be affected."
998
- msgstr ""
999
-
1000
- #: includes/documents/class-wcpdf-invoice.php:439
1001
- msgid "Invoice numbers are created by a third-party extension."
1002
- msgstr ""
1003
-
1004
- #. translators: link
1005
- #: includes/documents/class-wcpdf-invoice.php:442
1006
- msgid "Configure it <a href=\"%s\">here</a>."
1007
- msgstr ""
1008
-
1009
- #: includes/documents/class-wcpdf-packing-slip.php:32
1010
- #: includes/documents/class-wcpdf-packing-slip.php:41
1011
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1012
- msgid "Packing Slip"
1013
- msgstr "Lähetyslista"
1014
-
1015
- # This is a filename (prefix). do not use spaces or special characters!
1016
- #: includes/documents/class-wcpdf-packing-slip.php:47
1017
- msgid "packing-slip"
1018
- msgid_plural "packing-slips"
1019
- msgstr[0] "lähetyslista"
1020
- msgstr[1] "lähetyslistat"
1021
-
1022
- #: includes/documents/class-wcpdf-packing-slip.php:99
1023
- msgid "Display billing address"
1024
- msgstr "Näytä laskutusosoite"
1025
-
1026
- #: includes/documents/class-wcpdf-packing-slip.php:107
1027
- msgid "Only when different from shipping address"
1028
- msgstr ""
1029
-
1030
- #: includes/documents/class-wcpdf-packing-slip.php:162
1031
- msgid "Packing Slip Number:"
1032
- msgstr ""
1033
-
1034
- #: includes/documents/class-wcpdf-packing-slip.php:170
1035
- msgid "Packing Slip Date:"
1036
- msgstr ""
1037
-
1038
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1039
- msgid "Legacy Document"
1040
- msgstr ""
1041
-
1042
- #: includes/legacy/class-wcpdf-legacy.php:72
1043
- msgid "Error"
1044
- msgstr ""
1045
-
1046
- #: includes/legacy/class-wcpdf-legacy.php:73
1047
- msgid ""
1048
- "An outdated template or action hook was used to generate the PDF. Legacy "
1049
- "mode has been activated, please try again by reloading this page."
1050
- msgstr ""
1051
-
1052
- #: includes/legacy/class-wcpdf-legacy.php:76
1053
- msgid "The following function was called"
1054
- msgstr ""
1055
-
1056
- #. translators: <a> tags
1057
- #: includes/views/attachment-settings-hint.php:23
1058
- msgid ""
1059
- "It looks like you haven't setup any email attachments yet, check the "
1060
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1061
- msgstr ""
1062
-
1063
- #: includes/views/dompdf-status.php:11
1064
- msgid "7.1+ (7.4 or higher recommended)"
1065
- msgstr ""
1066
-
1067
- #: includes/views/dompdf-status.php:24
1068
- msgid "Recommended, will use fallback functions"
1069
- msgstr ""
1070
-
1071
- #: includes/views/dompdf-status.php:30
1072
- msgid "Required if you have images in your documents"
1073
- msgstr ""
1074
-
1075
- #: includes/views/dompdf-status.php:39
1076
- msgid "To compress PDF documents"
1077
- msgstr ""
1078
-
1079
- #: includes/views/dompdf-status.php:42
1080
- msgid "Recommended to compress PDF documents"
1081
- msgstr ""
1082
-
1083
- #: includes/views/dompdf-status.php:45
1084
- msgid "For better performances"
1085
- msgstr ""
1086
-
1087
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1088
- msgid "Recommended for better performances"
1089
- msgstr ""
1090
-
1091
- #: includes/views/dompdf-status.php:51
1092
- msgid "Better with transparent PNG images"
1093
- msgstr ""
1094
-
1095
- #: includes/views/dompdf-status.php:57
1096
- msgid ""
1097
- "Required to detect custom templates and to clear the temp folder periodically"
1098
- msgstr ""
1099
-
1100
- #: includes/views/dompdf-status.php:60
1101
- msgid "Check PHP disable_functions"
1102
- msgstr ""
1103
-
1104
- #. translators: <a> tags
1105
- #: includes/views/dompdf-status.php:64
1106
- msgid ""
1107
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1108
- "WordPress Memory Limit%2$s"
1109
- msgstr ""
1110
-
1111
- #: includes/views/dompdf-status.php:69
1112
- msgid "Allow remote stylesheets and images"
1113
- msgstr ""
1114
-
1115
- #: includes/views/dompdf-status.php:72
1116
- msgid "allow_url_fopen disabled"
1117
- msgstr ""
1118
-
1119
- #. translators: <a> tags
1120
- #: includes/views/dompdf-status.php:92
1121
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1122
- msgstr ""
1123
-
1124
- #: includes/views/dompdf-status.php:97
1125
- msgid "System Configuration"
1126
- msgstr ""
1127
-
1128
- #: includes/views/dompdf-status.php:102
1129
- msgid "Required"
1130
- msgstr ""
1131
-
1132
- #: includes/views/dompdf-status.php:103
1133
- msgid "Present"
1134
- msgstr ""
1135
-
1136
- #: includes/views/dompdf-status.php:142
1137
- msgid "Writable"
1138
- msgstr ""
1139
-
1140
- #: includes/views/dompdf-status.php:143
1141
- msgid "Not writable"
1142
- msgstr ""
1143
-
1144
- #: includes/views/dompdf-status.php:148
1145
- msgid "Central temporary plugin folder"
1146
- msgstr ""
1147
-
1148
- #: includes/views/dompdf-status.php:154
1149
- msgid "Temporary attachments folder"
1150
- msgstr ""
1151
-
1152
- #: includes/views/dompdf-status.php:160
1153
- msgid "Temporary DOMPDF folder"
1154
- msgstr ""
1155
-
1156
- #: includes/views/dompdf-status.php:166
1157
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1158
- msgstr ""
1159
-
1160
- #: includes/views/dompdf-status.php:177
1161
- msgid "Write Permissions"
1162
- msgstr ""
1163
-
1164
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1165
- #: templates/Simple/packing-slip.php:88
1166
- msgid "Description"
1167
- msgstr "Kuvaus"
1168
-
1169
- #: includes/views/dompdf-status.php:181
1170
- msgid "Value"
1171
- msgstr ""
1172
-
1173
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1174
- #: includes/views/dompdf-status.php:207
1175
- msgid ""
1176
- "The central temp folder is %1$s. By default, this folder is created in the "
1177
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1178
- "config.php. Alternatively, you can control the specific folder for PDF "
1179
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1180
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1181
- "by the plugin if the central temp folder is writable)."
1182
- msgstr ""
1183
-
1184
- #. translators: directory path
1185
- #: includes/views/dompdf-status.php:220
1186
- msgid ""
1187
- "If the temporary folders were not automatically created by the plugin, "
1188
- "verify that all the font files (from %s) are copied to the fonts folder. "
1189
- "Normally, this is fully automated, but if your server has strict security "
1190
- "settings, this automated copying may have been prohibited. In that case, you "
1191
- "also need to make sure these folders get synchronized on plugin updates!"
1192
- msgstr ""
1193
-
1194
- #: includes/views/setup-wizard/attach-to.php:3
1195
- msgid "Attach too..."
1196
- msgstr ""
1197
-
1198
- #: includes/views/setup-wizard/attach-to.php:4
1199
- msgid "Select to which emails you would like to attach your invoice."
1200
- msgstr ""
1201
-
1202
- #: includes/views/setup-wizard/display-options.php:4
1203
- msgid "Select some additional display options for your invoice."
1204
- msgstr ""
1205
-
1206
- #: includes/views/setup-wizard/good-to-go.php:3
1207
- msgid "You are good to go!"
1208
- msgstr ""
1209
-
1210
- #: includes/views/setup-wizard/good-to-go.php:4
1211
- msgid "If you have any questions please have a look at our documentation:"
1212
- msgstr ""
1213
-
1214
- #: includes/views/setup-wizard/good-to-go.php:5
1215
- msgid "Invoices & Packing Slips"
1216
- msgstr ""
1217
-
1218
- #: includes/views/setup-wizard/good-to-go.php:6
1219
- msgid "Happy selling!"
1220
- msgstr ""
1221
-
1222
- #: includes/views/setup-wizard/logo.php:4
1223
- msgid "Set the header image that will display on your invoice."
1224
- msgstr ""
1225
-
1226
- #: includes/views/setup-wizard/paper-format.php:4
1227
- msgid "Select the paper format for your invoice."
1228
- msgstr ""
1229
-
1230
- #: includes/views/setup-wizard/shop-name.php:3
1231
- msgid "Enter your shop name"
1232
- msgstr ""
1233
-
1234
- #: includes/views/setup-wizard/shop-name.php:4
1235
- msgid ""
1236
- "Lets quickly setup your invoice. Please enter the name and address of your "
1237
- "shop in the fields on the right."
1238
- msgstr ""
1239
-
1240
- #: includes/views/setup-wizard/show-action-buttons.php:4
1241
- msgid ""
1242
- "Would you like to display the action buttons in your WooCommerce order list? "
1243
- "The action buttons allow you to manually create a PDF."
1244
- msgstr ""
1245
-
1246
- #: includes/views/setup-wizard/show-action-buttons.php:5
1247
- msgid "(You can always change this setting later via the Screen Options menu)"
1248
- msgstr ""
1249
-
1250
- #: includes/views/setup-wizard/show-action-buttons.php:18
1251
- msgid "Show action buttons"
1252
- msgstr ""
1253
-
1254
- #: includes/views/wcpdf-extensions.php:16
1255
- msgid "Check out these premium extensions!"
1256
- msgstr "Tarkastele Premium laajennuksia"
1257
-
1258
- #: includes/views/wcpdf-extensions.php:17
1259
- msgid "click items to read more"
1260
- msgstr "Klikkaa lisätietoja"
1261
-
1262
- #: includes/views/wcpdf-extensions.php:22
1263
- msgid ""
1264
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1265
- "system"
1266
- msgstr ""
1267
-
1268
- #: includes/views/wcpdf-extensions.php:24
1269
- msgid ""
1270
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1271
- "premium extensions:"
1272
- msgstr ""
1273
-
1274
- #: includes/views/wcpdf-extensions.php:25
1275
- msgid "Professional features:"
1276
- msgstr ""
1277
-
1278
- #: includes/views/wcpdf-extensions.php:27
1279
- #: includes/views/wcpdf-extensions.php:57
1280
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1281
- msgstr "Sähköposti/tulosta/lataa <b>PDF hyvityslaskut & Pro forma laskut</b>"
1282
-
1283
- #: includes/views/wcpdf-extensions.php:28
1284
- #: includes/views/wcpdf-extensions.php:58
1285
- msgid ""
1286
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1287
- "packing slips, for example to a drop-shipper or a supplier."
1288
- msgstr ""
1289
- "Lähetä erillinen huomautussähköposti joko PDF laskulla/lähetyslistalla tai "
1290
- "ilman, esim. tavarantoimittajalle."
1291
-
1292
- #: includes/views/wcpdf-extensions.php:29
1293
- #: includes/views/wcpdf-extensions.php:59
1294
- msgid ""
1295
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1296
- "document) to the WooCommerce emails of your choice."
1297
- msgstr ""
1298
- "Lisää korkeintaan 3 staattista tiedostoa (kuten esim. toimitusehdot) "
1299
- "WooCommercen sähköposteihin, jotka voit itse valita."
1300
-
1301
- #: includes/views/wcpdf-extensions.php:30
1302
- #: includes/views/wcpdf-extensions.php:60
1303
- msgid ""
1304
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1305
- "and credit notes or utilize the main invoice numbering system"
1306
- msgstr ""
1307
- "Käytä erillistä numerointia ja/tai formaattia pro forma laskuille ja "
1308
- "hyvityslaskuille tai määrittele päätoiminen numerointijärjestelmä"
1309
-
1310
- #: includes/views/wcpdf-extensions.php:31
1311
- #: includes/views/wcpdf-extensions.php:61
1312
- msgid ""
1313
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1314
- "additional custom fields, font sizes etc. without the need to create a "
1315
- "custom template."
1316
- msgstr ""
1317
- "Muokkaa toimitus- ja laskutusosoitetta lisätäksesi lisäkenttiä tai fontin "
1318
- "kokoa suoraan ilman erillisen sivupohjan luomista."
1319
-
1320
- #: includes/views/wcpdf-extensions.php:32
1321
- #: includes/views/wcpdf-extensions.php:62
1322
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1323
- msgstr "Käytä lisäosaa monikielisenä"
1324
-
1325
- #: includes/views/wcpdf-extensions.php:34
1326
- #: includes/views/wcpdf-extensions.php:114
1327
- msgid "Advanced, customizable templates"
1328
- msgstr "Kehittyneet, muokattavat sivupohjat"
1329
-
1330
- #: includes/views/wcpdf-extensions.php:36
1331
- #: includes/views/wcpdf-extensions.php:117
1332
- msgid ""
1333
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1334
- "your needs with a drag & drop customizer"
1335
- msgstr ""
1336
- "Muokkaa täydellisesti laskun sisältöä tarpeitasi varten drag & drop "
1337
- "muokkaimella"
1338
-
1339
- #: includes/views/wcpdf-extensions.php:37
1340
- #: includes/views/wcpdf-extensions.php:118
1341
- msgid "Two extra stylish premade templates (Modern & Business)"
1342
- msgstr "Kaksi tyylikästä valmista sivupohjaa (Moderni ja Business)"
1343
-
1344
- #: includes/views/wcpdf-extensions.php:39
1345
- #: includes/views/wcpdf-extensions.php:63
1346
- msgid "Upload automatically to dropbox"
1347
- msgstr ""
1348
-
1349
- #: includes/views/wcpdf-extensions.php:41
1350
- msgid ""
1351
- "This extension conveniently uploads all the invoices (and other pdf "
1352
- "documents from the professional extension) that are emailed to your "
1353
- "customers to Dropbox. The best way to keep your invoice administration up to "
1354
- "date!"
1355
- msgstr "Tämä laajennus lähettää kaikki laskusi Dropbox tilillesi."
1356
-
1357
- #: includes/views/wcpdf-extensions.php:44
1358
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1359
- msgstr ""
1360
-
1361
- #: includes/views/wcpdf-extensions.php:53
1362
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1363
- msgstr "Valitse Pro versio: Pro forma laskut, hyvityslaskut ja paljon muuta!"
1364
-
1365
- #: includes/views/wcpdf-extensions.php:55
1366
- msgid ""
1367
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1368
- "features:"
1369
- msgstr ""
1370
- "Täydennä WooCommerce PDF laskut & lähetyslistat seuraavilla ominaisuuksilla:"
1371
-
1372
- #: includes/views/wcpdf-extensions.php:65
1373
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1374
- msgstr "Hanki WooCommerce laskut & lähetyslistat Pro versio!"
1375
-
1376
- #: includes/views/wcpdf-extensions.php:73
1377
- msgid "Automatically send payment reminders to your customers"
1378
- msgstr ""
1379
-
1380
- #: includes/views/wcpdf-extensions.php:75
1381
- msgid "WooCommerce Smart Reminder emails"
1382
- msgstr ""
1383
-
1384
- #: includes/views/wcpdf-extensions.php:77
1385
- msgid "<b>Completely automatic</b> scheduled emails"
1386
- msgstr ""
1387
-
1388
- #: includes/views/wcpdf-extensions.php:78
1389
- msgid ""
1390
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1391
- "from the order (name, order total, etc)"
1392
- msgstr ""
1393
-
1394
- #: includes/views/wcpdf-extensions.php:79
1395
- msgid ""
1396
- "Configure the exact requirements for sending an email (time after order, "
1397
- "order status, payment method)"
1398
- msgstr ""
1399
-
1400
- #: includes/views/wcpdf-extensions.php:80
1401
- msgid ""
1402
- "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1403
- "order language."
1404
- msgstr ""
1405
-
1406
- #: includes/views/wcpdf-extensions.php:81
1407
- msgid ""
1408
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1409
- "reminders, repeat purchases)"
1410
- msgstr ""
1411
-
1412
- #: includes/views/wcpdf-extensions.php:82
1413
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1414
- msgstr ""
1415
-
1416
- #: includes/views/wcpdf-extensions.php:84
1417
- msgid "Get WooCommerce Smart Reminder Emails"
1418
- msgstr ""
1419
-
1420
- #: includes/views/wcpdf-extensions.php:93
1421
- msgid ""
1422
- "Automatically send new orders or packing slips to your printer, as soon as "
1423
- "the customer orders!"
1424
- msgstr "Lähetä automaattisesti tilaukset tai lähetyslistat tulostimelle."
1425
-
1426
- #: includes/views/wcpdf-extensions.php:99
1427
- msgid ""
1428
- "Check out the WooCommerce Automatic Order Printing extension from our "
1429
- "partners at Simba Hosting"
1430
- msgstr ""
1431
- "Katso WooCommerce Automaattinen Tulostus laajennus yhteistyökumppaniltamme "
1432
- "Simba Hostingilla"
1433
-
1434
- #: includes/views/wcpdf-extensions.php:100
1435
- msgid "WooCommerce Automatic Order Printing"
1436
- msgstr "WooCommerce Automaattinen Tilauksen Tulostus"
1437
-
1438
- #. translators: Premium Templates link
1439
- #: includes/views/wcpdf-extensions.php:120
1440
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1441
- msgstr "Katso Premium PDF lasku & lähetyslistat sivupohjat osoitteessa: %s."
1442
-
1443
- #. translators: email link
1444
- #: includes/views/wcpdf-extensions.php:122
1445
- msgid "For custom templates, contact us at %s."
1446
- msgstr "Haluatko räätälöidyt sivupohjat, ota yhteyttä meihin osoitteessa %s."
1447
-
1448
- #: includes/views/wcpdf-settings-page.php:9
1449
- msgid "WooCommerce PDF Invoices"
1450
- msgstr "WooCommerce PDF-laskut"
1451
-
1452
- #: includes/wcpdf-functions.php:209
1453
- msgid "Error creating PDF, please contact the site owner."
1454
- msgstr ""
1455
-
1456
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1457
- msgid "Billing Address:"
1458
- msgstr "Laskutusosoite:"
1459
-
1460
- #: templates/Simple/invoice.php:48
1461
- msgid "Ship To:"
1462
- msgstr "Toimitetaan:"
1463
-
1464
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1465
- msgid "Order Number:"
1466
- msgstr "Tilauksen numero:"
1467
-
1468
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1469
- msgid "Order Date:"
1470
- msgstr "Tilauksen päiväys:"
1471
-
1472
- #: templates/Simple/invoice.php:78
1473
- msgid "Payment Method:"
1474
- msgstr "Maksutapa:"
1475
-
1476
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1477
- msgid "Product"
1478
- msgstr "Tuote"
1479
-
1480
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1481
- msgid "Quantity"
1482
- msgstr "Määrä"
1483
-
1484
- #: templates/Simple/invoice.php:94
1485
- msgid "Price"
1486
- msgstr "Hinta"
1487
-
1488
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1489
- msgid "SKU"
1490
- msgstr "Tuotekoodi"
1491
-
1492
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1493
- msgid "SKU:"
1494
- msgstr "Tuotekoodi:"
1495
-
1496
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1497
- msgid "Weight:"
1498
- msgstr "Paino:"
1499
-
1500
- #: templates/Simple/invoice.php:123
1501
- msgid "Notes"
1502
- msgstr ""
1503
-
1504
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1505
- msgid "Customer Notes"
1506
- msgstr "Asiakkaan huomiot"
1507
-
1508
- #: templates/Simple/packing-slip.php:35
1509
- msgid "Shipping Address:"
1510
- msgstr "Toimitusosoite:"
1511
-
1512
- #: templates/Simple/packing-slip.php:66
1513
- msgid "Shipping Method:"
1514
- msgstr "Toimitustapa:"
1515
-
1516
- #. translators: <a> tags
1517
- #: woocommerce-pdf-invoices-packingslips.php:271
1518
- msgid ""
1519
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1520
- "installed & activated!"
1521
- msgstr ""
1522
-
1523
- #: woocommerce-pdf-invoices-packingslips.php:282
1524
- msgid ""
1525
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1526
- "recommended)."
1527
- msgstr ""
1528
-
1529
- #. translators: <a> tags
1530
- #: woocommerce-pdf-invoices-packingslips.php:284
1531
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1532
- msgstr ""
1533
-
1534
- #. translators: <a> tags
1535
- #: woocommerce-pdf-invoices-packingslips.php:286
1536
- msgid ""
1537
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1538
- "to enable backwards compatibility with PHP5.6."
1539
- msgstr ""
1540
-
1541
- #. translators: directory path
1542
- #: woocommerce-pdf-invoices-packingslips.php:374
1543
- msgid ""
1544
- "The PDF files in %s are not currently protected due to your site running on "
1545
- "<strong>NGINX</strong>."
1546
- msgstr ""
1547
-
1548
- #: woocommerce-pdf-invoices-packingslips.php:375
1549
- msgid "To protect them, you must click the button below."
1550
- msgstr ""
1551
-
1552
- #. translators: plugin name
1553
- #: woocommerce-pdf-invoices-packingslips.php:419
1554
- msgid ""
1555
- "When sending emails with MailPoet 3 and the active sending method is "
1556
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1557
- "the emails."
1558
- msgstr ""
1559
-
1560
- #. translators: "Your web host / web server"
1561
- #: woocommerce-pdf-invoices-packingslips.php:421
1562
- msgid "To fix this you should select other method like %1$s or %2$s."
1563
- msgstr ""
1564
-
1565
- #. translators: "Your web host / web server"
1566
- #: woocommerce-pdf-invoices-packingslips.php:421
1567
- msgid "Your web host / web server"
1568
- msgstr ""
1569
-
1570
- #: woocommerce-pdf-invoices-packingslips.php:422
1571
- msgid "Change MailPoet sending method"
1572
- msgstr ""
1573
-
1574
- #~ msgid "PDF Invoice data"
1575
- #~ msgstr "PDF laskun tiedot"
1576
-
1577
- #~ msgid "Invoice Number (unformatted!)"
1578
- #~ msgstr "Laskun numero (ei muotoiltu)"
1579
-
1580
- #~ msgid "h"
1581
- #~ msgstr "t"
1582
-
1583
- #~ msgid "m"
1584
- #~ msgstr "m"
1585
-
1586
- #, php-format
1587
- #~ msgid ""
1588
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1589
- #~ "your (child) theme in <code>%s</code> to customize them"
1590
- #~ msgstr ""
1591
- #~ "Haluatko käyttää omaa sivupohjaa? Kopioi kaikki tiedostot <code>%s</code> "
1592
- #~ "oman teemasi hakemistoon <code>%s</code> muokataksesi tiedostoja"
1593
-
1594
- #~ msgid "Settings"
1595
- #~ msgstr "Asetukset"
1596
-
1597
- #, php-format
1598
- #~ msgid "(Includes %s)"
1599
- #~ msgstr "(Sisältää %s)"
1600
-
1601
- #~ msgid "Disable for free products"
1602
- #~ msgstr "Poista käytöstä ilmaisille tuotteille"
1603
-
1604
- #~ msgid "Upload all invoices automatically to your dropbox"
1605
- #~ msgstr "Lähetä kaikki laskut automaattisesti dropbox tilillesi"
1606
-
1607
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1608
- #~ msgstr "Hanki WooCommerce PDF laskut & lähetyslistat Dropbox laajennus!"
1609
-
1610
- #, php-format
1611
- #~ msgid ""
1612
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1613
- #~ "installed & activated!"
1614
- #~ msgstr ""
1615
- #~ "WooCommerce PDF Invoices & Packing Slips edellyttää %sWooCommerce%s -"
1616
- #~ "asennusta ja aktivointia!"
1617
-
1618
- #~ msgid "Attach invoice to:"
1619
- #~ msgstr "Liitä lasku:"
1620
-
1621
- #~ msgid ""
1622
- #~ "Display shipping address on invoice (in addition to the default billing "
1623
- #~ "address) if different from billing address"
1624
- #~ msgstr "Näytä toimitusosoite laskulla, jos eri kuin laskutusosoite"
1625
-
1626
- #~ msgid ""
1627
- #~ "This is the number that will be used on the next invoice that is created. "
1628
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1629
- #~ "first invoice that is created and increases for every new invoice. Note "
1630
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1631
- #~ "number, this could create double invoice numbers!"
1632
- #~ msgstr ""
1633
- #~ "Tmä numero näytetään seuraavassa laskussa, joka luodaan. Oletusarvoisesti "
1634
- #~ "numerointi alkaa ensimmäisen tilauksen, jolle lasku luodaan, WooCommercen "
1635
- #~ "tilausnumerosta. Laskunumerot jatkuvat tästä eteenpäin juoksevasti, eli "
1636
- #~ "kasvavat aina yhdellä. Huomioithan, että jos ohitat tämän asetukset ja "
1637
- #~ "asetat sen alemmaksi kuin ylin (PDF) laskunumero, saattaa esiintyä kaksi "
1638
- #~ "identtistä laskunnumeroa. Suosittelemme, että asetukseen ei kosketa."
1639
-
1640
- #~ msgid "Invoice number format"
1641
- #~ msgstr "Laskun numeron muoto"
1642
-
1643
- #~ msgid ""
1644
- #~ "Disable automatic creation/attachment of invoices when only free products "
1645
- #~ "are ordered"
1646
- #~ msgstr ""
1647
- #~ "Poista käytöstä automaattinen laskujen luonti kun tilauksessa on "
1648
- #~ "ainoastaan ilmaisia tuotteita"
1649
-
1650
- #~ msgid ""
1651
- #~ "Display billing address on packing slip (in addition to the default "
1652
- #~ "shipping address) if different from shipping address"
1653
- #~ msgstr ""
1654
- #~ "Näytä laskutusosoite lähetyslistassa jos osoite poikkeaa "
1655
- #~ "toimitusosoitteesta"
1656
-
1657
- #~ msgid "Template"
1658
- #~ msgstr "Sivupohja"
1659
-
1660
- #~ msgid "Admin New Order email"
1661
- #~ msgstr "Ylläpitäjän ‘Uusi tilaus’-viesti"
1662
-
1663
- #~ msgid "Customer Processing Order email"
1664
- #~ msgstr "Asiakkaan ‘Tilaus on käsittelyssä’-sähköposti"
1665
-
1666
- #~ msgid "Customer Completed Order email"
1667
- #~ msgstr "Asiakkaan ‘Tilaus valmis’-sähköposti"
1668
-
1669
- #~ msgid "Customer Invoice email"
1670
- #~ msgstr "Asiakkaan ‘Lasku’-sähköposti"
1671
-
1672
- #~ msgid "Interface"
1673
- #~ msgstr "Ulkoasu"
1674
-
1675
- #~ msgid "PDF Template settings"
1676
- #~ msgstr "PDF-sivupohjan asetukset"
1677
-
1678
- #~ msgid "Display built-in sequential invoice number"
1679
- #~ msgstr "Näytä sisäänrakennettu peräkkäinen laskun numero"
1680
-
1681
- #~ msgid ""
1682
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
1683
- #~ "respectively"
1684
- #~ msgstr ""
1685
- #~ "käyttääksesi vuotta ja/tai kuukautta, käytä [order_year] tai "
1686
- #~ "[order_month] tarvittaessa"
1687
-
1688
- #~ msgid "Use old tmp folder"
1689
- #~ msgstr "Käytä vanhaa tilapäishakemistoa"
1690
-
1691
- #~ msgid ""
1692
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1693
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1694
- #~ "not recommended on new installs!"
1695
- #~ msgstr ""
1696
- #~ "Ennen versiota 1.5 väliaikaistiedostot säilöttiin lisäosan hakemistoon. "
1697
- #~ "Tämä asetus on tarkoitettu yhteensopivuus tarkoituksessa vanhoille "
1698
- #~ "versioille, ei uusille versiolle!"
1699
-
1700
- #~ msgid "PDF Packing Slips"
1701
- #~ msgstr "PDF-lähetyslistat"
1702
-
1703
- #~ msgid "PDF Invoice"
1704
- #~ msgstr "PDF lasku"
1705
-
1706
- #~ msgid "PDF Packing Slip"
1707
- #~ msgstr "PDF-lähetyslista"
1708
-
1709
- #~ msgid ""
1710
- #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
1711
- #~ "extension."
1712
- #~ msgstr ""
1713
- #~ "Lataa kaikki laskut automaattisesti Dropbox-tiliisi!<br/>Tutustu %s -"
1714
- #~ "lisäosaan."
1715
-
1716
- #~ msgid ""
1717
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
1718
- #~ "Packing Slips templates at %s."
1719
- #~ msgstr ""
1720
- #~ "Etsitkö edistyneempiä sivupohjia? Tutustu Premium PDF Invoice & Packing "
1721
- #~ "Slips -sivupohjiin osoitteessa %s."
1722
-
1723
- #~ msgid ""
1724
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1725
- #~ "<code>%s</code> to customize them"
1726
- #~ msgstr ""
1727
- #~ "Haluatko käyttää omaa sivupohjaasi? Kopioi kaikki tiedostot kansiosta, "
1728
- #~ "<code>%s</code> kansioon, <code>%s</code> muokataksesi niitä."
1729
-
1730
- #~ msgid "Number to display on invoice"
1731
- #~ msgstr "Laskun numero"
1732
-
1733
- #~ msgid "WooCommerce order number"
1734
- #~ msgstr "WooCommerce tilausnumero"
1735
-
1736
- #~ msgid "Built-in sequential invoice number"
1737
- #~ msgstr "Sisäänrakennettu juokseva laskunnumero"
1738
-
1739
- #~ msgid ""
1740
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
1741
- #~ "the WooCommerce order number"
1742
- #~ msgstr ""
1743
- #~ "Jos käytät WooCommerce Sequential Order Numbers -lisäosaa, valitse "
1744
- #~ "WooCommerce tilausnumero."
1745
-
1746
- #~ msgid "Date to display on invoice"
1747
- #~ msgstr "Laskulla näytettävä päivämäärä"
1748
-
1749
- #~ msgid "Order date"
1750
- #~ msgstr "Tilauksen päiväys"
1751
-
1752
- #~ msgid "Invoice date"
1753
- #~ msgstr "Laskun päiväys"
1754
-
1755
- #~ msgid "PDF invoice"
1756
- #~ msgstr "PDF-laskut"
1757
-
1758
- #~ msgid "PDF Invoice Number (unformatted!)"
1759
- #~ msgstr "PDF laskunnumero (ei muotoiltu!)"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:23-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: Contrast Digital Oy <hello@contrast.fi>\n"
10
+ "Language: fi\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 3.0\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #. Plugin Name of the plugin
22
+ msgid "WooCommerce PDF Invoices & Packing Slips"
23
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
24
+
25
+ #. Plugin URI of the plugin
26
+ #. Author URI of the plugin
27
+ msgid "http://www.wpovernight.com"
28
+ msgstr "http://www.wpovernight.com"
29
+
30
+ #. Description of the plugin
31
+ msgid ""
32
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
+ msgstr ""
34
+
35
+ #. Author of the plugin
36
+ msgid "Ewout Fernhout"
37
+ msgstr "Ewout Fernhout"
38
+
39
+ #. translators: rounded count
40
+ #: includes/class-wcpdf-admin.php:92
41
+ msgid "Wow, you have created more than %d invoices with our plugin!"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:93
45
+ msgid ""
46
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
+ "rating. Help us spread the word and boost our motivation!"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:95
51
+ msgid "Yes you deserve it!"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
+ #: includes/views/attachment-settings-hint.php:24
56
+ #: includes/views/wcpdf-extensions.php:131
57
+ #: woocommerce-pdf-invoices-packingslips.php:377
58
+ #: woocommerce-pdf-invoices-packingslips.php:423
59
+ msgid "Hide this message"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-admin.php:96
63
+ msgid "Already did!"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-admin.php:97
67
+ msgid "Actually, I have a complaint..."
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:132
71
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:132
75
+ msgid "Jumpstart the plugin by following our wizard!"
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:133
79
+ msgid "Run the Setup Wizard"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:133
83
+ msgid "I am the wizard"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
+ #: includes/documents/class-wcpdf-invoice.php:302
88
+ msgid "Invoice Number"
89
+ msgstr "Laskun numero"
90
+
91
+ #: includes/class-wcpdf-admin.php:261
92
+ msgid "Send order email"
93
+ msgstr ""
94
+
95
+ #: includes/class-wcpdf-admin.php:272
96
+ msgid "Create PDF"
97
+ msgstr "Luo PDF"
98
+
99
+ #: includes/class-wcpdf-admin.php:282
100
+ msgid "PDF document data"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:304
104
+ msgid "Choose an email to send&hellip;"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-admin.php:320
108
+ msgid "Save order & send email"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:322
112
+ msgid "Send email"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
+ msgid "Invoice Number:"
118
+ msgstr "Laskun numero:"
119
+
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
+ msgid "Invoice Date:"
123
+ msgstr "Laskun Päiväys:"
124
+
125
+ #: includes/class-wcpdf-admin.php:384
126
+ msgid "Notes (printed in the invoice):"
127
+ msgstr ""
128
+
129
+ #. translators: document title
130
+ #: includes/class-wcpdf-admin.php:469
131
+ msgid "Set %s number & date"
132
+ msgstr ""
133
+
134
+ #: includes/class-wcpdf-admin.php:478
135
+ msgid "unformatted!"
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-admin.php:518
139
+ msgid "Save changes"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:519
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
146
+ #. translators: name/description of the context for document creation logs
147
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
+ msgid "order details (number and/or date set manually)"
149
+ msgstr ""
150
+
151
+ #. translators: %s: email title
152
+ #: includes/class-wcpdf-admin.php:647
153
+ msgid "%s email notification manually sent."
154
+ msgstr ""
155
+
156
+ #: includes/class-wcpdf-admin.php:734
157
+ msgid "Nonce expired!"
158
+ msgstr ""
159
+
160
+ #: includes/class-wcpdf-admin.php:740
161
+ msgid "Bad action!"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:746
165
+ msgid "Incomplete request!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:752
169
+ msgid "No permissions!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:776
173
+ msgid "Document data saved!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:777
177
+ msgid "An error occurred while saving the document data!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:780
181
+ msgid "Document regenerated!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:781
185
+ msgid "An error occurred while regenerating the document!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:784
189
+ msgid "Document deleted!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:785
193
+ msgid "An error occurred while deleting the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:841
197
+ msgid "Document does not exist."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:850
201
+ msgid "Document is empty."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:881
205
+ msgid "DEBUG output enabled"
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-assets.php:94
209
+ msgid "Are you sure you want to delete this document? This cannot be undone."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-assets.php:95
213
+ msgid ""
214
+ "Are you sure you want to regenerate this document? This will make the "
215
+ "document reflect the most current settings (such as footer text, document "
216
+ "name, etc.) rather than using historical settings."
217
+ msgstr ""
218
+
219
+ #: includes/class-wcpdf-frontend.php:129
220
+ msgid "Download invoice (PDF)"
221
+ msgstr "Lataa lasku (PDF)"
222
+
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
+ msgid "You do not have sufficient permissions to access this page."
226
+ msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
227
+
228
+ #: includes/class-wcpdf-main.php:272
229
+ msgid "You haven't selected any orders"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-main.php:276
233
+ msgid "Some of the export parameters are missing."
234
+ msgstr "Osa vientiparametreistä on puutteellisia."
235
+
236
+ #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
239
+ msgstr ""
240
+
241
+ #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-main.php:604
247
+ msgid ""
248
+ "Please check your directories write permissions or contact your hosting "
249
+ "service provider."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-main.php:919
253
+ #: includes/documents/class-wcpdf-invoice.php:286
254
+ msgid "Invoice Date"
255
+ msgstr ""
256
+
257
+ #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
+ msgid "bulk order action"
260
+ msgstr ""
261
+
262
+ #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
+ msgid "single order action"
265
+ msgstr ""
266
+
267
+ #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
+ msgid "my account"
270
+ msgstr ""
271
+
272
+ #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
+ msgid "email attachment"
275
+ msgstr ""
276
+
277
+ #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
+ msgid "PDF %1$s created via %2$s."
280
+ msgstr ""
281
+
282
+ #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
+ msgid "Order %s Saved"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings-callbacks.php:27
288
+ msgid ""
289
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
+ "Do not use them on a live website!"
291
+ msgstr ""
292
+ "<b>Huom!</b> Nämä asetukset on tarkoitettu vain vianetsintään! Älä käytä "
293
+ "niitä tuotantokäytössä!"
294
+
295
+ #: includes/class-wcpdf-settings-callbacks.php:36
296
+ msgid ""
297
+ "These are used for the (optional) footer columns in the <em>Modern "
298
+ "(Premium)</em> template, but can also be used for other elements in your "
299
+ "custom template"
300
+ msgstr ""
301
+ "Nämä asetukset koskevat alapalkin kolumneja <em>Modern (Premium)</em> -"
302
+ "sivupohjassa, mutta niitä voidaan myös käyttää muissa elementeissä omissa "
303
+ "sivupohjissasi."
304
+
305
+ #: includes/class-wcpdf-settings-callbacks.php:384
306
+ msgid "Image resolution"
307
+ msgstr "Kuvan resoluutio"
308
+
309
+ #: includes/class-wcpdf-settings-callbacks.php:411
310
+ msgid "Save"
311
+ msgstr ""
312
+
313
+ #: includes/class-wcpdf-settings-debug.php:45
314
+ #: woocommerce-pdf-invoices-packingslips.php:376
315
+ msgid "Generate random temporary folder name"
316
+ msgstr ""
317
+
318
+ #. translators: directory path
319
+ #: includes/class-wcpdf-settings-debug.php:58
320
+ msgid "Temporary folder moved to %s"
321
+ msgstr ""
322
+
323
+ #: includes/class-wcpdf-settings-debug.php:68
324
+ msgid "Reinstall fonts"
325
+ msgstr ""
326
+
327
+ #: includes/class-wcpdf-settings-debug.php:89
328
+ msgid "Fonts reinstalled!"
329
+ msgstr ""
330
+
331
+ #: includes/class-wcpdf-settings-debug.php:98
332
+ msgid "Remove temporary files"
333
+ msgstr ""
334
+
335
+ #: includes/class-wcpdf-settings-debug.php:109
336
+ msgid "Unable to read temporary folder contents!"
337
+ msgstr ""
338
+
339
+ #. translators: 1,2. file count
340
+ #: includes/class-wcpdf-settings-debug.php:127
341
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
342
+ msgstr ""
343
+
344
+ #. translators: file count
345
+ #: includes/class-wcpdf-settings-debug.php:131
346
+ msgid "Successfully deleted %d files!"
347
+ msgstr ""
348
+
349
+ #: includes/class-wcpdf-settings-debug.php:135
350
+ msgid "Nothing to delete!"
351
+ msgstr ""
352
+
353
+ #: includes/class-wcpdf-settings-debug.php:146
354
+ msgid "Delete legacy (1.X) settings"
355
+ msgstr ""
356
+
357
+ #: includes/class-wcpdf-settings-debug.php:162
358
+ msgid "Legacy settings deleted!"
359
+ msgstr ""
360
+
361
+ #: includes/class-wcpdf-settings-debug.php:192
362
+ msgid "Debug settings"
363
+ msgstr "Vian paikannnus asetukset"
364
+
365
+ #: includes/class-wcpdf-settings-debug.php:198
366
+ msgid "Legacy mode"
367
+ msgstr ""
368
+
369
+ #: includes/class-wcpdf-settings-debug.php:204
370
+ msgid ""
371
+ "Legacy mode ensures compatibility with templates and filters from previous "
372
+ "versions."
373
+ msgstr ""
374
+
375
+ #: includes/class-wcpdf-settings-debug.php:210
376
+ msgid "Legacy textdomain fallback"
377
+ msgstr ""
378
+
379
+ #: includes/class-wcpdf-settings-debug.php:216
380
+ msgid ""
381
+ "Legacy textdomain fallback ensures compatibility with translation files from "
382
+ "versions prior to 2017-05-15."
383
+ msgstr ""
384
+
385
+ #: includes/class-wcpdf-settings-debug.php:222
386
+ msgid "Allow guest access"
387
+ msgstr ""
388
+
389
+ #: includes/class-wcpdf-settings-debug.php:228
390
+ msgid ""
391
+ "Enable this to allow customers that purchase without an account to access "
392
+ "their PDF with a unique key"
393
+ msgstr ""
394
+
395
+ #: includes/class-wcpdf-settings-debug.php:234
396
+ msgid "Calculate document numbers (slow)"
397
+ msgstr ""
398
+
399
+ #: includes/class-wcpdf-settings-debug.php:240
400
+ msgid ""
401
+ "Document numbers (such as invoice numbers) are generated using "
402
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
403
+ "with more than 1."
404
+ msgstr ""
405
+
406
+ #: includes/class-wcpdf-settings-debug.php:246
407
+ msgid "Enable debug output"
408
+ msgstr "Ota käyttöön vikalogi"
409
+
410
+ #: includes/class-wcpdf-settings-debug.php:252
411
+ msgid ""
412
+ "Enable this option to output plugin errors if you're getting a blank page or "
413
+ "other PDF generation issues"
414
+ msgstr ""
415
+ "Ota käyttöön tämä toiminto näyttääksesi lisäosan virheilmoitukset jos "
416
+ "lisäosa näyttää pelkän tyhjän sivun tai saat muita virheilmoituksia"
417
+
418
+ #: includes/class-wcpdf-settings-debug.php:253
419
+ msgid ""
420
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
421
+ "places on your site too, therefor this is not recommended to leave it "
422
+ "enabled on live sites."
423
+ msgstr ""
424
+
425
+ #: includes/class-wcpdf-settings-debug.php:254
426
+ msgid ""
427
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
428
+ "order basis."
429
+ msgstr ""
430
+
431
+ #: includes/class-wcpdf-settings-debug.php:260
432
+ msgid "Enable automatic cleanup"
433
+ msgstr ""
434
+
435
+ #. translators: number of days
436
+ #: includes/class-wcpdf-settings-debug.php:268
437
+ msgid "every %s days"
438
+ msgstr ""
439
+
440
+ #: includes/class-wcpdf-settings-debug.php:273
441
+ msgid ""
442
+ "Automatically clean up PDF files stored in the temporary folder (used for "
443
+ "email attachments)"
444
+ msgstr ""
445
+
446
+ #: includes/class-wcpdf-settings-debug.php:274
447
+ msgid ""
448
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
449
+ "automatic cleanup but not enabled on your server."
450
+ msgstr ""
451
+
452
+ #: includes/class-wcpdf-settings-debug.php:280
453
+ msgid "Output to HTML"
454
+ msgstr "HTML muotoilu"
455
+
456
+ #: includes/class-wcpdf-settings-debug.php:286
457
+ msgid ""
458
+ "Send the template output as HTML to the browser instead of creating a PDF."
459
+ msgstr ""
460
+ "Lähetä sivupohja HTML muodossa selaimeen, sen sijaan että luotaisiin PDF "
461
+ "tiedosto"
462
+
463
+ #: includes/class-wcpdf-settings-debug.php:287
464
+ msgid ""
465
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
466
+ "order basis."
467
+ msgstr ""
468
+
469
+ #: includes/class-wcpdf-settings-debug.php:293
470
+ msgid "Use alternative HTML5 parser to parse HTML"
471
+ msgstr ""
472
+
473
+ #: includes/class-wcpdf-settings-debug.php:304
474
+ msgid "Log to order notes"
475
+ msgstr ""
476
+
477
+ #: includes/class-wcpdf-settings-debug.php:310
478
+ msgid "Log PDF document creation to order notes."
479
+ msgstr ""
480
+
481
+ #: includes/class-wcpdf-settings-documents.php:30
482
+ #: includes/class-wcpdf-settings.php:104
483
+ msgid "Documents"
484
+ msgstr ""
485
+
486
+ #: includes/class-wcpdf-settings-documents.php:36
487
+ #: includes/class-wcpdf-settings-documents.php:57
488
+ msgid "untitled"
489
+ msgstr ""
490
+
491
+ #: includes/class-wcpdf-settings-documents.php:50
492
+ msgid ""
493
+ "All available documents are listed below. Click on a document to configure "
494
+ "it."
495
+ msgstr ""
496
+
497
+ #: includes/class-wcpdf-settings-general.php:40
498
+ msgid "General settings"
499
+ msgstr "Yleiset asetukset"
500
+
501
+ #: includes/class-wcpdf-settings-general.php:46
502
+ msgid "How do you want to view the PDF?"
503
+ msgstr "Miten haluat esittää PDF-tiedoston?"
504
+
505
+ #: includes/class-wcpdf-settings-general.php:53
506
+ msgid "Download the PDF"
507
+ msgstr "Lataa PDF-tiedosto"
508
+
509
+ #: includes/class-wcpdf-settings-general.php:54
510
+ msgid "Open the PDF in a new browser tab/window"
511
+ msgstr "Avaa PDF-tiedosto uudessa selainikkunassa/välilehdellä"
512
+
513
+ #: includes/class-wcpdf-settings-general.php:61
514
+ msgid "Choose a template"
515
+ msgstr "Valitse sivupohja"
516
+
517
+ #. translators: 1,2. template paths
518
+ #: includes/class-wcpdf-settings-general.php:69
519
+ msgid ""
520
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
521
+ "your (child) theme in <code>%2$s</code> to customize them"
522
+ msgstr ""
523
+
524
+ #: includes/class-wcpdf-settings-general.php:75
525
+ msgid "Paper size"
526
+ msgstr "Paperin koko"
527
+
528
+ #: includes/class-wcpdf-settings-general.php:82
529
+ #: includes/views/setup-wizard/paper-format.php:12
530
+ msgid "A4"
531
+ msgstr "A4"
532
+
533
+ #: includes/class-wcpdf-settings-general.php:83
534
+ #: includes/views/setup-wizard/paper-format.php:13
535
+ msgid "Letter"
536
+ msgstr "Kirje"
537
+
538
+ #: includes/class-wcpdf-settings-general.php:90
539
+ msgid "Test mode"
540
+ msgstr ""
541
+
542
+ #: includes/class-wcpdf-settings-general.php:96
543
+ msgid ""
544
+ "With test mode enabled, any document generated will always use the latest "
545
+ "settings, rather than using the settings as configured at the time the "
546
+ "document was first created."
547
+ msgstr ""
548
+
549
+ #: includes/class-wcpdf-settings-general.php:96
550
+ msgid ""
551
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
552
+ "setting and will still be generated."
553
+ msgstr ""
554
+
555
+ #: includes/class-wcpdf-settings-general.php:102
556
+ msgid "Extended currency symbol support"
557
+ msgstr ""
558
+
559
+ #: includes/class-wcpdf-settings-general.php:108
560
+ msgid "Enable this if your currency symbol is not displaying properly"
561
+ msgstr ""
562
+
563
+ #: includes/class-wcpdf-settings-general.php:114
564
+ msgid "Enable font subsetting"
565
+ msgstr ""
566
+
567
+ #: includes/class-wcpdf-settings-general.php:120
568
+ msgid ""
569
+ "Font subsetting can reduce file size by only including the characters that "
570
+ "are used in the PDF, but limits the ability to edit PDF files later. "
571
+ "Recommended if you're using an Asian font."
572
+ msgstr ""
573
+
574
+ #: includes/class-wcpdf-settings-general.php:126
575
+ msgid "Shop header/logo"
576
+ msgstr "Kaupan logo"
577
+
578
+ #: includes/class-wcpdf-settings-general.php:132
579
+ #: includes/views/setup-wizard/logo.php:20
580
+ msgid "Select or upload your invoice header/logo"
581
+ msgstr "Valitse tai lataa laskun logo"
582
+
583
+ #: includes/class-wcpdf-settings-general.php:133
584
+ #: includes/views/setup-wizard/logo.php:20
585
+ msgid "Set image"
586
+ msgstr "Aseta kuva"
587
+
588
+ #: includes/class-wcpdf-settings-general.php:134
589
+ #: includes/views/setup-wizard/logo.php:20
590
+ msgid "Remove image"
591
+ msgstr "Poista kuva"
592
+
593
+ #: includes/class-wcpdf-settings-general.php:141
594
+ msgid "Logo height"
595
+ msgstr ""
596
+
597
+ #: includes/class-wcpdf-settings-general.php:149
598
+ msgid ""
599
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
600
+ "decimals.<br/>For example: 1.15in or 40mm"
601
+ msgstr ""
602
+
603
+ #: includes/class-wcpdf-settings-general.php:155
604
+ #: includes/class-wcpdf-setup-wizard.php:49
605
+ msgid "Shop Name"
606
+ msgstr "Kaupan nimi"
607
+
608
+ #: includes/class-wcpdf-settings-general.php:168
609
+ msgid "Shop Address"
610
+ msgstr "Kaupan osoite"
611
+
612
+ #: includes/class-wcpdf-settings-general.php:183
613
+ msgid "Footer: terms & conditions, policies, etc."
614
+ msgstr "Alapalkki: ehdot, periaatteet jne…"
615
+
616
+ #: includes/class-wcpdf-settings-general.php:198
617
+ msgid "Extra template fields"
618
+ msgstr "Lisäkentät"
619
+
620
+ #: includes/class-wcpdf-settings-general.php:204
621
+ msgid "Extra field 1"
622
+ msgstr "Lisäkenttä 1"
623
+
624
+ #: includes/class-wcpdf-settings-general.php:212
625
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
626
+ msgstr "Tämä on alapalkin sarake 1 <i>Modern (Premium)</i> -sivupohjassa."
627
+
628
+ #: includes/class-wcpdf-settings-general.php:219
629
+ msgid "Extra field 2"
630
+ msgstr "Lisäkenttä 2"
631
+
632
+ #: includes/class-wcpdf-settings-general.php:227
633
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
634
+ msgstr "Tämä on alapalkin sarake 2 <i>Modern (Premium)</i> -sivupohjassa."
635
+
636
+ #: includes/class-wcpdf-settings-general.php:234
637
+ msgid "Extra field 3"
638
+ msgstr "Lisäkenttä 3"
639
+
640
+ #: includes/class-wcpdf-settings-general.php:242
641
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
642
+ msgstr "Tämä on alapalkin sarake 3 <i>Modern (Premium)</i> -sivupohjassa."
643
+
644
+ #: includes/class-wcpdf-settings-general.php:290
645
+ msgid "Custom"
646
+ msgstr ""
647
+
648
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
649
+ msgid "PDF Invoices"
650
+ msgstr "PDF-laskut"
651
+
652
+ #: includes/class-wcpdf-settings.php:81
653
+ msgid "Documentation"
654
+ msgstr ""
655
+
656
+ #: includes/class-wcpdf-settings.php:82
657
+ msgid "Support Forum"
658
+ msgstr ""
659
+
660
+ #. translators: database row value
661
+ #: includes/class-wcpdf-settings.php:95
662
+ msgid ""
663
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
664
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
665
+ "document numbers (slow)' setting in the Status tab to use an alternate "
666
+ "method."
667
+ msgstr ""
668
+
669
+ #: includes/class-wcpdf-settings.php:103
670
+ msgid "General"
671
+ msgstr "Yleiset"
672
+
673
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
674
+ msgid "Status"
675
+ msgstr "Tila"
676
+
677
+ #. translators: 1. path, 2. template ID
678
+ #: includes/class-wcpdf-settings.php:396
679
+ msgid "Template setting migrated from %1$s to %2$s"
680
+ msgstr ""
681
+
682
+ #: includes/class-wcpdf-setup-wizard.php:53
683
+ #: includes/views/setup-wizard/logo.php:3
684
+ msgid "Your logo"
685
+ msgstr ""
686
+
687
+ #: includes/class-wcpdf-setup-wizard.php:57
688
+ msgid "Attachments"
689
+ msgstr ""
690
+
691
+ #: includes/class-wcpdf-setup-wizard.php:61
692
+ #: includes/views/setup-wizard/display-options.php:3
693
+ msgid "Display options"
694
+ msgstr ""
695
+
696
+ #: includes/class-wcpdf-setup-wizard.php:65
697
+ #: includes/views/setup-wizard/paper-format.php:3
698
+ msgid "Paper format"
699
+ msgstr ""
700
+
701
+ #: includes/class-wcpdf-setup-wizard.php:69
702
+ #: includes/views/setup-wizard/show-action-buttons.php:3
703
+ msgid "Action buttons"
704
+ msgstr ""
705
+
706
+ #: includes/class-wcpdf-setup-wizard.php:73
707
+ msgid "Ready!"
708
+ msgstr ""
709
+
710
+ #: includes/class-wcpdf-setup-wizard.php:135
711
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
712
+ msgstr ""
713
+
714
+ #: includes/class-wcpdf-setup-wizard.php:187
715
+ msgid "Previous"
716
+ msgstr ""
717
+
718
+ #: includes/class-wcpdf-setup-wizard.php:192
719
+ msgid "Next"
720
+ msgstr ""
721
+
722
+ #: includes/class-wcpdf-setup-wizard.php:193
723
+ msgid "Skip this step"
724
+ msgstr ""
725
+
726
+ #: includes/class-wcpdf-setup-wizard.php:195
727
+ msgid "Finish"
728
+ msgstr ""
729
+
730
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
731
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
732
+ msgid "N/A"
733
+ msgstr "-"
734
+
735
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
736
+ msgid "Payment method"
737
+ msgstr "Maksutapa"
738
+
739
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
740
+ msgid "Shipping method"
741
+ msgstr "Toimitustapa"
742
+
743
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
744
+ msgid "Subtotal"
745
+ msgstr "Välisumma"
746
+
747
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
748
+ msgid "Shipping"
749
+ msgstr "Toimitus"
750
+
751
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
752
+ msgid "Discount"
753
+ msgstr "Alennus"
754
+
755
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
756
+ msgid "VAT"
757
+ msgstr "Arvonlisävero"
758
+
759
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
760
+ msgid "Tax rate"
761
+ msgstr "Veroprosentti"
762
+
763
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
764
+ msgid "Total ex. VAT"
765
+ msgstr "Yhteensä (ei sis. Alv)"
766
+
767
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
768
+ msgid "Total"
769
+ msgstr "Yhteensä"
770
+
771
+ #. translators: 1. credit note title, 2. refund id
772
+ #: includes/documents/abstract-wcpdf-order-document.php:336
773
+ msgid "%1$s (refund #%2$s) was regenerated."
774
+ msgstr ""
775
+
776
+ #. translators: 1. credit note title, 2. refund id
777
+ #: includes/documents/abstract-wcpdf-order-document.php:336
778
+ msgid "%s was regenerated"
779
+ msgstr ""
780
+
781
+ #. translators: %s: document name
782
+ #: includes/documents/abstract-wcpdf-order-document.php:422
783
+ msgid "%s Number:"
784
+ msgstr ""
785
+
786
+ #. translators: %s: document name
787
+ #: includes/documents/abstract-wcpdf-order-document.php:428
788
+ msgid "%s Date:"
789
+ msgstr ""
790
+
791
+ #: includes/documents/abstract-wcpdf-order-document.php:904
792
+ msgid "Admin email"
793
+ msgstr ""
794
+
795
+ #: includes/documents/abstract-wcpdf-order-document.php:907
796
+ msgid "Manual email"
797
+ msgstr ""
798
+
799
+ #: includes/documents/class-wcpdf-invoice.php:32
800
+ #: includes/documents/class-wcpdf-invoice.php:56
801
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
802
+ msgid "Invoice"
803
+ msgstr "Lasku"
804
+
805
+ # This is a filename (prefix). do not use spaces or special characters!
806
+ #: includes/documents/class-wcpdf-invoice.php:131
807
+ msgid "invoice"
808
+ msgid_plural "invoices"
809
+ msgstr[0] "lasku"
810
+ msgstr[1] "laskut"
811
+
812
+ #: includes/documents/class-wcpdf-invoice.php:186
813
+ #: includes/documents/class-wcpdf-packing-slip.php:88
814
+ msgid "Enable"
815
+ msgstr ""
816
+
817
+ #: includes/documents/class-wcpdf-invoice.php:197
818
+ msgid "Attach to:"
819
+ msgstr ""
820
+
821
+ #. translators: directory path
822
+ #: includes/documents/class-wcpdf-invoice.php:205
823
+ msgid ""
824
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
825
+ "permissions for this folder! Without having write access to this folder, the "
826
+ "plugin will not be able to email invoices."
827
+ msgstr ""
828
+ "Näyttää siltä, että temp-tiedosto (<code>%s</code>) on kirjoitussuojattu, "
829
+ "tarkista tiedosto-oikeudet tälle kensiolle. Ilman kirjoitusoikeutta tämä "
830
+ "lisäosa ei pysty lähettämään laskuja sähköpostilla."
831
+
832
+ #: includes/documents/class-wcpdf-invoice.php:211
833
+ msgid "Disable for:"
834
+ msgstr ""
835
+
836
+ #: includes/documents/class-wcpdf-invoice.php:220
837
+ msgid "Select one or more statuses"
838
+ msgstr ""
839
+
840
+ #: includes/documents/class-wcpdf-invoice.php:226
841
+ #: includes/views/setup-wizard/display-options.php:17
842
+ msgid "Display shipping address"
843
+ msgstr "Näytä toimitusosoite"
844
+
845
+ #: includes/documents/class-wcpdf-invoice.php:233
846
+ #: includes/documents/class-wcpdf-invoice.php:285
847
+ #: includes/documents/class-wcpdf-invoice.php:301
848
+ #: includes/documents/class-wcpdf-packing-slip.php:106
849
+ msgid "No"
850
+ msgstr ""
851
+
852
+ #: includes/documents/class-wcpdf-invoice.php:234
853
+ msgid "Only when different from billing address"
854
+ msgstr ""
855
+
856
+ #: includes/documents/class-wcpdf-invoice.php:235
857
+ #: includes/documents/class-wcpdf-invoice.php:378
858
+ #: includes/documents/class-wcpdf-packing-slip.php:108
859
+ msgid "Always"
860
+ msgstr "Aina"
861
+
862
+ #: includes/documents/class-wcpdf-invoice.php:243
863
+ #: includes/documents/class-wcpdf-packing-slip.php:116
864
+ #: includes/views/setup-wizard/display-options.php:26
865
+ msgid "Display email address"
866
+ msgstr "Näytä sähköpostiosoite"
867
+
868
+ #: includes/documents/class-wcpdf-invoice.php:254
869
+ #: includes/documents/class-wcpdf-packing-slip.php:127
870
+ #: includes/views/setup-wizard/display-options.php:35
871
+ msgid "Display phone number"
872
+ msgstr "Näytä puhelinnumero"
873
+
874
+ #: includes/documents/class-wcpdf-invoice.php:265
875
+ #: includes/documents/class-wcpdf-packing-slip.php:138
876
+ msgid "Display customer notes"
877
+ msgstr ""
878
+
879
+ #: includes/documents/class-wcpdf-invoice.php:278
880
+ #: includes/views/setup-wizard/display-options.php:44
881
+ msgid "Display invoice date"
882
+ msgstr "Näytä laskun päivämäärä"
883
+
884
+ #: includes/documents/class-wcpdf-invoice.php:287
885
+ msgid "Order Date"
886
+ msgstr ""
887
+
888
+ #: includes/documents/class-wcpdf-invoice.php:294
889
+ #: includes/views/setup-wizard/display-options.php:53
890
+ msgid "Display invoice number"
891
+ msgstr ""
892
+
893
+ #: includes/documents/class-wcpdf-invoice.php:303
894
+ msgid "Order Number"
895
+ msgstr ""
896
+
897
+ #: includes/documents/class-wcpdf-invoice.php:307
898
+ msgid "Warning!"
899
+ msgstr ""
900
+
901
+ #: includes/documents/class-wcpdf-invoice.php:308
902
+ msgid ""
903
+ "Using the Order Number as invoice number is not recommended as this may lead "
904
+ "to gaps in the invoice number sequence (even when order numbers are "
905
+ "sequential)."
906
+ msgstr ""
907
+
908
+ #: includes/documents/class-wcpdf-invoice.php:309
909
+ msgid "More information"
910
+ msgstr ""
911
+
912
+ #: includes/documents/class-wcpdf-invoice.php:316
913
+ msgid "Next invoice number (without prefix/suffix etc.)"
914
+ msgstr "Seuraavan laskun numero (ilman etu/takaliitteitä tms.)"
915
+
916
+ #: includes/documents/class-wcpdf-invoice.php:322
917
+ msgid ""
918
+ "This is the number that will be used for the next document. By default, "
919
+ "numbering starts from 1 and increases for every new document. Note that if "
920
+ "you override this and set it lower than the current/highest number, this "
921
+ "could create duplicate numbers!"
922
+ msgstr ""
923
+
924
+ #: includes/documents/class-wcpdf-invoice.php:328
925
+ msgid "Number format"
926
+ msgstr ""
927
+
928
+ #: includes/documents/class-wcpdf-invoice.php:336
929
+ msgid "Prefix"
930
+ msgstr "Etuliite"
931
+
932
+ #: includes/documents/class-wcpdf-invoice.php:338
933
+ msgid ""
934
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
935
+ "respectively"
936
+ msgstr ""
937
+
938
+ #: includes/documents/class-wcpdf-invoice.php:341
939
+ msgid "Suffix"
940
+ msgstr "Takaliite"
941
+
942
+ #: includes/documents/class-wcpdf-invoice.php:346
943
+ msgid "Padding"
944
+ msgstr "Padding"
945
+
946
+ #: includes/documents/class-wcpdf-invoice.php:349
947
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
948
+ msgstr "syötä lukujen määrä tähän - syötä 6 näyttääksesi 42 seuraavasti 000042"
949
+
950
+ #: includes/documents/class-wcpdf-invoice.php:352
951
+ msgid ""
952
+ "note: if you have already created a custom invoice number format with a "
953
+ "filter, the above settings will be ignored"
954
+ msgstr ""
955
+ "huomio: jos olet jo luonut räätälöidyn laskun numeron muodon filtterillä, "
956
+ "yllä olevat asetukset ohitetaan"
957
+
958
+ #: includes/documents/class-wcpdf-invoice.php:358
959
+ msgid "Reset invoice number yearly"
960
+ msgstr "Nollaa laskun numero vuosittain"
961
+
962
+ #: includes/documents/class-wcpdf-invoice.php:369
963
+ msgid "Allow My Account invoice download"
964
+ msgstr "Salli laskun lataaminen oman tilin kautta"
965
+
966
+ #: includes/documents/class-wcpdf-invoice.php:376
967
+ msgid "Only when an invoice is already created/emailed"
968
+ msgstr "Ainoastaan kun lasku on luotu/lähetetty"
969
+
970
+ #: includes/documents/class-wcpdf-invoice.php:377
971
+ msgid "Only for specific order statuses (define below)"
972
+ msgstr "Ainoastaan tietyille tilauksen tiloille (määrittele alla)"
973
+
974
+ #: includes/documents/class-wcpdf-invoice.php:379
975
+ msgid "Never"
976
+ msgstr "Ei koskaan"
977
+
978
+ #: includes/documents/class-wcpdf-invoice.php:394
979
+ msgid "Enable invoice number column in the orders list"
980
+ msgstr "Aktivoi laskun numerot sarake Tilaukset-listalla."
981
+
982
+ #: includes/documents/class-wcpdf-invoice.php:405
983
+ msgid "Disable for free orders"
984
+ msgstr ""
985
+
986
+ #. translators: zero number
987
+ #: includes/documents/class-wcpdf-invoice.php:412
988
+ msgid "Disable document when the order total is %s"
989
+ msgstr ""
990
+
991
+ #: includes/documents/class-wcpdf-invoice.php:418
992
+ msgid "Always use most current settings"
993
+ msgstr ""
994
+
995
+ #: includes/documents/class-wcpdf-invoice.php:424
996
+ msgid ""
997
+ "When enabled, the document will always reflect the most current settings "
998
+ "(such as footer text, document name, etc.) rather than using historical "
999
+ "settings."
1000
+ msgstr ""
1001
+
1002
+ #: includes/documents/class-wcpdf-invoice.php:426
1003
+ msgid ""
1004
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1005
+ "your company name or address in the future, previously generated documents "
1006
+ "will also be affected."
1007
+ msgstr ""
1008
+
1009
+ #: includes/documents/class-wcpdf-invoice.php:439
1010
+ msgid "Invoice numbers are created by a third-party extension."
1011
+ msgstr ""
1012
+
1013
+ #. translators: link
1014
+ #: includes/documents/class-wcpdf-invoice.php:442
1015
+ msgid "Configure it <a href=\"%s\">here</a>."
1016
+ msgstr ""
1017
+
1018
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1019
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1020
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1021
+ msgid "Packing Slip"
1022
+ msgstr "Lähetyslista"
1023
+
1024
+ # This is a filename (prefix). do not use spaces or special characters!
1025
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1026
+ msgid "packing-slip"
1027
+ msgid_plural "packing-slips"
1028
+ msgstr[0] "lähetyslista"
1029
+ msgstr[1] "lähetyslistat"
1030
+
1031
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1032
+ msgid "Display billing address"
1033
+ msgstr "Näytä laskutusosoite"
1034
+
1035
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1036
+ msgid "Only when different from shipping address"
1037
+ msgstr ""
1038
+
1039
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1040
+ msgid "Packing Slip Number:"
1041
+ msgstr ""
1042
+
1043
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1044
+ msgid "Packing Slip Date:"
1045
+ msgstr ""
1046
+
1047
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1048
+ msgid "Legacy Document"
1049
+ msgstr ""
1050
+
1051
+ #: includes/legacy/class-wcpdf-legacy.php:72
1052
+ msgid "Error"
1053
+ msgstr ""
1054
+
1055
+ #: includes/legacy/class-wcpdf-legacy.php:73
1056
+ msgid ""
1057
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1058
+ "mode has been activated, please try again by reloading this page."
1059
+ msgstr ""
1060
+
1061
+ #: includes/legacy/class-wcpdf-legacy.php:76
1062
+ msgid "The following function was called"
1063
+ msgstr ""
1064
+
1065
+ #. translators: <a> tags
1066
+ #: includes/views/attachment-settings-hint.php:23
1067
+ msgid ""
1068
+ "It looks like you haven't setup any email attachments yet, check the "
1069
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1070
+ msgstr ""
1071
+
1072
+ #: includes/views/dompdf-status.php:11
1073
+ msgid "7.1+ (7.4 or higher recommended)"
1074
+ msgstr ""
1075
+
1076
+ #: includes/views/dompdf-status.php:24
1077
+ msgid "Recommended, will use fallback functions"
1078
+ msgstr ""
1079
+
1080
+ #: includes/views/dompdf-status.php:30
1081
+ msgid "Required if you have images in your documents"
1082
+ msgstr ""
1083
+
1084
+ #: includes/views/dompdf-status.php:39
1085
+ msgid "To compress PDF documents"
1086
+ msgstr ""
1087
+
1088
+ #: includes/views/dompdf-status.php:42
1089
+ msgid "Recommended to compress PDF documents"
1090
+ msgstr ""
1091
+
1092
+ #: includes/views/dompdf-status.php:45
1093
+ msgid "For better performances"
1094
+ msgstr ""
1095
+
1096
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1097
+ msgid "Recommended for better performances"
1098
+ msgstr ""
1099
+
1100
+ #: includes/views/dompdf-status.php:51
1101
+ msgid "Better with transparent PNG images"
1102
+ msgstr ""
1103
+
1104
+ #: includes/views/dompdf-status.php:57
1105
+ msgid ""
1106
+ "Required to detect custom templates and to clear the temp folder periodically"
1107
+ msgstr ""
1108
+
1109
+ #: includes/views/dompdf-status.php:60
1110
+ msgid "Check PHP disable_functions"
1111
+ msgstr ""
1112
+
1113
+ #. translators: <a> tags
1114
+ #: includes/views/dompdf-status.php:64
1115
+ msgid ""
1116
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1117
+ "WordPress Memory Limit%2$s"
1118
+ msgstr ""
1119
+
1120
+ #: includes/views/dompdf-status.php:69
1121
+ msgid "Allow remote stylesheets and images"
1122
+ msgstr ""
1123
+
1124
+ #: includes/views/dompdf-status.php:72
1125
+ msgid "allow_url_fopen disabled"
1126
+ msgstr ""
1127
+
1128
+ #: includes/views/dompdf-status.php:75
1129
+ msgid "To compress and decompress font data"
1130
+ msgstr ""
1131
+
1132
+ #: includes/views/dompdf-status.php:78
1133
+ msgid "base64_decode disabled"
1134
+ msgstr ""
1135
+
1136
+ #. translators: <a> tags
1137
+ #: includes/views/dompdf-status.php:98
1138
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1139
+ msgstr ""
1140
+
1141
+ #: includes/views/dompdf-status.php:103
1142
+ msgid "System Configuration"
1143
+ msgstr ""
1144
+
1145
+ #: includes/views/dompdf-status.php:108
1146
+ msgid "Required"
1147
+ msgstr ""
1148
+
1149
+ #: includes/views/dompdf-status.php:109
1150
+ msgid "Present"
1151
+ msgstr ""
1152
+
1153
+ #: includes/views/dompdf-status.php:148
1154
+ msgid "Writable"
1155
+ msgstr ""
1156
+
1157
+ #: includes/views/dompdf-status.php:149
1158
+ msgid "Not writable"
1159
+ msgstr ""
1160
+
1161
+ #: includes/views/dompdf-status.php:154
1162
+ msgid "Central temporary plugin folder"
1163
+ msgstr ""
1164
+
1165
+ #: includes/views/dompdf-status.php:160
1166
+ msgid "Temporary attachments folder"
1167
+ msgstr ""
1168
+
1169
+ #: includes/views/dompdf-status.php:166
1170
+ msgid "Temporary DOMPDF folder"
1171
+ msgstr ""
1172
+
1173
+ #: includes/views/dompdf-status.php:172
1174
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1175
+ msgstr ""
1176
+
1177
+ #: includes/views/dompdf-status.php:183
1178
+ msgid "Write Permissions"
1179
+ msgstr ""
1180
+
1181
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1182
+ #: templates/Simple/packing-slip.php:88
1183
+ msgid "Description"
1184
+ msgstr "Kuvaus"
1185
+
1186
+ #: includes/views/dompdf-status.php:187
1187
+ msgid "Value"
1188
+ msgstr ""
1189
+
1190
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1191
+ #: includes/views/dompdf-status.php:213
1192
+ msgid ""
1193
+ "The central temp folder is %1$s. By default, this folder is created in the "
1194
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1195
+ "config.php. Alternatively, you can control the specific folder for PDF "
1196
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1197
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1198
+ "by the plugin if the central temp folder is writable)."
1199
+ msgstr ""
1200
+
1201
+ #. translators: directory path
1202
+ #: includes/views/dompdf-status.php:226
1203
+ msgid ""
1204
+ "If the temporary folders were not automatically created by the plugin, "
1205
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1206
+ "Normally, this is fully automated, but if your server has strict security "
1207
+ "settings, this automated copying may have been prohibited. In that case, you "
1208
+ "also need to make sure these folders get synchronized on plugin updates!"
1209
+ msgstr ""
1210
+
1211
+ #: includes/views/setup-wizard/attach-to.php:3
1212
+ msgid "Attach too..."
1213
+ msgstr ""
1214
+
1215
+ #: includes/views/setup-wizard/attach-to.php:4
1216
+ msgid "Select to which emails you would like to attach your invoice."
1217
+ msgstr ""
1218
+
1219
+ #: includes/views/setup-wizard/display-options.php:4
1220
+ msgid "Select some additional display options for your invoice."
1221
+ msgstr ""
1222
+
1223
+ #: includes/views/setup-wizard/good-to-go.php:3
1224
+ msgid "You are good to go!"
1225
+ msgstr ""
1226
+
1227
+ #: includes/views/setup-wizard/good-to-go.php:4
1228
+ msgid "If you have any questions please have a look at our documentation:"
1229
+ msgstr ""
1230
+
1231
+ #: includes/views/setup-wizard/good-to-go.php:5
1232
+ msgid "Invoices & Packing Slips"
1233
+ msgstr ""
1234
+
1235
+ #: includes/views/setup-wizard/good-to-go.php:6
1236
+ msgid "Happy selling!"
1237
+ msgstr ""
1238
+
1239
+ #: includes/views/setup-wizard/logo.php:4
1240
+ msgid "Set the header image that will display on your invoice."
1241
+ msgstr ""
1242
+
1243
+ #: includes/views/setup-wizard/paper-format.php:4
1244
+ msgid "Select the paper format for your invoice."
1245
+ msgstr ""
1246
+
1247
+ #: includes/views/setup-wizard/shop-name.php:3
1248
+ msgid "Enter your shop name"
1249
+ msgstr ""
1250
+
1251
+ #: includes/views/setup-wizard/shop-name.php:4
1252
+ msgid ""
1253
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1254
+ "shop in the fields on the right."
1255
+ msgstr ""
1256
+
1257
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1258
+ msgid ""
1259
+ "Would you like to display the action buttons in your WooCommerce order list? "
1260
+ "The action buttons allow you to manually create a PDF."
1261
+ msgstr ""
1262
+
1263
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1264
+ msgid "(You can always change this setting later via the Screen Options menu)"
1265
+ msgstr ""
1266
+
1267
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1268
+ msgid "Show action buttons"
1269
+ msgstr ""
1270
+
1271
+ #: includes/views/wcpdf-extensions.php:16
1272
+ msgid "Check out these premium extensions!"
1273
+ msgstr "Tarkastele Premium laajennuksia"
1274
+
1275
+ #: includes/views/wcpdf-extensions.php:17
1276
+ msgid "click items to read more"
1277
+ msgstr "Klikkaa lisätietoja"
1278
+
1279
+ #: includes/views/wcpdf-extensions.php:22
1280
+ msgid ""
1281
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1282
+ "system"
1283
+ msgstr ""
1284
+
1285
+ #: includes/views/wcpdf-extensions.php:24
1286
+ msgid ""
1287
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1288
+ "premium extensions:"
1289
+ msgstr ""
1290
+
1291
+ #: includes/views/wcpdf-extensions.php:25
1292
+ msgid "Professional features:"
1293
+ msgstr ""
1294
+
1295
+ #: includes/views/wcpdf-extensions.php:27
1296
+ #: includes/views/wcpdf-extensions.php:57
1297
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1298
+ msgstr "Sähköposti/tulosta/lataa <b>PDF hyvityslaskut & Pro forma laskut</b>"
1299
+
1300
+ #: includes/views/wcpdf-extensions.php:28
1301
+ #: includes/views/wcpdf-extensions.php:58
1302
+ msgid ""
1303
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1304
+ "packing slips, for example to a drop-shipper or a supplier."
1305
+ msgstr ""
1306
+ "Lähetä erillinen huomautussähköposti joko PDF laskulla/lähetyslistalla tai "
1307
+ "ilman, esim. tavarantoimittajalle."
1308
+
1309
+ #: includes/views/wcpdf-extensions.php:29
1310
+ #: includes/views/wcpdf-extensions.php:59
1311
+ msgid ""
1312
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1313
+ "document) to the WooCommerce emails of your choice."
1314
+ msgstr ""
1315
+ "Lisää korkeintaan 3 staattista tiedostoa (kuten esim. toimitusehdot) "
1316
+ "WooCommercen sähköposteihin, jotka voit itse valita."
1317
+
1318
+ #: includes/views/wcpdf-extensions.php:30
1319
+ #: includes/views/wcpdf-extensions.php:60
1320
+ msgid ""
1321
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1322
+ "and credit notes or utilize the main invoice numbering system"
1323
+ msgstr ""
1324
+ "Käytä erillistä numerointia ja/tai formaattia pro forma laskuille ja "
1325
+ "hyvityslaskuille tai määrittele päätoiminen numerointijärjestelmä"
1326
+
1327
+ #: includes/views/wcpdf-extensions.php:31
1328
+ #: includes/views/wcpdf-extensions.php:61
1329
+ msgid ""
1330
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1331
+ "additional custom fields, font sizes etc. without the need to create a "
1332
+ "custom template."
1333
+ msgstr ""
1334
+ "Muokkaa toimitus- ja laskutusosoitetta lisätäksesi lisäkenttiä tai fontin "
1335
+ "kokoa suoraan ilman erillisen sivupohjan luomista."
1336
+
1337
+ #: includes/views/wcpdf-extensions.php:32
1338
+ #: includes/views/wcpdf-extensions.php:62
1339
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1340
+ msgstr "Käytä lisäosaa monikielisenä"
1341
+
1342
+ #: includes/views/wcpdf-extensions.php:34
1343
+ #: includes/views/wcpdf-extensions.php:114
1344
+ msgid "Advanced, customizable templates"
1345
+ msgstr "Kehittyneet, muokattavat sivupohjat"
1346
+
1347
+ #: includes/views/wcpdf-extensions.php:36
1348
+ #: includes/views/wcpdf-extensions.php:117
1349
+ msgid ""
1350
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1351
+ "your needs with a drag & drop customizer"
1352
+ msgstr ""
1353
+ "Muokkaa täydellisesti laskun sisältöä tarpeitasi varten drag & drop "
1354
+ "muokkaimella"
1355
+
1356
+ #: includes/views/wcpdf-extensions.php:37
1357
+ #: includes/views/wcpdf-extensions.php:118
1358
+ msgid "Two extra stylish premade templates (Modern & Business)"
1359
+ msgstr "Kaksi tyylikästä valmista sivupohjaa (Moderni ja Business)"
1360
+
1361
+ #: includes/views/wcpdf-extensions.php:39
1362
+ #: includes/views/wcpdf-extensions.php:63
1363
+ msgid "Upload automatically to dropbox"
1364
+ msgstr ""
1365
+
1366
+ #: includes/views/wcpdf-extensions.php:41
1367
+ msgid ""
1368
+ "This extension conveniently uploads all the invoices (and other pdf "
1369
+ "documents from the professional extension) that are emailed to your "
1370
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1371
+ "date!"
1372
+ msgstr "Tämä laajennus lähettää kaikki laskusi Dropbox tilillesi."
1373
+
1374
+ #: includes/views/wcpdf-extensions.php:44
1375
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1376
+ msgstr ""
1377
+
1378
+ #: includes/views/wcpdf-extensions.php:53
1379
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1380
+ msgstr "Valitse Pro versio: Pro forma laskut, hyvityslaskut ja paljon muuta!"
1381
+
1382
+ #: includes/views/wcpdf-extensions.php:55
1383
+ msgid ""
1384
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1385
+ "features:"
1386
+ msgstr ""
1387
+ "Täydennä WooCommerce PDF laskut & lähetyslistat seuraavilla ominaisuuksilla:"
1388
+
1389
+ #: includes/views/wcpdf-extensions.php:65
1390
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1391
+ msgstr "Hanki WooCommerce laskut & lähetyslistat Pro versio!"
1392
+
1393
+ #: includes/views/wcpdf-extensions.php:73
1394
+ msgid "Automatically send payment reminders to your customers"
1395
+ msgstr ""
1396
+
1397
+ #: includes/views/wcpdf-extensions.php:75
1398
+ msgid "WooCommerce Smart Reminder emails"
1399
+ msgstr ""
1400
+
1401
+ #: includes/views/wcpdf-extensions.php:77
1402
+ msgid "<b>Completely automatic</b> scheduled emails"
1403
+ msgstr ""
1404
+
1405
+ #: includes/views/wcpdf-extensions.php:78
1406
+ msgid ""
1407
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1408
+ "from the order (name, order total, etc)"
1409
+ msgstr ""
1410
+
1411
+ #: includes/views/wcpdf-extensions.php:79
1412
+ msgid ""
1413
+ "Configure the exact requirements for sending an email (time after order, "
1414
+ "order status, payment method)"
1415
+ msgstr ""
1416
+
1417
+ #: includes/views/wcpdf-extensions.php:80
1418
+ msgid ""
1419
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1420
+ "order language."
1421
+ msgstr ""
1422
+
1423
+ #: includes/views/wcpdf-extensions.php:81
1424
+ msgid ""
1425
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1426
+ "reminders, repeat purchases)"
1427
+ msgstr ""
1428
+
1429
+ #: includes/views/wcpdf-extensions.php:82
1430
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1431
+ msgstr ""
1432
+
1433
+ #: includes/views/wcpdf-extensions.php:84
1434
+ msgid "Get WooCommerce Smart Reminder Emails"
1435
+ msgstr ""
1436
+
1437
+ #: includes/views/wcpdf-extensions.php:93
1438
+ msgid ""
1439
+ "Automatically send new orders or packing slips to your printer, as soon as "
1440
+ "the customer orders!"
1441
+ msgstr "Lähetä automaattisesti tilaukset tai lähetyslistat tulostimelle."
1442
+
1443
+ #: includes/views/wcpdf-extensions.php:99
1444
+ msgid ""
1445
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1446
+ "partners at Simba Hosting"
1447
+ msgstr ""
1448
+ "Katso WooCommerce Automaattinen Tulostus laajennus yhteistyökumppaniltamme "
1449
+ "Simba Hostingilla"
1450
+
1451
+ #: includes/views/wcpdf-extensions.php:100
1452
+ msgid "WooCommerce Automatic Order Printing"
1453
+ msgstr "WooCommerce Automaattinen Tilauksen Tulostus"
1454
+
1455
+ #. translators: Premium Templates link
1456
+ #: includes/views/wcpdf-extensions.php:120
1457
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1458
+ msgstr "Katso Premium PDF lasku & lähetyslistat sivupohjat osoitteessa: %s."
1459
+
1460
+ #. translators: email link
1461
+ #: includes/views/wcpdf-extensions.php:122
1462
+ msgid "For custom templates, contact us at %s."
1463
+ msgstr "Haluatko räätälöidyt sivupohjat, ota yhteyttä meihin osoitteessa %s."
1464
+
1465
+ #: includes/views/wcpdf-settings-page.php:9
1466
+ msgid "WooCommerce PDF Invoices"
1467
+ msgstr "WooCommerce PDF-laskut"
1468
+
1469
+ #: includes/wcpdf-functions.php:209
1470
+ msgid "Error creating PDF, please contact the site owner."
1471
+ msgstr ""
1472
+
1473
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1474
+ msgid "Billing Address:"
1475
+ msgstr "Laskutusosoite:"
1476
+
1477
+ #: templates/Simple/invoice.php:48
1478
+ msgid "Ship To:"
1479
+ msgstr "Toimitetaan:"
1480
+
1481
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1482
+ msgid "Order Number:"
1483
+ msgstr "Tilauksen numero:"
1484
+
1485
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1486
+ msgid "Order Date:"
1487
+ msgstr "Tilauksen päiväys:"
1488
+
1489
+ #: templates/Simple/invoice.php:78
1490
+ msgid "Payment Method:"
1491
+ msgstr "Maksutapa:"
1492
+
1493
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1494
+ msgid "Product"
1495
+ msgstr "Tuote"
1496
+
1497
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1498
+ msgid "Quantity"
1499
+ msgstr "Määrä"
1500
+
1501
+ #: templates/Simple/invoice.php:94
1502
+ msgid "Price"
1503
+ msgstr "Hinta"
1504
+
1505
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1506
+ msgid "SKU"
1507
+ msgstr "Tuotekoodi"
1508
+
1509
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1510
+ msgid "SKU:"
1511
+ msgstr "Tuotekoodi:"
1512
+
1513
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1514
+ msgid "Weight:"
1515
+ msgstr "Paino:"
1516
+
1517
+ #: templates/Simple/invoice.php:123
1518
+ msgid "Notes"
1519
+ msgstr ""
1520
+
1521
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1522
+ msgid "Customer Notes"
1523
+ msgstr "Asiakkaan huomiot"
1524
+
1525
+ #: templates/Simple/packing-slip.php:35
1526
+ msgid "Shipping Address:"
1527
+ msgstr "Toimitusosoite:"
1528
+
1529
+ #: templates/Simple/packing-slip.php:66
1530
+ msgid "Shipping Method:"
1531
+ msgstr "Toimitustapa:"
1532
+
1533
+ #. translators: <a> tags
1534
+ #: woocommerce-pdf-invoices-packingslips.php:271
1535
+ msgid ""
1536
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1537
+ "installed & activated!"
1538
+ msgstr ""
1539
+
1540
+ #: woocommerce-pdf-invoices-packingslips.php:282
1541
+ msgid ""
1542
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1543
+ "recommended)."
1544
+ msgstr ""
1545
+
1546
+ #. translators: <a> tags
1547
+ #: woocommerce-pdf-invoices-packingslips.php:284
1548
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1549
+ msgstr ""
1550
+
1551
+ #. translators: <a> tags
1552
+ #: woocommerce-pdf-invoices-packingslips.php:286
1553
+ msgid ""
1554
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1555
+ "to enable backwards compatibility with PHP5.6."
1556
+ msgstr ""
1557
+
1558
+ #. translators: directory path
1559
+ #: woocommerce-pdf-invoices-packingslips.php:374
1560
+ msgid ""
1561
+ "The PDF files in %s are not currently protected due to your site running on "
1562
+ "<strong>NGINX</strong>."
1563
+ msgstr ""
1564
+
1565
+ #: woocommerce-pdf-invoices-packingslips.php:375
1566
+ msgid "To protect them, you must click the button below."
1567
+ msgstr ""
1568
+
1569
+ #. translators: plugin name
1570
+ #: woocommerce-pdf-invoices-packingslips.php:419
1571
+ msgid ""
1572
+ "When sending emails with MailPoet 3 and the active sending method is "
1573
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1574
+ "the emails."
1575
+ msgstr ""
1576
+
1577
+ #. translators: "Your web host / web server"
1578
+ #: woocommerce-pdf-invoices-packingslips.php:421
1579
+ msgid "To fix this you should select other method like %1$s or %2$s."
1580
+ msgstr ""
1581
+
1582
+ #. translators: "Your web host / web server"
1583
+ #: woocommerce-pdf-invoices-packingslips.php:421
1584
+ msgid "Your web host / web server"
1585
+ msgstr ""
1586
+
1587
+ #: woocommerce-pdf-invoices-packingslips.php:422
1588
+ msgid "Change MailPoet sending method"
1589
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-fr_FR.mo DELETED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-fr_FR.po DELETED
@@ -1,1779 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.2\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:20+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
- "Language: fr_FR\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 3.0\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
- #. Plugin Name of the plugin
24
- msgid "WooCommerce PDF Invoices & Packing Slips"
25
- msgstr "WooCommerce PDF Invoices & Packing Slips"
26
-
27
- #. Plugin URI of the plugin
28
- #. Author URI of the plugin
29
- msgid "http://www.wpovernight.com"
30
- msgstr "http://www.wpovernight.com"
31
-
32
- #. Description of the plugin
33
- msgid ""
34
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
35
- msgstr ""
36
-
37
- #. Author of the plugin
38
- msgid "Ewout Fernhout"
39
- msgstr "Ewout Fernhout"
40
-
41
- #. translators: rounded count
42
- #: includes/class-wcpdf-admin.php:92
43
- msgid "Wow, you have created more than %d invoices with our plugin!"
44
- msgstr ""
45
-
46
- #: includes/class-wcpdf-admin.php:93
47
- msgid ""
48
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
49
- "rating. Help us spread the word and boost our motivation!"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:95
53
- msgid "Yes you deserve it!"
54
- msgstr ""
55
-
56
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
57
- #: includes/views/attachment-settings-hint.php:24
58
- #: includes/views/wcpdf-extensions.php:131
59
- #: woocommerce-pdf-invoices-packingslips.php:377
60
- #: woocommerce-pdf-invoices-packingslips.php:423
61
- msgid "Hide this message"
62
- msgstr ""
63
-
64
- #: includes/class-wcpdf-admin.php:96
65
- msgid "Already did!"
66
- msgstr ""
67
-
68
- #: includes/class-wcpdf-admin.php:97
69
- msgid "Actually, I have a complaint..."
70
- msgstr ""
71
-
72
- #: includes/class-wcpdf-admin.php:132
73
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
74
- msgstr ""
75
-
76
- #: includes/class-wcpdf-admin.php:132
77
- msgid "Jumpstart the plugin by following our wizard!"
78
- msgstr ""
79
-
80
- #: includes/class-wcpdf-admin.php:133
81
- msgid "Run the Setup Wizard"
82
- msgstr ""
83
-
84
- #: includes/class-wcpdf-admin.php:133
85
- msgid "I am the wizard"
86
- msgstr ""
87
-
88
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
89
- #: includes/documents/class-wcpdf-invoice.php:302
90
- msgid "Invoice Number"
91
- msgstr "Numéro de facture"
92
-
93
- #: includes/class-wcpdf-admin.php:261
94
- msgid "Send order email"
95
- msgstr ""
96
-
97
- #: includes/class-wcpdf-admin.php:272
98
- msgid "Create PDF"
99
- msgstr "Créer un PDF"
100
-
101
- #: includes/class-wcpdf-admin.php:282
102
- msgid "PDF document data"
103
- msgstr ""
104
-
105
- #: includes/class-wcpdf-admin.php:304
106
- msgid "Choose an email to send&hellip;"
107
- msgstr ""
108
-
109
- #: includes/class-wcpdf-admin.php:320
110
- msgid "Save order & send email"
111
- msgstr ""
112
-
113
- #: includes/class-wcpdf-admin.php:322
114
- msgid "Send email"
115
- msgstr ""
116
-
117
- #: includes/class-wcpdf-admin.php:378
118
- #: includes/documents/class-wcpdf-invoice.php:460
119
- msgid "Invoice Number:"
120
- msgstr "Numéro de la Facture:"
121
-
122
- #: includes/class-wcpdf-admin.php:381
123
- #: includes/documents/class-wcpdf-invoice.php:468
124
- msgid "Invoice Date:"
125
- msgstr "Date de la facture :"
126
-
127
- #: includes/class-wcpdf-admin.php:384
128
- msgid "Notes (printed in the invoice):"
129
- msgstr ""
130
-
131
- #. translators: document title
132
- #: includes/class-wcpdf-admin.php:469
133
- msgid "Set %s number & date"
134
- msgstr ""
135
-
136
- #: includes/class-wcpdf-admin.php:478
137
- msgid "unformatted!"
138
- msgstr ""
139
-
140
- #: includes/class-wcpdf-admin.php:518
141
- msgid "Save changes"
142
- msgstr ""
143
-
144
- #: includes/class-wcpdf-admin.php:519
145
- msgid "Cancel"
146
- msgstr ""
147
-
148
- #. translators: name/description of the context for document creation logs
149
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
150
- msgid "order details (number and/or date set manually)"
151
- msgstr ""
152
-
153
- #. translators: %s: email title
154
- #: includes/class-wcpdf-admin.php:647
155
- msgid "%s email notification manually sent."
156
- msgstr ""
157
-
158
- #: includes/class-wcpdf-admin.php:734
159
- msgid "Nonce expired!"
160
- msgstr ""
161
-
162
- #: includes/class-wcpdf-admin.php:740
163
- msgid "Bad action!"
164
- msgstr ""
165
-
166
- #: includes/class-wcpdf-admin.php:746
167
- msgid "Incomplete request!"
168
- msgstr ""
169
-
170
- #: includes/class-wcpdf-admin.php:752
171
- msgid "No permissions!"
172
- msgstr ""
173
-
174
- #: includes/class-wcpdf-admin.php:776
175
- msgid "Document data saved!"
176
- msgstr ""
177
-
178
- #: includes/class-wcpdf-admin.php:777
179
- msgid "An error occurred while saving the document data!"
180
- msgstr ""
181
-
182
- #: includes/class-wcpdf-admin.php:780
183
- msgid "Document regenerated!"
184
- msgstr ""
185
-
186
- #: includes/class-wcpdf-admin.php:781
187
- msgid "An error occurred while regenerating the document!"
188
- msgstr ""
189
-
190
- #: includes/class-wcpdf-admin.php:784
191
- msgid "Document deleted!"
192
- msgstr ""
193
-
194
- #: includes/class-wcpdf-admin.php:785
195
- msgid "An error occurred while deleting the document!"
196
- msgstr ""
197
-
198
- #: includes/class-wcpdf-admin.php:841
199
- msgid "Document does not exist."
200
- msgstr ""
201
-
202
- #: includes/class-wcpdf-admin.php:850
203
- msgid "Document is empty."
204
- msgstr ""
205
-
206
- #: includes/class-wcpdf-admin.php:881
207
- msgid "DEBUG output enabled"
208
- msgstr ""
209
-
210
- #: includes/class-wcpdf-assets.php:91
211
- msgid "Are you sure you want to delete this document? This cannot be undone."
212
- msgstr ""
213
-
214
- #: includes/class-wcpdf-assets.php:92
215
- msgid ""
216
- "Are you sure you want to regenerate this document? This will make the "
217
- "document reflect the most current settings (such as footer text, document "
218
- "name, etc.) rather than using historical settings."
219
- msgstr ""
220
-
221
- #: includes/class-wcpdf-frontend.php:126
222
- msgid "Download invoice (PDF)"
223
- msgstr "Télécharger la facture (PDF)"
224
-
225
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
226
- #: includes/class-wcpdf-main.php:338
227
- msgid "You do not have sufficient permissions to access this page."
228
- msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
229
-
230
- #: includes/class-wcpdf-main.php:275
231
- msgid "You haven't selected any orders"
232
- msgstr ""
233
-
234
- #: includes/class-wcpdf-main.php:279
235
- msgid "Some of the export parameters are missing."
236
- msgstr "Certains paramètres d'exportation sont manquants."
237
-
238
- #. translators: document type
239
- #: includes/class-wcpdf-main.php:379
240
- msgid "Document of type '%s' for the selected order(s) could not be generated"
241
- msgstr ""
242
-
243
- #. translators: 1. plugin name, 2. directory path
244
- #: includes/class-wcpdf-main.php:591
245
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
246
- msgstr ""
247
-
248
- #: includes/class-wcpdf-main.php:592
249
- msgid ""
250
- "Please check your directories write permissions or contact your hosting "
251
- "service provider."
252
- msgstr ""
253
-
254
- #: includes/class-wcpdf-main.php:907
255
- #: includes/documents/class-wcpdf-invoice.php:286
256
- msgid "Invoice Date"
257
- msgstr ""
258
-
259
- #. translators: name/description of the context for document creation logs
260
- #: includes/class-wcpdf-main.php:937
261
- msgid "bulk order action"
262
- msgstr ""
263
-
264
- #. translators: name/description of the context for document creation logs
265
- #: includes/class-wcpdf-main.php:945
266
- msgid "single order action"
267
- msgstr ""
268
-
269
- #. translators: name/description of the context for document creation logs
270
- #: includes/class-wcpdf-main.php:953
271
- msgid "my account"
272
- msgstr ""
273
-
274
- #. translators: name/description of the context for document creation logs
275
- #: includes/class-wcpdf-main.php:961
276
- msgid "email attachment"
277
- msgstr ""
278
-
279
- #. translators: 1. document title, 2. creation source
280
- #: includes/class-wcpdf-main.php:970
281
- msgid "PDF %1$s created via %2$s."
282
- msgstr ""
283
-
284
- #. translators: document title
285
- #: includes/class-wcpdf-main.php:1006
286
- msgid "Order %s Saved"
287
- msgstr ""
288
-
289
- #: includes/class-wcpdf-settings-callbacks.php:27
290
- msgid ""
291
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
292
- "Do not use them on a live website!"
293
- msgstr ""
294
- "<b>Attention!</b> Les paramètres ci-dessous ne sont là que pour le débogage/"
295
- "développement. Ne pas les utiliser sur un site web en production!"
296
-
297
- #: includes/class-wcpdf-settings-callbacks.php:36
298
- msgid ""
299
- "These are used for the (optional) footer columns in the <em>Modern "
300
- "(Premium)</em> template, but can also be used for other elements in your "
301
- "custom template"
302
- msgstr ""
303
- "Ceux-ci sont utilisés pour les colonnes de pied de page (optionnelles) dans "
304
- "le modèle <em>Modern (Premium)</em>, mais ils peuvent aussi être utilisés "
305
- "pour d'autres éléments dans votre modèle personnalisé."
306
-
307
- #: includes/class-wcpdf-settings-callbacks.php:383
308
- msgid "Image resolution"
309
- msgstr "Résolution de l'image"
310
-
311
- #: includes/class-wcpdf-settings-callbacks.php:410
312
- msgid "Save"
313
- msgstr ""
314
-
315
- #: includes/class-wcpdf-settings-debug.php:45
316
- #: woocommerce-pdf-invoices-packingslips.php:376
317
- msgid "Generate random temporary folder name"
318
- msgstr ""
319
-
320
- #. translators: directory path
321
- #: includes/class-wcpdf-settings-debug.php:58
322
- msgid "Temporary folder moved to %s"
323
- msgstr ""
324
-
325
- #: includes/class-wcpdf-settings-debug.php:68
326
- msgid "Reinstall fonts"
327
- msgstr ""
328
-
329
- #: includes/class-wcpdf-settings-debug.php:89
330
- msgid "Fonts reinstalled!"
331
- msgstr ""
332
-
333
- #: includes/class-wcpdf-settings-debug.php:98
334
- msgid "Remove temporary files"
335
- msgstr ""
336
-
337
- #: includes/class-wcpdf-settings-debug.php:109
338
- msgid "Unable to read temporary folder contents!"
339
- msgstr ""
340
-
341
- #. translators: 1,2. file count
342
- #: includes/class-wcpdf-settings-debug.php:127
343
- msgid "Unable to delete %1$d files! (deleted %2$d)"
344
- msgstr ""
345
-
346
- #. translators: file count
347
- #: includes/class-wcpdf-settings-debug.php:131
348
- msgid "Successfully deleted %d files!"
349
- msgstr ""
350
-
351
- #: includes/class-wcpdf-settings-debug.php:135
352
- msgid "Nothing to delete!"
353
- msgstr ""
354
-
355
- #: includes/class-wcpdf-settings-debug.php:146
356
- msgid "Delete legacy (1.X) settings"
357
- msgstr ""
358
-
359
- #: includes/class-wcpdf-settings-debug.php:162
360
- msgid "Legacy settings deleted!"
361
- msgstr ""
362
-
363
- #: includes/class-wcpdf-settings-debug.php:192
364
- msgid "Debug settings"
365
- msgstr "Paramètres de débogage"
366
-
367
- #: includes/class-wcpdf-settings-debug.php:198
368
- msgid "Legacy mode"
369
- msgstr ""
370
-
371
- #: includes/class-wcpdf-settings-debug.php:204
372
- msgid ""
373
- "Legacy mode ensures compatibility with templates and filters from previous "
374
- "versions."
375
- msgstr ""
376
-
377
- #: includes/class-wcpdf-settings-debug.php:210
378
- msgid "Legacy textdomain fallback"
379
- msgstr ""
380
-
381
- #: includes/class-wcpdf-settings-debug.php:216
382
- msgid ""
383
- "Legacy textdomain fallback ensures compatibility with translation files from "
384
- "versions prior to 2017-05-15."
385
- msgstr ""
386
-
387
- #: includes/class-wcpdf-settings-debug.php:222
388
- msgid "Allow guest access"
389
- msgstr ""
390
-
391
- #: includes/class-wcpdf-settings-debug.php:228
392
- msgid ""
393
- "Enable this to allow customers that purchase without an account to access "
394
- "their PDF with a unique key"
395
- msgstr ""
396
-
397
- #: includes/class-wcpdf-settings-debug.php:234
398
- msgid "Calculate document numbers (slow)"
399
- msgstr ""
400
-
401
- #: includes/class-wcpdf-settings-debug.php:240
402
- msgid ""
403
- "Document numbers (such as invoice numbers) are generated using "
404
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
405
- "with more than 1."
406
- msgstr ""
407
-
408
- #: includes/class-wcpdf-settings-debug.php:246
409
- msgid "Enable debug output"
410
- msgstr "Activer les résultats de débug"
411
-
412
- #: includes/class-wcpdf-settings-debug.php:252
413
- msgid ""
414
- "Enable this option to output plugin errors if you're getting a blank page or "
415
- "other PDF generation issues"
416
- msgstr ""
417
- "Activer cette option pour publier les erreurs du plugin tel que si obtenez "
418
- "une page blanche ou des problèmes de génération de PDF"
419
-
420
- #: includes/class-wcpdf-settings-debug.php:253
421
- msgid ""
422
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
423
- "places on your site too, therefor this is not recommended to leave it "
424
- "enabled on live sites."
425
- msgstr ""
426
-
427
- #: includes/class-wcpdf-settings-debug.php:254
428
- msgid ""
429
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
430
- "order basis."
431
- msgstr ""
432
-
433
- #: includes/class-wcpdf-settings-debug.php:260
434
- msgid "Enable automatic cleanup"
435
- msgstr ""
436
-
437
- #. translators: number of days
438
- #: includes/class-wcpdf-settings-debug.php:268
439
- msgid "every %s days"
440
- msgstr ""
441
-
442
- #: includes/class-wcpdf-settings-debug.php:273
443
- msgid ""
444
- "Automatically clean up PDF files stored in the temporary folder (used for "
445
- "email attachments)"
446
- msgstr ""
447
-
448
- #: includes/class-wcpdf-settings-debug.php:274
449
- msgid ""
450
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
451
- "automatic cleanup but not enabled on your server."
452
- msgstr ""
453
-
454
- #: includes/class-wcpdf-settings-debug.php:280
455
- msgid "Output to HTML"
456
- msgstr "Résultats en HTML"
457
-
458
- #: includes/class-wcpdf-settings-debug.php:286
459
- msgid ""
460
- "Send the template output as HTML to the browser instead of creating a PDF."
461
- msgstr ""
462
- "Envoyer un modèle de résultats en HTML dans le navigateur au lieu de créer "
463
- "un PDF"
464
-
465
- #: includes/class-wcpdf-settings-debug.php:287
466
- msgid ""
467
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
468
- "order basis."
469
- msgstr ""
470
-
471
- #: includes/class-wcpdf-settings-debug.php:293
472
- msgid "Use alternative HTML5 parser to parse HTML"
473
- msgstr ""
474
-
475
- #: includes/class-wcpdf-settings-debug.php:304
476
- msgid "Log to order notes"
477
- msgstr ""
478
-
479
- #: includes/class-wcpdf-settings-debug.php:310
480
- msgid "Log PDF document creation to order notes."
481
- msgstr ""
482
-
483
- #: includes/class-wcpdf-settings-documents.php:30
484
- #: includes/class-wcpdf-settings.php:97
485
- msgid "Documents"
486
- msgstr ""
487
-
488
- #: includes/class-wcpdf-settings-documents.php:36
489
- #: includes/class-wcpdf-settings-documents.php:57
490
- msgid "untitled"
491
- msgstr ""
492
-
493
- #: includes/class-wcpdf-settings-documents.php:50
494
- msgid ""
495
- "All available documents are listed below. Click on a document to configure "
496
- "it."
497
- msgstr ""
498
-
499
- #: includes/class-wcpdf-settings-general.php:40
500
- msgid "General settings"
501
- msgstr "Paramètres généraux"
502
-
503
- #: includes/class-wcpdf-settings-general.php:46
504
- msgid "How do you want to view the PDF?"
505
- msgstr "Comment voulez-vous voir le PDF?"
506
-
507
- #: includes/class-wcpdf-settings-general.php:53
508
- msgid "Download the PDF"
509
- msgstr "Télécharger le PDF"
510
-
511
- #: includes/class-wcpdf-settings-general.php:54
512
- msgid "Open the PDF in a new browser tab/window"
513
- msgstr ""
514
- "Ouvrir le PDF dans un nouvel onglet/une nouvelle fenêtre du navigateur."
515
-
516
- #: includes/class-wcpdf-settings-general.php:61
517
- msgid "Choose a template"
518
- msgstr "Sélectionnez un modèle"
519
-
520
- #. translators: 1,2. template paths
521
- #: includes/class-wcpdf-settings-general.php:69
522
- msgid ""
523
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
524
- "your (child) theme in <code>%2$s</code> to customize them"
525
- msgstr ""
526
-
527
- #: includes/class-wcpdf-settings-general.php:75
528
- msgid "Paper size"
529
- msgstr "Taille du papier"
530
-
531
- #: includes/class-wcpdf-settings-general.php:82
532
- #: includes/views/setup-wizard/paper-format.php:12
533
- msgid "A4"
534
- msgstr "A4"
535
-
536
- #: includes/class-wcpdf-settings-general.php:83
537
- #: includes/views/setup-wizard/paper-format.php:13
538
- msgid "Letter"
539
- msgstr "Lettre"
540
-
541
- #: includes/class-wcpdf-settings-general.php:90
542
- msgid "Test mode"
543
- msgstr ""
544
-
545
- #: includes/class-wcpdf-settings-general.php:96
546
- msgid ""
547
- "With test mode enabled, any document generated will always use the latest "
548
- "settings, rather than using the settings as configured at the time the "
549
- "document was first created."
550
- msgstr ""
551
-
552
- #: includes/class-wcpdf-settings-general.php:96
553
- msgid ""
554
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
555
- "setting and will still be generated."
556
- msgstr ""
557
-
558
- #: includes/class-wcpdf-settings-general.php:102
559
- msgid "Extended currency symbol support"
560
- msgstr ""
561
-
562
- #: includes/class-wcpdf-settings-general.php:108
563
- msgid "Enable this if your currency symbol is not displaying properly"
564
- msgstr ""
565
-
566
- #: includes/class-wcpdf-settings-general.php:114
567
- msgid "Enable font subsetting"
568
- msgstr ""
569
-
570
- #: includes/class-wcpdf-settings-general.php:120
571
- msgid ""
572
- "Font subsetting can reduce file size by only including the characters that "
573
- "are used in the PDF, but limits the ability to edit PDF files later. "
574
- "Recommended if you're using an Asian font."
575
- msgstr ""
576
-
577
- #: includes/class-wcpdf-settings-general.php:126
578
- msgid "Shop header/logo"
579
- msgstr "En-tête de la boutique/logo"
580
-
581
- #: includes/class-wcpdf-settings-general.php:132
582
- #: includes/views/setup-wizard/logo.php:20
583
- msgid "Select or upload your invoice header/logo"
584
- msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
585
-
586
- #: includes/class-wcpdf-settings-general.php:133
587
- #: includes/views/setup-wizard/logo.php:20
588
- msgid "Set image"
589
- msgstr "Choisir une autre image"
590
-
591
- #: includes/class-wcpdf-settings-general.php:134
592
- #: includes/views/setup-wizard/logo.php:20
593
- msgid "Remove image"
594
- msgstr "Supprimer l'image"
595
-
596
- #: includes/class-wcpdf-settings-general.php:141
597
- msgid "Logo height"
598
- msgstr ""
599
-
600
- #: includes/class-wcpdf-settings-general.php:149
601
- msgid ""
602
- "Enter the total height of the logo in mm, cm or in and use a dot for "
603
- "decimals.<br/>For example: 1.15in or 40mm"
604
- msgstr ""
605
-
606
- #: includes/class-wcpdf-settings-general.php:155
607
- #: includes/class-wcpdf-setup-wizard.php:47
608
- msgid "Shop Name"
609
- msgstr "Nom de la boutique"
610
-
611
- #: includes/class-wcpdf-settings-general.php:168
612
- msgid "Shop Address"
613
- msgstr "Adresse de la boutique"
614
-
615
- #: includes/class-wcpdf-settings-general.php:183
616
- msgid "Footer: terms & conditions, policies, etc."
617
- msgstr "Pied de page : conditions générales de ventes, etc."
618
-
619
- #: includes/class-wcpdf-settings-general.php:198
620
- msgid "Extra template fields"
621
- msgstr "Champs supplémentaires du modèle"
622
-
623
- #: includes/class-wcpdf-settings-general.php:204
624
- msgid "Extra field 1"
625
- msgstr "Champ supplémentaire 1"
626
-
627
- #: includes/class-wcpdf-settings-general.php:212
628
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
629
- msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
630
-
631
- #: includes/class-wcpdf-settings-general.php:219
632
- msgid "Extra field 2"
633
- msgstr "Champ supplémentaire 2"
634
-
635
- #: includes/class-wcpdf-settings-general.php:227
636
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
637
- msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
638
-
639
- #: includes/class-wcpdf-settings-general.php:234
640
- msgid "Extra field 3"
641
- msgstr "Champ supplémentaire 3"
642
-
643
- #: includes/class-wcpdf-settings-general.php:242
644
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
645
- msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
646
-
647
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
648
- msgid "PDF Invoices"
649
- msgstr "Générer les factures au format PDF"
650
-
651
- #: includes/class-wcpdf-settings.php:74
652
- msgid "Documentation"
653
- msgstr ""
654
-
655
- #: includes/class-wcpdf-settings.php:75
656
- msgid "Support Forum"
657
- msgstr ""
658
-
659
- #. translators: database row value
660
- #: includes/class-wcpdf-settings.php:88
661
- msgid ""
662
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
663
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
664
- "document numbers (slow)' setting in the Status tab to use an alternate "
665
- "method."
666
- msgstr ""
667
-
668
- #: includes/class-wcpdf-settings.php:96
669
- msgid "General"
670
- msgstr "Général"
671
-
672
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
673
- msgid "Status"
674
- msgstr "État"
675
-
676
- #: includes/class-wcpdf-setup-wizard.php:51
677
- #: includes/views/setup-wizard/logo.php:3
678
- msgid "Your logo"
679
- msgstr ""
680
-
681
- #: includes/class-wcpdf-setup-wizard.php:55
682
- msgid "Attachments"
683
- msgstr ""
684
-
685
- #: includes/class-wcpdf-setup-wizard.php:59
686
- #: includes/views/setup-wizard/display-options.php:3
687
- msgid "Display options"
688
- msgstr ""
689
-
690
- #: includes/class-wcpdf-setup-wizard.php:63
691
- #: includes/views/setup-wizard/paper-format.php:3
692
- msgid "Paper format"
693
- msgstr ""
694
-
695
- #: includes/class-wcpdf-setup-wizard.php:67
696
- #: includes/views/setup-wizard/show-action-buttons.php:3
697
- msgid "Action buttons"
698
- msgstr ""
699
-
700
- #: includes/class-wcpdf-setup-wizard.php:71
701
- msgid "Ready!"
702
- msgstr ""
703
-
704
- #: includes/class-wcpdf-setup-wizard.php:133
705
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
706
- msgstr ""
707
-
708
- #: includes/class-wcpdf-setup-wizard.php:185
709
- msgid "Previous"
710
- msgstr ""
711
-
712
- #: includes/class-wcpdf-setup-wizard.php:190
713
- msgid "Next"
714
- msgstr ""
715
-
716
- #: includes/class-wcpdf-setup-wizard.php:191
717
- msgid "Skip this step"
718
- msgstr ""
719
-
720
- #: includes/class-wcpdf-setup-wizard.php:193
721
- msgid "Finish"
722
- msgstr ""
723
-
724
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
725
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
726
- msgid "N/A"
727
- msgstr "N/A"
728
-
729
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
730
- msgid "Payment method"
731
- msgstr "Méthode de paiement"
732
-
733
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
734
- msgid "Shipping method"
735
- msgstr "Méthode de livraison"
736
-
737
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
738
- msgid "Subtotal"
739
- msgstr "Sous-total"
740
-
741
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
742
- msgid "Shipping"
743
- msgstr "Livraison"
744
-
745
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
746
- msgid "Discount"
747
- msgstr "Remise"
748
-
749
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
750
- msgid "VAT"
751
- msgstr "TVA"
752
-
753
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
754
- msgid "Tax rate"
755
- msgstr "Taux de taxe (%)"
756
-
757
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
758
- msgid "Total ex. VAT"
759
- msgstr "Total H.T."
760
-
761
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
762
- msgid "Total"
763
- msgstr "Total"
764
-
765
- #. translators: 1. credit note title, 2. refund id
766
- #: includes/documents/abstract-wcpdf-order-document.php:336
767
- msgid "%1$s (refund #%2$s) was regenerated."
768
- msgstr ""
769
-
770
- #. translators: 1. credit note title, 2. refund id
771
- #: includes/documents/abstract-wcpdf-order-document.php:336
772
- msgid "%s was regenerated"
773
- msgstr ""
774
-
775
- #. translators: %s: document name
776
- #: includes/documents/abstract-wcpdf-order-document.php:422
777
- msgid "%s Number:"
778
- msgstr ""
779
-
780
- #. translators: %s: document name
781
- #: includes/documents/abstract-wcpdf-order-document.php:428
782
- msgid "%s Date:"
783
- msgstr ""
784
-
785
- #: includes/documents/abstract-wcpdf-order-document.php:891
786
- msgid "Admin email"
787
- msgstr ""
788
-
789
- #: includes/documents/abstract-wcpdf-order-document.php:894
790
- msgid "Manual email"
791
- msgstr ""
792
-
793
- #: includes/documents/class-wcpdf-invoice.php:32
794
- #: includes/documents/class-wcpdf-invoice.php:56
795
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
796
- msgid "Invoice"
797
- msgstr "Facture"
798
-
799
- # This is a filename (prefix). do not use spaces or special characters!
800
- #: includes/documents/class-wcpdf-invoice.php:131
801
- msgid "invoice"
802
- msgid_plural "invoices"
803
- msgstr[0] "facture"
804
- msgstr[1] "factures"
805
-
806
- #: includes/documents/class-wcpdf-invoice.php:186
807
- #: includes/documents/class-wcpdf-packing-slip.php:88
808
- msgid "Enable"
809
- msgstr ""
810
-
811
- #: includes/documents/class-wcpdf-invoice.php:197
812
- msgid "Attach to:"
813
- msgstr ""
814
-
815
- #. translators: directory path
816
- #: includes/documents/class-wcpdf-invoice.php:205
817
- msgid ""
818
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
819
- "permissions for this folder! Without having write access to this folder, the "
820
- "plugin will not be able to email invoices."
821
- msgstr ""
822
- "Le dossier temporaire (<code>%s</code>) ne semble pas modifiable, vérifiez "
823
- "vos permissions pour ce dossier! Sans l'autorisation d'écriture dans ce "
824
- "dossier, le plugin ne pourra pas envoyer les factures par e-mail."
825
-
826
- #: includes/documents/class-wcpdf-invoice.php:211
827
- msgid "Disable for:"
828
- msgstr ""
829
-
830
- #: includes/documents/class-wcpdf-invoice.php:220
831
- msgid "Select one or more statuses"
832
- msgstr ""
833
-
834
- #: includes/documents/class-wcpdf-invoice.php:226
835
- #: includes/views/setup-wizard/display-options.php:17
836
- msgid "Display shipping address"
837
- msgstr "Afficher l'adresse de livraison"
838
-
839
- #: includes/documents/class-wcpdf-invoice.php:233
840
- #: includes/documents/class-wcpdf-invoice.php:285
841
- #: includes/documents/class-wcpdf-invoice.php:301
842
- #: includes/documents/class-wcpdf-packing-slip.php:106
843
- msgid "No"
844
- msgstr ""
845
-
846
- #: includes/documents/class-wcpdf-invoice.php:234
847
- msgid "Only when different from billing address"
848
- msgstr ""
849
-
850
- #: includes/documents/class-wcpdf-invoice.php:235
851
- #: includes/documents/class-wcpdf-invoice.php:378
852
- #: includes/documents/class-wcpdf-packing-slip.php:108
853
- msgid "Always"
854
- msgstr "Toujours"
855
-
856
- #: includes/documents/class-wcpdf-invoice.php:243
857
- #: includes/documents/class-wcpdf-packing-slip.php:116
858
- #: includes/views/setup-wizard/display-options.php:26
859
- msgid "Display email address"
860
- msgstr "Afficher l'adresse email"
861
-
862
- #: includes/documents/class-wcpdf-invoice.php:254
863
- #: includes/documents/class-wcpdf-packing-slip.php:127
864
- #: includes/views/setup-wizard/display-options.php:35
865
- msgid "Display phone number"
866
- msgstr "Afficher le numéro de téléphone"
867
-
868
- #: includes/documents/class-wcpdf-invoice.php:265
869
- #: includes/documents/class-wcpdf-packing-slip.php:138
870
- msgid "Display customer notes"
871
- msgstr ""
872
-
873
- #: includes/documents/class-wcpdf-invoice.php:278
874
- #: includes/views/setup-wizard/display-options.php:44
875
- msgid "Display invoice date"
876
- msgstr "Afficher la date de la facture"
877
-
878
- #: includes/documents/class-wcpdf-invoice.php:287
879
- msgid "Order Date"
880
- msgstr ""
881
-
882
- #: includes/documents/class-wcpdf-invoice.php:294
883
- #: includes/views/setup-wizard/display-options.php:53
884
- msgid "Display invoice number"
885
- msgstr ""
886
-
887
- #: includes/documents/class-wcpdf-invoice.php:303
888
- msgid "Order Number"
889
- msgstr ""
890
-
891
- #: includes/documents/class-wcpdf-invoice.php:307
892
- msgid "Warning!"
893
- msgstr ""
894
-
895
- #: includes/documents/class-wcpdf-invoice.php:308
896
- msgid ""
897
- "Using the Order Number as invoice number is not recommended as this may lead "
898
- "to gaps in the invoice number sequence (even when order numbers are "
899
- "sequential)."
900
- msgstr ""
901
-
902
- #: includes/documents/class-wcpdf-invoice.php:309
903
- msgid "More information"
904
- msgstr ""
905
-
906
- #: includes/documents/class-wcpdf-invoice.php:316
907
- msgid "Next invoice number (without prefix/suffix etc.)"
908
- msgstr "Prochain numéro de facture (sans préfixe/suffixe,etc.)"
909
-
910
- #: includes/documents/class-wcpdf-invoice.php:322
911
- msgid ""
912
- "This is the number that will be used for the next document. By default, "
913
- "numbering starts from 1 and increases for every new document. Note that if "
914
- "you override this and set it lower than the current/highest number, this "
915
- "could create duplicate numbers!"
916
- msgstr ""
917
-
918
- #: includes/documents/class-wcpdf-invoice.php:328
919
- msgid "Number format"
920
- msgstr ""
921
-
922
- #: includes/documents/class-wcpdf-invoice.php:336
923
- msgid "Prefix"
924
- msgstr "Préfixe"
925
-
926
- #: includes/documents/class-wcpdf-invoice.php:338
927
- msgid ""
928
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
929
- "respectively"
930
- msgstr ""
931
-
932
- #: includes/documents/class-wcpdf-invoice.php:341
933
- msgid "Suffix"
934
- msgstr "Suffixe"
935
-
936
- #: includes/documents/class-wcpdf-invoice.php:346
937
- msgid "Padding"
938
- msgstr "Décalage"
939
-
940
- #: includes/documents/class-wcpdf-invoice.php:349
941
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
942
- msgstr ""
943
- "entrez le nombre de chiffres ici - entrez\"6\" pour que 42 s'affiche 000042"
944
-
945
- #: includes/documents/class-wcpdf-invoice.php:352
946
- msgid ""
947
- "note: if you have already created a custom invoice number format with a "
948
- "filter, the above settings will be ignored"
949
- msgstr ""
950
- "note: si vous avez déjà créé un format de numéro de facture personnalisé "
951
- "avec un filtre, les réglages ci-dessus seront ignorés"
952
-
953
- #: includes/documents/class-wcpdf-invoice.php:358
954
- msgid "Reset invoice number yearly"
955
- msgstr ""
956
-
957
- #: includes/documents/class-wcpdf-invoice.php:369
958
- msgid "Allow My Account invoice download"
959
- msgstr ""
960
- "Autoriser le téléchargement des factures à partir de l'interface \"Mon compte"
961
- "\""
962
-
963
- #: includes/documents/class-wcpdf-invoice.php:376
964
- msgid "Only when an invoice is already created/emailed"
965
- msgstr "Seulement lorsque la facture est déjà créée/envoyée par email"
966
-
967
- #: includes/documents/class-wcpdf-invoice.php:377
968
- msgid "Only for specific order statuses (define below)"
969
- msgstr "Uniquement pour les statuts de commandes suivants"
970
-
971
- #: includes/documents/class-wcpdf-invoice.php:379
972
- msgid "Never"
973
- msgstr "Jamais"
974
-
975
- #: includes/documents/class-wcpdf-invoice.php:394
976
- msgid "Enable invoice number column in the orders list"
977
- msgstr "Activer la colonne du numéro de facture dans la liste de commande"
978
-
979
- #: includes/documents/class-wcpdf-invoice.php:405
980
- msgid "Disable for free orders"
981
- msgstr ""
982
-
983
- #. translators: zero number
984
- #: includes/documents/class-wcpdf-invoice.php:412
985
- msgid "Disable document when the order total is %s"
986
- msgstr ""
987
-
988
- #: includes/documents/class-wcpdf-invoice.php:418
989
- msgid "Always use most current settings"
990
- msgstr ""
991
-
992
- #: includes/documents/class-wcpdf-invoice.php:424
993
- msgid ""
994
- "When enabled, the document will always reflect the most current settings "
995
- "(such as footer text, document name, etc.) rather than using historical "
996
- "settings."
997
- msgstr ""
998
-
999
- #: includes/documents/class-wcpdf-invoice.php:426
1000
- msgid ""
1001
- "<strong>Caution:</strong> enabling this will also mean that if you change "
1002
- "your company name or address in the future, previously generated documents "
1003
- "will also be affected."
1004
- msgstr ""
1005
-
1006
- #: includes/documents/class-wcpdf-invoice.php:439
1007
- msgid "Invoice numbers are created by a third-party extension."
1008
- msgstr ""
1009
-
1010
- #. translators: link
1011
- #: includes/documents/class-wcpdf-invoice.php:442
1012
- msgid "Configure it <a href=\"%s\">here</a>."
1013
- msgstr ""
1014
-
1015
- #: includes/documents/class-wcpdf-packing-slip.php:32
1016
- #: includes/documents/class-wcpdf-packing-slip.php:41
1017
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1018
- msgid "Packing Slip"
1019
- msgstr "Bon de livraison"
1020
-
1021
- # This is a filename (prefix). do not use spaces or special characters!
1022
- #: includes/documents/class-wcpdf-packing-slip.php:47
1023
- msgid "packing-slip"
1024
- msgid_plural "packing-slips"
1025
- msgstr[0] "bon-de-livraison"
1026
- msgstr[1] "bons-de-livraison"
1027
-
1028
- #: includes/documents/class-wcpdf-packing-slip.php:99
1029
- msgid "Display billing address"
1030
- msgstr "Afficher l'adresse de facturation"
1031
-
1032
- #: includes/documents/class-wcpdf-packing-slip.php:107
1033
- msgid "Only when different from shipping address"
1034
- msgstr ""
1035
-
1036
- #: includes/documents/class-wcpdf-packing-slip.php:162
1037
- msgid "Packing Slip Number:"
1038
- msgstr ""
1039
-
1040
- #: includes/documents/class-wcpdf-packing-slip.php:170
1041
- msgid "Packing Slip Date:"
1042
- msgstr ""
1043
-
1044
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1045
- msgid "Legacy Document"
1046
- msgstr ""
1047
-
1048
- #: includes/legacy/class-wcpdf-legacy.php:72
1049
- msgid "Error"
1050
- msgstr ""
1051
-
1052
- #: includes/legacy/class-wcpdf-legacy.php:73
1053
- msgid ""
1054
- "An outdated template or action hook was used to generate the PDF. Legacy "
1055
- "mode has been activated, please try again by reloading this page."
1056
- msgstr ""
1057
-
1058
- #: includes/legacy/class-wcpdf-legacy.php:76
1059
- msgid "The following function was called"
1060
- msgstr ""
1061
-
1062
- #. translators: <a> tags
1063
- #: includes/views/attachment-settings-hint.php:23
1064
- msgid ""
1065
- "It looks like you haven't setup any email attachments yet, check the "
1066
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1067
- msgstr ""
1068
-
1069
- #: includes/views/dompdf-status.php:11
1070
- msgid "7.1+ (7.4 or higher recommended)"
1071
- msgstr ""
1072
-
1073
- #: includes/views/dompdf-status.php:24
1074
- msgid "Recommended, will use fallback functions"
1075
- msgstr ""
1076
-
1077
- #: includes/views/dompdf-status.php:30
1078
- msgid "Required if you have images in your documents"
1079
- msgstr ""
1080
-
1081
- #: includes/views/dompdf-status.php:39
1082
- msgid "To compress PDF documents"
1083
- msgstr ""
1084
-
1085
- #: includes/views/dompdf-status.php:42
1086
- msgid "Recommended to compress PDF documents"
1087
- msgstr ""
1088
-
1089
- #: includes/views/dompdf-status.php:45
1090
- msgid "For better performances"
1091
- msgstr ""
1092
-
1093
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1094
- msgid "Recommended for better performances"
1095
- msgstr ""
1096
-
1097
- #: includes/views/dompdf-status.php:51
1098
- msgid "Better with transparent PNG images"
1099
- msgstr ""
1100
-
1101
- #: includes/views/dompdf-status.php:57
1102
- msgid ""
1103
- "Required to detect custom templates and to clear the temp folder periodically"
1104
- msgstr ""
1105
-
1106
- #: includes/views/dompdf-status.php:60
1107
- msgid "Check PHP disable_functions"
1108
- msgstr ""
1109
-
1110
- #. translators: <a> tags
1111
- #: includes/views/dompdf-status.php:64
1112
- msgid ""
1113
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1114
- "WordPress Memory Limit%2$s"
1115
- msgstr ""
1116
-
1117
- #: includes/views/dompdf-status.php:69
1118
- msgid "Allow remote stylesheets and images"
1119
- msgstr ""
1120
-
1121
- #: includes/views/dompdf-status.php:72
1122
- msgid "allow_url_fopen disabled"
1123
- msgstr ""
1124
-
1125
- #. translators: <a> tags
1126
- #: includes/views/dompdf-status.php:92
1127
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1128
- msgstr ""
1129
-
1130
- #: includes/views/dompdf-status.php:97
1131
- msgid "System Configuration"
1132
- msgstr ""
1133
-
1134
- #: includes/views/dompdf-status.php:102
1135
- msgid "Required"
1136
- msgstr ""
1137
-
1138
- #: includes/views/dompdf-status.php:103
1139
- msgid "Present"
1140
- msgstr ""
1141
-
1142
- #: includes/views/dompdf-status.php:142
1143
- msgid "Writable"
1144
- msgstr ""
1145
-
1146
- #: includes/views/dompdf-status.php:143
1147
- msgid "Not writable"
1148
- msgstr ""
1149
-
1150
- #: includes/views/dompdf-status.php:148
1151
- msgid "Central temporary plugin folder"
1152
- msgstr ""
1153
-
1154
- #: includes/views/dompdf-status.php:154
1155
- msgid "Temporary attachments folder"
1156
- msgstr ""
1157
-
1158
- #: includes/views/dompdf-status.php:160
1159
- msgid "Temporary DOMPDF folder"
1160
- msgstr ""
1161
-
1162
- #: includes/views/dompdf-status.php:166
1163
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1164
- msgstr ""
1165
-
1166
- #: includes/views/dompdf-status.php:177
1167
- msgid "Write Permissions"
1168
- msgstr ""
1169
-
1170
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1171
- #: templates/Simple/packing-slip.php:88
1172
- msgid "Description"
1173
- msgstr "Description"
1174
-
1175
- #: includes/views/dompdf-status.php:181
1176
- msgid "Value"
1177
- msgstr ""
1178
-
1179
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1180
- #: includes/views/dompdf-status.php:207
1181
- msgid ""
1182
- "The central temp folder is %1$s. By default, this folder is created in the "
1183
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1184
- "config.php. Alternatively, you can control the specific folder for PDF "
1185
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1186
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1187
- "by the plugin if the central temp folder is writable)."
1188
- msgstr ""
1189
-
1190
- #. translators: directory path
1191
- #: includes/views/dompdf-status.php:220
1192
- msgid ""
1193
- "If the temporary folders were not automatically created by the plugin, "
1194
- "verify that all the font files (from %s) are copied to the fonts folder. "
1195
- "Normally, this is fully automated, but if your server has strict security "
1196
- "settings, this automated copying may have been prohibited. In that case, you "
1197
- "also need to make sure these folders get synchronized on plugin updates!"
1198
- msgstr ""
1199
-
1200
- #: includes/views/setup-wizard/attach-to.php:3
1201
- msgid "Attach too..."
1202
- msgstr ""
1203
-
1204
- #: includes/views/setup-wizard/attach-to.php:4
1205
- msgid "Select to which emails you would like to attach your invoice."
1206
- msgstr ""
1207
-
1208
- #: includes/views/setup-wizard/display-options.php:4
1209
- msgid "Select some additional display options for your invoice."
1210
- msgstr ""
1211
-
1212
- #: includes/views/setup-wizard/good-to-go.php:3
1213
- msgid "You are good to go!"
1214
- msgstr ""
1215
-
1216
- #: includes/views/setup-wizard/good-to-go.php:4
1217
- msgid "If you have any questions please have a look at our documentation:"
1218
- msgstr ""
1219
-
1220
- #: includes/views/setup-wizard/good-to-go.php:5
1221
- msgid "Invoices & Packing Slips"
1222
- msgstr ""
1223
-
1224
- #: includes/views/setup-wizard/good-to-go.php:6
1225
- msgid "Happy selling!"
1226
- msgstr ""
1227
-
1228
- #: includes/views/setup-wizard/logo.php:4
1229
- msgid "Set the header image that will display on your invoice."
1230
- msgstr ""
1231
-
1232
- #: includes/views/setup-wizard/paper-format.php:4
1233
- msgid "Select the paper format for your invoice."
1234
- msgstr ""
1235
-
1236
- #: includes/views/setup-wizard/shop-name.php:3
1237
- msgid "Enter your shop name"
1238
- msgstr ""
1239
-
1240
- #: includes/views/setup-wizard/shop-name.php:4
1241
- msgid ""
1242
- "Lets quickly setup your invoice. Please enter the name and address of your "
1243
- "shop in the fields on the right."
1244
- msgstr ""
1245
-
1246
- #: includes/views/setup-wizard/show-action-buttons.php:4
1247
- msgid ""
1248
- "Would you like to display the action buttons in your WooCommerce order list? "
1249
- "The action buttons allow you to manually create a PDF."
1250
- msgstr ""
1251
-
1252
- #: includes/views/setup-wizard/show-action-buttons.php:5
1253
- msgid "(You can always change this setting later via the Screen Options menu)"
1254
- msgstr ""
1255
-
1256
- #: includes/views/setup-wizard/show-action-buttons.php:18
1257
- msgid "Show action buttons"
1258
- msgstr ""
1259
-
1260
- #: includes/views/wcpdf-extensions.php:16
1261
- msgid "Check out these premium extensions!"
1262
- msgstr "Découvrez ces extensions premium!"
1263
-
1264
- #: includes/views/wcpdf-extensions.php:17
1265
- msgid "click items to read more"
1266
- msgstr "Cliquez sur les articles pour en savoir plus"
1267
-
1268
- #: includes/views/wcpdf-extensions.php:22
1269
- msgid ""
1270
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1271
- "system"
1272
- msgstr ""
1273
-
1274
- #: includes/views/wcpdf-extensions.php:24
1275
- msgid ""
1276
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1277
- "premium extensions:"
1278
- msgstr ""
1279
-
1280
- #: includes/views/wcpdf-extensions.php:25
1281
- msgid "Professional features:"
1282
- msgstr ""
1283
-
1284
- #: includes/views/wcpdf-extensions.php:27
1285
- #: includes/views/wcpdf-extensions.php:57
1286
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1287
- msgstr "Envoyer/imprimer/télécharger les <b> Avoirs et Devis PDF</b>"
1288
-
1289
- #: includes/views/wcpdf-extensions.php:28
1290
- #: includes/views/wcpdf-extensions.php:58
1291
- msgid ""
1292
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1293
- "packing slips, for example to a drop-shipper or a supplier."
1294
- msgstr ""
1295
- "Envoyer séparément <b>la notification email</b> avec (ou sans) PDF invoices/"
1296
- "packing slips, par exemple à un transporteur ou un fournisseur."
1297
-
1298
- #: includes/views/wcpdf-extensions.php:29
1299
- #: includes/views/wcpdf-extensions.php:59
1300
- msgid ""
1301
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1302
- "document) to the WooCommerce emails of your choice."
1303
- msgstr ""
1304
- "Joindre<b>jusqu'à 3 fichiers fixes</b> (par exemple les conditions générales "
1305
- "de ventes)aux emails WooCommerce de votre choix."
1306
-
1307
- #: includes/views/wcpdf-extensions.php:30
1308
- #: includes/views/wcpdf-extensions.php:60
1309
- msgid ""
1310
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1311
- "and credit notes or utilize the main invoice numbering system"
1312
- msgstr ""
1313
- "Utiliser <b>une numérotation séparée</b> et/ou un format pour les Devis et "
1314
- "Avoirs ou utiliser la numérotation principale du système."
1315
-
1316
- #: includes/views/wcpdf-extensions.php:31
1317
- #: includes/views/wcpdf-extensions.php:61
1318
- msgid ""
1319
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1320
- "additional custom fields, font sizes etc. without the need to create a "
1321
- "custom template."
1322
- msgstr ""
1323
- "<b>Personnaliser le format de l'adresse de livraison et de facturation</b> "
1324
- "pour ajouter des champs personnalisés, taille de police, etc. sans créer de "
1325
- "modèle personnalisé."
1326
-
1327
- #: includes/views/wcpdf-extensions.php:32
1328
- #: includes/views/wcpdf-extensions.php:62
1329
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1330
- msgstr "Utiliser l'extension en configuration multilingue <b>WPML</b>"
1331
-
1332
- #: includes/views/wcpdf-extensions.php:34
1333
- #: includes/views/wcpdf-extensions.php:114
1334
- msgid "Advanced, customizable templates"
1335
- msgstr "Modèles avancés personnalisables"
1336
-
1337
- #: includes/views/wcpdf-extensions.php:36
1338
- #: includes/views/wcpdf-extensions.php:117
1339
- msgid ""
1340
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1341
- "your needs with a drag & drop customizer"
1342
- msgstr ""
1343
- "Adaptez intégralement le contenus des factures (prix, taxes, miniatures) à "
1344
- "vos besoins avec un système de \"glisser-déposer\""
1345
-
1346
- #: includes/views/wcpdf-extensions.php:37
1347
- #: includes/views/wcpdf-extensions.php:118
1348
- msgid "Two extra stylish premade templates (Modern & Business)"
1349
- msgstr "Deux modèles supplémentaires élégant prédéfinis (Moderne & Business)"
1350
-
1351
- #: includes/views/wcpdf-extensions.php:39
1352
- #: includes/views/wcpdf-extensions.php:63
1353
- msgid "Upload automatically to dropbox"
1354
- msgstr ""
1355
-
1356
- #: includes/views/wcpdf-extensions.php:41
1357
- msgid ""
1358
- "This extension conveniently uploads all the invoices (and other pdf "
1359
- "documents from the professional extension) that are emailed to your "
1360
- "customers to Dropbox. The best way to keep your invoice administration up to "
1361
- "date!"
1362
- msgstr ""
1363
- "Cette extension télécharge normalement toutes les factures (et autres "
1364
- "documents PDF pour l'extension professionnelle) envoyés par email dans votre "
1365
- "compte Dropbox. La meilleure façon de conserver vos documents administratif "
1366
- "à jour !"
1367
-
1368
- #: includes/views/wcpdf-extensions.php:44
1369
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1370
- msgstr ""
1371
-
1372
- #: includes/views/wcpdf-extensions.php:53
1373
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1374
- msgstr "Go Pro: factures Proforma, notes de crédit (= remboursements) et plus!"
1375
-
1376
- #: includes/views/wcpdf-extensions.php:55
1377
- msgid ""
1378
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1379
- "features:"
1380
- msgstr ""
1381
- "Boostez WooCommerce PDF Invoices & Packing Slips avec les options suivantes :"
1382
-
1383
- #: includes/views/wcpdf-extensions.php:65
1384
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1385
- msgstr "Achetez WooCommerce PDF Invoices & Packing Slips Professional!"
1386
-
1387
- #: includes/views/wcpdf-extensions.php:73
1388
- msgid "Automatically send payment reminders to your customers"
1389
- msgstr ""
1390
-
1391
- #: includes/views/wcpdf-extensions.php:75
1392
- msgid "WooCommerce Smart Reminder emails"
1393
- msgstr ""
1394
-
1395
- #: includes/views/wcpdf-extensions.php:77
1396
- msgid "<b>Completely automatic</b> scheduled emails"
1397
- msgstr ""
1398
-
1399
- #: includes/views/wcpdf-extensions.php:78
1400
- msgid ""
1401
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1402
- "from the order (name, order total, etc)"
1403
- msgstr ""
1404
-
1405
- #: includes/views/wcpdf-extensions.php:79
1406
- msgid ""
1407
- "Configure the exact requirements for sending an email (time after order, "
1408
- "order status, payment method)"
1409
- msgstr ""
1410
-
1411
- #: includes/views/wcpdf-extensions.php:80
1412
- msgid ""
1413
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1414
- "order language."
1415
- msgstr ""
1416
-
1417
- #: includes/views/wcpdf-extensions.php:81
1418
- msgid ""
1419
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1420
- "reminders, repeat purchases)"
1421
- msgstr ""
1422
-
1423
- #: includes/views/wcpdf-extensions.php:82
1424
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1425
- msgstr ""
1426
-
1427
- #: includes/views/wcpdf-extensions.php:84
1428
- msgid "Get WooCommerce Smart Reminder Emails"
1429
- msgstr ""
1430
-
1431
- #: includes/views/wcpdf-extensions.php:93
1432
- msgid ""
1433
- "Automatically send new orders or packing slips to your printer, as soon as "
1434
- "the customer orders!"
1435
- msgstr ""
1436
- "Imprimez automatiquement les nouvelles commandes ou les bons de livraison, "
1437
- "dès qu'une commande est effectuée!"
1438
-
1439
- #: includes/views/wcpdf-extensions.php:99
1440
- msgid ""
1441
- "Check out the WooCommerce Automatic Order Printing extension from our "
1442
- "partners at Simba Hosting"
1443
- msgstr ""
1444
- "Découvrez WooCommerce Automatic Order Printing de notre partenaire Simba "
1445
- "Hosting"
1446
-
1447
- #: includes/views/wcpdf-extensions.php:100
1448
- msgid "WooCommerce Automatic Order Printing"
1449
- msgstr ""
1450
-
1451
- #. translators: Premium Templates link
1452
- #: includes/views/wcpdf-extensions.php:120
1453
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1454
- msgstr "Consultez les modèles Prémium PDF Invoice & Packing Slips ici %s."
1455
-
1456
- #. translators: email link
1457
- #: includes/views/wcpdf-extensions.php:122
1458
- msgid "For custom templates, contact us at %s."
1459
- msgstr "Pour des modèles sur mesure, nous contacter au %s."
1460
-
1461
- #: includes/views/wcpdf-settings-page.php:9
1462
- msgid "WooCommerce PDF Invoices"
1463
- msgstr "Factures PDF WooCommerce"
1464
-
1465
- #: includes/wcpdf-functions.php:209
1466
- msgid "Error creating PDF, please contact the site owner."
1467
- msgstr ""
1468
-
1469
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1470
- msgid "Billing Address:"
1471
- msgstr "Adresse de facturation:"
1472
-
1473
- #: templates/Simple/invoice.php:48
1474
- msgid "Ship To:"
1475
- msgstr "Livrer à:"
1476
-
1477
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1478
- msgid "Order Number:"
1479
- msgstr "Numéro de commande:"
1480
-
1481
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1482
- msgid "Order Date:"
1483
- msgstr "Date de commande:"
1484
-
1485
- #: templates/Simple/invoice.php:78
1486
- msgid "Payment Method:"
1487
- msgstr "Méthode de paiement:"
1488
-
1489
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1490
- msgid "Product"
1491
- msgstr "Produits"
1492
-
1493
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1494
- msgid "Quantity"
1495
- msgstr "Quantité"
1496
-
1497
- #: templates/Simple/invoice.php:94
1498
- msgid "Price"
1499
- msgstr "Prix"
1500
-
1501
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1502
- msgid "SKU"
1503
- msgstr "UGS"
1504
-
1505
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1506
- msgid "SKU:"
1507
- msgstr "UGS:"
1508
-
1509
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1510
- msgid "Weight:"
1511
- msgstr "Poids:"
1512
-
1513
- #: templates/Simple/invoice.php:123
1514
- msgid "Notes"
1515
- msgstr ""
1516
-
1517
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1518
- msgid "Customer Notes"
1519
- msgstr "Notes du client"
1520
-
1521
- #: templates/Simple/packing-slip.php:35
1522
- msgid "Shipping Address:"
1523
- msgstr "Adresse de livraison:"
1524
-
1525
- #: templates/Simple/packing-slip.php:66
1526
- msgid "Shipping Method:"
1527
- msgstr "Mode de livraison:"
1528
-
1529
- #. translators: <a> tags
1530
- #: woocommerce-pdf-invoices-packingslips.php:271
1531
- msgid ""
1532
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1533
- "installed & activated!"
1534
- msgstr ""
1535
-
1536
- #: woocommerce-pdf-invoices-packingslips.php:282
1537
- msgid ""
1538
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1539
- "recommended)."
1540
- msgstr ""
1541
-
1542
- #. translators: <a> tags
1543
- #: woocommerce-pdf-invoices-packingslips.php:284
1544
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1545
- msgstr ""
1546
-
1547
- #. translators: <a> tags
1548
- #: woocommerce-pdf-invoices-packingslips.php:286
1549
- msgid ""
1550
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1551
- "to enable backwards compatibility with PHP5.6."
1552
- msgstr ""
1553
-
1554
- #. translators: directory path
1555
- #: woocommerce-pdf-invoices-packingslips.php:374
1556
- msgid ""
1557
- "The PDF files in %s are not currently protected due to your site running on "
1558
- "<strong>NGINX</strong>."
1559
- msgstr ""
1560
-
1561
- #: woocommerce-pdf-invoices-packingslips.php:375
1562
- msgid "To protect them, you must click the button below."
1563
- msgstr ""
1564
-
1565
- #. translators: plugin name
1566
- #: woocommerce-pdf-invoices-packingslips.php:419
1567
- msgid ""
1568
- "When sending emails with MailPoet 3 and the active sending method is "
1569
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1570
- "the emails."
1571
- msgstr ""
1572
-
1573
- #. translators: "Your web host / web server"
1574
- #: woocommerce-pdf-invoices-packingslips.php:421
1575
- msgid "To fix this you should select other method like %1$s or %2$s."
1576
- msgstr ""
1577
-
1578
- #. translators: "Your web host / web server"
1579
- #: woocommerce-pdf-invoices-packingslips.php:421
1580
- msgid "Your web host / web server"
1581
- msgstr ""
1582
-
1583
- #: woocommerce-pdf-invoices-packingslips.php:422
1584
- msgid "Change MailPoet sending method"
1585
- msgstr ""
1586
-
1587
- #~ msgid "PDF Invoice data"
1588
- #~ msgstr "Données de Facture PDF"
1589
-
1590
- #~ msgid "Invoice Number (unformatted!)"
1591
- #~ msgstr "Numéro de facture (non formaté !)"
1592
-
1593
- #~ msgid "h"
1594
- #~ msgstr "h"
1595
-
1596
- #~ msgid "m"
1597
- #~ msgstr "m"
1598
-
1599
- #, php-format
1600
- #~ msgid ""
1601
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1602
- #~ "your (child) theme in <code>%s</code> to customize them"
1603
- #~ msgstr ""
1604
- #~ "Vous souhaitez utiliser votre propre modèle ? Copiez tous les fichiers "
1605
- #~ "situés dans <code>%s</code> vers votre thème (enfant) dans <code>%s</"
1606
- #~ "code> pour les customiser"
1607
-
1608
- #~ msgid "Settings"
1609
- #~ msgstr "Paramètres"
1610
-
1611
- #, php-format
1612
- #~ msgid "(Includes %s)"
1613
- #~ msgstr "(Inclus %s)"
1614
-
1615
- #~ msgid "Disable for free products"
1616
- #~ msgstr "Désactiver pour les produits gratuits"
1617
-
1618
- #~ msgid "Upload all invoices automatically to your dropbox"
1619
- #~ msgstr "Uploadez automatiquement toutes les factures sur votre Dropbox"
1620
-
1621
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1622
- #~ msgstr "Achetez WooCommerce PDF Invoices & Packing Slips to dropbox!"
1623
-
1624
- #, php-format
1625
- #~ msgid ""
1626
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1627
- #~ "installed & activated!"
1628
- #~ msgstr ""
1629
- #~ "WooCommerce PDF Invoices & Packing Slips requiert %sWooCommerce%s pour "
1630
- #~ "être installé et activé!"
1631
-
1632
- #~ msgid "Attach invoice to:"
1633
- #~ msgstr "Joindre la facture à:"
1634
-
1635
- #~ msgid ""
1636
- #~ "Display shipping address on invoice (in addition to the default billing "
1637
- #~ "address) if different from billing address"
1638
- #~ msgstr ""
1639
- #~ "Afficher l'adresse de livraison sur la facture (en plus de l'adresse de "
1640
- #~ "facturation) si celle-ci est différente de l'adresse de facturation"
1641
-
1642
- #~ msgid ""
1643
- #~ "This is the number that will be used on the next invoice that is created. "
1644
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1645
- #~ "first invoice that is created and increases for every new invoice. Note "
1646
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1647
- #~ "number, this could create double invoice numbers!"
1648
- #~ msgstr ""
1649
- #~ "Ceci est le numéro qui sera utilisé pour la prochaine facture. Par "
1650
- #~ "défaut, la numérotation débute avec le numéro de commande de WooCommerce "
1651
- #~ "sur la première facture créée et s'incrémente à chaque nouvelle facture. "
1652
- #~ "À noter que si vous changer le numéro et qu'il est plus petit que celui "
1653
- #~ "de la facture PDF, vous pourriez créer des numéros de facture en double!"
1654
-
1655
- #~ msgid "Invoice number format"
1656
- #~ msgstr "Format du numéro de facture"
1657
-
1658
- #~ msgid ""
1659
- #~ "Disable automatic creation/attachment of invoices when only free products "
1660
- #~ "are ordered"
1661
- #~ msgstr ""
1662
- #~ "Désactiver la création / envoi en pièce jointe automatique de la facture "
1663
- #~ "lorsque seuls des produits gratuits sont commandés"
1664
-
1665
- #~ msgid ""
1666
- #~ "Display billing address on packing slip (in addition to the default "
1667
- #~ "shipping address) if different from shipping address"
1668
- #~ msgstr ""
1669
- #~ "Afficher l'adresse de facturation sur le bon de livraison (en plus de "
1670
- #~ "l'adresse de livraison par défaut) si celle-ci est différente de "
1671
- #~ "l'adresse de livraison"
1672
-
1673
- #~ msgid "Template"
1674
- #~ msgstr "Modèle"
1675
-
1676
- #~ msgid "Admin New Order email"
1677
- #~ msgstr "Email Nouvelle commande (administrateur)"
1678
-
1679
- #~ msgid "Customer Processing Order email"
1680
- #~ msgstr "Email Commande en cours (client)"
1681
-
1682
- #~ msgid "Customer Completed Order email"
1683
- #~ msgstr "Email Commande terminée (client)"
1684
-
1685
- #~ msgid "Customer Invoice email"
1686
- #~ msgstr "Email Facture client (client)"
1687
-
1688
- #~ msgid "Interface"
1689
- #~ msgstr "Interface"
1690
-
1691
- #~ msgid "PDF Template settings"
1692
- #~ msgstr "Paramètres des modèles PDF"
1693
-
1694
- #~ msgid "Display built-in sequential invoice number"
1695
- #~ msgstr "Afficher le numéro de facture intégré"
1696
-
1697
- #~ msgid ""
1698
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
1699
- #~ "respectively"
1700
- #~ msgstr ""
1701
- #~ "pour utiliser l'année et/ou le mois de la commande, utilisez "
1702
- #~ "respectivement [order_year] ou [order_month]"
1703
-
1704
- #~ msgid "Use old tmp folder"
1705
- #~ msgstr "Utiliser le fichier temporaire"
1706
-
1707
- #~ msgid ""
1708
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1709
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1710
- #~ "not recommended on new installs!"
1711
- #~ msgstr ""
1712
- #~ "Avant la version 1.5 de PDF Invoices, les fichiers temporaires étaient "
1713
- #~ "stockés dans le dossier du plugin. Ce paramètre est requis seulement pour "
1714
- #~ "les versions antérieures compatibles, non recommandé sur les nouvelles "
1715
- #~ "installations."
1716
-
1717
- #~ msgid "PDF Packing Slips"
1718
- #~ msgstr "Générer les bons de livraison au format PDF"
1719
-
1720
- #~ msgid "PDF Invoice"
1721
- #~ msgstr "Générer la facture au format PDF"
1722
-
1723
- #~ msgid "PDF Packing Slip"
1724
- #~ msgstr "Générer le bon de livraison au format PDF"
1725
-
1726
- #~ msgid "PDF Invoice Number (unformatted!)"
1727
- #~ msgstr "Numéro (non formaté) de Facture PDF"
1728
-
1729
- # @ wpo_wcpdf
1730
- #~ msgid ""
1731
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
1732
- #~ "Packing Slips templates at %s."
1733
- #~ msgstr ""
1734
- #~ "Vous cherchez des modèles plus avancés ? Jetez un oeil aux modèles "
1735
- #~ "Premium PDF Invoice & Packing Slips sur %s."
1736
-
1737
- # @ wpo_wcpdf
1738
- #~ msgid ""
1739
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1740
- #~ "<code>%s</code> to customize them"
1741
- #~ msgstr ""
1742
- #~ "Vous voulez utiliser votre propre modèle? Copiez tous les fichiers de "
1743
- #~ "<code>%s</code> dans <code>%s</code> pour le personnaliser"
1744
-
1745
- # @ wpo_wcpdf
1746
- #~ msgid "Number to display on invoice"
1747
- #~ msgstr "Numéro à afficher sur la facture"
1748
-
1749
- # @ wpo_wcpdf
1750
- #~ msgid "WooCommerce order number"
1751
- #~ msgstr "Numéro de Commande WooCommerce"
1752
-
1753
- # @ wpo_wcpdf
1754
- #~ msgid "Built-in sequential invoice number"
1755
- #~ msgstr "Numéro de facture séquentiel imbriqué"
1756
-
1757
- # @ wpo_wcpdf
1758
- #~ msgid ""
1759
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
1760
- #~ "the WooCommerce order number"
1761
- #~ msgstr ""
1762
- #~ "Si vous utilisez l'extension WooCommerce pour la numérotation, choisir le "
1763
- #~ "numéro de commande WooCommerce"
1764
-
1765
- # @ wpo_wcpdf
1766
- #~ msgid "Date to display on invoice"
1767
- #~ msgstr "Date à afficher sur la facture"
1768
-
1769
- # @ wpo_wcpdf
1770
- #~ msgid "Order date"
1771
- #~ msgstr "Date de la commande"
1772
-
1773
- # @ wpo_wcpdf
1774
- #~ msgid "Invoice date"
1775
- #~ msgstr "Date de la facture"
1776
-
1777
- # @ wpo_wcpdf
1778
- #~ msgid "PDF invoice"
1779
- #~ msgstr "Générer la facture au format PDF"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-hr.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-hr.po CHANGED
@@ -1,1724 +1,1610 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:21+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
- "Language: hr\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
15
- "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2;\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 3.0\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Loco-Target-Locale: hr_HR\n"
25
- "X-Poedit-SearchPath-0: .\n"
26
-
27
- #. Plugin Name of the plugin
28
- msgid "WooCommerce PDF Invoices & Packing Slips"
29
- msgstr "WooCommerce PDF Invoices & Packing Slips"
30
-
31
- #. Plugin URI of the plugin
32
- #. Author URI of the plugin
33
- msgid "http://www.wpovernight.com"
34
- msgstr "http://www.wpovernight.com"
35
-
36
- #. Description of the plugin
37
- msgid ""
38
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
39
- msgstr ""
40
- "Izradi, Ispiši & pošalji E-mailom Račune & paketne slipove za narudžbe putem "
41
- "WooCommerce-a."
42
-
43
- #. Author of the plugin
44
- msgid "Ewout Fernhout"
45
- msgstr "Ewout Fernhout"
46
-
47
- #. translators: rounded count
48
- #: includes/class-wcpdf-admin.php:92
49
- msgid "Wow, you have created more than %d invoices with our plugin!"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:93
53
- msgid ""
54
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
55
- "rating. Help us spread the word and boost our motivation!"
56
- msgstr ""
57
-
58
- #: includes/class-wcpdf-admin.php:95
59
- msgid "Yes you deserve it!"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
63
- #: includes/views/attachment-settings-hint.php:24
64
- #: includes/views/wcpdf-extensions.php:131
65
- #: woocommerce-pdf-invoices-packingslips.php:377
66
- #: woocommerce-pdf-invoices-packingslips.php:423
67
- msgid "Hide this message"
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:96
71
- msgid "Already did!"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:97
75
- msgid "Actually, I have a complaint..."
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:132
79
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:132
83
- msgid "Jumpstart the plugin by following our wizard!"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:133
87
- msgid "Run the Setup Wizard"
88
- msgstr ""
89
-
90
- #: includes/class-wcpdf-admin.php:133
91
- msgid "I am the wizard"
92
- msgstr ""
93
-
94
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
95
- #: includes/documents/class-wcpdf-invoice.php:302
96
- msgid "Invoice Number"
97
- msgstr "Broj računa"
98
-
99
- #: includes/class-wcpdf-admin.php:261
100
- msgid "Send order email"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:272
104
- msgid "Create PDF"
105
- msgstr "Generiraj PDF"
106
-
107
- #: includes/class-wcpdf-admin.php:282
108
- msgid "PDF document data"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:304
112
- msgid "Choose an email to send&hellip;"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:320
116
- msgid "Save order & send email"
117
- msgstr ""
118
-
119
- #: includes/class-wcpdf-admin.php:322
120
- msgid "Send email"
121
- msgstr ""
122
-
123
- #: includes/class-wcpdf-admin.php:378
124
- #: includes/documents/class-wcpdf-invoice.php:460
125
- msgid "Invoice Number:"
126
- msgstr "Broj računa:"
127
-
128
- #: includes/class-wcpdf-admin.php:381
129
- #: includes/documents/class-wcpdf-invoice.php:468
130
- msgid "Invoice Date:"
131
- msgstr "Datum računa:"
132
-
133
- #: includes/class-wcpdf-admin.php:384
134
- msgid "Notes (printed in the invoice):"
135
- msgstr ""
136
-
137
- #. translators: document title
138
- #: includes/class-wcpdf-admin.php:469
139
- msgid "Set %s number & date"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:478
143
- msgid "unformatted!"
144
- msgstr ""
145
-
146
- #: includes/class-wcpdf-admin.php:518
147
- msgid "Save changes"
148
- msgstr ""
149
-
150
- #: includes/class-wcpdf-admin.php:519
151
- msgid "Cancel"
152
- msgstr ""
153
-
154
- #. translators: name/description of the context for document creation logs
155
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
156
- msgid "order details (number and/or date set manually)"
157
- msgstr ""
158
-
159
- #. translators: %s: email title
160
- #: includes/class-wcpdf-admin.php:647
161
- msgid "%s email notification manually sent."
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:734
165
- msgid "Nonce expired!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:740
169
- msgid "Bad action!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:746
173
- msgid "Incomplete request!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:752
177
- msgid "No permissions!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:776
181
- msgid "Document data saved!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:777
185
- msgid "An error occurred while saving the document data!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:780
189
- msgid "Document regenerated!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:781
193
- msgid "An error occurred while regenerating the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:784
197
- msgid "Document deleted!"
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:785
201
- msgid "An error occurred while deleting the document!"
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:841
205
- msgid "Document does not exist."
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-admin.php:850
209
- msgid "Document is empty."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-admin.php:881
213
- msgid "DEBUG output enabled"
214
- msgstr ""
215
-
216
- #: includes/class-wcpdf-assets.php:91
217
- msgid "Are you sure you want to delete this document? This cannot be undone."
218
- msgstr ""
219
-
220
- #: includes/class-wcpdf-assets.php:92
221
- msgid ""
222
- "Are you sure you want to regenerate this document? This will make the "
223
- "document reflect the most current settings (such as footer text, document "
224
- "name, etc.) rather than using historical settings."
225
- msgstr ""
226
-
227
- #: includes/class-wcpdf-frontend.php:126
228
- msgid "Download invoice (PDF)"
229
- msgstr "Dohvati račun(PDF)"
230
-
231
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
232
- #: includes/class-wcpdf-main.php:338
233
- msgid "You do not have sufficient permissions to access this page."
234
- msgstr "Nemate dovoljne ovlasti kako bi pristupili ovoj stranici."
235
-
236
- #: includes/class-wcpdf-main.php:275
237
- msgid "You haven't selected any orders"
238
- msgstr ""
239
-
240
- #: includes/class-wcpdf-main.php:279
241
- msgid "Some of the export parameters are missing."
242
- msgstr "Neki od parametara za izvoz nedostaju."
243
-
244
- #. translators: document type
245
- #: includes/class-wcpdf-main.php:379
246
- msgid "Document of type '%s' for the selected order(s) could not be generated"
247
- msgstr ""
248
-
249
- #. translators: 1. plugin name, 2. directory path
250
- #: includes/class-wcpdf-main.php:591
251
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
252
- msgstr ""
253
-
254
- #: includes/class-wcpdf-main.php:592
255
- msgid ""
256
- "Please check your directories write permissions or contact your hosting "
257
- "service provider."
258
- msgstr ""
259
-
260
- #: includes/class-wcpdf-main.php:907
261
- #: includes/documents/class-wcpdf-invoice.php:286
262
- msgid "Invoice Date"
263
- msgstr ""
264
-
265
- #. translators: name/description of the context for document creation logs
266
- #: includes/class-wcpdf-main.php:937
267
- msgid "bulk order action"
268
- msgstr ""
269
-
270
- #. translators: name/description of the context for document creation logs
271
- #: includes/class-wcpdf-main.php:945
272
- msgid "single order action"
273
- msgstr ""
274
-
275
- #. translators: name/description of the context for document creation logs
276
- #: includes/class-wcpdf-main.php:953
277
- msgid "my account"
278
- msgstr ""
279
-
280
- #. translators: name/description of the context for document creation logs
281
- #: includes/class-wcpdf-main.php:961
282
- msgid "email attachment"
283
- msgstr ""
284
-
285
- #. translators: 1. document title, 2. creation source
286
- #: includes/class-wcpdf-main.php:970
287
- msgid "PDF %1$s created via %2$s."
288
- msgstr ""
289
-
290
- #. translators: document title
291
- #: includes/class-wcpdf-main.php:1006
292
- msgid "Order %s Saved"
293
- msgstr ""
294
-
295
- #: includes/class-wcpdf-settings-callbacks.php:27
296
- msgid ""
297
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
298
- "Do not use them on a live website!"
299
- msgstr ""
300
- "Upozorenje! Donje postavke su namijenjene isključivo za debugging/"
301
- "development. Ne koristite ih na stranicama koje su puštene u produkciju."
302
-
303
- #: includes/class-wcpdf-settings-callbacks.php:36
304
- msgid ""
305
- "These are used for the (optional) footer columns in the <em>Modern "
306
- "(Premium)</em> template, but can also be used for other elements in your "
307
- "custom template"
308
- msgstr ""
309
- "Ovo se koristi za (opcionalno) retke u podnožju (footeru) <em>Modern "
310
- "(Premium)</em> predlošku, ali se također može koristiti za druge elemente u "
311
- "vašem prilagođenom predlošku"
312
-
313
- #: includes/class-wcpdf-settings-callbacks.php:383
314
- msgid "Image resolution"
315
- msgstr "Rezolucija slike"
316
-
317
- #: includes/class-wcpdf-settings-callbacks.php:410
318
- msgid "Save"
319
- msgstr ""
320
-
321
- #: includes/class-wcpdf-settings-debug.php:45
322
- #: woocommerce-pdf-invoices-packingslips.php:376
323
- msgid "Generate random temporary folder name"
324
- msgstr ""
325
-
326
- #. translators: directory path
327
- #: includes/class-wcpdf-settings-debug.php:58
328
- msgid "Temporary folder moved to %s"
329
- msgstr ""
330
-
331
- #: includes/class-wcpdf-settings-debug.php:68
332
- msgid "Reinstall fonts"
333
- msgstr ""
334
-
335
- #: includes/class-wcpdf-settings-debug.php:89
336
- msgid "Fonts reinstalled!"
337
- msgstr ""
338
-
339
- #: includes/class-wcpdf-settings-debug.php:98
340
- msgid "Remove temporary files"
341
- msgstr ""
342
-
343
- #: includes/class-wcpdf-settings-debug.php:109
344
- msgid "Unable to read temporary folder contents!"
345
- msgstr ""
346
-
347
- #. translators: 1,2. file count
348
- #: includes/class-wcpdf-settings-debug.php:127
349
- msgid "Unable to delete %1$d files! (deleted %2$d)"
350
- msgstr ""
351
-
352
- #. translators: file count
353
- #: includes/class-wcpdf-settings-debug.php:131
354
- msgid "Successfully deleted %d files!"
355
- msgstr ""
356
-
357
- #: includes/class-wcpdf-settings-debug.php:135
358
- msgid "Nothing to delete!"
359
- msgstr ""
360
-
361
- #: includes/class-wcpdf-settings-debug.php:146
362
- msgid "Delete legacy (1.X) settings"
363
- msgstr ""
364
-
365
- #: includes/class-wcpdf-settings-debug.php:162
366
- msgid "Legacy settings deleted!"
367
- msgstr ""
368
-
369
- #: includes/class-wcpdf-settings-debug.php:192
370
- msgid "Debug settings"
371
- msgstr "Postavke debug-a"
372
-
373
- #: includes/class-wcpdf-settings-debug.php:198
374
- msgid "Legacy mode"
375
- msgstr ""
376
-
377
- #: includes/class-wcpdf-settings-debug.php:204
378
- msgid ""
379
- "Legacy mode ensures compatibility with templates and filters from previous "
380
- "versions."
381
- msgstr ""
382
-
383
- #: includes/class-wcpdf-settings-debug.php:210
384
- msgid "Legacy textdomain fallback"
385
- msgstr ""
386
-
387
- #: includes/class-wcpdf-settings-debug.php:216
388
- msgid ""
389
- "Legacy textdomain fallback ensures compatibility with translation files from "
390
- "versions prior to 2017-05-15."
391
- msgstr ""
392
-
393
- #: includes/class-wcpdf-settings-debug.php:222
394
- msgid "Allow guest access"
395
- msgstr ""
396
-
397
- #: includes/class-wcpdf-settings-debug.php:228
398
- msgid ""
399
- "Enable this to allow customers that purchase without an account to access "
400
- "their PDF with a unique key"
401
- msgstr ""
402
-
403
- #: includes/class-wcpdf-settings-debug.php:234
404
- msgid "Calculate document numbers (slow)"
405
- msgstr ""
406
-
407
- #: includes/class-wcpdf-settings-debug.php:240
408
- msgid ""
409
- "Document numbers (such as invoice numbers) are generated using "
410
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
411
- "with more than 1."
412
- msgstr ""
413
-
414
- #: includes/class-wcpdf-settings-debug.php:246
415
- msgid "Enable debug output"
416
- msgstr "Omogućiti debug prikaz"
417
-
418
- #: includes/class-wcpdf-settings-debug.php:252
419
- msgid ""
420
- "Enable this option to output plugin errors if you're getting a blank page or "
421
- "other PDF generation issues"
422
- msgstr ""
423
- "Omogući ovu opciju kako bi dohvatili greške priključka ako vam se događa da "
424
- "dobivate praznu stranicu nakon generiranja PDF-a ili imate neke druge "
425
- "poteškoće"
426
-
427
- #: includes/class-wcpdf-settings-debug.php:253
428
- msgid ""
429
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
430
- "places on your site too, therefor this is not recommended to leave it "
431
- "enabled on live sites."
432
- msgstr ""
433
-
434
- #: includes/class-wcpdf-settings-debug.php:254
435
- msgid ""
436
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
437
- "order basis."
438
- msgstr ""
439
-
440
- #: includes/class-wcpdf-settings-debug.php:260
441
- msgid "Enable automatic cleanup"
442
- msgstr ""
443
-
444
- #. translators: number of days
445
- #: includes/class-wcpdf-settings-debug.php:268
446
- msgid "every %s days"
447
- msgstr ""
448
-
449
- #: includes/class-wcpdf-settings-debug.php:273
450
- msgid ""
451
- "Automatically clean up PDF files stored in the temporary folder (used for "
452
- "email attachments)"
453
- msgstr ""
454
-
455
- #: includes/class-wcpdf-settings-debug.php:274
456
- msgid ""
457
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
458
- "automatic cleanup but not enabled on your server."
459
- msgstr ""
460
-
461
- #: includes/class-wcpdf-settings-debug.php:280
462
- msgid "Output to HTML"
463
- msgstr "Prikaži u HTML-u"
464
-
465
- #: includes/class-wcpdf-settings-debug.php:286
466
- msgid ""
467
- "Send the template output as HTML to the browser instead of creating a PDF."
468
- msgstr "Pošalji predložak u HTML formatu umjesto generiranja PDF-a."
469
-
470
- #: includes/class-wcpdf-settings-debug.php:287
471
- msgid ""
472
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
473
- "order basis."
474
- msgstr ""
475
-
476
- #: includes/class-wcpdf-settings-debug.php:293
477
- msgid "Use alternative HTML5 parser to parse HTML"
478
- msgstr ""
479
-
480
- #: includes/class-wcpdf-settings-debug.php:304
481
- msgid "Log to order notes"
482
- msgstr ""
483
-
484
- #: includes/class-wcpdf-settings-debug.php:310
485
- msgid "Log PDF document creation to order notes."
486
- msgstr ""
487
-
488
- #: includes/class-wcpdf-settings-documents.php:30
489
- #: includes/class-wcpdf-settings.php:97
490
- msgid "Documents"
491
- msgstr ""
492
-
493
- #: includes/class-wcpdf-settings-documents.php:36
494
- #: includes/class-wcpdf-settings-documents.php:57
495
- msgid "untitled"
496
- msgstr ""
497
-
498
- #: includes/class-wcpdf-settings-documents.php:50
499
- msgid ""
500
- "All available documents are listed below. Click on a document to configure "
501
- "it."
502
- msgstr ""
503
-
504
- #: includes/class-wcpdf-settings-general.php:40
505
- msgid "General settings"
506
- msgstr "Opće postavke"
507
-
508
- #: includes/class-wcpdf-settings-general.php:46
509
- msgid "How do you want to view the PDF?"
510
- msgstr "Što želite učiniti s PDF-om?"
511
-
512
- #: includes/class-wcpdf-settings-general.php:53
513
- msgid "Download the PDF"
514
- msgstr "Preuzmi PDF "
515
-
516
- #: includes/class-wcpdf-settings-general.php:54
517
- msgid "Open the PDF in a new browser tab/window"
518
- msgstr "Otvorite PDF u novoj kartici preglednika / u novom prozoru"
519
-
520
- #: includes/class-wcpdf-settings-general.php:61
521
- msgid "Choose a template"
522
- msgstr "Odaberite predložak"
523
-
524
- #. translators: 1,2. template paths
525
- #: includes/class-wcpdf-settings-general.php:69
526
- msgid ""
527
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
528
- "your (child) theme in <code>%2$s</code> to customize them"
529
- msgstr ""
530
-
531
- #: includes/class-wcpdf-settings-general.php:75
532
- msgid "Paper size"
533
- msgstr "Veličina papira"
534
-
535
- #: includes/class-wcpdf-settings-general.php:82
536
- #: includes/views/setup-wizard/paper-format.php:12
537
- msgid "A4"
538
- msgstr "A4"
539
-
540
- #: includes/class-wcpdf-settings-general.php:83
541
- #: includes/views/setup-wizard/paper-format.php:13
542
- msgid "Letter"
543
- msgstr "Pismo"
544
-
545
- #: includes/class-wcpdf-settings-general.php:90
546
- msgid "Test mode"
547
- msgstr ""
548
-
549
- #: includes/class-wcpdf-settings-general.php:96
550
- msgid ""
551
- "With test mode enabled, any document generated will always use the latest "
552
- "settings, rather than using the settings as configured at the time the "
553
- "document was first created."
554
- msgstr ""
555
-
556
- #: includes/class-wcpdf-settings-general.php:96
557
- msgid ""
558
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
559
- "setting and will still be generated."
560
- msgstr ""
561
-
562
- #: includes/class-wcpdf-settings-general.php:102
563
- msgid "Extended currency symbol support"
564
- msgstr ""
565
-
566
- #: includes/class-wcpdf-settings-general.php:108
567
- msgid "Enable this if your currency symbol is not displaying properly"
568
- msgstr ""
569
-
570
- #: includes/class-wcpdf-settings-general.php:114
571
- msgid "Enable font subsetting"
572
- msgstr ""
573
-
574
- #: includes/class-wcpdf-settings-general.php:120
575
- msgid ""
576
- "Font subsetting can reduce file size by only including the characters that "
577
- "are used in the PDF, but limits the ability to edit PDF files later. "
578
- "Recommended if you're using an Asian font."
579
- msgstr ""
580
-
581
- #: includes/class-wcpdf-settings-general.php:126
582
- msgid "Shop header/logo"
583
- msgstr "Zaglavlje/Logo trgovine"
584
-
585
- #: includes/class-wcpdf-settings-general.php:132
586
- #: includes/views/setup-wizard/logo.php:20
587
- msgid "Select or upload your invoice header/logo"
588
- msgstr "Odaberite ili prenesite datoteku zaglavlja/logo-a za račun"
589
-
590
- #: includes/class-wcpdf-settings-general.php:133
591
- #: includes/views/setup-wizard/logo.php:20
592
- msgid "Set image"
593
- msgstr "Odabir slike"
594
-
595
- #: includes/class-wcpdf-settings-general.php:134
596
- #: includes/views/setup-wizard/logo.php:20
597
- msgid "Remove image"
598
- msgstr "Ukloni sliku"
599
-
600
- #: includes/class-wcpdf-settings-general.php:141
601
- msgid "Logo height"
602
- msgstr ""
603
-
604
- #: includes/class-wcpdf-settings-general.php:149
605
- msgid ""
606
- "Enter the total height of the logo in mm, cm or in and use a dot for "
607
- "decimals.<br/>For example: 1.15in or 40mm"
608
- msgstr ""
609
-
610
- #: includes/class-wcpdf-settings-general.php:155
611
- #: includes/class-wcpdf-setup-wizard.php:47
612
- msgid "Shop Name"
613
- msgstr "Ime trgovine"
614
-
615
- #: includes/class-wcpdf-settings-general.php:168
616
- msgid "Shop Address"
617
- msgstr "Adresa trgovine"
618
-
619
- #: includes/class-wcpdf-settings-general.php:183
620
- msgid "Footer: terms & conditions, policies, etc."
621
- msgstr "Podnožje: uvjeti & statusne stvari, poslovanje i sl."
622
-
623
- #: includes/class-wcpdf-settings-general.php:198
624
- msgid "Extra template fields"
625
- msgstr "Dodatna polja predloška"
626
-
627
- #: includes/class-wcpdf-settings-general.php:204
628
- msgid "Extra field 1"
629
- msgstr "Dodatno polje 1"
630
-
631
- #: includes/class-wcpdf-settings-general.php:212
632
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
633
- msgstr "Ovo je 1 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
634
-
635
- #: includes/class-wcpdf-settings-general.php:219
636
- msgid "Extra field 2"
637
- msgstr "Dodatno polje 2"
638
-
639
- #: includes/class-wcpdf-settings-general.php:227
640
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
641
- msgstr "Ovo je 2 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
642
-
643
- #: includes/class-wcpdf-settings-general.php:234
644
- msgid "Extra field 3"
645
- msgstr "Dodatno polje 3"
646
-
647
- #: includes/class-wcpdf-settings-general.php:242
648
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
649
- msgstr "Ovo je 3 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
650
-
651
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
652
- msgid "PDF Invoices"
653
- msgstr "PDF Račun"
654
-
655
- #: includes/class-wcpdf-settings.php:74
656
- msgid "Documentation"
657
- msgstr ""
658
-
659
- #: includes/class-wcpdf-settings.php:75
660
- msgid "Support Forum"
661
- msgstr ""
662
-
663
- #. translators: database row value
664
- #: includes/class-wcpdf-settings.php:88
665
- msgid ""
666
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
667
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
668
- "document numbers (slow)' setting in the Status tab to use an alternate "
669
- "method."
670
- msgstr ""
671
-
672
- #: includes/class-wcpdf-settings.php:96
673
- msgid "General"
674
- msgstr "Općenito"
675
-
676
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
677
- msgid "Status"
678
- msgstr "Status"
679
-
680
- #: includes/class-wcpdf-setup-wizard.php:51
681
- #: includes/views/setup-wizard/logo.php:3
682
- msgid "Your logo"
683
- msgstr ""
684
-
685
- #: includes/class-wcpdf-setup-wizard.php:55
686
- msgid "Attachments"
687
- msgstr ""
688
-
689
- #: includes/class-wcpdf-setup-wizard.php:59
690
- #: includes/views/setup-wizard/display-options.php:3
691
- msgid "Display options"
692
- msgstr ""
693
-
694
- #: includes/class-wcpdf-setup-wizard.php:63
695
- #: includes/views/setup-wizard/paper-format.php:3
696
- msgid "Paper format"
697
- msgstr ""
698
-
699
- #: includes/class-wcpdf-setup-wizard.php:67
700
- #: includes/views/setup-wizard/show-action-buttons.php:3
701
- msgid "Action buttons"
702
- msgstr ""
703
-
704
- #: includes/class-wcpdf-setup-wizard.php:71
705
- msgid "Ready!"
706
- msgstr ""
707
-
708
- #: includes/class-wcpdf-setup-wizard.php:133
709
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
710
- msgstr ""
711
-
712
- #: includes/class-wcpdf-setup-wizard.php:185
713
- msgid "Previous"
714
- msgstr ""
715
-
716
- #: includes/class-wcpdf-setup-wizard.php:190
717
- msgid "Next"
718
- msgstr ""
719
-
720
- #: includes/class-wcpdf-setup-wizard.php:191
721
- msgid "Skip this step"
722
- msgstr ""
723
-
724
- #: includes/class-wcpdf-setup-wizard.php:193
725
- msgid "Finish"
726
- msgstr ""
727
-
728
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
729
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
730
- msgid "N/A"
731
- msgstr "Ništa"
732
-
733
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
734
- msgid "Payment method"
735
- msgstr "Metoda plaćanja"
736
-
737
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
738
- msgid "Shipping method"
739
- msgstr "Metoda dostave"
740
-
741
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
742
- msgid "Subtotal"
743
- msgstr "Ukupno (subtotal)"
744
-
745
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
746
- msgid "Shipping"
747
- msgstr "Dostava"
748
-
749
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
750
- msgid "Discount"
751
- msgstr "Popust"
752
-
753
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
754
- msgid "VAT"
755
- msgstr "PDV"
756
-
757
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
758
- msgid "Tax rate"
759
- msgstr "Visina poreza"
760
-
761
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
762
- msgid "Total ex. VAT"
763
- msgstr "Ukupno bez PDV-a"
764
-
765
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
766
- msgid "Total"
767
- msgstr "Ukupno"
768
-
769
- #. translators: 1. credit note title, 2. refund id
770
- #: includes/documents/abstract-wcpdf-order-document.php:336
771
- msgid "%1$s (refund #%2$s) was regenerated."
772
- msgstr ""
773
-
774
- #. translators: 1. credit note title, 2. refund id
775
- #: includes/documents/abstract-wcpdf-order-document.php:336
776
- msgid "%s was regenerated"
777
- msgstr ""
778
-
779
- #. translators: %s: document name
780
- #: includes/documents/abstract-wcpdf-order-document.php:422
781
- msgid "%s Number:"
782
- msgstr ""
783
-
784
- #. translators: %s: document name
785
- #: includes/documents/abstract-wcpdf-order-document.php:428
786
- msgid "%s Date:"
787
- msgstr ""
788
-
789
- #: includes/documents/abstract-wcpdf-order-document.php:891
790
- msgid "Admin email"
791
- msgstr ""
792
-
793
- #: includes/documents/abstract-wcpdf-order-document.php:894
794
- msgid "Manual email"
795
- msgstr ""
796
-
797
- #: includes/documents/class-wcpdf-invoice.php:32
798
- #: includes/documents/class-wcpdf-invoice.php:56
799
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
800
- msgid "Invoice"
801
- msgstr "Račun"
802
-
803
- #: includes/documents/class-wcpdf-invoice.php:131
804
- msgid "invoice"
805
- msgid_plural "invoices"
806
- msgstr[0] "Račun"
807
- msgstr[1] "Računi"
808
- msgstr[2] ""
809
-
810
- #: includes/documents/class-wcpdf-invoice.php:186
811
- #: includes/documents/class-wcpdf-packing-slip.php:88
812
- msgid "Enable"
813
- msgstr ""
814
-
815
- #: includes/documents/class-wcpdf-invoice.php:197
816
- msgid "Attach to:"
817
- msgstr ""
818
-
819
- #. translators: directory path
820
- #: includes/documents/class-wcpdf-invoice.php:205
821
- msgid ""
822
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
823
- "permissions for this folder! Without having write access to this folder, the "
824
- "plugin will not be able to email invoices."
825
- msgstr ""
826
- "Čini se kako je temp folder (<code>%s</code>) zaštićen od pisanja, "
827
- "provjerite dozvole za ovaj folder. Bez ovlasti za upisivanje u ovaj folder "
828
- "plugin neće biti u mogućnosti poslati račune e-mailom."
829
-
830
- #: includes/documents/class-wcpdf-invoice.php:211
831
- msgid "Disable for:"
832
- msgstr ""
833
-
834
- #: includes/documents/class-wcpdf-invoice.php:220
835
- msgid "Select one or more statuses"
836
- msgstr ""
837
-
838
- #: includes/documents/class-wcpdf-invoice.php:226
839
- #: includes/views/setup-wizard/display-options.php:17
840
- msgid "Display shipping address"
841
- msgstr "Prikazati adresu dostave"
842
-
843
- #: includes/documents/class-wcpdf-invoice.php:233
844
- #: includes/documents/class-wcpdf-invoice.php:285
845
- #: includes/documents/class-wcpdf-invoice.php:301
846
- #: includes/documents/class-wcpdf-packing-slip.php:106
847
- msgid "No"
848
- msgstr ""
849
-
850
- #: includes/documents/class-wcpdf-invoice.php:234
851
- msgid "Only when different from billing address"
852
- msgstr ""
853
-
854
- #: includes/documents/class-wcpdf-invoice.php:235
855
- #: includes/documents/class-wcpdf-invoice.php:378
856
- #: includes/documents/class-wcpdf-packing-slip.php:108
857
- msgid "Always"
858
- msgstr "Uvijek"
859
-
860
- #: includes/documents/class-wcpdf-invoice.php:243
861
- #: includes/documents/class-wcpdf-packing-slip.php:116
862
- #: includes/views/setup-wizard/display-options.php:26
863
- msgid "Display email address"
864
- msgstr "Prikaži e-mail adresu"
865
-
866
- #: includes/documents/class-wcpdf-invoice.php:254
867
- #: includes/documents/class-wcpdf-packing-slip.php:127
868
- #: includes/views/setup-wizard/display-options.php:35
869
- msgid "Display phone number"
870
- msgstr "Prikaži broj telefona"
871
-
872
- #: includes/documents/class-wcpdf-invoice.php:265
873
- #: includes/documents/class-wcpdf-packing-slip.php:138
874
- msgid "Display customer notes"
875
- msgstr ""
876
-
877
- #: includes/documents/class-wcpdf-invoice.php:278
878
- #: includes/views/setup-wizard/display-options.php:44
879
- msgid "Display invoice date"
880
- msgstr "Prikaži datum izrade računa"
881
-
882
- #: includes/documents/class-wcpdf-invoice.php:287
883
- msgid "Order Date"
884
- msgstr ""
885
-
886
- #: includes/documents/class-wcpdf-invoice.php:294
887
- #: includes/views/setup-wizard/display-options.php:53
888
- msgid "Display invoice number"
889
- msgstr ""
890
-
891
- #: includes/documents/class-wcpdf-invoice.php:303
892
- msgid "Order Number"
893
- msgstr ""
894
-
895
- #: includes/documents/class-wcpdf-invoice.php:307
896
- msgid "Warning!"
897
- msgstr ""
898
-
899
- #: includes/documents/class-wcpdf-invoice.php:308
900
- msgid ""
901
- "Using the Order Number as invoice number is not recommended as this may lead "
902
- "to gaps in the invoice number sequence (even when order numbers are "
903
- "sequential)."
904
- msgstr ""
905
-
906
- #: includes/documents/class-wcpdf-invoice.php:309
907
- msgid "More information"
908
- msgstr ""
909
-
910
- #: includes/documents/class-wcpdf-invoice.php:316
911
- msgid "Next invoice number (without prefix/suffix etc.)"
912
- msgstr "Slijedeći broj računa (bez prefiksa i sufiksa)"
913
-
914
- #: includes/documents/class-wcpdf-invoice.php:322
915
- msgid ""
916
- "This is the number that will be used for the next document. By default, "
917
- "numbering starts from 1 and increases for every new document. Note that if "
918
- "you override this and set it lower than the current/highest number, this "
919
- "could create duplicate numbers!"
920
- msgstr ""
921
-
922
- #: includes/documents/class-wcpdf-invoice.php:328
923
- msgid "Number format"
924
- msgstr ""
925
-
926
- #: includes/documents/class-wcpdf-invoice.php:336
927
- msgid "Prefix"
928
- msgstr "Prefiks"
929
-
930
- #: includes/documents/class-wcpdf-invoice.php:338
931
- msgid ""
932
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
933
- "respectively"
934
- msgstr ""
935
- "kako bi koristili godinu i/ili mjesec, koristite [invoice_year] ili "
936
- "[invoice_month] poštujući"
937
-
938
- #: includes/documents/class-wcpdf-invoice.php:341
939
- msgid "Suffix"
940
- msgstr "Sufiks"
941
-
942
- #: includes/documents/class-wcpdf-invoice.php:346
943
- msgid "Padding"
944
- msgstr "prostor "
945
-
946
- #: includes/documents/class-wcpdf-invoice.php:349
947
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
948
- msgstr ""
949
- "unesite broj znamenki ovdje - unesite\"6\" ako želite prikazati broj 42 kao "
950
- "000042"
951
-
952
- #: includes/documents/class-wcpdf-invoice.php:352
953
- msgid ""
954
- "note: if you have already created a custom invoice number format with a "
955
- "filter, the above settings will be ignored"
956
- msgstr ""
957
- "Bilješka: Ako ste već kreirali prilagođeni format broja računa s filterom, "
958
- "gornje postavke biti će zanemarene"
959
-
960
- #: includes/documents/class-wcpdf-invoice.php:358
961
- msgid "Reset invoice number yearly"
962
- msgstr "Resetirati broj računa na godišnjoj razini"
963
-
964
- #: includes/documents/class-wcpdf-invoice.php:369
965
- msgid "Allow My Account invoice download"
966
- msgstr "Dozvoliti preuzimanje računa za moj korisnički profil"
967
-
968
- #: includes/documents/class-wcpdf-invoice.php:376
969
- msgid "Only when an invoice is already created/emailed"
970
- msgstr "Samo kada je račun već izrađen/poslan"
971
-
972
- #: includes/documents/class-wcpdf-invoice.php:377
973
- msgid "Only for specific order statuses (define below)"
974
- msgstr "Samo za specifične statuse narudžbe (definirati ispod)"
975
-
976
- #: includes/documents/class-wcpdf-invoice.php:379
977
- msgid "Never"
978
- msgstr "Nikad"
979
-
980
- #: includes/documents/class-wcpdf-invoice.php:394
981
- msgid "Enable invoice number column in the orders list"
982
- msgstr "Omogućite prikaz stupca s brojem računa u listi narudžbi"
983
-
984
- #: includes/documents/class-wcpdf-invoice.php:405
985
- msgid "Disable for free orders"
986
- msgstr ""
987
-
988
- #. translators: zero number
989
- #: includes/documents/class-wcpdf-invoice.php:412
990
- msgid "Disable document when the order total is %s"
991
- msgstr ""
992
-
993
- #: includes/documents/class-wcpdf-invoice.php:418
994
- msgid "Always use most current settings"
995
- msgstr ""
996
-
997
- #: includes/documents/class-wcpdf-invoice.php:424
998
- msgid ""
999
- "When enabled, the document will always reflect the most current settings "
1000
- "(such as footer text, document name, etc.) rather than using historical "
1001
- "settings."
1002
- msgstr ""
1003
-
1004
- #: includes/documents/class-wcpdf-invoice.php:426
1005
- msgid ""
1006
- "<strong>Caution:</strong> enabling this will also mean that if you change "
1007
- "your company name or address in the future, previously generated documents "
1008
- "will also be affected."
1009
- msgstr ""
1010
-
1011
- #: includes/documents/class-wcpdf-invoice.php:439
1012
- msgid "Invoice numbers are created by a third-party extension."
1013
- msgstr ""
1014
-
1015
- #. translators: link
1016
- #: includes/documents/class-wcpdf-invoice.php:442
1017
- msgid "Configure it <a href=\"%s\">here</a>."
1018
- msgstr ""
1019
-
1020
- #: includes/documents/class-wcpdf-packing-slip.php:32
1021
- #: includes/documents/class-wcpdf-packing-slip.php:41
1022
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1023
- msgid "Packing Slip"
1024
- msgstr "Paketni slip"
1025
-
1026
- #: includes/documents/class-wcpdf-packing-slip.php:47
1027
- msgid "packing-slip"
1028
- msgid_plural "packing-slips"
1029
- msgstr[0] "Slip uz paket"
1030
- msgstr[1] "Slipovi za pakete"
1031
- msgstr[2] ""
1032
-
1033
- #: includes/documents/class-wcpdf-packing-slip.php:99
1034
- msgid "Display billing address"
1035
- msgstr "Prikazati adresu za naplatu"
1036
-
1037
- #: includes/documents/class-wcpdf-packing-slip.php:107
1038
- msgid "Only when different from shipping address"
1039
- msgstr ""
1040
-
1041
- #: includes/documents/class-wcpdf-packing-slip.php:162
1042
- msgid "Packing Slip Number:"
1043
- msgstr ""
1044
-
1045
- #: includes/documents/class-wcpdf-packing-slip.php:170
1046
- msgid "Packing Slip Date:"
1047
- msgstr ""
1048
-
1049
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1050
- msgid "Legacy Document"
1051
- msgstr ""
1052
-
1053
- #: includes/legacy/class-wcpdf-legacy.php:72
1054
- msgid "Error"
1055
- msgstr ""
1056
-
1057
- #: includes/legacy/class-wcpdf-legacy.php:73
1058
- msgid ""
1059
- "An outdated template or action hook was used to generate the PDF. Legacy "
1060
- "mode has been activated, please try again by reloading this page."
1061
- msgstr ""
1062
-
1063
- #: includes/legacy/class-wcpdf-legacy.php:76
1064
- msgid "The following function was called"
1065
- msgstr ""
1066
-
1067
- #. translators: <a> tags
1068
- #: includes/views/attachment-settings-hint.php:23
1069
- msgid ""
1070
- "It looks like you haven't setup any email attachments yet, check the "
1071
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1072
- msgstr ""
1073
-
1074
- #: includes/views/dompdf-status.php:11
1075
- msgid "7.1+ (7.4 or higher recommended)"
1076
- msgstr ""
1077
-
1078
- #: includes/views/dompdf-status.php:24
1079
- msgid "Recommended, will use fallback functions"
1080
- msgstr ""
1081
-
1082
- #: includes/views/dompdf-status.php:30
1083
- msgid "Required if you have images in your documents"
1084
- msgstr ""
1085
-
1086
- #: includes/views/dompdf-status.php:39
1087
- msgid "To compress PDF documents"
1088
- msgstr ""
1089
-
1090
- #: includes/views/dompdf-status.php:42
1091
- msgid "Recommended to compress PDF documents"
1092
- msgstr ""
1093
-
1094
- #: includes/views/dompdf-status.php:45
1095
- msgid "For better performances"
1096
- msgstr ""
1097
-
1098
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1099
- msgid "Recommended for better performances"
1100
- msgstr ""
1101
-
1102
- #: includes/views/dompdf-status.php:51
1103
- msgid "Better with transparent PNG images"
1104
- msgstr ""
1105
-
1106
- #: includes/views/dompdf-status.php:57
1107
- msgid ""
1108
- "Required to detect custom templates and to clear the temp folder periodically"
1109
- msgstr ""
1110
-
1111
- #: includes/views/dompdf-status.php:60
1112
- msgid "Check PHP disable_functions"
1113
- msgstr ""
1114
-
1115
- #. translators: <a> tags
1116
- #: includes/views/dompdf-status.php:64
1117
- msgid ""
1118
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1119
- "WordPress Memory Limit%2$s"
1120
- msgstr ""
1121
-
1122
- #: includes/views/dompdf-status.php:69
1123
- msgid "Allow remote stylesheets and images"
1124
- msgstr ""
1125
-
1126
- #: includes/views/dompdf-status.php:72
1127
- msgid "allow_url_fopen disabled"
1128
- msgstr ""
1129
-
1130
- #. translators: <a> tags
1131
- #: includes/views/dompdf-status.php:92
1132
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1133
- msgstr ""
1134
-
1135
- #: includes/views/dompdf-status.php:97
1136
- msgid "System Configuration"
1137
- msgstr ""
1138
-
1139
- #: includes/views/dompdf-status.php:102
1140
- msgid "Required"
1141
- msgstr ""
1142
-
1143
- #: includes/views/dompdf-status.php:103
1144
- msgid "Present"
1145
- msgstr ""
1146
-
1147
- #: includes/views/dompdf-status.php:142
1148
- msgid "Writable"
1149
- msgstr ""
1150
-
1151
- #: includes/views/dompdf-status.php:143
1152
- msgid "Not writable"
1153
- msgstr ""
1154
-
1155
- #: includes/views/dompdf-status.php:148
1156
- msgid "Central temporary plugin folder"
1157
- msgstr ""
1158
-
1159
- #: includes/views/dompdf-status.php:154
1160
- msgid "Temporary attachments folder"
1161
- msgstr ""
1162
-
1163
- #: includes/views/dompdf-status.php:160
1164
- msgid "Temporary DOMPDF folder"
1165
- msgstr ""
1166
-
1167
- #: includes/views/dompdf-status.php:166
1168
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1169
- msgstr ""
1170
-
1171
- #: includes/views/dompdf-status.php:177
1172
- msgid "Write Permissions"
1173
- msgstr ""
1174
-
1175
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1176
- #: templates/Simple/packing-slip.php:88
1177
- msgid "Description"
1178
- msgstr "Opis"
1179
-
1180
- #: includes/views/dompdf-status.php:181
1181
- msgid "Value"
1182
- msgstr ""
1183
-
1184
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1185
- #: includes/views/dompdf-status.php:207
1186
- msgid ""
1187
- "The central temp folder is %1$s. By default, this folder is created in the "
1188
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1189
- "config.php. Alternatively, you can control the specific folder for PDF "
1190
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1191
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1192
- "by the plugin if the central temp folder is writable)."
1193
- msgstr ""
1194
-
1195
- #. translators: directory path
1196
- #: includes/views/dompdf-status.php:220
1197
- msgid ""
1198
- "If the temporary folders were not automatically created by the plugin, "
1199
- "verify that all the font files (from %s) are copied to the fonts folder. "
1200
- "Normally, this is fully automated, but if your server has strict security "
1201
- "settings, this automated copying may have been prohibited. In that case, you "
1202
- "also need to make sure these folders get synchronized on plugin updates!"
1203
- msgstr ""
1204
-
1205
- #: includes/views/setup-wizard/attach-to.php:3
1206
- msgid "Attach too..."
1207
- msgstr ""
1208
-
1209
- #: includes/views/setup-wizard/attach-to.php:4
1210
- msgid "Select to which emails you would like to attach your invoice."
1211
- msgstr ""
1212
-
1213
- #: includes/views/setup-wizard/display-options.php:4
1214
- msgid "Select some additional display options for your invoice."
1215
- msgstr ""
1216
-
1217
- #: includes/views/setup-wizard/good-to-go.php:3
1218
- msgid "You are good to go!"
1219
- msgstr ""
1220
-
1221
- #: includes/views/setup-wizard/good-to-go.php:4
1222
- msgid "If you have any questions please have a look at our documentation:"
1223
- msgstr ""
1224
-
1225
- #: includes/views/setup-wizard/good-to-go.php:5
1226
- msgid "Invoices & Packing Slips"
1227
- msgstr ""
1228
-
1229
- #: includes/views/setup-wizard/good-to-go.php:6
1230
- msgid "Happy selling!"
1231
- msgstr ""
1232
-
1233
- #: includes/views/setup-wizard/logo.php:4
1234
- msgid "Set the header image that will display on your invoice."
1235
- msgstr ""
1236
-
1237
- #: includes/views/setup-wizard/paper-format.php:4
1238
- msgid "Select the paper format for your invoice."
1239
- msgstr ""
1240
-
1241
- #: includes/views/setup-wizard/shop-name.php:3
1242
- msgid "Enter your shop name"
1243
- msgstr ""
1244
-
1245
- #: includes/views/setup-wizard/shop-name.php:4
1246
- msgid ""
1247
- "Lets quickly setup your invoice. Please enter the name and address of your "
1248
- "shop in the fields on the right."
1249
- msgstr ""
1250
-
1251
- #: includes/views/setup-wizard/show-action-buttons.php:4
1252
- msgid ""
1253
- "Would you like to display the action buttons in your WooCommerce order list? "
1254
- "The action buttons allow you to manually create a PDF."
1255
- msgstr ""
1256
-
1257
- #: includes/views/setup-wizard/show-action-buttons.php:5
1258
- msgid "(You can always change this setting later via the Screen Options menu)"
1259
- msgstr ""
1260
-
1261
- #: includes/views/setup-wizard/show-action-buttons.php:18
1262
- msgid "Show action buttons"
1263
- msgstr ""
1264
-
1265
- #: includes/views/wcpdf-extensions.php:16
1266
- msgid "Check out these premium extensions!"
1267
- msgstr "Provjerite ove premium dodatke!"
1268
-
1269
- #: includes/views/wcpdf-extensions.php:17
1270
- msgid "click items to read more"
1271
- msgstr "klik na predmet za detalje"
1272
-
1273
- #: includes/views/wcpdf-extensions.php:22
1274
- msgid ""
1275
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1276
- "system"
1277
- msgstr ""
1278
-
1279
- #: includes/views/wcpdf-extensions.php:24
1280
- msgid ""
1281
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1282
- "premium extensions:"
1283
- msgstr ""
1284
-
1285
- #: includes/views/wcpdf-extensions.php:25
1286
- msgid "Professional features:"
1287
- msgstr ""
1288
-
1289
- #: includes/views/wcpdf-extensions.php:27
1290
- #: includes/views/wcpdf-extensions.php:57
1291
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1292
- msgstr ""
1293
- "E-mail/Ispis/Preuzimanje <b>PDF Kreditne bilješke & Proforma Računa</b>"
1294
-
1295
- #: includes/views/wcpdf-extensions.php:28
1296
- #: includes/views/wcpdf-extensions.php:58
1297
- msgid ""
1298
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1299
- "packing slips, for example to a drop-shipper or a supplier."
1300
- msgstr ""
1301
- "Pošalji odvojeni <b>E-mail obavijest</b> sa (ili bez) PDF računa/paketnih "
1302
- "slipova, za primjer dostavljaču ili "
1303
-
1304
- #: includes/views/wcpdf-extensions.php:29
1305
- #: includes/views/wcpdf-extensions.php:59
1306
- msgid ""
1307
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1308
- "document) to the WooCommerce emails of your choice."
1309
- msgstr ""
1310
- "Dodajte <b> do 3 statične datoteke</b> (Npr. dokument Uvjeti poslovanja) u "
1311
- "WooCommerce e-mail poruke po vašem izboru"
1312
-
1313
- #: includes/views/wcpdf-extensions.php:30
1314
- #: includes/views/wcpdf-extensions.php:60
1315
- msgid ""
1316
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1317
- "and credit notes or utilize the main invoice numbering system"
1318
- msgstr ""
1319
- "Korištenje <b>odvojenih sustava knjiženja</b> i/ili formata za proforma "
1320
- "račune i kreditne bilješke ili primjena glavnog računskog sustava knjiženja"
1321
-
1322
- #: includes/views/wcpdf-extensions.php:31
1323
- #: includes/views/wcpdf-extensions.php:61
1324
- msgid ""
1325
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1326
- "additional custom fields, font sizes etc. without the need to create a "
1327
- "custom template."
1328
- msgstr ""
1329
- "<b>Uredite</b> format <b>adrese za dostavu i naplatu</b> kako bi dodali "
1330
- "dodatna prilagođena polja, veličine fonta i sl. bez potrebe za izradom novog "
1331
- "predloška. "
1332
-
1333
- #: includes/views/wcpdf-extensions.php:32
1334
- #: includes/views/wcpdf-extensions.php:62
1335
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1336
- msgstr "Koristite dodatak u višejezičnom <b>WPML</b> postavkama"
1337
-
1338
- #: includes/views/wcpdf-extensions.php:34
1339
- #: includes/views/wcpdf-extensions.php:114
1340
- msgid "Advanced, customizable templates"
1341
- msgstr "Napredni, prilagodljivi predlošci"
1342
-
1343
- #: includes/views/wcpdf-extensions.php:36
1344
- #: includes/views/wcpdf-extensions.php:117
1345
- msgid ""
1346
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1347
- "your needs with a drag & drop customizer"
1348
- msgstr ""
1349
- "Potpuna prilagodba sadržaja računa (cijene, porezi, umanjene slike) vašim "
1350
- "potrebamakorištenjem povuci & ispusti uređivača"
1351
-
1352
- #: includes/views/wcpdf-extensions.php:37
1353
- #: includes/views/wcpdf-extensions.php:118
1354
- msgid "Two extra stylish premade templates (Modern & Business)"
1355
- msgstr "Dva vrlo stilizirana pripremljena predloška (Moderni & Poslovni)"
1356
-
1357
- #: includes/views/wcpdf-extensions.php:39
1358
- #: includes/views/wcpdf-extensions.php:63
1359
- msgid "Upload automatically to dropbox"
1360
- msgstr ""
1361
-
1362
- #: includes/views/wcpdf-extensions.php:41
1363
- msgid ""
1364
- "This extension conveniently uploads all the invoices (and other pdf "
1365
- "documents from the professional extension) that are emailed to your "
1366
- "customers to Dropbox. The best way to keep your invoice administration up to "
1367
- "date!"
1368
- msgstr ""
1369
- "Ovo proširenje pouzdano prenosi sve račune ( i druge PDF dokumente s "
1370
- "profesionalnog proširenja) koja su poslana e-mailom vašim klijentima, "
1371
- "izravno na Dropbox. Najbolji način za održavanje vaše administracije računa "
1372
- "preglednim i ažurnim."
1373
-
1374
- #: includes/views/wcpdf-extensions.php:44
1375
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1376
- msgstr ""
1377
-
1378
- #: includes/views/wcpdf-extensions.php:53
1379
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1380
- msgstr ""
1381
- "Idemo na PRO: Proforma računi, kreditne bilješke (=povrat sredstava) i više!"
1382
-
1383
- #: includes/views/wcpdf-extensions.php:55
1384
- msgid ""
1385
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1386
- "features:"
1387
- msgstr ""
1388
- "SuperCharge-ajte WooCommerce PDF Računi i Paketni Slipovi dodatak sa "
1389
- "slijedećim mogućnostima:"
1390
-
1391
- #: includes/views/wcpdf-extensions.php:65
1392
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1393
- msgstr "Pribavite WooCmmerce Računi & Paketni slipovi Profesionalnu verziju!"
1394
-
1395
- #: includes/views/wcpdf-extensions.php:73
1396
- msgid "Automatically send payment reminders to your customers"
1397
- msgstr ""
1398
-
1399
- #: includes/views/wcpdf-extensions.php:75
1400
- msgid "WooCommerce Smart Reminder emails"
1401
- msgstr ""
1402
-
1403
- #: includes/views/wcpdf-extensions.php:77
1404
- msgid "<b>Completely automatic</b> scheduled emails"
1405
- msgstr ""
1406
-
1407
- #: includes/views/wcpdf-extensions.php:78
1408
- msgid ""
1409
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1410
- "from the order (name, order total, etc)"
1411
- msgstr ""
1412
-
1413
- #: includes/views/wcpdf-extensions.php:79
1414
- msgid ""
1415
- "Configure the exact requirements for sending an email (time after order, "
1416
- "order status, payment method)"
1417
- msgstr ""
1418
-
1419
- #: includes/views/wcpdf-extensions.php:80
1420
- msgid ""
1421
- "Fully <b>WPML Compatible</b> emails will be automatically sent in the "
1422
- "order language."
1423
- msgstr ""
1424
-
1425
- #: includes/views/wcpdf-extensions.php:81
1426
- msgid ""
1427
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1428
- "reminders, repeat purchases)"
1429
- msgstr ""
1430
-
1431
- #: includes/views/wcpdf-extensions.php:82
1432
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1433
- msgstr ""
1434
-
1435
- #: includes/views/wcpdf-extensions.php:84
1436
- msgid "Get WooCommerce Smart Reminder Emails"
1437
- msgstr ""
1438
-
1439
- #: includes/views/wcpdf-extensions.php:93
1440
- msgid ""
1441
- "Automatically send new orders or packing slips to your printer, as soon as "
1442
- "the customer orders!"
1443
- msgstr ""
1444
- "AUtomatski pošalji nove narudžbe ili pakente slipove na vaš printer, u "
1445
- "trenutku kada klijent izvši narudžbu!"
1446
-
1447
- #: includes/views/wcpdf-extensions.php:99
1448
- msgid ""
1449
- "Check out the WooCommerce Automatic Order Printing extension from our "
1450
- "partners at Simba Hosting"
1451
- msgstr ""
1452
- "Provjerite WooCommerce dodatak ispis Automatske Narudžbe izrađen od strane "
1453
- "naših partnera @ Simba Hosting"
1454
-
1455
- #: includes/views/wcpdf-extensions.php:100
1456
- msgid "WooCommerce Automatic Order Printing"
1457
- msgstr "WooCOmmerce Ispis Automatske narudžbe"
1458
-
1459
- #. translators: Premium Templates link
1460
- #: includes/views/wcpdf-extensions.php:120
1461
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1462
- msgstr "Provjerite Premium PDF Računi & Slipovi paketa predloške na %s."
1463
-
1464
- #. translators: email link
1465
- #: includes/views/wcpdf-extensions.php:122
1466
- msgid "For custom templates, contact us at %s."
1467
- msgstr "Za prilagođene teme, kontaktirajte nas na %s."
1468
-
1469
- #: includes/views/wcpdf-settings-page.php:9
1470
- msgid "WooCommerce PDF Invoices"
1471
- msgstr "Woocommerce PDF Računi"
1472
-
1473
- #: includes/wcpdf-functions.php:209
1474
- msgid "Error creating PDF, please contact the site owner."
1475
- msgstr ""
1476
-
1477
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1478
- msgid "Billing Address:"
1479
- msgstr "Adresa za naplatu:"
1480
-
1481
- #: templates/Simple/invoice.php:48
1482
- msgid "Ship To:"
1483
- msgstr "Dostava na:"
1484
-
1485
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1486
- msgid "Order Number:"
1487
- msgstr "Broj narudžbe"
1488
-
1489
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1490
- msgid "Order Date:"
1491
- msgstr "Datum narudžbe:"
1492
-
1493
- #: templates/Simple/invoice.php:78
1494
- msgid "Payment Method:"
1495
- msgstr "Metoda Plaćanja:"
1496
-
1497
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1498
- msgid "Product"
1499
- msgstr "Proizvod"
1500
-
1501
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1502
- msgid "Quantity"
1503
- msgstr "Količina"
1504
-
1505
- #: templates/Simple/invoice.php:94
1506
- msgid "Price"
1507
- msgstr "CIjena"
1508
-
1509
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1510
- msgid "SKU"
1511
- msgstr "Broj artikla:"
1512
-
1513
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1514
- msgid "SKU:"
1515
- msgstr "Broj Artikla:"
1516
-
1517
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1518
- msgid "Weight:"
1519
- msgstr "Težina"
1520
-
1521
- #: templates/Simple/invoice.php:123
1522
- msgid "Notes"
1523
- msgstr ""
1524
-
1525
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1526
- msgid "Customer Notes"
1527
- msgstr "Bilješke klijenta"
1528
-
1529
- #: templates/Simple/packing-slip.php:35
1530
- msgid "Shipping Address:"
1531
- msgstr "Adresa za dostavu:"
1532
-
1533
- #: templates/Simple/packing-slip.php:66
1534
- msgid "Shipping Method:"
1535
- msgstr "Metoda dostave:"
1536
-
1537
- #. translators: <a> tags
1538
- #: woocommerce-pdf-invoices-packingslips.php:271
1539
- msgid ""
1540
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1541
- "installed & activated!"
1542
- msgstr ""
1543
-
1544
- #: woocommerce-pdf-invoices-packingslips.php:282
1545
- msgid ""
1546
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1547
- "recommended)."
1548
- msgstr ""
1549
-
1550
- #. translators: <a> tags
1551
- #: woocommerce-pdf-invoices-packingslips.php:284
1552
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1553
- msgstr ""
1554
-
1555
- #. translators: <a> tags
1556
- #: woocommerce-pdf-invoices-packingslips.php:286
1557
- msgid ""
1558
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1559
- "to enable backwards compatibility with PHP5.6."
1560
- msgstr ""
1561
-
1562
- #. translators: directory path
1563
- #: woocommerce-pdf-invoices-packingslips.php:374
1564
- msgid ""
1565
- "The PDF files in %s are not currently protected due to your site running on "
1566
- "<strong>NGINX</strong>."
1567
- msgstr ""
1568
-
1569
- #: woocommerce-pdf-invoices-packingslips.php:375
1570
- msgid "To protect them, you must click the button below."
1571
- msgstr ""
1572
-
1573
- #. translators: plugin name
1574
- #: woocommerce-pdf-invoices-packingslips.php:419
1575
- msgid ""
1576
- "When sending emails with MailPoet 3 and the active sending method is "
1577
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1578
- "the emails."
1579
- msgstr ""
1580
-
1581
- #. translators: "Your web host / web server"
1582
- #: woocommerce-pdf-invoices-packingslips.php:421
1583
- msgid "To fix this you should select other method like %1$s or %2$s."
1584
- msgstr ""
1585
-
1586
- #. translators: "Your web host / web server"
1587
- #: woocommerce-pdf-invoices-packingslips.php:421
1588
- msgid "Your web host / web server"
1589
- msgstr ""
1590
-
1591
- #: woocommerce-pdf-invoices-packingslips.php:422
1592
- msgid "Change MailPoet sending method"
1593
- msgstr ""
1594
-
1595
- #~ msgid "PDF Invoice data"
1596
- #~ msgstr "Sadržaj PDF računa"
1597
-
1598
- #~ msgid "Invoice Number (unformatted!)"
1599
- #~ msgstr "Broj računa (neformatiran!)"
1600
-
1601
- #~ msgid "h"
1602
- #~ msgstr "s"
1603
-
1604
- #~ msgid "m"
1605
- #~ msgstr "m"
1606
-
1607
- #, php-format
1608
- #~ msgid ""
1609
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1610
- #~ "your (child) theme in <code>%s</code> to customize them"
1611
- #~ msgstr ""
1612
- #~ "Želite koristiti vlastiti predložak? Kopirajte sve datoteke iz <code>%s</"
1613
- #~ "code> u vašu \"child\" temu u <code>%s</code> kako bi ih mogli "
1614
- #~ "prilagođavati"
1615
-
1616
- #~ msgid "Settings"
1617
- #~ msgstr "Postavke"
1618
-
1619
- #, php-format
1620
- #~ msgid "(Includes %s)"
1621
- #~ msgstr "(Uključujući %s)"
1622
-
1623
- #~ msgid "Disable for free products"
1624
- #~ msgstr "Onemogući za besplatne proizvode"
1625
-
1626
- #~ msgid "Upload all invoices automatically to your dropbox"
1627
- #~ msgstr "Prijenos svih računa automatski na Dropbox"
1628
-
1629
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1630
- #~ msgstr "Povucite WooCOmmerce Račune i paketne slipove u dropbox!"
1631
-
1632
- #, php-format
1633
- #~ msgid ""
1634
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1635
- #~ "installed & activated!"
1636
- #~ msgstr ""
1637
- #~ "WooCommerce PDF Računi & Slipovi za pakete zahtjevaju instalaciju i "
1638
- #~ "aktivaciju %sWooCommerce%s!"
1639
-
1640
- #~ msgid "Attach invoice to:"
1641
- #~ msgstr "Privitak računa za:"
1642
-
1643
- #~ msgid ""
1644
- #~ "Display shipping address on invoice (in addition to the default billing "
1645
- #~ "address) if different from billing address"
1646
- #~ msgstr ""
1647
- #~ "Prikazati adresu dostave na računu (kao dodatak predodređene adrese za "
1648
- #~ "naplatu) ako je različita od adrese za naplatu"
1649
-
1650
- #~ msgid ""
1651
- #~ "This is the number that will be used on the next invoice that is created. "
1652
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1653
- #~ "first invoice that is created and increases for every new invoice. Note "
1654
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1655
- #~ "number, this could create double invoice numbers!"
1656
- #~ msgstr ""
1657
- #~ "Ovo je broj koji će se koristiti na prvom slijedećem generiranom računu. "
1658
- #~ "Prema pretpostavljenim postavkama, brojanje započinje od Woocommerce "
1659
- #~ "broja narudžbe i prvog generiranog računa i broj se uvećava za svaki novi "
1660
- #~ "račun. Obratite pozornost na to ako ovo premostite i postavite na nižu "
1661
- #~ "vrijednost od najvišeg (PDF) broja računa, moglo bi se dogoditi da imate "
1662
- #~ "kreirane dvostruke brojeve računa."
1663
-
1664
- #~ msgid "Invoice number format"
1665
- #~ msgstr "Format broja računa"
1666
-
1667
- #~ msgid ""
1668
- #~ "Disable automatic creation/attachment of invoices when only free products "
1669
- #~ "are ordered"
1670
- #~ msgstr ""
1671
- #~ "Onemogući automatiziranu izradu/dodavanje računa kada su naručeni "
1672
- #~ "isključivo besplatni proizvodi/usluge"
1673
-
1674
- #~ msgid ""
1675
- #~ "Display billing address on packing slip (in addition to the default "
1676
- #~ "shipping address) if different from shipping address"
1677
- #~ msgstr ""
1678
- #~ "Prikazati adresu za naplatu na paketnom slipu (kao dodatak "
1679
- #~ "pretpostavljenoj adresi za dostavu) ako se ralikuje od adrese za dostavu"
1680
-
1681
- #~ msgid "Template"
1682
- #~ msgstr "Predložak"
1683
-
1684
- #~ msgid "Admin New Order email"
1685
- #~ msgstr "e-mail obavijest administratoru o novoj narudžbi"
1686
-
1687
- #~ msgid "Customer Processing Order email"
1688
- #~ msgstr "e-mail obavijest klijentu o postupku obrade narudžbe"
1689
-
1690
- #~ msgid "Customer Completed Order email"
1691
- #~ msgstr "e-mail obavijest klijentu o dovršenoj narudžbi"
1692
-
1693
- #~ msgid "Customer Invoice email"
1694
- #~ msgstr "E-mail klijenta za dostavu računa"
1695
-
1696
- #~ msgid "Interface"
1697
- #~ msgstr "Sučelje"
1698
-
1699
- #~ msgid "PDF Template settings"
1700
- #~ msgstr "PDF predložak : postavke"
1701
-
1702
- #~ msgid "Display built-in sequential invoice number"
1703
- #~ msgstr "Prikaži ugrađenu sekvencu broja računa"
1704
-
1705
- #~ msgid "Use old tmp folder"
1706
- #~ msgstr "Koristiti stari tmp folder"
1707
-
1708
- #~ msgid ""
1709
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1710
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1711
- #~ "not recommended on new installs!"
1712
- #~ msgstr ""
1713
- #~ "Prije verzije 1.5 ili PDF računa, privremene datoteke su se pohranjivale "
1714
- #~ "u plugin folder. Ove postavke su namijenjene samo za pozadinsku "
1715
- #~ "kompatibilnost, nisu namijenjene novim instalacijama!"
1716
-
1717
- #~ msgid "PDF Packing Slips"
1718
- #~ msgstr "PDF Paketni slipovi"
1719
-
1720
- #~ msgid "PDF Invoice"
1721
- #~ msgstr "PDF račun"
1722
-
1723
- #~ msgid "PDF Packing Slip"
1724
- #~ msgstr "PDF paketni slip"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:23-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
+ "Language: hr\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
15
+ "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2;\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 3.0\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Loco-Target-Locale: hr_HR\n"
25
+ "X-Poedit-SearchPath-0: .\n"
26
+
27
+ #. Plugin Name of the plugin
28
+ msgid "WooCommerce PDF Invoices & Packing Slips"
29
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
30
+
31
+ #. Plugin URI of the plugin
32
+ #. Author URI of the plugin
33
+ msgid "http://www.wpovernight.com"
34
+ msgstr "http://www.wpovernight.com"
35
+
36
+ #. Description of the plugin
37
+ msgid ""
38
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
39
+ msgstr ""
40
+ "Izradi, Ispiši & pošalji E-mailom Račune & paketne slipove za narudžbe putem "
41
+ "WooCommerce-a."
42
+
43
+ #. Author of the plugin
44
+ msgid "Ewout Fernhout"
45
+ msgstr "Ewout Fernhout"
46
+
47
+ #. translators: rounded count
48
+ #: includes/class-wcpdf-admin.php:92
49
+ msgid "Wow, you have created more than %d invoices with our plugin!"
50
+ msgstr ""
51
+
52
+ #: includes/class-wcpdf-admin.php:93
53
+ msgid ""
54
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
55
+ "rating. Help us spread the word and boost our motivation!"
56
+ msgstr ""
57
+
58
+ #: includes/class-wcpdf-admin.php:95
59
+ msgid "Yes you deserve it!"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
63
+ #: includes/views/attachment-settings-hint.php:24
64
+ #: includes/views/wcpdf-extensions.php:131
65
+ #: woocommerce-pdf-invoices-packingslips.php:377
66
+ #: woocommerce-pdf-invoices-packingslips.php:423
67
+ msgid "Hide this message"
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:96
71
+ msgid "Already did!"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:97
75
+ msgid "Actually, I have a complaint..."
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:132
79
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:132
83
+ msgid "Jumpstart the plugin by following our wizard!"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:133
87
+ msgid "Run the Setup Wizard"
88
+ msgstr ""
89
+
90
+ #: includes/class-wcpdf-admin.php:133
91
+ msgid "I am the wizard"
92
+ msgstr ""
93
+
94
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
95
+ #: includes/documents/class-wcpdf-invoice.php:302
96
+ msgid "Invoice Number"
97
+ msgstr "Broj računa"
98
+
99
+ #: includes/class-wcpdf-admin.php:261
100
+ msgid "Send order email"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:272
104
+ msgid "Create PDF"
105
+ msgstr "Generiraj PDF"
106
+
107
+ #: includes/class-wcpdf-admin.php:282
108
+ msgid "PDF document data"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:304
112
+ msgid "Choose an email to send&hellip;"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:320
116
+ msgid "Save order & send email"
117
+ msgstr ""
118
+
119
+ #: includes/class-wcpdf-admin.php:322
120
+ msgid "Send email"
121
+ msgstr ""
122
+
123
+ #: includes/class-wcpdf-admin.php:378
124
+ #: includes/documents/class-wcpdf-invoice.php:460
125
+ msgid "Invoice Number:"
126
+ msgstr "Broj računa:"
127
+
128
+ #: includes/class-wcpdf-admin.php:381
129
+ #: includes/documents/class-wcpdf-invoice.php:468
130
+ msgid "Invoice Date:"
131
+ msgstr "Datum računa:"
132
+
133
+ #: includes/class-wcpdf-admin.php:384
134
+ msgid "Notes (printed in the invoice):"
135
+ msgstr ""
136
+
137
+ #. translators: document title
138
+ #: includes/class-wcpdf-admin.php:469
139
+ msgid "Set %s number & date"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:478
143
+ msgid "unformatted!"
144
+ msgstr ""
145
+
146
+ #: includes/class-wcpdf-admin.php:518
147
+ msgid "Save changes"
148
+ msgstr ""
149
+
150
+ #: includes/class-wcpdf-admin.php:519
151
+ msgid "Cancel"
152
+ msgstr ""
153
+
154
+ #. translators: name/description of the context for document creation logs
155
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
156
+ msgid "order details (number and/or date set manually)"
157
+ msgstr ""
158
+
159
+ #. translators: %s: email title
160
+ #: includes/class-wcpdf-admin.php:647
161
+ msgid "%s email notification manually sent."
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:734
165
+ msgid "Nonce expired!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:740
169
+ msgid "Bad action!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:746
173
+ msgid "Incomplete request!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:752
177
+ msgid "No permissions!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:776
181
+ msgid "Document data saved!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:777
185
+ msgid "An error occurred while saving the document data!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:780
189
+ msgid "Document regenerated!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:781
193
+ msgid "An error occurred while regenerating the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:784
197
+ msgid "Document deleted!"
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:785
201
+ msgid "An error occurred while deleting the document!"
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:841
205
+ msgid "Document does not exist."
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-admin.php:850
209
+ msgid "Document is empty."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-admin.php:881
213
+ msgid "DEBUG output enabled"
214
+ msgstr ""
215
+
216
+ #: includes/class-wcpdf-assets.php:94
217
+ msgid "Are you sure you want to delete this document? This cannot be undone."
218
+ msgstr ""
219
+
220
+ #: includes/class-wcpdf-assets.php:95
221
+ msgid ""
222
+ "Are you sure you want to regenerate this document? This will make the "
223
+ "document reflect the most current settings (such as footer text, document "
224
+ "name, etc.) rather than using historical settings."
225
+ msgstr ""
226
+
227
+ #: includes/class-wcpdf-frontend.php:129
228
+ msgid "Download invoice (PDF)"
229
+ msgstr "Dohvati račun(PDF)"
230
+
231
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
232
+ #: includes/class-wcpdf-main.php:337
233
+ msgid "You do not have sufficient permissions to access this page."
234
+ msgstr "Nemate dovoljne ovlasti kako bi pristupili ovoj stranici."
235
+
236
+ #: includes/class-wcpdf-main.php:272
237
+ msgid "You haven't selected any orders"
238
+ msgstr ""
239
+
240
+ #: includes/class-wcpdf-main.php:276
241
+ msgid "Some of the export parameters are missing."
242
+ msgstr "Neki od parametara za izvoz nedostaju."
243
+
244
+ #. translators: document type
245
+ #: includes/class-wcpdf-main.php:378
246
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
247
+ msgstr ""
248
+
249
+ #. translators: 1. plugin name, 2. directory path
250
+ #: includes/class-wcpdf-main.php:603
251
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
252
+ msgstr ""
253
+
254
+ #: includes/class-wcpdf-main.php:604
255
+ msgid ""
256
+ "Please check your directories write permissions or contact your hosting "
257
+ "service provider."
258
+ msgstr ""
259
+
260
+ #: includes/class-wcpdf-main.php:919
261
+ #: includes/documents/class-wcpdf-invoice.php:286
262
+ msgid "Invoice Date"
263
+ msgstr ""
264
+
265
+ #. translators: name/description of the context for document creation logs
266
+ #: includes/class-wcpdf-main.php:949
267
+ msgid "bulk order action"
268
+ msgstr ""
269
+
270
+ #. translators: name/description of the context for document creation logs
271
+ #: includes/class-wcpdf-main.php:957
272
+ msgid "single order action"
273
+ msgstr ""
274
+
275
+ #. translators: name/description of the context for document creation logs
276
+ #: includes/class-wcpdf-main.php:965
277
+ msgid "my account"
278
+ msgstr ""
279
+
280
+ #. translators: name/description of the context for document creation logs
281
+ #: includes/class-wcpdf-main.php:973
282
+ msgid "email attachment"
283
+ msgstr ""
284
+
285
+ #. translators: 1. document title, 2. creation source
286
+ #: includes/class-wcpdf-main.php:982
287
+ msgid "PDF %1$s created via %2$s."
288
+ msgstr ""
289
+
290
+ #. translators: document title
291
+ #: includes/class-wcpdf-main.php:1026
292
+ msgid "Order %s Saved"
293
+ msgstr ""
294
+
295
+ #: includes/class-wcpdf-settings-callbacks.php:27
296
+ msgid ""
297
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
298
+ "Do not use them on a live website!"
299
+ msgstr ""
300
+ "Upozorenje! Donje postavke su namijenjene isključivo za debugging/"
301
+ "development. Ne koristite ih na stranicama koje su puštene u produkciju."
302
+
303
+ #: includes/class-wcpdf-settings-callbacks.php:36
304
+ msgid ""
305
+ "These are used for the (optional) footer columns in the <em>Modern "
306
+ "(Premium)</em> template, but can also be used for other elements in your "
307
+ "custom template"
308
+ msgstr ""
309
+ "Ovo se koristi za (opcionalno) retke u podnožju (footeru) <em>Modern "
310
+ "(Premium)</em> predlošku, ali se također može koristiti za druge elemente u "
311
+ "vašem prilagođenom predlošku"
312
+
313
+ #: includes/class-wcpdf-settings-callbacks.php:384
314
+ msgid "Image resolution"
315
+ msgstr "Rezolucija slike"
316
+
317
+ #: includes/class-wcpdf-settings-callbacks.php:411
318
+ msgid "Save"
319
+ msgstr ""
320
+
321
+ #: includes/class-wcpdf-settings-debug.php:45
322
+ #: woocommerce-pdf-invoices-packingslips.php:376
323
+ msgid "Generate random temporary folder name"
324
+ msgstr ""
325
+
326
+ #. translators: directory path
327
+ #: includes/class-wcpdf-settings-debug.php:58
328
+ msgid "Temporary folder moved to %s"
329
+ msgstr ""
330
+
331
+ #: includes/class-wcpdf-settings-debug.php:68
332
+ msgid "Reinstall fonts"
333
+ msgstr ""
334
+
335
+ #: includes/class-wcpdf-settings-debug.php:89
336
+ msgid "Fonts reinstalled!"
337
+ msgstr ""
338
+
339
+ #: includes/class-wcpdf-settings-debug.php:98
340
+ msgid "Remove temporary files"
341
+ msgstr ""
342
+
343
+ #: includes/class-wcpdf-settings-debug.php:109
344
+ msgid "Unable to read temporary folder contents!"
345
+ msgstr ""
346
+
347
+ #. translators: 1,2. file count
348
+ #: includes/class-wcpdf-settings-debug.php:127
349
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
350
+ msgstr ""
351
+
352
+ #. translators: file count
353
+ #: includes/class-wcpdf-settings-debug.php:131
354
+ msgid "Successfully deleted %d files!"
355
+ msgstr ""
356
+
357
+ #: includes/class-wcpdf-settings-debug.php:135
358
+ msgid "Nothing to delete!"
359
+ msgstr ""
360
+
361
+ #: includes/class-wcpdf-settings-debug.php:146
362
+ msgid "Delete legacy (1.X) settings"
363
+ msgstr ""
364
+
365
+ #: includes/class-wcpdf-settings-debug.php:162
366
+ msgid "Legacy settings deleted!"
367
+ msgstr ""
368
+
369
+ #: includes/class-wcpdf-settings-debug.php:192
370
+ msgid "Debug settings"
371
+ msgstr "Postavke debug-a"
372
+
373
+ #: includes/class-wcpdf-settings-debug.php:198
374
+ msgid "Legacy mode"
375
+ msgstr ""
376
+
377
+ #: includes/class-wcpdf-settings-debug.php:204
378
+ msgid ""
379
+ "Legacy mode ensures compatibility with templates and filters from previous "
380
+ "versions."
381
+ msgstr ""
382
+
383
+ #: includes/class-wcpdf-settings-debug.php:210
384
+ msgid "Legacy textdomain fallback"
385
+ msgstr ""
386
+
387
+ #: includes/class-wcpdf-settings-debug.php:216
388
+ msgid ""
389
+ "Legacy textdomain fallback ensures compatibility with translation files from "
390
+ "versions prior to 2017-05-15."
391
+ msgstr ""
392
+
393
+ #: includes/class-wcpdf-settings-debug.php:222
394
+ msgid "Allow guest access"
395
+ msgstr ""
396
+
397
+ #: includes/class-wcpdf-settings-debug.php:228
398
+ msgid ""
399
+ "Enable this to allow customers that purchase without an account to access "
400
+ "their PDF with a unique key"
401
+ msgstr ""
402
+
403
+ #: includes/class-wcpdf-settings-debug.php:234
404
+ msgid "Calculate document numbers (slow)"
405
+ msgstr ""
406
+
407
+ #: includes/class-wcpdf-settings-debug.php:240
408
+ msgid ""
409
+ "Document numbers (such as invoice numbers) are generated using "
410
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
411
+ "with more than 1."
412
+ msgstr ""
413
+
414
+ #: includes/class-wcpdf-settings-debug.php:246
415
+ msgid "Enable debug output"
416
+ msgstr "Omogućiti debug prikaz"
417
+
418
+ #: includes/class-wcpdf-settings-debug.php:252
419
+ msgid ""
420
+ "Enable this option to output plugin errors if you're getting a blank page or "
421
+ "other PDF generation issues"
422
+ msgstr ""
423
+ "Omogući ovu opciju kako bi dohvatili greške priključka ako vam se događa da "
424
+ "dobivate praznu stranicu nakon generiranja PDF-a ili imate neke druge "
425
+ "poteškoće"
426
+
427
+ #: includes/class-wcpdf-settings-debug.php:253
428
+ msgid ""
429
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
430
+ "places on your site too, therefor this is not recommended to leave it "
431
+ "enabled on live sites."
432
+ msgstr ""
433
+
434
+ #: includes/class-wcpdf-settings-debug.php:254
435
+ msgid ""
436
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
437
+ "order basis."
438
+ msgstr ""
439
+
440
+ #: includes/class-wcpdf-settings-debug.php:260
441
+ msgid "Enable automatic cleanup"
442
+ msgstr ""
443
+
444
+ #. translators: number of days
445
+ #: includes/class-wcpdf-settings-debug.php:268
446
+ msgid "every %s days"
447
+ msgstr ""
448
+
449
+ #: includes/class-wcpdf-settings-debug.php:273
450
+ msgid ""
451
+ "Automatically clean up PDF files stored in the temporary folder (used for "
452
+ "email attachments)"
453
+ msgstr ""
454
+
455
+ #: includes/class-wcpdf-settings-debug.php:274
456
+ msgid ""
457
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
458
+ "automatic cleanup but not enabled on your server."
459
+ msgstr ""
460
+
461
+ #: includes/class-wcpdf-settings-debug.php:280
462
+ msgid "Output to HTML"
463
+ msgstr "Prikaži u HTML-u"
464
+
465
+ #: includes/class-wcpdf-settings-debug.php:286
466
+ msgid ""
467
+ "Send the template output as HTML to the browser instead of creating a PDF."
468
+ msgstr "Pošalji predložak u HTML formatu umjesto generiranja PDF-a."
469
+
470
+ #: includes/class-wcpdf-settings-debug.php:287
471
+ msgid ""
472
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
473
+ "order basis."
474
+ msgstr ""
475
+
476
+ #: includes/class-wcpdf-settings-debug.php:293
477
+ msgid "Use alternative HTML5 parser to parse HTML"
478
+ msgstr ""
479
+
480
+ #: includes/class-wcpdf-settings-debug.php:304
481
+ msgid "Log to order notes"
482
+ msgstr ""
483
+
484
+ #: includes/class-wcpdf-settings-debug.php:310
485
+ msgid "Log PDF document creation to order notes."
486
+ msgstr ""
487
+
488
+ #: includes/class-wcpdf-settings-documents.php:30
489
+ #: includes/class-wcpdf-settings.php:104
490
+ msgid "Documents"
491
+ msgstr ""
492
+
493
+ #: includes/class-wcpdf-settings-documents.php:36
494
+ #: includes/class-wcpdf-settings-documents.php:57
495
+ msgid "untitled"
496
+ msgstr ""
497
+
498
+ #: includes/class-wcpdf-settings-documents.php:50
499
+ msgid ""
500
+ "All available documents are listed below. Click on a document to configure "
501
+ "it."
502
+ msgstr ""
503
+
504
+ #: includes/class-wcpdf-settings-general.php:40
505
+ msgid "General settings"
506
+ msgstr "Opće postavke"
507
+
508
+ #: includes/class-wcpdf-settings-general.php:46
509
+ msgid "How do you want to view the PDF?"
510
+ msgstr "Što želite učiniti s PDF-om?"
511
+
512
+ #: includes/class-wcpdf-settings-general.php:53
513
+ msgid "Download the PDF"
514
+ msgstr "Preuzmi PDF "
515
+
516
+ #: includes/class-wcpdf-settings-general.php:54
517
+ msgid "Open the PDF in a new browser tab/window"
518
+ msgstr "Otvorite PDF u novoj kartici preglednika / u novom prozoru"
519
+
520
+ #: includes/class-wcpdf-settings-general.php:61
521
+ msgid "Choose a template"
522
+ msgstr "Odaberite predložak"
523
+
524
+ #. translators: 1,2. template paths
525
+ #: includes/class-wcpdf-settings-general.php:69
526
+ msgid ""
527
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
528
+ "your (child) theme in <code>%2$s</code> to customize them"
529
+ msgstr ""
530
+
531
+ #: includes/class-wcpdf-settings-general.php:75
532
+ msgid "Paper size"
533
+ msgstr "Veličina papira"
534
+
535
+ #: includes/class-wcpdf-settings-general.php:82
536
+ #: includes/views/setup-wizard/paper-format.php:12
537
+ msgid "A4"
538
+ msgstr "A4"
539
+
540
+ #: includes/class-wcpdf-settings-general.php:83
541
+ #: includes/views/setup-wizard/paper-format.php:13
542
+ msgid "Letter"
543
+ msgstr "Pismo"
544
+
545
+ #: includes/class-wcpdf-settings-general.php:90
546
+ msgid "Test mode"
547
+ msgstr ""
548
+
549
+ #: includes/class-wcpdf-settings-general.php:96
550
+ msgid ""
551
+ "With test mode enabled, any document generated will always use the latest "
552
+ "settings, rather than using the settings as configured at the time the "
553
+ "document was first created."
554
+ msgstr ""
555
+
556
+ #: includes/class-wcpdf-settings-general.php:96
557
+ msgid ""
558
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
559
+ "setting and will still be generated."
560
+ msgstr ""
561
+
562
+ #: includes/class-wcpdf-settings-general.php:102
563
+ msgid "Extended currency symbol support"
564
+ msgstr ""
565
+
566
+ #: includes/class-wcpdf-settings-general.php:108
567
+ msgid "Enable this if your currency symbol is not displaying properly"
568
+ msgstr ""
569
+
570
+ #: includes/class-wcpdf-settings-general.php:114
571
+ msgid "Enable font subsetting"
572
+ msgstr ""
573
+
574
+ #: includes/class-wcpdf-settings-general.php:120
575
+ msgid ""
576
+ "Font subsetting can reduce file size by only including the characters that "
577
+ "are used in the PDF, but limits the ability to edit PDF files later. "
578
+ "Recommended if you're using an Asian font."
579
+ msgstr ""
580
+
581
+ #: includes/class-wcpdf-settings-general.php:126
582
+ msgid "Shop header/logo"
583
+ msgstr "Zaglavlje/Logo trgovine"
584
+
585
+ #: includes/class-wcpdf-settings-general.php:132
586
+ #: includes/views/setup-wizard/logo.php:20
587
+ msgid "Select or upload your invoice header/logo"
588
+ msgstr "Odaberite ili prenesite datoteku zaglavlja/logo-a za račun"
589
+
590
+ #: includes/class-wcpdf-settings-general.php:133
591
+ #: includes/views/setup-wizard/logo.php:20
592
+ msgid "Set image"
593
+ msgstr "Odabir slike"
594
+
595
+ #: includes/class-wcpdf-settings-general.php:134
596
+ #: includes/views/setup-wizard/logo.php:20
597
+ msgid "Remove image"
598
+ msgstr "Ukloni sliku"
599
+
600
+ #: includes/class-wcpdf-settings-general.php:141
601
+ msgid "Logo height"
602
+ msgstr ""
603
+
604
+ #: includes/class-wcpdf-settings-general.php:149
605
+ msgid ""
606
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
607
+ "decimals.<br/>For example: 1.15in or 40mm"
608
+ msgstr ""
609
+
610
+ #: includes/class-wcpdf-settings-general.php:155
611
+ #: includes/class-wcpdf-setup-wizard.php:49
612
+ msgid "Shop Name"
613
+ msgstr "Ime trgovine"
614
+
615
+ #: includes/class-wcpdf-settings-general.php:168
616
+ msgid "Shop Address"
617
+ msgstr "Adresa trgovine"
618
+
619
+ #: includes/class-wcpdf-settings-general.php:183
620
+ msgid "Footer: terms & conditions, policies, etc."
621
+ msgstr "Podnožje: uvjeti & statusne stvari, poslovanje i sl."
622
+
623
+ #: includes/class-wcpdf-settings-general.php:198
624
+ msgid "Extra template fields"
625
+ msgstr "Dodatna polja predloška"
626
+
627
+ #: includes/class-wcpdf-settings-general.php:204
628
+ msgid "Extra field 1"
629
+ msgstr "Dodatno polje 1"
630
+
631
+ #: includes/class-wcpdf-settings-general.php:212
632
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
633
+ msgstr "Ovo je 1 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
634
+
635
+ #: includes/class-wcpdf-settings-general.php:219
636
+ msgid "Extra field 2"
637
+ msgstr "Dodatno polje 2"
638
+
639
+ #: includes/class-wcpdf-settings-general.php:227
640
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
641
+ msgstr "Ovo je 2 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
642
+
643
+ #: includes/class-wcpdf-settings-general.php:234
644
+ msgid "Extra field 3"
645
+ msgstr "Dodatno polje 3"
646
+
647
+ #: includes/class-wcpdf-settings-general.php:242
648
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
649
+ msgstr "Ovo je 3 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
650
+
651
+ #: includes/class-wcpdf-settings-general.php:290
652
+ msgid "Custom"
653
+ msgstr ""
654
+
655
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
656
+ msgid "PDF Invoices"
657
+ msgstr "PDF Račun"
658
+
659
+ #: includes/class-wcpdf-settings.php:81
660
+ msgid "Documentation"
661
+ msgstr ""
662
+
663
+ #: includes/class-wcpdf-settings.php:82
664
+ msgid "Support Forum"
665
+ msgstr ""
666
+
667
+ #. translators: database row value
668
+ #: includes/class-wcpdf-settings.php:95
669
+ msgid ""
670
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
671
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
672
+ "document numbers (slow)' setting in the Status tab to use an alternate "
673
+ "method."
674
+ msgstr ""
675
+
676
+ #: includes/class-wcpdf-settings.php:103
677
+ msgid "General"
678
+ msgstr "Općenito"
679
+
680
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
681
+ msgid "Status"
682
+ msgstr "Status"
683
+
684
+ #. translators: 1. path, 2. template ID
685
+ #: includes/class-wcpdf-settings.php:396
686
+ msgid "Template setting migrated from %1$s to %2$s"
687
+ msgstr ""
688
+
689
+ #: includes/class-wcpdf-setup-wizard.php:53
690
+ #: includes/views/setup-wizard/logo.php:3
691
+ msgid "Your logo"
692
+ msgstr ""
693
+
694
+ #: includes/class-wcpdf-setup-wizard.php:57
695
+ msgid "Attachments"
696
+ msgstr ""
697
+
698
+ #: includes/class-wcpdf-setup-wizard.php:61
699
+ #: includes/views/setup-wizard/display-options.php:3
700
+ msgid "Display options"
701
+ msgstr ""
702
+
703
+ #: includes/class-wcpdf-setup-wizard.php:65
704
+ #: includes/views/setup-wizard/paper-format.php:3
705
+ msgid "Paper format"
706
+ msgstr ""
707
+
708
+ #: includes/class-wcpdf-setup-wizard.php:69
709
+ #: includes/views/setup-wizard/show-action-buttons.php:3
710
+ msgid "Action buttons"
711
+ msgstr ""
712
+
713
+ #: includes/class-wcpdf-setup-wizard.php:73
714
+ msgid "Ready!"
715
+ msgstr ""
716
+
717
+ #: includes/class-wcpdf-setup-wizard.php:135
718
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
719
+ msgstr ""
720
+
721
+ #: includes/class-wcpdf-setup-wizard.php:187
722
+ msgid "Previous"
723
+ msgstr ""
724
+
725
+ #: includes/class-wcpdf-setup-wizard.php:192
726
+ msgid "Next"
727
+ msgstr ""
728
+
729
+ #: includes/class-wcpdf-setup-wizard.php:193
730
+ msgid "Skip this step"
731
+ msgstr ""
732
+
733
+ #: includes/class-wcpdf-setup-wizard.php:195
734
+ msgid "Finish"
735
+ msgstr ""
736
+
737
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
738
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
739
+ msgid "N/A"
740
+ msgstr "Ništa"
741
+
742
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
743
+ msgid "Payment method"
744
+ msgstr "Metoda plaćanja"
745
+
746
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
747
+ msgid "Shipping method"
748
+ msgstr "Metoda dostave"
749
+
750
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
751
+ msgid "Subtotal"
752
+ msgstr "Ukupno (subtotal)"
753
+
754
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
755
+ msgid "Shipping"
756
+ msgstr "Dostava"
757
+
758
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
759
+ msgid "Discount"
760
+ msgstr "Popust"
761
+
762
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
763
+ msgid "VAT"
764
+ msgstr "PDV"
765
+
766
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
767
+ msgid "Tax rate"
768
+ msgstr "Visina poreza"
769
+
770
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
771
+ msgid "Total ex. VAT"
772
+ msgstr "Ukupno bez PDV-a"
773
+
774
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
775
+ msgid "Total"
776
+ msgstr "Ukupno"
777
+
778
+ #. translators: 1. credit note title, 2. refund id
779
+ #: includes/documents/abstract-wcpdf-order-document.php:336
780
+ msgid "%1$s (refund #%2$s) was regenerated."
781
+ msgstr ""
782
+
783
+ #. translators: 1. credit note title, 2. refund id
784
+ #: includes/documents/abstract-wcpdf-order-document.php:336
785
+ msgid "%s was regenerated"
786
+ msgstr ""
787
+
788
+ #. translators: %s: document name
789
+ #: includes/documents/abstract-wcpdf-order-document.php:422
790
+ msgid "%s Number:"
791
+ msgstr ""
792
+
793
+ #. translators: %s: document name
794
+ #: includes/documents/abstract-wcpdf-order-document.php:428
795
+ msgid "%s Date:"
796
+ msgstr ""
797
+
798
+ #: includes/documents/abstract-wcpdf-order-document.php:904
799
+ msgid "Admin email"
800
+ msgstr ""
801
+
802
+ #: includes/documents/abstract-wcpdf-order-document.php:907
803
+ msgid "Manual email"
804
+ msgstr ""
805
+
806
+ #: includes/documents/class-wcpdf-invoice.php:32
807
+ #: includes/documents/class-wcpdf-invoice.php:56
808
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
809
+ msgid "Invoice"
810
+ msgstr "Račun"
811
+
812
+ #: includes/documents/class-wcpdf-invoice.php:131
813
+ msgid "invoice"
814
+ msgid_plural "invoices"
815
+ msgstr[0] "Račun"
816
+ msgstr[1] "Računi"
817
+ msgstr[2] ""
818
+
819
+ #: includes/documents/class-wcpdf-invoice.php:186
820
+ #: includes/documents/class-wcpdf-packing-slip.php:88
821
+ msgid "Enable"
822
+ msgstr ""
823
+
824
+ #: includes/documents/class-wcpdf-invoice.php:197
825
+ msgid "Attach to:"
826
+ msgstr ""
827
+
828
+ #. translators: directory path
829
+ #: includes/documents/class-wcpdf-invoice.php:205
830
+ msgid ""
831
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
832
+ "permissions for this folder! Without having write access to this folder, the "
833
+ "plugin will not be able to email invoices."
834
+ msgstr ""
835
+ "Čini se kako je temp folder (<code>%s</code>) zaštićen od pisanja, "
836
+ "provjerite dozvole za ovaj folder. Bez ovlasti za upisivanje u ovaj folder "
837
+ "plugin neće biti u mogućnosti poslati račune e-mailom."
838
+
839
+ #: includes/documents/class-wcpdf-invoice.php:211
840
+ msgid "Disable for:"
841
+ msgstr ""
842
+
843
+ #: includes/documents/class-wcpdf-invoice.php:220
844
+ msgid "Select one or more statuses"
845
+ msgstr ""
846
+
847
+ #: includes/documents/class-wcpdf-invoice.php:226
848
+ #: includes/views/setup-wizard/display-options.php:17
849
+ msgid "Display shipping address"
850
+ msgstr "Prikazati adresu dostave"
851
+
852
+ #: includes/documents/class-wcpdf-invoice.php:233
853
+ #: includes/documents/class-wcpdf-invoice.php:285
854
+ #: includes/documents/class-wcpdf-invoice.php:301
855
+ #: includes/documents/class-wcpdf-packing-slip.php:106
856
+ msgid "No"
857
+ msgstr ""
858
+
859
+ #: includes/documents/class-wcpdf-invoice.php:234
860
+ msgid "Only when different from billing address"
861
+ msgstr ""
862
+
863
+ #: includes/documents/class-wcpdf-invoice.php:235
864
+ #: includes/documents/class-wcpdf-invoice.php:378
865
+ #: includes/documents/class-wcpdf-packing-slip.php:108
866
+ msgid "Always"
867
+ msgstr "Uvijek"
868
+
869
+ #: includes/documents/class-wcpdf-invoice.php:243
870
+ #: includes/documents/class-wcpdf-packing-slip.php:116
871
+ #: includes/views/setup-wizard/display-options.php:26
872
+ msgid "Display email address"
873
+ msgstr "Prikaži e-mail adresu"
874
+
875
+ #: includes/documents/class-wcpdf-invoice.php:254
876
+ #: includes/documents/class-wcpdf-packing-slip.php:127
877
+ #: includes/views/setup-wizard/display-options.php:35
878
+ msgid "Display phone number"
879
+ msgstr "Prikaži broj telefona"
880
+
881
+ #: includes/documents/class-wcpdf-invoice.php:265
882
+ #: includes/documents/class-wcpdf-packing-slip.php:138
883
+ msgid "Display customer notes"
884
+ msgstr ""
885
+
886
+ #: includes/documents/class-wcpdf-invoice.php:278
887
+ #: includes/views/setup-wizard/display-options.php:44
888
+ msgid "Display invoice date"
889
+ msgstr "Prikaži datum izrade računa"
890
+
891
+ #: includes/documents/class-wcpdf-invoice.php:287
892
+ msgid "Order Date"
893
+ msgstr ""
894
+
895
+ #: includes/documents/class-wcpdf-invoice.php:294
896
+ #: includes/views/setup-wizard/display-options.php:53
897
+ msgid "Display invoice number"
898
+ msgstr ""
899
+
900
+ #: includes/documents/class-wcpdf-invoice.php:303
901
+ msgid "Order Number"
902
+ msgstr ""
903
+
904
+ #: includes/documents/class-wcpdf-invoice.php:307
905
+ msgid "Warning!"
906
+ msgstr ""
907
+
908
+ #: includes/documents/class-wcpdf-invoice.php:308
909
+ msgid ""
910
+ "Using the Order Number as invoice number is not recommended as this may lead "
911
+ "to gaps in the invoice number sequence (even when order numbers are "
912
+ "sequential)."
913
+ msgstr ""
914
+
915
+ #: includes/documents/class-wcpdf-invoice.php:309
916
+ msgid "More information"
917
+ msgstr ""
918
+
919
+ #: includes/documents/class-wcpdf-invoice.php:316
920
+ msgid "Next invoice number (without prefix/suffix etc.)"
921
+ msgstr "Slijedeći broj računa (bez prefiksa i sufiksa)"
922
+
923
+ #: includes/documents/class-wcpdf-invoice.php:322
924
+ msgid ""
925
+ "This is the number that will be used for the next document. By default, "
926
+ "numbering starts from 1 and increases for every new document. Note that if "
927
+ "you override this and set it lower than the current/highest number, this "
928
+ "could create duplicate numbers!"
929
+ msgstr ""
930
+
931
+ #: includes/documents/class-wcpdf-invoice.php:328
932
+ msgid "Number format"
933
+ msgstr ""
934
+
935
+ #: includes/documents/class-wcpdf-invoice.php:336
936
+ msgid "Prefix"
937
+ msgstr "Prefiks"
938
+
939
+ #: includes/documents/class-wcpdf-invoice.php:338
940
+ msgid ""
941
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
942
+ "respectively"
943
+ msgstr ""
944
+ "kako bi koristili godinu i/ili mjesec, koristite [invoice_year] ili "
945
+ "[invoice_month] poštujući"
946
+
947
+ #: includes/documents/class-wcpdf-invoice.php:341
948
+ msgid "Suffix"
949
+ msgstr "Sufiks"
950
+
951
+ #: includes/documents/class-wcpdf-invoice.php:346
952
+ msgid "Padding"
953
+ msgstr "prostor "
954
+
955
+ #: includes/documents/class-wcpdf-invoice.php:349
956
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
957
+ msgstr ""
958
+ "unesite broj znamenki ovdje - unesite\"6\" ako želite prikazati broj 42 kao "
959
+ "000042"
960
+
961
+ #: includes/documents/class-wcpdf-invoice.php:352
962
+ msgid ""
963
+ "note: if you have already created a custom invoice number format with a "
964
+ "filter, the above settings will be ignored"
965
+ msgstr ""
966
+ "Bilješka: Ako ste već kreirali prilagođeni format broja računa s filterom, "
967
+ "gornje postavke biti će zanemarene"
968
+
969
+ #: includes/documents/class-wcpdf-invoice.php:358
970
+ msgid "Reset invoice number yearly"
971
+ msgstr "Resetirati broj računa na godišnjoj razini"
972
+
973
+ #: includes/documents/class-wcpdf-invoice.php:369
974
+ msgid "Allow My Account invoice download"
975
+ msgstr "Dozvoliti preuzimanje računa za moj korisnički profil"
976
+
977
+ #: includes/documents/class-wcpdf-invoice.php:376
978
+ msgid "Only when an invoice is already created/emailed"
979
+ msgstr "Samo kada je račun već izrađen/poslan"
980
+
981
+ #: includes/documents/class-wcpdf-invoice.php:377
982
+ msgid "Only for specific order statuses (define below)"
983
+ msgstr "Samo za specifične statuse narudžbe (definirati ispod)"
984
+
985
+ #: includes/documents/class-wcpdf-invoice.php:379
986
+ msgid "Never"
987
+ msgstr "Nikad"
988
+
989
+ #: includes/documents/class-wcpdf-invoice.php:394
990
+ msgid "Enable invoice number column in the orders list"
991
+ msgstr "Omogućite prikaz stupca s brojem računa u listi narudžbi"
992
+
993
+ #: includes/documents/class-wcpdf-invoice.php:405
994
+ msgid "Disable for free orders"
995
+ msgstr ""
996
+
997
+ #. translators: zero number
998
+ #: includes/documents/class-wcpdf-invoice.php:412
999
+ msgid "Disable document when the order total is %s"
1000
+ msgstr ""
1001
+
1002
+ #: includes/documents/class-wcpdf-invoice.php:418
1003
+ msgid "Always use most current settings"
1004
+ msgstr ""
1005
+
1006
+ #: includes/documents/class-wcpdf-invoice.php:424
1007
+ msgid ""
1008
+ "When enabled, the document will always reflect the most current settings "
1009
+ "(such as footer text, document name, etc.) rather than using historical "
1010
+ "settings."
1011
+ msgstr ""
1012
+
1013
+ #: includes/documents/class-wcpdf-invoice.php:426
1014
+ msgid ""
1015
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
1016
+ "your company name or address in the future, previously generated documents "
1017
+ "will also be affected."
1018
+ msgstr ""
1019
+
1020
+ #: includes/documents/class-wcpdf-invoice.php:439
1021
+ msgid "Invoice numbers are created by a third-party extension."
1022
+ msgstr ""
1023
+
1024
+ #. translators: link
1025
+ #: includes/documents/class-wcpdf-invoice.php:442
1026
+ msgid "Configure it <a href=\"%s\">here</a>."
1027
+ msgstr ""
1028
+
1029
+ #: includes/documents/class-wcpdf-packing-slip.php:32
1030
+ #: includes/documents/class-wcpdf-packing-slip.php:41
1031
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
1032
+ msgid "Packing Slip"
1033
+ msgstr "Paketni slip"
1034
+
1035
+ #: includes/documents/class-wcpdf-packing-slip.php:47
1036
+ msgid "packing-slip"
1037
+ msgid_plural "packing-slips"
1038
+ msgstr[0] "Slip uz paket"
1039
+ msgstr[1] "Slipovi za pakete"
1040
+ msgstr[2] ""
1041
+
1042
+ #: includes/documents/class-wcpdf-packing-slip.php:99
1043
+ msgid "Display billing address"
1044
+ msgstr "Prikazati adresu za naplatu"
1045
+
1046
+ #: includes/documents/class-wcpdf-packing-slip.php:107
1047
+ msgid "Only when different from shipping address"
1048
+ msgstr ""
1049
+
1050
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1051
+ msgid "Packing Slip Number:"
1052
+ msgstr ""
1053
+
1054
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1055
+ msgid "Packing Slip Date:"
1056
+ msgstr ""
1057
+
1058
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
1059
+ msgid "Legacy Document"
1060
+ msgstr ""
1061
+
1062
+ #: includes/legacy/class-wcpdf-legacy.php:72
1063
+ msgid "Error"
1064
+ msgstr ""
1065
+
1066
+ #: includes/legacy/class-wcpdf-legacy.php:73
1067
+ msgid ""
1068
+ "An outdated template or action hook was used to generate the PDF. Legacy "
1069
+ "mode has been activated, please try again by reloading this page."
1070
+ msgstr ""
1071
+
1072
+ #: includes/legacy/class-wcpdf-legacy.php:76
1073
+ msgid "The following function was called"
1074
+ msgstr ""
1075
+
1076
+ #. translators: <a> tags
1077
+ #: includes/views/attachment-settings-hint.php:23
1078
+ msgid ""
1079
+ "It looks like you haven't setup any email attachments yet, check the "
1080
+ "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1081
+ msgstr ""
1082
+
1083
+ #: includes/views/dompdf-status.php:11
1084
+ msgid "7.1+ (7.4 or higher recommended)"
1085
+ msgstr ""
1086
+
1087
+ #: includes/views/dompdf-status.php:24
1088
+ msgid "Recommended, will use fallback functions"
1089
+ msgstr ""
1090
+
1091
+ #: includes/views/dompdf-status.php:30
1092
+ msgid "Required if you have images in your documents"
1093
+ msgstr ""
1094
+
1095
+ #: includes/views/dompdf-status.php:39
1096
+ msgid "To compress PDF documents"
1097
+ msgstr ""
1098
+
1099
+ #: includes/views/dompdf-status.php:42
1100
+ msgid "Recommended to compress PDF documents"
1101
+ msgstr ""
1102
+
1103
+ #: includes/views/dompdf-status.php:45
1104
+ msgid "For better performances"
1105
+ msgstr ""
1106
+
1107
+ #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1108
+ msgid "Recommended for better performances"
1109
+ msgstr ""
1110
+
1111
+ #: includes/views/dompdf-status.php:51
1112
+ msgid "Better with transparent PNG images"
1113
+ msgstr ""
1114
+
1115
+ #: includes/views/dompdf-status.php:57
1116
+ msgid ""
1117
+ "Required to detect custom templates and to clear the temp folder periodically"
1118
+ msgstr ""
1119
+
1120
+ #: includes/views/dompdf-status.php:60
1121
+ msgid "Check PHP disable_functions"
1122
+ msgstr ""
1123
+
1124
+ #. translators: <a> tags
1125
+ #: includes/views/dompdf-status.php:64
1126
+ msgid ""
1127
+ "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1128
+ "WordPress Memory Limit%2$s"
1129
+ msgstr ""
1130
+
1131
+ #: includes/views/dompdf-status.php:69
1132
+ msgid "Allow remote stylesheets and images"
1133
+ msgstr ""
1134
+
1135
+ #: includes/views/dompdf-status.php:72
1136
+ msgid "allow_url_fopen disabled"
1137
+ msgstr ""
1138
+
1139
+ #: includes/views/dompdf-status.php:75
1140
+ msgid "To compress and decompress font data"
1141
+ msgstr ""
1142
+
1143
+ #: includes/views/dompdf-status.php:78
1144
+ msgid "base64_decode disabled"
1145
+ msgstr ""
1146
+
1147
+ #. translators: <a> tags
1148
+ #: includes/views/dompdf-status.php:98
1149
+ msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1150
+ msgstr ""
1151
+
1152
+ #: includes/views/dompdf-status.php:103
1153
+ msgid "System Configuration"
1154
+ msgstr ""
1155
+
1156
+ #: includes/views/dompdf-status.php:108
1157
+ msgid "Required"
1158
+ msgstr ""
1159
+
1160
+ #: includes/views/dompdf-status.php:109
1161
+ msgid "Present"
1162
+ msgstr ""
1163
+
1164
+ #: includes/views/dompdf-status.php:148
1165
+ msgid "Writable"
1166
+ msgstr ""
1167
+
1168
+ #: includes/views/dompdf-status.php:149
1169
+ msgid "Not writable"
1170
+ msgstr ""
1171
+
1172
+ #: includes/views/dompdf-status.php:154
1173
+ msgid "Central temporary plugin folder"
1174
+ msgstr ""
1175
+
1176
+ #: includes/views/dompdf-status.php:160
1177
+ msgid "Temporary attachments folder"
1178
+ msgstr ""
1179
+
1180
+ #: includes/views/dompdf-status.php:166
1181
+ msgid "Temporary DOMPDF folder"
1182
+ msgstr ""
1183
+
1184
+ #: includes/views/dompdf-status.php:172
1185
+ msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1186
+ msgstr ""
1187
+
1188
+ #: includes/views/dompdf-status.php:183
1189
+ msgid "Write Permissions"
1190
+ msgstr ""
1191
+
1192
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1193
+ #: templates/Simple/packing-slip.php:88
1194
+ msgid "Description"
1195
+ msgstr "Opis"
1196
+
1197
+ #: includes/views/dompdf-status.php:187
1198
+ msgid "Value"
1199
+ msgstr ""
1200
+
1201
+ #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1202
+ #: includes/views/dompdf-status.php:213
1203
+ msgid ""
1204
+ "The central temp folder is %1$s. By default, this folder is created in the "
1205
+ "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1206
+ "config.php. Alternatively, you can control the specific folder for PDF "
1207
+ "invoices by using the %4$s filter. Make sure this folder is writable and "
1208
+ "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1209
+ "by the plugin if the central temp folder is writable)."
1210
+ msgstr ""
1211
+
1212
+ #. translators: directory path
1213
+ #: includes/views/dompdf-status.php:226
1214
+ msgid ""
1215
+ "If the temporary folders were not automatically created by the plugin, "
1216
+ "verify that all the font files (from %s) are copied to the fonts folder. "
1217
+ "Normally, this is fully automated, but if your server has strict security "
1218
+ "settings, this automated copying may have been prohibited. In that case, you "
1219
+ "also need to make sure these folders get synchronized on plugin updates!"
1220
+ msgstr ""
1221
+
1222
+ #: includes/views/setup-wizard/attach-to.php:3
1223
+ msgid "Attach too..."
1224
+ msgstr ""
1225
+
1226
+ #: includes/views/setup-wizard/attach-to.php:4
1227
+ msgid "Select to which emails you would like to attach your invoice."
1228
+ msgstr ""
1229
+
1230
+ #: includes/views/setup-wizard/display-options.php:4
1231
+ msgid "Select some additional display options for your invoice."
1232
+ msgstr ""
1233
+
1234
+ #: includes/views/setup-wizard/good-to-go.php:3
1235
+ msgid "You are good to go!"
1236
+ msgstr ""
1237
+
1238
+ #: includes/views/setup-wizard/good-to-go.php:4
1239
+ msgid "If you have any questions please have a look at our documentation:"
1240
+ msgstr ""
1241
+
1242
+ #: includes/views/setup-wizard/good-to-go.php:5
1243
+ msgid "Invoices & Packing Slips"
1244
+ msgstr ""
1245
+
1246
+ #: includes/views/setup-wizard/good-to-go.php:6
1247
+ msgid "Happy selling!"
1248
+ msgstr ""
1249
+
1250
+ #: includes/views/setup-wizard/logo.php:4
1251
+ msgid "Set the header image that will display on your invoice."
1252
+ msgstr ""
1253
+
1254
+ #: includes/views/setup-wizard/paper-format.php:4
1255
+ msgid "Select the paper format for your invoice."
1256
+ msgstr ""
1257
+
1258
+ #: includes/views/setup-wizard/shop-name.php:3
1259
+ msgid "Enter your shop name"
1260
+ msgstr ""
1261
+
1262
+ #: includes/views/setup-wizard/shop-name.php:4
1263
+ msgid ""
1264
+ "Lets quickly setup your invoice. Please enter the name and address of your "
1265
+ "shop in the fields on the right."
1266
+ msgstr ""
1267
+
1268
+ #: includes/views/setup-wizard/show-action-buttons.php:4
1269
+ msgid ""
1270
+ "Would you like to display the action buttons in your WooCommerce order list? "
1271
+ "The action buttons allow you to manually create a PDF."
1272
+ msgstr ""
1273
+
1274
+ #: includes/views/setup-wizard/show-action-buttons.php:5
1275
+ msgid "(You can always change this setting later via the Screen Options menu)"
1276
+ msgstr ""
1277
+
1278
+ #: includes/views/setup-wizard/show-action-buttons.php:18
1279
+ msgid "Show action buttons"
1280
+ msgstr ""
1281
+
1282
+ #: includes/views/wcpdf-extensions.php:16
1283
+ msgid "Check out these premium extensions!"
1284
+ msgstr "Provjerite ove premium dodatke!"
1285
+
1286
+ #: includes/views/wcpdf-extensions.php:17
1287
+ msgid "click items to read more"
1288
+ msgstr "klik na predmet za detalje"
1289
+
1290
+ #: includes/views/wcpdf-extensions.php:22
1291
+ msgid ""
1292
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1293
+ "system"
1294
+ msgstr ""
1295
+
1296
+ #: includes/views/wcpdf-extensions.php:24
1297
+ msgid ""
1298
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1299
+ "premium extensions:"
1300
+ msgstr ""
1301
+
1302
+ #: includes/views/wcpdf-extensions.php:25
1303
+ msgid "Professional features:"
1304
+ msgstr ""
1305
+
1306
+ #: includes/views/wcpdf-extensions.php:27
1307
+ #: includes/views/wcpdf-extensions.php:57
1308
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1309
+ msgstr ""
1310
+ "E-mail/Ispis/Preuzimanje <b>PDF Kreditne bilješke & Proforma Računa</b>"
1311
+
1312
+ #: includes/views/wcpdf-extensions.php:28
1313
+ #: includes/views/wcpdf-extensions.php:58
1314
+ msgid ""
1315
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1316
+ "packing slips, for example to a drop-shipper or a supplier."
1317
+ msgstr ""
1318
+ "Pošalji odvojeni <b>E-mail obavijest</b> sa (ili bez) PDF računa/paketnih "
1319
+ "slipova, za primjer dostavljaču ili "
1320
+
1321
+ #: includes/views/wcpdf-extensions.php:29
1322
+ #: includes/views/wcpdf-extensions.php:59
1323
+ msgid ""
1324
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1325
+ "document) to the WooCommerce emails of your choice."
1326
+ msgstr ""
1327
+ "Dodajte <b> do 3 statične datoteke</b> (Npr. dokument Uvjeti poslovanja) u "
1328
+ "WooCommerce e-mail poruke po vašem izboru"
1329
+
1330
+ #: includes/views/wcpdf-extensions.php:30
1331
+ #: includes/views/wcpdf-extensions.php:60
1332
+ msgid ""
1333
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1334
+ "and credit notes or utilize the main invoice numbering system"
1335
+ msgstr ""
1336
+ "Korištenje <b>odvojenih sustava knjiženja</b> i/ili formata za proforma "
1337
+ "račune i kreditne bilješke ili primjena glavnog računskog sustava knjiženja"
1338
+
1339
+ #: includes/views/wcpdf-extensions.php:31
1340
+ #: includes/views/wcpdf-extensions.php:61
1341
+ msgid ""
1342
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1343
+ "additional custom fields, font sizes etc. without the need to create a "
1344
+ "custom template."
1345
+ msgstr ""
1346
+ "<b>Uredite</b> format <b>adrese za dostavu i naplatu</b> kako bi dodali "
1347
+ "dodatna prilagođena polja, veličine fonta i sl. bez potrebe za izradom novog "
1348
+ "predloška. "
1349
+
1350
+ #: includes/views/wcpdf-extensions.php:32
1351
+ #: includes/views/wcpdf-extensions.php:62
1352
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1353
+ msgstr "Koristite dodatak u višejezičnom <b>WPML</b> postavkama"
1354
+
1355
+ #: includes/views/wcpdf-extensions.php:34
1356
+ #: includes/views/wcpdf-extensions.php:114
1357
+ msgid "Advanced, customizable templates"
1358
+ msgstr "Napredni, prilagodljivi predlošci"
1359
+
1360
+ #: includes/views/wcpdf-extensions.php:36
1361
+ #: includes/views/wcpdf-extensions.php:117
1362
+ msgid ""
1363
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1364
+ "your needs with a drag & drop customizer"
1365
+ msgstr ""
1366
+ "Potpuna prilagodba sadržaja računa (cijene, porezi, umanjene slike) vašim "
1367
+ "potrebamakorištenjem povuci & ispusti uređivača"
1368
+
1369
+ #: includes/views/wcpdf-extensions.php:37
1370
+ #: includes/views/wcpdf-extensions.php:118
1371
+ msgid "Two extra stylish premade templates (Modern & Business)"
1372
+ msgstr "Dva vrlo stilizirana pripremljena predloška (Moderni & Poslovni)"
1373
+
1374
+ #: includes/views/wcpdf-extensions.php:39
1375
+ #: includes/views/wcpdf-extensions.php:63
1376
+ msgid "Upload automatically to dropbox"
1377
+ msgstr ""
1378
+
1379
+ #: includes/views/wcpdf-extensions.php:41
1380
+ msgid ""
1381
+ "This extension conveniently uploads all the invoices (and other pdf "
1382
+ "documents from the professional extension) that are emailed to your "
1383
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1384
+ "date!"
1385
+ msgstr ""
1386
+ "Ovo proširenje pouzdano prenosi sve račune ( i druge PDF dokumente s "
1387
+ "profesionalnog proširenja) koja su poslana e-mailom vašim klijentima, "
1388
+ "izravno na Dropbox. Najbolji način za održavanje vaše administracije računa "
1389
+ "preglednim i ažurnim."
1390
+
1391
+ #: includes/views/wcpdf-extensions.php:44
1392
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1393
+ msgstr ""
1394
+
1395
+ #: includes/views/wcpdf-extensions.php:53
1396
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1397
+ msgstr ""
1398
+ "Idemo na PRO: Proforma računi, kreditne bilješke (=povrat sredstava) i više!"
1399
+
1400
+ #: includes/views/wcpdf-extensions.php:55
1401
+ msgid ""
1402
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1403
+ "features:"
1404
+ msgstr ""
1405
+ "SuperCharge-ajte WooCommerce PDF Računi i Paketni Slipovi dodatak sa "
1406
+ "slijedećim mogućnostima:"
1407
+
1408
+ #: includes/views/wcpdf-extensions.php:65
1409
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1410
+ msgstr "Pribavite WooCmmerce Računi & Paketni slipovi Profesionalnu verziju!"
1411
+
1412
+ #: includes/views/wcpdf-extensions.php:73
1413
+ msgid "Automatically send payment reminders to your customers"
1414
+ msgstr ""
1415
+
1416
+ #: includes/views/wcpdf-extensions.php:75
1417
+ msgid "WooCommerce Smart Reminder emails"
1418
+ msgstr ""
1419
+
1420
+ #: includes/views/wcpdf-extensions.php:77
1421
+ msgid "<b>Completely automatic</b> scheduled emails"
1422
+ msgstr ""
1423
+
1424
+ #: includes/views/wcpdf-extensions.php:78
1425
+ msgid ""
1426
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1427
+ "from the order (name, order total, etc)"
1428
+ msgstr ""
1429
+
1430
+ #: includes/views/wcpdf-extensions.php:79
1431
+ msgid ""
1432
+ "Configure the exact requirements for sending an email (time after order, "
1433
+ "order status, payment method)"
1434
+ msgstr ""
1435
+
1436
+ #: includes/views/wcpdf-extensions.php:80
1437
+ msgid ""
1438
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1439
+ "order language."
1440
+ msgstr ""
1441
+
1442
+ #: includes/views/wcpdf-extensions.php:81
1443
+ msgid ""
1444
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1445
+ "reminders, repeat purchases)"
1446
+ msgstr ""
1447
+
1448
+ #: includes/views/wcpdf-extensions.php:82
1449
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1450
+ msgstr ""
1451
+
1452
+ #: includes/views/wcpdf-extensions.php:84
1453
+ msgid "Get WooCommerce Smart Reminder Emails"
1454
+ msgstr ""
1455
+
1456
+ #: includes/views/wcpdf-extensions.php:93
1457
+ msgid ""
1458
+ "Automatically send new orders or packing slips to your printer, as soon as "
1459
+ "the customer orders!"
1460
+ msgstr ""
1461
+ "AUtomatski pošalji nove narudžbe ili pakente slipove na vaš printer, u "
1462
+ "trenutku kada klijent izvši narudžbu!"
1463
+
1464
+ #: includes/views/wcpdf-extensions.php:99
1465
+ msgid ""
1466
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1467
+ "partners at Simba Hosting"
1468
+ msgstr ""
1469
+ "Provjerite WooCommerce dodatak ispis Automatske Narudžbe izrađen od strane "
1470
+ "naših partnera @ Simba Hosting"
1471
+
1472
+ #: includes/views/wcpdf-extensions.php:100
1473
+ msgid "WooCommerce Automatic Order Printing"
1474
+ msgstr "WooCOmmerce Ispis Automatske narudžbe"
1475
+
1476
+ #. translators: Premium Templates link
1477
+ #: includes/views/wcpdf-extensions.php:120
1478
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1479
+ msgstr "Provjerite Premium PDF Računi & Slipovi paketa predloške na %s."
1480
+
1481
+ #. translators: email link
1482
+ #: includes/views/wcpdf-extensions.php:122
1483
+ msgid "For custom templates, contact us at %s."
1484
+ msgstr "Za prilagođene teme, kontaktirajte nas na %s."
1485
+
1486
+ #: includes/views/wcpdf-settings-page.php:9
1487
+ msgid "WooCommerce PDF Invoices"
1488
+ msgstr "Woocommerce PDF Računi"
1489
+
1490
+ #: includes/wcpdf-functions.php:209
1491
+ msgid "Error creating PDF, please contact the site owner."
1492
+ msgstr ""
1493
+
1494
+ #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1495
+ msgid "Billing Address:"
1496
+ msgstr "Adresa za naplatu:"
1497
+
1498
+ #: templates/Simple/invoice.php:48
1499
+ msgid "Ship To:"
1500
+ msgstr "Dostava na:"
1501
+
1502
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1503
+ msgid "Order Number:"
1504
+ msgstr "Broj narudžbe"
1505
+
1506
+ #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1507
+ msgid "Order Date:"
1508
+ msgstr "Datum narudžbe:"
1509
+
1510
+ #: templates/Simple/invoice.php:78
1511
+ msgid "Payment Method:"
1512
+ msgstr "Metoda Plaćanja:"
1513
+
1514
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1515
+ msgid "Product"
1516
+ msgstr "Proizvod"
1517
+
1518
+ #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1519
+ msgid "Quantity"
1520
+ msgstr "Količina"
1521
+
1522
+ #: templates/Simple/invoice.php:94
1523
+ msgid "Price"
1524
+ msgstr "CIjena"
1525
+
1526
+ #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1527
+ msgid "SKU"
1528
+ msgstr "Broj artikla:"
1529
+
1530
+ #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1531
+ msgid "SKU:"
1532
+ msgstr "Broj Artikla:"
1533
+
1534
+ #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1535
+ msgid "Weight:"
1536
+ msgstr "Težina"
1537
+
1538
+ #: templates/Simple/invoice.php:123
1539
+ msgid "Notes"
1540
+ msgstr ""
1541
+
1542
+ #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1543
+ msgid "Customer Notes"
1544
+ msgstr "Bilješke klijenta"
1545
+
1546
+ #: templates/Simple/packing-slip.php:35
1547
+ msgid "Shipping Address:"
1548
+ msgstr "Adresa za dostavu:"
1549
+
1550
+ #: templates/Simple/packing-slip.php:66
1551
+ msgid "Shipping Method:"
1552
+ msgstr "Metoda dostave:"
1553
+
1554
+ #. translators: <a> tags
1555
+ #: woocommerce-pdf-invoices-packingslips.php:271
1556
+ msgid ""
1557
+ "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1558
+ "installed & activated!"
1559
+ msgstr ""
1560
+
1561
+ #: woocommerce-pdf-invoices-packingslips.php:282
1562
+ msgid ""
1563
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1564
+ "recommended)."
1565
+ msgstr ""
1566
+
1567
+ #. translators: <a> tags
1568
+ #: woocommerce-pdf-invoices-packingslips.php:284
1569
+ msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1570
+ msgstr ""
1571
+
1572
+ #. translators: <a> tags
1573
+ #: woocommerce-pdf-invoices-packingslips.php:286
1574
+ msgid ""
1575
+ "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1576
+ "to enable backwards compatibility with PHP5.6."
1577
+ msgstr ""
1578
+
1579
+ #. translators: directory path
1580
+ #: woocommerce-pdf-invoices-packingslips.php:374
1581
+ msgid ""
1582
+ "The PDF files in %s are not currently protected due to your site running on "
1583
+ "<strong>NGINX</strong>."
1584
+ msgstr ""
1585
+
1586
+ #: woocommerce-pdf-invoices-packingslips.php:375
1587
+ msgid "To protect them, you must click the button below."
1588
+ msgstr ""
1589
+
1590
+ #. translators: plugin name
1591
+ #: woocommerce-pdf-invoices-packingslips.php:419
1592
+ msgid ""
1593
+ "When sending emails with MailPoet 3 and the active sending method is "
1594
+ "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1595
+ "the emails."
1596
+ msgstr ""
1597
+
1598
+ #. translators: "Your web host / web server"
1599
+ #: woocommerce-pdf-invoices-packingslips.php:421
1600
+ msgid "To fix this you should select other method like %1$s or %2$s."
1601
+ msgstr ""
1602
+
1603
+ #. translators: "Your web host / web server"
1604
+ #: woocommerce-pdf-invoices-packingslips.php:421
1605
+ msgid "Your web host / web server"
1606
+ msgstr ""
1607
+
1608
+ #: woocommerce-pdf-invoices-packingslips.php:422
1609
+ msgid "Change MailPoet sending method"
1610
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-hu_HU.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-hu_HU.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
  "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-06-30T03:08:00+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:22+0200\n"
8
  "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
  "Language-Team: \n"
10
  "Language: hu_HU\n"
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Yes you deserve it!"
52
  msgstr ""
53
 
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
  #: includes/views/attachment-settings-hint.php:24
56
  #: includes/views/wcpdf-extensions.php:131
57
  #: woocommerce-pdf-invoices-packingslips.php:377
@@ -83,7 +83,7 @@ msgstr ""
83
  msgid "I am the wizard"
84
  msgstr ""
85
 
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
  #: includes/documents/class-wcpdf-invoice.php:302
88
  msgid "Invoice Number"
89
  msgstr ""
@@ -112,11 +112,13 @@ msgstr ""
112
  msgid "Send email"
113
  msgstr ""
114
 
115
- #: includes/class-wcpdf-admin.php:378 templates/Simple/invoice.php:59
 
116
  msgid "Invoice Number:"
117
  msgstr ""
118
 
119
- #: includes/class-wcpdf-admin.php:381 templates/Simple/invoice.php:65
 
120
  msgid "Invoice Date:"
121
  msgstr ""
122
 
@@ -203,82 +205,82 @@ msgstr ""
203
  msgid "DEBUG output enabled"
204
  msgstr ""
205
 
206
- #: includes/class-wcpdf-assets.php:91
207
  msgid "Are you sure you want to delete this document? This cannot be undone."
208
  msgstr ""
209
 
210
- #: includes/class-wcpdf-assets.php:92
211
  msgid ""
212
  "Are you sure you want to regenerate this document? This will make the "
213
  "document reflect the most current settings (such as footer text, document "
214
  "name, etc.) rather than using historical settings."
215
  msgstr ""
216
 
217
- #: includes/class-wcpdf-frontend.php:126
218
  msgid "Download invoice (PDF)"
219
  msgstr "Számla letöltése (PDF)"
220
 
221
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
222
- #: includes/class-wcpdf-main.php:338
223
  msgid "You do not have sufficient permissions to access this page."
224
  msgstr "Önnek nincs megfelelő jogosultsága az oldal eléréséhez."
225
 
226
- #: includes/class-wcpdf-main.php:275
227
  msgid "You haven't selected any orders"
228
  msgstr ""
229
 
230
- #: includes/class-wcpdf-main.php:279
231
  msgid "Some of the export parameters are missing."
232
  msgstr ""
233
 
234
  #. translators: document type
235
- #: includes/class-wcpdf-main.php:379
236
  msgid "Document of type '%s' for the selected order(s) could not be generated"
237
  msgstr ""
238
 
239
  #. translators: 1. plugin name, 2. directory path
240
- #: includes/class-wcpdf-main.php:591
241
  msgid "The %1$s directory %2$s couldn't be created or is not writable!"
242
  msgstr ""
243
 
244
- #: includes/class-wcpdf-main.php:592
245
  msgid ""
246
  "Please check your directories write permissions or contact your hosting "
247
  "service provider."
248
  msgstr ""
249
 
250
- #: includes/class-wcpdf-main.php:907
251
  #: includes/documents/class-wcpdf-invoice.php:286
252
  msgid "Invoice Date"
253
  msgstr ""
254
 
255
  #. translators: name/description of the context for document creation logs
256
- #: includes/class-wcpdf-main.php:937
257
  msgid "bulk order action"
258
  msgstr ""
259
 
260
  #. translators: name/description of the context for document creation logs
261
- #: includes/class-wcpdf-main.php:945
262
  msgid "single order action"
263
  msgstr ""
264
 
265
  #. translators: name/description of the context for document creation logs
266
- #: includes/class-wcpdf-main.php:953
267
  msgid "my account"
268
  msgstr ""
269
 
270
  #. translators: name/description of the context for document creation logs
271
- #: includes/class-wcpdf-main.php:961
272
  msgid "email attachment"
273
  msgstr ""
274
 
275
  #. translators: 1. document title, 2. creation source
276
- #: includes/class-wcpdf-main.php:970
277
  msgid "PDF %1$s created via %2$s."
278
  msgstr ""
279
 
280
  #. translators: document title
281
- #: includes/class-wcpdf-main.php:1006
282
  msgid "Order %s Saved"
283
  msgstr ""
284
 
@@ -297,11 +299,11 @@ msgstr ""
297
  "Ezek a lábléc (opcionális) oszlopok a <em>Modern (Premium)</em> sablonban "
298
  "használatosak, de használhatja más elemeknek is az egyéni sablonjában. "
299
 
300
- #: includes/class-wcpdf-settings-callbacks.php:383
301
  msgid "Image resolution"
302
  msgstr "Kép felbontás"
303
 
304
- #: includes/class-wcpdf-settings-callbacks.php:410
305
  msgid "Save"
306
  msgstr ""
307
 
@@ -470,7 +472,7 @@ msgid "Log PDF document creation to order notes."
470
  msgstr ""
471
 
472
  #: includes/class-wcpdf-settings-documents.php:30
473
- #: includes/class-wcpdf-settings.php:97
474
  msgid "Documents"
475
  msgstr ""
476
 
@@ -592,7 +594,7 @@ msgid ""
592
  msgstr ""
593
 
594
  #: includes/class-wcpdf-settings-general.php:155
595
- #: includes/class-wcpdf-setup-wizard.php:47
596
  msgid "Shop Name"
597
  msgstr "Bolt neve"
598
 
@@ -632,20 +634,24 @@ msgstr "Extra mező 3"
632
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
633
  msgstr "Ez a lábléc oszlop 3 a <i>Modern (Premium)</i> sablonban."
634
 
635
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
 
 
 
 
636
  msgid "PDF Invoices"
637
  msgstr "PDF számlák"
638
 
639
- #: includes/class-wcpdf-settings.php:74
640
  msgid "Documentation"
641
  msgstr ""
642
 
643
- #: includes/class-wcpdf-settings.php:75
644
  msgid "Support Forum"
645
  msgstr ""
646
 
647
  #. translators: database row value
648
- #: includes/class-wcpdf-settings.php:88
649
  msgid ""
650
  "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
651
  "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
@@ -653,59 +659,64 @@ msgid ""
653
  "method."
654
  msgstr ""
655
 
656
- #: includes/class-wcpdf-settings.php:96
657
  msgid "General"
658
  msgstr "Általános"
659
 
660
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
661
  msgid "Status"
662
  msgstr ""
663
 
664
- #: includes/class-wcpdf-setup-wizard.php:51
 
 
 
 
 
665
  #: includes/views/setup-wizard/logo.php:3
666
  msgid "Your logo"
667
  msgstr ""
668
 
669
- #: includes/class-wcpdf-setup-wizard.php:55
670
  msgid "Attachments"
671
  msgstr ""
672
 
673
- #: includes/class-wcpdf-setup-wizard.php:59
674
  #: includes/views/setup-wizard/display-options.php:3
675
  msgid "Display options"
676
  msgstr ""
677
 
678
- #: includes/class-wcpdf-setup-wizard.php:63
679
  #: includes/views/setup-wizard/paper-format.php:3
680
  msgid "Paper format"
681
  msgstr ""
682
 
683
- #: includes/class-wcpdf-setup-wizard.php:67
684
  #: includes/views/setup-wizard/show-action-buttons.php:3
685
  msgid "Action buttons"
686
  msgstr ""
687
 
688
- #: includes/class-wcpdf-setup-wizard.php:71
689
  msgid "Ready!"
690
  msgstr ""
691
 
692
- #: includes/class-wcpdf-setup-wizard.php:133
693
  msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
694
  msgstr ""
695
 
696
- #: includes/class-wcpdf-setup-wizard.php:185
697
  msgid "Previous"
698
  msgstr ""
699
 
700
- #: includes/class-wcpdf-setup-wizard.php:190
701
  msgid "Next"
702
  msgstr ""
703
 
704
- #: includes/class-wcpdf-setup-wizard.php:191
705
  msgid "Skip this step"
706
  msgstr ""
707
 
708
- #: includes/class-wcpdf-setup-wizard.php:193
709
  msgid "Finish"
710
  msgstr ""
711
 
@@ -760,11 +771,21 @@ msgstr ""
760
  msgid "%s was regenerated"
761
  msgstr ""
762
 
763
- #: includes/documents/abstract-wcpdf-order-document.php:879
 
 
 
 
 
 
 
 
 
 
764
  msgid "Admin email"
765
  msgstr ""
766
 
767
- #: includes/documents/abstract-wcpdf-order-document.php:882
768
  msgid "Manual email"
769
  msgstr ""
770
 
@@ -1006,6 +1027,14 @@ msgstr ""
1006
  msgid "Only when different from shipping address"
1007
  msgstr ""
1008
 
 
 
 
 
 
 
 
 
1009
  #: includes/legacy/class-wcpdf-legacy-document.php:32
1010
  msgid "Legacy Document"
1011
  msgstr ""
@@ -1087,62 +1116,70 @@ msgstr ""
1087
  msgid "allow_url_fopen disabled"
1088
  msgstr ""
1089
 
 
 
 
 
 
 
 
 
1090
  #. translators: <a> tags
1091
- #: includes/views/dompdf-status.php:92
1092
  msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1093
  msgstr ""
1094
 
1095
- #: includes/views/dompdf-status.php:97
1096
  msgid "System Configuration"
1097
  msgstr ""
1098
 
1099
- #: includes/views/dompdf-status.php:102
1100
  msgid "Required"
1101
  msgstr ""
1102
 
1103
- #: includes/views/dompdf-status.php:103
1104
  msgid "Present"
1105
  msgstr ""
1106
 
1107
- #: includes/views/dompdf-status.php:142
1108
  msgid "Writable"
1109
  msgstr ""
1110
 
1111
- #: includes/views/dompdf-status.php:143
1112
  msgid "Not writable"
1113
  msgstr ""
1114
 
1115
- #: includes/views/dompdf-status.php:148
1116
  msgid "Central temporary plugin folder"
1117
  msgstr ""
1118
 
1119
- #: includes/views/dompdf-status.php:154
1120
  msgid "Temporary attachments folder"
1121
  msgstr ""
1122
 
1123
- #: includes/views/dompdf-status.php:160
1124
  msgid "Temporary DOMPDF folder"
1125
  msgstr ""
1126
 
1127
- #: includes/views/dompdf-status.php:166
1128
  msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1129
  msgstr ""
1130
 
1131
- #: includes/views/dompdf-status.php:177
1132
  msgid "Write Permissions"
1133
  msgstr ""
1134
 
1135
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1136
  #: templates/Simple/packing-slip.php:88
1137
  msgid "Description"
1138
  msgstr ""
1139
 
1140
- #: includes/views/dompdf-status.php:181
1141
  msgid "Value"
1142
  msgstr ""
1143
 
1144
  #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1145
- #: includes/views/dompdf-status.php:207
1146
  msgid ""
1147
  "The central temp folder is %1$s. By default, this folder is created in the "
1148
  "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
@@ -1153,7 +1190,7 @@ msgid ""
1153
  msgstr ""
1154
 
1155
  #. translators: directory path
1156
- #: includes/views/dompdf-status.php:220
1157
  msgid ""
1158
  "If the temporary folders were not automatically created by the plugin, "
1159
  "verify that all the font files (from %s) are copied to the fonts folder. "
@@ -1528,67 +1565,3 @@ msgstr ""
1528
  #: woocommerce-pdf-invoices-packingslips.php:422
1529
  msgid "Change MailPoet sending method"
1530
  msgstr ""
1531
-
1532
- #~ msgid "Settings"
1533
- #~ msgstr "Beállítások"
1534
-
1535
- #, php-format
1536
- #~ msgid ""
1537
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1538
- #~ "installed & activated!"
1539
- #~ msgstr ""
1540
- #~ "WooCommerce PDF Invoices & Packing Slipsnek szüksége van az telepített és "
1541
- #~ "bekapcsolt %sWooCommerce%s pluginra."
1542
-
1543
- #~ msgid "Template"
1544
- #~ msgstr "Sablon"
1545
-
1546
- #~ msgid ""
1547
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
1548
- #~ "Packing Slips templates at %s."
1549
- #~ msgstr ""
1550
- #~ "Fejlettebb sablonokat keres? Nézze meg a Premium PDF Invoice & Packing "
1551
- #~ "Slips sablonokat a %s-on. "
1552
-
1553
- #, fuzzy
1554
- #~ msgid "Customer Invoice email"
1555
- #~ msgstr "Vásárlói megjegyzések"
1556
-
1557
- #~ msgid "PDF Template settings"
1558
- #~ msgstr "PDF sablon beállítások"
1559
-
1560
- #~ msgid ""
1561
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1562
- #~ "<code>%s</code> to customize them"
1563
- #~ msgstr ""
1564
- #~ "Saját sablont szeretne használni? Másolja az összes fájlt a <code>%s</"
1565
- #~ "code> könyvtárból a <code>%s</code> könyvtárba a módosításhoz."
1566
-
1567
- #, fuzzy
1568
- #~ msgid "WooCommerce order number"
1569
- #~ msgstr "WooCommerce PDF számlák"
1570
-
1571
- #, fuzzy
1572
- #~ msgid "Order date"
1573
- #~ msgstr "Rendelés dátuma:"
1574
-
1575
- #, fuzzy
1576
- #~ msgid "Invoice date"
1577
- #~ msgstr "Számla"
1578
-
1579
- #~ msgid "PDF invoice"
1580
- #~ msgstr "PDF számla"
1581
-
1582
- #~ msgid "PDF Packing Slip"
1583
- #~ msgstr "PDF szállítólevél"
1584
-
1585
- #~ msgid "PDF Packing Slips"
1586
- #~ msgstr "PDF szállítólevelet"
1587
-
1588
- #~ msgid "..."
1589
- #~ msgstr "..."
1590
-
1591
- #~ msgid "Email invoice (attach to order confirmation or invoice email)"
1592
- #~ msgstr ""
1593
- #~ "Számla küldése emailban (csatolja a rendelési vagy a teljesítési "
1594
- #~ "igazoláshoz)"
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
  "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:23-0400\n"
8
  "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
  "Language-Team: \n"
10
  "Language: hu_HU\n"
51
  msgid "Yes you deserve it!"
52
  msgstr ""
53
 
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
  #: includes/views/attachment-settings-hint.php:24
56
  #: includes/views/wcpdf-extensions.php:131
57
  #: woocommerce-pdf-invoices-packingslips.php:377
83
  msgid "I am the wizard"
84
  msgstr ""
85
 
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
  #: includes/documents/class-wcpdf-invoice.php:302
88
  msgid "Invoice Number"
89
  msgstr ""
112
  msgid "Send email"
113
  msgstr ""
114
 
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
  msgid "Invoice Number:"
118
  msgstr ""
119
 
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
  msgid "Invoice Date:"
123
  msgstr ""
124
 
205
  msgid "DEBUG output enabled"
206
  msgstr ""
207
 
208
+ #: includes/class-wcpdf-assets.php:94
209
  msgid "Are you sure you want to delete this document? This cannot be undone."
210
  msgstr ""
211
 
212
+ #: includes/class-wcpdf-assets.php:95
213
  msgid ""
214
  "Are you sure you want to regenerate this document? This will make the "
215
  "document reflect the most current settings (such as footer text, document "
216
  "name, etc.) rather than using historical settings."
217
  msgstr ""
218
 
219
+ #: includes/class-wcpdf-frontend.php:129
220
  msgid "Download invoice (PDF)"
221
  msgstr "Számla letöltése (PDF)"
222
 
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
  msgid "You do not have sufficient permissions to access this page."
226
  msgstr "Önnek nincs megfelelő jogosultsága az oldal eléréséhez."
227
 
228
+ #: includes/class-wcpdf-main.php:272
229
  msgid "You haven't selected any orders"
230
  msgstr ""
231
 
232
+ #: includes/class-wcpdf-main.php:276
233
  msgid "Some of the export parameters are missing."
234
  msgstr ""
235
 
236
  #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
  msgid "Document of type '%s' for the selected order(s) could not be generated"
239
  msgstr ""
240
 
241
  #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
  msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
  msgstr ""
245
 
246
+ #: includes/class-wcpdf-main.php:604
247
  msgid ""
248
  "Please check your directories write permissions or contact your hosting "
249
  "service provider."
250
  msgstr ""
251
 
252
+ #: includes/class-wcpdf-main.php:919
253
  #: includes/documents/class-wcpdf-invoice.php:286
254
  msgid "Invoice Date"
255
  msgstr ""
256
 
257
  #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
  msgid "bulk order action"
260
  msgstr ""
261
 
262
  #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
  msgid "single order action"
265
  msgstr ""
266
 
267
  #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
  msgid "my account"
270
  msgstr ""
271
 
272
  #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
  msgid "email attachment"
275
  msgstr ""
276
 
277
  #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
  msgid "PDF %1$s created via %2$s."
280
  msgstr ""
281
 
282
  #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
  msgid "Order %s Saved"
285
  msgstr ""
286
 
299
  "Ezek a lábléc (opcionális) oszlopok a <em>Modern (Premium)</em> sablonban "
300
  "használatosak, de használhatja más elemeknek is az egyéni sablonjában. "
301
 
302
+ #: includes/class-wcpdf-settings-callbacks.php:384
303
  msgid "Image resolution"
304
  msgstr "Kép felbontás"
305
 
306
+ #: includes/class-wcpdf-settings-callbacks.php:411
307
  msgid "Save"
308
  msgstr ""
309
 
472
  msgstr ""
473
 
474
  #: includes/class-wcpdf-settings-documents.php:30
475
+ #: includes/class-wcpdf-settings.php:104
476
  msgid "Documents"
477
  msgstr ""
478
 
594
  msgstr ""
595
 
596
  #: includes/class-wcpdf-settings-general.php:155
597
+ #: includes/class-wcpdf-setup-wizard.php:49
598
  msgid "Shop Name"
599
  msgstr "Bolt neve"
600
 
634
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
635
  msgstr "Ez a lábléc oszlop 3 a <i>Modern (Premium)</i> sablonban."
636
 
637
+ #: includes/class-wcpdf-settings-general.php:290
638
+ msgid "Custom"
639
+ msgstr ""
640
+
641
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
642
  msgid "PDF Invoices"
643
  msgstr "PDF számlák"
644
 
645
+ #: includes/class-wcpdf-settings.php:81
646
  msgid "Documentation"
647
  msgstr ""
648
 
649
+ #: includes/class-wcpdf-settings.php:82
650
  msgid "Support Forum"
651
  msgstr ""
652
 
653
  #. translators: database row value
654
+ #: includes/class-wcpdf-settings.php:95
655
  msgid ""
656
  "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
657
  "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
659
  "method."
660
  msgstr ""
661
 
662
+ #: includes/class-wcpdf-settings.php:103
663
  msgid "General"
664
  msgstr "Általános"
665
 
666
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
667
  msgid "Status"
668
  msgstr ""
669
 
670
+ #. translators: 1. path, 2. template ID
671
+ #: includes/class-wcpdf-settings.php:396
672
+ msgid "Template setting migrated from %1$s to %2$s"
673
+ msgstr ""
674
+
675
+ #: includes/class-wcpdf-setup-wizard.php:53
676
  #: includes/views/setup-wizard/logo.php:3
677
  msgid "Your logo"
678
  msgstr ""
679
 
680
+ #: includes/class-wcpdf-setup-wizard.php:57
681
  msgid "Attachments"
682
  msgstr ""
683
 
684
+ #: includes/class-wcpdf-setup-wizard.php:61
685
  #: includes/views/setup-wizard/display-options.php:3
686
  msgid "Display options"
687
  msgstr ""
688
 
689
+ #: includes/class-wcpdf-setup-wizard.php:65
690
  #: includes/views/setup-wizard/paper-format.php:3
691
  msgid "Paper format"
692
  msgstr ""
693
 
694
+ #: includes/class-wcpdf-setup-wizard.php:69
695
  #: includes/views/setup-wizard/show-action-buttons.php:3
696
  msgid "Action buttons"
697
  msgstr ""
698
 
699
+ #: includes/class-wcpdf-setup-wizard.php:73
700
  msgid "Ready!"
701
  msgstr ""
702
 
703
+ #: includes/class-wcpdf-setup-wizard.php:135
704
  msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
705
  msgstr ""
706
 
707
+ #: includes/class-wcpdf-setup-wizard.php:187
708
  msgid "Previous"
709
  msgstr ""
710
 
711
+ #: includes/class-wcpdf-setup-wizard.php:192
712
  msgid "Next"
713
  msgstr ""
714
 
715
+ #: includes/class-wcpdf-setup-wizard.php:193
716
  msgid "Skip this step"
717
  msgstr ""
718
 
719
+ #: includes/class-wcpdf-setup-wizard.php:195
720
  msgid "Finish"
721
  msgstr ""
722
 
771
  msgid "%s was regenerated"
772
  msgstr ""
773
 
774
+ #. translators: %s: document name
775
+ #: includes/documents/abstract-wcpdf-order-document.php:422
776
+ msgid "%s Number:"
777
+ msgstr ""
778
+
779
+ #. translators: %s: document name
780
+ #: includes/documents/abstract-wcpdf-order-document.php:428
781
+ msgid "%s Date:"
782
+ msgstr ""
783
+
784
+ #: includes/documents/abstract-wcpdf-order-document.php:904
785
  msgid "Admin email"
786
  msgstr ""
787
 
788
+ #: includes/documents/abstract-wcpdf-order-document.php:907
789
  msgid "Manual email"
790
  msgstr ""
791
 
1027
  msgid "Only when different from shipping address"
1028
  msgstr ""
1029
 
1030
+ #: includes/documents/class-wcpdf-packing-slip.php:162
1031
+ msgid "Packing Slip Number:"
1032
+ msgstr ""
1033
+
1034
+ #: includes/documents/class-wcpdf-packing-slip.php:170
1035
+ msgid "Packing Slip Date:"
1036
+ msgstr ""
1037
+
1038
  #: includes/legacy/class-wcpdf-legacy-document.php:32
1039
  msgid "Legacy Document"
1040
  msgstr ""
1116
  msgid "allow_url_fopen disabled"
1117
  msgstr ""
1118
 
1119
+ #: includes/views/dompdf-status.php:75
1120
+ msgid "To compress and decompress font data"
1121
+ msgstr ""
1122
+
1123
+ #: includes/views/dompdf-status.php:78
1124
+ msgid "base64_decode disabled"
1125
+ msgstr ""
1126
+
1127
  #. translators: <a> tags
1128
+ #: includes/views/dompdf-status.php:98
1129
  msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1130
  msgstr ""
1131
 
1132
+ #: includes/views/dompdf-status.php:103
1133
  msgid "System Configuration"
1134
  msgstr ""
1135
 
1136
+ #: includes/views/dompdf-status.php:108
1137
  msgid "Required"
1138
  msgstr ""
1139
 
1140
+ #: includes/views/dompdf-status.php:109
1141
  msgid "Present"
1142
  msgstr ""
1143
 
1144
+ #: includes/views/dompdf-status.php:148
1145
  msgid "Writable"
1146
  msgstr ""
1147
 
1148
+ #: includes/views/dompdf-status.php:149
1149
  msgid "Not writable"
1150
  msgstr ""
1151
 
1152
+ #: includes/views/dompdf-status.php:154
1153
  msgid "Central temporary plugin folder"
1154
  msgstr ""
1155
 
1156
+ #: includes/views/dompdf-status.php:160
1157
  msgid "Temporary attachments folder"
1158
  msgstr ""
1159
 
1160
+ #: includes/views/dompdf-status.php:166
1161
  msgid "Temporary DOMPDF folder"
1162
  msgstr ""
1163
 
1164
+ #: includes/views/dompdf-status.php:172
1165
  msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1166
  msgstr ""
1167
 
1168
+ #: includes/views/dompdf-status.php:183
1169
  msgid "Write Permissions"
1170
  msgstr ""
1171
 
1172
+ #: includes/views/dompdf-status.php:186 templates/Simple/invoice.php:101
1173
  #: templates/Simple/packing-slip.php:88
1174
  msgid "Description"
1175
  msgstr ""
1176
 
1177
+ #: includes/views/dompdf-status.php:187
1178
  msgid "Value"
1179
  msgstr ""
1180
 
1181
  #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1182
+ #: includes/views/dompdf-status.php:213
1183
  msgid ""
1184
  "The central temp folder is %1$s. By default, this folder is created in the "
1185
  "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1190
  msgstr ""
1191
 
1192
  #. translators: directory path
1193
+ #: includes/views/dompdf-status.php:226
1194
  msgid ""
1195
  "If the temporary folders were not automatically created by the plugin, "
1196
  "verify that all the font files (from %s) are copied to the fonts folder. "
1565
  #: woocommerce-pdf-invoices-packingslips.php:422
1566
  msgid "Change MailPoet sending method"
1567
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-id_ID.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-id_ID.po CHANGED
@@ -1,1725 +1,1596 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
- "invoices-packing-slips\n"
6
- "POT-Creation-Date: 2021-07-26T15:06:25+00:00\n"
7
- "PO-Revision-Date: 2021-07-26 17:22+0200\n"
8
- "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
- "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
10
- "Language: id_ID\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 3.0\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Plural-Forms: nplurals=1; plural=0;\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #. Plugin Name of the plugin
22
- msgid "WooCommerce PDF Invoices & Packing Slips"
23
- msgstr "WooCommerce PDF Invoices & Packing Slips"
24
-
25
- #. Plugin URI of the plugin
26
- #. Author URI of the plugin
27
- msgid "http://www.wpovernight.com"
28
- msgstr "http://www.wpovernight.com"
29
-
30
- #. Description of the plugin
31
- msgid ""
32
- "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
- msgstr ""
34
-
35
- #. Author of the plugin
36
- msgid "Ewout Fernhout"
37
- msgstr "Ewout Fernhout"
38
-
39
- #. translators: rounded count
40
- #: includes/class-wcpdf-admin.php:92
41
- msgid "Wow, you have created more than %d invoices with our plugin!"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:93
45
- msgid ""
46
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
- "rating. Help us spread the word and boost our motivation!"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:95
51
- msgid "Yes you deserve it!"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:593
55
- #: includes/views/attachment-settings-hint.php:24
56
- #: includes/views/wcpdf-extensions.php:131
57
- #: woocommerce-pdf-invoices-packingslips.php:377
58
- #: woocommerce-pdf-invoices-packingslips.php:423
59
- msgid "Hide this message"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-admin.php:96
63
- msgid "Already did!"
64
- msgstr ""
65
-
66
- #: includes/class-wcpdf-admin.php:97
67
- msgid "Actually, I have a complaint..."
68
- msgstr ""
69
-
70
- #: includes/class-wcpdf-admin.php:132
71
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
- msgstr ""
73
-
74
- #: includes/class-wcpdf-admin.php:132
75
- msgid "Jumpstart the plugin by following our wizard!"
76
- msgstr ""
77
-
78
- #: includes/class-wcpdf-admin.php:133
79
- msgid "Run the Setup Wizard"
80
- msgstr ""
81
-
82
- #: includes/class-wcpdf-admin.php:133
83
- msgid "I am the wizard"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:906
87
- #: includes/documents/class-wcpdf-invoice.php:302
88
- msgid "Invoice Number"
89
- msgstr "Nomor faktur"
90
-
91
- #: includes/class-wcpdf-admin.php:261
92
- msgid "Send order email"
93
- msgstr ""
94
-
95
- #: includes/class-wcpdf-admin.php:272
96
- msgid "Create PDF"
97
- msgstr "Buat PDF"
98
-
99
- #: includes/class-wcpdf-admin.php:282
100
- msgid "PDF document data"
101
- msgstr ""
102
-
103
- #: includes/class-wcpdf-admin.php:304
104
- msgid "Choose an email to send&hellip;"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-admin.php:320
108
- msgid "Save order & send email"
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-admin.php:322
112
- msgid "Send email"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-admin.php:378
116
- #: includes/documents/class-wcpdf-invoice.php:460
117
- msgid "Invoice Number:"
118
- msgstr "Nomor faktur:"
119
-
120
- #: includes/class-wcpdf-admin.php:381
121
- #: includes/documents/class-wcpdf-invoice.php:468
122
- msgid "Invoice Date:"
123
- msgstr "Tanggal faktur:"
124
-
125
- #: includes/class-wcpdf-admin.php:384
126
- msgid "Notes (printed in the invoice):"
127
- msgstr ""
128
-
129
- #. translators: document title
130
- #: includes/class-wcpdf-admin.php:469
131
- msgid "Set %s number & date"
132
- msgstr ""
133
-
134
- #: includes/class-wcpdf-admin.php:478
135
- msgid "unformatted!"
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-admin.php:518
139
- msgid "Save changes"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-admin.php:519
143
- msgid "Cancel"
144
- msgstr ""
145
-
146
- #. translators: name/description of the context for document creation logs
147
- #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
- msgid "order details (number and/or date set manually)"
149
- msgstr ""
150
-
151
- #. translators: %s: email title
152
- #: includes/class-wcpdf-admin.php:647
153
- msgid "%s email notification manually sent."
154
- msgstr ""
155
-
156
- #: includes/class-wcpdf-admin.php:734
157
- msgid "Nonce expired!"
158
- msgstr ""
159
-
160
- #: includes/class-wcpdf-admin.php:740
161
- msgid "Bad action!"
162
- msgstr ""
163
-
164
- #: includes/class-wcpdf-admin.php:746
165
- msgid "Incomplete request!"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-admin.php:752
169
- msgid "No permissions!"
170
- msgstr ""
171
-
172
- #: includes/class-wcpdf-admin.php:776
173
- msgid "Document data saved!"
174
- msgstr ""
175
-
176
- #: includes/class-wcpdf-admin.php:777
177
- msgid "An error occurred while saving the document data!"
178
- msgstr ""
179
-
180
- #: includes/class-wcpdf-admin.php:780
181
- msgid "Document regenerated!"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-admin.php:781
185
- msgid "An error occurred while regenerating the document!"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-admin.php:784
189
- msgid "Document deleted!"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-admin.php:785
193
- msgid "An error occurred while deleting the document!"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-admin.php:841
197
- msgid "Document does not exist."
198
- msgstr ""
199
-
200
- #: includes/class-wcpdf-admin.php:850
201
- msgid "Document is empty."
202
- msgstr ""
203
-
204
- #: includes/class-wcpdf-admin.php:881
205
- msgid "DEBUG output enabled"
206
- msgstr ""
207
-
208
- #: includes/class-wcpdf-assets.php:91
209
- msgid "Are you sure you want to delete this document? This cannot be undone."
210
- msgstr ""
211
-
212
- #: includes/class-wcpdf-assets.php:92
213
- msgid ""
214
- "Are you sure you want to regenerate this document? This will make the "
215
- "document reflect the most current settings (such as footer text, document "
216
- "name, etc.) rather than using historical settings."
217
- msgstr ""
218
-
219
- #: includes/class-wcpdf-frontend.php:126
220
- msgid "Download invoice (PDF)"
221
- msgstr "Download faktur (PDF)"
222
-
223
- #: includes/class-wcpdf-main.php:261 includes/class-wcpdf-main.php:266
224
- #: includes/class-wcpdf-main.php:338
225
- msgid "You do not have sufficient permissions to access this page."
226
- msgstr "Anda tidak memiliki izin yang memadai untuk mengakses halaman ini."
227
-
228
- #: includes/class-wcpdf-main.php:275
229
- msgid "You haven't selected any orders"
230
- msgstr ""
231
-
232
- #: includes/class-wcpdf-main.php:279
233
- msgid "Some of the export parameters are missing."
234
- msgstr "Beberapa parameter ekspor hilang."
235
-
236
- #. translators: document type
237
- #: includes/class-wcpdf-main.php:379
238
- msgid "Document of type '%s' for the selected order(s) could not be generated"
239
- msgstr ""
240
-
241
- #. translators: 1. plugin name, 2. directory path
242
- #: includes/class-wcpdf-main.php:591
243
- msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
- msgstr ""
245
-
246
- #: includes/class-wcpdf-main.php:592
247
- msgid ""
248
- "Please check your directories write permissions or contact your hosting "
249
- "service provider."
250
- msgstr ""
251
-
252
- #: includes/class-wcpdf-main.php:907
253
- #: includes/documents/class-wcpdf-invoice.php:286
254
- msgid "Invoice Date"
255
- msgstr ""
256
-
257
- #. translators: name/description of the context for document creation logs
258
- #: includes/class-wcpdf-main.php:937
259
- msgid "bulk order action"
260
- msgstr ""
261
-
262
- #. translators: name/description of the context for document creation logs
263
- #: includes/class-wcpdf-main.php:945
264
- msgid "single order action"
265
- msgstr ""
266
-
267
- #. translators: name/description of the context for document creation logs
268
- #: includes/class-wcpdf-main.php:953
269
- msgid "my account"
270
- msgstr ""
271
-
272
- #. translators: name/description of the context for document creation logs
273
- #: includes/class-wcpdf-main.php:961
274
- msgid "email attachment"
275
- msgstr ""
276
-
277
- #. translators: 1. document title, 2. creation source
278
- #: includes/class-wcpdf-main.php:970
279
- msgid "PDF %1$s created via %2$s."
280
- msgstr ""
281
-
282
- #. translators: document title
283
- #: includes/class-wcpdf-main.php:1006
284
- msgid "Order %s Saved"
285
- msgstr ""
286
-
287
- #: includes/class-wcpdf-settings-callbacks.php:27
288
- msgid ""
289
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
- "Do not use them on a live website!"
291
- msgstr ""
292
- "<B> Peringatan! </ B> Pengaturan di bawah dimaksudkan untuk debugging / "
293
- "pengembangan saja. Jangan gunakan mereka di situs web live!"
294
-
295
- #: includes/class-wcpdf-settings-callbacks.php:36
296
- msgid ""
297
- "These are used for the (optional) footer columns in the <em>Modern "
298
- "(Premium)</em> template, but can also be used for other elements in your "
299
- "custom template"
300
- msgstr ""
301
- "Ini digunakan untuk kolom footer (opsional) di template <em> Modern "
302
- "(Premium) </ em>, namun juga dapat digunakan untuk elemen lain dalam "
303
- "template khusus Anda"
304
-
305
- #: includes/class-wcpdf-settings-callbacks.php:383
306
- msgid "Image resolution"
307
- msgstr "Resolusi gambar"
308
-
309
- #: includes/class-wcpdf-settings-callbacks.php:410
310
- msgid "Save"
311
- msgstr ""
312
-
313
- #: includes/class-wcpdf-settings-debug.php:45
314
- #: woocommerce-pdf-invoices-packingslips.php:376
315
- msgid "Generate random temporary folder name"
316
- msgstr ""
317
-
318
- #. translators: directory path
319
- #: includes/class-wcpdf-settings-debug.php:58
320
- msgid "Temporary folder moved to %s"
321
- msgstr ""
322
-
323
- #: includes/class-wcpdf-settings-debug.php:68
324
- msgid "Reinstall fonts"
325
- msgstr ""
326
-
327
- #: includes/class-wcpdf-settings-debug.php:89
328
- msgid "Fonts reinstalled!"
329
- msgstr ""
330
-
331
- #: includes/class-wcpdf-settings-debug.php:98
332
- msgid "Remove temporary files"
333
- msgstr ""
334
-
335
- #: includes/class-wcpdf-settings-debug.php:109
336
- msgid "Unable to read temporary folder contents!"
337
- msgstr ""
338
-
339
- #. translators: 1,2. file count
340
- #: includes/class-wcpdf-settings-debug.php:127
341
- msgid "Unable to delete %1$d files! (deleted %2$d)"
342
- msgstr ""
343
-
344
- #. translators: file count
345
- #: includes/class-wcpdf-settings-debug.php:131
346
- msgid "Successfully deleted %d files!"
347
- msgstr ""
348
-
349
- #: includes/class-wcpdf-settings-debug.php:135
350
- msgid "Nothing to delete!"
351
- msgstr ""
352
-
353
- #: includes/class-wcpdf-settings-debug.php:146
354
- msgid "Delete legacy (1.X) settings"
355
- msgstr ""
356
-
357
- #: includes/class-wcpdf-settings-debug.php:162
358
- msgid "Legacy settings deleted!"
359
- msgstr ""
360
-
361
- #: includes/class-wcpdf-settings-debug.php:192
362
- msgid "Debug settings"
363
- msgstr "Pengaturan Debug"
364
-
365
- #: includes/class-wcpdf-settings-debug.php:198
366
- msgid "Legacy mode"
367
- msgstr ""
368
-
369
- #: includes/class-wcpdf-settings-debug.php:204
370
- msgid ""
371
- "Legacy mode ensures compatibility with templates and filters from previous "
372
- "versions."
373
- msgstr ""
374
-
375
- #: includes/class-wcpdf-settings-debug.php:210
376
- msgid "Legacy textdomain fallback"
377
- msgstr ""
378
-
379
- #: includes/class-wcpdf-settings-debug.php:216
380
- msgid ""
381
- "Legacy textdomain fallback ensures compatibility with translation files from "
382
- "versions prior to 2017-05-15."
383
- msgstr ""
384
-
385
- #: includes/class-wcpdf-settings-debug.php:222
386
- msgid "Allow guest access"
387
- msgstr ""
388
-
389
- #: includes/class-wcpdf-settings-debug.php:228
390
- msgid ""
391
- "Enable this to allow customers that purchase without an account to access "
392
- "their PDF with a unique key"
393
- msgstr ""
394
-
395
- #: includes/class-wcpdf-settings-debug.php:234
396
- msgid "Calculate document numbers (slow)"
397
- msgstr ""
398
-
399
- #: includes/class-wcpdf-settings-debug.php:240
400
- msgid ""
401
- "Document numbers (such as invoice numbers) are generated using "
402
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
403
- "with more than 1."
404
- msgstr ""
405
-
406
- #: includes/class-wcpdf-settings-debug.php:246
407
- msgid "Enable debug output"
408
- msgstr "Aktifkan keluaran debug"
409
-
410
- #: includes/class-wcpdf-settings-debug.php:252
411
- msgid ""
412
- "Enable this option to output plugin errors if you're getting a blank page or "
413
- "other PDF generation issues"
414
- msgstr ""
415
- "Aktifkan opsi ini untuk menampilkan kesalahan plugin jika Anda mendapatkan "
416
- "halaman kosong atau masalah generasi PDF lainnya"
417
-
418
- #: includes/class-wcpdf-settings-debug.php:253
419
- msgid ""
420
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
421
- "places on your site too, therefor this is not recommended to leave it "
422
- "enabled on live sites."
423
- msgstr ""
424
-
425
- #: includes/class-wcpdf-settings-debug.php:254
426
- msgid ""
427
- "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
428
- "order basis."
429
- msgstr ""
430
-
431
- #: includes/class-wcpdf-settings-debug.php:260
432
- msgid "Enable automatic cleanup"
433
- msgstr ""
434
-
435
- #. translators: number of days
436
- #: includes/class-wcpdf-settings-debug.php:268
437
- msgid "every %s days"
438
- msgstr ""
439
-
440
- #: includes/class-wcpdf-settings-debug.php:273
441
- msgid ""
442
- "Automatically clean up PDF files stored in the temporary folder (used for "
443
- "email attachments)"
444
- msgstr ""
445
-
446
- #: includes/class-wcpdf-settings-debug.php:274
447
- msgid ""
448
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
449
- "automatic cleanup but not enabled on your server."
450
- msgstr ""
451
-
452
- #: includes/class-wcpdf-settings-debug.php:280
453
- msgid "Output to HTML"
454
- msgstr "Keluaran ke HTML"
455
-
456
- #: includes/class-wcpdf-settings-debug.php:286
457
- msgid ""
458
- "Send the template output as HTML to the browser instead of creating a PDF."
459
- msgstr ""
460
- "Kirimkan output template sebagai HTML ke browser alih-alih membuat PDF."
461
-
462
- #: includes/class-wcpdf-settings-debug.php:287
463
- msgid ""
464
- "You can also add <code>&output=html</code> to the URL to apply this on a per-"
465
- "order basis."
466
- msgstr ""
467
-
468
- #: includes/class-wcpdf-settings-debug.php:293
469
- msgid "Use alternative HTML5 parser to parse HTML"
470
- msgstr ""
471
-
472
- #: includes/class-wcpdf-settings-debug.php:304
473
- msgid "Log to order notes"
474
- msgstr ""
475
-
476
- #: includes/class-wcpdf-settings-debug.php:310
477
- msgid "Log PDF document creation to order notes."
478
- msgstr ""
479
-
480
- #: includes/class-wcpdf-settings-documents.php:30
481
- #: includes/class-wcpdf-settings.php:97
482
- msgid "Documents"
483
- msgstr ""
484
-
485
- #: includes/class-wcpdf-settings-documents.php:36
486
- #: includes/class-wcpdf-settings-documents.php:57
487
- msgid "untitled"
488
- msgstr ""
489
-
490
- #: includes/class-wcpdf-settings-documents.php:50
491
- msgid ""
492
- "All available documents are listed below. Click on a document to configure "
493
- "it."
494
- msgstr ""
495
-
496
- #: includes/class-wcpdf-settings-general.php:40
497
- msgid "General settings"
498
- msgstr "Pengaturan Umum"
499
-
500
- #: includes/class-wcpdf-settings-general.php:46
501
- msgid "How do you want to view the PDF?"
502
- msgstr "Bagaimana Anda ingin melihat PDF?"
503
-
504
- #: includes/class-wcpdf-settings-general.php:53
505
- msgid "Download the PDF"
506
- msgstr "Download PDF"
507
-
508
- #: includes/class-wcpdf-settings-general.php:54
509
- msgid "Open the PDF in a new browser tab/window"
510
- msgstr "Buka PDF di tab / jendela browser baru"
511
-
512
- #: includes/class-wcpdf-settings-general.php:61
513
- msgid "Choose a template"
514
- msgstr "Pilih template"
515
-
516
- #. translators: 1,2. template paths
517
- #: includes/class-wcpdf-settings-general.php:69
518
- msgid ""
519
- "Want to use your own template? Copy all the files from <code>%1$s</code> to "
520
- "your (child) theme in <code>%2$s</code> to customize them"
521
- msgstr ""
522
-
523
- #: includes/class-wcpdf-settings-general.php:75
524
- msgid "Paper size"
525
- msgstr "Ukuran kertas"
526
-
527
- #: includes/class-wcpdf-settings-general.php:82
528
- #: includes/views/setup-wizard/paper-format.php:12
529
- msgid "A4"
530
- msgstr "A4"
531
-
532
- #: includes/class-wcpdf-settings-general.php:83
533
- #: includes/views/setup-wizard/paper-format.php:13
534
- msgid "Letter"
535
- msgstr "Surat"
536
-
537
- #: includes/class-wcpdf-settings-general.php:90
538
- msgid "Test mode"
539
- msgstr ""
540
-
541
- #: includes/class-wcpdf-settings-general.php:96
542
- msgid ""
543
- "With test mode enabled, any document generated will always use the latest "
544
- "settings, rather than using the settings as configured at the time the "
545
- "document was first created."
546
- msgstr ""
547
-
548
- #: includes/class-wcpdf-settings-general.php:96
549
- msgid ""
550
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
551
- "setting and will still be generated."
552
- msgstr ""
553
-
554
- #: includes/class-wcpdf-settings-general.php:102
555
- msgid "Extended currency symbol support"
556
- msgstr ""
557
-
558
- #: includes/class-wcpdf-settings-general.php:108
559
- msgid "Enable this if your currency symbol is not displaying properly"
560
- msgstr ""
561
-
562
- #: includes/class-wcpdf-settings-general.php:114
563
- msgid "Enable font subsetting"
564
- msgstr ""
565
-
566
- #: includes/class-wcpdf-settings-general.php:120
567
- msgid ""
568
- "Font subsetting can reduce file size by only including the characters that "
569
- "are used in the PDF, but limits the ability to edit PDF files later. "
570
- "Recommended if you're using an Asian font."
571
- msgstr ""
572
-
573
- #: includes/class-wcpdf-settings-general.php:126
574
- msgid "Shop header/logo"
575
- msgstr "Shop header / logo"
576
-
577
- #: includes/class-wcpdf-settings-general.php:132
578
- #: includes/views/setup-wizard/logo.php:20
579
- msgid "Select or upload your invoice header/logo"
580
- msgstr "Pilih atau upload header / logo faktur Anda"
581
-
582
- #: includes/class-wcpdf-settings-general.php:133
583
- #: includes/views/setup-wizard/logo.php:20
584
- msgid "Set image"
585
- msgstr "Set gambar"
586
-
587
- #: includes/class-wcpdf-settings-general.php:134
588
- #: includes/views/setup-wizard/logo.php:20
589
- msgid "Remove image"
590
- msgstr "Hapus gambar"
591
-
592
- #: includes/class-wcpdf-settings-general.php:141
593
- msgid "Logo height"
594
- msgstr ""
595
-
596
- #: includes/class-wcpdf-settings-general.php:149
597
- msgid ""
598
- "Enter the total height of the logo in mm, cm or in and use a dot for "
599
- "decimals.<br/>For example: 1.15in or 40mm"
600
- msgstr ""
601
-
602
- #: includes/class-wcpdf-settings-general.php:155
603
- #: includes/class-wcpdf-setup-wizard.php:47
604
- msgid "Shop Name"
605
- msgstr "Nama toko"
606
-
607
- #: includes/class-wcpdf-settings-general.php:168
608
- msgid "Shop Address"
609
- msgstr "Alamat toko"
610
-
611
- #: includes/class-wcpdf-settings-general.php:183
612
- msgid "Footer: terms & conditions, policies, etc."
613
- msgstr "Footer: syarat & ketentuan, kebijakan, dll."
614
-
615
- #: includes/class-wcpdf-settings-general.php:198
616
- msgid "Extra template fields"
617
- msgstr "Zusätzliche Vorlagenfelder "
618
-
619
- #: includes/class-wcpdf-settings-general.php:204
620
- msgid "Extra field 1"
621
- msgstr "Zusatzfeld 1 "
622
-
623
- #: includes/class-wcpdf-settings-general.php:212
624
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
625
- msgstr "Ini adalah kolom footer 1 di template <i> Modern (Premium) </ i>"
626
-
627
- #: includes/class-wcpdf-settings-general.php:219
628
- msgid "Extra field 2"
629
- msgstr "Bidang tambahan 2"
630
-
631
- #: includes/class-wcpdf-settings-general.php:227
632
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
633
- msgstr "Ini adalah kolom footer 2 di template <i> Modern (Premium) </ i>"
634
-
635
- #: includes/class-wcpdf-settings-general.php:234
636
- msgid "Extra field 3"
637
- msgstr "Bidang tambahan 3"
638
-
639
- #: includes/class-wcpdf-settings-general.php:242
640
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
641
- msgstr "Ini adalah kolom footer 3 di template <i> Modern (Premium) </ i>"
642
-
643
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
644
- msgid "PDF Invoices"
645
- msgstr "Faktur PDF"
646
-
647
- #: includes/class-wcpdf-settings.php:74
648
- msgid "Documentation"
649
- msgstr ""
650
-
651
- #: includes/class-wcpdf-settings.php:75
652
- msgid "Support Forum"
653
- msgstr ""
654
-
655
- #. translators: database row value
656
- #: includes/class-wcpdf-settings.php:88
657
- msgid ""
658
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
659
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
660
- "document numbers (slow)' setting in the Status tab to use an alternate "
661
- "method."
662
- msgstr ""
663
-
664
- #: includes/class-wcpdf-settings.php:96
665
- msgid "General"
666
- msgstr "Umum"
667
-
668
- #: includes/class-wcpdf-settings.php:102 includes/views/dompdf-status.php:182
669
- msgid "Status"
670
- msgstr "Status"
671
-
672
- #: includes/class-wcpdf-setup-wizard.php:51
673
- #: includes/views/setup-wizard/logo.php:3
674
- msgid "Your logo"
675
- msgstr ""
676
-
677
- #: includes/class-wcpdf-setup-wizard.php:55
678
- msgid "Attachments"
679
- msgstr ""
680
-
681
- #: includes/class-wcpdf-setup-wizard.php:59
682
- #: includes/views/setup-wizard/display-options.php:3
683
- msgid "Display options"
684
- msgstr ""
685
-
686
- #: includes/class-wcpdf-setup-wizard.php:63
687
- #: includes/views/setup-wizard/paper-format.php:3
688
- msgid "Paper format"
689
- msgstr ""
690
-
691
- #: includes/class-wcpdf-setup-wizard.php:67
692
- #: includes/views/setup-wizard/show-action-buttons.php:3
693
- msgid "Action buttons"
694
- msgstr ""
695
-
696
- #: includes/class-wcpdf-setup-wizard.php:71
697
- msgid "Ready!"
698
- msgstr ""
699
-
700
- #: includes/class-wcpdf-setup-wizard.php:133
701
- msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
702
- msgstr ""
703
-
704
- #: includes/class-wcpdf-setup-wizard.php:185
705
- msgid "Previous"
706
- msgstr ""
707
-
708
- #: includes/class-wcpdf-setup-wizard.php:190
709
- msgid "Next"
710
- msgstr ""
711
-
712
- #: includes/class-wcpdf-setup-wizard.php:191
713
- msgid "Skip this step"
714
- msgstr ""
715
-
716
- #: includes/class-wcpdf-setup-wizard.php:193
717
- msgid "Finish"
718
- msgstr ""
719
-
720
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
721
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
722
- msgid "N/A"
723
- msgstr "N / A"
724
-
725
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
726
- msgid "Payment method"
727
- msgstr "Metode pembayaran"
728
-
729
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
730
- msgid "Shipping method"
731
- msgstr "Metode pengiriman"
732
-
733
- #: includes/documents/abstract-wcpdf-order-document-methods.php:927
734
- msgid "Subtotal"
735
- msgstr "Subtotal"
736
-
737
- #: includes/documents/abstract-wcpdf-order-document-methods.php:952
738
- msgid "Shipping"
739
- msgstr "pengiriman"
740
-
741
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
742
- msgid "Discount"
743
- msgstr "Diskon"
744
-
745
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
746
- msgid "VAT"
747
- msgstr "TONG"
748
-
749
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
750
- msgid "Tax rate"
751
- msgstr "Persentase pajak"
752
-
753
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
754
- msgid "Total ex. VAT"
755
- msgstr "Total mantan TONG"
756
-
757
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
758
- msgid "Total"
759
- msgstr "Total"
760
-
761
- #. translators: 1. credit note title, 2. refund id
762
- #: includes/documents/abstract-wcpdf-order-document.php:336
763
- msgid "%1$s (refund #%2$s) was regenerated."
764
- msgstr ""
765
-
766
- #. translators: 1. credit note title, 2. refund id
767
- #: includes/documents/abstract-wcpdf-order-document.php:336
768
- msgid "%s was regenerated"
769
- msgstr ""
770
-
771
- #. translators: %s: document name
772
- #: includes/documents/abstract-wcpdf-order-document.php:422
773
- msgid "%s Number:"
774
- msgstr ""
775
-
776
- #. translators: %s: document name
777
- #: includes/documents/abstract-wcpdf-order-document.php:428
778
- msgid "%s Date:"
779
- msgstr ""
780
-
781
- #: includes/documents/abstract-wcpdf-order-document.php:891
782
- msgid "Admin email"
783
- msgstr ""
784
-
785
- #: includes/documents/abstract-wcpdf-order-document.php:894
786
- msgid "Manual email"
787
- msgstr ""
788
-
789
- #: includes/documents/class-wcpdf-invoice.php:32
790
- #: includes/documents/class-wcpdf-invoice.php:56
791
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
792
- msgid "Invoice"
793
- msgstr "Faktur"
794
-
795
- # This is a filename (prefix). do not use spaces or special characters!
796
- #: includes/documents/class-wcpdf-invoice.php:131
797
- msgid "invoice"
798
- msgid_plural "invoices"
799
- msgstr[0] "faktur"
800
-
801
- #: includes/documents/class-wcpdf-invoice.php:186
802
- #: includes/documents/class-wcpdf-packing-slip.php:88
803
- msgid "Enable"
804
- msgstr ""
805
-
806
- #: includes/documents/class-wcpdf-invoice.php:197
807
- msgid "Attach to:"
808
- msgstr ""
809
-
810
- #. translators: directory path
811
- #: includes/documents/class-wcpdf-invoice.php:205
812
- msgid ""
813
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
814
- "permissions for this folder! Without having write access to this folder, the "
815
- "plugin will not be able to email invoices."
816
- msgstr ""
817
- "Sepertinya map temp (<code> %s </ code>) tidak dapat ditulis, periksa izin "
818
- "untuk folder ini! Tanpa memiliki akses tulis ke folder ini, plugin tidak "
819
- "akan bisa mengirim faktur melalui email."
820
-
821
- #: includes/documents/class-wcpdf-invoice.php:211
822
- msgid "Disable for:"
823
- msgstr ""
824
-
825
- #: includes/documents/class-wcpdf-invoice.php:220
826
- msgid "Select one or more statuses"
827
- msgstr ""
828
-
829
- #: includes/documents/class-wcpdf-invoice.php:226
830
- #: includes/views/setup-wizard/display-options.php:17
831
- msgid "Display shipping address"
832
- msgstr "Tampilkan alamat pengiriman"
833
-
834
- #: includes/documents/class-wcpdf-invoice.php:233
835
- #: includes/documents/class-wcpdf-invoice.php:285
836
- #: includes/documents/class-wcpdf-invoice.php:301
837
- #: includes/documents/class-wcpdf-packing-slip.php:106
838
- msgid "No"
839
- msgstr ""
840
-
841
- #: includes/documents/class-wcpdf-invoice.php:234
842
- msgid "Only when different from billing address"
843
- msgstr ""
844
-
845
- #: includes/documents/class-wcpdf-invoice.php:235
846
- #: includes/documents/class-wcpdf-invoice.php:378
847
- #: includes/documents/class-wcpdf-packing-slip.php:108
848
- msgid "Always"
849
- msgstr "Selalu"
850
-
851
- #: includes/documents/class-wcpdf-invoice.php:243
852
- #: includes/documents/class-wcpdf-packing-slip.php:116
853
- #: includes/views/setup-wizard/display-options.php:26
854
- msgid "Display email address"
855
- msgstr "Tampilkan alamat email"
856
-
857
- #: includes/documents/class-wcpdf-invoice.php:254
858
- #: includes/documents/class-wcpdf-packing-slip.php:127
859
- #: includes/views/setup-wizard/display-options.php:35
860
- msgid "Display phone number"
861
- msgstr "nomor telepon tampilan"
862
-
863
- #: includes/documents/class-wcpdf-invoice.php:265
864
- #: includes/documents/class-wcpdf-packing-slip.php:138
865
- msgid "Display customer notes"
866
- msgstr ""
867
-
868
- #: includes/documents/class-wcpdf-invoice.php:278
869
- #: includes/views/setup-wizard/display-options.php:44
870
- msgid "Display invoice date"
871
- msgstr "Tampilkan tanggal faktur"
872
-
873
- #: includes/documents/class-wcpdf-invoice.php:287
874
- msgid "Order Date"
875
- msgstr ""
876
-
877
- #: includes/documents/class-wcpdf-invoice.php:294
878
- #: includes/views/setup-wizard/display-options.php:53
879
- msgid "Display invoice number"
880
- msgstr ""
881
-
882
- #: includes/documents/class-wcpdf-invoice.php:303
883
- msgid "Order Number"
884
- msgstr ""
885
-
886
- #: includes/documents/class-wcpdf-invoice.php:307
887
- msgid "Warning!"
888
- msgstr ""
889
-
890
- #: includes/documents/class-wcpdf-invoice.php:308
891
- msgid ""
892
- "Using the Order Number as invoice number is not recommended as this may lead "
893
- "to gaps in the invoice number sequence (even when order numbers are "
894
- "sequential)."
895
- msgstr ""
896
-
897
- #: includes/documents/class-wcpdf-invoice.php:309
898
- msgid "More information"
899
- msgstr ""
900
-
901
- #: includes/documents/class-wcpdf-invoice.php:316
902
- msgid "Next invoice number (without prefix/suffix etc.)"
903
- msgstr "Nomor faktur berikutnya (tanpa awalan / akhiran dll.)"
904
-
905
- #: includes/documents/class-wcpdf-invoice.php:322
906
- msgid ""
907
- "This is the number that will be used for the next document. By default, "
908
- "numbering starts from 1 and increases for every new document. Note that if "
909
- "you override this and set it lower than the current/highest number, this "
910
- "could create duplicate numbers!"
911
- msgstr ""
912
-
913
- #: includes/documents/class-wcpdf-invoice.php:328
914
- msgid "Number format"
915
- msgstr ""
916
-
917
- #: includes/documents/class-wcpdf-invoice.php:336
918
- msgid "Prefix"
919
- msgstr "Awalan"
920
-
921
- #: includes/documents/class-wcpdf-invoice.php:338
922
- msgid ""
923
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
924
- "respectively"
925
- msgstr ""
926
-
927
- #: includes/documents/class-wcpdf-invoice.php:341
928
- msgid "Suffix"
929
- msgstr "Akhiran"
930
-
931
- #: includes/documents/class-wcpdf-invoice.php:346
932
- msgid "Padding"
933
- msgstr "Lapisan"
934
-
935
- #: includes/documents/class-wcpdf-invoice.php:349
936
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
937
- msgstr ""
938
- "Masukkan jumlah digit di sini - masukkan \\ \"6 \" untuk menampilkan 42 "
939
- "sebagai 000042"
940
-
941
- #: includes/documents/class-wcpdf-invoice.php:352
942
- msgid ""
943
- "note: if you have already created a custom invoice number format with a "
944
- "filter, the above settings will be ignored"
945
- msgstr ""
946
- "Catatan: jika Anda telah membuat format angka faktur khusus dengan filter, "
947
- "pengaturan di atas akan diabaikan"
948
-
949
- #: includes/documents/class-wcpdf-invoice.php:358
950
- msgid "Reset invoice number yearly"
951
- msgstr ""
952
-
953
- #: includes/documents/class-wcpdf-invoice.php:369
954
- msgid "Allow My Account invoice download"
955
- msgstr "Izinkan mendownload faktur Akun Saya"
956
-
957
- #: includes/documents/class-wcpdf-invoice.php:376
958
- msgid "Only when an invoice is already created/emailed"
959
- msgstr "Hanya saat faktur sudah dibuat / diemailkan"
960
-
961
- #: includes/documents/class-wcpdf-invoice.php:377
962
- msgid "Only for specific order statuses (define below)"
963
- msgstr "Hanya untuk status pesanan tertentu (tentukan di bawah)"
964
-
965
- #: includes/documents/class-wcpdf-invoice.php:379
966
- msgid "Never"
967
- msgstr ""
968
-
969
- #: includes/documents/class-wcpdf-invoice.php:394
970
- msgid "Enable invoice number column in the orders list"
971
- msgstr "Aktifkan kolom nomor faktur dalam daftar pesanan"
972
-
973
- #: includes/documents/class-wcpdf-invoice.php:405
974
- msgid "Disable for free orders"
975
- msgstr ""
976
-
977
- #. translators: zero number
978
- #: includes/documents/class-wcpdf-invoice.php:412
979
- msgid "Disable document when the order total is %s"
980
- msgstr ""
981
-
982
- #: includes/documents/class-wcpdf-invoice.php:418
983
- msgid "Always use most current settings"
984
- msgstr ""
985
-
986
- #: includes/documents/class-wcpdf-invoice.php:424
987
- msgid ""
988
- "When enabled, the document will always reflect the most current settings "
989
- "(such as footer text, document name, etc.) rather than using historical "
990
- "settings."
991
- msgstr ""
992
-
993
- #: includes/documents/class-wcpdf-invoice.php:426
994
- msgid ""
995
- "<strong>Caution:</strong> enabling this will also mean that if you change "
996
- "your company name or address in the future, previously generated documents "
997
- "will also be affected."
998
- msgstr ""
999
-
1000
- #: includes/documents/class-wcpdf-invoice.php:439
1001
- msgid "Invoice numbers are created by a third-party extension."
1002
- msgstr ""
1003
-
1004
- #. translators: link
1005
- #: includes/documents/class-wcpdf-invoice.php:442
1006
- msgid "Configure it <a href=\"%s\">here</a>."
1007
- msgstr ""
1008
-
1009
- #: includes/documents/class-wcpdf-packing-slip.php:32
1010
- #: includes/documents/class-wcpdf-packing-slip.php:41
1011
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
1012
- msgid "Packing Slip"
1013
- msgstr "Slip pengepakan"
1014
-
1015
- # This is a filename (prefix). do not use spaces or special characters!
1016
- #: includes/documents/class-wcpdf-packing-slip.php:47
1017
- msgid "packing-slip"
1018
- msgid_plural "packing-slips"
1019
- msgstr[0] "Packing-slip"
1020
-
1021
- #: includes/documents/class-wcpdf-packing-slip.php:99
1022
- msgid "Display billing address"
1023
- msgstr "Tampilkan alamat penagihan"
1024
-
1025
- #: includes/documents/class-wcpdf-packing-slip.php:107
1026
- msgid "Only when different from shipping address"
1027
- msgstr ""
1028
-
1029
- #: includes/documents/class-wcpdf-packing-slip.php:162
1030
- msgid "Packing Slip Number:"
1031
- msgstr ""
1032
-
1033
- #: includes/documents/class-wcpdf-packing-slip.php:170
1034
- msgid "Packing Slip Date:"
1035
- msgstr ""
1036
-
1037
- #: includes/legacy/class-wcpdf-legacy-document.php:32
1038
- msgid "Legacy Document"
1039
- msgstr ""
1040
-
1041
- #: includes/legacy/class-wcpdf-legacy.php:72
1042
- msgid "Error"
1043
- msgstr ""
1044
-
1045
- #: includes/legacy/class-wcpdf-legacy.php:73
1046
- msgid ""
1047
- "An outdated template or action hook was used to generate the PDF. Legacy "
1048
- "mode has been activated, please try again by reloading this page."
1049
- msgstr ""
1050
-
1051
- #: includes/legacy/class-wcpdf-legacy.php:76
1052
- msgid "The following function was called"
1053
- msgstr ""
1054
-
1055
- #. translators: <a> tags
1056
- #: includes/views/attachment-settings-hint.php:23
1057
- msgid ""
1058
- "It looks like you haven't setup any email attachments yet, check the "
1059
- "settings under <b>%1$sDocuments > Invoice%2$s</b>"
1060
- msgstr ""
1061
-
1062
- #: includes/views/dompdf-status.php:11
1063
- msgid "7.1+ (7.4 or higher recommended)"
1064
- msgstr ""
1065
-
1066
- #: includes/views/dompdf-status.php:24
1067
- msgid "Recommended, will use fallback functions"
1068
- msgstr ""
1069
-
1070
- #: includes/views/dompdf-status.php:30
1071
- msgid "Required if you have images in your documents"
1072
- msgstr ""
1073
-
1074
- #: includes/views/dompdf-status.php:39
1075
- msgid "To compress PDF documents"
1076
- msgstr ""
1077
-
1078
- #: includes/views/dompdf-status.php:42
1079
- msgid "Recommended to compress PDF documents"
1080
- msgstr ""
1081
-
1082
- #: includes/views/dompdf-status.php:45
1083
- msgid "For better performances"
1084
- msgstr ""
1085
-
1086
- #: includes/views/dompdf-status.php:48 includes/views/dompdf-status.php:54
1087
- msgid "Recommended for better performances"
1088
- msgstr ""
1089
-
1090
- #: includes/views/dompdf-status.php:51
1091
- msgid "Better with transparent PNG images"
1092
- msgstr ""
1093
-
1094
- #: includes/views/dompdf-status.php:57
1095
- msgid ""
1096
- "Required to detect custom templates and to clear the temp folder periodically"
1097
- msgstr ""
1098
-
1099
- #: includes/views/dompdf-status.php:60
1100
- msgid "Check PHP disable_functions"
1101
- msgstr ""
1102
-
1103
- #. translators: <a> tags
1104
- #: includes/views/dompdf-status.php:64
1105
- msgid ""
1106
- "Recommended: 128MB (more for plugin-heavy setups<br/>See: %1$sIncreasing the "
1107
- "WordPress Memory Limit%2$s"
1108
- msgstr ""
1109
-
1110
- #: includes/views/dompdf-status.php:69
1111
- msgid "Allow remote stylesheets and images"
1112
- msgstr ""
1113
-
1114
- #: includes/views/dompdf-status.php:72
1115
- msgid "allow_url_fopen disabled"
1116
- msgstr ""
1117
-
1118
- #. translators: <a> tags
1119
- #: includes/views/dompdf-status.php:92
1120
- msgid "<br/>Download %1$sthis addon%2$s to enable backwards compatibility."
1121
- msgstr ""
1122
-
1123
- #: includes/views/dompdf-status.php:97
1124
- msgid "System Configuration"
1125
- msgstr ""
1126
-
1127
- #: includes/views/dompdf-status.php:102
1128
- msgid "Required"
1129
- msgstr ""
1130
-
1131
- #: includes/views/dompdf-status.php:103
1132
- msgid "Present"
1133
- msgstr ""
1134
-
1135
- #: includes/views/dompdf-status.php:142
1136
- msgid "Writable"
1137
- msgstr ""
1138
-
1139
- #: includes/views/dompdf-status.php:143
1140
- msgid "Not writable"
1141
- msgstr ""
1142
-
1143
- #: includes/views/dompdf-status.php:148
1144
- msgid "Central temporary plugin folder"
1145
- msgstr ""
1146
-
1147
- #: includes/views/dompdf-status.php:154
1148
- msgid "Temporary attachments folder"
1149
- msgstr ""
1150
-
1151
- #: includes/views/dompdf-status.php:160
1152
- msgid "Temporary DOMPDF folder"
1153
- msgstr ""
1154
-
1155
- #: includes/views/dompdf-status.php:166
1156
- msgid "DOMPDF fonts folder (needs to be writable for custom/remote fonts)"
1157
- msgstr ""
1158
-
1159
- #: includes/views/dompdf-status.php:177
1160
- msgid "Write Permissions"
1161
- msgstr ""
1162
-
1163
- #: includes/views/dompdf-status.php:180 templates/Simple/invoice.php:101
1164
- #: templates/Simple/packing-slip.php:88
1165
- msgid "Description"
1166
- msgstr "Deskripsi"
1167
-
1168
- #: includes/views/dompdf-status.php:181
1169
- msgid "Value"
1170
- msgstr ""
1171
-
1172
- #. translators: 1,2. directory paths, 3. UPLOADS, 4. wpo_wcpdf_tmp_path, 5. attachments, 6. dompdf, 7. fonts
1173
- #: includes/views/dompdf-status.php:207
1174
- msgid ""
1175
- "The central temp folder is %1$s. By default, this folder is created in the "
1176
- "WordPress uploads folder (%2$s), which can be defined by setting %3$s in wp-"
1177
- "config.php. Alternatively, you can control the specific folder for PDF "
1178
- "invoices by using the %4$s filter. Make sure this folder is writable and "
1179
- "that the subfolders %5$s, %6$s and %7$s are present (these will be created "
1180
- "by the plugin if the central temp folder is writable)."
1181
- msgstr ""
1182
-
1183
- #. translators: directory path
1184
- #: includes/views/dompdf-status.php:220
1185
- msgid ""
1186
- "If the temporary folders were not automatically created by the plugin, "
1187
- "verify that all the font files (from %s) are copied to the fonts folder. "
1188
- "Normally, this is fully automated, but if your server has strict security "
1189
- "settings, this automated copying may have been prohibited. In that case, you "
1190
- "also need to make sure these folders get synchronized on plugin updates!"
1191
- msgstr ""
1192
-
1193
- #: includes/views/setup-wizard/attach-to.php:3
1194
- msgid "Attach too..."
1195
- msgstr ""
1196
-
1197
- #: includes/views/setup-wizard/attach-to.php:4
1198
- msgid "Select to which emails you would like to attach your invoice."
1199
- msgstr ""
1200
-
1201
- #: includes/views/setup-wizard/display-options.php:4
1202
- msgid "Select some additional display options for your invoice."
1203
- msgstr ""
1204
-
1205
- #: includes/views/setup-wizard/good-to-go.php:3
1206
- msgid "You are good to go!"
1207
- msgstr ""
1208
-
1209
- #: includes/views/setup-wizard/good-to-go.php:4
1210
- msgid "If you have any questions please have a look at our documentation:"
1211
- msgstr ""
1212
-
1213
- #: includes/views/setup-wizard/good-to-go.php:5
1214
- msgid "Invoices & Packing Slips"
1215
- msgstr ""
1216
-
1217
- #: includes/views/setup-wizard/good-to-go.php:6
1218
- msgid "Happy selling!"
1219
- msgstr ""
1220
-
1221
- #: includes/views/setup-wizard/logo.php:4
1222
- msgid "Set the header image that will display on your invoice."
1223
- msgstr ""
1224
-
1225
- #: includes/views/setup-wizard/paper-format.php:4
1226
- msgid "Select the paper format for your invoice."
1227
- msgstr ""
1228
-
1229
- #: includes/views/setup-wizard/shop-name.php:3
1230
- msgid "Enter your shop name"
1231
- msgstr ""
1232
-
1233
- #: includes/views/setup-wizard/shop-name.php:4
1234
- msgid ""
1235
- "Lets quickly setup your invoice. Please enter the name and address of your "
1236
- "shop in the fields on the right."
1237
- msgstr ""
1238
-
1239
- #: includes/views/setup-wizard/show-action-buttons.php:4
1240
- msgid ""
1241
- "Would you like to display the action buttons in your WooCommerce order list? "
1242
- "The action buttons allow you to manually create a PDF."
1243
- msgstr ""
1244
-
1245
- #: includes/views/setup-wizard/show-action-buttons.php:5
1246
- msgid "(You can always change this setting later via the Screen Options menu)"
1247
- msgstr ""
1248
-
1249
- #: includes/views/setup-wizard/show-action-buttons.php:18
1250
- msgid "Show action buttons"
1251
- msgstr ""
1252
-
1253
- #: includes/views/wcpdf-extensions.php:16
1254
- msgid "Check out these premium extensions!"
1255
- msgstr "Lihat ekstensi premium ini!"
1256
-
1257
- #: includes/views/wcpdf-extensions.php:17
1258
- msgid "click items to read more"
1259
- msgstr "Klik item untuk membaca lebih lanjut"
1260
-
1261
- #: includes/views/wcpdf-extensions.php:22
1262
- msgid ""
1263
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
1264
- "system"
1265
- msgstr ""
1266
-
1267
- #: includes/views/wcpdf-extensions.php:24
1268
- msgid ""
1269
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
1270
- "premium extensions:"
1271
- msgstr ""
1272
-
1273
- #: includes/views/wcpdf-extensions.php:25
1274
- msgid "Professional features:"
1275
- msgstr ""
1276
-
1277
- #: includes/views/wcpdf-extensions.php:27
1278
- #: includes/views/wcpdf-extensions.php:57
1279
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
1280
- msgstr "Email / print / download <b> PDF Credit Notes & Proforma invoice </ b>"
1281
-
1282
- #: includes/views/wcpdf-extensions.php:28
1283
- #: includes/views/wcpdf-extensions.php:58
1284
- msgid ""
1285
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1286
- "packing slips, for example to a drop-shipper or a supplier."
1287
- msgstr ""
1288
- "Kirimkan email pemberitahuan <b> terpisah </ b> dengan (atau tanpa) slip "
1289
- "faktur / kemasan iPod, misalnya ke pengirim barang atau pemasok."
1290
-
1291
- #: includes/views/wcpdf-extensions.php:29
1292
- #: includes/views/wcpdf-extensions.php:59
1293
- msgid ""
1294
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1295
- "document) to the WooCommerce emails of your choice."
1296
- msgstr ""
1297
- "Lampirkan <b> hingga 3 file statis </ b> (misalnya dokumen persyaratan & "
1298
- "ketentuan) ke email WooCommerce pilihan Anda."
1299
-
1300
- #: includes/views/wcpdf-extensions.php:30
1301
- #: includes/views/wcpdf-extensions.php:60
1302
- msgid ""
1303
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1304
- "and credit notes or utilize the main invoice numbering system"
1305
- msgstr ""
1306
- "Gunakan <b> sistem penomoran yang terpisah </ b> dan / atau format untuk "
1307
- "proforma faktur dan nota kredit atau memanfaatkan sistem penomoran faktur "
1308
- "utama"
1309
-
1310
- #: includes/views/wcpdf-extensions.php:31
1311
- #: includes/views/wcpdf-extensions.php:61
1312
- msgid ""
1313
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1314
- "additional custom fields, font sizes etc. without the need to create a "
1315
- "custom template."
1316
- msgstr ""
1317
- "<B> Sesuaikan </ b> <b> alamat pengiriman & penagihan </ b> untuk "
1318
- "menyertakan bidang khusus tambahan, ukuran font, dll. Tanpa perlu membuat "
1319
- "template khusus."
1320
-
1321
- #: includes/views/wcpdf-extensions.php:32
1322
- #: includes/views/wcpdf-extensions.php:62
1323
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1324
- msgstr "Gunakan plugin dalam setup bahasa multi bahasa <b> WPML </ b>"
1325
-
1326
- #: includes/views/wcpdf-extensions.php:34
1327
- #: includes/views/wcpdf-extensions.php:114
1328
- msgid "Advanced, customizable templates"
1329
- msgstr ""
1330
-
1331
- #: includes/views/wcpdf-extensions.php:36
1332
- #: includes/views/wcpdf-extensions.php:117
1333
- msgid ""
1334
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1335
- "your needs with a drag & drop customizer"
1336
- msgstr ""
1337
-
1338
- #: includes/views/wcpdf-extensions.php:37
1339
- #: includes/views/wcpdf-extensions.php:118
1340
- msgid "Two extra stylish premade templates (Modern & Business)"
1341
- msgstr ""
1342
-
1343
- #: includes/views/wcpdf-extensions.php:39
1344
- #: includes/views/wcpdf-extensions.php:63
1345
- msgid "Upload automatically to dropbox"
1346
- msgstr ""
1347
-
1348
- #: includes/views/wcpdf-extensions.php:41
1349
- msgid ""
1350
- "This extension conveniently uploads all the invoices (and other pdf "
1351
- "documents from the professional extension) that are emailed to your "
1352
- "customers to Dropbox. The best way to keep your invoice administration up to "
1353
- "date!"
1354
- msgstr ""
1355
- "Ekstensi ini dengan mudah mengunggah semua faktur (dan dokumen pdf lainnya "
1356
- "dari ekstensi profesional) yang dikirim melalui email kepada pelanggan Anda "
1357
- "ke Dropbox. Cara terbaik untuk menjaga agar administrasi faktur Anda tetap "
1358
- "up to date!"
1359
-
1360
- #: includes/views/wcpdf-extensions.php:44
1361
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1362
- msgstr ""
1363
-
1364
- #: includes/views/wcpdf-extensions.php:53
1365
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1366
- msgstr ""
1367
- "Go Pro: Faktur proforma, catatan kredit (= pengembalian uang) & banyak lagi!"
1368
-
1369
- #: includes/views/wcpdf-extensions.php:55
1370
- msgid ""
1371
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1372
- "features:"
1373
- msgstr ""
1374
- "Supercharge WooCommerce PDF Invoices & Packing Slips dengan beberapa fitur "
1375
- "berikut:"
1376
-
1377
- #: includes/views/wcpdf-extensions.php:65
1378
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1379
- msgstr "Dapatkan WooCommerce PDF Invoices & Packing Slips Professional!"
1380
-
1381
- #: includes/views/wcpdf-extensions.php:73
1382
- msgid "Automatically send payment reminders to your customers"
1383
- msgstr ""
1384
-
1385
- #: includes/views/wcpdf-extensions.php:75
1386
- msgid "WooCommerce Smart Reminder emails"
1387
- msgstr ""
1388
-
1389
- #: includes/views/wcpdf-extensions.php:77
1390
- msgid "<b>Completely automatic</b> scheduled emails"
1391
- msgstr ""
1392
-
1393
- #: includes/views/wcpdf-extensions.php:78
1394
- msgid ""
1395
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1396
- "from the order (name, order total, etc)"
1397
- msgstr ""
1398
-
1399
- #: includes/views/wcpdf-extensions.php:79
1400
- msgid ""
1401
- "Configure the exact requirements for sending an email (time after order, "
1402
- "order status, payment method)"
1403
- msgstr ""
1404
-
1405
- #: includes/views/wcpdf-extensions.php:80
1406
- msgid ""
1407
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1408
- "order language."
1409
- msgstr ""
1410
-
1411
- #: includes/views/wcpdf-extensions.php:81
1412
- msgid ""
1413
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1414
- "reminders, repeat purchases)"
1415
- msgstr ""
1416
-
1417
- #: includes/views/wcpdf-extensions.php:82
1418
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1419
- msgstr ""
1420
-
1421
- #: includes/views/wcpdf-extensions.php:84
1422
- msgid "Get WooCommerce Smart Reminder Emails"
1423
- msgstr ""
1424
-
1425
- #: includes/views/wcpdf-extensions.php:93
1426
- msgid ""
1427
- "Automatically send new orders or packing slips to your printer, as soon as "
1428
- "the customer orders!"
1429
- msgstr ""
1430
- "Secara otomatis mengirim pesanan baru atau mengepak slip ke printer Anda, "
1431
- "segera setelah pesanan pelanggan!"
1432
-
1433
- #: includes/views/wcpdf-extensions.php:99
1434
- msgid ""
1435
- "Check out the WooCommerce Automatic Order Printing extension from our "
1436
- "partners at Simba Hosting"
1437
- msgstr ""
1438
- "Lihat ekstensi WooCommerce Automatic Order Printing dari mitra kami di Simba "
1439
- "Hosting"
1440
-
1441
- #: includes/views/wcpdf-extensions.php:100
1442
- msgid "WooCommerce Automatic Order Printing"
1443
- msgstr "WooCommerce Automatic Order Printing"
1444
-
1445
- #. translators: Premium Templates link
1446
- #: includes/views/wcpdf-extensions.php:120
1447
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1448
- msgstr "Lihat template Premium Invoice & Packing Slips Premium di %s ."
1449
-
1450
- #. translators: email link
1451
- #: includes/views/wcpdf-extensions.php:122
1452
- msgid "For custom templates, contact us at %s."
1453
- msgstr "Untuk template khusus, hubungi kami di %s ."
1454
-
1455
- #: includes/views/wcpdf-settings-page.php:9
1456
- msgid "WooCommerce PDF Invoices"
1457
- msgstr "WooCommerce PDF Faktur"
1458
-
1459
- #: includes/wcpdf-functions.php:209
1460
- msgid "Error creating PDF, please contact the site owner."
1461
- msgstr ""
1462
-
1463
- #: templates/Simple/invoice.php:35 templates/Simple/packing-slip.php:48
1464
- msgid "Billing Address:"
1465
- msgstr "Alamat tagihan:"
1466
-
1467
- #: templates/Simple/invoice.php:48
1468
- msgid "Ship To:"
1469
- msgstr "Dikirim ke:"
1470
-
1471
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1472
- msgid "Order Number:"
1473
- msgstr "Jumlah order:"
1474
-
1475
- #: templates/Simple/invoice.php:74 templates/Simple/packing-slip.php:62
1476
- msgid "Order Date:"
1477
- msgstr "Tanggal pemesanan:"
1478
-
1479
- #: templates/Simple/invoice.php:78
1480
- msgid "Payment Method:"
1481
- msgstr "Metode pembayaran:"
1482
-
1483
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:80
1484
- msgid "Product"
1485
- msgstr "Produk"
1486
-
1487
- #: templates/Simple/invoice.php:93 templates/Simple/packing-slip.php:81
1488
- msgid "Quantity"
1489
- msgstr "Kuantitas"
1490
-
1491
- #: templates/Simple/invoice.php:94
1492
- msgid "Price"
1493
- msgstr "Harga"
1494
-
1495
- #: templates/Simple/invoice.php:106 templates/Simple/packing-slip.php:93
1496
- msgid "SKU"
1497
- msgstr "SKU"
1498
-
1499
- #: templates/Simple/invoice.php:107 templates/Simple/packing-slip.php:94
1500
- msgid "SKU:"
1501
- msgstr "SKU:"
1502
-
1503
- #: templates/Simple/invoice.php:108 templates/Simple/packing-slip.php:95
1504
- msgid "Weight:"
1505
- msgstr "Berat:"
1506
-
1507
- #: templates/Simple/invoice.php:123
1508
- msgid "Notes"
1509
- msgstr ""
1510
-
1511
- #: templates/Simple/invoice.php:131 templates/Simple/packing-slip.php:112
1512
- msgid "Customer Notes"
1513
- msgstr "Catatan Pelanggan"
1514
-
1515
- #: templates/Simple/packing-slip.php:35
1516
- msgid "Shipping Address:"
1517
- msgstr "Alamat Pengiriman:"
1518
-
1519
- #: templates/Simple/packing-slip.php:66
1520
- msgid "Shipping Method:"
1521
- msgstr "Metode pengiriman:"
1522
-
1523
- #. translators: <a> tags
1524
- #: woocommerce-pdf-invoices-packingslips.php:271
1525
- msgid ""
1526
- "WooCommerce PDF Invoices & Packing Slips requires %1$sWooCommerce%2$s to be "
1527
- "installed & activated!"
1528
- msgstr ""
1529
-
1530
- #: woocommerce-pdf-invoices-packingslips.php:282
1531
- msgid ""
1532
- "WooCommerce PDF Invoices & Packing Slips requires PHP 7.1 (7.4 or higher "
1533
- "recommended)."
1534
- msgstr ""
1535
-
1536
- #. translators: <a> tags
1537
- #: woocommerce-pdf-invoices-packingslips.php:284
1538
- msgid "We strongly recommend to %1$supdate your PHP version%2$s."
1539
- msgstr ""
1540
-
1541
- #. translators: <a> tags
1542
- #: woocommerce-pdf-invoices-packingslips.php:286
1543
- msgid ""
1544
- "If you cannot upgrade your PHP version, you can download %1$sthis addon%2$s "
1545
- "to enable backwards compatibility with PHP5.6."
1546
- msgstr ""
1547
-
1548
- #. translators: directory path
1549
- #: woocommerce-pdf-invoices-packingslips.php:374
1550
- msgid ""
1551
- "The PDF files in %s are not currently protected due to your site running on "
1552
- "<strong>NGINX</strong>."
1553
- msgstr ""
1554
-
1555
- #: woocommerce-pdf-invoices-packingslips.php:375
1556
- msgid "To protect them, you must click the button below."
1557
- msgstr ""
1558
-
1559
- #. translators: plugin name
1560
- #: woocommerce-pdf-invoices-packingslips.php:419
1561
- msgid ""
1562
- "When sending emails with MailPoet 3 and the active sending method is "
1563
- "MailPoet Sending Service, MailPoet does not include the %s attachments in "
1564
- "the emails."
1565
- msgstr ""
1566
-
1567
- #. translators: "Your web host / web server"
1568
- #: woocommerce-pdf-invoices-packingslips.php:421
1569
- msgid "To fix this you should select other method like %1$s or %2$s."
1570
- msgstr ""
1571
-
1572
- #. translators: "Your web host / web server"
1573
- #: woocommerce-pdf-invoices-packingslips.php:421
1574
- msgid "Your web host / web server"
1575
- msgstr ""
1576
-
1577
- #: woocommerce-pdf-invoices-packingslips.php:422
1578
- msgid "Change MailPoet sending method"
1579
- msgstr ""
1580
-
1581
- #~ msgid "h"
1582
- #~ msgstr "H"
1583
-
1584
- #~ msgid "m"
1585
- #~ msgstr "M"
1586
-
1587
- #, php-format
1588
- #~ msgid ""
1589
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
1590
- #~ "your (child) theme in <code>%s</code> to customize them"
1591
- #~ msgstr ""
1592
- #~ "Ingin menggunakan template anda sendiri? Salin semua file dari <code> %s "
1593
- #~ "</ code> ke tema (anak) Anda di <code> %s </ code> untuk menyesuaikannya"
1594
-
1595
- #~ msgid "Settings"
1596
- #~ msgstr "Pengaturan"
1597
-
1598
- #~ msgid "Disable for free products"
1599
- #~ msgstr "Nonaktifkan untuk produk gratis"
1600
-
1601
- #~ msgid "Upload all invoices automatically to your dropbox"
1602
- #~ msgstr "Upload semua faktur secara otomatis ke dropbox Anda"
1603
-
1604
- #~ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
1605
- #~ msgstr "Dapatkan WooCommerce PDF Invoices & Packing Slips to dropbox!"
1606
-
1607
- #, php-format
1608
- #~ msgid ""
1609
- #~ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1610
- #~ "installed & activated!"
1611
- #~ msgstr ""
1612
- #~ "WooCommerce PDF Invoices & Packing Slips membutuhkan %s WooCommerce %s "
1613
- #~ "untuk diinstal & diaktifkan!"
1614
-
1615
- #~ msgid "Attach invoice to:"
1616
- #~ msgstr "Lampirkan faktur ke:"
1617
-
1618
- #~ msgid ""
1619
- #~ "Display shipping address on invoice (in addition to the default billing "
1620
- #~ "address) if different from billing address"
1621
- #~ msgstr ""
1622
- #~ "Tampilkan alamat pengiriman pada faktur (di samping alamat penagihan "
1623
- #~ "default) jika berbeda dengan alamat penagihan"
1624
-
1625
- #~ msgid ""
1626
- #~ "This is the number that will be used on the next invoice that is created. "
1627
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
1628
- #~ "first invoice that is created and increases for every new invoice. Note "
1629
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
1630
- #~ "number, this could create double invoice numbers!"
1631
- #~ msgstr ""
1632
- #~ "Ini adalah nomor yang akan digunakan pada faktur berikutnya yang dibuat. "
1633
- #~ "Secara default, penomoran dimulai dari Nomor Pesanan WooCommerce dari "
1634
- #~ "faktur pertama yang dibuat dan meningkat untuk setiap faktur baru. "
1635
- #~ "Perhatikan bahwa jika Anda mengganti ini dan menetapkannya lebih rendah "
1636
- #~ "dari angka faktur tertinggi (PDF), ini bisa membuat nomor faktur ganda!"
1637
-
1638
- #~ msgid "Invoice number format"
1639
- #~ msgstr "Format nomor faktur"
1640
-
1641
- #~ msgid ""
1642
- #~ "Disable automatic creation/attachment of invoices when only free products "
1643
- #~ "are ordered"
1644
- #~ msgstr ""
1645
- #~ "Nonaktifkan pembuatan otomatis / lampiran faktur bila hanya produk gratis "
1646
- #~ "yang dipesan"
1647
-
1648
- #~ msgid ""
1649
- #~ "Display billing address on packing slip (in addition to the default "
1650
- #~ "shipping address) if different from shipping address"
1651
- #~ msgstr ""
1652
- #~ "Tampilkan alamat penagihan pada slip pengepakan (selain alamat pengiriman "
1653
- #~ "default) jika berbeda dari alamat pengiriman"
1654
-
1655
- #~ msgid "Template"
1656
- #~ msgstr "Template"
1657
-
1658
- #~ msgid "Admin New Order email"
1659
- #~ msgstr "Email Admin Orde Baru"
1660
-
1661
- #~ msgid "Customer Processing Order email"
1662
- #~ msgstr "Email pesanan pemrosesan pelanggan"
1663
-
1664
- #~ msgid "Customer Completed Order email"
1665
- #~ msgstr "Pelanggan Selesai email Orde"
1666
-
1667
- #~ msgid "Customer Invoice email"
1668
- #~ msgstr "Email faktur pelanggan"
1669
-
1670
- #~ msgid "Interface"
1671
- #~ msgstr "Interface"
1672
-
1673
- #~ msgid "PDF Template settings"
1674
- #~ msgstr "Pengaturan template PDF"
1675
-
1676
- #~ msgid "Display built-in sequential invoice number"
1677
- #~ msgstr "Menampilkan nomor faktur berurutan built-in"
1678
-
1679
- #~ msgid ""
1680
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
1681
- #~ "respectively"
1682
- #~ msgstr ""
1683
- #~ "Untuk menggunakan pesanan tahun dan / atau bulan, gunakan [order_year] "
1684
- #~ "atau [order_month] masing-masing"
1685
-
1686
- #~ msgid "Use old tmp folder"
1687
- #~ msgstr "Gunakan folder tmp lama"
1688
-
1689
- #~ msgid ""
1690
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
1691
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
1692
- #~ "not recommended on new installs!"
1693
- #~ msgstr ""
1694
- #~ "Sebelum versi 1.5 dari Faktur PDF, file-file sementara disimpan dalam "
1695
- #~ "folder plugin. Pengaturan ini hanya ditujukan untuk kompatibilitas "
1696
- #~ "mundur, tidak disarankan pada pemasangan baru!"
1697
-
1698
- #~ msgid "PDF Packing Slips"
1699
- #~ msgstr "PDF Packing Slips"
1700
-
1701
- #~ msgid "PDF Invoice"
1702
- #~ msgstr "Faktur PDF"
1703
-
1704
- #~ msgid "PDF Packing Slip"
1705
- #~ msgstr "PDF Packing Slip"
1706
-
1707
- #~ msgid "PDF Invoice Number (unformatted!)"
1708
- #~ msgstr "Nomor Faktur PDF (belum diformat!)"
1709
-
1710
- #~ msgid "More advanced templates"
1711
- #~ msgstr "Template yang lebih maju"
1712
-
1713
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
1714
- #~ msgstr ""
1715
- #~ "Bingkisan modern yang trendi & slip kemasan dengan thumbnail produk!"
1716
-
1717
- #~ msgid "More tax details on the invoices!"
1718
- #~ msgstr "Detail pajak lebih banyak pada faktur!"
1719
-
1720
- #~ msgid ""
1721
- #~ "Attach a <b>static file</b> (for example a terms & conditions document) "
1722
- #~ "to the WooCommerce emails of your choice."
1723
- #~ msgstr ""
1724
- #~ "Hinzufügen einer beliebigen <b>Datei </b> (beispielweise AGB, "
1725
- #~ "Widerrufsbelehrung) zum WooCommerce E-Mail"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
5
+ "invoices-packing-slips\n"
6
+ "POT-Creation-Date: 2021-10-26T18:14:01+00:00\n"
7
+ "PO-Revision-Date: 2021-10-27 01:23-0400\n"
8
+ "Last-Translator: WP Overnight <support@wpovernight.com>\n"
9
+ "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
10
+ "Language: id_ID\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 3.0\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #. Plugin Name of the plugin
22
+ msgid "WooCommerce PDF Invoices & Packing Slips"
23
+ msgstr "WooCommerce PDF Invoices & Packing Slips"
24
+
25
+ #. Plugin URI of the plugin
26
+ #. Author URI of the plugin
27
+ msgid "http://www.wpovernight.com"
28
+ msgstr "http://www.wpovernight.com"
29
+
30
+ #. Description of the plugin
31
+ msgid ""
32
+ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
33
+ msgstr ""
34
+
35
+ #. Author of the plugin
36
+ msgid "Ewout Fernhout"
37
+ msgstr "Ewout Fernhout"
38
+
39
+ #. translators: rounded count
40
+ #: includes/class-wcpdf-admin.php:92
41
+ msgid "Wow, you have created more than %d invoices with our plugin!"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:93
45
+ msgid ""
46
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
47
+ "rating. Help us spread the word and boost our motivation!"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:95
51
+ msgid "Yes you deserve it!"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:96 includes/class-wcpdf-main.php:605
55
+ #: includes/views/attachment-settings-hint.php:24
56
+ #: includes/views/wcpdf-extensions.php:131
57
+ #: woocommerce-pdf-invoices-packingslips.php:377
58
+ #: woocommerce-pdf-invoices-packingslips.php:423
59
+ msgid "Hide this message"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-admin.php:96
63
+ msgid "Already did!"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-admin.php:97
67
+ msgid "Actually, I have a complaint..."
68
+ msgstr ""
69
+
70
+ #: includes/class-wcpdf-admin.php:132
71
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-admin.php:132
75
+ msgid "Jumpstart the plugin by following our wizard!"
76
+ msgstr ""
77
+
78
+ #: includes/class-wcpdf-admin.php:133
79
+ msgid "Run the Setup Wizard"
80
+ msgstr ""
81
+
82
+ #: includes/class-wcpdf-admin.php:133
83
+ msgid "I am the wizard"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-admin.php:224 includes/class-wcpdf-main.php:918
87
+ #: includes/documents/class-wcpdf-invoice.php:302
88
+ msgid "Invoice Number"
89
+ msgstr "Nomor faktur"
90
+
91
+ #: includes/class-wcpdf-admin.php:261
92
+ msgid "Send order email"
93
+ msgstr ""
94
+
95
+ #: includes/class-wcpdf-admin.php:272
96
+ msgid "Create PDF"
97
+ msgstr "Buat PDF"
98
+
99
+ #: includes/class-wcpdf-admin.php:282
100
+ msgid "PDF document data"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcpdf-admin.php:304
104
+ msgid "Choose an email to send&hellip;"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-admin.php:320
108
+ msgid "Save order & send email"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-admin.php:322
112
+ msgid "Send email"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-admin.php:378
116
+ #: includes/documents/class-wcpdf-invoice.php:460
117
+ msgid "Invoice Number:"
118
+ msgstr "Nomor faktur:"
119
+
120
+ #: includes/class-wcpdf-admin.php:381
121
+ #: includes/documents/class-wcpdf-invoice.php:468
122
+ msgid "Invoice Date:"
123
+ msgstr "Tanggal faktur:"
124
+
125
+ #: includes/class-wcpdf-admin.php:384
126
+ msgid "Notes (printed in the invoice):"
127
+ msgstr ""
128
+
129
+ #. translators: document title
130
+ #: includes/class-wcpdf-admin.php:469
131
+ msgid "Set %s number & date"
132
+ msgstr ""
133
+
134
+ #: includes/class-wcpdf-admin.php:478
135
+ msgid "unformatted!"
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-admin.php:518
139
+ msgid "Save changes"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-admin.php:519
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
146
+ #. translators: name/description of the context for document creation logs
147
+ #: includes/class-wcpdf-admin.php:598 includes/class-wcpdf-admin.php:832
148
+ msgid "order details (number and/or date set manually)"
149
+ msgstr ""
150
+
151
+ #. translators: %s: email title
152
+ #: includes/class-wcpdf-admin.php:647
153
+ msgid "%s email notification manually sent."
154
+ msgstr ""
155
+
156
+ #: includes/class-wcpdf-admin.php:734
157
+ msgid "Nonce expired!"
158
+ msgstr ""
159
+
160
+ #: includes/class-wcpdf-admin.php:740
161
+ msgid "Bad action!"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcpdf-admin.php:746
165
+ msgid "Incomplete request!"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-admin.php:752
169
+ msgid "No permissions!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-admin.php:776
173
+ msgid "Document data saved!"
174
+ msgstr ""
175
+
176
+ #: includes/class-wcpdf-admin.php:777
177
+ msgid "An error occurred while saving the document data!"
178
+ msgstr ""
179
+
180
+ #: includes/class-wcpdf-admin.php:780
181
+ msgid "Document regenerated!"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-admin.php:781
185
+ msgid "An error occurred while regenerating the document!"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-admin.php:784
189
+ msgid "Document deleted!"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-admin.php:785
193
+ msgid "An error occurred while deleting the document!"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-admin.php:841
197
+ msgid "Document does not exist."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcpdf-admin.php:850
201
+ msgid "Document is empty."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcpdf-admin.php:881
205
+ msgid "DEBUG output enabled"
206
+ msgstr ""
207
+
208
+ #: includes/class-wcpdf-assets.php:94
209
+ msgid "Are you sure you want to delete this document? This cannot be undone."
210
+ msgstr ""
211
+
212
+ #: includes/class-wcpdf-assets.php:95
213
+ msgid ""
214
+ "Are you sure you want to regenerate this document? This will make the "
215
+ "document reflect the most current settings (such as footer text, document "
216
+ "name, etc.) rather than using historical settings."
217
+ msgstr ""
218
+
219
+ #: includes/class-wcpdf-frontend.php:129
220
+ msgid "Download invoice (PDF)"
221
+ msgstr "Download faktur (PDF)"
222
+
223
+ #: includes/class-wcpdf-main.php:258 includes/class-wcpdf-main.php:263
224
+ #: includes/class-wcpdf-main.php:337
225
+ msgid "You do not have sufficient permissions to access this page."
226
+ msgstr "Anda tidak memiliki izin yang memadai untuk mengakses halaman ini."
227
+
228
+ #: includes/class-wcpdf-main.php:272
229
+ msgid "You haven't selected any orders"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-main.php:276
233
+ msgid "Some of the export parameters are missing."
234
+ msgstr "Beberapa parameter ekspor hilang."
235
+
236
+ #. translators: document type
237
+ #: includes/class-wcpdf-main.php:378
238
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
239
+ msgstr ""
240
+
241
+ #. translators: 1. plugin name, 2. directory path
242
+ #: includes/class-wcpdf-main.php:603
243
+ msgid "The %1$s directory %2$s couldn't be created or is not writable!"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-main.php:604
247
+ msgid ""
248
+ "Please check your directories write permissions or contact your hosting "
249
+ "service provider."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-main.php:919
253
+ #: includes/documents/class-wcpdf-invoice.php:286
254
+ msgid "Invoice Date"
255
+ msgstr ""
256
+
257
+ #. translators: name/description of the context for document creation logs
258
+ #: includes/class-wcpdf-main.php:949
259
+ msgid "bulk order action"
260
+ msgstr ""
261
+
262
+ #. translators: name/description of the context for document creation logs
263
+ #: includes/class-wcpdf-main.php:957
264
+ msgid "single order action"
265
+ msgstr ""
266
+
267
+ #. translators: name/description of the context for document creation logs
268
+ #: includes/class-wcpdf-main.php:965
269
+ msgid "my account"
270
+ msgstr ""
271
+
272
+ #. translators: name/description of the context for document creation logs
273
+ #: includes/class-wcpdf-main.php:973
274
+ msgid "email attachment"
275
+ msgstr ""
276
+
277
+ #. translators: 1. document title, 2. creation source
278
+ #: includes/class-wcpdf-main.php:982
279
+ msgid "PDF %1$s created via %2$s."
280
+ msgstr ""
281
+
282
+ #. translators: document title
283
+ #: includes/class-wcpdf-main.php:1026
284
+ msgid "Order %s Saved"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings-callbacks.php:27
288
+ msgid ""
289
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
290
+ "Do not use them on a live website!"
291
+ msgstr ""
292
+ "<B> Peringatan! </ B> Pengaturan di bawah dimaksudkan untuk debugging / "
293
+ "pengembangan saja. Jangan gunakan mereka di situs web live!"
294
+
295
+ #: includes/class-wcpdf-settings-callbacks.php:36
296
+ msgid ""
297
+ "These are used for the (optional) footer columns in the <em>Modern "
298
+ "(Premium)</em> template, but can also be used for other elements in your "
299
+ "custom template"
300
+ msgstr ""
301
+ "Ini digunakan untuk kolom footer (opsional) di template <em> Modern "
302
+ "(Premium) </ em>, namun juga dapat digunakan untuk elemen lain dalam "
303
+ "template khusus Anda"
304
+
305
+ #: includes/class-wcpdf-settings-callbacks.php:384
306
+ msgid "Image resolution"
307
+ msgstr "Resolusi gambar"
308
+
309
+ #: includes/class-wcpdf-settings-callbacks.php:411
310
+ msgid "Save"
311
+ msgstr ""
312
+
313
+ #: includes/class-wcpdf-settings-debug.php:45
314
+ #: woocommerce-pdf-invoices-packingslips.php:376
315
+ msgid "Generate random temporary folder name"
316
+ msgstr ""
317
+
318
+ #. translators: directory path
319
+ #: includes/class-wcpdf-settings-debug.php:58
320
+ msgid "Temporary folder moved to %s"
321
+ msgstr ""
322
+
323
+ #: includes/class-wcpdf-settings-debug.php:68
324
+ msgid "Reinstall fonts"
325
+ msgstr ""
326
+
327
+ #: includes/class-wcpdf-settings-debug.php:89
328
+ msgid "Fonts reinstalled!"
329
+ msgstr ""
330
+
331
+ #: includes/class-wcpdf-settings-debug.php:98
332
+ msgid "Remove temporary files"
333
+ msgstr ""
334
+
335
+ #: includes/class-wcpdf-settings-debug.php:109
336
+ msgid "Unable to read temporary folder contents!"
337
+ msgstr ""
338
+
339
+ #. translators: 1,2. file count
340
+ #: includes/class-wcpdf-settings-debug.php:127
341
+ msgid "Unable to delete %1$d files! (deleted %2$d)"
342
+ msgstr ""
343
+
344
+ #. translators: file count
345
+ #: includes/class-wcpdf-settings-debug.php:131
346
+ msgid "Successfully deleted %d files!"
347
+ msgstr ""
348
+
349
+ #: includes/class-wcpdf-settings-debug.php:135
350
+ msgid "Nothing to delete!"
351
+ msgstr ""
352
+
353
+ #: includes/class-wcpdf-settings-debug.php:146
354
+ msgid "Delete legacy (1.X) settings"
355
+ msgstr ""
356
+
357
+ #: includes/class-wcpdf-settings-debug.php:162
358
+ msgid "Legacy settings deleted!"
359
+ msgstr ""
360
+
361
+ #: includes/class-wcpdf-settings-debug.php:192
362
+ msgid "Debug settings"
363
+ msgstr "Pengaturan Debug"
364
+
365
+ #: includes/class-wcpdf-settings-debug.php:198
366
+ msgid "Legacy mode"
367
+ msgstr ""
368
+
369
+ #: includes/class-wcpdf-settings-debug.php:204
370
+ msgid ""
371
+ "Legacy mode ensures compatibility with templates and filters from previous "
372
+ "versions."
373
+ msgstr ""
374
+
375
+ #: includes/class-wcpdf-settings-debug.php:210
376
+ msgid "Legacy textdomain fallback"
377
+ msgstr ""
378
+
379
+ #: includes/class-wcpdf-settings-debug.php:216
380
+ msgid ""
381
+ "Legacy textdomain fallback ensures compatibility with translation files from "
382
+ "versions prior to 2017-05-15."
383
+ msgstr ""
384
+
385
+ #: includes/class-wcpdf-settings-debug.php:222
386
+ msgid "Allow guest access"
387
+ msgstr ""
388
+
389
+ #: includes/class-wcpdf-settings-debug.php:228
390
+ msgid ""
391
+ "Enable this to allow customers that purchase without an account to access "
392
+ "their PDF with a unique key"
393
+ msgstr ""
394
+
395
+ #: includes/class-wcpdf-settings-debug.php:234
396
+ msgid "Calculate document numbers (slow)"
397
+ msgstr ""
398
+
399
+ #: includes/class-wcpdf-settings-debug.php:240
400
+ msgid ""
401
+ "Document numbers (such as invoice numbers) are generated using "
402
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
403
+ "with more than 1."
404
+ msgstr ""
405
+
406
+ #: includes/class-wcpdf-settings-debug.php:246
407
+ msgid "Enable debug output"
408
+ msgstr "Aktifkan keluaran debug"
409
+
410
+ #: includes/class-wcpdf-settings-debug.php:252
411
+ msgid ""
412
+ "Enable this option to output plugin errors if you're getting a blank page or "
413
+ "other PDF generation issues"
414
+ msgstr ""
415
+ "Aktifkan opsi ini untuk menampilkan kesalahan plugin jika Anda mendapatkan "
416
+ "halaman kosong atau masalah generasi PDF lainnya"
417
+
418
+ #: includes/class-wcpdf-settings-debug.php:253
419
+ msgid ""
420
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
421
+ "places on your site too, therefor this is not recommended to leave it "
422
+ "enabled on live sites."
423
+ msgstr ""
424
+
425
+ #: includes/class-wcpdf-settings-debug.php:254
426
+ msgid ""
427
+ "You can also add <code>&debug=true</code> to the URL to apply this on a per-"
428
+ "order basis."
429
+ msgstr ""
430
+
431
+ #: includes/class-wcpdf-settings-debug.php:260
432
+ msgid "Enable automatic cleanup"
433
+ msgstr ""
434
+
435
+ #. translators: number of days
436
+ #: includes/class-wcpdf-settings-debug.php:268
437
+ msgid "every %s days"
438
+ msgstr ""
439
+
440
+ #: includes/class-wcpdf-settings-debug.php:273
441
+ msgid ""
442
+ "Automatically clean up PDF files stored in the temporary folder (used for "
443
+ "email attachments)"
444
+ msgstr ""
445
+
446
+ #: includes/class-wcpdf-settings-debug.php:274
447
+ msgid ""
448
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
449
+ "automatic cleanup but not enabled on your server."
450
+ msgstr ""
451
+
452
+ #: includes/class-wcpdf-settings-debug.php:280
453
+ msgid "Output to HTML"
454
+ msgstr "Keluaran ke HTML"
455
+
456
+ #: includes/class-wcpdf-settings-debug.php:286
457
+ msgid ""
458
+ "Send the template output as HTML to the browser instead of creating a PDF."
459
+ msgstr ""
460
+ "Kirimkan output template sebagai HTML ke browser alih-alih membuat PDF."
461
+
462
+ #: includes/class-wcpdf-settings-debug.php:287
463
+ msgid ""
464
+ "You can also add <code>&output=html</code> to the URL to apply this on a per-"
465
+ "order basis."
466
+ msgstr ""
467
+
468
+ #: includes/class-wcpdf-settings-debug.php:293
469
+ msgid "Use alternative HTML5 parser to parse HTML"
470
+ msgstr ""
471
+
472
+ #: includes/class-wcpdf-settings-debug.php:304
473
+ msgid "Log to order notes"
474
+ msgstr ""
475
+
476
+ #: includes/class-wcpdf-settings-debug.php:310
477
+ msgid "Log PDF document creation to order notes."
478
+ msgstr ""
479
+
480
+ #: includes/class-wcpdf-settings-documents.php:30
481
+ #: includes/class-wcpdf-settings.php:104
482
+ msgid "Documents"
483
+ msgstr ""
484
+
485
+ #: includes/class-wcpdf-settings-documents.php:36
486
+ #: includes/class-wcpdf-settings-documents.php:57
487
+ msgid "untitled"
488
+ msgstr ""
489
+
490
+ #: includes/class-wcpdf-settings-documents.php:50
491
+ msgid ""
492
+ "All available documents are listed below. Click on a document to configure "
493
+ "it."
494
+ msgstr ""
495
+
496
+ #: includes/class-wcpdf-settings-general.php:40
497
+ msgid "General settings"
498
+ msgstr "Pengaturan Umum"
499
+
500
+ #: includes/class-wcpdf-settings-general.php:46
501
+ msgid "How do you want to view the PDF?"
502
+ msgstr "Bagaimana Anda ingin melihat PDF?"
503
+
504
+ #: includes/class-wcpdf-settings-general.php:53
505
+ msgid "Download the PDF"
506
+ msgstr "Download PDF"
507
+
508
+ #: includes/class-wcpdf-settings-general.php:54
509
+ msgid "Open the PDF in a new browser tab/window"
510
+ msgstr "Buka PDF di tab / jendela browser baru"
511
+
512
+ #: includes/class-wcpdf-settings-general.php:61
513
+ msgid "Choose a template"
514
+ msgstr "Pilih template"
515
+
516
+ #. translators: 1,2. template paths
517
+ #: includes/class-wcpdf-settings-general.php:69
518
+ msgid ""
519
+ "Want to use your own template? Copy all the files from <code>%1$s</code> to "
520
+ "your (child) theme in <code>%2$s</code> to customize them"
521
+ msgstr ""
522
+
523
+ #: includes/class-wcpdf-settings-general.php:75
524
+ msgid "Paper size"
525
+ msgstr "Ukuran kertas"
526
+
527
+ #: includes/class-wcpdf-settings-general.php:82
528
+ #: includes/views/setup-wizard/paper-format.php:12
529
+ msgid "A4"
530
+ msgstr "A4"
531
+
532
+ #: includes/class-wcpdf-settings-general.php:83
533
+ #: includes/views/setup-wizard/paper-format.php:13
534
+ msgid "Letter"
535
+ msgstr "Surat"
536
+
537
+ #: includes/class-wcpdf-settings-general.php:90
538
+ msgid "Test mode"
539
+ msgstr ""
540
+
541
+ #: includes/class-wcpdf-settings-general.php:96
542
+ msgid ""
543
+ "With test mode enabled, any document generated will always use the latest "
544
+ "settings, rather than using the settings as configured at the time the "
545
+ "document was first created."
546
+ msgstr ""
547
+
548
+ #: includes/class-wcpdf-settings-general.php:96
549
+ msgid ""
550
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
551
+ "setting and will still be generated."
552
+ msgstr ""
553
+
554
+ #: includes/class-wcpdf-settings-general.php:102
555
+ msgid "Extended currency symbol support"
556
+ msgstr ""
557
+
558
+ #: includes/class-wcpdf-settings-general.php:108
559
+ msgid "Enable this if your currency symbol is not displaying properly"
560
+ msgstr ""
561
+
562
+ #: includes/class-wcpdf-settings-general.php:114
563
+ msgid "Enable font subsetting"
564
+ msgstr ""
565
+
566
+ #: includes/class-wcpdf-settings-general.php:120
567
+ msgid ""
568
+ "Font subsetting can reduce file size by only including the characters that "
569
+ "are used in the PDF, but limits the ability to edit PDF files later. "
570
+ "Recommended if you're using an Asian font."
571
+ msgstr ""
572
+
573
+ #: includes/class-wcpdf-settings-general.php:126
574
+ msgid "Shop header/logo"
575
+ msgstr "Shop header / logo"
576
+
577
+ #: includes/class-wcpdf-settings-general.php:132
578
+ #: includes/views/setup-wizard/logo.php:20
579
+ msgid "Select or upload your invoice header/logo"
580
+ msgstr "Pilih atau upload header / logo faktur Anda"
581
+
582
+ #: includes/class-wcpdf-settings-general.php:133
583
+ #: includes/views/setup-wizard/logo.php:20
584
+ msgid "Set image"
585
+ msgstr "Set gambar"
586
+
587
+ #: includes/class-wcpdf-settings-general.php:134
588
+ #: includes/views/setup-wizard/logo.php:20
589
+ msgid "Remove image"
590
+ msgstr "Hapus gambar"
591
+
592
+ #: includes/class-wcpdf-settings-general.php:141
593
+ msgid "Logo height"
594
+ msgstr ""
595
+
596
+ #: includes/class-wcpdf-settings-general.php:149
597
+ msgid ""
598
+ "Enter the total height of the logo in mm, cm or in and use a dot for "
599
+ "decimals.<br/>For example: 1.15in or 40mm"
600
+ msgstr ""
601
+
602
+ #: includes/class-wcpdf-settings-general.php:155
603
+ #: includes/class-wcpdf-setup-wizard.php:49
604
+ msgid "Shop Name"
605
+ msgstr "Nama toko"
606
+
607
+ #: includes/class-wcpdf-settings-general.php:168
608
+ msgid "Shop Address"
609
+ msgstr "Alamat toko"
610
+
611
+ #: includes/class-wcpdf-settings-general.php:183
612
+ msgid "Footer: terms & conditions, policies, etc."
613
+ msgstr "Footer: syarat & ketentuan, kebijakan, dll."
614
+
615
+ #: includes/class-wcpdf-settings-general.php:198
616
+ msgid "Extra template fields"
617
+ msgstr "Zusätzliche Vorlagenfelder "
618
+
619
+ #: includes/class-wcpdf-settings-general.php:204
620
+ msgid "Extra field 1"
621
+ msgstr "Zusatzfeld 1 "
622
+
623
+ #: includes/class-wcpdf-settings-general.php:212
624
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
625
+ msgstr "Ini adalah kolom footer 1 di template <i> Modern (Premium) </ i>"
626
+
627
+ #: includes/class-wcpdf-settings-general.php:219
628
+ msgid "Extra field 2"
629
+ msgstr "Bidang tambahan 2"
630
+
631
+ #: includes/class-wcpdf-settings-general.php:227
632
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
633
+ msgstr "Ini adalah kolom footer 2 di template <i> Modern (Premium) </ i>"
634
+
635
+ #: includes/class-wcpdf-settings-general.php:234
636
+ msgid "Extra field 3"
637
+ msgstr "Bidang tambahan 3"
638
+
639
+ #: includes/class-wcpdf-settings-general.php:242
640
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
641
+ msgstr "Ini adalah kolom footer 3 di template <i> Modern (Premium) </ i>"
642
+
643
+ #: includes/class-wcpdf-settings-general.php:290
644
+ msgid "Custom"
645
+ msgstr ""
646
+
647
+ #: includes/class-wcpdf-settings.php:55 includes/class-wcpdf-settings.php:56
648
+ msgid "PDF Invoices"
649
+ msgstr "Faktur PDF"
650
+
651
+ #: includes/class-wcpdf-settings.php:81
652
+ msgid "Documentation"
653
+ msgstr ""
654
+
655
+ #: includes/class-wcpdf-settings.php:82
656
+ msgid "Support Forum"
657
+ msgstr ""
658
+
659
+ #. translators: database row value
660
+ #: includes/class-wcpdf-settings.php:95
661
+ msgid ""
662
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
663
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
664
+ "document numbers (slow)' setting in the Status tab to use an alternate "
665
+ "method."
666
+ msgstr ""
667
+
668
+ #: includes/class-wcpdf-settings.php:103
669
+ msgid "General"
670
+ msgstr "Umum"
671
+
672
+ #: includes/class-wcpdf-settings.php:109 includes/views/dompdf-status.php:188
673
+ msgid "Status"
674
+ msgstr "Status"
675
+
676
+ #. translators: 1. path, 2. template ID
677
+ #: includes/class-wcpdf-settings.php:396
678
+ msgid "Template setting migrated from %1$s to %2$s"
679
+ msgstr ""
680
+
681
+ #: includes/class-wcpdf-setup-wizard.php:53
682
+ #: includes/views/setup-wizard/logo.php:3
683
+ msgid "Your logo"
684
+ msgstr ""
685
+
686
+ #: includes/class-wcpdf-setup-wizard.php:57
687
+ msgid "Attachments"
688
+ msgstr ""
689
+
690
+ #: includes/class-wcpdf-setup-wizard.php:61
691
+ #: includes/views/setup-wizard/display-options.php:3
692
+ msgid "Display options"
693
+ msgstr ""
694
+
695
+ #: includes/class-wcpdf-setup-wizard.php:65
696
+ #: includes/views/setup-wizard/paper-format.php:3
697
+ msgid "Paper format"
698
+ msgstr ""
699
+
700
+ #: includes/class-wcpdf-setup-wizard.php:69
701
+ #: includes/views/setup-wizard/show-action-buttons.php:3
702
+ msgid "Action buttons"
703
+ msgstr ""
704
+
705
+ #: includes/class-wcpdf-setup-wizard.php:73
706
+ msgid "Ready!"
707
+ msgstr ""
708
+
709
+ #: includes/class-wcpdf-setup-wizard.php:135
710
+ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
711
+ msgstr ""
712
+
713
+ #: includes/class-wcpdf-setup-wizard.php:187
714
+ msgid "Previous"
715
+ msgstr ""
716
+
717
+ #: includes/class-wcpdf-setup-wizard.php:192
718
+ msgid "Next"
719
+ msgstr ""
720
+
721
+ #: includes/class-wcpdf-setup-wizard.php:193
722
+ msgid "Skip this step"
723
+ msgstr ""
724
+
725
+ #: includes/class-wcpdf-setup-wizard.php:195
726
+ msgid "Finish"
727
+ msgstr ""
728
+
729
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
730
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
731
+ msgid "N/A"
732
+ msgstr "N / A"
733
+
734
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
735
+ msgid "Payment method"
736
+ msgstr "Metode pembayaran"
737
+
738
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
739
+ msgid "Shipping method"
740
+ msgstr "Metode pengiriman"
741
+
742
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:927
743
+ msgid "Subtotal"
744
+ msgstr "Subtotal"
745
+
746
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:952
747
+ msgid "Shipping"
748
+ msgstr "pengiriman"
749
+
750
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1015
751
+ msgid "Discount"
752
+ msgstr "Diskon"
753
+
754
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1056
755
+ msgid "VAT"
756
+ msgstr "TONG"
757
+
758
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1057
759
+ msgid "Tax rate"
760
+ msgstr "Persentase pajak"
761
+
762
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1101
763
+ msgid "Total ex. VAT"
764
+ msgstr "Total mantan TONG"
765
+
766
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1104
767
+ msgid "Total"
768
+ msgstr "Total"
769
+
770
+ #. translators: 1. credit note title, 2. refund id
771
+ #: includes/documents/abstract-wcpdf-order-document.php:336
772
+ msgid "%1$s (refund #%2$s) was regenerated."
773
+ msgstr ""
774
+
775
+ #. translators: 1. credit note title, 2. refund id
776
+ #: includes/documents/abstract-wcpdf-order-document.php:336
777
+ msgid "%s was regenerated"
778
+ msgstr ""
779
+
780
+ #. translators: %s: document name
781
+ #: includes/documents/abstract-wcpdf-order-document.php:422
782
+ msgid "%s Number:"
783
+ msgstr ""
784
+
785
+ #. translators: %s: document name
786
+ #: includes/documents/abstract-wcpdf-order-document.php:428
787
+ msgid "%s Date:"
788
+ msgstr ""
789
+
790
+ #: includes/documents/abstract-wcpdf-order-document.php:904
791
+ msgid "Admin email"
792
+ msgstr ""
793
+
794
+ #: includes/documents/abstract-wcpdf-order-document.php:907
795
+ msgid "Manual email"
796
+ msgstr ""
797
+
798
+ #: includes/documents/class-wcpdf-invoice.php:32
799
+ #: includes/documents/class-wcpdf-invoice.php:56
800
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
801
+ msgid "Invoice"
802
+ msgstr "Faktur"
803
+
804
+ # This is a filename (prefix). do not use spaces or special characters!
805
+ #: includes/documents/class-wcpdf-invoice.php:131
806
+ msgid "invoice"
807
+ msgid_plural "invoices"
808
+ msgstr[0] "faktur"
809
+
810
+ #: includes/documents/class-wcpdf-invoice.php:186
811
+ #: includes/documents/class-wcpdf-packing-slip.php:88
812
+ msgid "Enable"
813
+ msgstr ""
814
+
815
+ #: includes/documents/class-wcpdf-invoice.php:197
816
+ msgid "Attach to:"
817
+ msgstr ""
818
+
819
+ #. translators: directo