WooCommerce PDF Invoices - Version 2.9.3

Version Description

  • July 5, 2017 =

  • Added: 'wpi_template_name' filter to change the template based on specific order variables. See FAQ.

  • Added: 'wpi_email_types' filter to add email types.

  • Fixed: PDF abortion error by not using date format from settings for [order-date] since it can have slashes.

  • Fixed: Missing argument 3 fatal error due to 'woocommerce_checkout_order_processed' hook used by third party plugins.

  • Removed: Greyed out WooCommerce Subscriptions emails.

Download this release

Release Info

Developer baaaaas
Plugin Icon 128x128 WooCommerce PDF Invoices
Version 2.9.3
Comparing to
See all releases

Code changes from version 2.9.2 to 2.9.3

bootstrap.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PDF Invoices
4
  * Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
5
  * Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
6
- * Version: 2.9.2
7
  * Author: Bas Elbers
8
  * Author URI: http://wcpdfinvoices.com
9
  * License: GPL-2.0+
@@ -17,9 +17,9 @@ defined( 'ABSPATH' ) or exit;
17
  /**
18
  * @deprecated instead use WPI_VERSION.
19
  */
20
- define( 'BEWPI_VERSION', '2.9.2' );
21
 
22
- define( 'WPI_VERSION', '2.9.2' );
23
 
24
  /**
25
  * Load WooCommerce PDF Invoices plugin.
@@ -95,7 +95,7 @@ add_action( 'plugins_loaded', '_bewpi_load_plugin', 10 );
95
  function _bewpi_on_plugin_update() {
96
  $current_version = get_site_option( 'bewpi_version' );
97
 
98
- if ( $current_version === false ) {
99
 
100
  // First time creation of directories.
101
  WPI()->setup_directories();
@@ -129,6 +129,11 @@ function _bewpi_on_plugin_update() {
129
  rename( BEWPI_CUSTOM_TEMPLATES_INVOICES_DIR, $upload_dir['basedir'] . '/bewpi-templates/invoice' );
130
  }
131
 
 
 
 
 
 
132
  set_time_limit( $max_execution_time );
133
 
134
  update_site_option( 'bewpi_version', WPI_VERSION );
@@ -278,6 +283,29 @@ function move_pdf_invoices() {
278
  }
279
  }
280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
  /**
282
  * Save install date, plugin version to db and set transient to show activation notice.
283
  *
3
  * Plugin Name: WooCommerce PDF Invoices
4
  * Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
5
  * Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
6
+ * Version: 2.9.3
7
  * Author: Bas Elbers
8
  * Author URI: http://wcpdfinvoices.com
9
  * License: GPL-2.0+
17
  /**
18
  * @deprecated instead use WPI_VERSION.
19
  */
20
+ define( 'BEWPI_VERSION', '2.9.3' );
21
 
22
+ define( 'WPI_VERSION', '2.9.3' );
23
 
24
  /**
25
  * Load WooCommerce PDF Invoices plugin.
95
  function _bewpi_on_plugin_update() {
96
  $current_version = get_site_option( 'bewpi_version' );
97
 
98
+ if ( false === $current_version ) {
99
 
100
  // First time creation of directories.
101
  WPI()->setup_directories();
129
  rename( BEWPI_CUSTOM_TEMPLATES_INVOICES_DIR, $upload_dir['basedir'] . '/bewpi-templates/invoice' );
130
  }
131
 
132
+ // version 2.9.2- need to update "Attach to Emails" option to recursive structure.
133
+ if ( version_compare( $current_version, '2.9.2' ) <= 0 ) {
134
+ update_email_types_options_to_recursive();
135
+ }
136
+
137
  set_time_limit( $max_execution_time );
138
 
139
  update_site_option( 'bewpi_version', WPI_VERSION );
283
  }
284
  }
285
 
286
+ /**
287
+ * Update email types options to recursive array structure.
288
+ */
289
+ function update_email_types_options_to_recursive() {
290
+ $general_options = get_option( 'bewpi_general_settings' );
291
+ $email_types = array( 'new_order', 'customer_on_hold_order', 'customer_processing_order', 'customer_completed_order', 'customer_invoice', 'new_renewal_order', 'customer_completed_switch_order', 'customer_processing_renewal_order', 'customer_completed_renewal_order', 'customer_renewal_invoice' );
292
+
293
+ foreach ( $email_types as $email_type ) {
294
+
295
+ if ( isset( $general_options[ $email_type ] ) ) {
296
+ $general_options['bewpi_email_types'] = array(
297
+ $email_type => $general_options[ $email_type ],
298
+ );
299
+
300
+ // Remove older option.
301
+ unset( $general_options[ $email_type ] );
302
+ }
303
+
304
+ }
305
+
306
+ update_option( 'bewpi_general_settings', $general_options );
307
+ }
308
+
309
  /**
310
  * Save install date, plugin version to db and set transient to show activation notice.
311
  *
includes/abstracts/abstract-document.php CHANGED
@@ -16,6 +16,13 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
16
  */
