WooCommerce PDF Invoices & Packing Slips - Version 1.5.26

Version Description

  • Feature: Automatically list all emails registered in WooCommerce
  • Feature: Reset invoice number yearly
  • Feature: WooCommerce Chained Products compatibility
  • Feature: WooCommerce Product Bundles visibility settings taken into account in invoice
  • Fix: Disable PDF creation from trashed order_ids
  • Tweak: Alert when no orders selected for bulk export (Props to Dartui!)
  • Tweak: PDF invoice settings always under WooCommerce menu (also for premium users)
  • Tweak: extra $item_id passed in row class filter
  • Translations: Updated Slovenian, Spanish, Dutch & POT file
Download this release

Release Info

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

Code changes from version 1.5.24 to 1.5.26

includes/class-wcpdf-export.php CHANGED
@@ -75,7 +75,12 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
75
 
76
  // WooCommerce Product Bundles compatibility (add row classes)
77
  if ( class_exists('WC_Bundles') ) {
78
- add_filter( 'wpo_wcpdf_item_row_class', array( $this, 'add_product_bundles_classes' ), 10, 3 );
 
 
 
 
 
79
  }
80
 
81
  // qTranslate-X compatibility
@@ -227,7 +232,22 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
227
  */
228
  public function process_template( $template_type, $order_ids ) {
229
  $this->template_type = $template_type;
230
- $order_ids = $this->order_ids = apply_filters( 'wpo_wcpdf_process_order_ids', $order_ids, $template_type );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
 
232
  do_action( 'wpo_wcpdf_process_template', $template_type );
233
 
@@ -579,6 +599,22 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
579
  } else {
580
  $invoice_number = $next_invoice_number;
581
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  // die($invoice_number);
583
 
584
  update_post_meta($order_id, '_wcpdf_invoice_number', $invoice_number);
@@ -957,7 +993,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
957
  // DEPRICATED (does not support thumbnail sizes)
958
  global $woocommerce;
959
 
960
- if ( $product->variation_id && has_post_thumbnail( $product->variation_id ) ) {
961
  $thumbnail_id = get_post_thumbnail_id ( $product->variation_id );
962
  } elseif ( has_post_thumbnail( $product->id ) ) {
963
  $thumbnail_id = get_post_thumbnail_id ( $product->id );
@@ -994,16 +1030,65 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
994
  return $thumbnail;
995
  }
996
 
997
- public function add_product_bundles_classes ( $item_id, $template_type, $order ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  $item_meta = $order->get_item_meta( $item_id );
999
 
1000
  if (isset($item_meta['_bundled_by'])) {
1001
- return $item_id . ' bundled-item';
 
 
 
 
 
 
 
1002
  } elseif (isset($item_meta['_bundled_items'])) {
1003
- return $item_id . ' product-bundle';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1004
  }
1005
 
1006
- return $item_id;
1007
  }
1008
 
1009
  /**
75
 
76
  // WooCommerce Product Bundles compatibility (add row classes)
77
  if ( class_exists('WC_Bundles') ) {
78
+ add_filter( 'wpo_wcpdf_item_row_class', array( $this, 'add_product_bundles_classes' ), 10, 4 );
79
+ }
80
+
81
+ // WooCommerce Chained Products compatibility (add row classes)
82
+ if ( class_exists('SA_WC_Chained_Products') ) {
83
+ add_filter( 'wpo_wcpdf_item_row_class', array( $this, 'add_chained_product_class' ), 10, 4 );
84
  }
85
 
86
  // qTranslate-X compatibility
232
  */
233
  public function process_template( $template_type, $order_ids ) {
234
  $this->template_type = $template_type;
235
+ $order_ids = apply_filters( 'wpo_wcpdf_process_order_ids', $order_ids, $template_type );
236
+
237
+ // filter out trashed orders
238
+ foreach ($order_ids as $key => $order_id) {
239
+ $order_status = get_post_status( $order_id );
240
+ if ( $order_status == 'trash' ) {
241
+ unset( $order_ids[ $key ] );
242
+ }
243
+ }
244
+ // sharing is caring!
245
+ $this->order_ids = $order_ids;
246
+
247
+ // throw error when no order ids
248
+ if ( empty( $order_ids ) ) {
249
+ throw new Exception('No orders to export!');
250
+ }
251
 
252
  do_action( 'wpo_wcpdf_process_template', $template_type );
253
 
599
  } else {
600
  $invoice_number = $next_invoice_number;
601
  }
602
+
603
+ // reset invoice number yearly
604
+ if ( isset( $this->template_settings['yearly_reset_invoice_number'] ) ) {
605
+ $current_year = date("Y");
606
+ $last_invoice_year = get_option( 'wpo_wcpdf_last_invoice_year' );
607
+ // check first time use
608
+ if ( empty( $last_invoice_year ) ) {
609
+ $last_invoice_year = $current_year;
610
+ update_option( 'wpo_wcpdf_last_invoice_year', $current_year );
611
+ }
612
+ // check if we need to reset
613
+ if ( $current_year != $last_invoice_year ) {
614
+ $invoice_number = 1;
615
+ update_option( 'wpo_wcpdf_last_invoice_year', $current_year );
616
+ }
617
+ }
618
  // die($invoice_number);
619
 
620
  update_post_meta($order_id, '_wcpdf_invoice_number', $invoice_number);
993
  // DEPRICATED (does not support thumbnail sizes)
994
  global $woocommerce;
995
 
996
+ if ( $product->variation_id && has_post_thumbnail( $product->variation_id ) ) {
997
  $thumbnail_id = get_post_thumbnail_id ( $product->variation_id );
998
  } elseif ( has_post_thumbnail( $product->id ) ) {
999
  $thumbnail_id = get_post_thumbnail_id ( $product->id );
1030
  return $thumbnail;
1031
  }
1032
 
1033
+ public function add_product_bundles_classes ( $classes, $template_type, $order, $item_id = '' ) {
1034
+ if ( empty($item_id) ) {
1035
+ // get item id from classes (backwards compatibility fix)
1036
+ $class_array = explode(' ', $classes);
1037
+ foreach ($class_array as $class) {
1038
+ if (is_numeric($class)) {
1039
+ $item_id = $class;
1040
+ break;
1041
+ }
1042
+ }
1043
+
1044
+ // if still empty, we lost the item id somewhere :(
1045
+ if (empty($item_id)) {
1046
+ return $classes;
1047
+ }
1048
+ }
1049
+
1050
  $item_meta = $order->get_item_meta( $item_id );
1051
 
1052
  if (isset($item_meta['_bundled_by'])) {
1053
+ $classes = $classes . ' bundled-item';
1054
+
1055
+ // check bundled item visibility
1056
+ if ( ! empty( $item_meta[ '_bundled_item_hidden' ] ) ) {
1057
+ $classes = $classes . ' hidden';
1058
+ }
1059
+
1060
+ return $classes;
1061
  } elseif (isset($item_meta['_bundled_items'])) {
1062
+ return $classes . ' product-bundle';
1063
+ }
1064
+
1065
+ return $classes;
1066
+ }
1067
+
1068
+ public function add_chained_product_class ( $classes, $template_type, $order, $item_id = '' ) {
1069
+ if ( empty($item_id) ) {
1070
+ // get item id from classes (backwards compatibility fix)
1071
+ $class_array = explode(' ', $classes);
1072
+ foreach ($class_array as $class) {
1073
+ if (is_numeric($class)) {
1074
+ $item_id = $class;
1075
+ break;
1076
+ }
1077
+ }
1078
+
1079
+ // if still empty, we lost the item id somewhere :(
1080
+ if (empty($item_id)) {
1081
+ return $classes;
1082
+ }
1083
+ }
1084
+
1085
+ $item_meta = $order->get_item_meta( $item_id );
1086
+
1087
+ if (isset($item_meta['_chained_product_of'])) {
1088
+ return $classes . ' chained-product';
1089
  }
1090
 
1091
+ return $classes;
1092
  }
1093
 
1094
  /**
includes/class-wcpdf-settings.php CHANGED
@@ -27,11 +27,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
27
  }
28
 
29
  public function menu() {
30
- if (class_exists('WPOvernight_Core')) {
31
- $parent_slug = 'wpo-core-menu';
32
- } else {
33
- $parent_slug = 'woocommerce';
34
- }
35
 
36
  $this->options_page_hook = add_submenu_page(
37
  $parent_slug,
@@ -217,6 +213,10 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
217
  'customer_invoice' => __( 'Customer Invoice email' , 'wpo_wcpdf' ),
218
  );
219
 
 
 
 
 
220
  add_settings_field(
221
  'email_pdf',
222
  __( 'Attach invoice to:', 'wpo_wcpdf' ),
@@ -392,10 +392,10 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
392
  array(
393
  'menu' => $option,
394
  'id' => 'paper_size',
395
- 'options' => array(
396
  'a4' => __( 'A4' , 'wpo_wcpdf' ),
397
  'letter' => __( 'Letter' , 'wpo_wcpdf' ),
398
- ),
399
  )
400
  );
401
 
@@ -576,6 +576,18 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
576
  )
577
  );
578
 
 
 
 
 
 
 
 
 
 
 
 
 
579
  // Section.
580
  add_settings_section(
581
  'packing_slip',
@@ -764,6 +776,37 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
764
 
765
  }
766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  /**
768
  * Set default settings.
769
  */
27
  }
28
 
29
  public function menu() {
30
+ $parent_slug = 'woocommerce';
 
 
 
 
31
 
32
  $this->options_page_hook = add_submenu_page(
33
  $parent_slug,
213
  'customer_invoice' => __( 'Customer Invoice email' , 'wpo_wcpdf' ),
214
  );
215
 
216
+ // load custom emails
217
+ $extra_emails = $this->get_wc_emails();
218
+ $wc_emails = array_merge( $wc_emails, $extra_emails );
219
+
220
  add_settings_field(
221
  'email_pdf',
222
  __( 'Attach invoice to:', 'wpo_wcpdf' ),
392
  array(
393
  'menu' => $option,
394
  'id' => 'paper_size',
395
+ 'options' => apply_filters( 'wpo_wcpdf_template_settings_paper_size', array(
396
  'a4' => __( 'A4' , 'wpo_wcpdf' ),
397
  'letter' => __( 'Letter' , 'wpo_wcpdf' ),
398
+ ) ),
399
  )
400
  );
401
 
576
  )
577
  );
578
 
579
+ add_settings_field(
580
+ 'yearly_reset_invoice_number',
581
+ __( 'Reset invoice number yearly', 'wpo_wcpdf' ),
582
+ array( &$this, 'checkbox_element_callback' ),
583
+ $option,
584
+ 'invoice',
585
+ array(
586
+ 'menu' => $option,
587
+ 'id' => 'yearly_reset_invoice_number',
588
+ )
589
+ );
590
+
591
  // Section.
592
  add_settings_section(
593
  'packing_slip',
776
 
777
  }
778
 
779
+ /**
780
+ * get all emails registered in WooCommerce
781
+ * @param boolean $remove_defaults switch to remove default woocommerce emails
782
+ * @return array $emails list of all email ids/slugs and names
783
+ */
784
+ public function get_wc_emails ( $remove_defaults = true ) {
785
+ // get emails from WooCommerce
786
+ global $woocommerce;
787
+ $mailer = $woocommerce->mailer();
788
+ $wc_emails = $mailer->get_emails();
789
+
790
+ $default_emails = array(
791
+ 'new_order',
792
+ 'customer_processing_order',
793
+ 'customer_completed_order',
794
+ 'customer_invoice',
795
+ 'customer_note',
796
+ 'customer_reset_password',
797
+ 'customer_new_account'
798
+ );
799
+
800
+ $emails = array();
801
+ foreach ($wc_emails as $name => $template) {
802
+ if ( !( $remove_defaults && in_array( $template->id, $default_emails ) ) ) {
803
+ $emails[$template->id] = $template->title;
804
+ }
805
+ }
806
+
807
+ return $emails;
808
+ }
809
+
810
  /**
811
  * Set default settings.
812
  */
includes/class-wcpdf-writepanels.php CHANGED
@@ -107,6 +107,11 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
107
  * Add PDF actions to the orders listing
108
  */
109
  public function add_listing_actions( $order ) {
 
 
 
 
 
110
  $listing_actions = array(
111
  'invoice' => array (
112
  'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_wpo_wcpdf&template_type=invoice&order_ids=' . $order->id ), 'generate_wpo_wcpdf' ),
@@ -157,12 +162,13 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
157
 
158
  if ( $column == 'pdf_invoice_number' ) {
159
  if ( empty( $the_order ) || $the_order->id != $post->ID ) {
160
- $the_order = new WC_Order( $post->ID );
 
 
 
 
 
161
  }
162
-
163
- echo $wpo_wcpdf->export->get_invoice_number( $the_order->id );
164
-
165
- do_action( 'wcpdf_invoice_number_column_end', $the_order );
166
  }
167
  }
168
 
107
  * Add PDF actions to the orders listing
108
  */
109
  public function add_listing_actions( $order ) {
110
+ // do not show buttons for trashed orders
111
+ if ( $order->status == 'trash' ) {
112
+ return;
113
+ }
114
+
115
  $listing_actions = array(
116
  'invoice' => array (
117
  'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_wpo_wcpdf&template_type=invoice&order_ids=' . $order->id ), 'generate_wpo_wcpdf' ),
162
 
163
  if ( $column == 'pdf_invoice_number' ) {
164
  if ( empty( $the_order ) || $the_order->id != $post->ID ) {
165
+ $order = new WC_Order( $post->ID );
166
+ echo $wpo_wcpdf->export->get_invoice_number( $order->id );
167
+ do_action( 'wcpdf_invoice_number_column_end', $order );
168
+ } else {
169
+ echo $wpo_wcpdf->export->get_invoice_number( $the_order->id );
170
+ do_action( 'wcpdf_invoice_number_column_end', $the_order );
171
  }
 
 
 
 
172
  }
173
  }
174
 
js/script.js CHANGED
@@ -12,6 +12,11 @@ jQuery(document).ready(function($) {
12
  }
13
  );
14
 
 
 
 
 
 
15
  var order_ids=checked.join('x');
16
  url = wpo_wcpdf_ajax.ajaxurl+'?action=generate_wpo_wcpdf&template_type='+template+'&order_ids='+order_ids+'&_wpnonce='+wpo_wcpdf_ajax.nonce;
17
  window.open(url,'_blank');
12
  }
13
  );
14
 
15
+ if (!checked.length) {
16
+ alert('You have to select order(s) first!');
17
+ return;
18
+ }
19
+
20
  var order_ids=checked.join('x');
21
  url = wpo_wcpdf_ajax.ajaxurl+'?action=generate_wpo_wcpdf&template_type='+template+'&order_ids='+order_ids+'&_wpnonce='+wpo_wcpdf_ajax.nonce;
22
  window.open(url,'_blank');
languages/wpo_wcpdf-es_ES.mo CHANGED
Binary file
languages/wpo_wcpdf-es_ES.po CHANGED
@@ -1,123 +1,104 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-11-04 19:30+0100\n"
5
- "PO-Revision-Date: 2014-11-06 14:50+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: es_ES\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.6.10\n"
13
- "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
20
- #: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
21
- #: includes/class-wcpdf-export.php:204
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "No tiene suficientes permitos para acceder a esta página."
24
 
25
- #: includes/class-wcpdf-export.php:263
 
 
 
 
26
  msgid "invoice"
27
  msgid_plural "invoices"
28
  msgstr[0] "factura"
29
  msgstr[1] "facturas"
30
 
31
- #: includes/class-wcpdf-export.php:267
32
  msgid "packing-slip"
33
  msgid_plural "packing-slips"
34
  msgstr[0] "albarán de entrega"
35
  msgstr[1] "albaranes de entrega"
36
 
37
- #: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
38
- #: includes/class-wcpdf-writepanels.php:31
39
  msgid "PDF Invoices"
40
  msgstr "Facturas PDF"
41
 
42
- #: includes/class-wcpdf-settings.php:69
43
  msgid "Settings"
44
  msgstr "Ajustes"
45
 
46
- #: includes/class-wcpdf-settings.php:91
47
  msgid "General"
48
  msgstr "General"
49
 
50
- #: includes/class-wcpdf-settings.php:92
51
  msgid "Template"
52
  msgstr "Plantilla"
53
 
54
- #: includes/class-wcpdf-settings.php:101
55
- msgid "WooCommerce PDF Invoices"
56
- msgstr "WooCommerce Facturas PDF"
57
-
58
- #: includes/class-wcpdf-settings.php:107
59
  msgid "Status"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-settings.php:118
63
- #, php-format
64
- msgid ""
65
- "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
66
- "extension."
67
- msgstr ""
68
- "¡Sube tus facturas automáticamente a dropbox!<br/>Visita la extensión %s."
69
 
70
- #: includes/class-wcpdf-settings.php:128
71
- #, php-format
72
- msgid ""
73
- "Looking for more advanced templates? Check out the Premium PDF Invoice & "
74
- "Packing Slips templates at %s."
75
- msgstr ""
76
- "¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas premium "
77
- "de PDF Invoice & Packing Slips en %s."
78
-
79
- #: includes/class-wcpdf-settings.php:129
80
- #, php-format
81
- msgid "For custom templates, contact us at %s."
82
- msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
83
 
84
- #: includes/class-wcpdf-settings.php:184
85
  msgid "General settings"
86
  msgstr "Ajustes generales"
87
 
88
- #: includes/class-wcpdf-settings.php:191
89
  msgid "How do you want to view the PDF?"
90
  msgstr "¿Cómo desea visualizar el PDF?"
91
 
92
- #: includes/class-wcpdf-settings.php:199
93
  msgid "Download the PDF"
94
  msgstr "Descargándolo."
95
 
96
- #: includes/class-wcpdf-settings.php:200
97
  msgid "Open the PDF in a new browser tab/window"
98
  msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
99
 
100
  #: includes/class-wcpdf-settings.php:210
101
- msgid "Attach invoice to:"
102
- msgstr "Adjuntar factura a:"
103
-
104
- #: includes/class-wcpdf-settings.php:218
105
  msgid "Admin New Order email"
106
  msgstr "Correo electrónico del administrador al crear un nuevo pedido."
107
 
108
- #: includes/class-wcpdf-settings.php:219
109
  msgid "Customer Processing Order email"
110
  msgstr "Correo electrónico del cliente al procesar el pedido."
111
 
112
- #: includes/class-wcpdf-settings.php:220
113
  msgid "Customer Completed Order email"
114
  msgstr "Correo electrónico del cliente al completar el pedido."
115
 
116
- #: includes/class-wcpdf-settings.php:221
117
  msgid "Customer Invoice email"
118
  msgstr "Correo electrónico de la factura del cliente."
119
 
120
- #: includes/class-wcpdf-settings.php:223
 
 
 
 
121
  #, php-format
122
  msgid ""
123
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -128,19 +109,55 @@ msgstr ""
128
  "¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
129
  "carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
130
 
131
- #: includes/class-wcpdf-settings.php:229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  msgid "Enable invoice number column in the orders list"
133
  msgstr "Activar la columna de número de factura en pedidos"
134
 
135
- #: includes/class-wcpdf-settings.php:268
136
  msgid "PDF Template settings"
137
  msgstr "Ajustes de la plantilla PDF"
138
 
139
- #: includes/class-wcpdf-settings.php:280
140
  msgid "Choose a template"
141
  msgstr "Elige una plantilla"
142
 
143
- #: includes/class-wcpdf-settings.php:288
144
  #, php-format
145
  msgid ""
146
  "Want to use your own template? Copy all the files from <code>%s</code> to "
@@ -150,59 +167,86 @@ msgstr ""
150
  "%s</code> a tu \"theme\" (o child theme) en <code>%s</code> para "
151
  "personalizarlos."
152
 
153
- #: includes/class-wcpdf-settings.php:294
154
  msgid "Paper size"
155
  msgstr "Tamaño del papel"
156
 
157
- #: includes/class-wcpdf-settings.php:302
158
  msgid "A4"
159
  msgstr "A4"
160
 
161
- #: includes/class-wcpdf-settings.php:303
162
  msgid "Letter"
163
  msgstr "Carta"
164
 
165
- #: includes/class-wcpdf-settings.php:310
166
  msgid "Shop header/logo"
167
  msgstr "Logotipo de la tienda"
168
 
169
- #: includes/class-wcpdf-settings.php:317
170
  msgid "Select or upload your invoice header/logo"
171
  msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
172
 
173
- #: includes/class-wcpdf-settings.php:318
174
  msgid "Set image"
175
  msgstr "Añadir imagen"
176
 
177
- #: includes/class-wcpdf-settings.php:319
178
  msgid "Remove image"
179
  msgstr "Eliminar la imagen"
180
 
181
- #: includes/class-wcpdf-settings.php:326
182
  msgid "Shop Name"
183
  msgstr "Nombre de la tienda"
184
 
185
- #: includes/class-wcpdf-settings.php:339
186
  msgid "Shop Address"
187
  msgstr "Dirección de la tienda"
188
 
189
- #: includes/class-wcpdf-settings.php:371
190
  msgid "Footer: terms & conditions, policies, etc."
191
  msgstr "Pie de página: Términos y condiciones, políticas, etc."
192
 
193
- #: includes/class-wcpdf-settings.php:386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  msgid "Display invoice date"
195
  msgstr "Mostrar fecha de la factura"
196
 
197
- #: includes/class-wcpdf-settings.php:399
198
  msgid "Display built-in sequential invoice number"
199
  msgstr "Mostrar numeración secuencial en las facturas"
200
 
201
- #: includes/class-wcpdf-settings.php:412
202
  msgid "Next invoice number (without prefix/suffix etc.)"
203
  msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
204
 
205
- #: includes/class-wcpdf-settings.php:420
206
  msgid ""
207
  "This is the number that will be used on the next invoice that is created. By "
208
  "default, numbering starts from the WooCommerce Order Number of the first "
@@ -215,82 +259,156 @@ msgstr ""
215
  "y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
216
  "ajusta a uno inferior podría crear facturas con números duplicados."
217
 
218
- #: includes/class-wcpdf-settings.php:426
219
  msgid "Invoice number format"
220
  msgstr "Fomato en la numeración de las facturas"
221
 
222
- #: includes/class-wcpdf-settings.php:435
223
  msgid "Prefix"
224
  msgstr "Prefijo"
225
 
226
- #: includes/class-wcpdf-settings.php:437
227
  msgid ""
228
  "to use the order year and/or month, use [order_year] or [order_month] "
229
  "respectively"
230
  msgstr ""
231
- "para usar el año y/o el mes, usa [order_year] o [order_month] respectivamente"
 
232
 
233
- #: includes/class-wcpdf-settings.php:440
234
  msgid "Suffix"
235
  msgstr "Sufijo"
236
 
237
- #: includes/class-wcpdf-settings.php:445
238
  msgid "Padding"
239
  msgstr "Número de dígitos"
240
 
241
- #: includes/class-wcpdf-settings.php:447
242
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
243
  msgstr ""
244
  "Introduzca el número de dígitos aquí - introduzca \"6\" para mostrar 42 como "
245
  "000042"
246
 
247
- #: includes/class-wcpdf-settings.php:450
248
  msgid ""
249
  "note: if you have already created a custom invoice number format with a "
250
  "filter, the above settings will be ignored"
251
  msgstr ""
252
- "Nota: si ya ha creado un formato personalizado de numeración de facturas con "
253
- "un filtro, los ajustes anteriores serán ignorados"
254
 
255
- #: includes/class-wcpdf-settings.php:457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  msgid "Extra template fields"
257
  msgstr "Campos extra de la plantilla"
258
 
259
- #: includes/class-wcpdf-settings.php:464
260
  msgid "Extra field 1"
261
  msgstr "Campo extra 1"
262
 
263
- #: includes/class-wcpdf-settings.php:473
264
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
265
  msgstr ""
266
  "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
267
  "i>."
268
 
269
- #: includes/class-wcpdf-settings.php:479
270
  msgid "Extra field 2"
271
  msgstr "Campo extra 2"
272
 
273
- #: includes/class-wcpdf-settings.php:488
274
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
275
  msgstr ""
276
  "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
277
  "i>."
278
 
279
- #: includes/class-wcpdf-settings.php:494
280
  msgid "Extra field 3"
281
  msgstr "Campo extra 3"
282
 
283
- #: includes/class-wcpdf-settings.php:503
284
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
285
  msgstr ""
286
  "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
287
  "i>."
288
 
289
- #: includes/class-wcpdf-settings.php:761
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Image resolution"
291
  msgstr "Resolución de la imagen"
292
 
293
- #: includes/class-wcpdf-settings.php:877
 
 
 
 
 
 
 
 
294
  msgid ""
295
  "These are used for the (optional) footer columns in the <em>Modern "
296
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -300,116 +418,231 @@ msgstr ""
300
  "plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
301
  "plantilla personalizada:"
302
 
303
- #: includes/class-wcpdf-writepanels.php:32
304
  msgid "PDF Packing Slips"
305
  msgstr "Albaranes de entrega PDF"
306
 
307
- #: includes/class-wcpdf-writepanels.php:91
308
- #: includes/class-wcpdf-writepanels.php:184
309
  msgid "PDF Invoice"
310
  msgstr "Factura PDF"
311
 
312
- #: includes/class-wcpdf-writepanels.php:96
313
- #: includes/class-wcpdf-writepanels.php:189
314
  msgid "PDF Packing Slip"
315
  msgstr "Albarán de entrega PDF"
316
 
317
- #: includes/class-wcpdf-writepanels.php:123
318
  msgid "Invoice Number"
319
  msgstr "Nº de la factura"
320
 
321
- #: includes/class-wcpdf-writepanels.php:160
322
  msgid "Download invoice (PDF)"
323
  msgstr "Descargar factura (PDF)"
324
 
325
- #: includes/class-wcpdf-writepanels.php:171
326
  msgid "Create PDF"
327
  msgstr "Crear PDF"
328
 
329
- #: includes/class-wcpdf-writepanels.php:232
330
- msgid "PDF Invoice Number (unformatted!)"
331
- msgstr " de la factura PDF (¡sin formato!)"
332
 
333
- #: includes/class-wcpdf-writepanels.php:235
334
- #: templates/pdf/Simple/invoice.php:36
 
 
 
335
  msgid "Invoice Date:"
336
  msgstr "Fecha de la factura:"
337
 
338
- #: includes/class-wcpdf-writepanels.php:236
339
  msgid "h"
340
- msgstr ""
341
 
342
- #: includes/class-wcpdf-writepanels.php:236
343
  msgid "m"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  msgstr ""
345
 
346
- #: templates/pdf/Simple/html-document-wrapper.php:6
347
- #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
348
- msgid "Invoice"
349
- msgstr "Factura"
350
 
351
- #: templates/pdf/Simple/html-document-wrapper.php:6
352
- #: templates/pdf/Simple/packing-slip.php:9
353
- #: templates/pdf/Simple/packing-slip.php:21
354
- msgid "Packing Slip"
355
- msgstr "Albarán de entrega"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
 
357
- #: templates/pdf/Simple/invoice.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  msgid "Invoice Number:"
359
  msgstr "Nº de la factura:"
360
 
361
- #: templates/pdf/Simple/invoice.php:39
362
- #: templates/pdf/Simple/packing-slip.php:33
363
  msgid "Order Number:"
364
  msgstr "Orden número:"
365
 
366
- #: templates/pdf/Simple/invoice.php:41
367
- #: templates/pdf/Simple/packing-slip.php:31
368
  msgid "Order Date:"
369
  msgstr "Fecha del pedido:"
370
 
371
- #: templates/pdf/Simple/invoice.php:43
372
  msgid "Payment Method:"
373
  msgstr "Forma de pago:"
374
 
375
- #: templates/pdf/Simple/invoice.php:58
376
- #: templates/pdf/Simple/packing-slip.php:48
377
  msgid "Product"
378
  msgstr "Producto"
379
 
380
- #: templates/pdf/Simple/invoice.php:59
381
- #: templates/pdf/Simple/packing-slip.php:49
382
  msgid "Quantity"
383
  msgstr "Cantidad"
384
 
385
- #: templates/pdf/Simple/invoice.php:60
386
  msgid "Price"
387
  msgstr "Precio"
388
 
389
- #: templates/pdf/Simple/invoice.php:66
390
  msgid "Description"
391
  msgstr "Descripción"
392
 
393
- #: templates/pdf/Simple/invoice.php:69
394
  msgid "SKU"
395
  msgstr "Nº Referencia"
396
 
397
- #: templates/pdf/Simple/invoice.php:70
398
- #: templates/pdf/Simple/packing-slip.php:57
399
  msgid "SKU:"
400
  msgstr "Nº Referencia:"
401
 
402
- #: templates/pdf/Simple/invoice.php:71
403
- #: templates/pdf/Simple/packing-slip.php:58
404
  msgid "Weight:"
405
  msgstr "Peso:"
406
 
407
- #: templates/pdf/Simple/invoice.php:105
408
- #: templates/pdf/Simple/packing-slip.php:73
409
  msgid "Customer Notes"
410
  msgstr "Notas del cliente"
411
 
412
- #: woocommerce-pdf-invoices-packingslips.php:98
 
 
 
 
 
 
 
 
413
  #, php-format
414
  msgid ""
415
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
@@ -418,43 +651,68 @@ msgstr ""
418
  "¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
419
  "instalado y activado!"
420
 
421
- #: woocommerce-pdf-invoices-packingslips.php:206
422
- #: woocommerce-pdf-invoices-packingslips.php:269
423
  msgid "N/A"
424
  msgstr "No disponible"
425
 
426
- #: woocommerce-pdf-invoices-packingslips.php:358
427
  msgid "Payment method"
428
  msgstr "Forma de pago"
429
 
430
- #: woocommerce-pdf-invoices-packingslips.php:369
431
  msgid "Shipping method"
432
  msgstr "Envío"
433
 
434
- #: woocommerce-pdf-invoices-packingslips.php:484
 
 
 
 
 
435
  msgid "Subtotal"
436
  msgstr "Subtotal"
437
 
438
- #: woocommerce-pdf-invoices-packingslips.php:506
439
  msgid "Shipping"
440
  msgstr "Envío"
441
 
442
- #: woocommerce-pdf-invoices-packingslips.php:540
443
  msgid "Discount"
444
  msgstr "Descuento"
445
 
446
- #: woocommerce-pdf-invoices-packingslips.php:579
447
  msgid "VAT"
448
  msgstr "IVA"
449
 
450
- #: woocommerce-pdf-invoices-packingslips.php:616
 
 
 
 
451
  msgid "Total ex. VAT"
452
  msgstr "Total (Sin IVA)"
453
 
454
- #: woocommerce-pdf-invoices-packingslips.php:619
455
  msgid "Total"
456
  msgstr "Total"
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #~ msgid "Number to display on invoice"
459
  #~ msgstr "Número a mostrar en la factura"
460
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2015-12-01 17:01+0100\n"
5
+ "PO-Revision-Date: 2015-12-02 11:18+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: es_ES\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.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcpdf-export.php:372 includes/class-wcpdf-export.php:386
20
+ #: includes/class-wcpdf-export.php:393 includes/class-wcpdf-export.php:401
 
21
  msgid "You do not have sufficient permissions to access this page."
22
  msgstr "No tiene suficientes permitos para acceder a esta página."
23
 
24
+ #: includes/class-wcpdf-export.php:377
25
+ msgid "Some of the export parameters are missing."
26
+ msgstr "No se encuentran algunos de los parámetros de exportación"
27
+
28
+ #: includes/class-wcpdf-export.php:458
29
  msgid "invoice"
30
  msgid_plural "invoices"
31
  msgstr[0] "factura"
32
  msgstr[1] "facturas"
33
 
34
+ #: includes/class-wcpdf-export.php:462
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
  msgstr[0] "albarán de entrega"
38
  msgstr[1] "albaranes de entrega"
39
 
40
+ #: includes/class-wcpdf-settings.php:34 includes/class-wcpdf-settings.php:35
41
+ #: includes/class-wcpdf-writepanels.php:32
42
  msgid "PDF Invoices"
43
  msgstr "Facturas PDF"
44
 
45
+ #: includes/class-wcpdf-settings.php:76
46
  msgid "Settings"
47
  msgstr "Ajustes"
48
 
49
+ #: includes/class-wcpdf-settings.php:98
50
  msgid "General"
51
  msgstr "General"
52
 
53
+ #: includes/class-wcpdf-settings.php:99
54
  msgid "Template"
55
  msgstr "Plantilla"
56
 
57
+ #: includes/class-wcpdf-settings.php:104
 
 
 
 
58
  msgid "Status"
59
+ msgstr "Estado"
 
 
 
 
 
 
 
 
60
 
61
+ #: includes/class-wcpdf-settings.php:116
62
+ msgid "WooCommerce PDF Invoices"
63
+ msgstr "WooCommerce Facturas PDF"
 
 
 
 
 
 
 
 
 
 
64
 
65
+ #: includes/class-wcpdf-settings.php:185
66
  msgid "General settings"
67
  msgstr "Ajustes generales"
68
 
69
+ #: includes/class-wcpdf-settings.php:192
70
  msgid "How do you want to view the PDF?"
71
  msgstr "¿Cómo desea visualizar el PDF?"
72
 
73
+ #: includes/class-wcpdf-settings.php:200
74
  msgid "Download the PDF"
75
  msgstr "Descargándolo."
76
 
77
+ #: includes/class-wcpdf-settings.php:201
78
  msgid "Open the PDF in a new browser tab/window"
79
  msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
80
 
81
  #: includes/class-wcpdf-settings.php:210
 
 
 
 
82
  msgid "Admin New Order email"
83
  msgstr "Correo electrónico del administrador al crear un nuevo pedido."
84
 
85
+ #: includes/class-wcpdf-settings.php:211
86
  msgid "Customer Processing Order email"
87
  msgstr "Correo electrónico del cliente al procesar el pedido."
88
 
89
+ #: includes/class-wcpdf-settings.php:212
90
  msgid "Customer Completed Order email"
91
  msgstr "Correo electrónico del cliente al completar el pedido."
92
 
93
+ #: includes/class-wcpdf-settings.php:213
94
  msgid "Customer Invoice email"
95
  msgstr "Correo electrónico de la factura del cliente."
96
 
97
+ #: includes/class-wcpdf-settings.php:222
98
+ msgid "Attach invoice to:"
99
+ msgstr "Adjuntar factura a:"
100
+
101
+ #: includes/class-wcpdf-settings.php:230
102
  #, php-format
103
  msgid ""
104
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
109
  "¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
110
  "carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
111
 
112
+ #: includes/class-wcpdf-settings.php:236
113
+ msgid "Disable for free products"
114
+ msgstr "Deshabilitar para productos gratuitos"
115
+
116
+ #: includes/class-wcpdf-settings.php:243
117
+ msgid ""
118
+ "Disable automatic creation/attachment of invoices when only free products "
119
+ "are ordered"
120
+ msgstr ""
121
+ "Deshabilitar creación automática/ adjuntar facturas cuando solo se ordenen "
122
+ "productos gratuitos"
123
+
124
+ #: includes/class-wcpdf-settings.php:250
125
+ msgid "Interface"
126
+ msgstr "Interfaz"
127
+
128
+ #: includes/class-wcpdf-settings.php:298
129
+ msgid "Allow My Account invoice download"
130
+ msgstr "Permitir descarga de facturas desde \" Mi Cuenta\""
131
+
132
+ #: includes/class-wcpdf-settings.php:306
133
+ msgid "Only when an invoice is already created/emailed"
134
+ msgstr "Solo cuando una factura ya ha sido creada/ enviada por correo"
135
+
136
+ #: includes/class-wcpdf-settings.php:307
137
+ msgid "Only for specific order statuses (define below)"
138
+ msgstr "Solo para estados de orden específicos ( definir debajo )"
139
+
140
+ #: includes/class-wcpdf-settings.php:308
141
+ msgid "Always"
142
+ msgstr "Siempre"
143
+
144
+ #: includes/class-wcpdf-settings.php:309
145
+ msgid "Never"
146
+ msgstr "Nunca"
147
+
148
+ #: includes/class-wcpdf-settings.php:324
149
  msgid "Enable invoice number column in the orders list"
150
  msgstr "Activar la columna de número de factura en pedidos"
151
 
152
+ #: includes/class-wcpdf-settings.php:362
153
  msgid "PDF Template settings"
154
  msgstr "Ajustes de la plantilla PDF"
155
 
156
+ #: includes/class-wcpdf-settings.php:374
157
  msgid "Choose a template"
158
  msgstr "Elige una plantilla"
159
 
160
+ #: includes/class-wcpdf-settings.php:382
161
  #, php-format
162
  msgid ""
163
  "Want to use your own template? Copy all the files from <code>%s</code> to "
167
  "%s</code> a tu \"theme\" (o child theme) en <code>%s</code> para "
168
  "personalizarlos."
169
 
170
+ #: includes/class-wcpdf-settings.php:388
171
  msgid "Paper size"
172
  msgstr "Tamaño del papel"
173
 
174
+ #: includes/class-wcpdf-settings.php:396
175
  msgid "A4"
176
  msgstr "A4"
177
 
178
+ #: includes/class-wcpdf-settings.php:397
179
  msgid "Letter"
180
  msgstr "Carta"
181
 
182
+ #: includes/class-wcpdf-settings.php:404
183
  msgid "Shop header/logo"
184
  msgstr "Logotipo de la tienda"
185
 
186
+ #: includes/class-wcpdf-settings.php:411
187
  msgid "Select or upload your invoice header/logo"
188
  msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
189
 
190
+ #: includes/class-wcpdf-settings.php:412
191
  msgid "Set image"
192
  msgstr "Añadir imagen"
193
 
194
+ #: includes/class-wcpdf-settings.php:413
195
  msgid "Remove image"
196
  msgstr "Eliminar la imagen"
197
 
198
+ #: includes/class-wcpdf-settings.php:420
199
  msgid "Shop Name"
200
  msgstr "Nombre de la tienda"
201
 
202
+ #: includes/class-wcpdf-settings.php:434
203
  msgid "Shop Address"
204
  msgstr "Dirección de la tienda"
205
 
206
+ #: includes/class-wcpdf-settings.php:450
207
  msgid "Footer: terms & conditions, policies, etc."
208
  msgstr "Pie de página: Términos y condiciones, políticas, etc."
209
 
210
+ #: includes/class-wcpdf-settings.php:467
211
+ #: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
212
+ #: templates/pdf/Simple/invoice.php:21
213
+ #: woocommerce-pdf-invoices-packingslips.php:220
214
+ msgid "Invoice"
215
+ msgstr "Factura"
216
+
217
+ #: includes/class-wcpdf-settings.php:474
218
+ msgid "Display shipping address"
219
+ msgstr "Mostrar dirección de envío"
220
+
221
+ #: includes/class-wcpdf-settings.php:481
222
+ msgid ""
223
+ "Display shipping address on invoice (in addition to the default billing "
224
+ "address) if different from billing address"
225
+ msgstr ""
226
+ "Mostrar dirección de envío en la factura ( Además de la dirección de "
227
+ "facturación por defecto ) en el caso que sea diferente a la de facturación"
228
+
229
+ #: includes/class-wcpdf-settings.php:487 includes/class-wcpdf-settings.php:614
230
+ msgid "Display email address"
231
+ msgstr "Mostrar email"
232
+
233
+ #: includes/class-wcpdf-settings.php:499 includes/class-wcpdf-settings.php:626
234
+ msgid "Display phone number"
235
+ msgstr "Mostrar teléfono"
236
+
237
+ #: includes/class-wcpdf-settings.php:511
238
  msgid "Display invoice date"
239
  msgstr "Mostrar fecha de la factura"
240
 
241
+ #: includes/class-wcpdf-settings.php:524
242
  msgid "Display built-in sequential invoice number"
243
  msgstr "Mostrar numeración secuencial en las facturas"
244
 
245
+ #: includes/class-wcpdf-settings.php:537
246
  msgid "Next invoice number (without prefix/suffix etc.)"
247
  msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
248
 
249
+ #: includes/class-wcpdf-settings.php:545
250
  msgid ""
251
  "This is the number that will be used on the next invoice that is created. By "
252
  "default, numbering starts from the WooCommerce Order Number of the first "
259
  "y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
260
  "ajusta a uno inferior podría crear facturas con números duplicados."
261
 
262
+ #: includes/class-wcpdf-settings.php:551
263
  msgid "Invoice number format"
264
  msgstr "Fomato en la numeración de las facturas"
265
 
266
+ #: includes/class-wcpdf-settings.php:560
267
  msgid "Prefix"
268
  msgstr "Prefijo"
269
 
270
+ #: includes/class-wcpdf-settings.php:562
271
  msgid ""
272
  "to use the order year and/or month, use [order_year] or [order_month] "
273
  "respectively"
274
  msgstr ""
275
+ "Para usar el año y/o el mes de la factura, usa [order_year] o [order_month] "
276
+ "respectivamente"
277
 
278
+ #: includes/class-wcpdf-settings.php:565
279
  msgid "Suffix"
280
  msgstr "Sufijo"
281
 
282
+ #: includes/class-wcpdf-settings.php:570
283
  msgid "Padding"
284
  msgstr "Número de dígitos"
285
 
286
+ #: includes/class-wcpdf-settings.php:572
287
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
288
  msgstr ""
289
  "Introduzca el número de dígitos aquí - introduzca \"6\" para mostrar 42 como "
290
  "000042"
291
 
292
+ #: includes/class-wcpdf-settings.php:575
293
  msgid ""
294
  "note: if you have already created a custom invoice number format with a "
295
  "filter, the above settings will be ignored"
296
  msgstr ""
297
+ "Nota: Si ya has creado un formato personalizado de numeración de facturas "
298
+ "con un filtro, los ajustes anteriores serán ignorados"
299
 
300
+ #: includes/class-wcpdf-settings.php:581
301
+ msgid "Reset invoice number yearly"
302
+ msgstr "Resetear numeración de facturas anual"
303
+
304
+ #: includes/class-wcpdf-settings.php:594
305
+ #: templates/pdf/Simple/packing-slip.php:9
306
+ #: templates/pdf/Simple/packing-slip.php:21
307
+ #: woocommerce-pdf-invoices-packingslips.php:223
308
+ msgid "Packing Slip"
309
+ msgstr "Albarán de entrega"
310
+
311
+ #: includes/class-wcpdf-settings.php:601
312
+ msgid "Display billing address"
313
+ msgstr "Mostrar dirección de facturación"
314
+
315
+ #: includes/class-wcpdf-settings.php:608
316
+ msgid ""
317
+ "Display billing address on packing slip (in addition to the default shipping "
318
+ "address) if different from shipping address"
319
+ msgstr ""
320
+ "Mostrar dirección de facturación en albarán de entrega ( Además de la "
321
+ "dirección de facturación por defecto ) en el caso que sea diferente a la de "
322
+ "facturación"
323
+
324
+ #: includes/class-wcpdf-settings.php:639
325
  msgid "Extra template fields"
326
  msgstr "Campos extra de la plantilla"
327
 
328
+ #: includes/class-wcpdf-settings.php:646
329
  msgid "Extra field 1"
330
  msgstr "Campo extra 1"
331
 
332
+ #: includes/class-wcpdf-settings.php:655
333
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
334
  msgstr ""
335
  "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
336
  "i>."
337
 
338
+ #: includes/class-wcpdf-settings.php:662
339
  msgid "Extra field 2"
340
  msgstr "Campo extra 2"
341
 
342
+ #: includes/class-wcpdf-settings.php:671
343
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
344
  msgstr ""
345
  "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
346
  "i>."
347
 
348
+ #: includes/class-wcpdf-settings.php:678
349
  msgid "Extra field 3"
350
  msgstr "Campo extra 3"
351
 
352
+ #: includes/class-wcpdf-settings.php:687
353
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
354
  msgstr ""
355
  "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
356
  "i>."
357
 
358
+ #: includes/class-wcpdf-settings.php:730
359
+ msgid "Debug settings"
360
+ msgstr "Depurar ajustes"
361
+
362
+ #: includes/class-wcpdf-settings.php:737
363
+ msgid "Enable debug output"
364
+ msgstr "Activar salida de depuración"
365
+
366
+ #: includes/class-wcpdf-settings.php:744
367
+ msgid ""
368
+ "Enable this option to output plugin errors if you're getting a blank page or "
369
+ "other PDF generation issues"
370
+ msgstr ""
371
+ "Activar esta opción para depurar errores del plugin si está generando una "
372
+ "página en blanco u otros problemas con la generación de PDF"
373
+
374
+ #: includes/class-wcpdf-settings.php:750
375
+ msgid "Output to HTML"
376
+ msgstr "Salida a HTML"
377
+
378
+ #: includes/class-wcpdf-settings.php:757
379
+ msgid ""
380
+ "Send the template output as HTML to the browser instead of creating a PDF."
381
+ msgstr ""
382
+ "Enviar la plantilla de salida como HTML al explorador en ve de crear un PDF."
383
+
384
+ #: includes/class-wcpdf-settings.php:763
385
+ msgid "Use old tmp folder"
386
+ msgstr "Usar la carpeta antigua tmp"
387
+
388
+ #: includes/class-wcpdf-settings.php:770
389
+ msgid ""
390
+ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
391
+ "plugin folder. This setting is only intended for backwards compatibility, "
392
+ "not recommended on new installs!"
393
+ msgstr ""
394
+ "Antes de la versión 1.5 de Facturas PDF, los archivos temporales se "
395
+ "guardaban en la carpeta del plugin. Este ajuste es solo para la "
396
+ "compatibilidad con anteriores versiones, no recomendado para nuevas "
397
+ "instalaciones!"
398
+
399
+ #: includes/class-wcpdf-settings.php:1143
400
  msgid "Image resolution"
401
  msgstr "Resolución de la imagen"
402
 
403
+ #: includes/class-wcpdf-settings.php:1259
404
+ msgid ""
405
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
406
+ "Do not use them on a live website!"
407
+ msgstr ""
408
+ "<b>Atención!</b> Los ajustes de debajo son solo para depurarción/ "
409
+ "desarrollo. No usarlos en una web funcional!"
410
+
411
+ #: includes/class-wcpdf-settings.php:1268
412
  msgid ""
413
  "These are used for the (optional) footer columns in the <em>Modern "
414
  "(Premium)</em> template, but can also be used for other elements in your "
418
  "plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
419
  "plantilla personalizada:"
420
 
421
+ #: includes/class-wcpdf-writepanels.php:33
422
  msgid "PDF Packing Slips"
423
  msgstr "Albaranes de entrega PDF"
424
 
425
+ #: includes/class-wcpdf-writepanels.php:119
426
+ #: includes/class-wcpdf-writepanels.php:252
427
  msgid "PDF Invoice"
428
  msgstr "Factura PDF"
429
 
430
+ #: includes/class-wcpdf-writepanels.php:124
431
+ #: includes/class-wcpdf-writepanels.php:257
432
  msgid "PDF Packing Slip"
433
  msgstr "Albarán de entrega PDF"
434
 
435
+ #: includes/class-wcpdf-writepanels.php:151
436
  msgid "Invoice Number"
437
  msgstr "Nº de la factura"
438
 
439
+ #: includes/class-wcpdf-writepanels.php:210
440
  msgid "Download invoice (PDF)"
441
  msgstr "Descargar factura (PDF)"
442
 