17
  abstract class BEWPI_Abstract_Document {
18
 
 
 
 
 
 
 
 
19
  /**
20
  * Type of document like invoice, packing slip or credit note.
21
  *
16
  */
17
  abstract class BEWPI_Abstract_Document {
18
 
19
+ /**
20
+ * ID of document.
21
+ *
22
+ * @var int.
23
+ */
24
+ protected $id;
25
+
26
  /**
27
  * Type of document like invoice, packing slip or credit note.
28
  *
includes/abstracts/abstract-invoice.php CHANGED
@@ -72,8 +72,6 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
72
 
73
  $this->full_path = self::exists( $order_id );
74
  if ( $this->full_path ) {
75
- $order_id = BEWPI_WC_Order_Compatibility::get_id( $this->order );
76
-
77
  $this->number = get_post_meta( $order_id, '_bewpi_invoice_number', true );
78
  $this->date = get_post_meta( $order_id, '_bewpi_invoice_date', true );
79
  $this->year = date_i18n( 'Y', strtotime( $this->date ) );
@@ -97,12 +95,12 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
97
  */
98
  public function get_formatted_number() {
99
  // format number with the number of digits.
100
- $digitized_invoice_number = sprintf( '%0' . $this->template_options['bewpi_invoice_number_digits'] . 's', $this->number );
101
  $formatted_invoice_number = str_replace(
102
  array( '[number]', '[order-date]', '[order-number]', '[Y]', '[y]', '[m]' ),
103
  array(
104
  $digitized_invoice_number,
105
- apply_filters( 'bewpi_formatted_invoice_number_order_date', $this->get_formatted_order_date() ),
106
  $this->order->get_order_number(),
107
  $this->year,
108
  date_i18n( 'y', strtotime( $this->date ) ),
@@ -129,12 +127,22 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
129
  /**
130
  * Format and localize (MySQL) invoice date.
131
  *
 
132
  * @return string
133
  */
134
  public function get_formatted_invoice_date() {
135
  return date_i18n( $this->get_date_format(), strtotime( $this->date ) );
136
  }
137
 
 
 
 
 
 
 
 
 
 
138
  /**
139
  * Delete invoice PDF files.
140
  *
@@ -219,7 +227,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
219
  *
220
  * @return int
221
  */
222
- private function get_next_invoice_number() {
223
  // uses WooCommerce order numbers as invoice numbers?
224
  if ( 'woocommerce_order_number' === $this->template_options['bewpi_invoice_number_type'] ) {
225
  return $this->order->get_order_number();
72
 
73
  $this->full_path = self::exists( $order_id );
74
  if ( $this->full_path ) {
 
 
75
  $this->number = get_post_meta( $order_id, '_bewpi_invoice_number', true );
76
  $this->date = get_post_meta( $order_id, '_bewpi_invoice_date', true );
77
  $this->year = date_i18n( 'Y', strtotime( $this->date ) );
95
  */
96
  public function get_formatted_number() {
97
  // format number with the number of digits.
98
+ $digitized_invoice_number = sprintf( '%0' . WPI()->get_option( 'template', 'invoice_number_digits' ) . 's', $this->number );
99
  $formatted_invoice_number = str_replace(
100
  array( '[number]', '[order-date]', '[order-number]', '[Y]', '[y]', '[m]' ),
101
  array(
102
  $digitized_invoice_number,
103
+ date_i18n( apply_filters( 'bewpi_formatted_invoice_number_order_date_format', 'Y-m-d' ), strtotime( $this->date ) ),
104
  $this->order->get_order_number(),
105
  $this->year,
106
  date_i18n( 'y', strtotime( $this->date ) ),
127
  /**
128
  * Format and localize (MySQL) invoice date.
129
  *
130
+ * @deprecated Use get_formatted_date instead.
131
  * @return string
132
  */
133
  public function get_formatted_invoice_date() {
134
  return date_i18n( $this->get_date_format(), strtotime( $this->date ) );
135
  }
136
 
137
+ /**
138
+ * Format and localize (MySQL) invoice date.
139
+ *
140
+ * @return string
141
+ */
142
+ public function get_formatted_date() {
143
+ return date_i18n( $this->get_date_format(), strtotime( $this->date ) );
144
+ }
145
+
146
  /**
147
  * Delete invoice PDF files.
148
  *
227
  *
228
  * @return int
229
  */
230
+ protected function get_next_invoice_number() {
231
  // uses WooCommerce order numbers as invoice numbers?
232
  if ( 'woocommerce_order_number' === $this->template_options['bewpi_invoice_number_type'] ) {
233
  return $this->order->get_order_number();
includes/abstracts/abstract-settings.php CHANGED
@@ -209,6 +209,17 @@ abstract class BEWPI_Abstract_Settings {
209
  };
210
  }
211
 
 
 
 
 
 
 
 
 
 
 
 
212
  /**
213
  * Gets all the tags that are allowed.
214
  *
@@ -348,8 +359,7 @@ abstract class BEWPI_Abstract_Settings {
348
  ?>
349
  />
350
  <?php if ( $is_checkbox ) { ?>
351
- <label for="<?php echo $args['id']; ?>"
352
- class="<?php echo $class; ?>"><?php echo $args['desc']; ?></label>
353
  <?php } else { ?>
354
  <div class="<?php echo $class; ?>"><?php echo $args['desc']; ?></div>
355
  <?php } ?>
@@ -378,7 +388,21 @@ abstract class BEWPI_Abstract_Settings {
378
  * @return array
379
  */
380
  protected function get_defaults() {
381
- return wp_list_pluck( $this->fields, 'default', 'name' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  }
383
 
384
  /**
@@ -387,9 +411,29 @@ abstract class BEWPI_Abstract_Settings {
387
  * @return bool
388
  */
389
  protected function set_defaults() {
390
- $options = array_merge( $this->defaults, (array) get_option( $this->settings_key ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
- return update_option( $this->settings_key, $options );
393
  }
394
 
395
  /**
209
  };
210
  }
211
 
212
+ /**
213
+ * Format all available invoice number placeholders.
214
+ *
215
+ * @return string
216
+ */
217
+ protected static function formatted_number_placeholders() {
218
+ $placeholders = array( '[number]', '[order-number]', '[order-date]', '[m]', '[Y]', '[y]' );
219
+
220
+ return '<code>' . join( '</code>, <code>', $placeholders ) . '</code>';
221
+ }
222
+
223
  /**
224
  * Gets all the tags that are allowed.
225
  *
359
  ?>
360
  />
361
  <?php if ( $is_checkbox ) { ?>
362
+ <label for="<?php echo $args['id']; ?>" class="<?php echo $class; ?>"><?php echo $args['desc']; ?></label>
 
363
  <?php } else { ?>
364
  <div class="<?php echo $class; ?>"><?php echo $args['desc']; ?></div>
365
  <?php } ?>
388
  * @return array
389
  */
390
  protected function get_defaults() {
391
+ $fields = $this->fields;
392
+ $defaults = array();
393
+
394
+ // Remove multiple checkbox types from settings.
395
+ foreach ( $fields as $index => $field ) {
396
+ if ( isset( $field['type'] ) && 'multiple_checkbox' === $field['type'] ) {
397
+ // Add options defaults.
398
+ $defaults[ $field['name'] ] = wp_list_pluck( $field['options'], 'default', 'value' );
399
+ unset( $fields[ $index ] );
400
+ }
401
+ }
402
+
403
+ $defaults = wp_parse_args( $defaults, wp_list_pluck( $fields, 'default', 'name' ) );
404
+
405
+ return $defaults;
406
  }
407
 
408
  /**
411
  * @return bool
412
  */
413
  protected function set_defaults() {
414
+ $options = get_option( $this->settings_key );
415
+
416
+ // Initialize options.
417
+ if ( false === $options ) {
418
+ return add_option( $this->settings_key, $this->defaults );
419
+ }
420
+
421
+ // Recursive merge options with defaults.
422
+ foreach ( $this->defaults as $key => $value ) {
423
+
424
+ if ( ! isset( $options[ $key ] ) ) {
425
+ continue;
426
+ }
427
+
428
+ if ( is_array( $options[ $key ] ) ) {
429
+ $this->defaults[ $key ] = array_merge( $value, $options[ $key ] );
430
+ } else {
431
+ $this->defaults[ $key ] = $options[ $key ];
432
+ }
433
+
434
+ }
435
 
436
+ return update_option( $this->settings_key, $this->defaults );
437
  }
438
 
439
  /**
includes/admin/settings/class-general.php CHANGED
@@ -30,39 +30,6 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
30
  parent::__construct();
31
  }
32
 
33
- /**
34
- * Get all default values from the settings array.
35
- *
36
- * @return array
37
- */
38
- public function get_defaults() {
39
- $fields = $this->get_fields();
40
-
41
- // Remove multiple checkbox types from settings.
42
- foreach ( $fields as $index => $field ) {
43
- if ( array_key_exists( 'type', $field ) && 'multiple_checkbox' === $field['type'] ) {
44
- unset( $fields[ $index ] );
45
- }
46
- }
47
-
48
- return array_merge( $this->get_multiple_checkbox_defaults(), wp_list_pluck( $fields, 'default', 'name' ) );
49
- }
50
-
51
- /**
52
- * Fetch all multiple checkbox option defaults from settings.
53
- */
54
- private function get_multiple_checkbox_defaults() {
55
- $defaults = array();
56
-
57
- foreach ( $this->fields as $field ) {
58
- if ( array_key_exists( 'type', $field ) && 'multiple_checkbox' === $field['type'] ) {
59
- $defaults = array_merge( $defaults, wp_list_pluck( $field['options'], 'default', 'value' ) );
60
- }
61
- }
62
-
63
- return $defaults;
64
- }
65
-
66
  /**
67
  * Get all sections.
68
  *
@@ -72,7 +39,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
72
  $sections = array(
73
  'email' => array(
74
  'title' => __( 'Email Options', 'woocommerce-pdf-invoices' ),
75
- 'description' => sprintf( __( 'The PDF invoice will be generated when WooCommerce sends the corresponding email. The email should be <a href="%1$s">enabled</a> in order to automatically generate the PDF invoice.', 'woocommerce-pdf-invoices' ), 'admin.php?page=wc-settings&tab=email' ),
76
  ),
77
  'download' => array(
78
  'title' => __( 'Download Options', 'woocommerce-pdf-invoices' ),
@@ -108,7 +75,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
108
  'section' => 'email',
109
  'type' => 'multiple_checkbox',
110
  'desc' => '',
111
- 'options' => array(
112
  array(
113
  'name' => __( 'New order', 'woocommerce-pdf-invoices' ),
114
  'value' => 'new_order',
@@ -134,50 +101,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
134
  'value' => 'customer_invoice',
135
  'default' => 0,
136
  ),
137
- ),
138
- ),
139
- array(
140
- 'id' => 'bewpi-woocommerce-subscriptions-email-types',
141
- 'name' => $this->prefix . 'woocommerce_subscriptions_email_types',
142
- 'title' => sprintf( __( 'Attach to %s Emails', 'woocommerce-pdf-invoices' ), 'WooCommerce Subscriptions' )
143
- . sprintf( ' <img src="%1$s" alt="%2$s" title="%2$s" width="18"/>', WPI_URL . '/assets/images/star-icon.png', __( 'Premium', 'woocommerce-pdf-invoices' ) ),
144
- 'callback' => array( $this, 'multiple_checkbox_callback' ),
145
- 'page' => $this->settings_key,
146
- 'section' => 'email',
147
- 'type' => 'multiple_checkbox',
148
- 'desc' => '',
149
- 'options' => array(
150
- array(
151
- 'name' => __( 'New Renewal Order', 'woocommerce-subscriptions' ),
152
- 'value' => 'new_renewal_order',
153
- 'default' => 0,
154
- 'disabled' => 1,
155
- ),
156
- array(
157
- 'name' => __( 'Subscription Switch Complete', 'woocommerce-subscriptions' ),
158
- 'value' => 'customer_completed_switch_order',
159
- 'default' => 0,
160
- 'disabled' => 1,
161
- ),
162
- array(
163
- 'name' => __( 'Processing Renewal order', 'woocommerce-subscriptions' ),
164
- 'value' => 'customer_processing_renewal_order',
165
- 'default' => 0,
166
- 'disabled' => 1,
167
- ),
168
- array(
169
- 'name' => __( 'Completed Renewal Order', 'woocommerce-subscriptions' ),
170
- 'value' => 'customer_completed_renewal_order',
171
- 'default' => 0,
172
- 'disabled' => 1,
173
- ),
174
- array(
175
- 'name' => __( 'Customer Renewal Invoice', 'woocommerce-subscriptions' ),
176
- 'value' => 'customer_renewal_invoice',
177
- 'default' => 0,
178
- 'disabled' => 1,
179
- ),
180
- ),
181
  ),
182
  array(
183
  'id' => 'bewpi-disable-free-products',
@@ -289,12 +213,21 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
289
  *
290
  * @param array $input settings.
291
  *
292
- * @return mixed|void
293
  */
294
  public function sanitize( $input ) {
295
  $output = get_option( $this->settings_key );
296
 
297
  foreach ( $input as $key => $value ) {
 
 
 
 
 
 
 
 
 
298
  // Strip all html and properly handle quoted strings.
299
  $output[ $key ] = stripslashes( $input[ $key ] );
300
  }
30
  parent::__construct();
31
  }
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  /**
34
  * Get all sections.
35
  *
39
  $sections = array(
40
  'email' => array(
41
  'title' => __( 'Email Options', 'woocommerce-pdf-invoices' ),
42
+ 'description' => sprintf( __( 'The PDF invoice will be generated when WooCommerce sends the corresponding email. The email should be <a href="%1$s">enabled</a> in order to automatically generate the PDF invoice. Want to attach PDF documents to many more email types? Take a look at %2$s.', 'woocommerce-pdf-invoices' ), 'admin.php?page=wc-settings&tab=email', '<a href="https://wcpdfinvoices.com" target="_blank">WooCommerce PDF Invoices Premium</a>' ),
43
  ),
44
  'download' => array(
45
  'title' => __( 'Download Options', 'woocommerce-pdf-invoices' ),
75
  'section' => 'email',
76
  'type' => 'multiple_checkbox',
77
  'desc' => '',
78
+ 'options' => apply_filters( 'wpi_email_types', array(
79
  array(
80
  'name' => __( 'New order', 'woocommerce-pdf-invoices' ),
81
  'value' => 'new_order',
101
  'value' => 'customer_invoice',
102
  'default' => 0,
103
  ),
104
+ ) ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  ),
106
  array(
107
  'id' => 'bewpi-disable-free-products',
213
  *
214
  * @param array $input settings.
215
  *
216
+ * @return mixed
217
  */
218
  public function sanitize( $input ) {
219
  $output = get_option( $this->settings_key );
220
 
221
  foreach ( $input as $key => $value ) {
222
+ if ( ! isset( $input[ $key ] ) ) {
223
+ continue;
224
+ }
225
+
226
+ if ( is_array( $input[ $key ] ) ) {
227
+ $output[ $key ] = $input[ $key ];
228
+ continue;
229
+ }
230
+
231
  // Strip all html and properly handle quoted strings.
232
  $output[ $key ] = stripslashes( $input[ $key ] );
233
  }
includes/admin/settings/class-template.php CHANGED
@@ -616,16 +616,5 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
616
  $options['bewpi_template_name'] = $defaults['bewpi_template_name'];
617
  update_option( $this->settings_key, $options );
618
  }
619
-
620
- /**
621
- * Format all available invoice number placeholders.
622
- *
623
- * @return string
624
- */
625
- protected static function formatted_number_placeholders() {
626
- $placeholders = array( '[number]', '[order-number]', '[order-date]', '[m]', '[Y]', '[y]' );
627
-
628
- return '<code>' . join( '</code>, <code>', $placeholders ) . '</code>';
629
- }
630
  }
631
  }
616
  $options['bewpi_template_name'] = $defaults['bewpi_template_name'];
617
  update_option( $this->settings_key, $options );
618
  }
 
 
 
 
 
 
 
 
 
 
 
619
  }
620
  }
includes/admin/views/html-multiple-checkbox-setting.php CHANGED
@@ -10,16 +10,18 @@
10
  * @version 1.0.0
11
  */
12
 
13
- $options = get_option( $args['page'] ); ?>
 
 
14
  <ul id="<?php echo esc_html( $args['id'] ); ?>">
15
  <?php
16
  foreach ( $args['options'] as $arg ) {
17
- $name = sprintf( '%1$s[%2$s]', $args['page'], $arg['value'] );
18
  $disabled = isset( $arg['disabled'] ) && $arg['disabled'];
19
  ?>
20
  <li>
21
- <input type="hidden" name="<?php echo esc_attr( $name ); ?>" value="0" <?php echo ( $disabled ) ? 'disabled="disabled"' : ''; ?>/>
22
- <input id="<?php echo $arg['value']; ?>" type="checkbox" name="<?php echo esc_attr( $name ); ?>" value="1" <?php checked( $options[ $arg['value'] ], 1 ); ?> <?php echo ( $disabled ) ? 'disabled="disabled"' : ''; ?>/>
23
  <label for="<?php echo $arg['value']; ?>"">
24
  <?php echo esc_html( $arg['name'] ); ?>
25
  </label>
10
  * @version 1.0.0
11
  */
12
 
13
+ $page_options = get_option( $args['page'] );
14
+ $options = $page_options[ $args['name'] ];
15
+ ?>
16
  <ul id="<?php echo esc_html( $args['id'] ); ?>">
17
  <?php
18
  foreach ( $args['options'] as $arg ) {
19
+ $name = sprintf( '%1$s[%2$s][%3$s]', $args['page'], $args['name'], $arg['value'] );
20
  $disabled = isset( $arg['disabled'] ) && $arg['disabled'];
21
  ?>
22
  <li>
23
+ <input type="hidden" name="<?php echo esc_attr( $name ); ?>" value="0" />
24
+ <input id="<?php echo $arg['value']; ?>" type="checkbox" name="<?php echo esc_attr( $name ); ?>" value="1" <?php checked( $options[ $arg['value'] ], 1 ); ?> />
25
  <label for="<?php echo $arg['value']; ?>"">
26
  <?php echo esc_html( $arg['name'] ); ?>
27
  </label>
includes/class-template.php CHANGED
@@ -31,7 +31,7 @@ class BEWPI_Template {
31
  /**
32
  * WooCommerce PDF Invoices invoice.
33
  *
34
- * @var BEWPI_Invoice.
35
  */
36
  public $invoice;
37
 
@@ -94,9 +94,10 @@ class BEWPI_Template {
94
  */
95
  public function get_template( $type ) {
96
  $template = array();
 
97
 
98
  // get template name from template options.
99
- $name = $this->get_option( 'bewpi_template_name' );
100
 
101
  // first check custom directory, second plugin directory.
102
  foreach ( $this->directories as $directory ) {
@@ -121,6 +122,13 @@ class BEWPI_Template {
121
  return $template;
122
  }
123
 
 
 
 
 
 
 
 
124
  /**
125
  * Get absolute paths of all invoice/simple templates.
126
  *
@@ -326,7 +334,7 @@ class BEWPI_Template {
326
  /**
327
  * Set invoice.
328
  *
329
- * @param BEWPI_Invoice $invoice WooCommerce PDF Invoices invoice object.
330
  */
331
  public function set_invoice( $invoice ) {
332
  $this->invoice = $invoice;
31
  /**
32
  * WooCommerce PDF Invoices invoice.
33
  *
34
+ * @var BEWPI_Abstract_Invoice.
35
  */
36
  public $invoice;
37
 
94
  */
95
  public function get_template( $type ) {
96
  $template = array();
97
+ $order_id = BEWPI_WC_Order_Compatibility::get_id( WPI()->templater()->get_order() );
98
 
99
  // get template name from template options.
100
+ $name = apply_filters( 'wpi_template_name', WPI()->get_option( 'template', 'template_name' ), $type, $order_id );
101
 
102
  // first check custom directory, second plugin directory.
103
  foreach ( $this->directories as $directory ) {
122
  return $template;
123
  }
124
 
125
+ /**
126
+ * @param $directory
127
+ */
128
+ public function add_directory( $directory ) {
129
+ $this->directories[] = $directory;
130
+ }
131
+
132
  /**
133
  * Get absolute paths of all invoice/simple templates.
134
  *
334
  /**
335
  * Set invoice.
336
  *
337
+ * @param BEWPI_Abstract_Invoice $invoice invoice object.
338
  */
339
  public function set_invoice( $invoice ) {
340
  $this->invoice = $invoice;
includes/compatibility/class-wc-order-compatibility.php CHANGED
@@ -53,7 +53,7 @@ if ( ! class_exists( 'BEWPI_WC_Order_Compatibility' ) ) :
53
  * Backports WC_Order::get_id() method to pre-2.6.0
54
  *
55
  * @since 4.2.0
56
- * @param WC_Order $order order object
57
  *
58
  * @return string|int order ID
59
  */
@@ -96,12 +96,12 @@ if ( ! class_exists( 'BEWPI_WC_Order_Compatibility' ) ) :
96
  *
97
  * @since 4.6.0
98
  *
99
- * @param \WC_Order $order order object
100
  * @param string $context if 'view' then the value will be filtered
101
  *
102
  * @return \WC_DateTime|null
103
  */
104
- public static function get_date_created( WC_Order $order, $context = 'edit' ) {
105
 
106
  return self::get_date_prop( $order, 'created', $context );
107
  }
@@ -162,13 +162,13 @@ if ( ! class_exists( 'BEWPI_WC_Order_Compatibility' ) ) :
162
  *
163
  * @since 4.6.0
164
  *
165
- * @param \WC_Order $order order object
166
  * @param string $type type of date to get
167
  * @param string $context if 'view' then the value will be filtered
168
  *
169
  * @return \WC_DateTime|null
170
  */
171
- public static function get_date_prop( WC_Order $order, $type, $context = 'edit' ) {
172
 
173
  $date = null;
174
  $prop = "date_{$type}";
53
  * Backports WC_Order::get_id() method to pre-2.6.0
54
  *
55
  * @since 4.2.0
56
+ * @param WC_Abstract_Order $order order object
57
  *
58
  * @return string|int order ID
59
  */
96
  *
97
  * @since 4.6.0
98
  *
99
+ * @param \WC_Abstract_Order $order order object
100
  * @param string $context if 'view' then the value will be filtered
101
  *
102
  * @return \WC_DateTime|null
103
  */
104
+ public static function get_date_created( WC_Abstract_Order $order, $context = 'edit' ) {
105
 
106
  return self::get_date_prop( $order, 'created', $context );
107
  }
162
  *
163
  * @since 4.6.0
164
  *
165
+ * @param \WC_Abstract_Order $order order object
166
  * @param string $type type of date to get
167
  * @param string $context if 'view' then the value will be filtered
168
  *
169
  * @return \WC_DateTime|null
170
  */
171
+ public static function get_date_prop( WC_Abstract_Order $order, $type, $context = 'edit' ) {
172
 
173
  $date = null;
174
  $prop = "date_{$type}";
includes/compatibility/class-wc-payment-gateway-compatibility.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WooCommerce Plugin Framework
4
+ *
5
+ * This source file is subject to the GNU General Public License v3.0
6
+ * that is bundled with this package in the file license.txt.
7
+ * It is also available through the world-wide-web at this URL:
8
+ * http://www.gnu.org/licenses/gpl-3.0.html
9
+ * If you did not receive a copy of the license and are unable to
10
+ * obtain it through the world-wide-web, please send an email
11
+ * to license@skyverge.com so we can send you a copy immediately.
12
+ *
13
+ * DISCLAIMER
14
+ *
15
+ * Do not edit or add to this file if you wish to upgrade the plugin to newer
16
+ * versions in the future. If you wish to customize the plugin for your
17
+ * needs please refer to http://www.skyverge.com
18
+ *
19
+ * @package SkyVerge/WooCommerce/Compatibility
20
+ * @author SkyVerge
21
+ * @copyright Copyright (c) 2013-2017, SkyVerge, Inc.
22
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
23
+ */
24
+
25
+ defined( 'ABSPATH' ) or exit;
26
+
27
+ if ( ! class_exists( 'BEWPI_WC_Payment_Gateway_Compatibility' ) ) :
28
+
29
+ /**
30
+ * Backports the \WC_Payment_Gateway class.
31
+ */
32
+ class BEWPI_WC_Payment_Gateway_Compatibility extends DateTime {
33
+
34
+ /**
35
+ * Get method title.
36
+ *
37
+ * @param WC_Payment_Gateway $payment_gateway WC payment gateway object.
38
+ *
39
+ * @return mixed
40
+ */
41
+ public static function get_method_title( $payment_gateway ) {
42
+
43
+ if ( method_exists( $payment_gateway, 'get_method_title' ) ) {
44
+ $method_title = $payment_gateway->get_method_title();
45
+ } else {
46
+ $method_title = $payment_gateway->method_title;
47
+ }
48
+
49
+ return $method_title;
50
+ }
51
+
52
+ }
53
+
54
+ endif;
includes/woocommerce-pdf-invoices.php CHANGED
@@ -149,7 +149,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
149
  $this->frontend_init_hooks();
150
  }
151
 
152
- add_action( 'woocommerce_checkout_order_processed', array( __CLASS__, 'set_order' ), 10, 3 );
153
 
154
  // @todo Move to BEWPI_Invoice class.
155
  add_filter( 'woocommerce_email_headers', array( $this, 'add_emailitin_as_recipient' ), 10, 3 );
@@ -404,7 +404,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
404
  /**
405
  * Add "Email It In" email address as BCC to WooCommerce email.
406
  *
407
- * @param array $headers email headers.
408
  * @param string $status email name.
409
  * @param object $order WooCommerce order.
410
  *
@@ -423,21 +423,23 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
423
  return $headers;
424
  }
425
 
426
- $general_options = get_option( 'bewpi_general_settings' );
427
- $emailitin_account = $general_options['bewpi_email_it_in_account'];
428
  // Email It In option enabled?
429
- if ( ! $general_options['bewpi_email_it_in'] || empty( $emailitin_account ) ) {
430
  return $headers;
431
  }
432
 
433
  // check if current email type is enabled.
434
- if ( ! isset( $general_options[ $status ] ) || ! $general_options[ $status ] ) {
 
435
  return $headers;
436
  }
437
 
438
  set_transient( $transient_name, true, 20 );
439
 
440
  $headers .= 'BCC: <' . $emailitin_account . '>' . "\r\n";
 
441
  return $headers;
442
  }
443
 
@@ -448,7 +450,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
448
  * @param string $status name of email.
449
  * @param object $order order.
450
  *
451
- * @return array|mixed|void
452
  */
453
  public function attach_invoice_to_email( $attachments, $status, $order ) {
454
  // only attach to emails with WC_Order object.
@@ -462,7 +464,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
462
  }
463
 
464
  $order_total = BEWPI_WC_Order_Compatibility::get_prop( $order, 'total' );
465
- if ( (double) $order_total === 0.00 && WPI()->get_option( 'general', 'disable_free_products' ) ) {
466
  return $attachments;
467
  }
468
 
@@ -475,19 +477,19 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
475
  }
476
 
477
  // check if email is enabled.
478
- $general_options = get_option( 'bewpi_general_settings' );
479
- if ( ! isset( $general_options[ $status ] ) || ! $general_options[ $status ] ) {
480
  return $attachments;
481
  }
482
 
483
- $order_id = BEWPI_WC_Order_Compatibility::get_id( $order );
484
  $transient_name = sprintf( 'bewpi_pdf_invoice_generated-%s', $order_id );
485
- $full_path = BEWPI_Invoice::exists( $order_id );
486
- $invoice = new BEWPI_Invoice( $order_id );
487
  if ( ! $full_path ) {
488
  $full_path = $invoice->generate();
489
- set_transient( $transient_name, 60 );
490
- } elseif ( $full_path && ! get_transient( $transient_name ) ) {
491
  // No need to update for same request.
492
  $full_path = $invoice->update();
493
  }
@@ -515,7 +517,9 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
515
  $offset = array_search( 'order_actions', array_keys( $columns ), true );
516
  $columns = array_merge(
517
  array_splice( $columns, 0, $offset ),
518
- array( 'bewpi_invoice_number' => __( 'Invoice No.', 'woocommerce-pdf-invoices' ) ),
 
 
519
  $columns
520
  );
521
 
@@ -625,10 +629,12 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
625
  ) );
626
 
627
  // display button to cancel invoice.
628
- $this->show_invoice_button( __( 'Cancel', 'woocommerce-pdf-invoices' ), $post->ID, 'cancel', array(
629
  'class="button grant_access order-page invoice wpi"',
630
  'onclick="return confirm(\'' . __( 'Are you sure to delete the invoice?', 'woocommerce-pdf-invoices' ) . '\')"',
631
- ) );
 
 
632
  }
633
 
634
  /**
@@ -706,14 +712,27 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
706
  return $actions;
707
  }
708
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  /**
710
  * Set order for templater directly after creation to fetch order data.
711
  *
712
- * @param int $order_id WC_Order ID.
713
- * @param string $posted_data WC_Order posted data.
714
- * @param WC_Order $order WC_Order object.
715
  */
716
- public static function set_order( $order_id, $posted_data, $order ) {
 
717
  WPI()->templater()->set_order( $order );
718
  }
719
 
149
  $this->frontend_init_hooks();
150
  }
151
 
152
+ add_action( 'woocommerce_checkout_order_processed', array( __CLASS__, 'set_order' ), 10, 1 );
153
 
154
  // @todo Move to BEWPI_Invoice class.
155
  add_filter( 'woocommerce_email_headers', array( $this, 'add_emailitin_as_recipient' ), 10, 3 );
404
  /**
405
  * Add "Email It In" email address as BCC to WooCommerce email.
406
  *
407
+ * @param string $headers email headers.
408
  * @param string $status email name.
409
  * @param object $order WooCommerce order.
410
  *
423
  return $headers;
424
  }
425
 
426
+ $emailitin_account = WPI()->get_option( 'general', 'email_it_in_account' );
427
+ $emailitin_enabled = WPI()->get_option( 'general', 'email_it_in' );
428
  // Email It In option enabled?
429
+ if ( ! $emailitin_enabled || empty( $emailitin_account ) ) {
430
  return $headers;
431
  }
432
 
433
  // check if current email type is enabled.
434
+ $email_types = WPI()->get_option( 'general', 'email_types' );
435
+ if ( ! isset( $email_types[ $status ] ) || ! $email_types[ $status ] ) {
436
  return $headers;
437
  }
438
 
439
  set_transient( $transient_name, true, 20 );
440
 
441
  $headers .= 'BCC: <' . $emailitin_account . '>' . "\r\n";
442
+
443
  return $headers;
444
  }
445
 
450
  * @param string $status name of email.
451
  * @param object $order order.
452
  *
453
+ * @return array.
454
  */
455
  public function attach_invoice_to_email( $attachments, $status, $order ) {
456
  // only attach to emails with WC_Order object.
464
  }
465
 
466
  $order_total = BEWPI_WC_Order_Compatibility::get_prop( $order, 'total' );
467
+ if ( 0.00 === (double) $order_total && WPI()->get_option( 'general', 'disable_free_products' ) ) {
468
  return $attachments;
469
  }
470
 
477
  }
478
 
479
  // check if email is enabled.
480
+ $email_types = WPI()->get_option( 'general', 'email_types' );
481
+ if ( ! isset( $email_types[ $status ] ) || ! $email_types[ $status ] ) {
482
  return $attachments;
483
  }
484
 
485
+ $order_id = BEWPI_WC_Order_Compatibility::get_id( $order );
486
  $transient_name = sprintf( 'bewpi_pdf_invoice_generated-%s', $order_id );
487
+ $full_path = BEWPI_Invoice::exists( $order_id );
488
+ $invoice = new BEWPI_Invoice( $order_id );
489
  if ( ! $full_path ) {
490
  $full_path = $invoice->generate();
491
+ set_transient( $transient_name, true, 60 );
492
+ } elseif ( $full_path && ! get_transient( $transient_name ) ) {
493
  // No need to update for same request.
494
  $full_path = $invoice->update();
495
  }
517
  $offset = array_search( 'order_actions', array_keys( $columns ), true );
518
  $columns = array_merge(
519
  array_splice( $columns, 0, $offset ),
520
+ array(
521
+ 'bewpi_invoice_number' => __( 'Invoice No.', 'woocommerce-pdf-invoices' ),
522
+ ),
523
  $columns
524
  );
525
 
629
  ) );
630
 
631
  // display button to cancel invoice.
632
+ /*$this->show_invoice_button( __( 'Cancel', 'woocommerce-pdf-invoices' ), $post->ID, 'cancel', array(
633
  'class="button grant_access order-page invoice wpi"',
634
  'onclick="return confirm(\'' . __( 'Are you sure to delete the invoice?', 'woocommerce-pdf-invoices' ) . '\')"',
635
+ ) );*/
636
+
637
+ do_action( 'bewpi_order_page_after_meta_box_details_end', $post->ID );
638
  }
639
 
640
  /**
712
  return $actions;
713
  }
714
 
715
+ /**
716
+ * Get invoice by order ID.
717
+ *
718
+ * @param int $order_id order ID.
719
+ *
720
+ * @return BEWPI_Abstract_Invoice
721
+ */
722
+ public function get_invoice( $order_id ) {
723
+
724
+ return new BEWPI_Invoice( $order_id );
725
+ }
726
+
727
  /**
728
  * Set order for templater directly after creation to fetch order data.
729
  *
730
+ * @since 2.9.3 Do not use second and third parameters since several plugins do not use them. This prevents a fatal error.
731
+ *
732
+ * @param int $order_id WC_Order ID.
733
  */
734
+ public static function set_order( $order_id ) {
735
+ $order = wc_get_order( $order_id );
736
  WPI()->templater()->set_order( $order );
737
  }
738
 
lang/woocommerce-pdf-invoices-de_DE.po CHANGED
@@ -1,24 +1,25 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2017-05-23 23:43+0200\n"
5
- "PO-Revision-Date: 2017-05-23 23:43+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.11\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: woocommerce-pdf-invoices\n"
20
  "X-Poedit-SearchPath-1: woocommerce-pdf-invoices-premium\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
 
22
 
23
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:25
24
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:143
@@ -32,7 +33,7 @@ msgstr "Premium Optionen"
32
 
33
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:174
34
  msgid "Template Options"
35
- msgstr ""
36
 
37
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:177
38
  msgid "Supplier Options"
@@ -44,31 +45,37 @@ msgstr "Kunden Rechnung automatisch an Lieferanten senden."
44
 
45
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:181
46
  msgid "Global Invoice Options"
47
- msgstr "Global Invoice Options"
48
 
49
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:182
50
  msgid ""
51
  "Generate global invoices on Orders page by selecting multiple orders and "
52
  "applying action or let customers generate periodically from My Account page. "
53
- "<strong>Global invoices are only supported when using the micro template!</"
54
- "strong>"
55
  msgstr ""
 
 
 
56
 
57
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:185
58
  msgid "Reminder Options"
59
- msgstr ""
60
 
61
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:186
62
  #, php-format
63
  msgid ""
64
- "Automatically send PDF invoice after a specific period of time. When "
65
- "enabled, a new <a href=\"%s\">Customer invoice reminder</a> email will be "
66
- "used to send the PDF invoice."
67
  msgstr ""
 
 
 
68
 
69
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:189
70
  msgid "Request Invoice Options"
71
- msgstr ""
72
 
73
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:190
74
  msgid ""
@@ -76,15 +83,17 @@ msgid ""
76
  "field will be added on the checkout page so customers can request a PDF "
77
  "invoice."
78
  msgstr ""
 
 
79
 
80
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:208
81
  msgid "Activation email"
82
- msgstr ""
83
 
84
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:213
85
  #, php-format
86
  msgid "Enter your activation email from %s."
87
- msgstr ""
88
 
89
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:219
90
  msgid "License"
@@ -93,7 +102,7 @@ msgstr "Lizenz"
93
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:224
94
  #, php-format
95
  msgid "Enter your license key from %s to receive updates."
96
- msgstr ""
97
 
98
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:230
99
  msgid "PDF attachment"
@@ -112,30 +121,25 @@ msgid ""
112
  "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
113
  "adding there Email It In email addresses. Email addresses need to be "
114
  "seperated by comma's."
115
- msgstr ""
116
- "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
117
- "adding there Email It In email addresses. Email addresses need to be "
118
- "seperated by comma's."
119
 
120
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:257
121
  msgid "Enable customer generation"
122
- msgstr ""
123
 
124
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:259
125
  msgid "Let customers generate a global invoice from their account"
126
- msgstr ""
127
 
128
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:267
129
  msgid "Customer generation period"
130
- msgstr "Customer generation period"
131
 
132
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:272
133
  msgid ""
134
  "Should your customers have the ability to generate a global invoice by month "
135
  "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
136
- msgstr ""
137
- "Should your customers have the ability to generate a global invoice by month "
138
- "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
139
 
140
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:275
141
  msgid "Month"
@@ -164,61 +168,61 @@ msgstr "Email Betreff"
164
 
165
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:329
166
  msgid "Subject for the global invoice email."
167
- msgstr "Subject for the global invoice email."
168
 
169
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:336
170
  msgid "Email message"
171
- msgstr "Email Nachricht"
172
 
173
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:341
174
  msgid "Message for the global invoice email."
175
- msgstr "Message for the global invoice email."
176
 
177
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:353
178
  msgid "Enable reminder"
179
- msgstr ""
180
 
181
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:360
182
  msgid "Days until reminder"
183
- msgstr ""
184
 
185
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:365
186
  msgid "Number of days from order or invoice date until reminder date."
187
- msgstr ""
188
 
189
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:374
190
  msgid "Date type"
191
- msgstr ""
192
 
193
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:379
194
  msgid "Choose the type of date to count from."
195
- msgstr ""
196
 
197
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:382
198
  msgid "Order date"
199
- msgstr ""
200
 
201
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:386
202
  msgid "Invoice date"
203
- msgstr ""
204
 
205
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:400
206
  msgid "Enable Request Invoice."
207
- msgstr ""
208
 
209
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:475
210
  msgid "Activation email cannot be empty."
211
- msgstr ""
212
 
213
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:512
214
  msgid ""
215
  "Something went wrong with the activation of your license. Contact the author "
216
  "for support."
217
- msgstr ""
218
 
219
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:533
220
  msgid "File to large."
221
- msgstr "Datei zu groß."
222
 
223
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:539
224
  msgid "Only PDF files are allowed."
@@ -242,7 +246,7 @@ msgstr "Inaktiv"
242
 
243
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-customer-generation.php:10
244
  msgid "Generate Global Invoice"
245
- msgstr "Generate Global Invoice"
246
 
247
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-customer-generation.php:20
248
  msgid "Select a month"
@@ -254,46 +258,46 @@ msgstr "Jahr auswählen"
254
 
255
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-customer-generation.php:47
256
  msgid "Generate invoice"
257
- msgstr "Rechnung generieren."
258
 
259
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:16
260
  msgid "Global invoice successfully generated! "
261
- msgstr ""
262
 
263
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-export.php:37
264
  msgid "Bulk Export PDF Invoices"
265
- msgstr ""
266
 
267
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-export.php:38
268
  msgid "Bulk Export PDF Packing Slips"
269
- msgstr ""
270
 
271
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-export.php:85
272
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-generate.php:73
273
  msgid "No order selected."
274
- msgstr ""
275
 
276
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-generate.php:37
277
  msgid "Bulk Generate PDF Invoices"
278
- msgstr ""
279
 
280
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-generate.php:38
281
  msgid "Bulk Generate PDF Packing Slips"
282
- msgstr ""
283
 
284
  #: woocommerce-pdf-invoices-premium/includes/class-install.php:74
285
  #, php-format
286
  msgid ""
287
  "%1$s requires %2$s to be activated. Install and activate it and you should "
288
  "be good to go! :)"
289
- msgstr ""
290
 
291
  #: woocommerce-pdf-invoices-premium/includes/class-install.php:83
292
  #, php-format
293
  msgid ""
294
- "%1$s requires at least %2$s. Update it and get the best out of both "
295
- "plugins. :)"
296
- msgstr ""
297
 
298
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:204
299
  msgid "Invalid request"
@@ -305,93 +309,95 @@ msgstr "Keine Bestellungen gefunden."
305
 
306
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:271
307
  msgid "Generate global invoice"
308
- msgstr "Generate global invoice"
309
 
310
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:299
311
  msgid ""
312
  "Could not generate the invoice. Global invoices are only supported when "
313
  "using the micro template."
314
- msgstr ""
315
 
316
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:312
317
  msgid "Select more then one order to generate a global invoice."
318
- msgstr ""
319
 
320
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:60
321
  msgid "Yes"
322
- msgstr ""
323
 
324
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:60
325
  msgid "No"
326
- msgstr ""
327
 
328
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:63
329
  msgid "Reminder on:"
330
- msgstr ""
331
 
332
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:68
333
  msgid "Reminder sent?"
334
- msgstr ""
335
 
336
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:149
337
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:573
338
  msgid "Discount:"
339
- msgstr ""
340
 
341
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:165
342
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:588
343
  msgid "Shipping:"
344
- msgstr ""
345
 
346
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:235
347
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:558
348
  msgid "Subtotal:"
349
- msgstr ""
350
 
351
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:275
352
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:657
353
  msgid "Total:"
354
- msgstr ""
355
 
356
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:352
357
  msgid "Request invoice"
358
- msgstr ""
359
 
360
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:43
361
  msgid "Customer invoice reminder"
362
- msgstr ""
363
 
364
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:44
365
  msgid ""
366
  "Customer invoice reminder emails can be sent to customers containing their "
367
  "order information and payment links."
368
  msgstr ""
 
 
369
 
370
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:49
371
  msgid "Invoice reminder for order {order_number} from {order_date}"
372
- msgstr ""
373
 
374
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:50
375
  msgid "Invoice reminder for order {order_number}"
376
- msgstr ""
377
 
378
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:149
379
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:158
380
  #, php-format
381
  msgid "Defaults to %s"
382
- msgstr ""
383
 
384
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:155
385
  msgid "Email heading"
386
- msgstr ""
387
 
388
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:164
389
  msgid "Email type"
390
- msgstr ""
391
 
392
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:166
393
  msgid "Choose which format of email to send."
394
- msgstr ""
395
 
396
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:9
397
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:11
@@ -402,7 +408,7 @@ msgstr "Rechnung an"
402
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
403
  #, php-format
404
  msgid "Phone: %s"
405
- msgstr ""
406
 
407
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:19
408
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:23
@@ -411,7 +417,7 @@ msgstr "Lieferadresse"
411
 
412
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:30
413
  msgid "Global Invoice"
414
- msgstr "Global Invoice"
415
 
416
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:48
417
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:53
@@ -422,7 +428,7 @@ msgstr "Beschreibung"
422
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:453
423
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:57
424
  msgid "SKU"
425
- msgstr "Prod.Nr."
426
 
427
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:57
428
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:60
@@ -434,11 +440,11 @@ msgstr "Preis"
434
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:68
435
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:59
436
  msgid "Qty"
437
- msgstr "Anzahl"
438
 
439
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:66
440
  msgid "VAT"
441
- msgstr "Mehrwertsteuer"
442
 
443
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:77
444
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:234
@@ -464,7 +470,7 @@ msgstr "Rabatt"
464
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:215
465
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:231
466
  msgid "Shipping"
467
- msgstr "Lieferung"
468
 
469
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:190
470
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:465
@@ -483,7 +489,7 @@ msgstr "Gebühr"
483
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/footer.php:23
484
  #, php-format
485
  msgid "%1$s of %2$s"
486
- msgstr ""
487
 
488
  #: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:103
489
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:362
@@ -493,7 +499,7 @@ msgstr "Einstellungen"
493
  #: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
494
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
495
  msgid "Support"
496
- msgstr "Hilfe"
497
 
498
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-document.php:143
499
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:35
@@ -510,12 +516,12 @@ msgstr "USt-IdNr.: %s"
510
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:55
511
  #, php-format
512
  msgid "Purchase Order Number: %s"
513
- msgstr "Bestellnummer: %s"
514
 
515
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:755
516
  #, php-format
517
  msgid "%s of %s"
518
- msgstr ""
519
 
520
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:105
521
  msgid "Invoices"
@@ -527,11 +533,13 @@ msgid ""
527
  "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a <a "
528
  "href=\"%s\">★★★★★</a> rating. A huge thank you in advance!"
529
  msgstr ""
 
 
530
 
531
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:178
532
  #, php-format
533
  msgid "Version %s"
534
- msgstr ""
535
 
536
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:25
537
  msgid "General"
@@ -548,10 +556,12 @@ msgid ""
548
  "email. The email should be <a href=\"%1$s\">enabled</a> in order to "
549
  "automatically generate the PDF invoice."
550
  msgstr ""
 
 
551
 
552
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:78
553
  msgid "Download Options"
554
- msgstr ""
555
 
556
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
557
  msgid "Cloud Storage Options"
@@ -560,37 +570,39 @@ msgstr "Cloud Storage Optionen"
560
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:82
561
  #, php-format
562
  msgid ""
563
- "Sign-up at <a href=\"%1$s\">Email It In</a> to send invoices to your "
564
- "Dropbox, OneDrive, Google Drive or Egnyte and enter your account below."
565
  msgstr ""
 
 
566
 
567
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:85
568
  msgid "Interface Options"
569
- msgstr ""
570
 
571
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:88
572
  msgid "Debug Options"
573
- msgstr ""
574
 
575
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:105
576
  msgid "Attach to Emails"
577
- msgstr ""
578
 
579
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:113
580
  msgid "New order"
581
- msgstr ""
582
 
583
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:118
584
  msgid "Order on-hold"
585
- msgstr ""
586
 
587
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:123
588
  msgid "Processing order"
589
- msgstr "Bearbeiten der Bestellung"
590
 
591
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
592
  msgid "Completed order"
593
- msgstr "Fertiggestellte Bestellung"
594
 
595
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:133
596
  msgid "Customer invoice"
@@ -599,37 +611,38 @@ msgstr "Kundenrechnung"
599
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
600
  #, php-format
601
  msgid "Attach to %s Emails"
602
- msgstr ""
603
 
604
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:151
605
  msgid "New Renewal Order"
606
- msgstr ""
607
 
608
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:157
609
  msgid "Subscription Switch Complete"
610
- msgstr ""
611
 
612
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:163
613
  msgid "Processing Renewal order"
614
- msgstr ""
615
 
616
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:169
617
  msgid "Completed Renewal Order"
618
- msgstr "Erneuerte Rechnung fertiggestellt"
619
 
620
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:175
621
  msgid "Customer Renewal Invoice"
622
- msgstr "Erneuerte Kundenrechnung"
623
 
624
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:190
625
  msgid "Disable for free products"
626
- msgstr ""
627
 
628
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:192
629
  msgid ""
630
  "Skip automatic PDF invoice generation for orders containing only free "
631
  "products."
632
  msgstr ""
 
633
 
634
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:200
635
  msgid "View PDF"
@@ -637,7 +650,7 @@ msgstr "PDF anzeigen"
637
 
638
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:208
639
  msgid "Download"
640
- msgstr "Herunterladen"
641
 
642
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:212
643
  msgid "Open in new browser tab/window"
@@ -645,42 +658,46 @@ msgstr "In neuen Tab/Fenster öffnen"
645
 
646
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:226
647
  msgid "Enable download from my account"
648
- msgstr ""
649
 
650
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:228
651
  msgid ""
652
  "By default PDF is only downloadable when order has been paid, so order "
653
  "status should be Processing or Completed."
654
  msgstr ""
 
 
 
655
 
656
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:241
657
  msgid "Enable Email It In"
658
- msgstr "Enable Email It In"
659
 
660
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:248
661
  msgid "Email It In account"
662
- msgstr "Email It In account"
663
 
664
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:253
665
  #, php-format
666
  msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
667
  msgstr ""
 
668
 
669
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:264
670
  msgid "Enable Invoice Number column"
671
- msgstr ""
672
 
673
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:265
674
  msgid "Display invoice numbers on Shop Order page."
675
- msgstr ""
676
 
677
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:277
678
  msgid "Enable mPDF debugging"
679
- msgstr ""
680
 
681
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:278
682
  msgid "Enable if you aren't able to create an invoice."
683
- msgstr ""
684
 
685
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:25
686
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:90
@@ -696,7 +713,7 @@ msgstr "Allgemeine Optionen"
696
  msgid ""
697
  "Want to customize the template? The <a href=\"%s\">FAQ</a> will give you a "
698
  "brief description."
699
- msgstr ""
700
 
701
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:47
702
  msgid "Invoice Number Options"
@@ -704,13 +721,14 @@ msgstr "Rechnungsnummer Optionen"
704
 
705
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:50
706
  msgid "Packing Slips Options"
707
- msgstr ""
708
 
709
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:51
710
  msgid ""
711
  "Packing slips are <strong>only available</strong> when using minimal "
712
  "template."
713
  msgstr ""
 
714
 
715
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:54
716
  msgid "Header Options"
@@ -718,7 +736,7 @@ msgstr "Header Optionen"
718
 
719
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:55
720
  msgid "The header will be visible on every page."
721
- msgstr ""
722
 
723
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:58
724
  msgid "Footer Options"
@@ -726,7 +744,7 @@ msgstr "Footer Optionen"
726
 
727
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:59
728
  msgid "The footer will be visible on every page."
729
- msgstr ""
730
 
731
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:62
732
  msgid "Visible Columns"
@@ -739,27 +757,27 @@ msgstr "Aktiviere oder deaktiviere die Spalten."
739
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:95
740
  #, php-format
741
  msgid "Create a custom template by copying it from %1$s to %2$s."
742
- msgstr ""
743
 
744
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:97
745
  #, php-format
746
  msgid ""
747
  "<strong>Note:</strong> The %1$s template will probably no longer be "
748
  "supported in future versions, consider using the %2$s template."
749
- msgstr ""
750
 
751
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:105
752
  msgid "Color theme"
753
- msgstr "Farben Theme"
754
 
755
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:121
756
  msgid "Display theme text in black color"
757
- msgstr ""
758
 
759
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:123
760
  msgid ""
761
  "Enable if you've set the color theme to white or some other light color."
762
- msgstr ""
763
 
764
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:131
765
  msgid "Date format"
@@ -768,7 +786,7 @@ msgstr "Datumsformat"
768
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:136
769
  #, php-format
770
  msgid "<a href=\"%s\">Format</a> of invoice date and order date."
771
- msgstr ""
772
 
773
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:148
774
  msgid "Display prices including tax"
@@ -779,26 +797,29 @@ msgid ""
779
  "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
780
  "still be excluding tax, so disable it within the visible columns section."
781
  msgstr ""
 
 
 
782
 
783
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:163
784
  msgid "Shipping taxable"
785
- msgstr ""
786
 
787
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:165
788
  msgid "Enable to display subtotal including shipping."
789
- msgstr ""
790
 
791
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:178
792
  msgid "Mark invoice as paid"
793
- msgstr ""
794
 
795
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:180
796
  msgid "Invoice will be watermarked when order has been paid."
797
- msgstr ""
798
 
799
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:193
800
  msgid "Disable Packing Slips"
801
- msgstr ""
802
 
803
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:200
804
  msgid "Company name"
@@ -812,9 +833,11 @@ msgstr "Firmenlogo"
812
  #, php-format
813
  msgid ""
814
  "Use the <a href=\"%1$s\">Media Library</a> to <a href=\"%2$s\">upload</a> or "
815
- "choose a .jpg, .jpeg, .gif or .png file and copy and paste the <a href=\"%3$s"
816
- "\" target=\"_blank\">URL</a>."
817
  msgstr ""
 
 
818
 
819
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:222
820
  msgid "Company address"
@@ -828,7 +851,7 @@ msgstr "Firmenadresse"
828
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:322
829
  #, php-format
830
  msgid "Allowed HTML tags: %s."
831
- msgstr ""
832
 
833
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:233
834
  msgid "Company details"
@@ -836,11 +859,11 @@ msgstr "Firmendetails"
836
 
837
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:244
838
  msgid "Title"
839
- msgstr ""
840
 
841
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:249
842
  msgid "Change the name of the invoice."
843
- msgstr ""
844
 
845
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:250
846
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:702
@@ -849,21 +872,24 @@ msgstr "Rechnung"
849
 
850
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:255
851
  msgid "Thank you text"
852
- msgstr ""
853
 
854
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
855
  msgid "Visible in big colored bar directly after invoice total."
856
  msgstr ""
 
857
 
858
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:272
859
  msgid "Show customers shipping address"
860
- msgstr ""
861
 
862
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:274
863
  msgid ""
864
  "Customers shipping address won't be visible when order has only virtual "
865
  "products."
866
  msgstr ""
 
 
867
 
868
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:287
869
  msgid "Show customer notes"
@@ -879,26 +905,29 @@ msgid ""
879
  "Visible below customer notes and above footer. Want to attach additional "
880
  "pages to the invoice? Take a look at <a href=\"%1$s\">%2$s</a> plugin."
881
  msgstr ""
 
 
 
882
 
883
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:306
884
  msgid "Left footer column."
885
- msgstr ""
886
 
887
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:317
888
  msgid "Right footer column."
889
- msgstr ""
890
 
891
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:328
892
  msgid "Type"
893
- msgstr "Type"
894
 
895
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:336
896
  msgid "WooCommerce order number"
897
- msgstr "WooCommerce Bestellungsnummer"
898
 
899
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:340
900
  msgid "Sequential number"
901
- msgstr "Aufeinanderfolgende nummer"
902
 
903
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:354
904
  msgid "Reset invoice counter"
@@ -910,13 +939,15 @@ msgstr "Weiter"
910
 
911
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:367
912
  msgid "Next invoice number when resetting counter."
913
- msgstr ""
914
 
915
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:369
916
  msgid ""
917
  "<b>Note:</b> Only available for Sequential numbering. All PDF invoices with "
918
  "invoice number greater then next invoice number will be deleted!"
919
  msgstr ""
 
 
920
 
921
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:379
922
  msgid "Digits"
@@ -924,11 +955,11 @@ msgstr "Ziffern"
924
 
925
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:395
926
  msgid "Prefix"
927
- msgstr ""
928
 
929
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:406
930
  msgid "Suffix"
931
- msgstr ""
932
 
933
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:417
934
  msgid "Format"
@@ -937,39 +968,43 @@ msgstr "Format"
937
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:422
938
  #, php-format
939
  msgid "Available placeholders: %s."
940
- msgstr ""
941
 
942
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:424
943
  #, php-format
944
  msgid "<b>Note:</b> %s is required and slashes aren't supported."
945
- msgstr ""
946
 
947
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:436
948
  msgid "Reset yearly"
949
- msgstr ""
950
 
951
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:438
952
  msgid "Automatically reset invoice numbers on new year's day."
953
  msgstr ""
 
 
954
 
955
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:440
956
  msgid ""
957
  "<b>Note</b>: You will have to generate all invoices again when changing "
958
  "option."
959
  msgstr ""
 
 
960
 
961
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:477
962
  msgid "Tax (item)"
963
- msgstr ""
964
 
965
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:489
966
  msgid "Tax (total)"
967
- msgstr ""
968
 
969
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:555
970
  msgid ""
971
  "Company logo not found. Upload the image to the Media Library and try again."
972
- msgstr ""
973
 
974
  #: woocommerce-pdf-invoices/includes/admin/views/html-activation-notice.php:16
975
  #, php-format
@@ -977,166 +1012,185 @@ msgid ""
977
  "The settings of WooCommerce PDF Invoices are available <a href=\"%1$s\">on "
978
  "this page</a>."
979
  msgstr ""
 
 
980
 
981
  #: woocommerce-pdf-invoices/includes/admin/views/html-deactivation-notice.php:19
982
  #, php-format
983
  msgid ""
984
- "Before we deactivate WooCommerce PDF Invoices, would you care to <a href="
985
- "\"%1$s\" target=\"_blank\">let us know why</a> so we can improve it for you? "
986
- "<a href=\"%2$s\">No, deactivate now</a>."
987
  msgstr ""
 
 
 
988
 
989
  #: woocommerce-pdf-invoices/includes/admin/views/html-rate-notice.php:21
990
  #, php-format
991
  msgid ""
992
  "Hi%1$s! You're using <b>WooCommerce PDF Invoices</b> for some time now and "
993
- "we would appreciate your <a href=\"%2$s\" target=\"_blank\">★★★★★</a> "
994
- "rating. It will support future development big-time."
995
  msgstr ""
 
 
 
996
 
997
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:2
998
  msgid "WooCommerce PDF Invoices Premium"
999
- msgstr ""
1000
 
1001
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:4
1002
  msgid ""
1003
  "This plugin offers a premium version which comes with the following features:"
1004
- msgstr ""
1005
 
1006
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
1007
  msgid "Change the font of the PDF invoices."
1008
- msgstr ""
1009
 
1010
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
1011
  msgid ""
1012
  "Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
1013
  msgstr ""
 
 
1014
 
1015
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
1016
  msgid "Bulk generate PDF invoices."
1017
- msgstr ""
1018
 
1019
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
1020
  msgid "Bulk export and/or download PDF invoices."
1021
- msgstr ""
1022
 
1023
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
1024
  msgid "Bill periodically by generating and sending global invoices."
1025
- msgstr ""
1026
 
1027
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
1028
  msgid "Add additional PDF's to PDF invoices."
1029
- msgstr ""
1030
 
1031
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:11
1032
  msgid "Send customer invoices directly to suppliers and others."
1033
  msgstr ""
 
1034
 
1035
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
1036
  #, php-format
1037
  msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
1038
- msgstr ""
1039
 
1040
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
1041
  msgid "Learn more"
1042
- msgstr ""
1043
 
1044
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
1045
  msgid "Stay up-to-date"
1046
- msgstr ""
1047
 
1048
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:21
1049
  msgid ""
1050
  "We're constantly developing new features, stay up-to-date by subscribing to "
1051
  "our newsletter."
1052
- msgstr ""
1053
 
1054
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
1055
  msgid "Your email address"
1056
- msgstr ""
1057
 
1058
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
1059
  msgid "Signup"
1060
- msgstr ""
1061
 
1062
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:36
1063
  msgid "No spam, ever. Unsubscribe at any time"
1064
  msgstr ""
 
 
1065
 
1066
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:45
1067
  msgid "About"
1068
- msgstr ""
1069
 
1070
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:47
1071
  msgid ""
1072
  "This plugin is an open source project wich aims to fill the invoicing gap of "
1073
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
1074
  msgstr ""
 
 
 
1075
 
1076
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:50
1077
  #, php-format
1078
  msgid "Version: %s"
1079
- msgstr ""
1080
 
1081
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:52
1082
  #, php-format
1083
  msgid "Author: %s"
1084
- msgstr ""
1085
 
1086
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
1087
  #, php-format
1088
  msgid ""
1089
  "We will never ask for donations, but to guarantee future development, we do "
1090
- "need your support. Please show us your appreciation by leaving a <a href="
1091
- "\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
1092
  msgstr ""
 
 
1093
 
1094
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:82
1095
  msgid ""
1096
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
1097
  msgstr ""
 
1098
 
1099
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:87
1100
  msgid "Need Help?"
1101
- msgstr ""
1102
 
1103
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:89
1104
  msgid "Frequently Asked Questions"
1105
- msgstr ""
1106
 
1107
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:90
1108
  msgid "Support forum"
1109
- msgstr ""
1110
 
1111
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:91
1112
  msgid "Request a feature"
1113
- msgstr ""
1114
 
1115
  #: woocommerce-pdf-invoices/includes/class-packing-slip.php:62
1116
  msgid "View packing slip"
1117
- msgstr ""
1118
 
1119
  #: woocommerce-pdf-invoices/includes/compatibility/class-wc-core-compatibility.php:245
1120
  msgid "WooCommerce"
1121
- msgstr ""
1122
 
1123
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:37
1124
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:44
1125
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:39
1126
- #, fuzzy, php-format
1127
  msgid "Order Number: %s"
1128
- msgstr "Bestellungsnummer:"
1129
 
1130
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:38
1131
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:42
1132
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:37
1133
  #, php-format
1134
  msgid "Order Date: %s"
1135
- msgstr "Bestellungsdatum: %s"
1136
 
1137
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:268
1138
  msgid "VAT 0%"
1139
- msgstr ""
1140
 
1141
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:284
1142
  msgid "Refunded"
@@ -1150,61 +1204,61 @@ msgstr "Kundenkommentar"
1150
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:314
1151
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:154
1152
  msgid "Zero rated for VAT as customer has supplied EU VAT number"
1153
- msgstr ""
1154
 
1155
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:49
1156
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:40
1157
  msgid "Ship to:"
1158
- msgstr ""
1159
 
1160
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:64
1161
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:55
1162
  msgid "Product"
1163
- msgstr ""
1164
 
1165
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:74
1166
  msgid "Price"
1167
- msgstr ""
1168
 
1169
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:137
1170
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:101
1171
  #, php-format
1172
  msgid "Note from customer: %s"
1173
- msgstr ""
1174
 
1175
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:142
1176
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:106
1177
  #, php-format
1178
  msgid "Note to customer: %s"
1179
- msgstr ""
1180
 
1181
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:38
1182
  #, php-format
1183
  msgid "Invoice #: %s"
1184
- msgstr ""
1185
 
1186
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:40
1187
  #, php-format
1188
  msgid "Invoice Date: %s"
1189
- msgstr ""
1190
 
1191
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:48
1192
  #, php-format
1193
  msgid "Payment Method: %s"
1194
- msgstr ""
1195
 
1196
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:29
1197
  msgid "Packing Slip"
1198
- msgstr ""
1199
 
1200
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
1201
  #, php-format
1202
  msgid "Shipping Method: %s"
1203
- msgstr ""
1204
 
1205
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:517
1206
  msgid "Invoice No."
1207
- msgstr ""
1208
 
1209
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:553
1210
  msgid "View invoice"
@@ -1232,417 +1286,8 @@ msgstr "Anzeigen"
1232
 
1233
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:627
1234
  msgid "Cancel"
1235
- msgstr "abbrechen"
1236
 
1237
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:629
1238
  msgid "Are you sure to delete the invoice?"
1239
- msgstr "Bist du dir sicher, dass du die Rechnung löschen willst?"
1240
-
1241
- #~ msgid ""
1242
- #~ "Generate global invoices on Orders page by selecting multiple orders and "
1243
- #~ "applying action or let customers generate periodically from My Account "
1244
- #~ "page."
1245
- #~ msgstr ""
1246
- #~ "Generate global invoices on Orders page by selecting multiple orders and "
1247
- #~ "applying action or let customers generate periodically from My Account "
1248
- #~ "page."
1249
-
1250
- #~ msgid "Something went wrong."
1251
- #~ msgstr "Uuhps! Da ist wohl etwas schief gelaufen."
1252
-
1253
- #~ msgid "Please select more then one order."
1254
- #~ msgstr "Bitte mehr als eine Bestellungen auswählen."
1255
-
1256
- #~ msgid "Purchase email"
1257
- #~ msgstr "Käufer Email"
1258
-
1259
- #~ msgid ""
1260
- #~ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
1261
- #~ "\">wcpdfinvoices.com</a>."
1262
- #~ msgstr ""
1263
- #~ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
1264
- #~ "\">wcpdfinvoices.com</a>."
1265
-
1266
- #~ msgid ""
1267
- #~ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
1268
- #~ "\">wcpdfinvoices.com</a> to receive updates."
1269
- #~ msgstr ""
1270
- #~ "Gib deinen Lizenzschlüssel von <a href=\"http://wcpdfinvoices.com"
1271
- #~ "\">wcpdfinvoices.com</a> ein um Updates zu erhalten."
1272
-
1273
- #~ msgid "These are the general template options."
1274
- #~ msgstr "Dies sind die allgemeinen template Optionen."
1275
-
1276
- #~ msgid "These are the invoice number options."
1277
- #~ msgstr "Dies sind die Rechnungsnummer Optionen"
1278
-
1279
- #~ msgid "[prefix]"
1280
- #~ msgstr "[prefix]"
1281
-
1282
- #~ msgid "[suffix]"
1283
- #~ msgstr "[suffix]"
1284
-
1285
- #~ msgid "Invoice %s (PDF)"
1286
- #~ msgstr "Rechnung %s (PDF)"
1287
-
1288
- #~ msgid "Attachment Options"
1289
- #~ msgstr "Anhangs Optionen"
1290
-
1291
- #~ msgid "Attach a PDF to the invoice."
1292
- #~ msgstr "Ein PDF-Dokument an die Rechnung anhängen."
1293
-
1294
- #~ msgid "Remove logo"
1295
- #~ msgstr "Logo entfernen"
1296
-
1297
- #~ msgid "File is invalid and contains either '..' or './'."
1298
- #~ msgstr "Datei ist ungültig und enthält entweder '...' oder './'."
1299
-
1300
- #~ msgid "File is invalid and contains ':' after the first character."
1301
- #~ msgstr "Datei ist ungültig und enthält ':' nach dem ersten Buchstaben."
1302
-
1303
- #~ msgid "File should be less then 2MB."
1304
- #~ msgstr "Datei sollte kleiner als 2MB sein."
1305
-
1306
- #~ msgid ""
1307
- #~ "Invoice with invoice number %s not found. First create invoice and try "
1308
- #~ "again."
1309
- #~ msgstr ""
1310
- #~ "Rechnung mit Nummer %s nicht gefunden. Erstellen sie die Rechnung zuerst "
1311
- #~ "und versuchen sie es ernuet"
1312
-
1313
- #~ msgid "Reset on 1st of january"
1314
- #~ msgstr "Am 1. Januar zurücksetzen"
1315
-
1316
- #~ msgid "Attach to Email"
1317
- #~ msgstr "An Email anhängen"
1318
-
1319
- #~ msgid "Processing Renewal Order"
1320
- #~ msgstr "Bearbeiten der erneuerten Bestellung"
1321
-
1322
- #~ msgid "Do not attach"
1323
- #~ msgstr "Nicht anhängen"
1324
-
1325
- #~ msgid "Attach to New Renewal Order Email"
1326
- #~ msgstr "An neue erneuerte Bestell-Email anhängen"
1327
-
1328
- #~ msgid "Woocommerce Subscriptions Email Options"
1329
- #~ msgstr "Woocommerce Subscriptions Email Options"
1330
-
1331
- #~ msgid ""
1332
- #~ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
1333
- #~ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
1334
- #~ "should be activated in order to work."
1335
- #~ msgstr ""
1336
- #~ "PDF Rechnung an <a href=\"http://www.woothemes.com/products/woocommerce-"
1337
- #~ "subscriptions/\">WooCommerce Subscriptions</a> email anhängen. Plugin "
1338
- #~ "sollte aktiviert sein um die Funktion zu ermöglichen."
1339
-
1340
- #~ msgid "Allowed HTML tags: "
1341
- #~ msgstr "Erlaube HTML Tags"
1342
-
1343
- #~ msgid "Attach to New order Email"
1344
- #~ msgstr "An neue Bestell-Email anhängen"
1345
-
1346
- #~ msgid "Get your account from your Email It In %suser account%s."
1347
- #~ msgstr "Get your account from your Email It In %suser account%s."
1348
-
1349
- #~ msgid ""
1350
- #~ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
1351
- #~ "Egnyte and enter your account below."
1352
- #~ msgstr ""
1353
- #~ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
1354
- #~ "Egnyte and enter your account below."
1355
-
1356
- #~ msgid "%sFormat%s of invoice date and order date."
1357
- #~ msgstr "%sFormat%s von Rechnungsdatum und Bestellungsdatum."
1358
-
1359
- #~ msgid "The header will be visible on every page. "
1360
- #~ msgstr "Der Header wird auf jeder Seite sichtbar sein."
1361
-
1362
- #~ msgid "Cancel invoice"
1363
- #~ msgstr "Rechnung stornieren"
1364
-
1365
- #~ msgid "Create invoice"
1366
- #~ msgstr "Rechnung erstellen"
1367
-
1368
- #~ msgid ""
1369
- #~ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
1370
- #~ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. "
1371
- #~ "Get the free version (%s+) and try again.</p>"
1372
- #~ msgstr ""
1373
- #~ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
1374
- #~ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. "
1375
- #~ "Get the free version (%s+) and try again.</p>"
1376
-
1377
- #~ msgid ""
1378
- #~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
1379
- #~ "generate a global invoice from within there account</div>"
1380
- #~ msgstr ""
1381
- #~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
1382
- #~ "generate a global invoice from within there account</div>"
1383
-
1384
- #~ msgid "Global invoice succesfully generated! "
1385
- #~ msgstr "Global invoice succesfully generated! "
1386
-
1387
- #~ msgid "Feel free to use "
1388
- #~ msgstr "Feel free to use "
1389
-
1390
- #~ msgid "Subtotal will be including tax and excluding discount and shipping."
1391
- #~ msgstr ""
1392
- #~ "Zwischensumme enthält Mehrwertsteuer aber keine Rabatte oder Lieferkosten."
1393
-
1394
- #~ msgid "Intro text"
1395
- #~ msgstr "Einleitungstext"
1396
-
1397
- #~ msgid ""
1398
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
1399
- #~ "%s Only available with sequential numbering type and you need to check "
1400
- #~ "the checkbox to actually reset the value."
1401
- #~ msgstr ""
1402
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
1403
- #~ "%s Only available with sequential numbering type and you need to check "
1404
- #~ "the checkbox to actually reset the value."
1405
-
1406
- #~ msgid ""
1407
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1408
- #~ "is required."
1409
- #~ msgstr ""
1410
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1411
- #~ "is required."
1412
-
1413
- #~ msgid "Tax"
1414
- #~ msgstr "Steuer"
1415
-
1416
- #~ msgid "The footer will be visible on every page. "
1417
- #~ msgstr "Der Footer wird auf jeder Seite sichtbar sein."
1418
-
1419
- #~ msgid ""
1420
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
1421
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
1422
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
1423
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
1424
- #~ msgstr ""
1425
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
1426
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
1427
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
1428
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
1429
-
1430
- #~ msgid "%sPayment%s via"
1431
- #~ msgstr "Bezahlt per"
1432
-
1433
- #~ msgid "PAID"
1434
- #~ msgstr "BEZAHLT"
1435
-
1436
- #~ msgid "UNPAID"
1437
- #~ msgstr "NICHT BEZAHLT"
1438
-
1439
- #~ msgid "Order Number %s"
1440
- #~ msgstr "Bestellungsnummer"
1441
-
1442
- #~ msgid "Order Date %s"
1443
- #~ msgstr "Bestellungsdatum"
1444
-
1445
- #~ msgid "Download invoice (PDF)"
1446
- #~ msgstr "Download Rechnung (PDF)"
1447
-
1448
- #~ msgid ""
1449
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
1450
- #~ "required."
1451
- #~ msgstr ""
1452
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
1453
- #~ "required."
1454
-
1455
- #~ msgid "VAT %s"
1456
- #~ msgstr "Mehrwertsteuer %s"
1457
-
1458
- #~ msgid "General Settings"
1459
- #~ msgstr "Allgemeine Einstellungen"
1460
-
1461
- #~ msgid ""
1462
- #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
1463
- #~ msgstr ""
1464
- #~ "Sende Rechnung automatisch an Google Drive, Egnyte, Dropbox of OneDrive"
1465
-
1466
- #~ msgid "For bookkeeping purposes."
1467
- #~ msgstr "Zu Buchhaltungszwecken."
1468
-
1469
- #~ msgid "Signup at %s and enter your account below."
1470
- #~ msgstr "Melde dich an bei %s und gib unten deine Account ein."
1471
-
1472
- #~ msgid "Enter your %s account."
1473
- #~ msgstr "Enter your %s account."
1474
-
1475
- #~ msgid "Invalid type of Email."
1476
- #~ msgstr "Ungültiger Emailtyp."
1477
-
1478
- #~ msgid "Please don't try to change the values."
1479
- #~ msgstr "Bitte versuche nicht die Werte zu ändern."
1480
-
1481
- #~ msgid "Invalid Email address."
1482
- #~ msgstr "Ungültige Email-Adresse."
1483
-
1484
- #~ msgid "Allowed tags: "
1485
- #~ msgstr "Allowed tags: "
1486
-
1487
- #~ msgid "Template Settings"
1488
- #~ msgstr "Template Einstellungen"
1489
-
1490
- #~ msgid "Invoice number type"
1491
- #~ msgstr "Rechnungsnummerntyp"
1492
-
1493
- #~ msgid "Next invoice number"
1494
- #~ msgstr "Nächste Rechnungsnummer"
1495
-
1496
- #~ msgid "Number of digits"
1497
- #~ msgstr "Anzahl der Nachkommastellen"
1498
-
1499
- #~ msgid "Invoice number prefix"
1500
- #~ msgstr "Rechnungsnummer Vorsilbe"
1501
-
1502
- #~ msgid "Invoice number suffix"
1503
- #~ msgstr "Rechnungsnummer Nachsilbe"
1504
-
1505
- #~ msgid "Invoice number format"
1506
- #~ msgstr "Rechnungsnummernformat"
1507
-
1508
- #~ msgid "Reset on 1st January"
1509
- #~ msgstr "Am 1. Januar zurücksetzen"
1510
-
1511
- #~ msgid "Invoice date format"
1512
- #~ msgstr "Format des Rechnungsdatums"
1513
-
1514
- #~ msgid "Order date format"
1515
- #~ msgstr "Format des Bestellungsdatums"
1516
-
1517
- #~ msgid "Show SKU"
1518
- #~ msgstr "Zeige Sorte"
1519
-
1520
- #~ msgid "Show discount"
1521
- #~ msgstr "Zeige Rabatt"
1522
-
1523
- #~ msgid "Show subtotal"
1524
- #~ msgstr "Zeige Zwischensumme"
1525
-
1526
- #~ msgid "Show tax"
1527
- #~ msgstr "Zeige Steuer"
1528
-
1529
- #~ msgid "Show shipping"
1530
- #~ msgstr "Zeige Lieferkosten"
1531
-
1532
- #~ msgid "Color theme of the invoice."
1533
- #~ msgstr "Farb-theme der Rechnung."
1534
-
1535
- #~ msgid ""
1536
- #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
1537
- #~ "png."
1538
- #~ msgstr ""
1539
- #~ "Bitte lade ein Bild kleiner als 200Kb hoch. Erlaubt sind jpeg, jpg oder "
1540
- #~ "png -Formate."
1541
-
1542
- #~ msgid "Invoice number to use for next invoice."
1543
- #~ msgstr "Rechnungsnummer für nächste Rechnung verwenden."
1544
-
1545
- #~ msgid "Number of zero digits."
1546
- #~ msgstr "Anzahl der Nullen."
1547
-
1548
- #~ msgid "Prefix text for the invoice number. Not required."
1549
- #~ msgstr "Prefix text for the invoice number. Not required."
1550
-
1551
- #~ msgid "Suffix text for the invoice number. Not required."
1552
- #~ msgstr "Suffix text for the invoice number. Not required."
1553
-
1554
- #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
1555
- #~ msgstr ""
1556
- #~ "Vorhandene Platzhalter sind %s %s %s %s und %s. %s ist verpflichtend."
1557
-
1558
- #~ msgid "Reset on the first of January."
1559
- #~ msgstr "Am 1. Januar zurücksetzen"
1560
-
1561
- #~ msgid "%sFormat%s of the date. Examples: %s or %s."
1562
- #~ msgstr "%sFormat%s vom Datum. Beispiele: %s oder %s."
1563
-
1564
- #~ msgid "Order date %sformat%s. Examples: %s or %s."
1565
- #~ msgstr "Bestellungsdatum %sFormat%s. Beispiele: %s oder %s."
1566
-
1567
- #~ msgid "Invalid template."
1568
- #~ msgstr "Ungültiges Template."
1569
-
1570
- #~ msgid "Invalid color theme code."
1571
- #~ msgstr "Ungültiger Farb-Theme Code."
1572
-
1573
- #~ msgid "Invalid company name."
1574
- #~ msgstr "Ungültiger Firmenname."
1575
-
1576
- #~ msgid "Invalid input into one of the textarea's."
1577
- #~ msgstr "Ungültige Eingabe in eines der Textfelder."
1578
-
1579
- #~ msgid "Invalid type of invoice number."
1580
- #~ msgstr "Ungültiger Rechnungsnummern-Typ."
1581
-
1582
- #~ msgid "Invalid (next) invoice number."
1583
- #~ msgstr "Ungültige (nächste) Rechnungsnummer."
1584
-
1585
- #~ msgid "Invalid invoice number digits."
1586
- #~ msgstr "Ungültige Rechnungsnummer-Ziffern."
1587
-
1588
- #~ msgid "The [number] placeholder is required as invoice number format."
1589
- #~ msgstr ""
1590
- #~ "Der [Nummer] Platzhalter ist als Rechnungsnummern-Format erforderlich."
1591
-
1592
- #~ msgid "Invalid invoice number format."
1593
- #~ msgstr "Ungültiges Rechnungsnummern-Format."
1594
-
1595
- #~ msgid "Invalid date format."
1596
- #~ msgstr "Ungültiges Datums-Format."
1597
-
1598
- #~ msgid "Please upload image with extension jpg, jpeg or png."
1599
- #~ msgstr "Please upload image with extension jpg, jpeg or png."
1600
-
1601
- #~ msgid "Quantity"
1602
- #~ msgstr "Anzahl"
1603
-
1604
- #~ msgid "Unit price"
1605
- #~ msgstr "Stückpreis"
1606
-
1607
- #~ msgid ""
1608
- #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1609
- #~ msgstr ""
1610
- #~ "Benutze [prefix], [suffix] und [number] als Platzhalter. [number] ist "
1611
- #~ "erforderlich."
1612
-
1613
- #~ msgid "Signup at %s and enter your account beyond."
1614
- #~ msgstr "Signup at %s and enter your account beyond."
1615
-
1616
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1617
- #~ msgstr "%sFormat%s des Datums. Beispiele: %s oder %s"
1618
-
1619
- #~ msgid "Show invoice"
1620
- #~ msgstr "Zeige Rechnung"
1621
-
1622
- #~ msgid "%sFormat%s of the date."
1623
- #~ msgstr "%sFormat%s des Datums."
1624
-
1625
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1626
- #~ msgstr "Benutze [suffix], [prefix] und [number] als Platzhalter."
1627
-
1628
- #~ msgid "Choose the color witch fits your company."
1629
- #~ msgstr "Wähle eine Farbe die zu deiner Firma passt."
1630
-
1631
- #~ msgid ""
1632
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1633
- #~ "[number] as placeholders."
1634
- #~ msgstr ""
1635
- #~ "Wähle das Format der Rechnungsnummer. Benutze [prefix], [suffix] und "
1636
- #~ "[number] als Platzhalter."
1637
-
1638
- #~ msgid "Text to greet, congratulate or thank the customer. "
1639
- #~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
1640
-
1641
- #~ msgid "Some text"
1642
- #~ msgstr "Etwas Text"
1643
-
1644
- #~ msgid "Text to greet, congratulate or thank the customer."
1645
- #~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
1646
-
1647
- #~ msgid "Start all over on the first of January."
1648
- #~ msgstr "Am 1. Januar komplett neu beginnen."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2017-06-24 19:52+0000\n"
5
+ "PO-Revision-Date: 2017-06-24 21:11+0000\n"
6
+ "Last-Translator: Julius Reich <shop@koerner-musik.de>\n"
7
+ "Language-Team: German (Formal)\n"
8
+ "Language: de-DE-formal\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Loco - https://localise.biz/\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
19
  "X-Poedit-SearchPath-0: woocommerce-pdf-invoices\n"
20
  "X-Poedit-SearchPath-1: woocommerce-pdf-invoices-premium\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+ "Report-Msgid-Bugs-To: "
23
 
24
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:25
25
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:143
33
 
34
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:174
35
  msgid "Template Options"
36
+ msgstr "Template Optionen"
37
 
38
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:177
39
  msgid "Supplier Options"
45
 
46
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:181
47
  msgid "Global Invoice Options"
48
+ msgstr "Optionen für Sammelrechnungen"
49
 
50
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:182
51
  msgid ""
52
  "Generate global invoices on Orders page by selecting multiple orders and "
53
  "applying action or let customers generate periodically from My Account page. "
54
+ "<strong>Global invoices are only supported when using the micro template!"
55
+ "</strong>"
56
  msgstr ""
57
+ "Sammelrechnungen aktivieren, durch Anwahl mehrerer Bestellungen aus der "
58
+ "Übersicht, oder durch den Kunden in seinem Kundenkonto (Sammelrechnungen "
59
+ "benötigen das micro template!)"
60
 
61
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:185
62
  msgid "Reminder Options"
63
+ msgstr "Erinnerungen (Optionen)"
64
 
65
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:186
66
  #, php-format
67
  msgid ""
68
+ "Automatically send PDF invoice after a specific period of time. When enabled,"
69
+ " a new <a href=\"%s\">Customer invoice reminder</a> email will be used to "
70
+ "send the PDF invoice."
71
  msgstr ""
72
+ "Automatischer Rechnungsversand nach bestimmter Zeit. Wenn aktiviert, wird "
73
+ "eine neue Email <a href=\"%s\">\"Kundenerinnerung für Rechnungen\"</a> "
74
+ "benutzt, um die Rechnung zu versenden."
75
 
76
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:189
77
  msgid "Request Invoice Options"
78
+ msgstr "\"Rechnung anfordern\" Optionen"
79
 
80
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:190
81
  msgid ""
83
  "field will be added on the checkout page so customers can request a PDF "
84
  "invoice."
85
  msgstr ""
86
+ "Der Kunde kann entscheiden, ob eine PDF-Rechnung erstellt wird (blendet "
87
+ "checkbox in der Kasse ein)."
88
 
89
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:208
90
  msgid "Activation email"
91
+ msgstr "Aktivierungsmail"
92
 
93
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:213
94
  #, php-format
95
  msgid "Enter your activation email from %s."
96
+ msgstr "Bitte geben Sie ihre Aktivierung von %s ein."
97
 
98
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:219
99
  msgid "License"
102
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:224
103
  #, php-format
104
  msgid "Enter your license key from %s to receive updates."
105
+ msgstr "Bitte geben Sie ihre Lizenz von %s ein, um Updates zu erhalten."
106
 
107
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:230
108
  msgid "PDF attachment"
121
  "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
122
  "adding there Email It In email addresses. Email addresses need to be "
123
  "seperated by comma's."
124
+ msgstr "Tip: Nutzen Sie \"Email it in\""
 
 
 
125
 
126
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:257
127
  msgid "Enable customer generation"
128
+ msgstr "Rechnungserstellung im Kundenkonto aktivieren"
129
 
130
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:259
131
  msgid "Let customers generate a global invoice from their account"
132
+ msgstr "Kunden können eine Sammelrechnung in ihrem Konto erstellen"
133
 
134
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:267
135
  msgid "Customer generation period"
136
+ msgstr "Laufzeit"
137
 
138
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:272
139
  msgid ""
140
  "Should your customers have the ability to generate a global invoice by month "
141
  "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
142
+ msgstr "Sammelrechnungsoption für Monat, oder Jahr?"
 
 
143
 
144
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:275
145
  msgid "Month"
168
 
169
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:329
170
  msgid "Subject for the global invoice email."
171
+ msgstr "Betreff für Sammelrechnung."
172
 
173
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:336
174
  msgid "Email message"
175
+ msgstr "Email-Text"
176
 
177
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:341
178
  msgid "Message for the global invoice email."
179
+ msgstr "Mail-Text für Sammelrechnung"
180
 
181
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:353
182
  msgid "Enable reminder"
183
+ msgstr "Erinnerungen aktivieren"
184
 
185
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:360
186
  msgid "Days until reminder"
187
+ msgstr "Tage bis zur Erinnerung"
188
 
189
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:365
190
  msgid "Number of days from order or invoice date until reminder date."
191
+ msgstr "Anzahl der Tage bis zur Erinnerung an die Rechnung."
192
 
193
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:374
194
  msgid "Date type"
195
+ msgstr "Datumsart"
196
 
197
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:379
198
  msgid "Choose the type of date to count from."
199
+ msgstr "Wählen Sie das Datum, von dem aus gezählt werden soll."
200
 
201
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:382
202
  msgid "Order date"
203
+ msgstr "Bestelldatum"
204
 
205
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:386
206
  msgid "Invoice date"
207
+ msgstr "Rechnungsdatum"
208
 
209
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:400
210
  msgid "Enable Request Invoice."
211
+ msgstr "Rechnung anfordern aktivieren"
212
 
213
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:475
214
  msgid "Activation email cannot be empty."
215
+ msgstr "Aktivierungsmail darf nicht leer sein."
216
 
217
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:512
218
  msgid ""
219
  "Something went wrong with the activation of your license. Contact the author "
220
  "for support."
221
+ msgstr "Lizenz konnte nicht aktiviert werden."
222
 
223
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:533
224
  msgid "File to large."
225
+ msgstr "Datei ist zu groß."
226
 
227
  #: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:539
228
  msgid "Only PDF files are allowed."
246
 
247
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-customer-generation.php:10
248
  msgid "Generate Global Invoice"
249
+ msgstr "Sammelrechnung erstellen"
250
 
251
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-customer-generation.php:20
252
  msgid "Select a month"
258
 
259
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-customer-generation.php:47
260
  msgid "Generate invoice"
261
+ msgstr "Rechnung generieren"
262
 
263
  #: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:16
264
  msgid "Global invoice successfully generated! "
265
+ msgstr "Sammelrechnung erfolgreich erstellt!"
266
 
267
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-export.php:37
268
  msgid "Bulk Export PDF Invoices"
269
+ msgstr "Mehrere Rechnungen exportieren"
270
 
271
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-export.php:38
272
  msgid "Bulk Export PDF Packing Slips"
273
+ msgstr "Mehrere Lieferscheine exportieren"
274
 
275
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-export.php:85
276
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-generate.php:73
277
  msgid "No order selected."
278
+ msgstr "Keine Bestellung ausgewählt."
279
 
280
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-generate.php:37
281
  msgid "Bulk Generate PDF Invoices"
282
+ msgstr "Mehrere Rechnungen erstellen"
283
 
284
  #: woocommerce-pdf-invoices-premium/includes/class-bulk-generate.php:38
285
  msgid "Bulk Generate PDF Packing Slips"
286
+ msgstr "Mehrere Lieferscheine erstellen"
287
 
288
  #: woocommerce-pdf-invoices-premium/includes/class-install.php:74
289
  #, php-format
290
  msgid ""
291
  "%1$s requires %2$s to be activated. Install and activate it and you should "
292
  "be good to go! :)"
293
+ msgstr "%1$s benötigt %2$s."
294
 
295
  #: woocommerce-pdf-invoices-premium/includes/class-install.php:83
296
  #, php-format
297
  msgid ""
298
+ "%1$s requires at least %2$s. Update it and get the best out of both plugins. "
299
+ ":)"
300
+ msgstr "%1$s benötigt mindestens %2$s."
301
 
302
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:204
303
  msgid "Invalid request"
309
 
310
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:271
311
  msgid "Generate global invoice"
312
+ msgstr "Sammelrechnung erstellen"
313
 
314
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:299
315
  msgid ""
316
  "Could not generate the invoice. Global invoices are only supported when "
317
  "using the micro template."
318
+ msgstr "Sammelrechnung kann nur mit dem micro template erstellt werden."
319
 
320
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-global.php:312
321
  msgid "Select more then one order to generate a global invoice."
322
+ msgstr "Wählen Sie mehr als eine Bestellung für eine Sammelrechnung aus."
323
 
324
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:60
325
  msgid "Yes"
326
+ msgstr "Ja"
327
 
328
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:60
329
  msgid "No"
330
+ msgstr "Nein"
331
 
332
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:63
333
  msgid "Reminder on:"
334
+ msgstr "Erinnerung:"
335
 
336
  #: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:68
337
  msgid "Reminder sent?"
338
+ msgstr "Erinnerung aktiviert?"
339
 
340
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:149
341
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:573
342
  msgid "Discount:"
343
+ msgstr "Rabatt:"
344
 
345
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:165
346
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:588
347
  msgid "Shipping:"
348
+ msgstr "Versand:"
349
 
350
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:235
351
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:558
352
  msgid "Subtotal:"
353
+ msgstr "Zwischensumme:"
354
 
355
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:275
356
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:657
357
  msgid "Total:"
358
+ msgstr "Summe:"
359
 
360
  #: woocommerce-pdf-invoices-premium/includes/class-invoice.php:352
361
  msgid "Request invoice"
362
+ msgstr "Rechnung anfordern"
363
 
364
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:43
365
  msgid "Customer invoice reminder"
366
+ msgstr "Erinnerung für nicht versandte Rechnungen"
367
 
368
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:44
369
  msgid ""
370
  "Customer invoice reminder emails can be sent to customers containing their "
371
  "order information and payment links."
372
  msgstr ""
373
+ "Erinnerungen für noch nicht versandte Rechnungen können mit Information zur "
374
+ "Bestellung und Bezahlung verschickt werden."
375
 
376
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:49
377
  msgid "Invoice reminder for order {order_number} from {order_date}"
378
+ msgstr "Erinnerung an Rechnung für Bestellung {order_number} vom {order_date}"
379
 
380
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:50
381
  msgid "Invoice reminder for order {order_number}"
382
+ msgstr "Erinnerung an Rechnung für Bestellung {order_number}"
383
 
384
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:149
385
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:158
386
  #, php-format
387
  msgid "Defaults to %s"
388
+ msgstr "Defaults to %s"
389
 
390
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:155
391
  msgid "Email heading"
392
+ msgstr "Email Überschrift"
393
 
394
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:164
395
  msgid "Email type"
396
+ msgstr "Email Typ"
397
 
398
  #: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:166
399
  msgid "Choose which format of email to send."
400
+ msgstr "Email Format."
401
 
402
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:9
403
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:11
408
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
409
  #, php-format
410
  msgid "Phone: %s"
411
+ msgstr "Telefon: %s"
412
 
413
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:19
414
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:23
417
 
418
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:30
419
  msgid "Global Invoice"
420
+ msgstr "Sammelrechnung"
421
 
422
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:48
423
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:53
428
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:453
429
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:57
430
  msgid "SKU"
431
+ msgstr "SKU"
432
 
433
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:57
434
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:60
440
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:68
441
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:59
442
  msgid "Qty"
443
+ msgstr "Stück"
444
 
445
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:66
446
  msgid "VAT"
447
+ msgstr "USt."
448
 
449
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:77
450
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:234
470
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:215
471
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:231
472
  msgid "Shipping"
473
+ msgstr "Versand"
474
 
475
  #: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:190
476
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:465
489
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/footer.php:23
490
  #, php-format
491
  msgid "%1$s of %2$s"
492
+ msgstr "%1$s von %2$s"
493
 
494
  #: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:103
495
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:362
499
  #: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
500
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
501
  msgid "Support"
502
+ msgstr "Support"
503
 
504
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-document.php:143
505
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:35
516
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:55
517
  #, php-format
518
  msgid "Purchase Order Number: %s"
519
+ msgstr "Auftragsnummer: %s"
520
 
521
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:755
522
  #, php-format
523
  msgid "%s of %s"
524
+ msgstr "%s von %s"
525
 
526
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:105
527
  msgid "Invoices"
533
  "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a <a "
534
  "href=\"%s\">★★★★★</a> rating. A huge thank you in advance!"
535
  msgstr ""
536
+ "Bitte unterstützen Sie <strong>WooCommerce PDF Invoices</strong> mit einer "
537
+ "<a href=\"%s\">★★★★★</a> Bewertung!"
538
 
539
  #: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:178
540
  #, php-format
541
  msgid "Version %s"
542
+ msgstr "Version %s"
543
 
544
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:25
545
  msgid "General"
556
  "email. The email should be <a href=\"%1$s\">enabled</a> in order to "
557
  "automatically generate the PDF invoice."
558
  msgstr ""
559
+ "Die PDF-Rechnung wird erstellt, wenn WooCommerce eine korrespondierende "
560
+ "Email versendet. Diese sollte <a href=\"%1$s\">aktiviert</a> sein."
561
 
562
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:78
563
  msgid "Download Options"
564
+ msgstr "Download Optionen"
565
 
566
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
567
  msgid "Cloud Storage Options"
570
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:82
571
  #, php-format
572
  msgid ""
573
+ "Sign-up at <a href=\"%1$s\">Email It In</a> to send invoices to your Dropbox,"
574
+ " OneDrive, Google Drive or Egnyte and enter your account below."
575
  msgstr ""
576
+ "Anmelden für <a href=\"%1$s\">Email It In</a> um Rechnungen zur Dropbox, "
577
+ "OneDrive, Google Drive oder Egnyte, oder einem weiteren Account zu schicken."
578
 
579
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:85
580
  msgid "Interface Options"
581
+ msgstr "Interface Optionen"
582
 
583
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:88
584
  msgid "Debug Options"
585
+ msgstr "Debug Optionen"
586
 
587
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:105
588
  msgid "Attach to Emails"
589
+ msgstr "Email anfügen"
590
 
591
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:113
592
  msgid "New order"
593
+ msgstr "Neue Bestellung"
594
 
595
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:118
596
  msgid "Order on-hold"
597
+ msgstr "Bestellung in Wartestellung"
598
 
599
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:123
600
  msgid "Processing order"
601
+ msgstr "Bestellung in Bearbeitung"
602
 
603
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
604
  msgid "Completed order"
605
+ msgstr "Abgeschlossene Bestellung"
606
 
607
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:133
608
  msgid "Customer invoice"
611
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
612
  #, php-format
613
  msgid "Attach to %s Emails"
614
+ msgstr "%s Emails anfügen"
615
 
616
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:151
617
  msgid "New Renewal Order"
618
+ msgstr "New Renewal Order"
619
 
620
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:157
621
  msgid "Subscription Switch Complete"
622
+ msgstr "Subscription Switch Complete"
623
 
624
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:163
625
  msgid "Processing Renewal order"
626
+ msgstr "Processing Renewal order"
627
 
628
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:169
629
  msgid "Completed Renewal Order"
630
+ msgstr "Neue Rechnung fertiggestellt"
631
 
632
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:175
633
  msgid "Customer Renewal Invoice"
634
+ msgstr "Neue Kundenrechnung"
635
 
636
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:190
637
  msgid "Disable for free products"
638
+ msgstr "Für kostenlose Produkte deaktivieren"
639
 
640
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:192
641
  msgid ""
642
  "Skip automatic PDF invoice generation for orders containing only free "
643
  "products."
644
  msgstr ""
645
+ "Keine PDF erstellen, wenn die Bestellung nur kostenlose Produkte beinhaltet."
646
 
647
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:200
648
  msgid "View PDF"
650
 
651
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:208
652
  msgid "Download"
653
+ msgstr "Download"
654
 
655
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:212
656
  msgid "Open in new browser tab/window"
658
 
659
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:226
660
  msgid "Enable download from my account"
661
+ msgstr "Download vom Konto aktivieren"
662
 
663
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:228
664
  msgid ""
665
  "By default PDF is only downloadable when order has been paid, so order "
666
  "status should be Processing or Completed."
667
  msgstr ""
668
+ "Eine PDF wird in der Standardeinstellung erst erstellt, wenn die Bestellung "
669
+ "bezahlt ist, oder der Status auf \"Bearbeitung\" oder \"Abgeschlossen\" "
670
+ "gesetzt wird."
671
 
672
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:241
673
  msgid "Enable Email It In"
674
+ msgstr "\"Email It In\" aktivieren"
675
 
676
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:248
677
  msgid "Email It In account"
678
+ msgstr "\"Email It In\" Account"
679
 
680
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:253
681
  #, php-format
682
  msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
683
  msgstr ""
684
+ "Erstellen Sie ihren Account von ihrem %1$s <a href=\"%2$s\">User Account</a>."
685
 
686
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:264
687
  msgid "Enable Invoice Number column"
688
+ msgstr "Spalte mit Rechnungsnummer anzeigen"
689
 
690
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:265
691
  msgid "Display invoice numbers on Shop Order page."
692
+ msgstr "Rechnungsnummer in der Bestellseite anzeigen"
693
 
694
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:277
695
  msgid "Enable mPDF debugging"
696
+ msgstr "mPDF debugging aktivieren"
697
 
698
  #: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:278
699
  msgid "Enable if you aren't able to create an invoice."
700
+ msgstr "Aktivieren, wenn keine PDF automatisch erstellt wird"
701
 
702
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:25
703
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:90
713
  msgid ""
714
  "Want to customize the template? The <a href=\"%s\">FAQ</a> will give you a "
715
  "brief description."
716
+ msgstr "Template verändern? Das <a href=\"%s\">FAQ</a> gibt eine Einführung."
717
 
718
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:47
719
  msgid "Invoice Number Options"
721
 
722
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:50
723
  msgid "Packing Slips Options"
724
+ msgstr "Lieferscheinoptionen"
725
 
726
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:51
727
  msgid ""
728
  "Packing slips are <strong>only available</strong> when using minimal "
729
  "template."
730
  msgstr ""
731
+ "Lieferscheine sind nur verfügbar, wenn das minimal template genutzt wird."
732
 
733
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:54
734
  msgid "Header Options"
736
 
737
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:55
738
  msgid "The header will be visible on every page."
739
+ msgstr "Die Kopfzeile auf jeder Seite sichtbar."
740
 
741
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:58
742
  msgid "Footer Options"
744
 
745
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:59
746
  msgid "The footer will be visible on every page."
747
+ msgstr "Die Fußzeile auf jeder Seite sichtbar."
748
 
749
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:62
750
  msgid "Visible Columns"
757
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:95
758
  #, php-format
759
  msgid "Create a custom template by copying it from %1$s to %2$s."
760
+ msgstr "Erstellen Sie ein eigenes template durch Kopie von %1$s zu %2$s."
761
 
762
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:97
763
  #, php-format
764
  msgid ""
765
  "<strong>Note:</strong> The %1$s template will probably no longer be "
766
  "supported in future versions, consider using the %2$s template."
767
+ msgstr "Hinweis: Das %1$s template wird nicht mehr weiterentwickelt."
768
 
769
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:105
770
  msgid "Color theme"
771
+ msgstr "Farben (theme)"
772
 
773
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:121
774
  msgid "Display theme text in black color"
775
+ msgstr "Text in schwarz"
776
 
777
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:123
778
  msgid ""
779
  "Enable if you've set the color theme to white or some other light color."
780
+ msgstr "Aktivieren, wenn ihr Theme weiß oder hell gestaltet ist."
781
 
782
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:131
783
  msgid "Date format"
786
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:136
787
  #, php-format
788
  msgid "<a href=\"%s\">Format</a> of invoice date and order date."
789
+ msgstr "<a href=\"%s\">Format</a> des Datums."
790
 
791
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:148
792
  msgid "Display prices including tax"
797
  "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
798
  "still be excluding tax, so disable it within the visible columns section."
799
  msgstr ""
800
+ "Einzelpostensummen beinhalten Steuern. \n"
801
+ "<br/><b>Hinweis</b>: Zwischensummen werden ohne Steuern angezeigt, wenn "
802
+ "keine andere Einstellung getroffen wird."
803
 
804
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:163
805
  msgid "Shipping taxable"
806
+ msgstr "Versandkosten versteuerbar"
807
 
808
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:165
809
  msgid "Enable to display subtotal including shipping."
810
+ msgstr "Einschalten um Zwischensumme mit Versandkosten anzuzeigen."
811
 
812
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:178
813
  msgid "Mark invoice as paid"
814
+ msgstr "Rechnung als bezahlt markieren"
815
 
816
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:180
817
  msgid "Invoice will be watermarked when order has been paid."
818
+ msgstr "Rechnung erhält Wasserzeichen, wenn bezahlt."
819
 
820
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:193
821
  msgid "Disable Packing Slips"
822
+ msgstr "Lieferschein nicht erstellen"
823
 
824
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:200
825
  msgid "Company name"
833
  #, php-format
834
  msgid ""
835
  "Use the <a href=\"%1$s\">Media Library</a> to <a href=\"%2$s\">upload</a> or "
836
+ "choose a .jpg, .jpeg, .gif or .png file and copy and paste the <a "
837
+ "href=\"%3$s\" target=\"_blank\">URL</a>."
838
  msgstr ""
839
+ "Benutzen Sie die <a href=\"%1$s\">Media Library</a> und geben Sie die <a "
840
+ "href=\"%3$s\" target=\"_blank\">URL</a> der Datei an."
841
 
842
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:222
843
  msgid "Company address"
851
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:322
852
  #, php-format
853
  msgid "Allowed HTML tags: %s."
854
+ msgstr "Erlaubte HTML tags: %s."
855
 
856
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:233
857
  msgid "Company details"
859
 
860
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:244
861
  msgid "Title"
862
+ msgstr "Titel"
863
 
864
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:249
865
  msgid "Change the name of the invoice."
866
+ msgstr "Ändern Sie den Namen der Rechnung."
867
 
868
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:250
869
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:702
872
 
873
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:255
874
  msgid "Thank you text"
875
+ msgstr "Dankestext"
876
 
877
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
878
  msgid "Visible in big colored bar directly after invoice total."
879
  msgstr ""
880
+ "Sichtbar in großer, farbig markierter Zeile direkt nach der Gesamtsumme."
881
 
882
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:272
883
  msgid "Show customers shipping address"
884
+ msgstr "Kundenadresse anzeigen"
885
 
886
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:274
887
  msgid ""
888
  "Customers shipping address won't be visible when order has only virtual "
889
  "products."
890
  msgstr ""
891
+ "Kundenadresse wird nicht sichtbar sein, wenn die Bestellung nur virtuelle "
892
+ "Produkte beeinhaltet."
893
 
894
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:287
895
  msgid "Show customer notes"
905
  "Visible below customer notes and above footer. Want to attach additional "
906
  "pages to the invoice? Take a look at <a href=\"%1$s\">%2$s</a> plugin."
907
  msgstr ""
908
+ "Wird angezeigt unter Kundenbemerkungen und über dem Footer. Möchten Sie "
909
+ "weitere Seiten an die Rechnung anfügen? Schauen Sie sich dieses Plugin an: "
910
+ "<a href=\"%1$s\">%2$s</a>."
911
 
912
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:306
913
  msgid "Left footer column."
914
+ msgstr "Linke Fußzeilenspalte."
915
 
916
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:317
917
  msgid "Right footer column."
918
+ msgstr "Rechte Fußzeilenspalte."
919
 
920
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:328
921
  msgid "Type"
922
+ msgstr "Typ"
923
 
924
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:336
925
  msgid "WooCommerce order number"
926
+ msgstr "WooCommerce Auftragsnummer"
927
 
928
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:340
929
  msgid "Sequential number"
930
+ msgstr "Lfd. Nummer"
931
 
932
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:354
933
  msgid "Reset invoice counter"
939
 
940
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:367
941
  msgid "Next invoice number when resetting counter."
942
+ msgstr "Nächste Rechnungsnummer nach Reset."
943
 
944
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:369
945
  msgid ""
946
  "<b>Note:</b> Only available for Sequential numbering. All PDF invoices with "
947
  "invoice number greater then next invoice number will be deleted!"
948
  msgstr ""
949
+ "<b>Hinweis:</b> Nur verfügbar für sequentielle Nummerierung. Alle Rechnungen "
950
+ "mit einer Nummer größer als die folgende werden gelöscht!"
951
 
952
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:379
953
  msgid "Digits"
955
 
956
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:395
957
  msgid "Prefix"
958
+ msgstr "Prefix"
959
 
960
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:406
961
  msgid "Suffix"
962
+ msgstr "Suffix"
963
 
964
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:417
965
  msgid "Format"
968
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:422
969
  #, php-format
970
  msgid "Available placeholders: %s."
971
+ msgstr "Verfügbare Platzhalter: %s."
972
 
973
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:424
974
  #, php-format
975
  msgid "<b>Note:</b> %s is required and slashes aren't supported."
976
+ msgstr "<b>Hinweis:</b> %s wird benötigt und Schräger sind nicht unterstützt."
977
 
978
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:436
979
  msgid "Reset yearly"
980
+ msgstr "Jährlicher Reset."
981
 
982
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:438
983
  msgid "Automatically reset invoice numbers on new year's day."
984
  msgstr ""
985
+ "Automatischer Reset der laufenden Rechnungsnummern zu Beginn eines neuen "
986
+ "Jahres."
987
 
988
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:440
989
  msgid ""
990
  "<b>Note</b>: You will have to generate all invoices again when changing "
991
  "option."
992
  msgstr ""
993
+ "<b>Hinweis</b>: Sie müssen alle Rechnungen erneut generieren, wenn Sie diese "
994
+ "Option ändern."
995
 
996
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:477
997
  msgid "Tax (item)"
998
+ msgstr "Steuer (Einzel)"
999
 
1000
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:489
1001
  msgid "Tax (total)"
1002
+ msgstr "Steuer (Summe)"
1003
 
1004
  #: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:555
1005
  msgid ""
1006
  "Company logo not found. Upload the image to the Media Library and try again."
1007
+ msgstr "Datei (Logo) nicht gefunden."
1008
 
1009
  #: woocommerce-pdf-invoices/includes/admin/views/html-activation-notice.php:16
1010
  #, php-format
1012
  "The settings of WooCommerce PDF Invoices are available <a href=\"%1$s\">on "
1013
  "this page</a>."
1014
  msgstr ""
1015
+ "Die Einstellungen von WooCommerce PDF Invoices finden Sie <a href=\"%1$s\">"
1016
+ "hier</a>."
1017
 
1018
  #: woocommerce-pdf-invoices/includes/admin/views/html-deactivation-notice.php:19
1019
  #, php-format
1020
  msgid ""
1021
+ "Before we deactivate WooCommerce PDF Invoices, would you care to <a "
1022
+ "href=\"%1$s\" target=\"_blank\">let us know why</a> so we can improve it for "
1023
+ "you? <a href=\"%2$s\">No, deactivate now</a>."
1024
  msgstr ""
1025
+ "Helfen Sie uns WooCommerce PDF Invoices zu verbessern und teilen Sie uns den "
1026
+ "<a href=\"%1$s\" target=\"_blank\">Grund</a> für die Deaktivierung mit? <a "
1027
+ "href=\"%2$s\">Sofort deaktivieren</a>."
1028
 
1029
  #: woocommerce-pdf-invoices/includes/admin/views/html-rate-notice.php:21
1030
  #, php-format
1031
  msgid ""
1032
  "Hi%1$s! You're using <b>WooCommerce PDF Invoices</b> for some time now and "
1033
+ "we would appreciate your <a href=\"%2$s\" target=\"_blank\">★★★★★</a> rating."
1034
+ " It will support future development big-time."
1035
  msgstr ""
1036
+ "Hi%1$s! Sie benutzen <b>WooCommerce PDF Invoices</b> jetzt schon einige Zeit."
1037
+ " Wir freuen uns über ihre Unterstützung durch ein Rating <a href=\"%2$s\" "
1038
+ "target=\"_blank\">★★★★★</a>."
1039
 
1040
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:2
1041
  msgid "WooCommerce PDF Invoices Premium"
1042
+ msgstr "WooCommerce PDF Invoices Premium"
1043
 
1044
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:4
1045
  msgid ""
1046
  "This plugin offers a premium version which comes with the following features:"
1047
+ msgstr "Dieses Plugin gibt es als Premiumversion mit folgenden Features:"
1048
 
1049
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
1050
  msgid "Change the font of the PDF invoices."
1051
+ msgstr "Schriftart ändern."
1052
 
1053
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
1054
  msgid ""
1055
  "Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
1056
  msgstr ""
1057
+ "Rechnungen in unterschiedlichen Sprachen generieren (WPML and Polylang "
1058
+ "compatible)."
1059
 
1060
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
1061
  msgid "Bulk generate PDF invoices."
1062
+ msgstr "Mehrere Rechnungen gleichzeitig generieren."
1063
 
1064
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
1065
  msgid "Bulk export and/or download PDF invoices."
1066
+ msgstr "Download/Export mehrerer Rechnungen gleichzeitig."
1067
 
1068
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
1069
  msgid "Bill periodically by generating and sending global invoices."
1070
+ msgstr "Periodische Sammelrechnungen verschicken."
1071
 
1072
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
1073
  msgid "Add additional PDF's to PDF invoices."
1074
+ msgstr "Weitere PDF-Dateien anhängen."
1075
 
1076
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:11
1077
  msgid "Send customer invoices directly to suppliers and others."
1078
  msgstr ""
1079
+ "Rechnungen direkt an Lieferanten und weitere versenden.\n"
1080
 
1081
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
1082
  #, php-format
1083
  msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
1084
+ msgstr "Rechnungen an <a href=\"%s\">WooCommerce Subscriptions</a> anhängen."
1085
 
1086
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
1087
  msgid "Learn more"
1088
+ msgstr "Mehr erfahren"
1089
 
1090
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
1091
  msgid "Stay up-to-date"
1092
+ msgstr "Bleiben Sie up-to-date"
1093
 
1094
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:21
1095
  msgid ""
1096
  "We're constantly developing new features, stay up-to-date by subscribing to "
1097
  "our newsletter."
1098
+ msgstr "Bleiben Sie mit unserem Newsletter up-to-date über neue Funktionen."
1099
 
1100
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
1101
  msgid "Your email address"
1102
+ msgstr "Ihre E-Mail"
1103
 
1104
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
1105
  msgid "Signup"
1106
+ msgstr "Registrieren"
1107
 
1108
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:36
1109
  msgid "No spam, ever. Unsubscribe at any time"
1110
  msgstr ""
1111
+ "Einwilligung kann jederzeit widerrufen werden, keine Weitergabe der Daten, "
1112
+ "kein Spam."
1113
 
1114
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:45
1115
  msgid "About"
1116
+ msgstr "Über Uns"
1117
 
1118
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:47
1119
  msgid ""
1120
  "This plugin is an open source project wich aims to fill the invoicing gap of "
1121
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
1122
  msgstr ""
1123
+ "Dieses Plugin ist ein Opensource-Projekt um die fehlende Funktion "
1124
+ "automatisierter PDF-Rechnungen in <a href=\"http://www.woothemes."
1125
+ "com/woocommerce\">WooCommerce</a> zu schließen."
1126
 
1127
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:50
1128
  #, php-format
1129
  msgid "Version: %s"
1130
+ msgstr "Version: %s"
1131
 
1132
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:52
1133
  #, php-format
1134
  msgid "Author: %s"
1135
+ msgstr "Autor: %s"
1136
 
1137
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
1138
  #, php-format
1139
  msgid ""
1140
  "We will never ask for donations, but to guarantee future development, we do "
1141
+ "need your support. Please show us your appreciation by leaving a <a "
1142
+ "href=\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
1143
  msgstr ""
1144
+ "Bitte unterstützen Sie mit einem Rating <a href=\"%1$s\">★★★★★</a><a "
1145
+ "href=\"%2$s\">unsere Arbeit</a>."
1146
 
1147
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:82
1148
  msgid ""
1149
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
1150
  msgstr ""
1151
+ "Testen sie das kostenlose WooCommerce PDF Invoices plugin for WordPress!"
1152
 
1153
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:87
1154
  msgid "Need Help?"
1155
+ msgstr "Benötigen Sie Hilfe?"
1156
 
1157
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:89
1158
  msgid "Frequently Asked Questions"
1159
+ msgstr "FAQ"
1160
 
1161
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:90
1162
  msgid "Support forum"
1163
+ msgstr "Support forum"
1164
 
1165
  #: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:91
1166
  msgid "Request a feature"
1167
+ msgstr "Feature Request"
1168
 
1169
  #: woocommerce-pdf-invoices/includes/class-packing-slip.php:62
1170
  msgid "View packing slip"
1171
+ msgstr "Lieferschein öffnen"
1172
 
1173
  #: woocommerce-pdf-invoices/includes/compatibility/class-wc-core-compatibility.php:245
1174
  msgid "WooCommerce"
1175
+ msgstr "WooCommerce"
1176
 
1177
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:37
1178
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:44
1179
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:39
1180
+ #, php-format
1181
  msgid "Order Number: %s"
1182
+ msgstr "Auftragsnummer: %s"
1183
 
1184
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:38
1185
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:42
1186
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:37
1187
  #, php-format
1188
  msgid "Order Date: %s"
1189
+ msgstr "Lieferdatum: %s"
1190
 
1191
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:268
1192
  msgid "VAT 0%"
1193
+ msgstr "USt. 0%"
1194
 
1195
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:284
1196
  msgid "Refunded"
1204
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:314
1205
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:154
1206
  msgid "Zero rated for VAT as customer has supplied EU VAT number"
1207
+ msgstr "Keine USt. auf Grund innergemeinschaftlicher Leistung"
1208
 
1209
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:49
1210
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:40
1211
  msgid "Ship to:"
1212
+ msgstr "Versand an:"
1213
 
1214
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:64
1215
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:55
1216
  msgid "Product"
1217
+ msgstr "Produkt"
1218
 
1219
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:74
1220
  msgid "Price"
1221
+ msgstr "Preis"
1222
 
1223
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:137
1224
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:101
1225
  #, php-format
1226
  msgid "Note from customer: %s"
1227
+ msgstr "Bemerkung des Kunden: %s"
1228
 
1229
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php:142
1230
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:106
1231
  #, php-format
1232
  msgid "Note to customer: %s"
1233
+ msgstr "Hinweis an Kunden: %s"
1234
 
1235
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:38
1236
  #, php-format
1237
  msgid "Invoice #: %s"
1238
+ msgstr "Rechnungsnummer: %s"
1239
 
1240
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:40
1241
  #, php-format
1242
  msgid "Invoice Date: %s"
1243
+ msgstr "Rechnungsdatum: %s"
1244
 
1245
  #: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:48
1246
  #, php-format
1247
  msgid "Payment Method: %s"
1248
+ msgstr "Zahlungsart: %s"
1249
 
1250
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:29
1251
  msgid "Packing Slip"
1252
+ msgstr "Lieferschein"
1253
 
1254
  #: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
1255
  #, php-format
1256
  msgid "Shipping Method: %s"
1257
+ msgstr "Versand: %s"
1258
 
1259
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:517
1260
  msgid "Invoice No."
1261
+ msgstr "Rechnungsnummer"
1262
 
1263
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:553
1264
  msgid "View invoice"
1286
 
1287
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:627
1288
  msgid "Cancel"
1289
+ msgstr "Abbrechen"
1290
 
1291
  #: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:629
1292
  msgid "Are you sure to delete the invoice?"
1293
+ msgstr "Rechnung wirklich löschen?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: woocommerce pdf invoices, invoice, packing slips, delivery note, packing list, shipping list, generate, pdf, woocommerce, attachment, email, customer invoice, processing, vat, tax, sequential, number, dropbox, google drive, onedrive, egnyte, cloud, storage
5
  Requires at least: 4.0
6
  Tested up to: 4.8
7
- Stable tag: 2.9.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -232,8 +232,51 @@ Use below code to display meta-data. Replace `{META_KEY}` with the actual key. I
232
 
233
  Important: A custom template is required to add a custom field to the PDF invoice.
234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  == Changelog ==
236
 
 
 
 
 
 
 
 
 
237
  = 2.9.2 - June 12, 2017 =
238
 
239
  - Added: Filter to change the value of the option when using `WPI()->get_option()`. See [Issue #190](https://github.com/baselbers/woocommerce-pdf-invoices/issues/190).
4
  Tags: woocommerce pdf invoices, invoice, packing slips, delivery note, packing list, shipping list, generate, pdf, woocommerce, attachment, email, customer invoice, processing, vat, tax, sequential, number, dropbox, google drive, onedrive, egnyte, cloud, storage
5
  Requires at least: 4.0
6
  Tested up to: 4.8
7
+ Stable tag: 2.9.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
232
 
233
  Important: A custom template is required to add a custom field to the PDF invoice.
234
 
235
+ ### How to use a different template based on some order variable? ###
236
+ Use below code to use a different template based on WPML order language. You can for example change the function to use a different template based on the payment method instead.
237
+
238
+ `
239
+ /**
240
+ * Change template based on WPML order language.
241
+ * Make sure to create custom templates with the correct names or the templates won't be found.
242
+ *
243
+ * @param string $template_name template name.
244
+ * @param string $template_type template type like global or simple.
245
+ * @param int $order_id WC Order ID.
246
+ *
247
+ * @return string
248
+ */
249
+ function change_template_based_on_order_language( $template_name, $template_type, $order_id ) {
250
+ $order_language = get_post_meta( $order_id, 'wpml_language', true );
251
+
252
+ if ( false === $order_language ) {
253
+ return $template_name;
254
+ }
255
+
256
+ switch ( $order_language ) {
257
+ case 'en':
258
+ $template_name = 'minimal-en';
259
+ break;
260
+ case 'nl':
261
+ $template_name = 'minimal-nl';
262
+ break;
263
+ }
264
+
265
+ return $template_name;
266
+ }
267
+ add_filter( 'wpi_template_name', 'change_template_based_on_order_language', 10, 3 );
268
+ `
269
+
270
  == Changelog ==
271
 
272
+ = 2.9.3 - July 5, 2017 =
273
+
274
+ - Added: 'wpi_template_name' filter to change the template based on specific order variables. See FAQ.
275
+ - Added: 'wpi_email_types' filter to add email types.
276
+ - Fixed: PDF abortion error by not using date format from settings for [order-date] since it can have slashes.
277
+ - Fixed: Missing argument 3 fatal error due to 'woocommerce_checkout_order_processed' hook used by third party plugins.
278
+ - Removed: Greyed out WooCommerce Subscriptions emails.
279
+
280
  = 2.9.2 - June 12, 2017 =
281
 
282
  - Added: Filter to change the value of the option when using `WPI()->get_option()`. See [Issue #190](https://github.com/baselbers/woocommerce-pdf-invoices/issues/190).
vendor/autoload_52.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
- return ComposerAutoloaderInit600ff7d79a406b9ce509155c07423426::getLoader();
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
+ return ComposerAutoloaderInit703f801ebc46900e1b7f8bc9a11c7614::getLoader();
vendor/composer/autoload_classmap.php CHANGED
@@ -21,6 +21,7 @@ return array(
21
  'BEWPI_WC_Data_Compatibility' => $baseDir . '/includes/compatibility/abstract-wc-data-compatibility.php',
22
  'BEWPI_WC_DateTime' => $baseDir . '/includes/compatibility/class-wc-datetime.php',
23
  'BEWPI_WC_Order_Compatibility' => $baseDir . '/includes/compatibility/class-wc-order-compatibility.php',
 
24
  'BEWPI_WC_Product_Compatibility' => $baseDir . '/includes/compatibility/class-wc-product-compatibility.php',
25
  'BE_WooCommerce_PDF_Invoices' => $baseDir . '/includes/woocommerce-pdf-invoices.php',
26
  'CGIF' => $vendorDir . '/mpdf/mpdf/classes/gif.php',
21
  'BEWPI_WC_Data_Compatibility' => $baseDir . '/includes/compatibility/abstract-wc-data-compatibility.php',
22
  'BEWPI_WC_DateTime' => $baseDir . '/includes/compatibility/class-wc-datetime.php',
23
  'BEWPI_WC_Order_Compatibility' => $baseDir . '/includes/compatibility/class-wc-order-compatibility.php',
24
+ 'BEWPI_WC_Payment_Gateway_Compatibility' => $baseDir . '/includes/compatibility/class-wc-payment-gateway-compatibility.php',
25
  'BEWPI_WC_Product_Compatibility' => $baseDir . '/includes/compatibility/class-wc-product-compatibility.php',
26
  'BE_WooCommerce_PDF_Invoices' => $baseDir . '/includes/woocommerce-pdf-invoices.php',
27
  'CGIF' => $vendorDir . '/mpdf/mpdf/classes/gif.php',
vendor/composer/autoload_real_52.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
- class ComposerAutoloaderInit600ff7d79a406b9ce509155c07423426 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit600ff7d79a406b9ce509155c07423426 {
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit600ff7d79a406b9ce509155c07423426', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit600ff7d79a406b9ce509155c07423426', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
+ class ComposerAutoloaderInit703f801ebc46900e1b7f8bc9a11c7614 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit703f801ebc46900e1b7f8bc9a11c7614', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit703f801ebc46900e1b7f8bc9a11c7614', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
vendor/composer/autoload_static.php CHANGED
@@ -32,6 +32,7 @@ class ComposerStaticInitc5320bd3a3438b53bbd924af31580299
32
  'BEWPI_WC_Data_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/abstract-wc-data-compatibility.php',
33
  'BEWPI_WC_DateTime' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-datetime.php',
34
  'BEWPI_WC_Order_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-order-compatibility.php',
 
35
  'BEWPI_WC_Product_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-product-compatibility.php',
36
  'BE_WooCommerce_PDF_Invoices' => __DIR__ . '/../..' . '/includes/woocommerce-pdf-invoices.php',
37
  'CGIF' => __DIR__ . '/..' . '/mpdf/mpdf/classes/gif.php',
32
  'BEWPI_WC_Data_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/abstract-wc-data-compatibility.php',
33
  'BEWPI_WC_DateTime' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-datetime.php',
34
  'BEWPI_WC_Order_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-order-compatibility.php',
35
+ 'BEWPI_WC_Payment_Gateway_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-payment-gateway-compatibility.php',
36
  'BEWPI_WC_Product_Compatibility' => __DIR__ . '/../..' . '/includes/compatibility/class-wc-product-compatibility.php',
37
  'BE_WooCommerce_PDF_Invoices' => __DIR__ . '/../..' . '/includes/woocommerce-pdf-invoices.php',
38
  'CGIF' => __DIR__ . '/..' . '/mpdf/mpdf/classes/gif.php',