443
+ #: includes/class-wcpdf-writepanels.php:224
444
  msgid "Create PDF"
445
  msgstr "Crear PDF"
446
 
447
+ #: includes/class-wcpdf-writepanels.php:234
448
+ msgid "PDF Invoice data"
449
+ msgstr "Fecha de Factura PDF"
450
 
451
+ #: includes/class-wcpdf-writepanels.php:287
452
+ msgid "Invoice Number (unformatted!)"
453
+ msgstr "Número de la factura (unformatted!)"
454
+
455
+ #: includes/class-wcpdf-writepanels.php:295 templates/pdf/Simple/invoice.php:55
456
  msgid "Invoice Date:"
457
  msgstr "Fecha de la factura:"
458
 
459
+ #: includes/class-wcpdf-writepanels.php:297
460
  msgid "h"
461
+ msgstr "H"
462
 
463
+ #: includes/class-wcpdf-writepanels.php:297
464
  msgid "m"
465
+ msgstr "H"
466
+
467
+ #: includes/wcpdf-extensions.php:15
468
+ msgid "Check out these premium extensions!"
469
+ msgstr "Échale un vistazo a las extensiones premium!"
470
+
471
+ #: includes/wcpdf-extensions.php:16
472
+ msgid "click items to read more"
473
+ msgstr "Haz click para leer más"
474
+
475
+ #: includes/wcpdf-extensions.php:23
476
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
477
+ msgstr "Hazte Pro: Facturas Proforma, notas de crédito (=devoluciones( y más!"
478
+
479
+ #: includes/wcpdf-extensions.php:25
480
+ msgid ""
481
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
482
+ "features:"
483
  msgstr ""
484
 
485
+ #: includes/wcpdf-extensions.php:27
486
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
487
+ msgstr ""
 
488
 
489
+ #: includes/wcpdf-extensions.php:28
490
+ msgid ""
491
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
492
+ "packing slips, for example to a drop-shipper or a supplier."
493
+ msgstr ""
494
+
495
+ #: includes/wcpdf-extensions.php:29
496
+ msgid ""
497
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
498
+ "document) to the WooCommerce emails of your choice."
499
+ msgstr ""
500
+
501
+ #: includes/wcpdf-extensions.php:30
502
+ msgid ""
503
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
504
+ "and credit notes or utilize the main invoice numbering system"
505
+ msgstr ""
506
+
507
+ #: includes/wcpdf-extensions.php:31
508
+ msgid ""
509
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
510
+ "additional custom fields, font sizes etc. without the need to create a "
511
+ "custom template."
512
+ msgstr ""
513
+
514
+ #: includes/wcpdf-extensions.php:32
515
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
516
+ msgstr ""
517
+
518
+ #: includes/wcpdf-extensions.php:34
519
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
520
+ msgstr "Hazte con WooCommerce PDF Invoices & Packing Slips Professional!"
521
+
522
+ #: includes/wcpdf-extensions.php:42
523
+ msgid "Upload all invoices automatically to your dropbox"
524
+ msgstr "Sube automaticamente todas las facturas a tu dropbox"
525
+
526
+ #: includes/wcpdf-extensions.php:48
527
+ msgid ""
528
+ "This extension conveniently uploads all the invoices (and other pdf "
529
+ "documents from the professional extension) that are emailed to your "
530
+ "customers to Dropbox. The best way to keep your invoice administration up to "
531
+ "date!"
532
+ msgstr ""
533
 
534
+ #: includes/wcpdf-extensions.php:49
535
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
536
+ msgstr ""
537
+
538
+ #: includes/wcpdf-extensions.php:61
539
+ msgid ""
540
+ "Automatically send new orders or packing slips to your printer, as soon as "
541
+ "the customer orders!"
542
+ msgstr ""
543
+
544
+ #: includes/wcpdf-extensions.php:67
545
+ msgid ""
546
+ "Check out the WooCommerce Automatic Order Printing extension from our "
547
+ "partners at Simba Hosting"
548
+ msgstr ""
549
+
550
+ #: includes/wcpdf-extensions.php:68
551
+ msgid "WooCommerce Automatic Order Printing"
552
+ msgstr ""
553
+
554
+ #: includes/wcpdf-extensions.php:82
555
+ msgid "Advanced, customizable templates"
556
+ msgstr "Plantillas personalizables avanzadas"
557
+
558
+ #: includes/wcpdf-extensions.php:85
559
+ msgid ""
560
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
561
+ "your needs with a drag & drop customizer"
562
+ msgstr ""
563
+ "Personaliza completamente los contenidos de la factura acorde a tus "
564
+ "necesidades ( precios, impuestos, miniaturas) con drag & drop customizer"
565
+
566
+ #: includes/wcpdf-extensions.php:86
567
+ msgid "Two extra stylish premade templates (Modern & Business)"
568
+ msgstr "Dos plantillas elegantes pre diseñadas extra (Modern & Business)"
569
+
570
+ #: includes/wcpdf-extensions.php:87
571
+ #, php-format
572
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
573
+ msgstr ""
574
+
575
+ #: includes/wcpdf-extensions.php:88
576
+ #, php-format
577
+ msgid "For custom templates, contact us at %s."
578
+ msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
579
+
580
+ #: templates/pdf/Simple/invoice.php:29 templates/pdf/Simple/packing-slip.php:40
581
+ msgid "Billing Address:"
582
+ msgstr "Dirección de facturación:"
583
+
584
+ #: templates/pdf/Simple/invoice.php:40
585
+ msgid "Ship To:"
586
+ msgstr "Enviar a:"
587
+
588
+ #: templates/pdf/Simple/invoice.php:49
589
  msgid "Invoice Number:"
590
  msgstr "Nº de la factura:"
591
 
592
+ #: templates/pdf/Simple/invoice.php:60 templates/pdf/Simple/packing-slip.php:48
 
593
  msgid "Order Number:"
594
  msgstr "Orden número:"
595
 
596
+ #: templates/pdf/Simple/invoice.php:64 templates/pdf/Simple/packing-slip.php:52
 
597
  msgid "Order Date:"
598
  msgstr "Fecha del pedido:"
599
 
600
+ #: templates/pdf/Simple/invoice.php:68
601
  msgid "Payment Method:"
602
  msgstr "Forma de pago:"
603
 
604
+ #: templates/pdf/Simple/invoice.php:82 templates/pdf/Simple/packing-slip.php:70
 
605
  msgid "Product"
606
  msgstr "Producto"
607
 
608
+ #: templates/pdf/Simple/invoice.php:83 templates/pdf/Simple/packing-slip.php:71
 
609
  msgid "Quantity"
610
  msgstr "Cantidad"
611
 
612
+ #: templates/pdf/Simple/invoice.php:84
613
  msgid "Price"
614
  msgstr "Precio"
615
 
616
+ #: templates/pdf/Simple/invoice.php:91 templates/pdf/Simple/packing-slip.php:78
617
  msgid "Description"
618
  msgstr "Descripción"
619
 
620
+ #: templates/pdf/Simple/invoice.php:96 templates/pdf/Simple/packing-slip.php:83
621
  msgid "SKU"
622
  msgstr "Nº Referencia"
623
 
624
+ #: templates/pdf/Simple/invoice.php:97 templates/pdf/Simple/packing-slip.php:84
 
625
  msgid "SKU:"
626
  msgstr "Nº Referencia:"
627
 
628
+ #: templates/pdf/Simple/invoice.php:98 templates/pdf/Simple/packing-slip.php:85
 
629
  msgid "Weight:"
630
  msgstr "Peso:"
631
 
632
+ #: templates/pdf/Simple/invoice.php:112
633
+ #: templates/pdf/Simple/packing-slip.php:99
634
  msgid "Customer Notes"
635
  msgstr "Notas del cliente"
636
 
637
+ #: templates/pdf/Simple/packing-slip.php:29
638
+ msgid "Shipping Address:"
639
+ msgstr "Dirección de envío:"
640
+
641
+ #: templates/pdf/Simple/packing-slip.php:56
642
+ msgid "Shipping Method:"
643
+ msgstr "Método de envío:"
644
+
645
+ #: woocommerce-pdf-invoices-packingslips.php:123
646
  #, php-format
647
  msgid ""
648
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
651
  "¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
652
  "instalado y activado!"
653
 
654
+ #: woocommerce-pdf-invoices-packingslips.php:367
655
+ #: woocommerce-pdf-invoices-packingslips.php:428
656
  msgid "N/A"
657
  msgstr "No disponible"
658
 
659
+ #: woocommerce-pdf-invoices-packingslips.php:523
660
  msgid "Payment method"
661
  msgstr "Forma de pago"
662
 
663
+ #: woocommerce-pdf-invoices-packingslips.php:534
664
  msgid "Shipping method"
665
  msgstr "Envío"
666
 
667
+ #: woocommerce-pdf-invoices-packingslips.php:693
668
+ #, php-format
669
+ msgid "(Includes %s)"
670
+ msgstr "(Incluye %s)"
671
+
672
+ #: woocommerce-pdf-invoices-packingslips.php:714
673
  msgid "Subtotal"
674
  msgstr "Subtotal"
675
 
676
+ #: woocommerce-pdf-invoices-packingslips.php:736
677
  msgid "Shipping"
678
  msgstr "Envío"
679
 
680
+ #: woocommerce-pdf-invoices-packingslips.php:799
681
  msgid "Discount"
682
  msgstr "Descuento"
683
 
684
+ #: woocommerce-pdf-invoices-packingslips.php:839
685
  msgid "VAT"
686
  msgstr "IVA"
687
 
688
+ #: woocommerce-pdf-invoices-packingslips.php:840
689
+ msgid "Tax rate"
690
+ msgstr "Porcentaje del Impuesto"
691
+
692
+ #: woocommerce-pdf-invoices-packingslips.php:877
693
  msgid "Total ex. VAT"
694
  msgstr "Total (Sin IVA)"
695
 
696
+ #: woocommerce-pdf-invoices-packingslips.php:880
697
  msgid "Total"
698
  msgstr "Total"
699
 
700
+ #~ msgid ""
701
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
702
+ #~ "extension."
703
+ #~ msgstr ""
704
+ #~ "¡Sube tus facturas automáticamente a dropbox!<br/>Visita la extensión %s."
705
+
706
+ #~ msgid ""
707
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
708
+ #~ "Packing Slips templates at %s."
709
+ #~ msgstr ""
710
+ #~ "¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas "
711
+ #~ "premium de PDF Invoice & Packing Slips en %s."
712
+
713
+ #~ msgid "PDF Invoice Number (unformatted!)"
714
+ #~ msgstr "Nº de la factura PDF (¡sin formato!)"
715
+
716
  #~ msgid "Number to display on invoice"
717
  #~ msgstr "Número a mostrar en la factura"
718
 
languages/wpo_wcpdf-nl_NL.mo CHANGED
Binary file
languages/wpo_wcpdf-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-28 16:05+0100\n"
6
- "PO-Revision-Date: 2015-05-28 16:08+0100\n"
7
  "Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
  "Language: nl_NL\n"
@@ -14,86 +14,86 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 1.8\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: includes/class-wcpdf-export.php:338 includes/class-wcpdf-export.php:348
23
- #: includes/class-wcpdf-export.php:359 includes/class-wcpdf-export.php:367
24
  msgid "You do not have sufficient permissions to access this page."
25
  msgstr "Je hebt onvoldoende rechten voor deze pagina."
26
 
27
- #: includes/class-wcpdf-export.php:343
28
  msgid "Some of the export parameters are missing."
29
  msgstr "Er ontbreken export parameters"
30
 
31
- #: includes/class-wcpdf-export.php:424
32
  msgid "invoice"
33
  msgid_plural "invoices"
34
  msgstr[0] "factuur"
35
  msgstr[1] "facturen"
36
 
37
- #: includes/class-wcpdf-export.php:428
38
  msgid "packing-slip"
39
  msgid_plural "packing-slips"
40
  msgstr[0] "pakbon"
41
  msgstr[1] "pakbonnen"
42
 
43
- #: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
44
- #: includes/class-wcpdf-writepanels.php:31
45
  msgid "PDF Invoices"
46
  msgstr "PDF facturen"
47
 
48
- #: includes/class-wcpdf-settings.php:80
49
  msgid "Settings"
50
  msgstr "Instellingen"
51
 
52
- #: includes/class-wcpdf-settings.php:102
53
  msgid "General"
54
  msgstr "Algemeen"
55
 
56
- #: includes/class-wcpdf-settings.php:103
57
  msgid "Template"
58
  msgstr "Template"
59
 
60
- #: includes/class-wcpdf-settings.php:108
61
  msgid "Status"
62
  msgstr "Status"
63
 
64
- #: includes/class-wcpdf-settings.php:120
65
  msgid "WooCommerce PDF Invoices"
66
  msgstr "WooCommerce PDF Facturen"
67
 
68
- #: includes/class-wcpdf-settings.php:189
69
  msgid "General settings"
70
  msgstr "Algemene instellingen"
71
 
72
- #: includes/class-wcpdf-settings.php:196
73
  msgid "How do you want to view the PDF?"
74
  msgstr "Hoe wil je de PDF bekijken?"
75
 
76
- #: includes/class-wcpdf-settings.php:204
77
  msgid "Download the PDF"
78
  msgstr "Download de PDF"
79
 
80
- #: includes/class-wcpdf-settings.php:205
81
  msgid "Open the PDF in a new browser tab/window"
82
  msgstr "Open de PDF in een nieuwe browser tab/venster"
83
 
84
- #: includes/class-wcpdf-settings.php:214
85
  msgid "Admin New Order email"
86
  msgstr "Nieuwe bestelling (admin email)"
87
 
88
- #: includes/class-wcpdf-settings.php:215
89
  msgid "Customer Processing Order email"
90
  msgstr "Bestelling in behandeling (klant email)"
91
 
92
- #: includes/class-wcpdf-settings.php:216
93
  msgid "Customer Completed Order email"
94
  msgstr "Bestelling afgerond (klant email)"
95
 
96
- #: includes/class-wcpdf-settings.php:217
97
  msgid "Customer Invoice email"
98
  msgstr "Factuur (klant email)"
99
 
@@ -144,19 +144,23 @@ msgstr "Alleen voor specifieke order statussen (hieronder gedefinieerd)"
144
  msgid "Always"
145
  msgstr "Altijd"
146
 
147
- #: includes/class-wcpdf-settings.php:323
 
 
 
 
148
  msgid "Enable invoice number column in the orders list"
149
  msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
150
 
151
- #: includes/class-wcpdf-settings.php:361
152
  msgid "PDF Template settings"
153
  msgstr "PDF Template instellingen"
154
 
155
- #: includes/class-wcpdf-settings.php:373
156
  msgid "Choose a template"
157
  msgstr "Kies een template"
158
 
159
- #: includes/class-wcpdf-settings.php:381
160
  #, php-format
161
  msgid ""
162
  "Want to use your own template? Copy all the files from <code>%s</code> to "
@@ -165,58 +169,58 @@ msgstr ""
165
  "Wil je je eigen template gebruiken? Kopieer alle bestanden van <code>%s</"
166
  "code> naar je (child-) theme in <code>%s</code> en pas ze aan naar je wensen."
167
 
168
- #: includes/class-wcpdf-settings.php:387
169
  msgid "Paper size"
170
  msgstr "Papierformaat"
171
 
172
- #: includes/class-wcpdf-settings.php:395
173
  msgid "A4"
174
  msgstr "A4"
175
 
176
- #: includes/class-wcpdf-settings.php:396
177
  msgid "Letter"
178
  msgstr "Letter (US)"
179
 
180
- #: includes/class-wcpdf-settings.php:403
181
  msgid "Shop header/logo"
182
  msgstr "Shop header/logo"
183
 
184
- #: includes/class-wcpdf-settings.php:410
185
  msgid "Select or upload your invoice header/logo"
186
  msgstr "Selecteer of upload je factuur header/logo"
187
 
188
- #: includes/class-wcpdf-settings.php:411
189
  msgid "Set image"
190
  msgstr "Stel afbeelding in"
191
 
192
- #: includes/class-wcpdf-settings.php:412
193
  msgid "Remove image"
194
  msgstr "Verwijder afbeelding"
195
 
196
- #: includes/class-wcpdf-settings.php:419
197
  msgid "Shop Name"
198
  msgstr "Shop Naam"
199
 
200
- #: includes/class-wcpdf-settings.php:432
201
  msgid "Shop Address"
202
  msgstr "Shop Adres"
203
 
204
- #: includes/class-wcpdf-settings.php:447
205
  msgid "Footer: terms & conditions, policies, etc."
206
  msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
207
 
208
- #: includes/class-wcpdf-settings.php:463
209
- #: includes/class-wcpdf-writepanels.php:273 templates/pdf/Simple/invoice.php:9
210
  #: templates/pdf/Simple/invoice.php:21
211
  #: woocommerce-pdf-invoices-packingslips.php:220
212
  msgid "Invoice"
213
  msgstr "Factuur"
214
 
215
- #: includes/class-wcpdf-settings.php:470
216
  msgid "Display shipping address"
217
  msgstr "Geef verzendadres weer"
218
 
219
- #: includes/class-wcpdf-settings.php:477
220
  msgid ""
221
  "Display shipping address on invoice (in addition to the default billing "
222
  "address) if different from billing address"
@@ -224,27 +228,27 @@ msgstr ""
224
  "Geef verzendadres weer op de factuur (naast het standaard factuuradres) "
225
  "wanneer deze verschilt van het factuuradres"
226
 
227
- #: includes/class-wcpdf-settings.php:483 includes/class-wcpdf-settings.php:598
228
  msgid "Display email address"
229
  msgstr "Geef email adres weer"
230
 
231
- #: includes/class-wcpdf-settings.php:495 includes/class-wcpdf-settings.php:610
232
  msgid "Display phone number"
233
  msgstr "Geef telefoonnummer weer"
234
 
235
- #: includes/class-wcpdf-settings.php:507
236
  msgid "Display invoice date"
237
  msgstr "Geef factuurdatum weer"
238
 
239
- #: includes/class-wcpdf-settings.php:520
240
  msgid "Display built-in sequential invoice number"
241
  msgstr "Geef ingebouwde doorlopende factuurnummers weer"
242
 
243
- #: includes/class-wcpdf-settings.php:533
244
  msgid "Next invoice number (without prefix/suffix etc.)"
245
  msgstr "Volgend factuurnummer (zonder voor- of achtervoegsel etc.)"
246
 
247
- #: includes/class-wcpdf-settings.php:541
248
  msgid ""
249
  "This is the number that will be used on the next invoice that is created. By "
250
  "default, numbering starts from the WooCommerce Order Number of the first "
@@ -259,15 +263,15 @@ msgstr ""
259
  "hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
260
  "gevolg hebben!"
261
 
262
- #: includes/class-wcpdf-settings.php:547
263
  msgid "Invoice number format"
264
  msgstr "Factuurnummer format"
265
 
266
- #: includes/class-wcpdf-settings.php:556
267
  msgid "Prefix"
268
  msgstr "Voorvoegsel"
269
 
270
- #: includes/class-wcpdf-settings.php:558
271
  msgid ""
272
  "to use the order year and/or month, use [order_year] or [order_month] "
273
  "respectively"
@@ -275,21 +279,21 @@ msgstr ""
275
  "gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
276
  "te geven"
277
 
278
- #: includes/class-wcpdf-settings.php:561
279
  msgid "Suffix"
280
  msgstr "Achtervoegsel"
281
 
282
- #: includes/class-wcpdf-settings.php:566
283
  msgid "Padding"
284
  msgstr "Vulling"
285
 
286
- #: includes/class-wcpdf-settings.php:568
287
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
288
  msgstr ""
289
  "voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
290
  "geven"
291
 
292
- #: includes/class-wcpdf-settings.php:571
293
  msgid ""
294
  "note: if you have already created a custom invoice number format with a "
295
  "filter, the above settings will be ignored"
@@ -297,18 +301,22 @@ msgstr ""
297
  "let op: als je al een format voor een factuurnummer hebt gemaakt met een "
298
  "filter, worden de bovenstaande instellingen genegeerd"
299
 
300
- #: includes/class-wcpdf-settings.php:578
 
 
 
 
301
  #: templates/pdf/Simple/packing-slip.php:9
302
  #: templates/pdf/Simple/packing-slip.php:21
303
  #: woocommerce-pdf-invoices-packingslips.php:223
304
  msgid "Packing Slip"
305
  msgstr "Pakbon"
306
 
307
- #: includes/class-wcpdf-settings.php:585
308
  msgid "Display billing address"
309
  msgstr "Geef factuuradres weer"
310
 
311
- #: includes/class-wcpdf-settings.php:592
312
  msgid ""
313
  "Display billing address on packing slip (in addition to the default shipping "
314
  "address) if different from shipping address"
@@ -316,43 +324,43 @@ msgstr ""
316
  "Geef factuuradres weer op de pakbon (naast het standaard verzendadres) "
317
  "wanneer deze verschilt van het verzendadres"
318
 
319
- #: includes/class-wcpdf-settings.php:623
320
  msgid "Extra template fields"
321
  msgstr "Extra templatevelden"
322
 
323
- #: includes/class-wcpdf-settings.php:630
324
  msgid "Extra field 1"
325
  msgstr "Extra veld 1"
326
 
327
- #: includes/class-wcpdf-settings.php:639
328
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
329
  msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
330
 
331
- #: includes/class-wcpdf-settings.php:645
332
  msgid "Extra field 2"
333
  msgstr "Extra veld 2"
334
 
335
- #: includes/class-wcpdf-settings.php:654
336
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
337
  msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
338
 
339
- #: includes/class-wcpdf-settings.php:660
340
  msgid "Extra field 3"
341
  msgstr "Extra veld 3"
342
 
343
- #: includes/class-wcpdf-settings.php:669
344
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
345
  msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
346
 
347
- #: includes/class-wcpdf-settings.php:711
348
  msgid "Debug settings"
349
  msgstr "Debug instellingen"
350
 
351
- #: includes/class-wcpdf-settings.php:718
352
  msgid "Enable debug output"
353
  msgstr "Debug uitvoer inschakelen"
354
 
355
- #: includes/class-wcpdf-settings.php:725
356
  msgid ""
357
  "Enable this option to output plugin errors if you're getting a blank page or "
358
  "other PDF generation issues"
@@ -360,22 +368,22 @@ msgstr ""
360
  "Schakel deze optie in om pluginfouten weer te geven, wanneer je een lege "
361
  "pagina krijgt of andere problemen hebt met het genereren van PDF."
362
 
363
- #: includes/class-wcpdf-settings.php:731
364
  msgid "Output to HTML"
365
  msgstr "Uitvoer naar HTML"
366
 
367
- #: includes/class-wcpdf-settings.php:738
368
  msgid ""
369
  "Send the template output as HTML to the browser instead of creating a PDF."
370
  msgstr ""
371
  "Stuur de uitvoer van de template als HTML naar de browser in plaats van een "
372
  "PDF."
373
 
374
- #: includes/class-wcpdf-settings.php:744
375
  msgid "Use old tmp folder"
376
  msgstr "Gebruik de oude tmp folder"
377
 
378
- #: includes/class-wcpdf-settings.php:751
379
  msgid ""
380
  "Before version 1.5 of PDF Invoices, temporary files were stored in the "
381
  "plugin folder. This setting is only intended for backwards compatibility, "
@@ -385,11 +393,11 @@ msgstr ""
385
  "de plugin map. Deze instelling is enkel bedoelde voor backwards "
386
  "compatibiliteit, en niet aanbevolen op nieuwe installaties!"
387
 
388
- #: includes/class-wcpdf-settings.php:1091
389
  msgid "Image resolution"
390
  msgstr "Afbeeldings resolutie"
391
 
392
- #: includes/class-wcpdf-settings.php:1207
393
  msgid ""
394
  "<b>Warning!</b> The settings below are meant for debugging/development only. "
395
  "Do not use them on a live website!"
@@ -397,7 +405,7 @@ msgstr ""
397
  "<b>Waarschuwing!</b> Onderstaande instellingen zijn enkel bedoeld om fouten "
398
  "op te sporen of om te testen. Gebruik ze niet op een live website!"
399
 
400
- #: includes/class-wcpdf-settings.php:1216
401
  msgid ""
402
  "These are used for the (optional) footer columns in the <em>Modern "
403
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -407,50 +415,49 @@ msgstr ""
407
  "<em>Modern (Premium)</em> template, maar kunnen ook gebruikt worden voor "
408
  "andere elementen in je eigen custom sjabloon."
409
 
410
- #: includes/class-wcpdf-writepanels.php:32
411
  msgid "PDF Packing Slips"
412
  msgstr "PDF Pakbonnen"
413
 
414
- #: includes/class-wcpdf-writepanels.php:113
415
- #: includes/class-wcpdf-writepanels.php:240
416
  msgid "PDF Invoice"
417
  msgstr "PDF factuur"
418
 
419
- #: includes/class-wcpdf-writepanels.php:118
420
- #: includes/class-wcpdf-writepanels.php:245
421
  msgid "PDF Packing Slip"
422
  msgstr "PDF Pakbon"
423
 
424
- #: includes/class-wcpdf-writepanels.php:145
425
  msgid "Invoice Number"
426
  msgstr "Factuurnummer"
427
 
428
- #: includes/class-wcpdf-writepanels.php:198
429
  msgid "Download invoice (PDF)"
430
  msgstr "Download factuur (PDF)"
431
 
432
- #: includes/class-wcpdf-writepanels.php:212
433
  msgid "Create PDF"
434
  msgstr "Maak PDF"
435
 
436
- #: includes/class-wcpdf-writepanels.php:222
437
  msgid "PDF Invoice data"
438
  msgstr "PDF Factuur gegevens"
439
 
440
- #: includes/class-wcpdf-writepanels.php:275
441
  msgid "Invoice Number (unformatted!)"
442
  msgstr "Factuurnummer (zonder formatting!)"
443
 
444
- #: includes/class-wcpdf-writepanels.php:283
445
- #: templates/pdf/Simple/invoice.php:55
446
  msgid "Invoice Date:"
447
  msgstr "Factuurdatum:"
448
 
449
- #: includes/class-wcpdf-writepanels.php:285
450
  msgid "h"
451
  msgstr "u"
452
 
453
- #: includes/class-wcpdf-writepanels.php:285
454
  msgid "m"
455
  msgstr "m"
456
 
@@ -584,8 +591,7 @@ msgstr "Bekijk de Premium PDF Invoice & Packing Slips templates op %s."
584
  msgid "For custom templates, contact us at %s."
585
  msgstr "Neem voor custom templates contact met ons op via %s"
586
 
587
- #: templates/pdf/Simple/invoice.php:29
588
- #: templates/pdf/Simple/packing-slip.php:40
589
  msgid "Billing Address:"
590
  msgstr "Factuuradres:"
591
 
@@ -597,13 +603,11 @@ msgstr "Verzenden naar:"
597
  msgid "Invoice Number:"
598
  msgstr "Factuurnummer:"
599
 
600
- #: templates/pdf/Simple/invoice.php:60
601
- #: templates/pdf/Simple/packing-slip.php:48
602
  msgid "Order Number:"
603
  msgstr "Ordernummer:"
604
 
605
- #: templates/pdf/Simple/invoice.php:64
606
- #: templates/pdf/Simple/packing-slip.php:52
607
  msgid "Order Date:"
608
  msgstr "Orderdatum:"
609
 
@@ -611,13 +615,11 @@ msgstr "Orderdatum:"
611
  msgid "Payment Method:"
612
  msgstr "Betaalmethode:"
613
 
614
- #: templates/pdf/Simple/invoice.php:82
615
- #: templates/pdf/Simple/packing-slip.php:70
616
  msgid "Product"
617
  msgstr "Product"
618
 
619
- #: templates/pdf/Simple/invoice.php:83
620
- #: templates/pdf/Simple/packing-slip.php:71
621
  msgid "Quantity"
622
  msgstr "Hoeveelheid"
623
 
@@ -625,23 +627,19 @@ msgstr "Hoeveelheid"
625
  msgid "Price"
626
  msgstr "Prijs"
627
 
628
- #: templates/pdf/Simple/invoice.php:91
629
- #: templates/pdf/Simple/packing-slip.php:78
630
  msgid "Description"
631
  msgstr "Omschrijving"
632
 
633
- #: templates/pdf/Simple/invoice.php:96
634
- #: templates/pdf/Simple/packing-slip.php:83
635
  msgid "SKU"
636
  msgstr "Artikelnummer"
637
 
638
- #: templates/pdf/Simple/invoice.php:97
639
- #: templates/pdf/Simple/packing-slip.php:84
640
  msgid "SKU:"
641
  msgstr "SKU:"
642
 
643
- #: templates/pdf/Simple/invoice.php:98
644
- #: templates/pdf/Simple/packing-slip.php:85
645
  msgid "Weight:"
646
  msgstr "Gewicht:"
647
 
@@ -672,39 +670,44 @@ msgstr ""
672
  msgid "N/A"
673
  msgstr "N/A"
674
 
675
- #: woocommerce-pdf-invoices-packingslips.php:517
676
  msgid "Payment method"
677
  msgstr "Betaalmethode"
678
 
679
- #: woocommerce-pdf-invoices-packingslips.php:528
680
  msgid "Shipping method"
681
  msgstr "Verzendmethode"
682
 
683
- #: woocommerce-pdf-invoices-packingslips.php:681
 
 
 
 
 
684
  msgid "Subtotal"
685
  msgstr "Subtotaal"
686
 
687
- #: woocommerce-pdf-invoices-packingslips.php:703
688
  msgid "Shipping"
689
  msgstr "Verzendkosten"
690
 
691
- #: woocommerce-pdf-invoices-packingslips.php:766
692
  msgid "Discount"
693
  msgstr "Korting"
694
 
695
- #: woocommerce-pdf-invoices-packingslips.php:806
696
  msgid "VAT"
697
  msgstr "BTW"
698
 
699
- #: woocommerce-pdf-invoices-packingslips.php:807
700
  msgid "Tax rate"
701
  msgstr "BTW tarief"
702
 
703
- #: woocommerce-pdf-invoices-packingslips.php:844
704
  msgid "Total ex. VAT"
705
  msgstr "Totaal excl. BTW"
706
 
707
- #: woocommerce-pdf-invoices-packingslips.php:847
708
  msgid "Total"
709
  msgstr "Totaal"
710
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-01 17:03+0100\n"
6
+ "PO-Revision-Date: 2015-12-01 17:03+0100\n"
7
  "Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
  "Language: nl_NL\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.8.6\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: includes/class-wcpdf-export.php:372 includes/class-wcpdf-export.php:386
23
+ #: includes/class-wcpdf-export.php:393 includes/class-wcpdf-export.php:401
24
  msgid "You do not have sufficient permissions to access this page."
25
  msgstr "Je hebt onvoldoende rechten voor deze pagina."
26
 
27
+ #: includes/class-wcpdf-export.php:377
28
  msgid "Some of the export parameters are missing."
29
  msgstr "Er ontbreken export parameters"
30
 
31
+ #: includes/class-wcpdf-export.php:458
32
  msgid "invoice"
33
  msgid_plural "invoices"
34
  msgstr[0] "factuur"
35
  msgstr[1] "facturen"
36
 
37
+ #: includes/class-wcpdf-export.php:462
38
  msgid "packing-slip"
39
  msgid_plural "packing-slips"
40
  msgstr[0] "pakbon"
41
  msgstr[1] "pakbonnen"
42
 
43
+ #: includes/class-wcpdf-settings.php:34 includes/class-wcpdf-settings.php:35
44
+ #: includes/class-wcpdf-writepanels.php:32
45
  msgid "PDF Invoices"
46
  msgstr "PDF facturen"
47
 
48
+ #: includes/class-wcpdf-settings.php:76
49
  msgid "Settings"
50
  msgstr "Instellingen"
51
 
52
+ #: includes/class-wcpdf-settings.php:98
53
  msgid "General"
54
  msgstr "Algemeen"
55
 
56
+ #: includes/class-wcpdf-settings.php:99
57
  msgid "Template"
58
  msgstr "Template"
59
 
60
+ #: includes/class-wcpdf-settings.php:104
61
  msgid "Status"
62
  msgstr "Status"
63
 
64
+ #: includes/class-wcpdf-settings.php:116
65
  msgid "WooCommerce PDF Invoices"
66
  msgstr "WooCommerce PDF Facturen"
67
 
68
+ #: includes/class-wcpdf-settings.php:185
69
  msgid "General settings"
70
  msgstr "Algemene instellingen"
71
 
72
+ #: includes/class-wcpdf-settings.php:192
73
  msgid "How do you want to view the PDF?"
74
  msgstr "Hoe wil je de PDF bekijken?"
75
 
76
+ #: includes/class-wcpdf-settings.php:200
77
  msgid "Download the PDF"
78
  msgstr "Download de PDF"
79
 
80
+ #: includes/class-wcpdf-settings.php:201
81
  msgid "Open the PDF in a new browser tab/window"
82
  msgstr "Open de PDF in een nieuwe browser tab/venster"
83
 
84
+ #: includes/class-wcpdf-settings.php:210
85
  msgid "Admin New Order email"
86
  msgstr "Nieuwe bestelling (admin email)"
87
 
88
+ #: includes/class-wcpdf-settings.php:211
89
  msgid "Customer Processing Order email"
90
  msgstr "Bestelling in behandeling (klant email)"
91
 
92
+ #: includes/class-wcpdf-settings.php:212
93
  msgid "Customer Completed Order email"
94
  msgstr "Bestelling afgerond (klant email)"
95
 
96
+ #: includes/class-wcpdf-settings.php:213
97
  msgid "Customer Invoice email"
98
  msgstr "Factuur (klant email)"
99
 
144
  msgid "Always"
145
  msgstr "Altijd"
146
 
147
+ #: includes/class-wcpdf-settings.php:309
148
+ msgid "Never"
149
+ msgstr "Nooit"
150
+
151
+ #: includes/class-wcpdf-settings.php:324
152
  msgid "Enable invoice number column in the orders list"
153
  msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
154
 
155
+ #: includes/class-wcpdf-settings.php:362
156
  msgid "PDF Template settings"
157
  msgstr "PDF Template instellingen"
158
 
159
+ #: includes/class-wcpdf-settings.php:374
160
  msgid "Choose a template"
161
  msgstr "Kies een template"
162
 
163
+ #: includes/class-wcpdf-settings.php:382
164
  #, php-format
165
  msgid ""
166
  "Want to use your own template? Copy all the files from <code>%s</code> to "
169
  "Wil je je eigen template gebruiken? Kopieer alle bestanden van <code>%s</"
170
  "code> naar je (child-) theme in <code>%s</code> en pas ze aan naar je wensen."
171
 
172
+ #: includes/class-wcpdf-settings.php:388
173
  msgid "Paper size"
174
  msgstr "Papierformaat"
175
 
176
+ #: includes/class-wcpdf-settings.php:396
177
  msgid "A4"
178
  msgstr "A4"
179
 
180
+ #: includes/class-wcpdf-settings.php:397
181
  msgid "Letter"
182
  msgstr "Letter (US)"
183
 
184
+ #: includes/class-wcpdf-settings.php:404
185
  msgid "Shop header/logo"
186
  msgstr "Shop header/logo"
187
 
188
+ #: includes/class-wcpdf-settings.php:411
189
  msgid "Select or upload your invoice header/logo"
190
  msgstr "Selecteer of upload je factuur header/logo"
191
 
192
+ #: includes/class-wcpdf-settings.php:412
193
  msgid "Set image"
194
  msgstr "Stel afbeelding in"
195
 
196
+ #: includes/class-wcpdf-settings.php:413
197
  msgid "Remove image"
198
  msgstr "Verwijder afbeelding"
199
 
200
+ #: includes/class-wcpdf-settings.php:420
201
  msgid "Shop Name"
202
  msgstr "Shop Naam"
203
 
204
+ #: includes/class-wcpdf-settings.php:434
205
  msgid "Shop Address"
206
  msgstr "Shop Adres"
207
 
208
+ #: includes/class-wcpdf-settings.php:450
209
  msgid "Footer: terms & conditions, policies, etc."
210
  msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
211
 
212
+ #: includes/class-wcpdf-settings.php:467
213
+ #: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
214
  #: templates/pdf/Simple/invoice.php:21
215
  #: woocommerce-pdf-invoices-packingslips.php:220
216
  msgid "Invoice"
217
  msgstr "Factuur"
218
 
219
+ #: includes/class-wcpdf-settings.php:474
220
  msgid "Display shipping address"
221
  msgstr "Geef verzendadres weer"
222
 
223
+ #: includes/class-wcpdf-settings.php:481
224
  msgid ""
225
  "Display shipping address on invoice (in addition to the default billing "
226
  "address) if different from billing address"
228
  "Geef verzendadres weer op de factuur (naast het standaard factuuradres) "
229
  "wanneer deze verschilt van het factuuradres"
230
 
231
+ #: includes/class-wcpdf-settings.php:487 includes/class-wcpdf-settings.php:614
232
  msgid "Display email address"
233
  msgstr "Geef email adres weer"
234
 
235
+ #: includes/class-wcpdf-settings.php:499 includes/class-wcpdf-settings.php:626
236
  msgid "Display phone number"
237
  msgstr "Geef telefoonnummer weer"
238
 
239
+ #: includes/class-wcpdf-settings.php:511
240
  msgid "Display invoice date"
241
  msgstr "Geef factuurdatum weer"
242
 
243
+ #: includes/class-wcpdf-settings.php:524
244
  msgid "Display built-in sequential invoice number"
245
  msgstr "Geef ingebouwde doorlopende factuurnummers weer"
246
 
247
+ #: includes/class-wcpdf-settings.php:537
248
  msgid "Next invoice number (without prefix/suffix etc.)"
249
  msgstr "Volgend factuurnummer (zonder voor- of achtervoegsel etc.)"
250
 
251
+ #: includes/class-wcpdf-settings.php:545
252
  msgid ""
253
  "This is the number that will be used on the next invoice that is created. By "
254
  "default, numbering starts from the WooCommerce Order Number of the first "
263
  "hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
264
  "gevolg hebben!"
265
 
266
+ #: includes/class-wcpdf-settings.php:551
267
  msgid "Invoice number format"
268
  msgstr "Factuurnummer format"
269
 
270
+ #: includes/class-wcpdf-settings.php:560
271
  msgid "Prefix"
272
  msgstr "Voorvoegsel"
273
 
274
+ #: includes/class-wcpdf-settings.php:562
275
  msgid ""
276
  "to use the order year and/or month, use [order_year] or [order_month] "
277
  "respectively"
279
  "gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
280
  "te geven"
281
 
282
+ #: includes/class-wcpdf-settings.php:565
283
  msgid "Suffix"
284
  msgstr "Achtervoegsel"
285
 
286
+ #: includes/class-wcpdf-settings.php:570
287
  msgid "Padding"
288
  msgstr "Vulling"
289
 
290
+ #: includes/class-wcpdf-settings.php:572
291
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
292
  msgstr ""
293
  "voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
294
  "geven"
295
 
296
+ #: includes/class-wcpdf-settings.php:575
297
  msgid ""
298
  "note: if you have already created a custom invoice number format with a "
299
  "filter, the above settings will be ignored"
301
  "let op: als je al een format voor een factuurnummer hebt gemaakt met een "
302
  "filter, worden de bovenstaande instellingen genegeerd"
303
 
304
+ #: includes/class-wcpdf-settings.php:581
305
+ msgid "Reset invoice number yearly"
306
+ msgstr "Reset factuurnummer jaarlijks"
307
+
308
+ #: includes/class-wcpdf-settings.php:594
309
  #: templates/pdf/Simple/packing-slip.php:9
310
  #: templates/pdf/Simple/packing-slip.php:21
311
  #: woocommerce-pdf-invoices-packingslips.php:223
312
  msgid "Packing Slip"
313
  msgstr "Pakbon"
314
 
315
+ #: includes/class-wcpdf-settings.php:601
316
  msgid "Display billing address"
317
  msgstr "Geef factuuradres weer"
318
 
319
+ #: includes/class-wcpdf-settings.php:608
320
  msgid ""
321
  "Display billing address on packing slip (in addition to the default shipping "
322
  "address) if different from shipping address"
324
  "Geef factuuradres weer op de pakbon (naast het standaard verzendadres) "
325
  "wanneer deze verschilt van het verzendadres"
326
 
327
+ #: includes/class-wcpdf-settings.php:639
328
  msgid "Extra template fields"
329
  msgstr "Extra templatevelden"
330
 
331
+ #: includes/class-wcpdf-settings.php:646
332
  msgid "Extra field 1"
333
  msgstr "Extra veld 1"
334
 
335
+ #: includes/class-wcpdf-settings.php:655
336
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
337
  msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
338
 
339
+ #: includes/class-wcpdf-settings.php:662
340
  msgid "Extra field 2"
341
  msgstr "Extra veld 2"
342
 
343
+ #: includes/class-wcpdf-settings.php:671
344
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
345
  msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
346
 
347
+ #: includes/class-wcpdf-settings.php:678
348
  msgid "Extra field 3"
349
  msgstr "Extra veld 3"
350
 
351
+ #: includes/class-wcpdf-settings.php:687
352
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
353
  msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
354
 
355
+ #: includes/class-wcpdf-settings.php:730
356
  msgid "Debug settings"
357
  msgstr "Debug instellingen"
358
 
359
+ #: includes/class-wcpdf-settings.php:737
360
  msgid "Enable debug output"
361
  msgstr "Debug uitvoer inschakelen"
362
 
363
+ #: includes/class-wcpdf-settings.php:744
364
  msgid ""
365
  "Enable this option to output plugin errors if you're getting a blank page or "
366
  "other PDF generation issues"
368
  "Schakel deze optie in om pluginfouten weer te geven, wanneer je een lege "
369
  "pagina krijgt of andere problemen hebt met het genereren van PDF."
370
 
371
+ #: includes/class-wcpdf-settings.php:750
372
  msgid "Output to HTML"
373
  msgstr "Uitvoer naar HTML"
374
 
375
+ #: includes/class-wcpdf-settings.php:757
376
  msgid ""
377
  "Send the template output as HTML to the browser instead of creating a PDF."
378
  msgstr ""
379
  "Stuur de uitvoer van de template als HTML naar de browser in plaats van een "
380
  "PDF."
381
 
382
+ #: includes/class-wcpdf-settings.php:763
383
  msgid "Use old tmp folder"
384
  msgstr "Gebruik de oude tmp folder"
385
 
386
+ #: includes/class-wcpdf-settings.php:770
387
  msgid ""
388
  "Before version 1.5 of PDF Invoices, temporary files were stored in the "
389
  "plugin folder. This setting is only intended for backwards compatibility, "
393
  "de plugin map. Deze instelling is enkel bedoelde voor backwards "
394
  "compatibiliteit, en niet aanbevolen op nieuwe installaties!"
395
 
396
+ #: includes/class-wcpdf-settings.php:1143
397
  msgid "Image resolution"
398
  msgstr "Afbeeldings resolutie"
399
 
400
+ #: includes/class-wcpdf-settings.php:1259
401
  msgid ""
402
  "<b>Warning!</b> The settings below are meant for debugging/development only. "
403
  "Do not use them on a live website!"
405
  "<b>Waarschuwing!</b> Onderstaande instellingen zijn enkel bedoeld om fouten "
406
  "op te sporen of om te testen. Gebruik ze niet op een live website!"
407
 
408
+ #: includes/class-wcpdf-settings.php:1268
409
  msgid ""
410
  "These are used for the (optional) footer columns in the <em>Modern "
411
  "(Premium)</em> template, but can also be used for other elements in your "
415
  "<em>Modern (Premium)</em> template, maar kunnen ook gebruikt worden voor "
416
  "andere elementen in je eigen custom sjabloon."
417
 
418
+ #: includes/class-wcpdf-writepanels.php:33
419
  msgid "PDF Packing Slips"
420
  msgstr "PDF Pakbonnen"
421
 
422
+ #: includes/class-wcpdf-writepanels.php:119
423
+ #: includes/class-wcpdf-writepanels.php:252
424
  msgid "PDF Invoice"
425
  msgstr "PDF factuur"
426
 
427
+ #: includes/class-wcpdf-writepanels.php:124
428
+ #: includes/class-wcpdf-writepanels.php:257
429
  msgid "PDF Packing Slip"
430
  msgstr "PDF Pakbon"
431
 
432
+ #: includes/class-wcpdf-writepanels.php:151
433
  msgid "Invoice Number"
434
  msgstr "Factuurnummer"
435
 
436
+ #: includes/class-wcpdf-writepanels.php:210
437
  msgid "Download invoice (PDF)"
438
  msgstr "Download factuur (PDF)"
439
 
440
+ #: includes/class-wcpdf-writepanels.php:224
441
  msgid "Create PDF"
442
  msgstr "Maak PDF"
443
 
444
+ #: includes/class-wcpdf-writepanels.php:234
445
  msgid "PDF Invoice data"
446
  msgstr "PDF Factuur gegevens"
447
 
448
+ #: includes/class-wcpdf-writepanels.php:287
449
  msgid "Invoice Number (unformatted!)"
450
  msgstr "Factuurnummer (zonder formatting!)"
451
 
452
+ #: includes/class-wcpdf-writepanels.php:295 templates/pdf/Simple/invoice.php:55
 
453
  msgid "Invoice Date:"
454
  msgstr "Factuurdatum:"
455
 
456
+ #: includes/class-wcpdf-writepanels.php:297
457
  msgid "h"
458
  msgstr "u"
459
 
460
+ #: includes/class-wcpdf-writepanels.php:297
461
  msgid "m"
462
  msgstr "m"
463
 
591
  msgid "For custom templates, contact us at %s."
592
  msgstr "Neem voor custom templates contact met ons op via %s"
593
 
594
+ #: templates/pdf/Simple/invoice.php:29 templates/pdf/Simple/packing-slip.php:40
 
595
  msgid "Billing Address:"
596
  msgstr "Factuuradres:"
597
 
603
  msgid "Invoice Number:"
604
  msgstr "Factuurnummer:"
605
 
606
+ #: templates/pdf/Simple/invoice.php:60 templates/pdf/Simple/packing-slip.php:48
 
607
  msgid "Order Number:"
608
  msgstr "Ordernummer:"
609
 
610
+ #: templates/pdf/Simple/invoice.php:64 templates/pdf/Simple/packing-slip.php:52
 
611
  msgid "Order Date:"
612
  msgstr "Orderdatum:"
613
 
615
  msgid "Payment Method:"
616
  msgstr "Betaalmethode:"
617
 
618
+ #: templates/pdf/Simple/invoice.php:82 templates/pdf/Simple/packing-slip.php:70
 
619
  msgid "Product"
620
  msgstr "Product"
621
 
622
+ #: templates/pdf/Simple/invoice.php:83 templates/pdf/Simple/packing-slip.php:71
 
623
  msgid "Quantity"
624
  msgstr "Hoeveelheid"
625
 
627
  msgid "Price"
628
  msgstr "Prijs"
629
 
630
+ #: templates/pdf/Simple/invoice.php:91 templates/pdf/Simple/packing-slip.php:78
 
631
  msgid "Description"
632
  msgstr "Omschrijving"
633
 
634
+ #: templates/pdf/Simple/invoice.php:96 templates/pdf/Simple/packing-slip.php:83
 
635
  msgid "SKU"
636
  msgstr "Artikelnummer"
637
 
638
+ #: templates/pdf/Simple/invoice.php:97 templates/pdf/Simple/packing-slip.php:84
 
639
  msgid "SKU:"
640
  msgstr "SKU:"
641
 
642
+ #: templates/pdf/Simple/invoice.php:98 templates/pdf/Simple/packing-slip.php:85
 
643
  msgid "Weight:"
644
  msgstr "Gewicht:"
645
 
670
  msgid "N/A"
671
  msgstr "N/A"
672
 
673
+ #: woocommerce-pdf-invoices-packingslips.php:523
674
  msgid "Payment method"
675
  msgstr "Betaalmethode"
676
 
677
+ #: woocommerce-pdf-invoices-packingslips.php:534
678
  msgid "Shipping method"
679
  msgstr "Verzendmethode"
680
 
681
+ #: woocommerce-pdf-invoices-packingslips.php:693
682
+ #, php-format
683
+ msgid "(Includes %s)"
684
+ msgstr ""
685
+
686
+ #: woocommerce-pdf-invoices-packingslips.php:714
687
  msgid "Subtotal"
688
  msgstr "Subtotaal"
689
 
690
+ #: woocommerce-pdf-invoices-packingslips.php:736
691
  msgid "Shipping"
692
  msgstr "Verzendkosten"
693
 
694
+ #: woocommerce-pdf-invoices-packingslips.php:799
695
  msgid "Discount"
696
  msgstr "Korting"
697
 
698
+ #: woocommerce-pdf-invoices-packingslips.php:839
699
  msgid "VAT"
700
  msgstr "BTW"
701
 
702
+ #: woocommerce-pdf-invoices-packingslips.php:840
703
  msgid "Tax rate"
704
  msgstr "BTW tarief"
705
 
706
+ #: woocommerce-pdf-invoices-packingslips.php:877
707
  msgid "Total ex. VAT"
708
  msgstr "Totaal excl. BTW"
709
 
710
+ #: woocommerce-pdf-invoices-packingslips.php:880
711
  msgid "Total"
712
  msgstr "Totaal"
713
 
languages/wpo_wcpdf-pl_PL.mo CHANGED
Binary file
languages/wpo_wcpdf-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-09-18 15:08+0100\n"
5
- "PO-Revision-Date: 2015-08-15 15:17+0100\n"
6
  "Last-Translator: Damian Wajer <webmaster@graphcore.pl>\n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: pl_PL\n"
@@ -17,115 +17,320 @@ msgstr ""
17
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: includes/class-wcpdf-export.php:168 includes/class-wcpdf-export.php:173
21
- #: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
22
- #: includes/class-wcpdf-export.php:202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "You do not have sufficient permissions to access this page."
24
  msgstr "Nie masz wystarczającyh praw dostępu do tej strony."
25
 
 
 
 
 
26
  # This is a filename (prefix). do not use spaces or special characters!
27
- # Additional polish commentary: Ze względu na polskie prawo wtyczka ta nie jest odpowiednia do wystawiania faktur, dlatego "invoice" zamiast słowa "faktura" jest tłumaczone jako "zamówienie".
28
- #: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
 
29
  msgid "invoice"
30
  msgid_plural "invoices"
31
- msgstr[0] "zamówienie"
32
- msgstr[1] "zamówienia"
33
- msgstr[2] "zamówień"
34
 
35
  # This is a filename (prefix). do not use spaces or special characters!
36
- #: includes/class-wcpdf-export.php:225
37
  msgid "packing-slip"
38
  msgid_plural "packing-slips"
39
  msgstr[0] "dowód wysyłki"
40
  msgstr[1] "dowody wysyłki"
41
  msgstr[2] "dowodów wysyłki"
42
 
43
- #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
44
- #: includes/class-wcpdf-writepanels.php:176
45
- #: includes/class-wcpdf-writepanels.php:177
46
- msgid "PDF Invoices"
47
- msgstr "Zamówienie jako PDF"
48
 
49
- #: includes/class-wcpdf-settings.php:60
50
- msgid "Settings"
51
- msgstr "Ustawienia"
52
 
53
- #: includes/class-wcpdf-settings.php:82
54
- msgid "General"
55
- msgstr "Ogólne"
56
 
57
- #: includes/class-wcpdf-settings.php:83
58
- msgid "Template"
59
- msgstr "Szablon"
 
 
60
 
61
- #: includes/class-wcpdf-settings.php:92
62
- msgid "WooCommerce PDF Invoices"
63
- msgstr "WooCommerce Zmówienie jako PDF"
64
 
65
- #: includes/class-wcpdf-settings.php:98
66
- msgid "Status"
67
- msgstr "Status"
 
 
68
 
69
- #: includes/class-wcpdf-settings.php:109
70
- #, php-format
71
  msgid ""
72
- "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
73
- "extension."
74
  msgstr ""
75
- "Załaduj wszystkie zamówienia PDF automatycznie do twojego dropbox'a! <br/> "
76
- "Sprawdź wtyczkę %s."
77
 
78
- #: includes/class-wcpdf-settings.php:119
79
- #, php-format
80
  msgid ""
81
- "Looking for more advanced templates? Check out the Premium PDF Invoice & "
82
- "Packing Slips templates at %s."
83
  msgstr ""
84
- "Szukasz bardziej zaawansowanych szablonów? Odwiedź Premium PDF Invoice & "
85
- "Packing Slips Templates na %s."
86
 
87
- #: includes/class-wcpdf-settings.php:120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  #, php-format
89
  msgid "For custom templates, contact us at %s."
90
  msgstr "Jeśli potrzebujesz własnych szablonów, skontaktuj się z nami na %s."
91
 
92
- #: includes/class-wcpdf-settings.php:175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "General settings"
94
  msgstr "Ustawienia ogólne"
95
 
96
- #: includes/class-wcpdf-settings.php:182
97
  msgid "How do you want to view the PDF?"
98
  msgstr "Jak ma być pokazany PDF?"
99
 
100
- #: includes/class-wcpdf-settings.php:190
101
  msgid "Download the PDF"
102
  msgstr "Ściągnij PDF"
103
 
104
- #: includes/class-wcpdf-settings.php:191
105
  msgid "Open the PDF in a new browser tab/window"
106
  msgstr "Otwórz PDF w nowej zakładce/okienku przeglądarki"
107
 
108
- #: includes/class-wcpdf-settings.php:201
109
- msgid "Attach invoice to:"
110
- msgstr "Dołacz zamówienie do:"
111
-
112
- #: includes/class-wcpdf-settings.php:209
113
  msgid "Admin New Order email"
114
  msgstr "Email do administratora o nowym zamówieniu"
115
 
116
- #: includes/class-wcpdf-settings.php:210
117
  msgid "Customer Processing Order email"
118
  msgstr "Email do klienta o przetwarzaniu zamówienia"
119
 
120
- #: includes/class-wcpdf-settings.php:211
121
  msgid "Customer Completed Order email"
122
  msgstr "Email do klienta o zakończeniu zamówienia"
123
 
124
- #: includes/class-wcpdf-settings.php:212
125
  msgid "Customer Invoice email"
126
- msgstr "Email z zamówieniem dla klienta"
127
 
128
- #: includes/class-wcpdf-settings.php:214
 
 
 
 
129
  #, php-format
130
  msgid ""
131
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -136,92 +341,136 @@ msgstr ""
136
  "atrybuty tego folderu. Bez prawa do zapisu E-Maile do zamówienia nie mogą "
137
  "być wysłane."
138
 
139
- #: includes/class-wcpdf-settings.php:220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  msgid "Enable invoice number column in the orders list"
141
- msgstr "Włącz numer zamówień w kolumnie zamówień"
142
 
143
- #: includes/class-wcpdf-settings.php:259
144
  msgid "PDF Template settings"
145
  msgstr "Ustawienia szablonu PDF"
146
 
147
- #: includes/class-wcpdf-settings.php:271
148
  msgid "Choose a template"
149
  msgstr "Wybierz szablon"
150
 
151
- #: includes/class-wcpdf-settings.php:279
152
  #, php-format
153
  msgid ""
154
  "Want to use your own template? Copy all the files from <code>%s</code> to "
155
- "<code>%s</code> to customize them"
156
  msgstr ""
157
  "Chcesz użyć własnego szablonu? Skopiuj wszystkie pliki z <code>%s</code> do "
158
- "<code>%s</code> i dopasuj je."
159
 
160
- #: includes/class-wcpdf-settings.php:285
161
  msgid "Paper size"
162
  msgstr "Rozmiar wydruku"
163
 
164
- #: includes/class-wcpdf-settings.php:293
165
  msgid "A4"
166
  msgstr "A4"
167
 
168
- #: includes/class-wcpdf-settings.php:294
169
  msgid "Letter"
170
  msgstr "List"
171
 
172
- #: includes/class-wcpdf-settings.php:301
173
  msgid "Shop header/logo"
174
  msgstr "Nagłówek/logo"
175
 
176
- #: includes/class-wcpdf-settings.php:308
177
  msgid "Select or upload your invoice header/logo"
178
  msgstr "Wybierz albo załaduj nagłówek/logo zamówienia"
179
 
180
- #: includes/class-wcpdf-settings.php:309
181
  msgid "Set image"
182
  msgstr "Ustaw obraz"
183
 
184
- #: includes/class-wcpdf-settings.php:310
185
  msgid "Remove image"
186
  msgstr "Usuń obraz"
187
 
188
- #: includes/class-wcpdf-settings.php:317
189
  msgid "Shop Name"
190
  msgstr "Nazwa sklepu"
191
 
192
- #: includes/class-wcpdf-settings.php:330
193
  msgid "Shop Address"
194
  msgstr "Adres sklepu"
195
 
196
- #: includes/class-wcpdf-settings.php:362
197
  msgid "Footer: terms & conditions, policies, etc."
198
  msgstr "Stopka: ogólne postanowienia, regulamin, itp."
199
 
200
- #: includes/class-wcpdf-settings.php:377
201
- msgid "Number to display on invoice"
202
- msgstr "Numer wyświetlany na zamówieniu"
203
 
204
- #: includes/class-wcpdf-settings.php:385
205
- msgid "WooCommerce order number"
206
- msgstr "Numer zamówienia WooCommerce"
207
-
208
- #: includes/class-wcpdf-settings.php:386
209
- msgid "Built-in sequential invoice number"
210
- msgstr "Wbudowany mechanizm nadawania numerów zamówieniom"
211
-
212
- #: includes/class-wcpdf-settings.php:388
213
  msgid ""
214
- "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
215
- "WooCommerce order number"
216
  msgstr ""
217
- "Jeśli używasz WooCommerce Sequential Order Numbers plugin, wybierz numer "
218
- "zamówienia WooCommerce"
 
 
 
 
219
 
220
- #: includes/class-wcpdf-settings.php:394
 
 
 
 
 
 
 
 
 
 
 
 
221
  msgid "Next invoice number (without prefix/suffix etc.)"
222
- msgstr "Następny numer zamówienia (bez prefiksu/sufiksu itd.)"
223
 
224
- #: includes/class-wcpdf-settings.php:402
225
  msgid ""
226
  "This is the number that will be used on the next invoice that is created. By "
227
  "default, numbering starts from the WooCommerce Order Number of the first "
@@ -229,15 +478,15 @@ msgid ""
229
  "you override this and set it lower than the highest (PDF) invoice number, "
230
  "this could create double invoice numbers!"
231
  msgstr ""
232
- "To jest numer, który będzie użyty na następnym zamówieniu. Domyślnie numer "
233
- "startowy jest brany z zamówienia pierwszego zamówienia WooCommerce i który "
234
- "zwiększa się z każdym nowym zamówienia. Zwróć uwagę, że jeśli nadpiszesz to "
235
- "i ustawisz numer niższy niż najwyższy numer zamówienia (PDF), to może "
236
- "zdublować numery zamówień!"
237
 
238
- #: includes/class-wcpdf-settings.php:408
239
  msgid "Invoice number format"
240
- msgstr "Format zamówienia"
241
 
242
  # Jakie dokumenty należy dołączać do zamówień wysyłanych do klientów sklepu internetowego?
243
  # Zgodnie z art. 9 ust. 3 ustawy z dnia 2 marca 2000 r. o ochronie niektórych praw konsumentów sklep internetowy zobowiązany jest do potwierdzenia konsumentowi na piśmie, najpóźniej w momencie rozpoczęcia spełniania świadczenia, informacji o:
@@ -274,11 +523,11 @@ msgstr "Format zamówienia"
274
  # r) w przypadku gdy ma to zastosowanie – funkcjonalność treści cyfrowych, w tym również mające zastosowanie techniczne środki ich ochrony;
275
  # s) w przypadku gdy ma to zastosowanie – każda mająca znaczenie interoperacyjność treści cyfrowych ze sprzętem komputerowym i oprogramowaniem, o którym przedsiębiorca wie lub, racjonalnie oczekując, powinien był wiedzieć;
276
  # t) w przypadku gdy ma to zastosowanie – możliwość skorzystania z pozasądowych mechanizmów rozpatrywania reklamacji i dochodzenia roszczeń, którym podlega przedsiębiorca, oraz możliwości dostępu do tych procedur.
277
- #: includes/class-wcpdf-settings.php:417
278
  msgid "Prefix"
279
  msgstr "Prefiks"
280
 
281
- #: includes/class-wcpdf-settings.php:419
282
  msgid ""
283
  "to use the order year and/or month, use [order_year] or [order_month] "
284
  "respectively"
@@ -286,19 +535,19 @@ msgstr ""
286
  "żeby użyć roku i/albo miesiąca zamówienia, użyj odpowiednio [order_year] "
287
  "albo [order_month]"
288
 
289
- #: includes/class-wcpdf-settings.php:422
290
  msgid "Suffix"
291
  msgstr "Sufiks"
292
 
293
- #: includes/class-wcpdf-settings.php:427
294
  msgid "Padding"
295
  msgstr "Padding"
296
 
297
- #: includes/class-wcpdf-settings.php:429
298
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
299
  msgstr "wpisz tutaj liczbę cyfr - wpisz \"6\" żeby wyświetlić 42 jako 000042"
300
 
301
- #: includes/class-wcpdf-settings.php:432
302
  msgid ""
303
  "note: if you have already created a custom invoice number format with a "
304
  "filter, the above settings will be ignored"
@@ -306,51 +555,91 @@ msgstr ""
306
  "Uwaga: Jeśli już stworzyłeś własny format zamówienia z filtrem, powyższe "
307
  "ustawienia będą zignorowane."
308
 
309
- #: includes/class-wcpdf-settings.php:440
310
- msgid "Date to display on invoice"
311
- msgstr "Data wyświetlana na zamówieniu"
312
-
313
- #: includes/class-wcpdf-settings.php:448
314
- msgid "Order date"
315
- msgstr "Data zamówienia"
316
 
317
- #: includes/class-wcpdf-settings.php:449
318
- msgid "Invoice date"
319
- msgstr "Data rachunku"
 
 
 
 
320
 
321
- #: includes/class-wcpdf-settings.php:457
322
  msgid "Extra template fields"
323
  msgstr "Dodatkowe pola szablonu"
324
 
325
- #: includes/class-wcpdf-settings.php:464
326
  msgid "Extra field 1"
327
  msgstr "Dodatkowe pole 1"
328
 
329
- #: includes/class-wcpdf-settings.php:473
330
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
331
  msgstr "To jest kolumna 1 w szablonie <i>Modern (Premium)</i>"
332
 
333
- #: includes/class-wcpdf-settings.php:479
334
  msgid "Extra field 2"
335
  msgstr "Dodatkowe pole 2"
336
 
337
- #: includes/class-wcpdf-settings.php:488
338
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
339
  msgstr "To jest kolumna 2 w szablonie <i>Modern (Premium)</i>"
340
 
341
- #: includes/class-wcpdf-settings.php:494
342
  msgid "Extra field 3"
343
  msgstr "Dodatkowe pole 3"
344
 
345
- #: includes/class-wcpdf-settings.php:503
346
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
347
  msgstr "To jest kolumna 3 w szablonie <i>Modern (Premium)</i>"
348
 
349
- #: includes/class-wcpdf-settings.php:760
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  msgid "Image resolution"
351
  msgstr "Rozdzielczość obrazka"
352
 
353
- #: includes/class-wcpdf-settings.php:871
 
 
 
 
 
 
354
  msgid ""
355
  "These are used for the (optional) footer columns in the <em>Modern "
356
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -360,157 +649,98 @@ msgstr ""
360
  "(Premium)</em>,mogą jedna być też użyte dla innych elementów własnego "
361
  "szablonu."
362
 
363
- #: includes/class-wcpdf-writepanels.php:102
364
- msgid "Invoice Number"
365
- msgstr "Numer zamówienia"
366
-
367
- #: includes/class-wcpdf-writepanels.php:139
368
- msgid "Download invoice (PDF)"
369
- msgstr "Podsumowanie zamówienia (PDF)"
370
-
371
- #: includes/class-wcpdf-writepanels.php:150
372
- msgid "Create PDF"
373
- msgstr "Stwórz PDF"
374
-
375
- #: includes/class-wcpdf-writepanels.php:160
376
- msgid "PDF invoice"
377
- msgstr "Zamówienie-PDF"
378
-
379
- #: includes/class-wcpdf-writepanels.php:161
380
- msgid "PDF Packing Slip"
381
- msgstr "Zawartość paczki-PDF"
382
-
383
- #: includes/class-wcpdf-writepanels.php:178
384
- #: includes/class-wcpdf-writepanels.php:179
385
- msgid "PDF Packing Slips"
386
- msgstr "Zawartość paczek-PDF"
387
-
388
- #: includes/class-wcpdf-writepanels.php:192
389
- msgid "PDF Invoice Number (unformatted!)"
390
- msgstr "Numer zamówienia PDF (niesformatowany)"
391
-
392
- #: includes/class-wcpdf-writepanels.php:195
393
- #: templates/pdf/Simple/invoice.php:37
394
- msgid "Invoice Date:"
395
- msgstr "Data zamówienia:"
396
-
397
- #: includes/class-wcpdf-writepanels.php:196
398
- msgid "h"
399
- msgstr "godz."
400
-
401
- #: includes/class-wcpdf-writepanels.php:196
402
- msgid "m"
403
- msgstr "min."
404
-
405
- #: templates/pdf/Simple/html-document-wrapper.php:6
406
- #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
407
- msgid "Invoice"
408
- msgstr "Zamówienie"
409
-
410
- #: templates/pdf/Simple/html-document-wrapper.php:6
411
- #: templates/pdf/Simple/packing-slip.php:9
412
- #: templates/pdf/Simple/packing-slip.php:21
413
- msgid "Packing Slip"
414
- msgstr "Zawartość paczki"
415
 
416
  #: templates/pdf/Simple/invoice.php:40
417
- #: templates/pdf/Simple/packing-slip.php:30
418
- msgid "Order Date:"
419
- msgstr "Data zamówienia:"
420
 
421
- #: templates/pdf/Simple/invoice.php:46
422
  msgid "Invoice Number:"
423
  msgstr "Nr faktury:"
424
 
425
- #: templates/pdf/Simple/invoice.php:49
426
- #: templates/pdf/Simple/packing-slip.php:32
427
  msgid "Order Number:"
428
  msgstr "Zamówienie nr:"
429
 
430
- #: templates/pdf/Simple/invoice.php:56
 
 
 
 
 
431
  msgid "Payment Method:"
432
  msgstr "Metoda płatności:"
433
 
434
- #: templates/pdf/Simple/invoice.php:69
435
- #: templates/pdf/Simple/packing-slip.php:45
436
  msgid "Product"
437
  msgstr "Produkt"
438
 
439
- #: templates/pdf/Simple/invoice.php:70
440
- #: templates/pdf/Simple/packing-slip.php:46
441
  msgid "Quantity"
442
  msgstr "Ilość"
443
 
444
- #: templates/pdf/Simple/invoice.php:71
445
  msgid "Price"
446
  msgstr "Cena"
447
 
448
- #: templates/pdf/Simple/invoice.php:77
 
449
  msgid "Description"
450
  msgstr "Opis"
451
 
452
- #: templates/pdf/Simple/invoice.php:80
 
453
  msgid "SKU"
454
  msgstr "Kod"
455
 
456
- #: templates/pdf/Simple/invoice.php:81
457
- #: templates/pdf/Simple/packing-slip.php:54
458
  msgid "SKU:"
459
  msgstr "Kod:"
460
 
461
- #: templates/pdf/Simple/invoice.php:82
462
- #: templates/pdf/Simple/packing-slip.php:55
463
  msgid "Weight:"
464
  msgstr "Waga:"
465
 
466
- #: templates/pdf/Simple/invoice.php:114
467
- #: templates/pdf/Simple/packing-slip.php:69
468
  msgid "Customer Notes"
469
  msgstr "Notatki dla klienta"
470
 
471
- #: woocommerce-pdf-invoices-packingslips.php:96
472
- #, php-format
473
- msgid ""
474
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
475
- "installed & activated!"
476
- msgstr "WooCommerce PDF Invoices & Packing Slips potrzebuje %sWooCommerce%s !"
477
 
478
- #: woocommerce-pdf-invoices-packingslips.php:191
479
- #: woocommerce-pdf-invoices-packingslips.php:227
480
- msgid "N/A"
481
- msgstr "nie dotyczy"
482
 
483
- #: woocommerce-pdf-invoices-packingslips.php:264
484
- msgid "Payment method"
485
- msgstr "Metoda płatności"
486
 
487
- #: woocommerce-pdf-invoices-packingslips.php:275
488
- msgid "Shipping method"
489
- msgstr "Rodzaj wysyłki"
 
 
 
490
 
491
- #: woocommerce-pdf-invoices-packingslips.php:375
492
- msgid "Subtotal"
493
- msgstr "Podsuma produktów"
494
-
495
- #: woocommerce-pdf-invoices-packingslips.php:397
496
- msgid "Shipping"
497
- msgstr "Wysyłka"
498
 
499
- #: woocommerce-pdf-invoices-packingslips.php:431
500
- msgid "Discount"
501
- msgstr "Rabat"
502
 
503
- #: woocommerce-pdf-invoices-packingslips.php:470
504
- msgid "VAT"
505
- msgstr "VAT"
506
-
507
- #: woocommerce-pdf-invoices-packingslips.php:507
508
- msgid "Total ex. VAT"
509
- msgstr "Suma bez Vat (netto)"
510
-
511
- #: woocommerce-pdf-invoices-packingslips.php:510
512
- msgid "Total"
513
- msgstr "Suma"
514
 
515
  #~ msgid "..."
516
  #~ msgstr "..."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2015-09-05 16:44+0100\n"
5
+ "PO-Revision-Date: 2015-09-05 17:20+0100\n"
6
  "Last-Translator: Damian Wajer <webmaster@graphcore.pl>\n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: pl_PL\n"
17
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: woocommerce-pdf-invoices-packingslips.php:123
21
+ #, php-format
22
+ msgid ""
23
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
24
+ "installed & activated!"
25
+ msgstr "WooCommerce PDF Invoices & Packing Slips potrzebuje %sWooCommerce%s !"
26
+
27
+ #: woocommerce-pdf-invoices-packingslips.php:220
28
+ #: includes/class-wcpdf-writepanels.php:277
29
+ #: includes/class-wcpdf-settings.php:464 templates/pdf/Simple/invoice.php:9
30
+ #: templates/pdf/Simple/invoice.php:21
31
+ msgid "Invoice"
32
+ msgstr "Faktura"
33
+
34
+ #: woocommerce-pdf-invoices-packingslips.php:223
35
+ #: includes/class-wcpdf-settings.php:579
36
+ #: templates/pdf/Simple/packing-slip.php:9
37
+ #: templates/pdf/Simple/packing-slip.php:21
38
+ msgid "Packing Slip"
39
+ msgstr "Zawartość paczki"
40
+
41
+ #: woocommerce-pdf-invoices-packingslips.php:367
42
+ #: woocommerce-pdf-invoices-packingslips.php:428
43
+ msgid "N/A"
44
+ msgstr "nie dotyczy"
45
+
46
+ #: woocommerce-pdf-invoices-packingslips.php:523
47
+ msgid "Payment method"
48
+ msgstr "Metoda płatności"
49
+
50
+ #: woocommerce-pdf-invoices-packingslips.php:534
51
+ msgid "Shipping method"
52
+ msgstr "Rodzaj wysyłki"
53
+
54
+ #: woocommerce-pdf-invoices-packingslips.php:693
55
+ #, php-format
56
+ msgid "(Includes %s)"
57
+ msgstr "(Zawiera %s)"
58
+
59
+ #: woocommerce-pdf-invoices-packingslips.php:714
60
+ msgid "Subtotal"
61
+ msgstr "Podsuma produktów"
62
+
63
+ #: woocommerce-pdf-invoices-packingslips.php:736
64
+ msgid "Shipping"
65
+ msgstr "Wysyłka"
66
+
67
+ #: woocommerce-pdf-invoices-packingslips.php:799
68
+ msgid "Discount"
69
+ msgstr "Rabat"
70
+
71
+ #: woocommerce-pdf-invoices-packingslips.php:839
72
+ msgid "VAT"
73
+ msgstr "VAT"
74
+
75
+ #: woocommerce-pdf-invoices-packingslips.php:840
76
+ msgid "Tax rate"
77
+ msgstr "Wysokość podatku"
78
+
79
+ #: woocommerce-pdf-invoices-packingslips.php:877
80
+ msgid "Total ex. VAT"
81
+ msgstr "Suma bez Vat (netto)"
82
+
83
+ #: woocommerce-pdf-invoices-packingslips.php:880
84
+ msgid "Total"
85
+ msgstr "Suma"
86
+
87
+ #: includes/class-wcpdf-writepanels.php:32
88
+ #: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
89
+ msgid "PDF Invoices"
90
+ msgstr "Faktury PDF"
91
+
92
+ #: includes/class-wcpdf-writepanels.php:33
93
+ msgid "PDF Packing Slips"
94
+ msgstr "Zawartość paczek PDF"
95
+
96
+ #: includes/class-wcpdf-writepanels.php:114
97
+ #: includes/class-wcpdf-writepanels.php:244
98
+ msgid "PDF Invoice"
99
+ msgstr "Faktura PDF"
100
+
101
+ #: includes/class-wcpdf-writepanels.php:119
102
+ #: includes/class-wcpdf-writepanels.php:249
103
+ msgid "PDF Packing Slip"
104
+ msgstr "Zawartość paczki PDF"
105
+
106
+ #: includes/class-wcpdf-writepanels.php:146
107
+ msgid "Invoice Number"
108
+ msgstr "Numer faktury"
109
+
110
+ #: includes/class-wcpdf-writepanels.php:202
111
+ msgid "Download invoice (PDF)"
112
+ msgstr "Pobierz fakturę (PDF)"
113
+
114
+ #: includes/class-wcpdf-writepanels.php:216
115
+ msgid "Create PDF"
116
+ msgstr "Stwórz PDF"
117
+
118
+ #: includes/class-wcpdf-writepanels.php:226
119
+ msgid "PDF Invoice data"
120
+ msgstr "Dane faktury PDF"
121
+
122
+ #: includes/class-wcpdf-writepanels.php:279
123
+ msgid "Invoice Number (unformatted!)"
124
+ msgstr "Numer faktury (niesformatowany!)"
125
+
126
+ #: includes/class-wcpdf-writepanels.php:287
127
+ #: templates/pdf/Simple/invoice.php:55
128
+ msgid "Invoice Date:"
129
+ msgstr "Data faktury:"
130
+
131
+ #: includes/class-wcpdf-writepanels.php:289
132
+ msgid "h"
133
+ msgstr "godz."
134
+
135
+ #: includes/class-wcpdf-writepanels.php:289
136
+ msgid "m"
137
+ msgstr "min."
138
+
139
+ #: includes/class-wcpdf-export.php:344 includes/class-wcpdf-export.php:358
140
+ #: includes/class-wcpdf-export.php:365 includes/class-wcpdf-export.php:373
141
  msgid "You do not have sufficient permissions to access this page."
142
  msgstr "Nie masz wystarczającyh praw dostępu do tej strony."
143
 
144
+ #: includes/class-wcpdf-export.php:349
145
+ msgid "Some of the export parameters are missing."
146
+ msgstr "Brakuje niektóre parametrów eksportu."
147
+
148
  # This is a filename (prefix). do not use spaces or special characters!
149
+ # Additional Polish commentary: Ze względu na polskie prawo wtyczka ta nie jest odpowiednia do wystawiania faktur, dlatego "invoice" zamiast słowa "faktura" jest tłumaczone jako "zamówienie".
150
+ # Additional Polish commentary: Adnotacja do powyższego: Dodatkowe pola i własne szablony umożliwiają dostosowanie wtyczki i informacji generowanych na fakturze do własnych potrzeb, dlatego przywrócone zostało prawidłowe tłumaczenie słowa "faktura".
151
+ #: includes/class-wcpdf-export.php:430
152
  msgid "invoice"
153
  msgid_plural "invoices"
154
+ msgstr[0] "faktura"
155
+ msgstr[1] "faktury"
156
+ msgstr[2] "faktur"
157
 
158
  # This is a filename (prefix). do not use spaces or special characters!
159
+ #: includes/class-wcpdf-export.php:434
160
  msgid "packing-slip"
161
  msgid_plural "packing-slips"
162
  msgstr[0] "dowód wysyłki"
163
  msgstr[1] "dowody wysyłki"
164
  msgstr[2] "dowodów wysyłki"
165
 
166
+ #: includes/wcpdf-extensions.php:15
167
+ msgid "Check out these premium extensions!"
168
+ msgstr "Sprawdź te rozszerzenia premium!"
 
 
169
 
170
+ #: includes/wcpdf-extensions.php:16
171
+ msgid "click items to read more"
172
+ msgstr ""
173
 
174
+ #: includes/wcpdf-extensions.php:23
175
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
176
+ msgstr ""
177
 
178
+ #: includes/wcpdf-extensions.php:25
179
+ msgid ""
180
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
181
+ "features:"
182
+ msgstr ""
183
 
184
+ #: includes/wcpdf-extensions.php:27
185
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
186
+ msgstr ""
187
 
188
+ #: includes/wcpdf-extensions.php:28
189
+ msgid ""
190
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
191
+ "packing slips, for example to a drop-shipper or a supplier."
192
+ msgstr ""
193
 
194
+ #: includes/wcpdf-extensions.php:29
 
195
  msgid ""
196
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
197
+ "document) to the WooCommerce emails of your choice."
198
  msgstr ""
 
 
199
 
200
+ #: includes/wcpdf-extensions.php:30
 
201
  msgid ""
202
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
203
+ "and credit notes or utilize the main invoice numbering system"
204
  msgstr ""
 
 
205
 
206
+ #: includes/wcpdf-extensions.php:31
207
+ msgid ""
208
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
209
+ "additional custom fields, font sizes etc. without the need to create a "
210
+ "custom template."
211
+ msgstr ""
212
+
213
+ #: includes/wcpdf-extensions.php:32
214
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
215
+ msgstr ""
216
+
217
+ #: includes/wcpdf-extensions.php:34
218
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
219
+ msgstr ""
220
+
221
+ #: includes/wcpdf-extensions.php:42
222
+ msgid "Upload all invoices automatically to your dropbox"
223
+ msgstr "Załaduj wszystkie faktury PDF automatycznie do twojego dropboxa"
224
+
225
+ #: includes/wcpdf-extensions.php:48
226
+ msgid ""
227
+ "This extension conveniently uploads all the invoices (and other pdf "
228
+ "documents from the professional extension) that are emailed to your "
229
+ "customers to Dropbox. The best way to keep your invoice administration up to "
230
+ "date!"
231
+ msgstr ""
232
+
233
+ #: includes/wcpdf-extensions.php:49
234
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
235
+ msgstr ""
236
+
237
+ #: includes/wcpdf-extensions.php:61
238
+ msgid ""
239
+ "Automatically send new orders or packing slips to your printer, as soon as "
240
+ "the customer orders!"
241
+ msgstr ""
242
+
243
+ #: includes/wcpdf-extensions.php:67
244
+ msgid ""
245
+ "Check out the WooCommerce Automatic Order Printing extension from our "
246
+ "partners at Simba Hosting"
247
+ msgstr ""
248
+
249
+ #: includes/wcpdf-extensions.php:68
250
+ msgid "WooCommerce Automatic Order Printing"
251
+ msgstr ""
252
+
253
+ #: includes/wcpdf-extensions.php:82
254
+ msgid "Advanced, customizable templates"
255
+ msgstr ""
256
+
257
+ #: includes/wcpdf-extensions.php:85
258
+ msgid ""
259
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
260
+ "your needs with a drag & drop customizer"
261
+ msgstr ""
262
+
263
+ #: includes/wcpdf-extensions.php:86
264
+ msgid "Two extra stylish premade templates (Modern & Business)"
265
+ msgstr ""
266
+
267
+ #: includes/wcpdf-extensions.php:87
268
+ #, php-format
269
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
270
+ msgstr ""
271
+
272
+ #: includes/wcpdf-extensions.php:88
273
  #, php-format
274
  msgid "For custom templates, contact us at %s."
275
  msgstr "Jeśli potrzebujesz własnych szablonów, skontaktuj się z nami na %s."
276
 
277
+ #: includes/class-wcpdf-settings.php:80
278
+ msgid "Settings"
279
+ msgstr "Ustawienia"
280
+
281
+ #: includes/class-wcpdf-settings.php:102
282
+ msgid "General"
283
+ msgstr "Ogólne"
284
+
285
+ #: includes/class-wcpdf-settings.php:103
286
+ msgid "Template"
287
+ msgstr "Szablon"
288
+
289
+ #: includes/class-wcpdf-settings.php:108
290
+ msgid "Status"
291
+ msgstr "Status"
292
+
293
+ #: includes/class-wcpdf-settings.php:120
294
+ msgid "WooCommerce PDF Invoices"
295
+ msgstr "WooCommerce Faktury PDF"
296
+
297
+ #: includes/class-wcpdf-settings.php:189
298
  msgid "General settings"
299
  msgstr "Ustawienia ogólne"
300
 
301
+ #: includes/class-wcpdf-settings.php:196
302
  msgid "How do you want to view the PDF?"
303
  msgstr "Jak ma być pokazany PDF?"
304
 
305
+ #: includes/class-wcpdf-settings.php:204
306
  msgid "Download the PDF"
307
  msgstr "Ściągnij PDF"
308
 
309
+ #: includes/class-wcpdf-settings.php:205
310
  msgid "Open the PDF in a new browser tab/window"
311
  msgstr "Otwórz PDF w nowej zakładce/okienku przeglądarki"
312
 
313
+ #: includes/class-wcpdf-settings.php:214
 
 
 
 
314
  msgid "Admin New Order email"
315
  msgstr "Email do administratora o nowym zamówieniu"
316
 
317
+ #: includes/class-wcpdf-settings.php:215
318
  msgid "Customer Processing Order email"
319
  msgstr "Email do klienta o przetwarzaniu zamówienia"
320
 
321
+ #: includes/class-wcpdf-settings.php:216
322
  msgid "Customer Completed Order email"
323
  msgstr "Email do klienta o zakończeniu zamówienia"
324
 
325
+ #: includes/class-wcpdf-settings.php:217
326
  msgid "Customer Invoice email"
327
+ msgstr "Email do klienta o fakturze"
328
 
329
+ #: includes/class-wcpdf-settings.php:222
330
+ msgid "Attach invoice to:"
331
+ msgstr "Dołącz fakturę do:"
332
+
333
+ #: includes/class-wcpdf-settings.php:230
334
  #, php-format
335
  msgid ""
336
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
341
  "atrybuty tego folderu. Bez prawa do zapisu E-Maile do zamówienia nie mogą "
342
  "być wysłane."
343
 
344
+ #: includes/class-wcpdf-settings.php:236
345
+ msgid "Disable for free products"
346
+ msgstr "Wyłącz dla darmowych produktów"
347
+
348
+ #: includes/class-wcpdf-settings.php:243
349
+ msgid ""
350
+ "Disable automatic creation/attachment of invoices when only free products "
351
+ "are ordered"
352
+ msgstr ""
353
+ "Wyłącz automatyczne tworzenie/dołączanie faktur gdy zamawiane są tylko "
354
+ "darmowe produkty"
355
+
356
+ #: includes/class-wcpdf-settings.php:250
357
+ msgid "Interface"
358
+ msgstr "Interfejs"
359
+
360
+ #: includes/class-wcpdf-settings.php:298
361
+ msgid "Allow My Account invoice download"
362
+ msgstr "Pozwól na pobieranie faktur na stronie Moje konto"
363
+
364
+ #: includes/class-wcpdf-settings.php:306
365
+ msgid "Only when an invoice is already created/emailed"
366
+ msgstr "Tylko gdy faktura jest już stworzona/wysłana e-mailem"
367
+
368
+ #: includes/class-wcpdf-settings.php:307
369
+ msgid "Only for specific order statuses (define below)"
370
+ msgstr "Tylko dla wybranych statusów zamówienia (określ poniżej)"
371
+
372
+ #: includes/class-wcpdf-settings.php:308
373
+ msgid "Always"
374
+ msgstr "Zawsze"
375
+
376
+ #: includes/class-wcpdf-settings.php:309
377
+ msgid "Never"
378
+ msgstr "Nigdy"
379
+
380
+ #: includes/class-wcpdf-settings.php:324
381
  msgid "Enable invoice number column in the orders list"
382
+ msgstr "Włącz numer faktury w kolumnie zamówień"
383
 
384
+ #: includes/class-wcpdf-settings.php:362
385
  msgid "PDF Template settings"
386
  msgstr "Ustawienia szablonu PDF"
387
 
388
+ #: includes/class-wcpdf-settings.php:374
389
  msgid "Choose a template"
390
  msgstr "Wybierz szablon"
391
 
392
+ #: includes/class-wcpdf-settings.php:382
393
  #, php-format
394
  msgid ""
395
  "Want to use your own template? Copy all the files from <code>%s</code> to "
396
+ "your (child) theme in <code>%s</code> to customize them"
397
  msgstr ""
398
  "Chcesz użyć własnego szablonu? Skopiuj wszystkie pliki z <code>%s</code> do "
399
+ "<code>%s</code> i dostosuj je."
400
 
401
+ #: includes/class-wcpdf-settings.php:388
402
  msgid "Paper size"
403
  msgstr "Rozmiar wydruku"
404
 
405
+ #: includes/class-wcpdf-settings.php:396
406
  msgid "A4"
407
  msgstr "A4"
408
 
409
+ #: includes/class-wcpdf-settings.php:397
410
  msgid "Letter"
411
  msgstr "List"
412
 
413
+ #: includes/class-wcpdf-settings.php:404
414
  msgid "Shop header/logo"
415
  msgstr "Nagłówek/logo"
416
 
417
+ #: includes/class-wcpdf-settings.php:411
418
  msgid "Select or upload your invoice header/logo"
419
  msgstr "Wybierz albo załaduj nagłówek/logo zamówienia"
420
 
421
+ #: includes/class-wcpdf-settings.php:412
422
  msgid "Set image"
423
  msgstr "Ustaw obraz"
424
 
425
+ #: includes/class-wcpdf-settings.php:413
426
  msgid "Remove image"
427
  msgstr "Usuń obraz"
428
 
429
+ #: includes/class-wcpdf-settings.php:420
430
  msgid "Shop Name"
431
  msgstr "Nazwa sklepu"
432
 
433
+ #: includes/class-wcpdf-settings.php:433
434
  msgid "Shop Address"
435
  msgstr "Adres sklepu"
436
 
437
+ #: includes/class-wcpdf-settings.php:448
438
  msgid "Footer: terms & conditions, policies, etc."
439
  msgstr "Stopka: ogólne postanowienia, regulamin, itp."
440
 
441
+ #: includes/class-wcpdf-settings.php:471
442
+ msgid "Display shipping address"
443
+ msgstr "Wyświetl adres do wysyłki"
444
 
445
+ #: includes/class-wcpdf-settings.php:478
 
 
 
 
 
 
 
 
446
  msgid ""
447
+ "Display shipping address on invoice (in addition to the default billing "
448
+ "address) if different from billing address"
449
  msgstr ""
450
+ "Wyświetl adres do wysyłki na fakturze (oprócz domyślnego adresu "
451
+ "rozliczeniowego) jeżeli jest inny niż adres rozliczeniowy"
452
+
453
+ #: includes/class-wcpdf-settings.php:484 includes/class-wcpdf-settings.php:599
454
+ msgid "Display email address"
455
+ msgstr "Wyświetl adres email"
456
 
457
+ #: includes/class-wcpdf-settings.php:496 includes/class-wcpdf-settings.php:611
458
+ msgid "Display phone number"
459
+ msgstr "Wyświetl numer telefonu"
460
+
461
+ #: includes/class-wcpdf-settings.php:508
462
+ msgid "Display invoice date"
463
+ msgstr "Wyświetl datę faktury"
464
+
465
+ #: includes/class-wcpdf-settings.php:521
466
+ msgid "Display built-in sequential invoice number"
467
+ msgstr "Wyświetl wbudowany mechanizm nadawania numerów faktur"
468
+
469
+ #: includes/class-wcpdf-settings.php:534
470
  msgid "Next invoice number (without prefix/suffix etc.)"
471
+ msgstr "Następny numer faktury (bez prefiksu/sufiksu itd.)"
472
 
473
+ #: includes/class-wcpdf-settings.php:542
474
  msgid ""
475
  "This is the number that will be used on the next invoice that is created. By "
476
  "default, numbering starts from the WooCommerce Order Number of the first "
478
  "you override this and set it lower than the highest (PDF) invoice number, "
479
  "this could create double invoice numbers!"
480
  msgstr ""
481
+ "To jest numer, który będzie użyty na następnej fakturze. Domyślnie numer "
482
+ "startowy jest brany z numeru zamówienia WooCommerce dla pierwszej "
483
+ "wygenerowanej faktury i zwiększa się z każdym nowym zamówieniem. Zwróć "
484
+ "uwagę, że jeśli nadpiszesz to i ustawisz numer niższy niż najwyższy numer "
485
+ "faktury (PDF), to może zdublować numery faktur!"
486
 
487
+ #: includes/class-wcpdf-settings.php:548
488
  msgid "Invoice number format"
489
+ msgstr "Format numeru faktury"
490
 
491
  # Jakie dokumenty należy dołączać do zamówień wysyłanych do klientów sklepu internetowego?
492
  # Zgodnie z art. 9 ust. 3 ustawy z dnia 2 marca 2000 r. o ochronie niektórych praw konsumentów sklep internetowy zobowiązany jest do potwierdzenia konsumentowi na piśmie, najpóźniej w momencie rozpoczęcia spełniania świadczenia, informacji o:
523
  # r) w przypadku gdy ma to zastosowanie – funkcjonalność treści cyfrowych, w tym również mające zastosowanie techniczne środki ich ochrony;
524
  # s) w przypadku gdy ma to zastosowanie – każda mająca znaczenie interoperacyjność treści cyfrowych ze sprzętem komputerowym i oprogramowaniem, o którym przedsiębiorca wie lub, racjonalnie oczekując, powinien był wiedzieć;
525
  # t) w przypadku gdy ma to zastosowanie – możliwość skorzystania z pozasądowych mechanizmów rozpatrywania reklamacji i dochodzenia roszczeń, którym podlega przedsiębiorca, oraz możliwości dostępu do tych procedur.
526
+ #: includes/class-wcpdf-settings.php:557
527
  msgid "Prefix"
528
  msgstr "Prefiks"
529
 
530
+ #: includes/class-wcpdf-settings.php:559
531
  msgid ""
532
  "to use the order year and/or month, use [order_year] or [order_month] "
533
  "respectively"
535
  "żeby użyć roku i/albo miesiąca zamówienia, użyj odpowiednio [order_year] "
536
  "albo [order_month]"
537
 
538
+ #: includes/class-wcpdf-settings.php:562
539
  msgid "Suffix"
540
  msgstr "Sufiks"
541
 
542
+ #: includes/class-wcpdf-settings.php:567
543
  msgid "Padding"
544
  msgstr "Padding"
545
 
546
+ #: includes/class-wcpdf-settings.php:569
547
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
548
  msgstr "wpisz tutaj liczbę cyfr - wpisz \"6\" żeby wyświetlić 42 jako 000042"
549
 
550
+ #: includes/class-wcpdf-settings.php:572
551
  msgid ""
552
  "note: if you have already created a custom invoice number format with a "
553
  "filter, the above settings will be ignored"
555
  "Uwaga: Jeśli już stworzyłeś własny format zamówienia z filtrem, powyższe "
556
  "ustawienia będą zignorowane."
557
 
558
+ #: includes/class-wcpdf-settings.php:586
559
+ msgid "Display billing address"
560
+ msgstr "Wyświetl adres rozliczeniowy"
 
 
 
 
561
 
562
+ #: includes/class-wcpdf-settings.php:593
563
+ msgid ""
564
+ "Display billing address on packing slip (in addition to the default shipping "
565
+ "address) if different from shipping address"
566
+ msgstr ""
567
+ "Wyświetl adres rozliczeniowy w zawartości paczki (oprócz domyślnego adresu "
568
+ "do wysyłki) jeżeli jest inny niż adres do wysyłki"
569
 
570
+ #: includes/class-wcpdf-settings.php:624
571
  msgid "Extra template fields"
572
  msgstr "Dodatkowe pola szablonu"
573
 
574
+ #: includes/class-wcpdf-settings.php:631
575
  msgid "Extra field 1"
576
  msgstr "Dodatkowe pole 1"
577
 
578
+ #: includes/class-wcpdf-settings.php:640
579
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
580
  msgstr "To jest kolumna 1 w szablonie <i>Modern (Premium)</i>"
581
 
582
+ #: includes/class-wcpdf-settings.php:646
583
  msgid "Extra field 2"
584
  msgstr "Dodatkowe pole 2"
585
 
586
+ #: includes/class-wcpdf-settings.php:655
587
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
588
  msgstr "To jest kolumna 2 w szablonie <i>Modern (Premium)</i>"
589
 
590
+ #: includes/class-wcpdf-settings.php:661
591
  msgid "Extra field 3"
592
  msgstr "Dodatkowe pole 3"
593
 
594
+ #: includes/class-wcpdf-settings.php:670
595
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
596
  msgstr "To jest kolumna 3 w szablonie <i>Modern (Premium)</i>"
597
 
598
+ #: includes/class-wcpdf-settings.php:712
599
+ msgid "Debug settings"
600
+ msgstr ""
601
+
602
+ #: includes/class-wcpdf-settings.php:719
603
+ msgid "Enable debug output"
604
+ msgstr ""
605
+
606
+ #: includes/class-wcpdf-settings.php:726
607
+ msgid ""
608
+ "Enable this option to output plugin errors if you're getting a blank page or "
609
+ "other PDF generation issues"
610
+ msgstr ""
611
+
612
+ #: includes/class-wcpdf-settings.php:732
613
+ msgid "Output to HTML"
614
+ msgstr ""
615
+
616
+ #: includes/class-wcpdf-settings.php:739
617
+ msgid ""
618
+ "Send the template output as HTML to the browser instead of creating a PDF."
619
+ msgstr ""
620
+
621
+ #: includes/class-wcpdf-settings.php:745
622
+ msgid "Use old tmp folder"
623
+ msgstr ""
624
+
625
+ #: includes/class-wcpdf-settings.php:752
626
+ msgid ""
627
+ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
628
+ "plugin folder. This setting is only intended for backwards compatibility, "
629
+ "not recommended on new installs!"
630
+ msgstr ""
631
+
632
+ #: includes/class-wcpdf-settings.php:1092
633
  msgid "Image resolution"
634
  msgstr "Rozdzielczość obrazka"
635
 
636
+ #: includes/class-wcpdf-settings.php:1208
637
+ msgid ""
638
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
639
+ "Do not use them on a live website!"
640
+ msgstr ""
641
+
642
+ #: includes/class-wcpdf-settings.php:1217
643
  msgid ""
644
  "These are used for the (optional) footer columns in the <em>Modern "
645
  "(Premium)</em> template, but can also be used for other elements in your "
649
  "(Premium)</em>,mogą jedna być też użyte dla innych elementów własnego "
650
  "szablonu."
651
 
652
+ #: templates/pdf/Simple/invoice.php:29
653
+ #: templates/pdf/Simple/packing-slip.php:40
654
+ msgid "Billing Address:"
655
+ msgstr "Adres rozliczeniowy:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
 
657
  #: templates/pdf/Simple/invoice.php:40
658
+ msgid "Ship To:"
659
+ msgstr "Dostawa do:"
 
660
 
661
+ #: templates/pdf/Simple/invoice.php:49
662
  msgid "Invoice Number:"
663
  msgstr "Nr faktury:"
664
 
665
+ #: templates/pdf/Simple/invoice.php:60
666
+ #: templates/pdf/Simple/packing-slip.php:48
667
  msgid "Order Number:"
668
  msgstr "Zamówienie nr:"
669
 
670
+ #: templates/pdf/Simple/invoice.php:64
671
+ #: templates/pdf/Simple/packing-slip.php:52
672
+ msgid "Order Date:"
673
+ msgstr "Data zamówienia:"
674
+
675
+ #: templates/pdf/Simple/invoice.php:68
676
  msgid "Payment Method:"
677
  msgstr "Metoda płatności:"
678
 
679
+ #: templates/pdf/Simple/invoice.php:82
680
+ #: templates/pdf/Simple/packing-slip.php:70
681
  msgid "Product"
682
  msgstr "Produkt"
683
 
684
+ #: templates/pdf/Simple/invoice.php:83
685
+ #: templates/pdf/Simple/packing-slip.php:71
686
  msgid "Quantity"
687
  msgstr "Ilość"
688
 
689
+ #: templates/pdf/Simple/invoice.php:84
690
  msgid "Price"
691
  msgstr "Cena"
692
 
693
+ #: templates/pdf/Simple/invoice.php:91
694
+ #: templates/pdf/Simple/packing-slip.php:78
695
  msgid "Description"
696
  msgstr "Opis"
697
 
698
+ #: templates/pdf/Simple/invoice.php:96
699
+ #: templates/pdf/Simple/packing-slip.php:83
700
  msgid "SKU"
701
  msgstr "Kod"
702
 
703
+ #: templates/pdf/Simple/invoice.php:97
704
+ #: templates/pdf/Simple/packing-slip.php:84
705
  msgid "SKU:"
706
  msgstr "Kod:"
707
 
708
+ #: templates/pdf/Simple/invoice.php:98
709
+ #: templates/pdf/Simple/packing-slip.php:85
710
  msgid "Weight:"
711
  msgstr "Waga:"
712
 
713
+ #: templates/pdf/Simple/invoice.php:112
714
+ #: templates/pdf/Simple/packing-slip.php:99
715
  msgid "Customer Notes"
716
  msgstr "Notatki dla klienta"
717
 
718
+ #: templates/pdf/Simple/packing-slip.php:29
719
+ msgid "Shipping Address:"
720
+ msgstr "Adres do wysyłki:"
 
 
 
721
 
722
+ #: templates/pdf/Simple/packing-slip.php:56
723
+ msgid "Shipping Method:"
724
+ msgstr "Rodzaj wysyłki:"
 
725
 
726
+ #~ msgid "Number to display on invoice"
727
+ #~ msgstr "Numer wyświetlany na fakturze"
 
728
 
729
+ #~ msgid ""
730
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
731
+ #~ "the WooCommerce order number"
732
+ #~ msgstr ""
733
+ #~ "Jeśli używasz WooCommerce Sequential Order Numbers plugin, wybierz numer "
734
+ #~ "zamówienia WooCommerce"
735
 
736
+ #~ msgid "Date to display on invoice"
737
+ #~ msgstr "Data do wyświetlenia na fakturze"
 
 
 
 
 
738
 
739
+ #~ msgid "Order date"
740
+ #~ msgstr "Data zamówienia"
 
741
 
742
+ #~ msgid "PDF invoice"
743
+ #~ msgstr "Faktura PDF"
 
 
 
 
 
 
 
 
 
744
 
745
  #~ msgid "..."
746
  #~ msgstr "..."
languages/wpo_wcpdf-sl_SI.mo CHANGED
Binary file
languages/wpo_wcpdf-sl_SI.po CHANGED
@@ -2,14 +2,14 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "POT-Creation-Date: 2014-11-06 14:51+0100\n"
5
- "PO-Revision-Date: 2014-11-12 22:54+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.10\n"
12
- "X-Poedit-Basepath: ../\n"
13
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
14
  "%100==4 ? 2 : 3);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -306,8 +306,7 @@ msgstr "Ustvari PDF"
306
  msgid "PDF Invoice Number (unformatted!)"
307
  msgstr "PDF številka računa (neformatirana)"
308
 
309
- #: includes/class-wcpdf-writepanels.php:235
310
- #: templates/pdf/Simple/invoice.php:36
311
  msgid "Invoice Date:"
312
  msgstr "Datum računa:"
313
 
@@ -430,13 +429,11 @@ msgstr "Spremnica"
430
  msgid "Invoice Number:"
431
  msgstr "Številka računa:"
432
 
433
- #: templates/pdf/Simple/invoice.php:39
434
- #: templates/pdf/Simple/packing-slip.php:33
435
  msgid "Order Number:"
436
  msgstr "Naročilo:"
437
 
438
- #: templates/pdf/Simple/invoice.php:41
439
- #: templates/pdf/Simple/packing-slip.php:31
440
  msgid "Order Date:"
441
  msgstr "Datum naročila:"
442
 
@@ -444,13 +441,11 @@ msgstr "Datum naročila:"
444
  msgid "Payment Method:"
445
  msgstr "Način plačila:"
446
 
447
- #: templates/pdf/Simple/invoice.php:58
448
- #: templates/pdf/Simple/packing-slip.php:48
449
  msgid "Product"
450
- msgstr "Aranžma"
451
 
452
- #: templates/pdf/Simple/invoice.php:59
453
- #: templates/pdf/Simple/packing-slip.php:49
454
  msgid "Quantity"
455
  msgstr "Količina"
456
 
@@ -466,13 +461,11 @@ msgstr "Opis"
466
  msgid "SKU"
467
  msgstr "SKU:"
468
 
469
- #: templates/pdf/Simple/invoice.php:70
470
- #: templates/pdf/Simple/packing-slip.php:57
471
  msgid "SKU:"
472
  msgstr "SKU:"
473
 
474
- #: templates/pdf/Simple/invoice.php:71
475
- #: templates/pdf/Simple/packing-slip.php:58
476
  msgid "Weight:"
477
  msgstr "Teža:"
478
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "POT-Creation-Date: 2014-11-06 14:51+0100\n"
5
+ "PO-Revision-Date: 2015-10-27 11:15+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.8.5\n"
12
+ "X-Poedit-Basepath: ..\n"
13
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
14
  "%100==4 ? 2 : 3);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
306
  msgid "PDF Invoice Number (unformatted!)"
307
  msgstr "PDF številka računa (neformatirana)"
308
 
309
+ #: includes/class-wcpdf-writepanels.php:235 templates/pdf/Simple/invoice.php:36
 
310
  msgid "Invoice Date:"
311
  msgstr "Datum računa:"
312
 
429
  msgid "Invoice Number:"
430
  msgstr "Številka računa:"
431
 
432
+ #: templates/pdf/Simple/invoice.php:39 templates/pdf/Simple/packing-slip.php:33
 
433
  msgid "Order Number:"
434
  msgstr "Naročilo:"
435
 
436
+ #: templates/pdf/Simple/invoice.php:41 templates/pdf/Simple/packing-slip.php:31
 
437
  msgid "Order Date:"
438
  msgstr "Datum naročila:"
439
 
441
  msgid "Payment Method:"
442
  msgstr "Način plačila:"
443
 
444
+ #: templates/pdf/Simple/invoice.php:58 templates/pdf/Simple/packing-slip.php:48
 
445
  msgid "Product"
446
+ msgstr "Izdelek"
447
 
448
+ #: templates/pdf/Simple/invoice.php:59 templates/pdf/Simple/packing-slip.php:49
 
449
  msgid "Quantity"
450
  msgstr "Količina"
451
 
461
  msgid "SKU"
462
  msgstr "SKU:"
463
 
464
+ #: templates/pdf/Simple/invoice.php:70 templates/pdf/Simple/packing-slip.php:57
 
465
  msgid "SKU:"
466
  msgstr "SKU:"
467
 
468
+ #: templates/pdf/Simple/invoice.php:71 templates/pdf/Simple/packing-slip.php:58
 
469
  msgid "Weight:"
470
  msgstr "Teža:"
471
 
languages/wpo_wcpdf.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
5
- "POT-Creation-Date: 2015-05-28 16:09+0100\n"
6
  "PO-Revision-Date: 2015-04-29 08:58+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
@@ -10,88 +10,88 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8\n"
14
- "X-Poedit-Basepath: ../\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: includes/class-wcpdf-export.php:338 includes/class-wcpdf-export.php:348
21
- #: includes/class-wcpdf-export.php:359 includes/class-wcpdf-export.php:367
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr ""
24
 
25
- #: includes/class-wcpdf-export.php:343
26
  msgid "Some of the export parameters are missing."
27
  msgstr ""
28
 
29
- #: includes/class-wcpdf-export.php:424
30
  msgid "invoice"
31
  msgid_plural "invoices"
32
  msgstr[0] ""
33
  msgstr[1] ""
34
 
35
- #: includes/class-wcpdf-export.php:428
36
  msgid "packing-slip"
37
  msgid_plural "packing-slips"
38
  msgstr[0] ""
39
  msgstr[1] ""
40
 
41
- #: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
42
- #: includes/class-wcpdf-writepanels.php:31
43
  msgid "PDF Invoices"
44
  msgstr ""
45
 
46
- #: includes/class-wcpdf-settings.php:80
47
  msgid "Settings"
48
  msgstr ""
49
 
50
- #: includes/class-wcpdf-settings.php:102
51
  msgid "General"
52
  msgstr ""
53
 
54
- #: includes/class-wcpdf-settings.php:103
55
  msgid "Template"
56
  msgstr ""
57
 
58
- #: includes/class-wcpdf-settings.php:108
59
  msgid "Status"
60
  msgstr ""
61
 
62
- #: includes/class-wcpdf-settings.php:120
63
  msgid "WooCommerce PDF Invoices"
64
  msgstr ""
65
 
66
- #: includes/class-wcpdf-settings.php:189
67
  msgid "General settings"
68
  msgstr ""
69
 
70
- #: includes/class-wcpdf-settings.php:196
71
  msgid "How do you want to view the PDF?"
72
  msgstr ""
73
 
74
- #: includes/class-wcpdf-settings.php:204
75
  msgid "Download the PDF"
76
  msgstr ""
77
 
78
- #: includes/class-wcpdf-settings.php:205
79
  msgid "Open the PDF in a new browser tab/window"
80
  msgstr ""
81
 
82
- #: includes/class-wcpdf-settings.php:214
83
  msgid "Admin New Order email"
84
  msgstr ""
85
 
86
- #: includes/class-wcpdf-settings.php:215
87
  msgid "Customer Processing Order email"
88
  msgstr ""
89
 
90
- #: includes/class-wcpdf-settings.php:216
91
  msgid "Customer Completed Order email"
92
  msgstr ""
93
 
94
- #: includes/class-wcpdf-settings.php:217
95
  msgid "Customer Invoice email"
96
  msgstr ""
97
 
@@ -137,103 +137,107 @@ msgstr ""
137
  msgid "Always"
138
  msgstr ""
139
 
140
- #: includes/class-wcpdf-settings.php:323
 
 
 
 
141
  msgid "Enable invoice number column in the orders list"
142
  msgstr ""
143
 
144
- #: includes/class-wcpdf-settings.php:361
145
  msgid "PDF Template settings"
146
  msgstr ""
147
 
148
- #: includes/class-wcpdf-settings.php:373
149
  msgid "Choose a template"
150
  msgstr ""
151
 
152
- #: includes/class-wcpdf-settings.php:381
153
  #, php-format
154
  msgid ""
155
  "Want to use your own template? Copy all the files from <code>%s</code> to "
156
  "your (child) theme in <code>%s</code> to customize them"
157
  msgstr ""
158
 
159
- #: includes/class-wcpdf-settings.php:387
160
  msgid "Paper size"
161
  msgstr ""
162
 
163
- #: includes/class-wcpdf-settings.php:395
164
  msgid "A4"
165
  msgstr ""
166
 
167
- #: includes/class-wcpdf-settings.php:396
168
  msgid "Letter"
169
  msgstr ""
170
 
171
- #: includes/class-wcpdf-settings.php:403
172
  msgid "Shop header/logo"
173
  msgstr ""
174
 
175
- #: includes/class-wcpdf-settings.php:410
176
  msgid "Select or upload your invoice header/logo"
177
  msgstr ""
178
 
179
- #: includes/class-wcpdf-settings.php:411
180
  msgid "Set image"
181
  msgstr ""
182
 
183
- #: includes/class-wcpdf-settings.php:412
184
  msgid "Remove image"
185
  msgstr ""
186
 
187
- #: includes/class-wcpdf-settings.php:419
188
  msgid "Shop Name"
189
  msgstr ""
190
 
191
- #: includes/class-wcpdf-settings.php:432
192
  msgid "Shop Address"
193
  msgstr ""
194
 
195
- #: includes/class-wcpdf-settings.php:447
196
  msgid "Footer: terms & conditions, policies, etc."
197
  msgstr ""
198
 
199
- #: includes/class-wcpdf-settings.php:463
200
- #: includes/class-wcpdf-writepanels.php:273 templates/pdf/Simple/invoice.php:9
201
  #: templates/pdf/Simple/invoice.php:21
202
  #: woocommerce-pdf-invoices-packingslips.php:220
203
  msgid "Invoice"
204
  msgstr ""
205
 
206
- #: includes/class-wcpdf-settings.php:470
207
  msgid "Display shipping address"
208
  msgstr ""
209
 
210
- #: includes/class-wcpdf-settings.php:477
211
  msgid ""
212
  "Display shipping address on invoice (in addition to the default billing "
213
  "address) if different from billing address"
214
  msgstr ""
215
 
216
- #: includes/class-wcpdf-settings.php:483 includes/class-wcpdf-settings.php:598
217
  msgid "Display email address"
218
  msgstr ""
219
 
220
- #: includes/class-wcpdf-settings.php:495 includes/class-wcpdf-settings.php:610
221
  msgid "Display phone number"
222
  msgstr ""
223
 
224
- #: includes/class-wcpdf-settings.php:507
225
  msgid "Display invoice date"
226
  msgstr ""
227
 
228
- #: includes/class-wcpdf-settings.php:520
229
  msgid "Display built-in sequential invoice number"
230
  msgstr ""
231
 
232
- #: includes/class-wcpdf-settings.php:533
233
  msgid "Next invoice number (without prefix/suffix etc.)"
234
  msgstr ""
235
 
236
- #: includes/class-wcpdf-settings.php:541
237
  msgid ""
238
  "This is the number that will be used on the next invoice that is created. By "
239
  "default, numbering starts from the WooCommerce Order Number of the first "
@@ -242,178 +246,181 @@ msgid ""
242
  "this could create double invoice numbers!"
243
  msgstr ""
244
 
245
- #: includes/class-wcpdf-settings.php:547
246
  msgid "Invoice number format"
247
  msgstr ""
248
 
249
- #: includes/class-wcpdf-settings.php:556
250
  msgid "Prefix"
251
  msgstr ""
252
 
253
- #: includes/class-wcpdf-settings.php:558
254
  msgid ""
255
  "to use the order year and/or month, use [order_year] or [order_month] "
256
  "respectively"
257
  msgstr ""
258
 
259
- #: includes/class-wcpdf-settings.php:561
260
  msgid "Suffix"
261
  msgstr ""
262
 
263
- #: includes/class-wcpdf-settings.php:566
264
  msgid "Padding"
265
  msgstr ""
266
 
267
- #: includes/class-wcpdf-settings.php:568
268
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
269
  msgstr ""
270
 
271
- #: includes/class-wcpdf-settings.php:571
272
  msgid ""
273
  "note: if you have already created a custom invoice number format with a "
274
  "filter, the above settings will be ignored"
275
  msgstr ""
276
 
277
- #: includes/class-wcpdf-settings.php:578
 
 
 
 
278
  #: templates/pdf/Simple/packing-slip.php:9
279
  #: templates/pdf/Simple/packing-slip.php:21
280
  #: woocommerce-pdf-invoices-packingslips.php:223
281
  msgid "Packing Slip"
282
  msgstr ""
283
 
284
- #: includes/class-wcpdf-settings.php:585
285
  msgid "Display billing address"
286
  msgstr ""
287
 
288
- #: includes/class-wcpdf-settings.php:592
289
  msgid ""
290
  "Display billing address on packing slip (in addition to the default shipping "
291
  "address) if different from shipping address"
292
  msgstr ""
293
 
294
- #: includes/class-wcpdf-settings.php:623
295
  msgid "Extra template fields"
296
  msgstr ""
297
 
298
- #: includes/class-wcpdf-settings.php:630
299
  msgid "Extra field 1"
300
  msgstr ""
301
 
302
- #: includes/class-wcpdf-settings.php:639
303
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
304
  msgstr ""
305
 
306
- #: includes/class-wcpdf-settings.php:645
307
  msgid "Extra field 2"
308
  msgstr ""
309
 
310
- #: includes/class-wcpdf-settings.php:654
311
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
312
  msgstr ""
313
 
314
- #: includes/class-wcpdf-settings.php:660
315
  msgid "Extra field 3"
316
  msgstr ""
317
 
318
- #: includes/class-wcpdf-settings.php:669
319
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
320
  msgstr ""
321
 
322
- #: includes/class-wcpdf-settings.php:711
323
  msgid "Debug settings"
324
  msgstr ""
325
 
326
- #: includes/class-wcpdf-settings.php:718
327
  msgid "Enable debug output"
328
  msgstr ""
329
 
330
- #: includes/class-wcpdf-settings.php:725
331
  msgid ""
332
  "Enable this option to output plugin errors if you're getting a blank page or "
333
  "other PDF generation issues"
334
  msgstr ""
335
 
336
- #: includes/class-wcpdf-settings.php:731
337
  msgid "Output to HTML"
338
  msgstr ""
339
 
340
- #: includes/class-wcpdf-settings.php:738
341
  msgid ""
342
  "Send the template output as HTML to the browser instead of creating a PDF."
343
  msgstr ""
344
 
345
- #: includes/class-wcpdf-settings.php:744
346
  msgid "Use old tmp folder"
347
  msgstr ""
348
 
349
- #: includes/class-wcpdf-settings.php:751
350
  msgid ""
351
  "Before version 1.5 of PDF Invoices, temporary files were stored in the "
352
  "plugin folder. This setting is only intended for backwards compatibility, "
353
  "not recommended on new installs!"
354
  msgstr ""
355
 
356
- #: includes/class-wcpdf-settings.php:1091
357
  msgid "Image resolution"
358
  msgstr ""
359
 
360
- #: includes/class-wcpdf-settings.php:1207
361
  msgid ""
362
  "<b>Warning!</b> The settings below are meant for debugging/development only. "
363
  "Do not use them on a live website!"
364
  msgstr ""
365
 
366
- #: includes/class-wcpdf-settings.php:1216
367
  msgid ""
368
  "These are used for the (optional) footer columns in the <em>Modern "
369
  "(Premium)</em> template, but can also be used for other elements in your "
370
  "custom template"
371
  msgstr ""
372
 
373
- #: includes/class-wcpdf-writepanels.php:32
374
  msgid "PDF Packing Slips"
375
  msgstr ""
376
 
377
- #: includes/class-wcpdf-writepanels.php:113
378
- #: includes/class-wcpdf-writepanels.php:240
379
  msgid "PDF Invoice"
380
  msgstr ""
381
 
382
- #: includes/class-wcpdf-writepanels.php:118
383
- #: includes/class-wcpdf-writepanels.php:245
384
  msgid "PDF Packing Slip"
385
  msgstr ""
386
 
387
- #: includes/class-wcpdf-writepanels.php:145
388
  msgid "Invoice Number"
389
  msgstr ""
390
 
391
- #: includes/class-wcpdf-writepanels.php:198
392
  msgid "Download invoice (PDF)"
393
  msgstr ""
394
 
395
- #: includes/class-wcpdf-writepanels.php:212
396
  msgid "Create PDF"
397
  msgstr ""
398
 
399
- #: includes/class-wcpdf-writepanels.php:222
400
  msgid "PDF Invoice data"
401
  msgstr ""
402
 
403
- #: includes/class-wcpdf-writepanels.php:275
404
  msgid "Invoice Number (unformatted!)"
405
  msgstr ""
406
 
407
- #: includes/class-wcpdf-writepanels.php:283
408
- #: templates/pdf/Simple/invoice.php:55
409
  msgid "Invoice Date:"
410
  msgstr ""
411
 
412
- #: includes/class-wcpdf-writepanels.php:285
413
  msgid "h"
414
  msgstr ""
415
 
416
- #: includes/class-wcpdf-writepanels.php:285
417
  msgid "m"
418
  msgstr ""
419
 
@@ -528,8 +535,7 @@ msgstr ""
528
  msgid "For custom templates, contact us at %s."
529
  msgstr ""
530
 
531
- #: templates/pdf/Simple/invoice.php:29
532
- #: templates/pdf/Simple/packing-slip.php:40
533
  msgid "Billing Address:"
534
  msgstr ""
535
 
@@ -541,13 +547,11 @@ msgstr ""
541
  msgid "Invoice Number:"
542
  msgstr ""
543
 
544
- #: templates/pdf/Simple/invoice.php:60
545
- #: templates/pdf/Simple/packing-slip.php:48
546
  msgid "Order Number:"
547
  msgstr ""
548
 
549
- #: templates/pdf/Simple/invoice.php:64
550
- #: templates/pdf/Simple/packing-slip.php:52
551
  msgid "Order Date:"
552
  msgstr ""
553
 
@@ -555,13 +559,11 @@ msgstr ""
555
  msgid "Payment Method:"
556
  msgstr ""
557
 
558
- #: templates/pdf/Simple/invoice.php:82
559
- #: templates/pdf/Simple/packing-slip.php:70
560
  msgid "Product"
561
  msgstr ""
562
 
563
- #: templates/pdf/Simple/invoice.php:83
564
- #: templates/pdf/Simple/packing-slip.php:71
565
  msgid "Quantity"
566
  msgstr ""
567
 
@@ -569,23 +571,19 @@ msgstr ""
569
  msgid "Price"
570
  msgstr ""
571
 
572
- #: templates/pdf/Simple/invoice.php:91
573
- #: templates/pdf/Simple/packing-slip.php:78
574
  msgid "Description"
575
  msgstr ""
576
 
577
- #: templates/pdf/Simple/invoice.php:96
578
- #: templates/pdf/Simple/packing-slip.php:83
579
  msgid "SKU"
580
  msgstr ""
581
 
582
- #: templates/pdf/Simple/invoice.php:97
583
- #: templates/pdf/Simple/packing-slip.php:84
584
  msgid "SKU:"
585
  msgstr ""
586
 
587
- #: templates/pdf/Simple/invoice.php:98
588
- #: templates/pdf/Simple/packing-slip.php:85
589
  msgid "Weight:"
590
  msgstr ""
591
 
@@ -614,38 +612,43 @@ msgstr ""
614
  msgid "N/A"
615
  msgstr ""
616
 
617
- #: woocommerce-pdf-invoices-packingslips.php:517
618
  msgid "Payment method"
619
  msgstr ""
620
 
621
- #: woocommerce-pdf-invoices-packingslips.php:528
622
  msgid "Shipping method"
623
  msgstr ""
624
 
625
- #: woocommerce-pdf-invoices-packingslips.php:681
 
 
 
 
 
626
  msgid "Subtotal"
627
  msgstr ""
628
 
629
- #: woocommerce-pdf-invoices-packingslips.php:703
630
  msgid "Shipping"
631
  msgstr ""
632
 
633
- #: woocommerce-pdf-invoices-packingslips.php:766
634
  msgid "Discount"
635
  msgstr ""
636
 
637
- #: woocommerce-pdf-invoices-packingslips.php:806
638
  msgid "VAT"
639
  msgstr ""
640
 
641
- #: woocommerce-pdf-invoices-packingslips.php:807
642
  msgid "Tax rate"
643
  msgstr ""
644
 
645
- #: woocommerce-pdf-invoices-packingslips.php:844
646
  msgid "Total ex. VAT"
647
  msgstr ""
648
 
649
- #: woocommerce-pdf-invoices-packingslips.php:847
650
  msgid "Total"
651
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
5
+ "POT-Creation-Date: 2015-12-01 17:03+0100\n"
6
  "PO-Revision-Date: 2015-04-29 08:58+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
+ "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: includes/class-wcpdf-export.php:372 includes/class-wcpdf-export.php:386
21
+ #: includes/class-wcpdf-export.php:393 includes/class-wcpdf-export.php:401
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr ""
24
 
25
+ #: includes/class-wcpdf-export.php:377
26
  msgid "Some of the export parameters are missing."
27
  msgstr ""
28
 
29
+ #: includes/class-wcpdf-export.php:458
30
  msgid "invoice"
31
  msgid_plural "invoices"
32
  msgstr[0] ""
33
  msgstr[1] ""
34
 
35
+ #: includes/class-wcpdf-export.php:462
36
  msgid "packing-slip"
37
  msgid_plural "packing-slips"
38
  msgstr[0] ""
39
  msgstr[1] ""
40
 
41
+ #: includes/class-wcpdf-settings.php:34 includes/class-wcpdf-settings.php:35
42
+ #: includes/class-wcpdf-writepanels.php:32
43
  msgid "PDF Invoices"
44
  msgstr ""
45
 
46
+ #: includes/class-wcpdf-settings.php:76
47
  msgid "Settings"
48
  msgstr ""
49
 
50
+ #: includes/class-wcpdf-settings.php:98
51
  msgid "General"
52
  msgstr ""
53
 
54
+ #: includes/class-wcpdf-settings.php:99
55
  msgid "Template"
56
  msgstr ""
57
 
58
+ #: includes/class-wcpdf-settings.php:104
59
  msgid "Status"
60
  msgstr ""
61
 
62
+ #: includes/class-wcpdf-settings.php:116
63
  msgid "WooCommerce PDF Invoices"
64
  msgstr ""
65
 
66
+ #: includes/class-wcpdf-settings.php:185
67
  msgid "General settings"
68
  msgstr ""
69
 
70
+ #: includes/class-wcpdf-settings.php:192
71
  msgid "How do you want to view the PDF?"
72
  msgstr ""
73
 
74
+ #: includes/class-wcpdf-settings.php:200
75
  msgid "Download the PDF"
76
  msgstr ""
77
 
78
+ #: includes/class-wcpdf-settings.php:201
79
  msgid "Open the PDF in a new browser tab/window"
80
  msgstr ""
81
 
82
+ #: includes/class-wcpdf-settings.php:210
83
  msgid "Admin New Order email"
84
  msgstr ""
85
 
86
+ #: includes/class-wcpdf-settings.php:211
87
  msgid "Customer Processing Order email"
88
  msgstr ""
89
 
90
+ #: includes/class-wcpdf-settings.php:212
91
  msgid "Customer Completed Order email"
92
  msgstr ""
93
 
94
+ #: includes/class-wcpdf-settings.php:213
95
  msgid "Customer Invoice email"
96
  msgstr ""
97
 
137
  msgid "Always"
138
  msgstr ""
139
 
140
+ #: includes/class-wcpdf-settings.php:309
141
+ msgid "Never"
142
+ msgstr ""
143
+
144
+ #: includes/class-wcpdf-settings.php:324
145
  msgid "Enable invoice number column in the orders list"
146
  msgstr ""
147
 
148
+ #: includes/class-wcpdf-settings.php:362
149
  msgid "PDF Template settings"
150
  msgstr ""
151
 
152
+ #: includes/class-wcpdf-settings.php:374
153
  msgid "Choose a template"
154
  msgstr ""
155
 
156
+ #: includes/class-wcpdf-settings.php:382
157
  #, php-format
158
  msgid ""
159
  "Want to use your own template? Copy all the files from <code>%s</code> to "
160
  "your (child) theme in <code>%s</code> to customize them"
161
  msgstr ""
162
 
163
+ #: includes/class-wcpdf-settings.php:388
164
  msgid "Paper size"
165
  msgstr ""
166
 
167
+ #: includes/class-wcpdf-settings.php:396
168
  msgid "A4"
169
  msgstr ""
170
 
171
+ #: includes/class-wcpdf-settings.php:397
172
  msgid "Letter"
173
  msgstr ""
174
 
175
+ #: includes/class-wcpdf-settings.php:404
176
  msgid "Shop header/logo"
177
  msgstr ""
178
 
179
+ #: includes/class-wcpdf-settings.php:411
180
  msgid "Select or upload your invoice header/logo"
181
  msgstr ""
182
 
183
+ #: includes/class-wcpdf-settings.php:412
184
  msgid "Set image"
185
  msgstr ""
186
 
187
+ #: includes/class-wcpdf-settings.php:413
188
  msgid "Remove image"
189
  msgstr ""
190
 
191
+ #: includes/class-wcpdf-settings.php:420
192
  msgid "Shop Name"
193
  msgstr ""
194
 
195
+ #: includes/class-wcpdf-settings.php:434
196
  msgid "Shop Address"
197
  msgstr ""
198
 
199
+ #: includes/class-wcpdf-settings.php:450
200
  msgid "Footer: terms & conditions, policies, etc."
201
  msgstr ""
202
 
203
+ #: includes/class-wcpdf-settings.php:467
204
+ #: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
205
  #: templates/pdf/Simple/invoice.php:21
206
  #: woocommerce-pdf-invoices-packingslips.php:220
207
  msgid "Invoice"
208
  msgstr ""
209
 
210
+ #: includes/class-wcpdf-settings.php:474
211
  msgid "Display shipping address"
212
  msgstr ""
213
 
214
+ #: includes/class-wcpdf-settings.php:481
215
  msgid ""
216
  "Display shipping address on invoice (in addition to the default billing "
217
  "address) if different from billing address"
218
  msgstr ""
219
 
220
+ #: includes/class-wcpdf-settings.php:487 includes/class-wcpdf-settings.php:614
221
  msgid "Display email address"
222
  msgstr ""
223
 
224
+ #: includes/class-wcpdf-settings.php:499 includes/class-wcpdf-settings.php:626
225
  msgid "Display phone number"
226
  msgstr ""
227
 
228
+ #: includes/class-wcpdf-settings.php:511
229
  msgid "Display invoice date"
230
  msgstr ""
231
 
232
+ #: includes/class-wcpdf-settings.php:524
233
  msgid "Display built-in sequential invoice number"
234
  msgstr ""
235
 
236
+ #: includes/class-wcpdf-settings.php:537
237
  msgid "Next invoice number (without prefix/suffix etc.)"
238
  msgstr ""
239
 
240
+ #: includes/class-wcpdf-settings.php:545
241
  msgid ""
242
  "This is the number that will be used on the next invoice that is created. By "
243
  "default, numbering starts from the WooCommerce Order Number of the first "
246
  "this could create double invoice numbers!"
247
  msgstr ""
248
 
249
+ #: includes/class-wcpdf-settings.php:551
250
  msgid "Invoice number format"
251
  msgstr ""
252
 
253
+ #: includes/class-wcpdf-settings.php:560
254
  msgid "Prefix"
255
  msgstr ""
256
 
257
+ #: includes/class-wcpdf-settings.php:562
258
  msgid ""
259
  "to use the order year and/or month, use [order_year] or [order_month] "
260
  "respectively"
261
  msgstr ""
262
 
263
+ #: includes/class-wcpdf-settings.php:565
264
  msgid "Suffix"
265
  msgstr ""
266
 
267
+ #: includes/class-wcpdf-settings.php:570
268
  msgid "Padding"
269
  msgstr ""
270
 
271
+ #: includes/class-wcpdf-settings.php:572
272
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
273
  msgstr ""
274
 
275
+ #: includes/class-wcpdf-settings.php:575
276
  msgid ""
277
  "note: if you have already created a custom invoice number format with a "
278
  "filter, the above settings will be ignored"
279
  msgstr ""
280
 
281
+ #: includes/class-wcpdf-settings.php:581
282
+ msgid "Reset invoice number yearly"
283
+ msgstr ""
284
+
285
+ #: includes/class-wcpdf-settings.php:594
286
  #: templates/pdf/Simple/packing-slip.php:9
287
  #: templates/pdf/Simple/packing-slip.php:21
288
  #: woocommerce-pdf-invoices-packingslips.php:223
289
  msgid "Packing Slip"
290
  msgstr ""
291
 
292
+ #: includes/class-wcpdf-settings.php:601
293
  msgid "Display billing address"
294
  msgstr ""
295
 
296
+ #: includes/class-wcpdf-settings.php:608
297
  msgid ""
298
  "Display billing address on packing slip (in addition to the default shipping "
299
  "address) if different from shipping address"
300
  msgstr ""
301
 
302
+ #: includes/class-wcpdf-settings.php:639
303
  msgid "Extra template fields"
304
  msgstr ""
305
 
306
+ #: includes/class-wcpdf-settings.php:646
307
  msgid "Extra field 1"
308
  msgstr ""
309
 
310
+ #: includes/class-wcpdf-settings.php:655
311
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
312
  msgstr ""
313
 
314
+ #: includes/class-wcpdf-settings.php:662
315
  msgid "Extra field 2"
316
  msgstr ""
317
 
318
+ #: includes/class-wcpdf-settings.php:671
319
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
320
  msgstr ""
321
 
322
+ #: includes/class-wcpdf-settings.php:678
323
  msgid "Extra field 3"
324
  msgstr ""
325
 
326
+ #: includes/class-wcpdf-settings.php:687
327
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
328
  msgstr ""
329
 
330
+ #: includes/class-wcpdf-settings.php:730
331
  msgid "Debug settings"
332
  msgstr ""
333
 
334
+ #: includes/class-wcpdf-settings.php:737
335
  msgid "Enable debug output"
336
  msgstr ""
337
 
338
+ #: includes/class-wcpdf-settings.php:744
339
  msgid ""
340
  "Enable this option to output plugin errors if you're getting a blank page or "
341
  "other PDF generation issues"
342
  msgstr ""
343
 
344
+ #: includes/class-wcpdf-settings.php:750
345
  msgid "Output to HTML"
346
  msgstr ""
347
 
348
+ #: includes/class-wcpdf-settings.php:757
349
  msgid ""
350
  "Send the template output as HTML to the browser instead of creating a PDF."
351
  msgstr ""
352
 
353
+ #: includes/class-wcpdf-settings.php:763
354
  msgid "Use old tmp folder"
355
  msgstr ""
356
 
357
+ #: includes/class-wcpdf-settings.php:770
358
  msgid ""
359
  "Before version 1.5 of PDF Invoices, temporary files were stored in the "
360
  "plugin folder. This setting is only intended for backwards compatibility, "
361
  "not recommended on new installs!"
362
  msgstr ""
363
 
364
+ #: includes/class-wcpdf-settings.php:1143
365
  msgid "Image resolution"
366
  msgstr ""
367
 
368
+ #: includes/class-wcpdf-settings.php:1259
369
  msgid ""
370
  "<b>Warning!</b> The settings below are meant for debugging/development only. "
371
  "Do not use them on a live website!"
372
  msgstr ""
373
 
374
+ #: includes/class-wcpdf-settings.php:1268
375
  msgid ""
376
  "These are used for the (optional) footer columns in the <em>Modern "
377
  "(Premium)</em> template, but can also be used for other elements in your "
378
  "custom template"
379
  msgstr ""
380
 
381
+ #: includes/class-wcpdf-writepanels.php:33
382
  msgid "PDF Packing Slips"
383
  msgstr ""
384
 
385
+ #: includes/class-wcpdf-writepanels.php:119
386
+ #: includes/class-wcpdf-writepanels.php:252
387
  msgid "PDF Invoice"
388
  msgstr ""
389
 
390
+ #: includes/class-wcpdf-writepanels.php:124
391
+ #: includes/class-wcpdf-writepanels.php:257
392
  msgid "PDF Packing Slip"
393
  msgstr ""
394
 
395
+ #: includes/class-wcpdf-writepanels.php:151
396
  msgid "Invoice Number"
397
  msgstr ""
398
 
399
+ #: includes/class-wcpdf-writepanels.php:210
400
  msgid "Download invoice (PDF)"
401
  msgstr ""
402
 
403
+ #: includes/class-wcpdf-writepanels.php:224
404
  msgid "Create PDF"
405
  msgstr ""
406
 
407
+ #: includes/class-wcpdf-writepanels.php:234
408
  msgid "PDF Invoice data"
409
  msgstr ""
410
 
411
+ #: includes/class-wcpdf-writepanels.php:287
412
  msgid "Invoice Number (unformatted!)"
413
  msgstr ""
414
 
415
+ #: includes/class-wcpdf-writepanels.php:295 templates/pdf/Simple/invoice.php:55
 
416
  msgid "Invoice Date:"
417
  msgstr ""
418
 
419
+ #: includes/class-wcpdf-writepanels.php:297
420
  msgid "h"
421
  msgstr ""
422
 
423
+ #: includes/class-wcpdf-writepanels.php:297
424
  msgid "m"
425
  msgstr ""
426
 
535
  msgid "For custom templates, contact us at %s."
536
  msgstr ""
537
 
538
+ #: templates/pdf/Simple/invoice.php:29 templates/pdf/Simple/packing-slip.php:40
 
539
  msgid "Billing Address:"
540
  msgstr ""
541
 
547
  msgid "Invoice Number:"
548
  msgstr ""
549
 
550
+ #: templates/pdf/Simple/invoice.php:60 templates/pdf/Simple/packing-slip.php:48
 
551
  msgid "Order Number:"
552
  msgstr ""
553
 
554
+ #: templates/pdf/Simple/invoice.php:64 templates/pdf/Simple/packing-slip.php:52
 
555
  msgid "Order Date:"
556
  msgstr ""
557
 
559
  msgid "Payment Method:"
560
  msgstr ""
561
 
562
+ #: templates/pdf/Simple/invoice.php:82 templates/pdf/Simple/packing-slip.php:70
 
563
  msgid "Product"
564
  msgstr ""
565
 
566
+ #: templates/pdf/Simple/invoice.php:83 templates/pdf/Simple/packing-slip.php:71
 
567
  msgid "Quantity"
568
  msgstr ""
569
 
571
  msgid "Price"
572
  msgstr ""
573
 
574
+ #: templates/pdf/Simple/invoice.php:91 templates/pdf/Simple/packing-slip.php:78
 
575
  msgid "Description"
576
  msgstr ""
577
 
578
+ #: templates/pdf/Simple/invoice.php:96 templates/pdf/Simple/packing-slip.php:83
 
579
  msgid "SKU"
580
  msgstr ""
581
 
582
+ #: templates/pdf/Simple/invoice.php:97 templates/pdf/Simple/packing-slip.php:84
 
583
  msgid "SKU:"
584
  msgstr ""
585
 
586
+ #: templates/pdf/Simple/invoice.php:98 templates/pdf/Simple/packing-slip.php:85
 
587
  msgid "Weight:"
588
  msgstr ""
589
 
612
  msgid "N/A"
613
  msgstr ""
614
 
615
+ #: woocommerce-pdf-invoices-packingslips.php:523
616
  msgid "Payment method"
617
  msgstr ""
618
 
619
+ #: woocommerce-pdf-invoices-packingslips.php:534
620
  msgid "Shipping method"
621
  msgstr ""
622
 
623
+ #: woocommerce-pdf-invoices-packingslips.php:693
624
+ #, php-format
625
+ msgid "(Includes %s)"
626
+ msgstr ""
627
+
628
+ #: woocommerce-pdf-invoices-packingslips.php:714
629
  msgid "Subtotal"
630
  msgstr ""
631
 
632
+ #: woocommerce-pdf-invoices-packingslips.php:736
633
  msgid "Shipping"
634
  msgstr ""
635
 
636
+ #: woocommerce-pdf-invoices-packingslips.php:799
637
  msgid "Discount"
638
  msgstr ""
639
 
640
+ #: woocommerce-pdf-invoices-packingslips.php:839
641
  msgid "VAT"
642
  msgstr ""
643
 
644
+ #: woocommerce-pdf-invoices-packingslips.php:840
645
  msgid "Tax rate"
646
  msgstr ""
647
 
648
+ #: woocommerce-pdf-invoices-packingslips.php:877
649
  msgid "Total ex. VAT"
650
  msgstr ""
651
 
652
+ #: woocommerce-pdf-invoices-packingslips.php:880
653
  msgid "Total"
654
  msgstr ""
lib/dompdf/lib/fonts/a32da215612cdbd93b93eb74bcab3b40.ufm CHANGED
@@ -19,7 +19,7 @@ Weight Medium
19
  ItalicAngle 0
20
  IsFixedPitch false
21
  UnderlineThickness 50
22
- UnderlinePosition -75
23
  FontHeightOffset 0
24
  Ascender 1069
25
  Descender -293
19
  ItalicAngle 0
20
  IsFixedPitch false
21
  UnderlineThickness 50
22
+ UnderlinePosition -500
23
  FontHeightOffset 0
24
  Ascender 1069
25
  Descender -293
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: pomegranate
3
  Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
4
  Requires at least: 3.5
5
  Tested up to: 4.3.1
6
- Stable tag: 1.5.24
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -235,6 +235,17 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
235
 
236
  == Changelog ==
237
 
 
 
 
 
 
 
 
 
 
 
 
238
  = 1.5.24 =
239
  * Hotfix: Subscriptions renewal filter arguments
240
 
3
  Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
4
  Requires at least: 3.5
5
  Tested up to: 4.3.1
6
+ Stable tag: 1.5.25
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
235
 
236
  == Changelog ==
237
 
238
+ = 1.5.26 =
239
+ * Feature: Automatically list all emails registered in WooCommerce
240
+ * Feature: Reset invoice number yearly
241
+ * Feature: WooCommerce Chained Products compatibility
242
+ * Feature: WooCommerce Product Bundles visibility settings taken into account in invoice
243
+ * Fix: Disable PDF creation from trashed order_ids
244
+ * Tweak: Alert when no orders selected for bulk export (Props to Dartui!)
245
+ * Tweak: PDF invoice settings always under WooCommerce menu (also for premium users)
246
+ * Tweak: extra $item_id passed in row class filter
247
+ * Translations: Updated Slovenian, Spanish, Dutch & POT file
248
+
249
  = 1.5.24 =
250
  * Hotfix: Subscriptions renewal filter arguments
251
 
templates/pdf/Simple/invoice.php CHANGED
@@ -86,7 +86,7 @@
86
  </thead>
87
  <tbody>
88
  <?php $items = $wpo_wcpdf->get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item_id => $item ) : ?>
89
- <tr class="<?php echo apply_filters( 'wpo_wcpdf_item_row_class', $item_id, $wpo_wcpdf->export->template_type, $wpo_wcpdf->export->order ); ?>">
90
  <td class="product">
91
  <?php $description_label = __( 'Description', 'wpo_wcpdf' ); // registering alternate label translation ?>
92
  <span class="item-name"><?php echo $item['name']; ?></span>
86
  </thead>
87
  <tbody>
88
  <?php $items = $wpo_wcpdf->get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item_id => $item ) : ?>
89
+ <tr class="<?php echo apply_filters( 'wpo_wcpdf_item_row_class', $item_id, $wpo_wcpdf->export->template_type, $wpo_wcpdf->export->order, $item_id ); ?>">
90
  <td class="product">
91
  <?php $description_label = __( 'Description', 'wpo_wcpdf' ); // registering alternate label translation ?>
92
  <span class="item-name"><?php echo $item['name']; ?></span>
templates/pdf/Simple/packing-slip.php CHANGED
@@ -73,7 +73,7 @@
73
  </thead>
74
  <tbody>
75
  <?php $items = $wpo_wcpdf->get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item_id => $item ) : ?>
76
- <tr class="<?php echo apply_filters( 'wpo_wcpdf_item_row_class', $item_id, $wpo_wcpdf->export->template_type, $wpo_wcpdf->export->order ); ?>">
77
  <td class="product">
78
  <?php $description_label = __( 'Description', 'wpo_wcpdf' ); // registering alternate label translation ?>
79
  <span class="item-name"><?php echo $item['name']; ?></span>
73
  </thead>
74
  <tbody>
75
  <?php $items = $wpo_wcpdf->get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item_id => $item ) : ?>
76
+ <tr class="<?php echo apply_filters( 'wpo_wcpdf_item_row_class', $item_id, $wpo_wcpdf->export->template_type, $wpo_wcpdf->export->order, $item_id ); ?>">
77
  <td class="product">
78
  <?php $description_label = __( 'Description', 'wpo_wcpdf' ); // registering alternate label translation ?>
79
  <span class="item-name"><?php echo $item['name']; ?></span>
woocommerce-pdf-invoices-packingslips.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PDF Invoices & Packing Slips
4
  * Plugin URI: http://www.wpovernight.com
5
  * Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
6
- * Version: 1.5.24
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later
@@ -33,7 +33,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
33
  self::$plugin_basename = plugin_basename(__FILE__);
34
  self::$plugin_url = plugin_dir_url(self::$plugin_basename);
35
  self::$plugin_path = trailingslashit(dirname(__FILE__));
36
- self::$version = '1.5.24';
37
 
38
  // load the localisation & classes
39
  add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
@@ -343,7 +343,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
343
  }
344
 
345
  //if we got here, it means the addresses are equal -> doesn't ship to different address!
346
- return false;
347
  }
348
 
349
  /**
3
  * Plugin Name: WooCommerce PDF Invoices & Packing Slips
4
  * Plugin URI: http://www.wpovernight.com
5
  * Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
6
+ * Version: 1.5.26
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later
33
  self::$plugin_basename = plugin_basename(__FILE__);
34
  self::$plugin_url = plugin_dir_url(self::$plugin_basename);
35
  self::$plugin_path = trailingslashit(dirname(__FILE__));
36
+ self::$version = '1.5.26';
37
 
38
  // load the localisation & classes
39
  add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
343
  }
344
 
345
  //if we got here, it means the addresses are equal -> doesn't ship to different address!
346
+ return apply_filters( 'wpo_wcpdf_ships_to_different_address', false, $order_meta );
347
  }
348
 
349
  /**