WooCommerce PDF Invoices & Packing Slips - Version 2.4.3

Version Description

  • Fix: Prevent errors unsetting a non-existing setting
  • Fix: Potential crash on improperly initiated documents
  • Fix: Reversed tax rate calculation arguments
  • Fix: Support tax rate functions for non-line items
  • Fix: comma position on multiple tax rates
  • Fix: Setup wizard styles
  • Translations: Added lv locale for Latvian (keeping lv_LV as fallback)
  • Translations: Updated bundled Czech translations
  • Tested up to WooCommerce 3.9
Download this release

Release Info

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

Code changes from version 2.4.2 to 2.4.3

assets/css/setup-wizard.css CHANGED
@@ -230,42 +230,15 @@
230
  /* Attach to */
231
 
232
  .wpo-setup-input input[type=checkbox] {
233
- -webkit-appearance: none;
234
  background-color: #fdfdfd;
235
  border: 1px solid #cacece;
236
- box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
237
- padding: 14px;
238
  border-radius: 3px;
239
- display: inline-block;
240
- position: relative;
241
- }
242
-
243
- .wpo-setup-input input[type=checkbox]:active, .wpo-setup-input input[type=checkbox]:checked:active {
244
- box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
245
- }
246
-
247
- .wpo-setup-input input[type=checkbox]:checked {
248
- background-color: #fdfdfd;
249
- border: 1px solid #adb8c0;
250
- box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
251
- color: #99a1a7;
252
- }
253
-
254
- .wpo-setup-input input[type=checkbox]:checked:after {
255
- content: '\2714';
256
- font-size: 24px;
257
- position: absolute;
258
- top: 0px;
259
- left: 3px;
260
- color: #3e9b9a;
261
  }
262
 
263
  .wpo-setup-input .checkbox {
264
- font-size:1.2em;
265
- margin-left:50px;
266
- margin-top:-35px;
267
- margin-bottom:-8px;
268
- display:block;
269
  }
270
 
271
  /* Customizer */
230
  /* Attach to */
231
 
232
  .wpo-setup-input input[type=checkbox] {
 
233
  background-color: #fdfdfd;
234
  border: 1px solid #cacece;
 
 
235
  border-radius: 3px;
236
+ vertical-align: text-bottom;
237
+ margin-right: 20px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  }
239
 
240
  .wpo-setup-input .checkbox {
241
+ font-size:1.1em;
 
 
 
 
242
  }
243
 
244
  /* Customizer */
includes/class-wcpdf-documents.php CHANGED
@@ -74,7 +74,7 @@ class Documents {
74
  if ( $filter == 'enabled' ) {
75
  $documents = array();
76
  foreach ($this->documents as $class_name => $document) {
77
- if ($document->is_enabled()) {
78
  $documents[$class_name] = $document;
79
  }
80
  }
@@ -86,8 +86,8 @@ class Documents {
86
  }
87
 
88
  public function get_document( $document_type, $order ) {
89
- foreach ($this->get_documents('all') as $class_name => $document) {
90
- if ($document->get_type() == $document_type) {
91
  return new $class_name( $order );
92
  }
93
  }
74
  if ( $filter == 'enabled' ) {
75
  $documents = array();
76
  foreach ($this->documents as $class_name => $document) {
77
+ if ( is_callable( array( $document, 'is_enabled' ) ) && $document->is_enabled() ) {
78
  $documents[$class_name] = $document;
79
  }
80
  }
86
  }
87
 
88
  public function get_document( $document_type, $order ) {
89
+ foreach ( $this->get_documents('all') as $class_name => $document) {
90
+ if ( $document->get_type() == $document_type && class_exists( $class_name ) ) {
91
  return new $class_name( $order );
92
  }
93
  }
includes/documents/abstract-wcpdf-order-document-methods.php CHANGED
@@ -527,8 +527,8 @@ abstract class Order_Document_Methods extends Order_Document {
527
  $data['line_tax'] = $this->format_price( $item['line_tax'] );
528
  $data['single_line_tax'] = $this->format_price( $item['line_tax'] / max( 1, abs( $item['qty'] ) ) );
529
 
530
- $data['tax_rates'] = $this->get_tax_rate( $item, $this->order, true );
531
- $data['calculated_tax_rates'] = $this->get_tax_rate( $item, $this->order, false );
532
 
533
  // Set the line subtotal (=before discount)
534
  $data['line_subtotal'] = $this->format_price( $item['line_subtotal'] );
@@ -598,20 +598,32 @@ abstract class Order_Document_Methods extends Order_Document {
598
  * @return string $tax_rates imploded list of tax rates
599
  */
600
  public function get_tax_rate( $item, $order, $force_calculation = false ) {
601
- $tax_class = $item['tax_class'];
602
- $line_total = $item['line_total'];
603
- $line_tax = $item['line_tax'];
604
- $line_tax_data = maybe_unserialize( isset( $item['line_tax_data'] ) ? $item['line_tax_data'] : '' );
 
 
 
 
 
 
 
 
 
 
 
 
605
 
606
  // first try the easy wc2.2+ way, using line_tax_data
607
- if ( !empty( $line_tax_data ) && isset($line_tax_data['total']) ) {
608
  $tax_rates = array();
609
 
610
- $line_taxes = $line_tax_data['subtotal'];
611
  foreach ( $line_taxes as $tax_id => $tax ) {
612
  if ( isset($tax) && $tax !== '' ) {
613
  $tax_rate = $this->get_tax_rate_by_id( $tax_id, $order );
614
- if ( $tax_rate !== false && $force_calculation !== false ) {
615
  $tax_rates[] = $tax_rate . ' %';
616
  } else {
617
  $tax_rates[] = $this->calculate_tax_rate( $line_total, $line_tax );
@@ -626,7 +638,7 @@ abstract class Order_Document_Methods extends Order_Document {
626
  }
627
  }
628
 
629
- $tax_rates = implode(' ,', $tax_rates );
630
  return $tax_rates;
631
  }
632
 
527
  $data['line_tax'] = $this->format_price( $item['line_tax'] );
528
  $data['single_line_tax'] = $this->format_price( $item['line_tax'] / max( 1, abs( $item['qty'] ) ) );
529
 
530
+ $data['tax_rates'] = $this->get_tax_rate( $item, $this->order, false );
531
+ $data['calculated_tax_rates'] = $this->get_tax_rate( $item, $this->order, true );
532
 
533
  // Set the line subtotal (=before discount)
534
  $data['line_subtotal'] = $this->format_price( $item['line_subtotal'] );
598
  * @return string $tax_rates imploded list of tax rates
599
  */
600
  public function get_tax_rate( $item, $order, $force_calculation = false ) {
601
+ if ( version_compare( WOOCOMMERCE_VERSION, '3.0', '>=' ) ) {
602
+ $tax_data_container = ( $item['type'] == 'line_item' ) ? 'line_tax_data' : 'taxes';
603
+ $tax_data_key = ( $item['type'] == 'line_item' ) ? 'subtotal' : 'total';
604
+ $line_total_key = ( $item['type'] == 'line_item' ) ? 'line_total' : 'total';
605
+ $line_tax_key = ( $item['type'] == 'shipping' ) ? 'total_tax' : 'line_tax';
606
+
607
+ $tax_class = isset($item['tax_class']) ? $item['tax_class'] : '';
608
+ $line_tax = $item[$line_tax_key];
609
+ $line_total = $item[$line_total_key];
610
+ $line_tax_data = $item[$tax_data_container];
611
+ } else {
612
+ $tax_class = $item['tax_class'];
613
+ $line_total = $item['line_total'];
614
+ $line_tax = $item['line_tax'];
615
+ $line_tax_data = maybe_unserialize( isset( $item['line_tax_data'] ) ? $item['line_tax_data'] : '' );
616
+ }
617
 
618
  // first try the easy wc2.2+ way, using line_tax_data
619
+ if ( !empty( $line_tax_data ) && isset($line_tax_data[$tax_data_key]) ) {
620
  $tax_rates = array();
621
 
622
+ $line_taxes = $line_tax_data[$tax_data_key];
623
  foreach ( $line_taxes as $tax_id => $tax ) {
624
  if ( isset($tax) && $tax !== '' ) {
625
  $tax_rate = $this->get_tax_rate_by_id( $tax_id, $order );
626
+ if ( $tax_rate !== false && $force_calculation === false ) {
627
  $tax_rates[] = $tax_rate . ' %';
628
  } else {
629
  $tax_rates[] = $this->calculate_tax_rate( $line_total, $line_tax );
638
  }
639
  }
640
 
641
+ $tax_rates = implode(', ', $tax_rates );
642
  return $tax_rates;
643
  }
644
 
includes/documents/abstract-wcpdf-order-document.php CHANGED
@@ -152,11 +152,11 @@ abstract class Order_Document {
152
  }
153
 
154
  // display date & display number were checkbox settings but now a select setting that could be set but empty - should behave as 'unchecked'
155
- if ( empty( $settings['display_date'] ) ) {
156
  unset( $settings['display_date'] );
157
  }
158
 
159
- if ( empty( $settings['display_number'] ) ) {
160
  unset( $settings['display_number'] );
161
  }
162
 
152
  }
153
 
154
  // display date & display number were checkbox settings but now a select setting that could be set but empty - should behave as 'unchecked'
155
+ if ( array_key_exists( 'display_date', $settings ) && empty( $settings['display_date'] ) ) {
156
  unset( $settings['display_date'] );
157
  }
158
 
159
+ if ( array_key_exists( 'display_number', $settings ) && empty( $settings['display_number'] ) ) {
160
  unset( $settings['display_number'] );
161
  }
162
 
includes/views/setup-wizard/attach-to.php CHANGED
@@ -1,24 +1,33 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <div class="wpo-step-description">
3
- <h2><?php _e( 'Attach too...', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
- <p><?php _e( 'Select to which emails you would like to attach your invoice.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
- </div>
6
- <div class="wpo-setup-input">
7
- <?php
8
- $current_settings = get_option( 'wpo_wcpdf_documents_settings_invoice', array() );
9
- // echo "<pre>".var_dump($current_settings)."</pre>";
10
- // load invoice to reuse method to get wc emails
11
- $invoice = wcpdf_get_invoice( null );
12
- $wc_emails = $invoice->get_wc_emails();
13
- foreach ($wc_emails as $email_id => $name) {
14
- if (!empty($current_settings['attach_to_email_ids'][$email_id])) {
15
- $checked = 'checked';
16
- } else {
17
- $checked = '';
18
- }
19
- printf('<input type="hidden" value="" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][attach_to_email_ids][%1$s]">
20
- <input type="checkbox" %3$s name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][attach_to_email_ids][%1$s]" value="1">
21
- <span class="checkbox">%2$s</span><br>', $email_id, $name, $checked);
22
- }
23
- ?>
24
- </div>
 
 
 
 
 
 
 
 
 
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <div class="wpo-step-description">
3
+ <h2><?php _e( 'Attach too...', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
+ <p><?php _e( 'Select to which emails you would like to attach your invoice.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
+ </div>
6
+ <div class="wpo-setup-input">
7
+ <table>
8
+ <?php
9
+ $current_settings = get_option( 'wpo_wcpdf_documents_settings_invoice', array() );
10
+ // echo "<pre>".var_dump($current_settings)."</pre>";
11
+ // load invoice to reuse method to get wc emails
12
+ $invoice = wcpdf_get_invoice( null );
13
+ $wc_emails = $invoice->get_wc_emails();
14
+ foreach ($wc_emails as $email_id => $name) {
15
+ if (!empty($current_settings['attach_to_email_ids'][$email_id])) {
16
+ $checked = 'checked';
17
+ } else {
18
+ $checked = '';
19
+ }
20
+ printf('<tr>
21
+ <th>
22
+ <input type="hidden" value="" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][attach_to_email_ids][%1$s]">
23
+ <input type="checkbox" %3$s name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][attach_to_email_ids][%1$s]" value="1">
24
+ </th>
25
+ <td>
26
+ <span class="checkbox">%2$s</span><br>
27
+ </td>
28
+ </tr>', $email_id, $name, $checked);
29
+
30
+ }
31
+ ?>
32
+ </table>
33
+ </div>
includes/views/setup-wizard/display-options.php CHANGED
@@ -1,20 +1,57 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <div class="wpo-step-description">
3
- <h2><?php _e( 'Display options', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
- <p><?php _e( 'Select some additional display options for your invoice.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
- </div>
6
- <div class="wpo-setup-input">
7
- <?php
8
- $current_settings = get_option( 'wpo_wcpdf_documents_settings_invoice', array() );
9
- ?>
10
- <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_shipping_address]" value="">
11
- <input type="checkbox" <?php echo !empty($current_settings['display_shipping_address']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_shipping_address]" value="1"><span class="checkbox"><?php _e( 'Display shipping address', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
12
- <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_email]" value="">
13
- <input type="checkbox" <?php echo !empty($current_settings['display_email']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_email]" value="1"><span class="checkbox"><?php _e( 'Display email address', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
14
- <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_phone]" value="">
15
- <input type="checkbox" <?php echo !empty($current_settings['display_phone']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_phone]" value="1"><span class="checkbox"><?php _e( 'Display phone number', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
16
- <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_date]" value="">
17
- <input type="checkbox" <?php echo !empty($current_settings['display_date']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_date]" value="invoice_date"><span class="checkbox"><?php _e( 'Display invoice date', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
18
- <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_number]" value="">
19
- <input type="checkbox" <?php echo !empty($current_settings['display_number']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_number]" value="invoice_number"><span class="checkbox"><?php _e( 'Display invoice number', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  </div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <div class="wpo-step-description">
3
+ <h2><?php _e( 'Display options', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
+ <p><?php _e( 'Select some additional display options for your invoice.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
+ </div>
6
+ <div class="wpo-setup-input">
7
+ <table>
8
+ <?php
9
+ $current_settings = get_option( 'wpo_wcpdf_documents_settings_invoice', array() );
10
+ ?>
11
+ <tr>
12
+ <th>
13
+ <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_shipping_address]" value="">
14
+ <input type="checkbox" <?php echo !empty($current_settings['display_shipping_address']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_shipping_address]" value="1">
15
+ </th>
16
+ <td>
17
+ <span class="checkbox"><?php _e( 'Display shipping address', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
18
+ </td>
19
+ </tr>
20
+ <tr>
21
+ <th>
22
+ <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_email]" value="">
23
+ <input type="checkbox" <?php echo !empty($current_settings['display_email']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_email]" value="1">
24
+ </th>
25
+ <td>
26
+ <span class="checkbox"><?php _e( 'Display email address', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
27
+ </td>
28
+ </tr>
29
+ <tr>
30
+ <th>
31
+ <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_phone]" value="">
32
+ <input type="checkbox" <?php echo !empty($current_settings['display_phone']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_phone]" value="1">
33
+ </th>
34
+ <td>
35
+ <span class="checkbox"><?php _e( 'Display phone number', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
36
+ </td>
37
+ </tr>
38
+ <tr>
39
+ <th>
40
+ <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_date]" value="">
41
+ <input type="checkbox" <?php echo !empty($current_settings['display_date']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_date]" value="invoice_date">
42
+ </th>
43
+ <td>
44
+ <span class="checkbox"><?php _e( 'Display invoice date', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
45
+ </td>
46
+ <tr>
47
+ </tr>
48
+ <th>
49
+ <input type="hidden" name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_number]" value="">
50
+ <input type="checkbox" <?php echo !empty($current_settings['display_number']) ? 'checked' : ''; ?> name="wcpdf_settings[wpo_wcpdf_documents_settings_invoice][display_number]" value="invoice_number">
51
+ </th>
52
+ <td>
53
+ <span class="checkbox"><?php _e( 'Display invoice number', 'woocommerce-pdf-invoices-packing-slips' ); ?></span><br>
54
+ </td>
55
+ </tr>
56
+ </table>
57
  </div>
languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.po CHANGED
@@ -1,75 +1,156 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:36+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: Ivo Slavík <ivo.slavik@atlas.cz>\n"
7
- "Language-Team: Ivo Slavík <info@ivoslavik.cz>\n"
8
- "Language: cs\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.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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-admin.php:72 includes/class-wcpdf-admin.php:174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Invoice Number"
21
  msgstr "Číslo faktury"
22
 
23
- #: includes/class-wcpdf-admin.php:105
 
 
 
 
24
  msgid "Create PDF"
25
  msgstr "Vytvořit PDF"
26
 
27
- #: includes/class-wcpdf-admin.php:115
28
  msgid "PDF Invoice data"
29
- msgstr ""
30
 
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Faktura"
38
 
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
  msgid "Invoice Date:"
42
  msgstr "Datum fakturace:"
43
 
44
- #: includes/class-wcpdf-admin.php:189
45
  msgid "Set invoice number & date"
46
- msgstr ""
47
 
48
- #: includes/class-wcpdf-admin.php:196
49
  msgid "Invoice Number (unformatted!)"
50
- msgstr ""
51
 
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
  msgid "h"
54
  msgstr "h"
55
 
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
  msgid "m"
58
  msgstr "m"
59
 
60
- #: includes/class-wcpdf-frontend.php:55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  msgid "Download invoice (PDF)"
62
  msgstr "Stáhnout fakturu (PDF)"
63
 
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
  msgid "You do not have sufficient permissions to access this page."
67
  msgstr "Nemáte dostatečné oprávnění pro přístup."
68
 
69
- #: includes/class-wcpdf-main.php:141
 
 
 
 
70
  msgid "Some of the export parameters are missing."
71
  msgstr "Chybí některé z exportních parametrů."
72
 
 
 
 
 
 
 
 
 
 
 
73
  #: includes/class-wcpdf-settings-callbacks.php:27
74
  msgid ""
75
  "<b>Warning!</b> The settings below are meant for debugging/development only. "
@@ -87,33 +168,99 @@ msgstr ""
87
  "Tyto prvky jsou použité jako volitelné části patičky v šabloně <em>Modern "
88
  "(Premium)</em>, ale mohou být v rámci vaší vlastní šablony využity i jinak"
89
 
90
- #: includes/class-wcpdf-settings-callbacks.php:301
91
  msgid "Image resolution"
92
  msgstr "Rozměry obrázku"
93
 
94
- #: includes/class-wcpdf-settings-callbacks.php:325
95
  msgid "Save"
96
- msgstr ""
97
 
98
- #: includes/class-wcpdf-settings-debug.php:34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Debug settings"
100
  msgstr "Nastavení pro ladění"
101
 
102
- #: includes/class-wcpdf-settings-debug.php:40
103
  msgid "Legacy mode"
104
- msgstr ""
105
 
106
- #: includes/class-wcpdf-settings-debug.php:46
107
  msgid ""
108
  "Legacy mode ensures compatibility with templates and filters from previous "
109
  "versions."
110
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
 
112
- #: includes/class-wcpdf-settings-debug.php:52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  msgid "Enable debug output"
114
  msgstr "Povolit výstup ladění"
115
 
116
- #: includes/class-wcpdf-settings-debug.php:58
117
  msgid ""
118
  "Enable this option to output plugin errors if you're getting a blank page or "
119
  "other PDF generation issues"
@@ -121,47 +268,88 @@ msgstr ""
121
  "Povolte toto nastavení pro zobrazení chyb pluginu, pokud se zobrazuje "
122
  "prázdná stránka nebo máte jiný problém s generováním PDF"
123
 
124
- #: includes/class-wcpdf-settings-debug.php:64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  msgid "Output to HTML"
126
  msgstr "Výstup do HTML"
127
 
128
- #: includes/class-wcpdf-settings-debug.php:70
129
  msgid ""
130
  "Send the template output as HTML to the browser instead of creating a PDF."
131
  msgstr "Pošle výstup šablony v HTML do prohlížeče místo vytvoření PDF."
132
 
133
- #: includes/class-wcpdf-settings-documents.php:29
134
- #: includes/class-wcpdf-settings.php:84
 
 
 
 
135
  msgid "Documents"
136
- msgstr ""
137
 
138
- #: includes/class-wcpdf-settings-documents.php:45
139
  msgid ""
140
  "All available documents are listed below. Click on a document to configure "
141
  "it."
142
  msgstr ""
 
 
143
 
144
- #: includes/class-wcpdf-settings-general.php:37
145
  msgid "General settings"
146
  msgstr "Všeobecná nastavení"
147
 
148
- #: includes/class-wcpdf-settings-general.php:43
149
  msgid "How do you want to view the PDF?"
150
  msgstr "Jak chcete zobrazit PDF?"
151
 
152
- #: includes/class-wcpdf-settings-general.php:50
153
  msgid "Download the PDF"
154
  msgstr "Stáhnout PDF"
155
 
156
- #: includes/class-wcpdf-settings-general.php:51
157
  msgid "Open the PDF in a new browser tab/window"
158
  msgstr "Otevřít PDF v novém okně"
159
 
160
- #: includes/class-wcpdf-settings-general.php:58
161
  msgid "Choose a template"
162
  msgstr "Vyberte šablonu"
163
 
164
- #: includes/class-wcpdf-settings-general.php:65
165
  #, php-format
166
  msgid ""
167
  "Want to use your own template? Copy all the files from <code>%s</code> to "
@@ -170,187 +358,286 @@ msgstr ""
170
  "Chcete použít vlastní šablonu? Zkopírujte všechny soubory z <code>%s</code> "
171
  "do svého (child) tématu v <code>%s</code> a upravte je podle potřeby"
172
 
173
- #: includes/class-wcpdf-settings-general.php:71
174
  msgid "Paper size"
175
  msgstr "Velikost papíru"
176
 
177
- #: includes/class-wcpdf-settings-general.php:78
 
178
  msgid "A4"
179
  msgstr "A4"
180
 
181
- #: includes/class-wcpdf-settings-general.php:79
 
182
  msgid "Letter"
183
- msgstr "Letter"
184
 
185
- #: includes/class-wcpdf-settings-general.php:86
186
- msgid "Extended currency symbol support"
 
 
 
 
 
 
 
187
  msgstr ""
 
 
 
188
 
189
- #: includes/class-wcpdf-settings-general.php:92
 
 
 
 
 
 
 
 
 
 
 
 
190
  msgid "Enable this if your currency symbol is not displaying properly"
 
 
 
 
 
 
 
 
 
 
 
191
  msgstr ""
 
 
 
192
 
193
- #: includes/class-wcpdf-settings-general.php:98
194
  msgid "Shop header/logo"
195
  msgstr "Hlavička/logo"
196
 
197
- #: includes/class-wcpdf-settings-general.php:104
 
198
  msgid "Select or upload your invoice header/logo"
199
  msgstr "Vyberte nebo nahrajte hlavičku/logo"
200
 
201
- #: includes/class-wcpdf-settings-general.php:105
 
202
  msgid "Set image"
203
  msgstr "Vybrat obrázek"
204
 
205
- #: includes/class-wcpdf-settings-general.php:106
 
206
  msgid "Remove image"
207
  msgstr "Odebrat obrázek"
208
 
209
- #: includes/class-wcpdf-settings-general.php:113
 
210
  msgid "Shop Name"
211
  msgstr "Název obchodu"
212
 
213
- #: includes/class-wcpdf-settings-general.php:126
214
  msgid "Shop Address"
215
  msgstr "Adresa obchodu"
216
 
217
- #: includes/class-wcpdf-settings-general.php:141
218
  msgid "Footer: terms & conditions, policies, etc."
219
  msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
220
 
221
- #: includes/class-wcpdf-settings-general.php:156
222
  msgid "Extra template fields"
223
  msgstr "Extra políčka v šabloně"
224
 
225
- #: includes/class-wcpdf-settings-general.php:162
226
  msgid "Extra field 1"
227
  msgstr "Extra políčko 1"
228
 
229
- #: includes/class-wcpdf-settings-general.php:170
230
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
231
  msgstr "Tohle je 1. políčko v patičce šablony <i>Modern (Premium)</i>"
232
 
233
- #: includes/class-wcpdf-settings-general.php:177
234
  msgid "Extra field 2"
235
  msgstr "Extra políčko 2"
236
 
237
- #: includes/class-wcpdf-settings-general.php:185
238
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
239
  msgstr "Tohle je 2. políčko v patičce šablony <i>Modern (Premium)</i>"
240
 
241
- #: includes/class-wcpdf-settings-general.php:192
242
  msgid "Extra field 3"
243
  msgstr "Extra políčko 3"
244
 
245
- #: includes/class-wcpdf-settings-general.php:200
246
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
247
  msgstr "Tohle je 3. políčko v patičce šablony <i>Modern (Premium)</i>"
248
 
249
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
250
  msgid "PDF Invoices"
251
  msgstr "PDF faktury"
252
 
253
- #: includes/class-wcpdf-settings.php:58
254
  msgid "Settings"
255
  msgstr "Nastavení"
256
 
257
- #: includes/class-wcpdf-settings.php:71
258
  msgid "Documentation"
259
- msgstr ""
260
 
261
- #: includes/class-wcpdf-settings.php:72
262
  msgid "Support Forum"
 
 
 
 
 
 
 
 
 
263
  msgstr ""
 
 
 
264
 
265
- #: includes/class-wcpdf-settings.php:83
266
  msgid "General"
267
  msgstr "Všeobecné"
268
 
269
- #: includes/class-wcpdf-settings.php:89
270
  msgid "Status"
271
  msgstr "Stav"
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  #: includes/compatibility/class-wc-core-compatibility.php:222
274
  msgid "WooCommerce"
275
- msgstr ""
276
 
277
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
278
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
279
  msgid "N/A"
280
  msgstr "Není k dispozici"
281
 
282
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
283
  msgid "Payment method"
284
  msgstr "Platební metoda"
285
 
286
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
287
  msgid "Shipping method"
288
  msgstr "Doručovací metoda"
289
 
290
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
291
  #, php-format
292
  msgid "(includes %s)"
293
- msgstr ""
294
 
295
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
296
  #, php-format
297
  msgid "(Includes %s)"
298
- msgstr ""
299
 
300
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
301
  msgid "Subtotal"
302
  msgstr "Mezisoučet"
303
 
304
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
305
  msgid "Shipping"
306
  msgstr "Doprava"
307
 
308
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
309
  msgid "Discount"
310
  msgstr "Sleva"
311
 
312
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
313
  msgid "VAT"
314
  msgstr "DPH"
315
 
316
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
317
  msgid "Tax rate"
318
  msgstr "Daňová sazba"
319
 
320
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
321
  msgid "Total ex. VAT"
322
  msgstr "Celkem bez DPH"
323
 
324
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
325
  msgid "Total"
326
  msgstr "Celkem"
327
 
328
- #: includes/documents/abstract-wcpdf-order-document.php:674
329
  msgid "Admin email"
330
- msgstr ""
331
 
332
- #: includes/documents/abstract-wcpdf-order-document.php:677
333
  msgid "Manual email"
334
- msgstr ""
335
 
336
- # This is a filename (prefix). do not use spaces or special characters!
337
- #: includes/documents/class-wcpdf-invoice.php:85
 
 
 
 
 
338
  msgid "invoice"
339
  msgid_plural "invoices"
340
  msgstr[0] "faktura"
341
  msgstr[1] "faktury"
342
  msgstr[2] "faktur"
343
 
344
- #: includes/documents/class-wcpdf-invoice.php:130
345
- #: includes/documents/class-wcpdf-packing-slip.php:94
346
  msgid "Enable"
347
- msgstr ""
348
 
349
- #: includes/documents/class-wcpdf-invoice.php:141
350
  msgid "Attach to:"
351
- msgstr ""
352
 
353
- #: includes/documents/class-wcpdf-invoice.php:148
354
  #, php-format
355
  msgid ""
356
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -361,74 +648,123 @@ msgstr ""
361
  "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky "
362
  "nebude možné odesílat faktury e-mailem."
363
 
364
- #: includes/documents/class-wcpdf-invoice.php:154
 
 
 
 
 
 
 
 
 
365
  msgid "Display shipping address"
366
  msgstr "Zobrazit doručovací adresu"
367
 
368
- #: includes/documents/class-wcpdf-invoice.php:160
369
  msgid ""
370
  "Display shipping address (in addition to the default billing address) if "
371
  "different from billing address"
372
  msgstr ""
 
 
373
 
374
- #: includes/documents/class-wcpdf-invoice.php:166
375
- #: includes/documents/class-wcpdf-packing-slip.php:117
 
376
  msgid "Display email address"
377
  msgstr "Zobrazit emailovou adresu"
378
 
379
- #: includes/documents/class-wcpdf-invoice.php:177
380
- #: includes/documents/class-wcpdf-packing-slip.php:128
 
381
  msgid "Display phone number"
382
  msgstr "Zobrazit telefonní číslo"
383
 
384
- #: includes/documents/class-wcpdf-invoice.php:188
 
385
  msgid "Display invoice date"
386
  msgstr "Zobrazit datum fakturace"
387
 
388
- #: includes/documents/class-wcpdf-invoice.php:200
 
 
 
 
 
 
 
 
 
 
389
  msgid "Display invoice number"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  msgstr ""
 
 
 
 
 
 
391
 
392
- #: includes/documents/class-wcpdf-invoice.php:212
393
  msgid "Next invoice number (without prefix/suffix etc.)"
394
  msgstr "Další číslo faktury (bez předpony/přípony)"
395
 
396
- #: includes/documents/class-wcpdf-invoice.php:218
397
  msgid ""
398
  "This is the number that will be used for the next document. By default, "
399
  "numbering starts from 1 and increases for every new document. Note that if "
400
  "you override this and set it lower than the current/highest number, this "
401
  "could create duplicate numbers!"
402
  msgstr ""
 
 
 
 
403
 
404
- #: includes/documents/class-wcpdf-invoice.php:224
405
  msgid "Number format"
406
- msgstr ""
407
 
408
- #: includes/documents/class-wcpdf-invoice.php:232
409
  msgid "Prefix"
410
  msgstr "Předpona"
411
 
412
- #: includes/documents/class-wcpdf-invoice.php:234
413
  msgid ""
414
  "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
415
  "respectively"
416
- msgstr ""
417
 
418
- #: includes/documents/class-wcpdf-invoice.php:237
419
  msgid "Suffix"
420
  msgstr "Přípona"
421
 
422
- #: includes/documents/class-wcpdf-invoice.php:242
423
  msgid "Padding"
424
  msgstr "Výplň"
425
 
426
- #: includes/documents/class-wcpdf-invoice.php:245
427
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
428
  msgstr ""
429
  "zde vložte počet číslic - napište \"6\", aby se 42 zobrazilo jako 000042"
430
 
431
- #: includes/documents/class-wcpdf-invoice.php:248
432
  msgid ""
433
  "note: if you have already created a custom invoice number format with a "
434
  "filter, the above settings will be ignored"
@@ -436,112 +772,231 @@ msgstr ""
436
  "poznámka: pokud jste si už nastavili vlastní číslování faktur pomocí filtru, "
437
  "výše uvedená nastavení budou ignorována"
438
 
439
- #: includes/documents/class-wcpdf-invoice.php:254
440
  msgid "Reset invoice number yearly"
441
- msgstr ""
442
 
443
- #: includes/documents/class-wcpdf-invoice.php:265
444
  msgid "Allow My Account invoice download"
445
  msgstr "Umožnit stažení faktury na stránce Můj účet"
446
 
447
- #: includes/documents/class-wcpdf-invoice.php:272
448
  msgid "Only when an invoice is already created/emailed"
449
  msgstr "Pouze když už byla faktura vytvořena/odeslána"
450
 
451
- #: includes/documents/class-wcpdf-invoice.php:273
452
  msgid "Only for specific order statuses (define below)"
453
  msgstr "Pouze pro určité stavy objednávek (definujte níže)"
454
 
455
- #: includes/documents/class-wcpdf-invoice.php:274
456
  msgid "Always"
457
  msgstr "Vždy"
458
 
459
- #: includes/documents/class-wcpdf-invoice.php:275
460
  msgid "Never"
461
- msgstr ""
462
 
463
- #: includes/documents/class-wcpdf-invoice.php:290
464
  msgid "Enable invoice number column in the orders list"
465
  msgstr "Zobrazit v seznamu objednávek sloupec s čísly faktur"
466
 
467
- #: includes/documents/class-wcpdf-invoice.php:301
468
  msgid "Disable for free products"
469
  msgstr "Vypnout u produktů zdarma"
470
 
471
- #: includes/documents/class-wcpdf-invoice.php:307
472
  msgid ""
473
  "Disable automatic creation/attachment when only free products are ordered"
474
  msgstr ""
 
 
475
 
476
- #: includes/documents/class-wcpdf-invoice.php:321
477
- msgid "Invoice numbers are created by a third-party extension."
 
 
 
 
 
 
 
478
  msgstr ""
 
 
 
479
 
480
- #: includes/documents/class-wcpdf-invoice.php:323
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  #, php-format
482
  msgid "Configure it <a href=\"%s\">here</a>."
483
- msgstr ""
484
 
485
  #: includes/documents/class-wcpdf-packing-slip.php:32
486
  #: includes/documents/class-wcpdf-packing-slip.php:41
487
  #: includes/legacy/class-wcpdf-legacy-functions.php:25
488
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
489
  msgid "Packing Slip"
490
  msgstr "Dodací List"
491
 
492
- # This is a filename (prefix). do not use spaces or special characters!
493
- #: includes/documents/class-wcpdf-packing-slip.php:53
494
  msgid "packing-slip"
495
  msgid_plural "packing-slips"
496
  msgstr[0] "dodací list"
497
  msgstr[1] "dodací listy"
498
  msgstr[2] "dodacích listů"
499
 
500
- #: includes/documents/class-wcpdf-packing-slip.php:105
501
  msgid "Display billing address"
502
  msgstr "Zobrazit fakturační adresu"
503
 
504
- #: includes/documents/class-wcpdf-packing-slip.php:111
505
  msgid ""
506
  "Display billing address (in addition to the default shipping address) if "
507
  "different from shipping address"
508
  msgstr ""
 
 
509
 
510
  #: includes/legacy/class-wcpdf-legacy-document.php:32
511
  msgid "Legacy Document"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  msgstr ""
 
 
513
 
514
- #: includes/views/wcpdf-extensions.php:15
 
 
 
 
 
 
 
 
 
515
  msgid "Check out these premium extensions!"
516
  msgstr "Vyzkoušejte tato prémiová rozšíření!"
517
 
518
- #: includes/views/wcpdf-extensions.php:16
519
  msgid "click items to read more"
520
  msgstr "pro více informací klikněte na položky"
521
 
522
- #: includes/views/wcpdf-extensions.php:21
523
  msgid ""
524
  "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
525
  "system"
526
  msgstr ""
 
527
 
528
- #: includes/views/wcpdf-extensions.php:23
529
  msgid ""
530
  "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
531
  "premium extensions:"
532
  msgstr ""
 
 
533
 
534
- #: includes/views/wcpdf-extensions.php:24
535
  msgid "Professional features:"
536
- msgstr ""
537
 
538
- #: includes/views/wcpdf-extensions.php:26
539
- #: includes/views/wcpdf-extensions.php:56
540
  msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
541
  msgstr "Mailujte/tiskněte/stahujte <b>PDF dobropisy a proforma faktury</b>"
542
 
543
- #: includes/views/wcpdf-extensions.php:27
544
- #: includes/views/wcpdf-extensions.php:57
545
  msgid ""
546
  "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
547
  "packing slips, for example to a drop-shipper or a supplier."
@@ -549,8 +1004,8 @@ msgstr ""
549
  "Posílejte zvláštní <b>notifikační email</b> s (nebo bez) PDF fakturami/"
550
  "dodacími listy, např. pro drop-shippera nebo dodavatele."
551
 
552
- #: includes/views/wcpdf-extensions.php:28
553
- #: includes/views/wcpdf-extensions.php:58
554
  msgid ""
555
  "Attach <b>up to 3 static files</b> (for example a terms & conditions "
556
  "document) to the WooCommerce emails of your choice."
@@ -558,8 +1013,8 @@ msgstr ""
558
  "Přikládejte k vybraným WooCommerce emailům <b>až 3 statické soubory</b> "
559
  "(např. dokument s obchodními podmínkami)."
560
 
561
- #: includes/views/wcpdf-extensions.php:29
562
- #: includes/views/wcpdf-extensions.php:59
563
  msgid ""
564
  "Use <b>separate numbering systems</b> and/or format for proforma invoices "
565
  "and credit notes or utilize the main invoice numbering system"
@@ -567,8 +1022,8 @@ msgstr ""
567
  "Používejte <b>samostatné číslování</b> a/nebo formát proforma faktur a "
568
  "dobropisů nebo používejte hlavní číslování"
569
 
570
- #: includes/views/wcpdf-extensions.php:30
571
- #: includes/views/wcpdf-extensions.php:60
572
  msgid ""
573
  "<b>Customize</b> the <b>shipping & billing address</b> format to include "
574
  "additional custom fields, font sizes etc. without the need to create a "
@@ -578,34 +1033,36 @@ msgstr ""
578
  "další vlastní pole, velikosti písma, atd. bez nutnosti vytvářet vlastní "
579
  "šablonu."
580
 
581
- #: includes/views/wcpdf-extensions.php:31
582
- #: includes/views/wcpdf-extensions.php:61
583
  msgid "Use the plugin in multilingual <b>WPML</b> setups"
584
  msgstr "Používejte plugin v multijazyčném nastavení <b>WPML</b>"
585
 
586
- #: includes/views/wcpdf-extensions.php:33
587
- #: includes/views/wcpdf-extensions.php:131
588
  msgid "Advanced, customizable templates"
589
- msgstr ""
590
 
591
- #: includes/views/wcpdf-extensions.php:35
592
- #: includes/views/wcpdf-extensions.php:134
593
  msgid ""
594
  "Completely customize the invoice contents (prices, taxes, thumbnails) to "
595
  "your needs with a drag & drop customizer"
596
  msgstr ""
 
 
597
 
598
- #: includes/views/wcpdf-extensions.php:36
599
- #: includes/views/wcpdf-extensions.php:135
600
  msgid "Two extra stylish premade templates (Modern & Business)"
601
- msgstr ""
602
 
603
- #: includes/views/wcpdf-extensions.php:38
 
604
  msgid "Upload automatically to dropbox"
605
- msgstr ""
606
 
607
- #: includes/views/wcpdf-extensions.php:40
608
- #: includes/views/wcpdf-extensions.php:97
609
  msgid ""
610
  "This extension conveniently uploads all the invoices (and other pdf "
611
  "documents from the professional extension) that are emailed to your "
@@ -613,79 +1070,81 @@ msgid ""
613
  "date!"
614
  msgstr ""
615
  "Toto rozšíření umožňuje pohodlně nahrávat do Dropboxu všechny faktury (a "
616
- "další pdf dokumenty z profi rozšíření), které jsou posílány zákazníkovi."
 
617
 
618
- #: includes/views/wcpdf-extensions.php:43
619
  msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
620
- msgstr ""
621
 
622
- #: includes/views/wcpdf-extensions.php:52
623
  msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
624
  msgstr "Pro verze: proforma faktury, dobropisy a další!"
625
 
626
- #: includes/views/wcpdf-extensions.php:54
627
  msgid ""
628
  "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
629
  "features:"
630
  msgstr "Nabijte WooCommerce PDF Invoices & Packing Slips těmito funkcemi:"
631
 
632
- #: includes/views/wcpdf-extensions.php:63
633
  msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
634
  msgstr "Získejte WooCommerce PDF Invoices & Packing Slips Professional!"
635
 
636
- #: includes/views/wcpdf-extensions.php:71
637
  msgid "Automatically send payment reminders to your customers"
638
- msgstr ""
639
 
640
- #: includes/views/wcpdf-extensions.php:73
641
  msgid "WooCommerce Smart Reminder emails"
642
- msgstr ""
643
 
644
- #: includes/views/wcpdf-extensions.php:75
645
  msgid "<b>Completely automatic</b> scheduled emails"
646
- msgstr ""
647
 
648
- #: includes/views/wcpdf-extensions.php:76
649
  msgid ""
650
  "<b>Rich text editor</b> for the email text, including placeholders for data "
651
  "from the order (name, order total, etc)"
652
  msgstr ""
 
 
 
653
 
654
- #: includes/views/wcpdf-extensions.php:77
655
  msgid ""
656
  "Configure the exact requirements for sending an email (time after order, "
657
  "order status, payment method)"
658
  msgstr ""
 
 
659
 
660
- #: includes/views/wcpdf-extensions.php:78
661
  msgid ""
662
  "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
663
  "order language."
664
  msgstr ""
 
 
665
 
666
- #: includes/views/wcpdf-extensions.php:79
667
  msgid ""
668
  "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
669
  "reminders, repeat purchases)"
670
  msgstr ""
 
 
671
 
672
- #: includes/views/wcpdf-extensions.php:80
673
  msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
674
- msgstr ""
675
 
676
- #: includes/views/wcpdf-extensions.php:82
677
  msgid "Get WooCommerce Smart Reminder Emails"
678
- msgstr ""
679
 
680
- #: includes/views/wcpdf-extensions.php:91
681
- msgid "Upload all invoices automatically to your dropbox"
682
- msgstr "Nahrávejte všechny faktury automaticky do svého Dropboxu"
683
-
684
- #: includes/views/wcpdf-extensions.php:98
685
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
686
- msgstr "Získejte WooCommerce PDF Invoices & Packing Slips to dropbox!"
687
-
688
- #: includes/views/wcpdf-extensions.php:110
689
  msgid ""
690
  "Automatically send new orders or packing slips to your printer, as soon as "
691
  "the customer orders!"
@@ -693,7 +1152,7 @@ msgstr ""
693
  "Posílejte automaticky nové objednávky nebo dodací listy na svou tiskárnu, "
694
  "jakmile si zákazník objedná!"
695
 
696
- #: includes/views/wcpdf-extensions.php:116
697
  msgid ""
698
  "Check out the WooCommerce Automatic Order Printing extension from our "
699
  "partners at Simba Hosting"
@@ -701,238 +1160,134 @@ msgstr ""
701
  "Vyzkoušejte rozšíření WooCommerce Automatic Order Printing od našich "
702
  "partnerů ze Simba Hosting"
703
 
704
- #: includes/views/wcpdf-extensions.php:117
705
  msgid "WooCommerce Automatic Order Printing"
706
- msgstr "WooCommerce Automatic Order Printing"
707
 
708
- #: includes/views/wcpdf-extensions.php:136
709
  #, php-format
710
  msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
711
  msgstr "Vyzkoušejte Premium PDF Invoice & Packing Slips šablony na %s."
712
 
713
- #: includes/views/wcpdf-extensions.php:137
714
  #, php-format
715
  msgid "For custom templates, contact us at %s."
716
  msgstr "Ohledně vlastních šablon nás kontaktujte na %s."
717
 
718
- #: includes/views/wcpdf-extensions.php:146
719
- msgid "Hide this message"
720
- msgstr ""
721
-
722
- #: includes/views/wcpdf-settings-page.php:8
723
  msgid "WooCommerce PDF Invoices"
724
  msgstr "WooCommerce PDF faktury"
725
 
726
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
 
 
 
 
727
  msgid "Billing Address:"
728
  msgstr "Fakturační adresa:"
729
 
730
- #: templates/Simple/invoice.php:41
731
  msgid "Ship To:"
732
  msgstr "Odeslat na:"
733
 
734
- #: templates/Simple/invoice.php:50
735
  msgid "Invoice Number:"
736
  msgstr "Číslo faktury:"
737
 
738
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
739
  msgid "Order Number:"
740
  msgstr "Číslo objednávky:"
741
 
742
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
743
  msgid "Order Date:"
744
  msgstr "Datum objednávky:"
745
 
746
- #: templates/Simple/invoice.php:69
747
  msgid "Payment Method:"
748
  msgstr "Způsob platby:"
749
 
750
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
751
  msgid "Product"
752
  msgstr "Zboží"
753
 
754
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
755
  msgid "Quantity"
756
  msgstr "Množství"
757
 
758
- #: templates/Simple/invoice.php:85
759
  msgid "Price"
760
  msgstr "Cena"
761
 
762
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
763
  msgid "Description"
764
  msgstr "Popis"
765
 
766
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
767
  msgid "SKU"
768
  msgstr "SKU"
769
 
770
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
771
  msgid "SKU:"
772
  msgstr "SKU:"
773
 
774
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
775
  msgid "Weight:"
776
  msgstr "Hmotnost:"
777
 
778
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
779
  msgid "Customer Notes"
780
  msgstr "Poznámka zákazníka"
781
 
782
- #: templates/Simple/packing-slip.php:30
783
  msgid "Shipping Address:"
784
  msgstr "Doručovací adresa:"
785
 
786
- #: templates/Simple/packing-slip.php:57
787
  msgid "Shipping Method:"
788
  msgstr "Doručovací metoda:"
789
 
790
- #: woocommerce-pdf-invoices-packingslips.php:231
791
  #, php-format
792
  msgid ""
793
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
794
  "installed & activated!"
795
  msgstr ""
796
  "WooCommerce PDF Invoices & Packing Slips vyžaduje nainstalovaný a aktivovaný "
797
- "%sWooCommerce%s!"
798
 
799
- #: woocommerce-pdf-invoices-packingslips.php:243
800
  msgid ""
801
  "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
802
  "higher recommended)."
803
  msgstr ""
 
 
804
 
805
- #: woocommerce-pdf-invoices-packingslips.php:244
806
  msgid "How to update your PHP version"
807
- msgstr ""
808
-
809
- #~ msgid "Attach invoice to:"
810
- #~ msgstr "Přiložit fakturu k:"
811
-
812
- #~ msgid ""
813
- #~ "Display shipping address on invoice (in addition to the default billing "
814
- #~ "address) if different from billing address"
815
- #~ msgstr ""
816
- #~ "Zobrazit doručovací adresu na faktuře (společně s fakturační adresou), "
817
- #~ "pokud se liší"
818
-
819
- #~ msgid ""
820
- #~ "This is the number that will be used on the next invoice that is created. "
821
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
822
- #~ "first invoice that is created and increases for every new invoice. Note "
823
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
824
- #~ "number, this could create double invoice numbers!"
825
- #~ msgstr ""
826
- #~ "Toto číslo bude použito v další vytvořené faktuře. Přednastavené "
827
- #~ "číslování začíná od čísla WooCommerce objednávky první vytvořené faktury "
828
- #~ "a zvyšuje se s každou další vytvořenou fakturou. POZOR: Když toto číslo "
829
- #~ "přepíšete a nastavíte hodnotu na menší než má poslední vytvořená PDF "
830
- #~ "faktura, může dojít k duplikaci číslování!"
831
-
832
- #~ msgid "Invoice number format"
833
- #~ msgstr "Formát čísla faktury"
834
-
835
- #~ msgid ""
836
- #~ "Disable automatic creation/attachment of invoices when only free products "
837
- #~ "are ordered"
838
- #~ msgstr ""
839
- #~ "Vypnout automatické vytváření/přikládání faktur pokud byly objednány "
840
- #~ "pouze produkty zdarma"
841
-
842
- #~ msgid ""
843
- #~ "Display billing address on packing slip (in addition to the default "
844
- #~ "shipping address) if different from shipping address"
845
- #~ msgstr ""
846
- #~ "Zobrazit fakturační adresu na dodacím listu (společně s doručovací "
847
- #~ "adresou), pokud se liší"
848
-
849
- #~ msgid "Template"
850
- #~ msgstr "Šablona"
851
-
852
- #~ msgid "Admin New Order email"
853
- #~ msgstr "Administrátor - email s novou objednávkou"
854
-
855
- #~ msgid "Customer Processing Order email"
856
- #~ msgstr "Zákazník - email s přijatou objednávkou"
857
-
858
- #~ msgid "Customer Completed Order email"
859
- #~ msgstr "Zákazník - email s dokončenou objednávkou"
860
-
861
- #~ msgid "Customer Invoice email"
862
- #~ msgstr "Zákazník - email s fakturou"
863
 
864
- #~ msgid "Interface"
865
- #~ msgstr "Uživatelské rozhraní"
866
 
867
- #~ msgid "PDF Template settings"
868
- #~ msgstr "Nastavení PDF šablony"
869
 
870
- #~ msgid "Display built-in sequential invoice number"
871
- #~ msgstr "Zobrazit základní sekvenční číslování faktur"
872
 
873
- #~ msgid ""
874
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
875
- #~ "respectively"
876
- #~ msgstr "použijte [order_year] pro rok a [order_month] pro měsíc objednání"
877
-
878
- #~ msgid "Use old tmp folder"
879
- #~ msgstr "Používat starou složku tmp"
880
 
881
  #~ msgid ""
882
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
883
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
884
- #~ "not recommended on new installs!"
885
  #~ msgstr ""
886
- #~ "Před verzí pluginu 1.5 byly dočasné soubory ukládány do složky pluginu. "
887
- #~ "Toto nastavení slouží pouze pro zpětnou kompatibilitu a nedoporučuje se "
888
- #~ "na nových instalacích!"
889
-
890
- #~ msgid "PDF Packing Slips"
891
- #~ msgstr "PDF dodací listy"
892
-
893
- #~ msgid "PDF Invoice"
894
- #~ msgstr "PDF faktura"
895
-
896
- #~ msgid "PDF Packing Slip"
897
- #~ msgstr "PDF dodací list"
898
-
899
- #~ msgid "PDF Invoice Number (unformatted!)"
900
- #~ msgstr "PDF číslo faktury (neformátované!)"
901
-
902
- #~ msgid "More advanced templates"
903
- #~ msgstr "Pokročilé šablony"
904
-
905
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
906
- #~ msgstr "Stylové moderní faktury a dodací listy s náhledy produktů!"
907
-
908
- #~ msgid "More tax details on the invoices!"
909
- #~ msgstr "Více daňových údajů na fakturách!"
910
 
911
- #~ msgid "Due Date:"
912
- #~ msgstr "Datum splatnosti:"
913
 
914
- #~ msgid "Invoice Code:"
915
- #~ msgstr "Variabilní symbol:"
916
 
917
- #~ msgid "Number to display on invoice"
918
- #~ msgstr "Číslo ukázané ve faktuře"
919
-
920
- #~ msgid ""
921
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
922
- #~ "the WooCommerce order number"
923
- #~ msgstr ""
924
- #~ "Pokud používáte plugin <i>WooCommerce Sequential Order Numbers</i>, tak "
925
- #~ "zvolte WooCommerce číslo objednávky"
926
-
927
- #~ msgid "Order date"
928
- #~ msgstr "Datum objednávky"
929
-
930
- #~ msgid "PDF invoice"
931
- #~ msgstr "PDF faktura"
932
-
933
- #~ msgid "..."
934
- #~ msgstr "..."
935
-
936
- #~ msgid "Email invoice (attach to order confirmation or invoice email)"
937
- #~ msgstr ""
938
- #~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
1
+ # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in Czech
2
+ # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
+ "Stable (latest release)\n"
7
+ "POT-Creation-Date: 2019-12-27 14:28+0100\n"
8
+ "PO-Revision-Date: 2019-12-27 14:54+0100\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: cs_CZ\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
 
 
15
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
+ "X-Generator: Poedit 2.2.4\n"
 
 
17
 
18
+ #: includes/class-wcpdf-admin.php:82
19
+ #, php-format
20
+ msgid "Wow, you have created more than %d invoices with our plugin!"
21
+ msgstr "Teda, vytvořili jste s pluginem více než %d faktur!"
22
+
23
+ #: includes/class-wcpdf-admin.php:83
24
+ msgid ""
25
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
26
+ "rating. Help us spread the word and boost our motivation!"
27
+ msgstr ""
28
+ "To by pro nás znamenalo hodně, kdybyste nám rychle přidali 5-ti hvězdičkový "
29
+ "plugin. Pomozte nám jej šířit a zvýšit naši motivaci!"
30
+
31
+ #: includes/class-wcpdf-admin.php:85
32
+ msgid "Yes you deserve it!"
33
+ msgstr "Ano, zasloužíte si to!"
34
+
35
+ #: includes/class-wcpdf-admin.php:86
36
+ #: includes/views/attachment-settings-hint.php:23
37
+ #: includes/views/wcpdf-extensions.php:129
38
+ msgid "Hide this message"
39
+ msgstr "Skrýt tuto zprávu"
40
+
41
+ #: includes/class-wcpdf-admin.php:86
42
+ msgid "Already did!"
43
+ msgstr "Už je provedeno!"
44
+
45
+ #: includes/class-wcpdf-admin.php:87
46
+ msgid "Actually, I have a complaint..."
47
+ msgstr "Vlastně mám stížnost ..."
48
+
49
+ #: includes/class-wcpdf-admin.php:122
50
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
51
+ msgstr "Novinka na WooCommerce PDF faktury a balíčky?"
52
+
53
+ #: includes/class-wcpdf-admin.php:122
54
+ msgid "Jumpstart the plugin by following our wizard!"
55
+ msgstr "Spusťte plugin podle našeho průvodce!"
56
+
57
+ #: includes/class-wcpdf-admin.php:123
58
+ msgid "Run the Setup Wizard"
59
+ msgstr "Spusťte Průvodce instalací"
60
+
61
+ #: includes/class-wcpdf-admin.php:123
62
+ msgid "I am the wizard"
63
+ msgstr "Já jsem \"kouzelník\""
64
+
65
+ #: includes/class-wcpdf-admin.php:211 includes/class-wcpdf-admin.php:377
66
+ #: includes/class-wcpdf-main.php:684
67
+ #: includes/documents/class-wcpdf-invoice.php:271
68
  msgid "Invoice Number"
69
  msgstr "Číslo faktury"
70
 
71
+ #: includes/class-wcpdf-admin.php:248
72
+ msgid "Send order email"
73
+ msgstr "Odeslat email s objednávkou"
74
+
75
+ #: includes/class-wcpdf-admin.php:259
76
  msgid "Create PDF"
77
  msgstr "Vytvořit PDF"
78
 
79
+ #: includes/class-wcpdf-admin.php:269
80
  msgid "PDF Invoice data"
81
+ msgstr "PDF fakturační údaje"
82
 
83
+ #: includes/class-wcpdf-admin.php:309
84
+ msgid "Send email"
85
+ msgstr "Odeslat email"
 
 
 
 
86
 
87
+ #: includes/class-wcpdf-admin.php:386 includes/class-wcpdf-admin.php:407
88
+ #: templates/Simple/invoice.php:61
89
  msgid "Invoice Date:"
90
  msgstr "Datum fakturace:"
91
 
92
+ #: includes/class-wcpdf-admin.php:392
93
  msgid "Set invoice number & date"
94
+ msgstr "Nastavte číslo faktury a datum"
95
 
96
+ #: includes/class-wcpdf-admin.php:399
97
  msgid "Invoice Number (unformatted!)"
98
+ msgstr "Číslo faktury (neformátováno)"
99
 
100
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
101
  msgid "h"
102
  msgstr "h"
103
 
104
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
105
  msgid "m"
106
  msgstr "m"
107
 
108
+ #: includes/class-wcpdf-admin.php:529
109
+ #, php-format
110
+ msgid "%s email notification manually sent."
111
+ msgstr "%s email s upozorněním odeslán manuálně."
112
+
113
+ #: includes/class-wcpdf-admin.php:653
114
+ msgid "DEBUG output enabled"
115
+ msgstr "DEBUG výstup povolen"
116
+
117
+ #: includes/class-wcpdf-assets.php:79
118
+ msgid "Are you sure you want to delete this document? This cannot be undone."
119
+ msgstr ""
120
+ "Jste si jistí, že chcete smazat tento dokument? Nebude to možné vzít zpět."
121
+
122
+ #: includes/class-wcpdf-frontend.php:57
123
+ #, php-format
124
+ msgid "Download %s (PDF)"
125
+ msgstr "Stáhnout %s (PDF)"
126
+
127
+ #: includes/class-wcpdf-frontend.php:59
128
  msgid "Download invoice (PDF)"
129
  msgstr "Stáhnout fakturu (PDF)"
130
 
131
+ #: includes/class-wcpdf-main.php:238 includes/class-wcpdf-main.php:243
132
+ #: includes/class-wcpdf-main.php:313
133
  msgid "You do not have sufficient permissions to access this page."
134
  msgstr "Nemáte dostatečné oprávnění pro přístup."
135
 
136
+ #: includes/class-wcpdf-main.php:252
137
+ msgid "You haven't selected any orders"
138
+ msgstr "Nevybrali jste žádné objednávky"
139
+
140
+ #: includes/class-wcpdf-main.php:256
141
  msgid "Some of the export parameters are missing."
142
  msgstr "Chybí některé z exportních parametrů."
143
 
144
+ #: includes/class-wcpdf-main.php:341
145
+ #, php-format
146
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
147
+ msgstr "Dokument typu \"%s\" pro vybrané objednávky nebyl vygenerován"
148
+
149
+ #: includes/class-wcpdf-main.php:685
150
+ #: includes/documents/class-wcpdf-invoice.php:255
151
+ msgid "Invoice Date"
152
+ msgstr "Datum faktury"
153
+
154
  #: includes/class-wcpdf-settings-callbacks.php:27
155
  msgid ""
156
  "<b>Warning!</b> The settings below are meant for debugging/development only. "
168
  "Tyto prvky jsou použité jako volitelné části patičky v šabloně <em>Modern "
169
  "(Premium)</em>, ale mohou být v rámci vaší vlastní šablony využity i jinak"
170
 
171
+ #: includes/class-wcpdf-settings-callbacks.php:367
172
  msgid "Image resolution"
173
  msgstr "Rozměry obrázku"
174
 
175
+ #: includes/class-wcpdf-settings-callbacks.php:392
176
  msgid "Save"
177
+ msgstr "Uložit"
178
 
179
+ #: includes/class-wcpdf-settings-debug.php:42
180
+ msgid "Reinstall fonts"
181
+ msgstr "Přeinstalujte písma"
182
+
183
+ #: includes/class-wcpdf-settings-debug.php:63
184
+ msgid "Fonts reinstalled!"
185
+ msgstr "Fonty přeinstalovány!"
186
+
187
+ #: includes/class-wcpdf-settings-debug.php:70
188
+ msgid "Remove temporary files"
189
+ msgstr "Odebrat dočasné soubory"
190
+
191
+ #: includes/class-wcpdf-settings-debug.php:81
192
+ msgid "Unable to read temporary folder contents!"
193
+ msgstr "Nelze číst obsah dočasných složek!"
194
+
195
+ #: includes/class-wcpdf-settings-debug.php:98
196
+ #, php-format
197
+ msgid "Unable to delete %d files! (deleted %d)"
198
+ msgstr "Nelze odstranit %d soubory! (smazáno %d)"
199
+
200
+ #: includes/class-wcpdf-settings-debug.php:101
201
+ #, php-format
202
+ msgid "Successfully deleted %d files!"
203
+ msgstr "Úspěšně odstraněno %d souborů!"
204
+
205
+ #: includes/class-wcpdf-settings-debug.php:105
206
+ msgid "Nothing to delete!"
207
+ msgstr "Nic ke smazání!"
208
+
209
+ #: includes/class-wcpdf-settings-debug.php:114
210
+ msgid "Delete legacy (1.X) settings"
211
+ msgstr "Odstranit starší (1.X) nastavení"
212
+
213
+ #: includes/class-wcpdf-settings-debug.php:130
214
+ msgid "Legacy settings deleted!"
215
+ msgstr "Starší nastavení bylo smazáno!"
216
+
217
+ #: includes/class-wcpdf-settings-debug.php:157
218
  msgid "Debug settings"
219
  msgstr "Nastavení pro ladění"
220
 
221
+ #: includes/class-wcpdf-settings-debug.php:163
222
  msgid "Legacy mode"
223
+ msgstr "Kompatibilní režim"
224
 
225
+ #: includes/class-wcpdf-settings-debug.php:169
226
  msgid ""
227
  "Legacy mode ensures compatibility with templates and filters from previous "
228
  "versions."
229
  msgstr ""
230
+ "Režim Legacy zajišťuje kompatibilitu s šablonami a filtry z předchozích "
231
+ "verzí."
232
+
233
+ #: includes/class-wcpdf-settings-debug.php:175
234
+ msgid "Allow guest access"
235
+ msgstr "Umožnit přístup návštěvníkům"
236
+
237
+ #: includes/class-wcpdf-settings-debug.php:181
238
+ msgid ""
239
+ "Enable this to allow customers that purchase without an account to access "
240
+ "their PDF with a unique key"
241
+ msgstr ""
242
+ "Toto povolte, pokud chcete zákazníkům kteří si objednají bez registrace "
243
+ "konta umožnit přístup k PDF dokumentům prostřednictvím unikátního klíče"
244
 
245
+ #: includes/class-wcpdf-settings-debug.php:187
246
+ msgid "Calculate document numbers (slow)"
247
+ msgstr "Vypočítat čísla dokumentů (pomalé)"
248
+
249
+ #: includes/class-wcpdf-settings-debug.php:193
250
+ msgid ""
251
+ "Document numbers (such as invoice numbers) are generated using "
252
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
253
+ "with more than 1."
254
+ msgstr ""
255
+ "Čísla dokumentů (například čísla faktur) jsou ve výchozím nastavení "
256
+ "generována pomocí funkce AUTO_INCREMENT. Použijte toto nastavení, pokud "
257
+ "databáze zvýší automaticky o více než 1."
258
+
259
+ #: includes/class-wcpdf-settings-debug.php:199
260
  msgid "Enable debug output"
261
  msgstr "Povolit výstup ladění"
262
 
263
+ #: includes/class-wcpdf-settings-debug.php:205
264
  msgid ""
265
  "Enable this option to output plugin errors if you're getting a blank page or "
266
  "other PDF generation issues"
268
  "Povolte toto nastavení pro zobrazení chyb pluginu, pokud se zobrazuje "
269
  "prázdná stránka nebo máte jiný problém s generováním PDF"
270
 
271
+ #: includes/class-wcpdf-settings-debug.php:206
272
+ msgid ""
273
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
274
+ "places on your site too, therefor this is not recommended to leave it "
275
+ "enabled on live sites."
276
+ msgstr ""
277
+ "<b> Upozornění! </b> Toto nastavení může odhalit chyby (z jiných zásuvných "
278
+ "modulů) i na jiných místech vašeho webu, proto se nedoporučuje nechat je "
279
+ "povoleno na produkčních stránkách."
280
+
281
+ #: includes/class-wcpdf-settings-debug.php:212
282
+ msgid "Enable automatic cleanup"
283
+ msgstr "Povolit automatické pročištění"
284
+
285
+ #: includes/class-wcpdf-settings-debug.php:219
286
+ #, php-format
287
+ msgid "every %s days"
288
+ msgstr "každý %s (-tý) den"
289
+
290
+ #: includes/class-wcpdf-settings-debug.php:224
291
+ msgid ""
292
+ "Automatically clean up PDF files stored in the temporary folder (used for "
293
+ "email attachments)"
294
+ msgstr ""
295
+ "Automaticky pročistit PDF soubory uložené ve složkách pro dočasné soubory "
296
+ "(použito pro přílohy emailů)"
297
+
298
+ #: includes/class-wcpdf-settings-debug.php:225
299
+ msgid ""
300
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
301
+ "automatic cleanup but not enabled on your server."
302
+ msgstr ""
303
+ "<b> Zakázáno: </b> Funkce PHP global a filemtime jsou vyžadovány pro "
304
+ "automatické vyčištění, ale nejsou povoleny na vašem serveru."
305
+
306
+ #: includes/class-wcpdf-settings-debug.php:231
307
  msgid "Output to HTML"
308
  msgstr "Výstup do HTML"
309
 
310
+ #: includes/class-wcpdf-settings-debug.php:237
311
  msgid ""
312
  "Send the template output as HTML to the browser instead of creating a PDF."
313
  msgstr "Pošle výstup šablony v HTML do prohlížeče místo vytvoření PDF."
314
 
315
+ #: includes/class-wcpdf-settings-debug.php:243
316
+ msgid "Use alternative HTML5 parser to parse HTML"
317
+ msgstr "Použít alternativní HTML5 parser na analýzu HTML"
318
+
319
+ #: includes/class-wcpdf-settings-documents.php:30
320
+ #: includes/class-wcpdf-settings.php:96
321
  msgid "Documents"
322
+ msgstr "Dokumenty"
323
 
324
+ #: includes/class-wcpdf-settings-documents.php:46
325
  msgid ""
326
  "All available documents are listed below. Click on a document to configure "
327
  "it."
328
  msgstr ""
329
+ "Všechny dostupné dokumenty jsou uvedeny níže. Klikněte na dokument, který "
330
+ "chcete konfigurovat."
331
 
332
+ #: includes/class-wcpdf-settings-general.php:38
333
  msgid "General settings"
334
  msgstr "Všeobecná nastavení"
335
 
336
+ #: includes/class-wcpdf-settings-general.php:44
337
  msgid "How do you want to view the PDF?"
338
  msgstr "Jak chcete zobrazit PDF?"
339
 
340
+ #: includes/class-wcpdf-settings-general.php:51
341
  msgid "Download the PDF"
342
  msgstr "Stáhnout PDF"
343
 
344
+ #: includes/class-wcpdf-settings-general.php:52
345
  msgid "Open the PDF in a new browser tab/window"
346
  msgstr "Otevřít PDF v novém okně"
347
 
348
+ #: includes/class-wcpdf-settings-general.php:59
349
  msgid "Choose a template"
350
  msgstr "Vyberte šablonu"
351
 
352
+ #: includes/class-wcpdf-settings-general.php:66
353
  #, php-format
354
  msgid ""
355
  "Want to use your own template? Copy all the files from <code>%s</code> to "
358
  "Chcete použít vlastní šablonu? Zkopírujte všechny soubory z <code>%s</code> "
359
  "do svého (child) tématu v <code>%s</code> a upravte je podle potřeby"
360
 
361
+ #: includes/class-wcpdf-settings-general.php:72
362
  msgid "Paper size"
363
  msgstr "Velikost papíru"
364
 
365
+ #: includes/class-wcpdf-settings-general.php:79
366
+ #: includes/views/setup-wizard/paper-format.php:12
367
  msgid "A4"
368
  msgstr "A4"
369
 
370
+ #: includes/class-wcpdf-settings-general.php:80
371
+ #: includes/views/setup-wizard/paper-format.php:13
372
  msgid "Letter"
373
+ msgstr "Dopis"
374
 
375
+ #: includes/class-wcpdf-settings-general.php:87
376
+ msgid "Test mode"
377
+ msgstr "Testovací režim"
378
+
379
+ #: includes/class-wcpdf-settings-general.php:93
380
+ msgid ""
381
+ "With test mode enabled, any document generated will always use the latest "
382
+ "settings, rather than using the settings as configured at the time the "
383
+ "document was first created."
384
  msgstr ""
385
+ "Při aktivovaném zkušebním režimu bude každý vygenerovaný dokument vždy "
386
+ "používat nejnovější nastavení, spíše než používat nastavení nakonfigurovaná "
387
+ "v okamžiku, kdy byl dokument vytvořen."
388
 
389
+ #: includes/class-wcpdf-settings-general.php:93
390
+ msgid ""
391
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
392
+ "setting and will still be generated."
393
+ msgstr ""
394
+ "<strong>Poznámka:</strong> čísla a datumy faktur nejsou tímto nastavením "
395
+ "dotčena a budou stále generována."
396
+
397
+ #: includes/class-wcpdf-settings-general.php:99
398
+ msgid "Extended currency symbol support"
399
+ msgstr "Rozšířená podpora symbolů měny"
400
+
401
+ #: includes/class-wcpdf-settings-general.php:105
402
  msgid "Enable this if your currency symbol is not displaying properly"
403
+ msgstr "Povolte tuto možnost, pokud se symbol měny nezobrazuje správně"
404
+
405
+ #: includes/class-wcpdf-settings-general.php:111
406
+ msgid "Enable font subsetting"
407
+ msgstr "Povolit podnastavení písma"
408
+
409
+ #: includes/class-wcpdf-settings-general.php:117
410
+ msgid ""
411
+ "Font subsetting can reduce file size by only including the characters that "
412
+ "are used in the PDF, but limits the ability to edit PDF files later. "
413
+ "Recommended if you're using an Asian font."
414
  msgstr ""
415
+ "Font písma může snížit velikost souboru pouze tím, že obsahuje znaky použité "
416
+ "v PDF, ale omezuje možnost později upravovat soubory PDF. Doporučeno, pokud "
417
+ "používáte asijské písmo."
418
 
419
+ #: includes/class-wcpdf-settings-general.php:123
420
  msgid "Shop header/logo"
421
  msgstr "Hlavička/logo"
422
 
423
+ #: includes/class-wcpdf-settings-general.php:129
424
+ #: includes/views/setup-wizard/logo.php:20
425
  msgid "Select or upload your invoice header/logo"
426
  msgstr "Vyberte nebo nahrajte hlavičku/logo"
427
 
428
+ #: includes/class-wcpdf-settings-general.php:130
429
+ #: includes/views/setup-wizard/logo.php:20
430
  msgid "Set image"
431
  msgstr "Vybrat obrázek"
432
 
433
+ #: includes/class-wcpdf-settings-general.php:131
434
+ #: includes/views/setup-wizard/logo.php:20
435
  msgid "Remove image"
436
  msgstr "Odebrat obrázek"
437
 
438
+ #: includes/class-wcpdf-settings-general.php:138
439
+ #: includes/class-wcpdf-setup-wizard.php:42
440
  msgid "Shop Name"
441
  msgstr "Název obchodu"
442
 
443
+ #: includes/class-wcpdf-settings-general.php:151
444
  msgid "Shop Address"
445
  msgstr "Adresa obchodu"
446
 
447
+ #: includes/class-wcpdf-settings-general.php:166
448
  msgid "Footer: terms & conditions, policies, etc."
449
  msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
450
 
451
+ #: includes/class-wcpdf-settings-general.php:181
452
  msgid "Extra template fields"
453
  msgstr "Extra políčka v šabloně"
454
 
455
+ #: includes/class-wcpdf-settings-general.php:187
456
  msgid "Extra field 1"
457
  msgstr "Extra políčko 1"
458
 
459
+ #: includes/class-wcpdf-settings-general.php:195
460
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
461
  msgstr "Tohle je 1. políčko v patičce šablony <i>Modern (Premium)</i>"
462
 
463
+ #: includes/class-wcpdf-settings-general.php:202
464
  msgid "Extra field 2"
465
  msgstr "Extra políčko 2"
466
 
467
+ #: includes/class-wcpdf-settings-general.php:210
468
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
469
  msgstr "Tohle je 2. políčko v patičce šablony <i>Modern (Premium)</i>"
470
 
471
+ #: includes/class-wcpdf-settings-general.php:217
472
  msgid "Extra field 3"
473
  msgstr "Extra políčko 3"
474
 
475
+ #: includes/class-wcpdf-settings-general.php:225
476
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
477
  msgstr "Tohle je 3. políčko v patičce šablony <i>Modern (Premium)</i>"
478
 
479
+ #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
480
  msgid "PDF Invoices"
481
  msgstr "PDF faktury"
482
 
483
+ #: includes/class-wcpdf-settings.php:61
484
  msgid "Settings"
485
  msgstr "Nastavení"
486
 
487
+ #: includes/class-wcpdf-settings.php:74
488
  msgid "Documentation"
489
+ msgstr "Dokumentace"
490
 
491
+ #: includes/class-wcpdf-settings.php:75
492
  msgid "Support Forum"
493
+ msgstr "Fórum podpory"
494
+
495
+ #: includes/class-wcpdf-settings.php:87
496
+ #, php-format
497
+ msgid ""
498
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
499
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
500
+ "document numbers (slow)' setting in the Status tab to use an alternate "
501
+ "method."
502
  msgstr ""
503
+ "<strong>Upozornění! </strong> Databáze má velikost kroku AUTO_INCREMENT %s, "
504
+ "čísla faktur nemusí být postupná. Aktivujte nastavení \"Vypočítat čísla "
505
+ "dokumentů (pomalé)\" na kartě Stav, abyste použili alternativní metodu."
506
 
507
+ #: includes/class-wcpdf-settings.php:95
508
  msgid "General"
509
  msgstr "Všeobecné"
510
 
511
+ #: includes/class-wcpdf-settings.php:101
512
  msgid "Status"
513
  msgstr "Stav"
514
 
515
+ #: includes/class-wcpdf-setup-wizard.php:46
516
+ #: includes/views/setup-wizard/logo.php:3
517
+ msgid "Your logo"
518
+ msgstr "Vaše logo"
519
+
520
+ #: includes/class-wcpdf-setup-wizard.php:50
521
+ msgid "Attachments"
522
+ msgstr "Přílohy"
523
+
524
+ #: includes/class-wcpdf-setup-wizard.php:54
525
+ #: includes/views/setup-wizard/display-options.php:3
526
+ msgid "Display options"
527
+ msgstr "Možnosti zobrazení"
528
+
529
+ #: includes/class-wcpdf-setup-wizard.php:58
530
+ #: includes/views/setup-wizard/paper-format.php:3
531
+ msgid "Paper format"
532
+ msgstr "Formát papíru"
533
+
534
+ #: includes/class-wcpdf-setup-wizard.php:62
535
+ #: includes/views/setup-wizard/show-action-buttons.php:3
536
+ msgid "Action buttons"
537
+ msgstr "Tlačítka akcí"
538
+
539
+ #: includes/class-wcpdf-setup-wizard.php:66
540
+ msgid "Ready!"
541
+ msgstr "Připraveno!"
542
+
543
+ #: includes/class-wcpdf-setup-wizard.php:180
544
+ msgid "Previous"
545
+ msgstr "Předchozí"
546
+
547
+ #: includes/class-wcpdf-setup-wizard.php:186
548
+ msgid "Skip this step"
549
+ msgstr "Přeskočit"
550
+
551
+ #: includes/class-wcpdf-setup-wizard.php:188
552
+ msgid "Finish"
553
+ msgstr "Dokončit"
554
+
555
  #: includes/compatibility/class-wc-core-compatibility.php:222
556
  msgid "WooCommerce"
557
+ msgstr "WooCommerce"
558
 
559
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
560
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
561
  msgid "N/A"
562
  msgstr "Není k dispozici"
563
 
564
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
565
  msgid "Payment method"
566
  msgstr "Platební metoda"
567
 
568
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
569
  msgid "Shipping method"
570
  msgstr "Doručovací metoda"
571
 
572
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:862
573
  #, php-format
574
  msgid "(includes %s)"
575
+ msgstr "(zahrnuje %s)"
576
 
577
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:865
578
  #, php-format
579
  msgid "(Includes %s)"
580
+ msgstr "(Zahrnuje %s)"
581
 
582
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:895
583
  msgid "Subtotal"
584
  msgstr "Mezisoučet"
585
 
586
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:920
587
  msgid "Shipping"
588
  msgstr "Doprava"
589
 
590
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:983
591
  msgid "Discount"
592
  msgstr "Sleva"
593
 
594
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1024
595
  msgid "VAT"
596
  msgstr "DPH"
597
 
598
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1025
599
  msgid "Tax rate"
600
  msgstr "Daňová sazba"
601
 
602
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1069
603
  msgid "Total ex. VAT"
604
  msgstr "Celkem bez DPH"
605
 
606
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1072
607
  msgid "Total"
608
  msgstr "Celkem"
609
 
610
+ #: includes/documents/abstract-wcpdf-order-document.php:782
611
  msgid "Admin email"
612
+ msgstr "Admin email"
613
 
614
+ #: includes/documents/abstract-wcpdf-order-document.php:785
615
  msgid "Manual email"
616
+ msgstr "Manuální email"
617
 
618
+ #: includes/documents/class-wcpdf-invoice.php:32
619
+ #: includes/documents/class-wcpdf-invoice.php:56
620
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
621
+ msgid "Invoice"
622
+ msgstr "Faktura"
623
+
624
+ #: includes/documents/class-wcpdf-invoice.php:129
625
  msgid "invoice"
626
  msgid_plural "invoices"
627
  msgstr[0] "faktura"
628
  msgstr[1] "faktury"
629
  msgstr[2] "faktur"
630
 
631
+ #: includes/documents/class-wcpdf-invoice.php:174
632
+ #: includes/documents/class-wcpdf-packing-slip.php:88
633
  msgid "Enable"
634
+ msgstr "Zapnout"
635
 
636
+ #: includes/documents/class-wcpdf-invoice.php:185
637
  msgid "Attach to:"
638
+ msgstr "Připojit k:"
639
 
640
+ #: includes/documents/class-wcpdf-invoice.php:192
641
  #, php-format
642
  msgid ""
643
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
648
  "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky "
649
  "nebude možné odesílat faktury e-mailem."
650
 
651
+ #: includes/documents/class-wcpdf-invoice.php:198
652
+ msgid "Disable for:"
653
+ msgstr "Vypnout pro:"
654
+
655
+ #: includes/documents/class-wcpdf-invoice.php:207
656
+ msgid "Select one or more statuses"
657
+ msgstr "Zvolte jeden nebo více stavů"
658
+
659
+ #: includes/documents/class-wcpdf-invoice.php:213
660
+ #: includes/views/setup-wizard/display-options.php:11
661
  msgid "Display shipping address"
662
  msgstr "Zobrazit doručovací adresu"
663
 
664
+ #: includes/documents/class-wcpdf-invoice.php:219
665
  msgid ""
666
  "Display shipping address (in addition to the default billing address) if "
667
  "different from billing address"
668
  msgstr ""
669
+ "Zobrazit doručovací adresu na faktuře (společně s fakturační adresou), pokud "
670
+ "se liší"
671
 
672
+ #: includes/documents/class-wcpdf-invoice.php:225
673
+ #: includes/documents/class-wcpdf-packing-slip.php:111
674
+ #: includes/views/setup-wizard/display-options.php:13
675
  msgid "Display email address"
676
  msgstr "Zobrazit emailovou adresu"
677
 
678
+ #: includes/documents/class-wcpdf-invoice.php:236
679
+ #: includes/documents/class-wcpdf-packing-slip.php:122
680
+ #: includes/views/setup-wizard/display-options.php:15
681
  msgid "Display phone number"
682
  msgstr "Zobrazit telefonní číslo"
683
 
684
+ #: includes/documents/class-wcpdf-invoice.php:247
685
+ #: includes/views/setup-wizard/display-options.php:17
686
  msgid "Display invoice date"
687
  msgstr "Zobrazit datum fakturace"
688
 
689
+ #: includes/documents/class-wcpdf-invoice.php:254
690
+ #: includes/documents/class-wcpdf-invoice.php:270
691
+ msgid "No"
692
+ msgstr "Ne"
693
+
694
+ #: includes/documents/class-wcpdf-invoice.php:256
695
+ msgid "Order Date"
696
+ msgstr "Datum objednávky"
697
+
698
+ #: includes/documents/class-wcpdf-invoice.php:263
699
+ #: includes/views/setup-wizard/display-options.php:19
700
  msgid "Display invoice number"
701
+ msgstr "Zobrazte číslo faktury"
702
+
703
+ #: includes/documents/class-wcpdf-invoice.php:272
704
+ msgid "Order Number"
705
+ msgstr "Číslo objednávky"
706
+
707
+ #: includes/documents/class-wcpdf-invoice.php:276
708
+ msgid "Warning!"
709
+ msgstr "Upozornění!"
710
+
711
+ #: includes/documents/class-wcpdf-invoice.php:277
712
+ msgid ""
713
+ "Using the Order Number as invoice number is not recommended as this may lead "
714
+ "to gaps in the invoice number sequence (even when order numbers are "
715
+ "sequential)."
716
  msgstr ""
717
+ "Nedoporučujeme používat číslo objednávky pro číslo faktury, protože to může "
718
+ "vést k mezerám v číslování (přestože je číslování objednávek posloupné)."
719
+
720
+ #: includes/documents/class-wcpdf-invoice.php:278
721
+ msgid "More information"
722
+ msgstr "Více informací"
723
 
724
+ #: includes/documents/class-wcpdf-invoice.php:285
725
  msgid "Next invoice number (without prefix/suffix etc.)"
726
  msgstr "Další číslo faktury (bez předpony/přípony)"
727
 
728
+ #: includes/documents/class-wcpdf-invoice.php:291
729
  msgid ""
730
  "This is the number that will be used for the next document. By default, "
731
  "numbering starts from 1 and increases for every new document. Note that if "
732
  "you override this and set it lower than the current/highest number, this "
733
  "could create duplicate numbers!"
734
  msgstr ""
735
+ "Toto je číslo, které bude použito pro další dokument. Ve výchozím nastavení "
736
+ "začíná číslování od 1 a zvyšuje se pro každý nový dokument. Všimněte si, že "
737
+ "pokud to přepíšete a nastavíte jej nižší než aktuální / nejvyšší číslo, "
738
+ "mohlo by to vytvořit duplicitní čísla!"
739
 
740
+ #: includes/documents/class-wcpdf-invoice.php:297
741
  msgid "Number format"
742
+ msgstr "Formát čísel"
743
 
744
+ #: includes/documents/class-wcpdf-invoice.php:305
745
  msgid "Prefix"
746
  msgstr "Předpona"
747
 
748
+ #: includes/documents/class-wcpdf-invoice.php:307
749
  msgid ""
750
  "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
751
  "respectively"
752
+ msgstr "použijte [order_year] pro rok a [order_month] pro měsíc objednání"
753
 
754
+ #: includes/documents/class-wcpdf-invoice.php:310
755
  msgid "Suffix"
756
  msgstr "Přípona"
757
 
758
+ #: includes/documents/class-wcpdf-invoice.php:315
759
  msgid "Padding"
760
  msgstr "Výplň"
761
 
762
+ #: includes/documents/class-wcpdf-invoice.php:318
763
  msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
764
  msgstr ""
765
  "zde vložte počet číslic - napište \"6\", aby se 42 zobrazilo jako 000042"
766
 
767
+ #: includes/documents/class-wcpdf-invoice.php:321
768
  msgid ""
769
  "note: if you have already created a custom invoice number format with a "
770
  "filter, the above settings will be ignored"
772
  "poznámka: pokud jste si už nastavili vlastní číslování faktur pomocí filtru, "
773
  "výše uvedená nastavení budou ignorována"
774
 
775
+ #: includes/documents/class-wcpdf-invoice.php:327
776
  msgid "Reset invoice number yearly"
777
+ msgstr "Obnovit číslování faktur ročně"
778
 
779
+ #: includes/documents/class-wcpdf-invoice.php:338
780
  msgid "Allow My Account invoice download"
781
  msgstr "Umožnit stažení faktury na stránce Můj účet"
782
 
783
+ #: includes/documents/class-wcpdf-invoice.php:345
784
  msgid "Only when an invoice is already created/emailed"
785
  msgstr "Pouze když už byla faktura vytvořena/odeslána"
786
 
787
+ #: includes/documents/class-wcpdf-invoice.php:346
788
  msgid "Only for specific order statuses (define below)"
789
  msgstr "Pouze pro určité stavy objednávek (definujte níže)"
790
 
791
+ #: includes/documents/class-wcpdf-invoice.php:347
792
  msgid "Always"
793
  msgstr "Vždy"
794
 
795
+ #: includes/documents/class-wcpdf-invoice.php:348
796
  msgid "Never"
797
+ msgstr "Nikdy"
798
 
799
+ #: includes/documents/class-wcpdf-invoice.php:363
800
  msgid "Enable invoice number column in the orders list"
801
  msgstr "Zobrazit v seznamu objednávek sloupec s čísly faktur"
802
 
803
+ #: includes/documents/class-wcpdf-invoice.php:374
804
  msgid "Disable for free products"
805
  msgstr "Vypnout u produktů zdarma"
806
 
807
+ #: includes/documents/class-wcpdf-invoice.php:380
808
  msgid ""
809
  "Disable automatic creation/attachment when only free products are ordered"
810
  msgstr ""
811
+ "Vypnout automatické vytváření/přikládání faktur pokud byly objednány pouze "
812
+ "produkty zdarma"
813
 
814
+ #: includes/documents/class-wcpdf-invoice.php:386
815
+ msgid "Always use most current settings"
816
+ msgstr "Vždy používat nejaktuálnější nastavení"
817
+
818
+ #: includes/documents/class-wcpdf-invoice.php:392
819
+ msgid ""
820
+ "When enabled, the document will always reflect the most current settings "
821
+ "(such as footer text, document name, etc.) rather than using historical "
822
+ "settings."
823
  msgstr ""
824
+ "Pokud je tato funkce povolena, dokument bude vždy odrážet nejaktuálnější "
825
+ "nastavení (například text zápatí, název dokumentu atd.), Nikoli pomocí "
826
+ "historických nastavení."
827
 
828
+ #: includes/documents/class-wcpdf-invoice.php:394
829
+ msgid ""
830
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
831
+ "your company name or address in the future, previously generated documents "
832
+ "will also be affected."
833
+ msgstr ""
834
+ "<strong> Upozornění: </strong> povolíte také, že pokud změníte název vaší "
835
+ "firmy nebo adresu v budoucnu, budou také ovlivněny dříve generované "
836
+ "dokumenty."
837
+
838
+ #: includes/documents/class-wcpdf-invoice.php:407
839
+ msgid "Invoice numbers are created by a third-party extension."
840
+ msgstr "Čísla faktur jsou vytvářena rozšířením třetí strany."
841
+
842
+ #: includes/documents/class-wcpdf-invoice.php:409
843
  #, php-format
844
  msgid "Configure it <a href=\"%s\">here</a>."
845
+ msgstr "Nakonfigurujte jej <a href=\"%s\"> zde </a>."
846
 
847
  #: includes/documents/class-wcpdf-packing-slip.php:32
848
  #: includes/documents/class-wcpdf-packing-slip.php:41
849
  #: includes/legacy/class-wcpdf-legacy-functions.php:25
 
850
  msgid "Packing Slip"
851
  msgstr "Dodací List"
852
 
853
+ #: includes/documents/class-wcpdf-packing-slip.php:47
 
854
  msgid "packing-slip"
855
  msgid_plural "packing-slips"
856
  msgstr[0] "dodací list"
857
  msgstr[1] "dodací listy"
858
  msgstr[2] "dodacích listů"
859
 
860
+ #: includes/documents/class-wcpdf-packing-slip.php:99
861
  msgid "Display billing address"
862
  msgstr "Zobrazit fakturační adresu"
863
 
864
+ #: includes/documents/class-wcpdf-packing-slip.php:105
865
  msgid ""
866
  "Display billing address (in addition to the default shipping address) if "
867
  "different from shipping address"
868
  msgstr ""
869
+ "Zobrazit fakturační adresu na dodacím listu (společně s doručovací adresou), "
870
+ "pokud se liší"
871
 
872
  #: includes/legacy/class-wcpdf-legacy-document.php:32
873
  msgid "Legacy Document"
874
+ msgstr "Starší dokument"
875
+
876
+ #: includes/legacy/class-wcpdf-legacy.php:72
877
+ msgid "Error"
878
+ msgstr "Chyba"
879
+
880
+ #: includes/legacy/class-wcpdf-legacy.php:73
881
+ msgid ""
882
+ "An outdated template or action hook was used to generate the PDF. Legacy "
883
+ "mode has been activated, please try again by reloading this page."
884
+ msgstr ""
885
+ "Za účelem vytvoření PDF byla použita zastaralá šablona nebo akční hák. "
886
+ "Starší režim byl aktivován, zkuste znovu znovu načtěte tuto stránku."
887
+
888
+ #: includes/legacy/class-wcpdf-legacy.php:76
889
+ msgid "The following function was called"
890
+ msgstr "Byla vyvolána následující funkce"
891
+
892
+ #: includes/views/attachment-settings-hint.php:22
893
+ #, php-format
894
+ msgid ""
895
+ "It looks like you haven't setup any email attachments yet, check the "
896
+ "settings under <b>%sDocuments > Invoice%s</b>"
897
+ msgstr ""
898
+ "Zdá se, že jste ještě nenastavili žádné e-mailové přílohy, zkontrolujte "
899
+ "nastavení v části <b>%s Dokumenty> Faktura%s</b>"
900
+
901
+ #: includes/views/setup-wizard/attach-to.php:3
902
+ msgid "Attach too..."
903
+ msgstr "Připojte se také ..."
904
+
905
+ #: includes/views/setup-wizard/attach-to.php:4
906
+ msgid "Select to which emails you would like to attach your invoice."
907
+ msgstr "Vyberte, ke kterým emailům byste chtěli připojit fakturu."
908
+
909
+ #: includes/views/setup-wizard/display-options.php:4
910
+ msgid "Select some additional display options for your invoice."
911
+ msgstr "Vyberte další možnosti zobrazení faktury."
912
+
913
+ #: includes/views/setup-wizard/good-to-go.php:3
914
+ msgid "You are good to go!"
915
+ msgstr "Můžeš jít!"
916
+
917
+ #: includes/views/setup-wizard/good-to-go.php:4
918
+ msgid "If you have any questions please have a look at our documentation:"
919
+ msgstr "Pokud máte nějaké dotazy, prosím prohlédněte si dokumentaci:"
920
+
921
+ #: includes/views/setup-wizard/good-to-go.php:5
922
+ msgid "Invoices & Packing Slips"
923
+ msgstr "Faktury a dodací listy"
924
+
925
+ #: includes/views/setup-wizard/good-to-go.php:6
926
+ msgid "Happy selling!"
927
+ msgstr "Šťastný prodej!"
928
+
929
+ #: includes/views/setup-wizard/logo.php:4
930
+ msgid "Set the header image that will display on your invoice."
931
+ msgstr "Nastavte obrázek záhlaví, který se zobrazí na faktuře."
932
+
933
+ #: includes/views/setup-wizard/paper-format.php:4
934
+ msgid "Select the paper format for your invoice."
935
+ msgstr "Vyberte formát papíru pro vaše faktury."
936
+
937
+ #: includes/views/setup-wizard/shop-name.php:3
938
+ msgid "Enter your shop name"
939
+ msgstr "Zadejte jméno obchodu"
940
+
941
+ #: includes/views/setup-wizard/shop-name.php:4
942
+ msgid ""
943
+ "Lets quickly setup your invoice. Please enter the name and address of your "
944
+ "shop in the fields on the right."
945
+ msgstr ""
946
+ "Nastavme rychle fakturaci. Prosím zadejte jméno a adresu vašeho obchodu do "
947
+ "položek na pravé straně."
948
+
949
+ #: includes/views/setup-wizard/show-action-buttons.php:4
950
+ msgid ""
951
+ "Would you like to display the action buttons in your WooCommerce order list? "
952
+ "The action buttons allow you to manually create a PDF."
953
  msgstr ""
954
+ "Přejete si zobrazovat tlačítka akcí ve WooCommerce přehledu objednávek? "
955
+ "Tlačítka akcí vám umožní ručně vytvořit PDF."
956
 
957
+ #: includes/views/setup-wizard/show-action-buttons.php:5
958
+ msgid "(You can always change this setting later via the Screen Options menu)"
959
+ msgstr ""
960
+ "(Toto nastavení můžete později změnit přes Nastavení zobrazených informací)"
961
+
962
+ #: includes/views/setup-wizard/show-action-buttons.php:18
963
+ msgid "Show action buttons"
964
+ msgstr "Zobrazit tlačítka akcí"
965
+
966
+ #: includes/views/wcpdf-extensions.php:16
967
  msgid "Check out these premium extensions!"
968
  msgstr "Vyzkoušejte tato prémiová rozšíření!"
969
 
970
+ #: includes/views/wcpdf-extensions.php:17
971
  msgid "click items to read more"
972
  msgstr "pro více informací klikněte na položky"
973
 
974
+ #: includes/views/wcpdf-extensions.php:22
975
  msgid ""
976
  "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
977
  "system"
978
  msgstr ""
979
+ "Premium PDF Balíček faktur: Vše, co potřebujete pro dokonalý systém fakturace"
980
 
981
+ #: includes/views/wcpdf-extensions.php:24
982
  msgid ""
983
  "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
984
  "premium extensions:"
985
  msgstr ""
986
+ "Supercharge WooCommerce PDF faktury a balíčky s našimi prémiovými "
987
+ "rozšířeními:"
988
 
989
+ #: includes/views/wcpdf-extensions.php:25
990
  msgid "Professional features:"
991
+ msgstr "Profesionální funkce:"
992
 
993
+ #: includes/views/wcpdf-extensions.php:27
994
+ #: includes/views/wcpdf-extensions.php:57
995
  msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
996
  msgstr "Mailujte/tiskněte/stahujte <b>PDF dobropisy a proforma faktury</b>"
997
 
998
+ #: includes/views/wcpdf-extensions.php:28
999
+ #: includes/views/wcpdf-extensions.php:58
1000
  msgid ""
1001
  "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1002
  "packing slips, for example to a drop-shipper or a supplier."
1004
  "Posílejte zvláštní <b>notifikační email</b> s (nebo bez) PDF fakturami/"
1005
  "dodacími listy, např. pro drop-shippera nebo dodavatele."
1006
 
1007
+ #: includes/views/wcpdf-extensions.php:29
1008
+ #: includes/views/wcpdf-extensions.php:59
1009
  msgid ""
1010
  "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1011
  "document) to the WooCommerce emails of your choice."
1013
  "Přikládejte k vybraným WooCommerce emailům <b>až 3 statické soubory</b> "
1014
  "(např. dokument s obchodními podmínkami)."
1015
 
1016
+ #: includes/views/wcpdf-extensions.php:30
1017
+ #: includes/views/wcpdf-extensions.php:60
1018
  msgid ""
1019
  "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1020
  "and credit notes or utilize the main invoice numbering system"
1022
  "Používejte <b>samostatné číslování</b> a/nebo formát proforma faktur a "
1023
  "dobropisů nebo používejte hlavní číslování"
1024
 
1025
+ #: includes/views/wcpdf-extensions.php:31
1026
+ #: includes/views/wcpdf-extensions.php:61
1027
  msgid ""
1028
  "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1029
  "additional custom fields, font sizes etc. without the need to create a "
1033
  "další vlastní pole, velikosti písma, atd. bez nutnosti vytvářet vlastní "
1034
  "šablonu."
1035
 
1036
+ #: includes/views/wcpdf-extensions.php:32
1037
+ #: includes/views/wcpdf-extensions.php:62
1038
  msgid "Use the plugin in multilingual <b>WPML</b> setups"
1039
  msgstr "Používejte plugin v multijazyčném nastavení <b>WPML</b>"
1040
 
1041
+ #: includes/views/wcpdf-extensions.php:34
1042
+ #: includes/views/wcpdf-extensions.php:114
1043
  msgid "Advanced, customizable templates"
1044
+ msgstr "Pokročilé, přizpůsobitelné šablony"
1045
 
1046
+ #: includes/views/wcpdf-extensions.php:36
1047
+ #: includes/views/wcpdf-extensions.php:117
1048
  msgid ""
1049
  "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1050
  "your needs with a drag & drop customizer"
1051
  msgstr ""
1052
+ "Přizpůsobte si kompletní obsah faktur (ceny, daně, náhledové obrázky) vašim "
1053
+ "potřebám pomocí jednoduchého editoru"
1054
 
1055
+ #: includes/views/wcpdf-extensions.php:37
1056
+ #: includes/views/wcpdf-extensions.php:118
1057
  msgid "Two extra stylish premade templates (Modern & Business)"
1058
+ msgstr "Další dvě stylisticky připravené šablony (Modern a Business)"
1059
 
1060
+ #: includes/views/wcpdf-extensions.php:39
1061
+ #: includes/views/wcpdf-extensions.php:63
1062
  msgid "Upload automatically to dropbox"
1063
+ msgstr "Nahrát automaticky do dropboxu"
1064
 
1065
+ #: includes/views/wcpdf-extensions.php:41
 
1066
  msgid ""
1067
  "This extension conveniently uploads all the invoices (and other pdf "
1068
  "documents from the professional extension) that are emailed to your "
1070
  "date!"
1071
  msgstr ""
1072
  "Toto rozšíření umožňuje pohodlně nahrávat do Dropboxu všechny faktury (a "
1073
+ "další pdf dokumenty z profi rozšíření), které jsou posílány zákazníkovi. "
1074
+ "Nejlepší způsob, jak udržet správu fakturu v aktuální podobě!"
1075
 
1076
+ #: includes/views/wcpdf-extensions.php:44
1077
  msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1078
+ msgstr "Získejte WooCommerce PDF faktury a balíček doplňků"
1079
 
1080
+ #: includes/views/wcpdf-extensions.php:53
1081
  msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1082
  msgstr "Pro verze: proforma faktury, dobropisy a další!"
1083
 
1084
+ #: includes/views/wcpdf-extensions.php:55
1085
  msgid ""
1086
  "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1087
  "features:"
1088
  msgstr "Nabijte WooCommerce PDF Invoices & Packing Slips těmito funkcemi:"
1089
 
1090
+ #: includes/views/wcpdf-extensions.php:65
1091
  msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1092
  msgstr "Získejte WooCommerce PDF Invoices & Packing Slips Professional!"
1093
 
1094
+ #: includes/views/wcpdf-extensions.php:73
1095
  msgid "Automatically send payment reminders to your customers"
1096
+ msgstr "Automaticky posílejte připomenutí plateb vašim zákazníkům"
1097
 
1098
+ #: includes/views/wcpdf-extensions.php:75
1099
  msgid "WooCommerce Smart Reminder emails"
1100
+ msgstr "WooCommerce Smart Reminder e-maily"
1101
 
1102
+ #: includes/views/wcpdf-extensions.php:77
1103
  msgid "<b>Completely automatic</b> scheduled emails"
1104
+ msgstr "<b> Plně automatické </b> plánované e-maily"
1105
 
1106
+ #: includes/views/wcpdf-extensions.php:78
1107
  msgid ""
1108
  "<b>Rich text editor</b> for the email text, including placeholders for data "
1109
  "from the order (name, order total, etc)"
1110
  msgstr ""
1111
+ "<b> Textový editor s rozšířeným textem </b> pro text e-mailu včetně "
1112
+ "zástupných symbolů pro data z objednávky (název, celkový počet objednávek "
1113
+ "atd.)"
1114
 
1115
+ #: includes/views/wcpdf-extensions.php:79
1116
  msgid ""
1117
  "Configure the exact requirements for sending an email (time after order, "
1118
  "order status, payment method)"
1119
  msgstr ""
1120
+ "Konfigurovat přesné požadavky na odeslání e-mailu (čas po objednávce, stav "
1121
+ "objednávky, způsob platby)"
1122
 
1123
+ #: includes/views/wcpdf-extensions.php:80
1124
  msgid ""
1125
  "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1126
  "order language."
1127
  msgstr ""
1128
+ "Plně <b> Kompatibilní s WPML</b> - emaily budou automaticky odeslány v "
1129
+ "jazyce objednávky."
1130
 
1131
+ #: includes/views/wcpdf-extensions.php:81
1132
  msgid ""
1133
  "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1134
  "reminders, repeat purchases)"
1135
  msgstr ""
1136
+ "<b> Velmi univerzální! </b> Lze použít pro jakýkoli druh upomínací e-mailové "
1137
+ "zprávy (přehledy připomenutí, opakované nákupy)"
1138
 
1139
+ #: includes/views/wcpdf-extensions.php:82
1140
  msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1141
+ msgstr "Bezproblémová integrace s pluginem PDF Faktury a balíčky svazků"
1142
 
1143
+ #: includes/views/wcpdf-extensions.php:84
1144
  msgid "Get WooCommerce Smart Reminder Emails"
1145
+ msgstr "Získejte e-maily Smart Reminder společnosti WooCommerce"
1146
 
1147
+ #: includes/views/wcpdf-extensions.php:93
 
 
 
 
 
 
 
 
1148
  msgid ""
1149
  "Automatically send new orders or packing slips to your printer, as soon as "
1150
  "the customer orders!"
1152
  "Posílejte automaticky nové objednávky nebo dodací listy na svou tiskárnu, "
1153
  "jakmile si zákazník objedná!"
1154
 
1155
+ #: includes/views/wcpdf-extensions.php:99
1156
  msgid ""
1157
  "Check out the WooCommerce Automatic Order Printing extension from our "
1158
  "partners at Simba Hosting"
1160
  "Vyzkoušejte rozšíření WooCommerce Automatic Order Printing od našich "
1161
  "partnerů ze Simba Hosting"
1162
 
1163
+ #: includes/views/wcpdf-extensions.php:100
1164
  msgid "WooCommerce Automatic Order Printing"
1165
+ msgstr "WooCommerce automatizovaný tisk objednávek"
1166
 
1167
+ #: includes/views/wcpdf-extensions.php:119
1168
  #, php-format
1169
  msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1170
  msgstr "Vyzkoušejte Premium PDF Invoice & Packing Slips šablony na %s."
1171
 
1172
+ #: includes/views/wcpdf-extensions.php:120
1173
  #, php-format
1174
  msgid "For custom templates, contact us at %s."
1175
  msgstr "Ohledně vlastních šablon nás kontaktujte na %s."
1176
 
1177
+ #: includes/views/wcpdf-settings-page.php:9
 
 
 
 
1178
  msgid "WooCommerce PDF Invoices"
1179
  msgstr "WooCommerce PDF faktury"
1180
 
1181
+ #: includes/wcpdf-functions.php:208
1182
+ msgid "Error creating PDF, please contact the site owner."
1183
+ msgstr "Při vytváření PDF nastala chyba, prosím kontaktujte vlastníka webu."
1184
+
1185
+ #: templates/Simple/invoice.php:31 templates/Simple/packing-slip.php:44
1186
  msgid "Billing Address:"
1187
  msgstr "Fakturační adresa:"
1188
 
1189
+ #: templates/Simple/invoice.php:44
1190
  msgid "Ship To:"
1191
  msgstr "Odeslat na:"
1192
 
1193
+ #: templates/Simple/invoice.php:55
1194
  msgid "Invoice Number:"
1195
  msgstr "Číslo faktury:"
1196
 
1197
+ #: templates/Simple/invoice.php:66 templates/Simple/packing-slip.php:54
1198
  msgid "Order Number:"
1199
  msgstr "Číslo objednávky:"
1200
 
1201
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1202
  msgid "Order Date:"
1203
  msgstr "Datum objednávky:"
1204
 
1205
+ #: templates/Simple/invoice.php:74
1206
  msgid "Payment Method:"
1207
  msgstr "Způsob platby:"
1208
 
1209
+ #: templates/Simple/invoice.php:88 templates/Simple/packing-slip.php:76
1210
  msgid "Product"
1211
  msgstr "Zboží"
1212
 
1213
+ #: templates/Simple/invoice.php:89 templates/Simple/packing-slip.php:77
1214
  msgid "Quantity"
1215
  msgstr "Množství"
1216
 
1217
+ #: templates/Simple/invoice.php:90
1218
  msgid "Price"
1219
  msgstr "Cena"
1220
 
1221
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
1222
  msgid "Description"
1223
  msgstr "Popis"
1224
 
1225
+ #: templates/Simple/invoice.php:102 templates/Simple/packing-slip.php:89
1226
  msgid "SKU"
1227
  msgstr "SKU"
1228
 
1229
+ #: templates/Simple/invoice.php:103 templates/Simple/packing-slip.php:90
1230
  msgid "SKU:"
1231
  msgstr "SKU:"
1232
 
1233
+ #: templates/Simple/invoice.php:104 templates/Simple/packing-slip.php:91
1234
  msgid "Weight:"
1235
  msgstr "Hmotnost:"
1236
 
1237
+ #: templates/Simple/invoice.php:119 templates/Simple/packing-slip.php:106
1238
  msgid "Customer Notes"
1239
  msgstr "Poznámka zákazníka"
1240
 
1241
+ #: templates/Simple/packing-slip.php:31
1242
  msgid "Shipping Address:"
1243
  msgstr "Doručovací adresa:"
1244
 
1245
+ #: templates/Simple/packing-slip.php:62
1246
  msgid "Shipping Method:"
1247
  msgstr "Doručovací metoda:"
1248
 
1249
+ #: woocommerce-pdf-invoices-packingslips.php:238
1250
  #, php-format
1251
  msgid ""
1252
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1253
  "installed & activated!"
1254
  msgstr ""
1255
  "WooCommerce PDF Invoices & Packing Slips vyžaduje nainstalovaný a aktivovaný "
1256
+ "plugin %sWooCommerce%s!"
1257
 
1258
+ #: woocommerce-pdf-invoices-packingslips.php:250
1259
  msgid ""
1260
  "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
1261
  "higher recommended)."
1262
  msgstr ""
1263
+ "WooCommerce PDF Faktury a balicí vyžadují PHP 5.3 nebo vyšší (doporučujeme "
1264
+ "5.6 nebo vyšší)."
1265
 
1266
+ #: woocommerce-pdf-invoices-packingslips.php:251
1267
  msgid "How to update your PHP version"
1268
+ msgstr "Jak aktualizovat verzi PHP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1269
 
1270
+ #~ msgid "Next"
1271
+ #~ msgstr "Další"
1272
 
1273
+ #~ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
1274
+ #~ msgstr "WooCommerce PDF faktury a dodací listy &rsaquo; Průvodce instalací"
1275
 
1276
+ #~ msgid "Save order & send email"
1277
+ #~ msgstr "Uložit objednávku a odeslat email"
1278
 
1279
+ #~ msgid "Ewout Fernhout"
1280
+ #~ msgstr "Ewout Fernhout"
 
 
 
 
 
1281
 
1282
  #~ msgid ""
1283
+ #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
 
 
1284
  #~ msgstr ""
1285
+ #~ "Vytváří, tiskne a posílá emailem faktury v PDF a dodací listy k "
1286
+ #~ "WooCommerce objednávkám."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1287
 
1288
+ #~ msgid "http://www.wpovernight.com"
1289
+ #~ msgstr "http://www.wpovernight.com"
1290
 
1291
+ #~ msgid "WooCommerce PDF Invoices & Packing Slips"
1292
+ #~ msgstr "WooCommerce PDF faktury & dodací listy"
1293
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-pdf-invoices-packing-slips-lv.mo ADDED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-lv.po ADDED
@@ -0,0 +1,1311 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2019-12-11 15:16+0100\n"
5
+ "PO-Revision-Date: 2019-12-11 15:17+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: lv\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.1\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=3; plural=(n%10==0 || (n%100>=11 && n%100<=19) ? 0 : n"
15
+ "%10==1 && n%100!=11 ? 1 : 2);\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-admin.php:82
21
+ #, php-format
22
+ msgid "Wow, you have created more than %d invoices with our plugin!"
23
+ msgstr ""
24
+
25
+ #: includes/class-wcpdf-admin.php:83
26
+ msgid ""
27
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
28
+ "rating. Help us spread the word and boost our motivation!"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:85
32
+ msgid "Yes you deserve it!"
33
+ msgstr ""
34
+
35
+ #: includes/class-wcpdf-admin.php:86
36
+ #: includes/views/attachment-settings-hint.php:23
37
+ #: includes/views/wcpdf-extensions.php:129
38
+ msgid "Hide this message"
39
+ msgstr ""
40
+
41
+ #: includes/class-wcpdf-admin.php:86
42
+ msgid "Already did!"
43
+ msgstr ""
44
+
45
+ #: includes/class-wcpdf-admin.php:87
46
+ msgid "Actually, I have a complaint..."
47
+ msgstr ""
48
+
49
+ #: includes/class-wcpdf-admin.php:122
50
+ #, fuzzy
51
+ #| msgid "WooCommerce PDF Invoices"
52
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
53
+ msgstr "WooCommerce PDF Pavadzīmes"
54
+
55
+ #: includes/class-wcpdf-admin.php:122
56
+ msgid "Jumpstart the plugin by following our wizard!"
57
+ msgstr ""
58
+
59
+ #: includes/class-wcpdf-admin.php:123
60
+ msgid "Run the Setup Wizard"
61
+ msgstr ""
62
+
63
+ #: includes/class-wcpdf-admin.php:123
64
+ msgid "I am the wizard"
65
+ msgstr ""
66
+
67
+ #: includes/class-wcpdf-admin.php:211 includes/class-wcpdf-admin.php:377
68
+ #: includes/class-wcpdf-main.php:684
69
+ #: includes/documents/class-wcpdf-invoice.php:271
70
+ msgid "Invoice Number"
71
+ msgstr "Pavadzīmes Numurs"
72
+
73
+ #: includes/class-wcpdf-admin.php:248
74
+ #, fuzzy
75
+ #| msgid "Admin New Order email"
76
+ msgid "Send order email"
77
+ msgstr "Administratora \"jauna pasūtījuma\" e-pastam"
78
+
79
+ #: includes/class-wcpdf-admin.php:259
80
+ msgid "Create PDF"
81
+ msgstr "Izveidot PDF"
82
+
83
+ #: includes/class-wcpdf-admin.php:269
84
+ #, fuzzy
85
+ #| msgid "PDF Invoices"
86
+ msgid "PDF Invoice data"
87
+ msgstr "PDF Pavadzīmes"
88
+
89
+ #: includes/class-wcpdf-admin.php:309
90
+ msgid "Send email"
91
+ msgstr ""
92
+
93
+ #: includes/class-wcpdf-admin.php:386 includes/class-wcpdf-admin.php:407
94
+ #: templates/Simple/invoice.php:61
95
+ msgid "Invoice Date:"
96
+ msgstr "Pavadzīmes Datums:"
97
+
98
+ #: includes/class-wcpdf-admin.php:392
99
+ #, fuzzy
100
+ #| msgid "Invoice number format"
101
+ msgid "Set invoice number & date"
102
+ msgstr "Pavadzīmes numura formāts"
103
+
104
+ #: includes/class-wcpdf-admin.php:399
105
+ #, fuzzy
106
+ #| msgid "PDF Invoice Number (unformatted!)"
107
+ msgid "Invoice Number (unformatted!)"
108
+ msgstr "PDF Pavadzīmes Numurs (neformatēts)"
109
+
110
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
111
+ msgid "h"
112
+ msgstr "h"
113
+
114
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
115
+ msgid "m"
116
+ msgstr "m"
117
+
118
+ #: includes/class-wcpdf-admin.php:529
119
+ #, php-format
120
+ msgid "%s email notification manually sent."
121
+ msgstr ""
122
+
123
+ #: includes/class-wcpdf-admin.php:653
124
+ msgid "DEBUG output enabled"
125
+ msgstr ""
126
+
127
+ #: includes/class-wcpdf-assets.php:79
128
+ msgid "Are you sure you want to delete this document? This cannot be undone."
129
+ msgstr ""
130
+
131
+ #: includes/class-wcpdf-frontend.php:57
132
+ #, fuzzy, php-format
133
+ #| msgid "Download the PDF"
134
+ msgid "Download %s (PDF)"
135
+ msgstr "Lejuplādēt PDF"
136
+
137
+ #: includes/class-wcpdf-frontend.php:59
138
+ msgid "Download invoice (PDF)"
139
+ msgstr "Lejuplādēt pavadzīmi (PDF)"
140
+
141
+ #: includes/class-wcpdf-main.php:238 includes/class-wcpdf-main.php:243
142
+ #: includes/class-wcpdf-main.php:313
143
+ msgid "You do not have sufficient permissions to access this page."
144
+ msgstr "Jums nav tiesību piekļūt šai lapai."
145
+
146
+ #: includes/class-wcpdf-main.php:252
147
+ msgid "You haven't selected any orders"
148
+ msgstr ""
149
+
150
+ #: includes/class-wcpdf-main.php:256
151
+ msgid "Some of the export parameters are missing."
152
+ msgstr ""
153
+
154
+ #: includes/class-wcpdf-main.php:341
155
+ #, php-format
156
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
157
+ msgstr ""
158
+
159
+ #: includes/class-wcpdf-main.php:685
160
+ #: includes/documents/class-wcpdf-invoice.php:255
161
+ #, fuzzy
162
+ #| msgid "Invoice Date:"
163
+ msgid "Invoice Date"
164
+ msgstr "Pavadzīmes Datums:"
165
+
166
+ #: includes/class-wcpdf-settings-callbacks.php:27
167
+ msgid ""
168
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
169
+ "Do not use them on a live website!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-settings-callbacks.php:36
173
+ msgid ""
174
+ "These are used for the (optional) footer columns in the <em>Modern "
175
+ "(Premium)</em> template, but can also be used for other elements in your "
176
+ "custom template"
177
+ msgstr ""
178
+ "Šie ir izmantoti (izvēles) kājenes kolonnās <em>Modernā (Premium)</em> "
179
+ "formā, bet var tikt izmantoti arī citiem elementiem individuāli radītajā "
180
+ "formā"
181
+
182
+ #: includes/class-wcpdf-settings-callbacks.php:367
183
+ msgid "Image resolution"
184
+ msgstr "Attēla izšķirtspēja"
185
+
186
+ #: includes/class-wcpdf-settings-callbacks.php:392
187
+ msgid "Save"
188
+ msgstr ""
189
+
190
+ #: includes/class-wcpdf-settings-debug.php:42
191
+ msgid "Reinstall fonts"
192
+ msgstr ""
193
+
194
+ #: includes/class-wcpdf-settings-debug.php:63
195
+ msgid "Fonts reinstalled!"
196
+ msgstr ""
197
+
198
+ #: includes/class-wcpdf-settings-debug.php:70
199
+ msgid "Remove temporary files"
200
+ msgstr ""
201
+
202
+ #: includes/class-wcpdf-settings-debug.php:81
203
+ msgid "Unable to read temporary folder contents!"
204
+ msgstr ""
205
+
206
+ #: includes/class-wcpdf-settings-debug.php:98
207
+ #, php-format
208
+ msgid "Unable to delete %d files! (deleted %d)"
209
+ msgstr ""
210
+
211
+ #: includes/class-wcpdf-settings-debug.php:101
212
+ #, php-format
213
+ msgid "Successfully deleted %d files!"
214
+ msgstr ""
215
+
216
+ #: includes/class-wcpdf-settings-debug.php:105
217
+ msgid "Nothing to delete!"
218
+ msgstr ""
219
+
220
+ #: includes/class-wcpdf-settings-debug.php:114
221
+ msgid "Delete legacy (1.X) settings"
222
+ msgstr ""
223
+
224
+ #: includes/class-wcpdf-settings-debug.php:130
225
+ msgid "Legacy settings deleted!"
226
+ msgstr ""
227
+
228
+ #: includes/class-wcpdf-settings-debug.php:157
229
+ #, fuzzy
230
+ #| msgid "General settings"
231
+ msgid "Debug settings"
232
+ msgstr "Iestatījumi"
233
+
234
+ #: includes/class-wcpdf-settings-debug.php:163
235
+ msgid "Legacy mode"
236
+ msgstr ""
237
+
238
+ #: includes/class-wcpdf-settings-debug.php:169
239
+ msgid ""
240
+ "Legacy mode ensures compatibility with templates and filters from previous "
241
+ "versions."
242
+ msgstr ""
243
+
244
+ #: includes/class-wcpdf-settings-debug.php:175
245
+ msgid "Allow guest access"
246
+ msgstr ""
247
+
248
+ #: includes/class-wcpdf-settings-debug.php:181
249
+ msgid ""
250
+ "Enable this to allow customers that purchase without an account to access "
251
+ "their PDF with a unique key"
252
+ msgstr ""
253
+
254
+ #: includes/class-wcpdf-settings-debug.php:187
255
+ msgid "Calculate document numbers (slow)"
256
+ msgstr ""
257
+
258
+ #: includes/class-wcpdf-settings-debug.php:193
259
+ msgid ""
260
+ "Document numbers (such as invoice numbers) are generated using "
261
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
262
+ "with more than 1."
263
+ msgstr ""
264
+
265
+ #: includes/class-wcpdf-settings-debug.php:199
266
+ msgid "Enable debug output"
267
+ msgstr ""
268
+
269
+ #: includes/class-wcpdf-settings-debug.php:205
270
+ msgid ""
271
+ "Enable this option to output plugin errors if you're getting a blank page or "
272
+ "other PDF generation issues"
273
+ msgstr ""
274
+
275
+ #: includes/class-wcpdf-settings-debug.php:206
276
+ msgid ""
277
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
278
+ "places on your site too, therefor this is not recommended to leave it "
279
+ "enabled on live sites."
280
+ msgstr ""
281
+
282
+ #: includes/class-wcpdf-settings-debug.php:212
283
+ msgid "Enable automatic cleanup"
284
+ msgstr ""
285
+
286
+ #: includes/class-wcpdf-settings-debug.php:219
287
+ #, php-format
288
+ msgid "every %s days"
289
+ msgstr ""
290
+
291
+ #: includes/class-wcpdf-settings-debug.php:224
292
+ msgid ""
293
+ "Automatically clean up PDF files stored in the temporary folder (used for "
294
+ "email attachments)"
295
+ msgstr ""
296
+
297
+ #: includes/class-wcpdf-settings-debug.php:225
298
+ msgid ""
299
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
300
+ "automatic cleanup but not enabled on your server."
301
+ msgstr ""
302
+
303
+ #: includes/class-wcpdf-settings-debug.php:231
304
+ msgid "Output to HTML"
305
+ msgstr ""
306
+
307
+ #: includes/class-wcpdf-settings-debug.php:237
308
+ msgid ""
309
+ "Send the template output as HTML to the browser instead of creating a PDF."
310
+ msgstr ""
311
+
312
+ #: includes/class-wcpdf-settings-debug.php:243
313
+ msgid "Use alternative HTML5 parser to parse HTML"
314
+ msgstr ""
315
+
316
+ #: includes/class-wcpdf-settings-documents.php:30
317
+ #: includes/class-wcpdf-settings.php:96
318
+ msgid "Documents"
319
+ msgstr ""
320
+
321
+ #: includes/class-wcpdf-settings-documents.php:46
322
+ msgid ""
323
+ "All available documents are listed below. Click on a document to configure "
324
+ "it."
325
+ msgstr ""
326
+
327
+ #: includes/class-wcpdf-settings-general.php:38
328
+ msgid "General settings"
329
+ msgstr "Iestatījumi"
330
+
331
+ #: includes/class-wcpdf-settings-general.php:44
332
+ msgid "How do you want to view the PDF?"
333
+ msgstr "Kā vēlaties apskatīt PDF?"
334
+
335
+ #: includes/class-wcpdf-settings-general.php:51
336
+ msgid "Download the PDF"
337
+ msgstr "Lejuplādēt PDF"
338
+
339
+ #: includes/class-wcpdf-settings-general.php:52
340
+ msgid "Open the PDF in a new browser tab/window"
341
+ msgstr "Atvērt PDF pārlūkā jaunā cilnē/logā"
342
+
343
+ #: includes/class-wcpdf-settings-general.php:59
344
+ msgid "Choose a template"
345
+ msgstr "Izvēlieties formu"
346
+
347
+ #: includes/class-wcpdf-settings-general.php:66
348
+ #, fuzzy, php-format
349
+ #| msgid ""
350
+ #| "Want to use your own template? Copy all the files from <code>%s</code> to "
351
+ #| "<code>%s</code> to customize them"
352
+ msgid ""
353
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
354
+ "your (child) theme in <code>%s</code> to customize them"
355
+ msgstr ""
356
+ "Vēlieties izmantot savu formu? Vienkārši nokopējiet visus failus no <code>"
357
+ "%s</code> uz <code>%s</code>, lai tos rediģētu"
358
+
359
+ #: includes/class-wcpdf-settings-general.php:72
360
+ msgid "Paper size"
361
+ msgstr "Lapas izmērs"
362
+
363
+ #: includes/class-wcpdf-settings-general.php:79
364
+ #: includes/views/setup-wizard/paper-format.php:12
365
+ msgid "A4"
366
+ msgstr "A4"
367
+
368
+ #: includes/class-wcpdf-settings-general.php:80
369
+ #: includes/views/setup-wizard/paper-format.php:13
370
+ msgid "Letter"
371
+ msgstr "Vēstule"
372
+
373
+ #: includes/class-wcpdf-settings-general.php:87
374
+ msgid "Test mode"
375
+ msgstr ""
376
+
377
+ #: includes/class-wcpdf-settings-general.php:93
378
+ msgid ""
379
+ "With test mode enabled, any document generated will always use the latest "
380
+ "settings, rather than using the settings as configured at the time the "
381
+ "document was first created."
382
+ msgstr ""
383
+
384
+ #: includes/class-wcpdf-settings-general.php:93
385
+ msgid ""
386
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
387
+ "setting and will still be generated."
388
+ msgstr ""
389
+
390
+ #: includes/class-wcpdf-settings-general.php:99
391
+ msgid "Extended currency symbol support"
392
+ msgstr ""
393
+
394
+ #: includes/class-wcpdf-settings-general.php:105
395
+ msgid "Enable this if your currency symbol is not displaying properly"
396
+ msgstr ""
397
+
398
+ #: includes/class-wcpdf-settings-general.php:111
399
+ msgid "Enable font subsetting"
400
+ msgstr ""
401
+
402
+ #: includes/class-wcpdf-settings-general.php:117
403
+ msgid ""
404
+ "Font subsetting can reduce file size by only including the characters that "
405
+ "are used in the PDF, but limits the ability to edit PDF files later. "
406
+ "Recommended if you're using an Asian font."
407
+ msgstr ""
408
+
409
+ #: includes/class-wcpdf-settings-general.php:123
410
+ msgid "Shop header/logo"
411
+ msgstr "Veikala galvene/logo"
412
+
413
+ #: includes/class-wcpdf-settings-general.php:129
414
+ #: includes/views/setup-wizard/logo.php:20
415
+ msgid "Select or upload your invoice header/logo"
416
+ msgstr "Izvēlieties vai augšup lādējiet Jūsu pavadzīmes galveni/logo"
417
+
418
+ #: includes/class-wcpdf-settings-general.php:130
419
+ #: includes/views/setup-wizard/logo.php:20
420
+ msgid "Set image"
421
+ msgstr "Iestatīt attēlu"
422
+
423
+ #: includes/class-wcpdf-settings-general.php:131
424
+ #: includes/views/setup-wizard/logo.php:20
425
+ msgid "Remove image"
426
+ msgstr "Izņemt attēlu"
427
+
428
+ #: includes/class-wcpdf-settings-general.php:138
429
+ #: includes/class-wcpdf-setup-wizard.php:42
430
+ msgid "Shop Name"
431
+ msgstr "Veikala Nosaukums"
432
+
433
+ #: includes/class-wcpdf-settings-general.php:151
434
+ msgid "Shop Address"
435
+ msgstr "Veikala Adrese"
436
+
437
+ #: includes/class-wcpdf-settings-general.php:166
438
+ msgid "Footer: terms & conditions, policies, etc."
439
+ msgstr "Kājene: lietošanas noteikumi, privātuma politika, u.c."
440
+
441
+ #: includes/class-wcpdf-settings-general.php:181
442
+ msgid "Extra template fields"
443
+ msgstr "Papildus formas lauki"
444
+
445
+ #: includes/class-wcpdf-settings-general.php:187
446
+ msgid "Extra field 1"
447
+ msgstr "Papildus lauks 1"
448
+
449
+ #: includes/class-wcpdf-settings-general.php:195
450
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
451
+ msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 1"
452
+
453
+ #: includes/class-wcpdf-settings-general.php:202
454
+ msgid "Extra field 2"
455
+ msgstr "Papildus lauks 2"
456
+
457
+ #: includes/class-wcpdf-settings-general.php:210
458
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
459
+ msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 2"
460
+
461
+ #: includes/class-wcpdf-settings-general.php:217
462
+ msgid "Extra field 3"
463
+ msgstr "Papildus lauks 3"
464
+
465
+ #: includes/class-wcpdf-settings-general.php:225
466
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
467
+ msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 3"
468
+
469
+ #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
470
+ msgid "PDF Invoices"
471
+ msgstr "PDF Pavadzīmes"
472
+
473
+ #: includes/class-wcpdf-settings.php:61
474
+ msgid "Settings"
475
+ msgstr "Iestatījumi"
476
+
477
+ #: includes/class-wcpdf-settings.php:74
478
+ msgid "Documentation"
479
+ msgstr ""
480
+
481
+ #: includes/class-wcpdf-settings.php:75
482
+ msgid "Support Forum"
483
+ msgstr ""
484
+
485
+ #: includes/class-wcpdf-settings.php:87
486
+ #, php-format
487
+ msgid ""
488
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
489
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
490
+ "document numbers (slow)' setting in the Status tab to use an alternate "
491
+ "method."
492
+ msgstr ""
493
+
494
+ #: includes/class-wcpdf-settings.php:95
495
+ msgid "General"
496
+ msgstr "Vispārīgā informācija"
497
+
498
+ #: includes/class-wcpdf-settings.php:101
499
+ msgid "Status"
500
+ msgstr "Statuss"
501
+
502
+ #: includes/class-wcpdf-setup-wizard.php:46
503
+ #: includes/views/setup-wizard/logo.php:3
504
+ msgid "Your logo"
505
+ msgstr ""
506
+
507
+ #: includes/class-wcpdf-setup-wizard.php:50
508
+ msgid "Attachments"
509
+ msgstr ""
510
+
511
+ #: includes/class-wcpdf-setup-wizard.php:54
512
+ #: includes/views/setup-wizard/display-options.php:3
513
+ msgid "Display options"
514
+ msgstr ""
515
+
516
+ #: includes/class-wcpdf-setup-wizard.php:58
517
+ #: includes/views/setup-wizard/paper-format.php:3
518
+ msgid "Paper format"
519
+ msgstr ""
520
+
521
+ #: includes/class-wcpdf-setup-wizard.php:62
522
+ #: includes/views/setup-wizard/show-action-buttons.php:3
523
+ msgid "Action buttons"
524
+ msgstr ""
525
+
526
+ #: includes/class-wcpdf-setup-wizard.php:66
527
+ msgid "Ready!"
528
+ msgstr ""
529
+
530
+ #: includes/class-wcpdf-setup-wizard.php:180
531
+ msgid "Previous"
532
+ msgstr ""
533
+
534
+ #: includes/class-wcpdf-setup-wizard.php:186
535
+ msgid "Skip this step"
536
+ msgstr ""
537
+
538
+ #: includes/class-wcpdf-setup-wizard.php:188
539
+ msgid "Finish"
540
+ msgstr ""
541
+
542
+ #: includes/compatibility/class-wc-core-compatibility.php:222
543
+ #, fuzzy
544
+ #| msgid "WooCommerce PDF Invoices"
545
+ msgid "WooCommerce"
546
+ msgstr "WooCommerce PDF Pavadzīmes"
547
+
548
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
549
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
550
+ msgid "N/A"
551
+ msgstr "Nav Pieejams"
552
+
553
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
554
+ msgid "Payment method"
555
+ msgstr "Maksājuma veids"
556
+
557
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
558
+ msgid "Shipping method"
559
+ msgstr "Piegādes veids"
560
+
561
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:874
562
+ #, php-format
563
+ msgid "(includes %s)"
564
+ msgstr ""
565
+
566
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:877
567
+ #, php-format
568
+ msgid "(Includes %s)"
569
+ msgstr ""
570
+
571
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:907
572
+ msgid "Subtotal"
573
+ msgstr "Starpsumma"
574
+
575
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:932
576
+ msgid "Shipping"
577
+ msgstr "Piegāde"
578
+
579
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:995
580
+ msgid "Discount"
581
+ msgstr "Atlaide"
582
+
583
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1036
584
+ msgid "VAT"
585
+ msgstr "PVN"
586
+
587
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1037
588
+ msgid "Tax rate"
589
+ msgstr ""
590
+
591
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1081
592
+ msgid "Total ex. VAT"
593
+ msgstr "Kopā, bez PVN"
594
+
595
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1084
596
+ msgid "Total"
597
+ msgstr "Kopā"
598
+
599
+ #: includes/documents/abstract-wcpdf-order-document.php:782
600
+ #, fuzzy
601
+ #| msgid "Admin New Order email"
602
+ msgid "Admin email"
603
+ msgstr "Administratora \"jauna pasūtījuma\" e-pastam"
604
+
605
+ #: includes/documents/abstract-wcpdf-order-document.php:785
606
+ msgid "Manual email"
607
+ msgstr ""
608
+
609
+ #: includes/documents/class-wcpdf-invoice.php:32
610
+ #: includes/documents/class-wcpdf-invoice.php:56
611
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
612
+ msgid "Invoice"
613
+ msgstr "Pavadzīme"
614
+
615
+ # This is a filename (prefix). do not use spaces or special characters!
616
+ #: includes/documents/class-wcpdf-invoice.php:129
617
+ msgid "invoice"
618
+ msgid_plural "invoices"
619
+ msgstr[0] "pavadzīme"
620
+ msgstr[1] "pavadzīmes"
621
+ msgstr[2] "pavadzīmju"
622
+
623
+ #: includes/documents/class-wcpdf-invoice.php:174
624
+ #: includes/documents/class-wcpdf-packing-slip.php:88
625
+ msgid "Enable"
626
+ msgstr ""
627
+
628
+ #: includes/documents/class-wcpdf-invoice.php:185
629
+ #, fuzzy
630
+ #| msgid "Attach invoice to:"
631
+ msgid "Attach to:"
632
+ msgstr "Pievienot pavadzīmi:"
633
+
634
+ #: includes/documents/class-wcpdf-invoice.php:192
635
+ #, php-format
636
+ msgid ""
637
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
638
+ "permissions for this folder! Without having write access to this folder, the "
639
+ "plugin will not be able to email invoices."
640
+ msgstr ""
641
+ "Šķiet, ka mape (<code>%s</code>) nav rediģējama. Lūdzu pārbaudiet jūsu "
642
+ "piekļuves atļaujas šai mapei. Bez iespējas piekļūt šai mapei, spraudnis "
643
+ "pavadzīmes izmantojot e-pastu neizsūtīs."
644
+
645
+ #: includes/documents/class-wcpdf-invoice.php:198
646
+ msgid "Disable for:"
647
+ msgstr ""
648
+
649
+ #: includes/documents/class-wcpdf-invoice.php:207
650
+ msgid "Select one or more statuses"
651
+ msgstr ""
652
+
653
+ #: includes/documents/class-wcpdf-invoice.php:213
654
+ #: includes/views/setup-wizard/display-options.php:11
655
+ msgid "Display shipping address"
656
+ msgstr ""
657
+
658
+ #: includes/documents/class-wcpdf-invoice.php:219
659
+ msgid ""
660
+ "Display shipping address (in addition to the default billing address) if "
661
+ "different from billing address"
662
+ msgstr ""
663
+
664
+ #: includes/documents/class-wcpdf-invoice.php:225
665
+ #: includes/documents/class-wcpdf-packing-slip.php:111
666
+ #: includes/views/setup-wizard/display-options.php:13
667
+ msgid "Display email address"
668
+ msgstr ""
669
+
670
+ #: includes/documents/class-wcpdf-invoice.php:236
671
+ #: includes/documents/class-wcpdf-packing-slip.php:122
672
+ #: includes/views/setup-wizard/display-options.php:15
673
+ msgid "Display phone number"
674
+ msgstr ""
675
+
676
+ #: includes/documents/class-wcpdf-invoice.php:247
677
+ #: includes/views/setup-wizard/display-options.php:17
678
+ #, fuzzy
679
+ #| msgid "Invoice date"
680
+ msgid "Display invoice date"
681
+ msgstr "Pavadzīmes Datums"
682
+
683
+ #: includes/documents/class-wcpdf-invoice.php:254
684
+ #: includes/documents/class-wcpdf-invoice.php:270
685
+ msgid "No"
686
+ msgstr ""
687
+
688
+ #: includes/documents/class-wcpdf-invoice.php:256
689
+ #, fuzzy
690
+ #| msgid "Order Date:"
691
+ msgid "Order Date"
692
+ msgstr "Pasūtījuma Datums:"
693
+
694
+ #: includes/documents/class-wcpdf-invoice.php:263
695
+ #: includes/views/setup-wizard/display-options.php:19
696
+ #, fuzzy
697
+ #| msgid "Invoice Number"
698
+ msgid "Display invoice number"
699
+ msgstr "Pavadzīmes Numurs"
700
+
701
+ #: includes/documents/class-wcpdf-invoice.php:272
702
+ #, fuzzy
703
+ #| msgid "Order Number:"
704
+ msgid "Order Number"
705
+ msgstr "Pasūtījuma Numurs:"
706
+
707
+ #: includes/documents/class-wcpdf-invoice.php:276
708
+ msgid "Warning!"
709
+ msgstr ""
710
+
711
+ #: includes/documents/class-wcpdf-invoice.php:277
712
+ msgid ""
713
+ "Using the Order Number as invoice number is not recommended as this may lead "
714
+ "to gaps in the invoice number sequence (even when order numbers are "
715
+ "sequential)."
716
+ msgstr ""
717
+
718
+ #: includes/documents/class-wcpdf-invoice.php:278
719
+ msgid "More information"
720
+ msgstr ""
721
+
722
+ #: includes/documents/class-wcpdf-invoice.php:285
723
+ msgid "Next invoice number (without prefix/suffix etc.)"
724
+ msgstr "Nākamais pavadzīmes numurs (bez priedēkļa/piedēkļa u.c.)"
725
+
726
+ #: includes/documents/class-wcpdf-invoice.php:291
727
+ #, fuzzy
728
+ #| msgid ""
729
+ #| "This is the number that will be used on the next invoice that is created. "
730
+ #| "By default, numbering starts from the WooCommerce Order Number of the "
731
+ #| "first invoice that is created and increases for every new invoice. Note "
732
+ #| "that if you override this and set it lower than the highest (PDF) invoice "
733
+ #| "number, this could create double invoice numbers!"
734
+ msgid ""
735
+ "This is the number that will be used for the next document. By default, "
736
+ "numbering starts from 1 and increases for every new document. Note that if "
737
+ "you override this and set it lower than the current/highest number, this "
738
+ "could create duplicate numbers!"
739
+ msgstr ""
740
+ "Šis numurs tiks izmantots nākamajai pavadzīmei, kas tiks radīta. Pēc "
741
+ "noklusējuma, numerācija sākas no WooCommerce pasūtījuma numura un secīgi aug "
742
+ "ar katru nākamo pavadzīmi. Lūdzu ņemiet vēra: ja gadījumā Jūs pārrakstiet šo "
743
+ "numuru uz mazāku kā lielākais (PDF) pavadzīmes numurs, iespējams var tikt "
744
+ "radīta pavadzīmju numuru dublēšanās!"
745
+
746
+ #: includes/documents/class-wcpdf-invoice.php:297
747
+ #, fuzzy
748
+ #| msgid "Invoice number format"
749
+ msgid "Number format"
750
+ msgstr "Pavadzīmes numura formāts"
751
+
752
+ #: includes/documents/class-wcpdf-invoice.php:305
753
+ msgid "Prefix"
754
+ msgstr "Priedēklis"
755
+
756
+ #: includes/documents/class-wcpdf-invoice.php:307
757
+ #, fuzzy
758
+ #| msgid ""
759
+ #| "to use the order year and/or month, use [order_year] or [order_month] "
760
+ #| "respectively"
761
+ msgid ""
762
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
763
+ "respectively"
764
+ msgstr ""
765
+ "izmantojiet [order_year] vai [order_month], lai tiktu attēlots gads vai "
766
+ "mēnesis"
767
+
768
+ #: includes/documents/class-wcpdf-invoice.php:310
769
+ msgid "Suffix"
770
+ msgstr "Piedēklis"
771
+
772
+ #: includes/documents/class-wcpdf-invoice.php:315
773
+ msgid "Padding"
774
+ msgstr "Numura garums"
775
+
776
+ #: includes/documents/class-wcpdf-invoice.php:318
777
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
778
+ msgstr ""
779
+ "ievadiet pavadzīmes numura vēlamo garumu - ievadiet \"6\" lai pavadzīmes "
780
+ "numuru 42 attēlotu kā 000042"
781
+
782
+ #: includes/documents/class-wcpdf-invoice.php:321
783
+ msgid ""
784
+ "note: if you have already created a custom invoice number format with a "
785
+ "filter, the above settings will be ignored"
786
+ msgstr ""
787
+ "svarīgi: ja Jūs jau esat izveidojis savu pavadzīmes numerāciju ar filtru, "
788
+ "tad augstākminētie iestatījumi tiks ignorēti"
789
+
790
+ #: includes/documents/class-wcpdf-invoice.php:327
791
+ #, fuzzy
792
+ #| msgid "Invoice number format"
793
+ msgid "Reset invoice number yearly"
794
+ msgstr "Pavadzīmes numura formāts"
795
+
796
+ #: includes/documents/class-wcpdf-invoice.php:338
797
+ msgid "Allow My Account invoice download"
798
+ msgstr ""
799
+
800
+ #: includes/documents/class-wcpdf-invoice.php:345
801
+ msgid "Only when an invoice is already created/emailed"
802
+ msgstr ""
803
+
804
+ #: includes/documents/class-wcpdf-invoice.php:346
805
+ msgid "Only for specific order statuses (define below)"
806
+ msgstr ""
807
+
808
+ #: includes/documents/class-wcpdf-invoice.php:347
809
+ msgid "Always"
810
+ msgstr ""
811
+
812
+ #: includes/documents/class-wcpdf-invoice.php:348
813
+ msgid "Never"
814
+ msgstr ""
815
+
816
+ #: includes/documents/class-wcpdf-invoice.php:363
817
+ msgid "Enable invoice number column in the orders list"
818
+ msgstr "Iespējot pavadzīmes numura kolonnu pasūtījuma sarakstā"
819
+
820
+ #: includes/documents/class-wcpdf-invoice.php:374
821
+ msgid "Disable for free products"
822
+ msgstr ""
823
+
824
+ #: includes/documents/class-wcpdf-invoice.php:380
825
+ msgid ""
826
+ "Disable automatic creation/attachment when only free products are ordered"
827
+ msgstr ""
828
+
829
+ #: includes/documents/class-wcpdf-invoice.php:386
830
+ msgid "Always use most current settings"
831
+ msgstr ""
832
+
833
+ #: includes/documents/class-wcpdf-invoice.php:392
834
+ msgid ""
835
+ "When enabled, the document will always reflect the most current settings "
836
+ "(such as footer text, document name, etc.) rather than using historical "
837
+ "settings."
838
+ msgstr ""
839
+
840
+ #: includes/documents/class-wcpdf-invoice.php:394
841
+ msgid ""
842
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
843
+ "your company name or address in the future, previously generated documents "
844
+ "will also be affected."
845
+ msgstr ""
846
+
847
+ #: includes/documents/class-wcpdf-invoice.php:407
848
+ msgid "Invoice numbers are created by a third-party extension."
849
+ msgstr ""
850
+
851
+ #: includes/documents/class-wcpdf-invoice.php:409
852
+ #, php-format
853
+ msgid "Configure it <a href=\"%s\">here</a>."
854
+ msgstr ""
855
+
856
+ #: includes/documents/class-wcpdf-packing-slip.php:32
857
+ #: includes/documents/class-wcpdf-packing-slip.php:41
858
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
859
+ msgid "Packing Slip"
860
+ msgstr "Piegādes Forma"
861
+
862
+ # This is a filename (prefix). do not use spaces or special characters!
863
+ #: includes/documents/class-wcpdf-packing-slip.php:47
864
+ msgid "packing-slip"
865
+ msgid_plural "packing-slips"
866
+ msgstr[0] "piegādes-forma"
867
+ msgstr[1] "piegādes-formas"
868
+ msgstr[2] "piegādes-formu"
869
+
870
+ #: includes/documents/class-wcpdf-packing-slip.php:99
871
+ msgid "Display billing address"
872
+ msgstr ""
873
+
874
+ #: includes/documents/class-wcpdf-packing-slip.php:105
875
+ msgid ""
876
+ "Display billing address (in addition to the default shipping address) if "
877
+ "different from shipping address"
878
+ msgstr ""
879
+
880
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
881
+ msgid "Legacy Document"
882
+ msgstr ""
883
+
884
+ #: includes/legacy/class-wcpdf-legacy.php:72
885
+ msgid "Error"
886
+ msgstr ""
887
+
888
+ #: includes/legacy/class-wcpdf-legacy.php:73
889
+ msgid ""
890
+ "An outdated template or action hook was used to generate the PDF. Legacy "
891
+ "mode has been activated, please try again by reloading this page."
892
+ msgstr ""
893
+
894
+ #: includes/legacy/class-wcpdf-legacy.php:76
895
+ msgid "The following function was called"
896
+ msgstr ""
897
+
898
+ #: includes/views/attachment-settings-hint.php:22
899
+ #, php-format
900
+ msgid ""
901
+ "It looks like you haven't setup any email attachments yet, check the "
902
+ "settings under <b>%sDocuments > Invoice%s</b>"
903
+ msgstr ""
904
+
905
+ #: includes/views/setup-wizard/attach-to.php:3
906
+ msgid "Attach too..."
907
+ msgstr ""
908
+
909
+ #: includes/views/setup-wizard/attach-to.php:4
910
+ msgid "Select to which emails you would like to attach your invoice."
911
+ msgstr ""
912
+
913
+ #: includes/views/setup-wizard/display-options.php:4
914
+ msgid "Select some additional display options for your invoice."
915
+ msgstr ""
916
+
917
+ #: includes/views/setup-wizard/good-to-go.php:3
918
+ msgid "You are good to go!"
919
+ msgstr ""
920
+
921
+ #: includes/views/setup-wizard/good-to-go.php:4
922
+ msgid "If you have any questions please have a look at our documentation:"
923
+ msgstr ""
924
+
925
+ #: includes/views/setup-wizard/good-to-go.php:5
926
+ #, fuzzy
927
+ #| msgid "PDF Packing Slips"
928
+ msgid "Invoices & Packing Slips"
929
+ msgstr "PDF Piegādes Formas"
930
+
931
+ #: includes/views/setup-wizard/good-to-go.php:6
932
+ msgid "Happy selling!"
933
+ msgstr ""
934
+
935
+ #: includes/views/setup-wizard/logo.php:4
936
+ msgid "Set the header image that will display on your invoice."
937
+ msgstr ""
938
+
939
+ #: includes/views/setup-wizard/paper-format.php:4
940
+ msgid "Select the paper format for your invoice."
941
+ msgstr ""
942
+
943
+ #: includes/views/setup-wizard/shop-name.php:3
944
+ msgid "Enter your shop name"
945
+ msgstr ""
946
+
947
+ #: includes/views/setup-wizard/shop-name.php:4
948
+ msgid ""
949
+ "Lets quickly setup your invoice. Please enter the name and address of your "
950
+ "shop in the fields on the right."
951
+ msgstr ""
952
+
953
+ #: includes/views/setup-wizard/show-action-buttons.php:4
954
+ msgid ""
955
+ "Would you like to display the action buttons in your WooCommerce order list? "
956
+ "The action buttons allow you to manually create a PDF."
957
+ msgstr ""
958
+
959
+ #: includes/views/setup-wizard/show-action-buttons.php:5
960
+ msgid "(You can always change this setting later via the Screen Options menu)"
961
+ msgstr ""
962
+
963
+ #: includes/views/setup-wizard/show-action-buttons.php:18
964
+ msgid "Show action buttons"
965
+ msgstr ""
966
+
967
+ #: includes/views/wcpdf-extensions.php:16
968
+ msgid "Check out these premium extensions!"
969
+ msgstr ""
970
+
971
+ #: includes/views/wcpdf-extensions.php:17
972
+ msgid "click items to read more"
973
+ msgstr ""
974
+
975
+ #: includes/views/wcpdf-extensions.php:22
976
+ msgid ""
977
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
978
+ "system"
979
+ msgstr ""
980
+
981
+ #: includes/views/wcpdf-extensions.php:24
982
+ msgid ""
983
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
984
+ "premium extensions:"
985
+ msgstr ""
986
+
987
+ #: includes/views/wcpdf-extensions.php:25
988
+ msgid "Professional features:"
989
+ msgstr ""
990
+
991
+ #: includes/views/wcpdf-extensions.php:27
992
+ #: includes/views/wcpdf-extensions.php:57
993
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
994
+ msgstr ""
995
+
996
+ #: includes/views/wcpdf-extensions.php:28
997
+ #: includes/views/wcpdf-extensions.php:58
998
+ msgid ""
999
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1000
+ "packing slips, for example to a drop-shipper or a supplier."
1001
+ msgstr ""
1002
+
1003
+ #: includes/views/wcpdf-extensions.php:29
1004
+ #: includes/views/wcpdf-extensions.php:59
1005
+ msgid ""
1006
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1007
+ "document) to the WooCommerce emails of your choice."
1008
+ msgstr ""
1009
+
1010
+ #: includes/views/wcpdf-extensions.php:30
1011
+ #: includes/views/wcpdf-extensions.php:60
1012
+ msgid ""
1013
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1014
+ "and credit notes or utilize the main invoice numbering system"
1015
+ msgstr ""
1016
+
1017
+ #: includes/views/wcpdf-extensions.php:31
1018
+ #: includes/views/wcpdf-extensions.php:61
1019
+ msgid ""
1020
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1021
+ "additional custom fields, font sizes etc. without the need to create a "
1022
+ "custom template."
1023
+ msgstr ""
1024
+
1025
+ #: includes/views/wcpdf-extensions.php:32
1026
+ #: includes/views/wcpdf-extensions.php:62
1027
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1028
+ msgstr ""
1029
+
1030
+ #: includes/views/wcpdf-extensions.php:34
1031
+ #: includes/views/wcpdf-extensions.php:114
1032
+ msgid "Advanced, customizable templates"
1033
+ msgstr ""
1034
+
1035
+ #: includes/views/wcpdf-extensions.php:36
1036
+ #: includes/views/wcpdf-extensions.php:117
1037
+ msgid ""
1038
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1039
+ "your needs with a drag & drop customizer"
1040
+ msgstr ""
1041
+
1042
+ #: includes/views/wcpdf-extensions.php:37
1043
+ #: includes/views/wcpdf-extensions.php:118
1044
+ msgid "Two extra stylish premade templates (Modern & Business)"
1045
+ msgstr ""
1046
+
1047
+ #: includes/views/wcpdf-extensions.php:39
1048
+ #: includes/views/wcpdf-extensions.php:63
1049
+ msgid "Upload automatically to dropbox"
1050
+ msgstr ""
1051
+
1052
+ #: includes/views/wcpdf-extensions.php:41
1053
+ msgid ""
1054
+ "This extension conveniently uploads all the invoices (and other pdf "
1055
+ "documents from the professional extension) that are emailed to your "
1056
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1057
+ "date!"
1058
+ msgstr ""
1059
+
1060
+ #: includes/views/wcpdf-extensions.php:44
1061
+ #, fuzzy
1062
+ #| msgid "WooCommerce PDF Invoices"
1063
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1064
+ msgstr "WooCommerce PDF Pavadzīmes"
1065
+
1066
+ #: includes/views/wcpdf-extensions.php:53
1067
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1068
+ msgstr ""
1069
+
1070
+ #: includes/views/wcpdf-extensions.php:55
1071
+ msgid ""
1072
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1073
+ "features:"
1074
+ msgstr ""
1075
+
1076
+ #: includes/views/wcpdf-extensions.php:65
1077
+ #, fuzzy
1078
+ #| msgid ""
1079
+ #| "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1080
+ #| "installed & activated!"
1081
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1082
+ msgstr ""
1083
+ "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
1084
+ "WooCommerce PDF Invoices & Packing Slips!"
1085
+
1086
+ #: includes/views/wcpdf-extensions.php:73
1087
+ msgid "Automatically send payment reminders to your customers"
1088
+ msgstr ""
1089
+
1090
+ #: includes/views/wcpdf-extensions.php:75
1091
+ #, fuzzy
1092
+ #| msgid "WooCommerce order number"
1093
+ msgid "WooCommerce Smart Reminder emails"
1094
+ msgstr "WooCommerce pasūtījuma numurs"
1095
+
1096
+ #: includes/views/wcpdf-extensions.php:77
1097
+ msgid "<b>Completely automatic</b> scheduled emails"
1098
+ msgstr ""
1099
+
1100
+ #: includes/views/wcpdf-extensions.php:78
1101
+ msgid ""
1102
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1103
+ "from the order (name, order total, etc)"
1104
+ msgstr ""
1105
+
1106
+ #: includes/views/wcpdf-extensions.php:79
1107
+ msgid ""
1108
+ "Configure the exact requirements for sending an email (time after order, "
1109
+ "order status, payment method)"
1110
+ msgstr ""
1111
+
1112
+ #: includes/views/wcpdf-extensions.php:80
1113
+ msgid ""
1114
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1115
+ "order language."
1116
+ msgstr ""
1117
+
1118
+ #: includes/views/wcpdf-extensions.php:81
1119
+ msgid ""
1120
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1121
+ "reminders, repeat purchases)"
1122
+ msgstr ""
1123
+
1124
+ #: includes/views/wcpdf-extensions.php:82
1125
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1126
+ msgstr ""
1127
+
1128
+ #: includes/views/wcpdf-extensions.php:84
1129
+ msgid "Get WooCommerce Smart Reminder Emails"
1130
+ msgstr ""
1131
+
1132
+ #: includes/views/wcpdf-extensions.php:93
1133
+ msgid ""
1134
+ "Automatically send new orders or packing slips to your printer, as soon as "
1135
+ "the customer orders!"
1136
+ msgstr ""
1137
+
1138
+ #: includes/views/wcpdf-extensions.php:99
1139
+ msgid ""
1140
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1141
+ "partners at Simba Hosting"
1142
+ msgstr ""
1143
+
1144
+ #: includes/views/wcpdf-extensions.php:100
1145
+ #, fuzzy
1146
+ #| msgid "WooCommerce order number"
1147
+ msgid "WooCommerce Automatic Order Printing"
1148
+ msgstr "WooCommerce pasūtījuma numurs"
1149
+
1150
+ #: includes/views/wcpdf-extensions.php:119
1151
+ #, fuzzy, php-format
1152
+ #| msgid ""
1153
+ #| "Looking for more advanced templates? Check out the Premium PDF Invoice & "
1154
+ #| "Packing Slips templates at %s."
1155
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1156
+ msgstr ""
1157
+ "Nepieciešamas formas ar plašākām iespējām? Apskatiet Premium PDF Invoice & "
1158
+ "Packing Slips formas %s."
1159
+
1160
+ #: includes/views/wcpdf-extensions.php:120
1161
+ #, php-format
1162
+ msgid "For custom templates, contact us at %s."
1163
+ msgstr "Lai iegūtu personificētas formas, sazinieties ar mums %s."
1164
+
1165
+ #: includes/views/wcpdf-settings-page.php:9
1166
+ msgid "WooCommerce PDF Invoices"
1167
+ msgstr "WooCommerce PDF Pavadzīmes"
1168
+
1169
+ #: includes/wcpdf-functions.php:208
1170
+ msgid "Error creating PDF, please contact the site owner."
1171
+ msgstr ""
1172
+
1173
+ #: templates/Simple/invoice.php:31 templates/Simple/packing-slip.php:44
1174
+ msgid "Billing Address:"
1175
+ msgstr ""
1176
+
1177
+ #: templates/Simple/invoice.php:44
1178
+ msgid "Ship To:"
1179
+ msgstr ""
1180
+
1181
+ #: templates/Simple/invoice.php:55
1182
+ msgid "Invoice Number:"
1183
+ msgstr "Pavadzīmes Numurs:"
1184
+
1185
+ #: templates/Simple/invoice.php:66 templates/Simple/packing-slip.php:54
1186
+ msgid "Order Number:"
1187
+ msgstr "Pasūtījuma Numurs:"
1188
+
1189
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1190
+ msgid "Order Date:"
1191
+ msgstr "Pasūtījuma Datums:"
1192
+
1193
+ #: templates/Simple/invoice.php:74
1194
+ msgid "Payment Method:"
1195
+ msgstr "Maksājuma Veids:"
1196
+
1197
+ #: templates/Simple/invoice.php:88 templates/Simple/packing-slip.php:76
1198
+ msgid "Product"
1199
+ msgstr "Produkts"
1200
+
1201
+ #: templates/Simple/invoice.php:89 templates/Simple/packing-slip.php:77
1202
+ msgid "Quantity"
1203
+ msgstr "Daudzums"
1204
+
1205
+ #: templates/Simple/invoice.php:90
1206
+ msgid "Price"
1207
+ msgstr "Cena"
1208
+
1209
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
1210
+ msgid "Description"
1211
+ msgstr "Apraksts"
1212
+
1213
+ #: templates/Simple/invoice.php:102 templates/Simple/packing-slip.php:89
1214
+ msgid "SKU"
1215
+ msgstr "SKU"
1216
+
1217
+ #: templates/Simple/invoice.php:103 templates/Simple/packing-slip.php:90
1218
+ msgid "SKU:"
1219
+ msgstr "SKU:"
1220
+
1221
+ #: templates/Simple/invoice.php:104 templates/Simple/packing-slip.php:91
1222
+ msgid "Weight:"
1223
+ msgstr "Svars:"
1224
+
1225
+ #: templates/Simple/invoice.php:119 templates/Simple/packing-slip.php:106
1226
+ msgid "Customer Notes"
1227
+ msgstr "Klienta Piezīmes"
1228
+
1229
+ #: templates/Simple/packing-slip.php:31
1230
+ #, fuzzy
1231
+ #| msgid "Shop Address"
1232
+ msgid "Shipping Address:"
1233
+ msgstr "Veikala Adrese"
1234
+
1235
+ #: templates/Simple/packing-slip.php:62
1236
+ #, fuzzy
1237
+ #| msgid "Shipping method"
1238
+ msgid "Shipping Method:"
1239
+ msgstr "Piegādes veids"
1240
+
1241
+ #: woocommerce-pdf-invoices-packingslips.php:238
1242
+ #, php-format
1243
+ msgid ""
1244
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1245
+ "installed & activated!"
1246
+ msgstr ""
1247
+ "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
1248
+ "WooCommerce PDF Invoices & Packing Slips!"
1249
+
1250
+ #: woocommerce-pdf-invoices-packingslips.php:250
1251
+ #, fuzzy
1252
+ #| msgid ""
1253
+ #| "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1254
+ #| "installed & activated!"
1255
+ msgid ""
1256
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
1257
+ "higher recommended)."
1258
+ msgstr ""
1259
+ "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
1260
+ "WooCommerce PDF Invoices & Packing Slips!"
1261
+
1262
+ #: woocommerce-pdf-invoices-packingslips.php:251
1263
+ msgid "How to update your PHP version"
1264
+ msgstr ""
1265
+
1266
+ #~ msgid "Template"
1267
+ #~ msgstr "Forma"
1268
+
1269
+ #~ msgid ""
1270
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
1271
+ #~ "extension."
1272
+ #~ msgstr ""
1273
+ #~ "Augšuplādējiet visas pavadzīmes automātiski uz Jūsu Dropbox!<br/>Lasīt "
1274
+ #~ "vairāk par %s paplašinājumiem."
1275
+
1276
+ #~ msgid "Customer Processing Order email"
1277
+ #~ msgstr "Klienta \"Pasūtījums ir apstrādē\" e-pastam"
1278
+
1279
+ #~ msgid "Customer Completed Order email"
1280
+ #~ msgstr "Klienta \"Pasūtījums apstrādāts\" e-pastam"
1281
+
1282
+ #~ msgid "Customer Invoice email"
1283
+ #~ msgstr "Klienta \"Pavadzīme\" e-pastam"
1284
+
1285
+ #~ msgid "PDF Template settings"
1286
+ #~ msgstr "PDF Formas iestatījumi"
1287
+
1288
+ #~ msgid "Number to display on invoice"
1289
+ #~ msgstr "Numurs, kas tiks attēlots uz pavadzīmes"
1290
+
1291
+ #~ msgid "Built-in sequential invoice number"
1292
+ #~ msgstr "Iestrādātais secīgais pavadzīmes numurs"
1293
+
1294
+ #~ msgid ""
1295
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
1296
+ #~ "the WooCommerce order number"
1297
+ #~ msgstr ""
1298
+ #~ "Ja izmantojat spraudni \"WooCommerce Sequential Order Numbers\", lūdzu "
1299
+ #~ "izvēlieties WooCommerce pasūtījuma numuru"
1300
+
1301
+ #~ msgid "Date to display on invoice"
1302
+ #~ msgstr "Datumus, kurš tiks attēlots uz pavadzīmes"
1303
+
1304
+ #~ msgid "Order date"
1305
+ #~ msgstr "Pasūtījuma Datums"
1306
+
1307
+ #~ msgid "PDF invoice"
1308
+ #~ msgstr "PDF pavadzīme"
1309
+
1310
+ #~ msgid "PDF Packing Slip"
1311
+ #~ msgstr "PDF Piegādes Forma"
languages/woocommerce-pdf-invoices-packing-slips-lv_LV.mo CHANGED
Binary file
languages/woocommerce-pdf-invoices-packing-slips-lv_LV.po CHANGED
@@ -1,433 +1,1244 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-09-18 15:03+0100\n"
5
- "PO-Revision-Date: 2017-07-14 00:35+0200\n"
 
6
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
 
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 2.0.1\n"
11
  "X-Poedit-Basepath: ..\n"
12
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
13
- "2);\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
16
- "Last-Translator: \n"
17
- "Language: lv\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 "Jums nav tiesību piekļūt šai lapai."
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  # This is a filename (prefix). do not use spaces or special characters!
27
- #: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
28
  msgid "invoice"
29
  msgid_plural "invoices"
30
  msgstr[0] "pavadzīme"
31
  msgstr[1] "pavadzīmes"
32
  msgstr[2] "pavadzīmju"
33
 
34
- # This is a filename (prefix). do not use spaces or special characters!
35
- #: includes/class-wcpdf-export.php:225
36
- msgid "packing-slip"
37
- msgid_plural "packing-slips"
38
- msgstr[0] "piegādes-forma"
39
- msgstr[1] "piegādes-formas"
40
- msgstr[2] "piegādes-formu"
41
 
42
- #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
43
- #: includes/class-wcpdf-writepanels.php:176
44
- #: includes/class-wcpdf-writepanels.php:177
45
- msgid "PDF Invoices"
46
- msgstr "PDF Pavadzīmes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
- #: includes/class-wcpdf-settings.php:60
49
- msgid "Settings"
50
- msgstr "Iestatījumi"
51
 
52
- #: includes/class-wcpdf-settings.php:82
53
- msgid "General"
54
- msgstr "Vispārīgā informācija"
55
 
56
- #: includes/class-wcpdf-settings.php:83
57
- msgid "Template"
58
- msgstr "Forma"
59
 
60
- #: includes/class-wcpdf-settings.php:92
61
- msgid "WooCommerce PDF Invoices"
62
- msgstr "WooCommerce PDF Pavadzīmes"
 
63
 
64
- #: includes/class-wcpdf-settings.php:98
65
- msgid "Status"
66
- msgstr "Statuss"
67
 
68
- #: includes/class-wcpdf-settings.php:109
69
- #, php-format
70
  msgid ""
71
- "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
72
- "extension."
 
73
  msgstr ""
74
- "Augšuplādējiet visas pavadzīmes automātiski uz Jūsu Dropbox!<br/>Lasīt "
75
- "vairāk par %s paplašinājumiem."
76
 
77
- #: includes/class-wcpdf-settings.php:119
78
- #, php-format
79
  msgid ""
80
- "Looking for more advanced templates? Check out the Premium PDF Invoice & "
81
- "Packing Slips templates at %s."
 
82
  msgstr ""
83
- "Nepieciešamas formas ar plašākām iespējām? Apskatiet Premium PDF Invoice & "
84
- "Packing Slips formas %s."
85
 
86
- #: includes/class-wcpdf-settings.php:120
87
- #, php-format
88
- msgid "For custom templates, contact us at %s."
89
- msgstr "Lai iegūtu personificētas formas, sazinieties ar mums %s."
90
 
91
- #: includes/class-wcpdf-settings.php:175
92
- msgid "General settings"
93
- msgstr "Iestatījumi"
 
94
 
95
- #: includes/class-wcpdf-settings.php:182
96
- msgid "How do you want to view the PDF?"
97
- msgstr "Kā vēlaties apskatīt PDF?"
 
 
98
 
99
- #: includes/class-wcpdf-settings.php:190
100
- msgid "Download the PDF"
101
- msgstr "Lejuplādēt PDF"
 
 
 
 
102
 
103
- #: includes/class-wcpdf-settings.php:191
104
- msgid "Open the PDF in a new browser tab/window"
105
- msgstr "Atvērt PDF pārlūkā jaunā cilnē/logā"
106
 
107
- #: includes/class-wcpdf-settings.php:201
108
- msgid "Attach invoice to:"
109
- msgstr "Pievienot pavadzīmi:"
 
 
110
 
111
- #: includes/class-wcpdf-settings.php:209
112
- msgid "Admin New Order email"
113
- msgstr "Administratora \"jauna pasūtījuma\" e-pastam"
114
 
115
- #: includes/class-wcpdf-settings.php:210
116
- msgid "Customer Processing Order email"
117
- msgstr "Klienta \"Pasūtījums ir apstrādē\" e-pastam"
118
 
119
- #: includes/class-wcpdf-settings.php:211
120
- msgid "Customer Completed Order email"
121
- msgstr "Klienta \"Pasūtījums apstrādāts\" e-pastam"
 
 
122
 
123
- #: includes/class-wcpdf-settings.php:212
124
- msgid "Customer Invoice email"
125
- msgstr "Klienta \"Pavadzīme\" e-pastam"
126
 
127
- #: includes/class-wcpdf-settings.php:214
128
  #, php-format
129
  msgid ""
130
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
131
- "permissions for this folder! Without having write access to this folder, the "
132
- "plugin will not be able to email invoices."
133
  msgstr ""
134
- "Šķiet, ka mape (<code>%s</code>) nav rediģējama. Lūdzu pārbaudiet jūsu "
135
- "piekļuves atļaujas šai mapei. Bez iespējas piekļūt šai mapei, spraudnis "
136
- "pavadzīmes izmantojot e-pastu neizsūtīs."
137
 
138
- #: includes/class-wcpdf-settings.php:220
139
- msgid "Enable invoice number column in the orders list"
140
- msgstr "Iespējot pavadzīmes numura kolonnu pasūtījuma sarakstā"
141
 
142
- #: includes/class-wcpdf-settings.php:259
143
- msgid "PDF Template settings"
144
- msgstr "PDF Formas iestatījumi"
145
 
146
- #: includes/class-wcpdf-settings.php:271
147
- msgid "Choose a template"
148
- msgstr "Izvēlieties formu"
149
 
150
- #: includes/class-wcpdf-settings.php:279
151
- #, php-format
152
- msgid ""
153
- "Want to use your own template? Copy all the files from <code>%s</code> to "
154
- "<code>%s</code> to customize them"
155
  msgstr ""
156
- "Vēlieties izmantot savu formu? Vienkārši nokopējiet visus failus no <code>"
157
- "%s</code> uz <code>%s</code>, lai tos rediģētu"
158
 
159
- #: includes/class-wcpdf-settings.php:285
160
- msgid "Paper size"
161
- msgstr "Lapas izmērs"
162
 
163
- #: includes/class-wcpdf-settings.php:293
164
- msgid "A4"
165
- msgstr "A4"
 
 
166
 
167
- #: includes/class-wcpdf-settings.php:294
168
- msgid "Letter"
169
- msgstr "Vēstule"
170
 
171
- #: includes/class-wcpdf-settings.php:301
172
- msgid "Shop header/logo"
173
- msgstr "Veikala galvene/logo"
174
 
175
- #: includes/class-wcpdf-settings.php:308
176
- msgid "Select or upload your invoice header/logo"
177
- msgstr "Izvēlieties vai augšup lādējiet Jūsu pavadzīmes galveni/logo"
178
 
179
- #: includes/class-wcpdf-settings.php:309
180
- msgid "Set image"
181
- msgstr "Iestatīt attēlu"
182
 
183
- #: includes/class-wcpdf-settings.php:310
184
- msgid "Remove image"
185
- msgstr "Izņemt attēlu"
 
 
186
 
187
- #: includes/class-wcpdf-settings.php:317
188
- msgid "Shop Name"
189
- msgstr "Veikala Nosaukums"
 
 
190
 
191
- #: includes/class-wcpdf-settings.php:330
192
- msgid "Shop Address"
193
- msgstr "Veikala Adrese"
194
 
195
- #: includes/class-wcpdf-settings.php:362
196
- msgid "Footer: terms & conditions, policies, etc."
197
- msgstr "Kājene: lietošanas noteikumi, privātuma politika, u.c."
198
 
199
- #: includes/class-wcpdf-settings.php:377
200
- msgid "Number to display on invoice"
201
- msgstr "Numurs, kas tiks attēlots uz pavadzīmes"
202
 
203
- #: includes/class-wcpdf-settings.php:385
204
- msgid "WooCommerce order number"
205
- msgstr "WooCommerce pasūtījuma numurs"
206
 
207
- #: includes/class-wcpdf-settings.php:386
208
- msgid "Built-in sequential invoice number"
209
- msgstr "Iestrādātais secīgais pavadzīmes numurs"
 
 
210
 
211
- #: includes/class-wcpdf-settings.php:388
212
  msgid ""
213
- "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
214
- "WooCommerce order number"
215
  msgstr ""
216
- "Ja izmantojat spraudni \"WooCommerce Sequential Order Numbers\", lūdzu "
217
- "izvēlieties WooCommerce pasūtījuma numuru"
218
 
219
- #: includes/class-wcpdf-settings.php:394
220
- msgid "Next invoice number (without prefix/suffix etc.)"
221
- msgstr "Nākamais pavadzīmes numurs (bez priedēkļa/piedēkļa u.c.)"
222
 
223
- #: includes/class-wcpdf-settings.php:402
224
- msgid ""
225
- "This is the number that will be used on the next invoice that is created. By "
226
- "default, numbering starts from the WooCommerce Order Number of the first "
227
- "invoice that is created and increases for every new invoice. Note that if "
228
- "you override this and set it lower than the highest (PDF) invoice number, "
229
- "this could create double invoice numbers!"
230
  msgstr ""
231
- "Šis numurs tiks izmantots nākamajai pavadzīmei, kas tiks radīta. Pēc "
232
- "noklusējuma, numerācija sākas no WooCommerce pasūtījuma numura un secīgi aug "
233
- "ar katru nākamo pavadzīmi. Lūdzu ņemiet vēra: ja gadījumā Jūs pārrakstiet šo "
234
- "numuru uz mazāku kā lielākais (PDF) pavadzīmes numurs, iespējams var tikt "
235
- "radīta pavadzīmju numuru dublēšanās!"
236
 
237
- #: includes/class-wcpdf-settings.php:408
238
- msgid "Invoice number format"
239
- msgstr "Pavadzīmes numura formāts"
 
 
 
240
 
241
- #: includes/class-wcpdf-settings.php:417
242
- msgid "Prefix"
243
- msgstr "Priedēklis"
 
 
 
244
 
245
- #: includes/class-wcpdf-settings.php:419
 
246
  msgid ""
247
- "to use the order year and/or month, use [order_year] or [order_month] "
248
- "respectively"
249
  msgstr ""
250
- "izmantojiet [order_year] vai [order_month], lai tiktu attēlots gads vai "
251
- "mēnesis"
252
 
253
- #: includes/class-wcpdf-settings.php:422
254
- msgid "Suffix"
255
- msgstr "Piedēklis"
 
 
 
 
256
 
257
- #: includes/class-wcpdf-settings.php:427
258
- msgid "Padding"
259
- msgstr "Numura garums"
 
260
 
261
- #: includes/class-wcpdf-settings.php:429
262
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
 
263
  msgstr ""
264
- "ievadiet pavadzīmes numura vēlamo garumu - ievadiet \"6\" lai pavadzīmes "
265
- "numuru 42 attēlotu kā 000042"
266
 
267
- #: includes/class-wcpdf-settings.php:432
 
268
  msgid ""
269
- "note: if you have already created a custom invoice number format with a "
270
- "filter, the above settings will be ignored"
271
  msgstr ""
272
- "svarīgi: ja Jūs jau esat izveidojis savu pavadzīmes numerāciju ar filtru, "
273
- "tad augstākminētie iestatījumi tiks ignorēti"
274
 
275
- #: includes/class-wcpdf-settings.php:440
276
- msgid "Date to display on invoice"
277
- msgstr "Datumus, kurš tiks attēlots uz pavadzīmes"
 
278
 
279
- #: includes/class-wcpdf-settings.php:448
280
- msgid "Order date"
281
- msgstr "Pasūtījuma Datums"
 
282
 
283
- #: includes/class-wcpdf-settings.php:449
284
- msgid "Invoice date"
285
- msgstr "Pavadzīmes Datums"
 
 
 
 
286
 
287
- #: includes/class-wcpdf-settings.php:457
288
- msgid "Extra template fields"
289
- msgstr "Papildus formas lauki"
 
 
290
 
291
- #: includes/class-wcpdf-settings.php:464
292
- msgid "Extra field 1"
293
- msgstr "Papildus lauks 1"
294
 
295
- #: includes/class-wcpdf-settings.php:473
296
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
297
- msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 1"
 
 
298
 
299
- #: includes/class-wcpdf-settings.php:479
300
- msgid "Extra field 2"
301
- msgstr "Papildus lauks 2"
 
 
 
 
 
 
302
 
303
- #: includes/class-wcpdf-settings.php:488
304
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
305
- msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 2"
306
 
307
- #: includes/class-wcpdf-settings.php:494
308
- msgid "Extra field 3"
309
- msgstr "Papildus lauks 3"
 
 
310
 
311
- #: includes/class-wcpdf-settings.php:503
312
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
313
- msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 3"
314
 
315
- #: includes/class-wcpdf-settings.php:760
316
- msgid "Image resolution"
317
- msgstr "Attēla izšķirtspēja"
 
 
318
 
319
- #: includes/class-wcpdf-settings.php:871
320
  msgid ""
321
- "These are used for the (optional) footer columns in the <em>Modern "
322
- "(Premium)</em> template, but can also be used for other elements in your "
323
- "custom template"
324
  msgstr ""
325
- "Šie ir izmantoti (izvēles) kājenes kolonnās <em>Modernā (Premium)</em> "
326
- "formā, bet var tikt izmantoti arī citiem elementiem individuāli radītajā "
327
- "formā"
328
 
329
- #: includes/class-wcpdf-writepanels.php:102
330
- msgid "Invoice Number"
331
- msgstr "Pavadzīmes Numurs"
 
 
332
 
333
- #: includes/class-wcpdf-writepanels.php:139
334
- msgid "Download invoice (PDF)"
335
- msgstr "Lejuplādēt pavadzīmi (PDF)"
 
 
336
 
337
- #: includes/class-wcpdf-writepanels.php:150
338
- msgid "Create PDF"
339
- msgstr "Izveidot PDF"
340
 
341
- #: includes/class-wcpdf-writepanels.php:160
342
- msgid "PDF invoice"
343
- msgstr "PDF pavadzīme"
344
 
345
- #: includes/class-wcpdf-writepanels.php:161
346
- msgid "PDF Packing Slip"
347
- msgstr "PDF Piegādes Forma"
 
 
348
 
349
- #: includes/class-wcpdf-writepanels.php:178
350
- #: includes/class-wcpdf-writepanels.php:179
351
- msgid "PDF Packing Slips"
352
- msgstr "PDF Piegādes Formas"
 
353
 
354
- #: includes/class-wcpdf-writepanels.php:192
355
- msgid "PDF Invoice Number (unformatted!)"
356
- msgstr "PDF Pavadzīmes Numurs (neformatēts)"
 
 
357
 
358
- #: includes/class-wcpdf-writepanels.php:195 templates/pdf/Simple/invoice.php:37
359
- msgid "Invoice Date:"
360
- msgstr "Pavadzīmes Datums:"
 
 
 
 
 
 
361
 
362
- #: includes/class-wcpdf-writepanels.php:196
363
- msgid "h"
364
- msgstr "h"
 
365
 
366
- #: includes/class-wcpdf-writepanels.php:196
367
- msgid "m"
368
- msgstr "m"
369
 
370
- #: templates/pdf/Simple/html-document-wrapper.php:6
371
- #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
372
- msgid "Invoice"
373
- msgstr "Pavadzīme"
374
 
375
- #: templates/pdf/Simple/html-document-wrapper.php:6
376
- #: templates/pdf/Simple/packing-slip.php:9
377
- #: templates/pdf/Simple/packing-slip.php:21
378
- msgid "Packing Slip"
379
- msgstr "Piegādes Forma"
380
 
381
- #: templates/pdf/Simple/invoice.php:40 templates/pdf/Simple/packing-slip.php:30
382
- msgid "Order Date:"
383
- msgstr "Pasūtījuma Datums:"
384
 
385
- #: templates/pdf/Simple/invoice.php:46
386
  msgid "Invoice Number:"
387
  msgstr "Pavadzīmes Numurs:"
388
 
389
- #: templates/pdf/Simple/invoice.php:49 templates/pdf/Simple/packing-slip.php:32
390
  msgid "Order Number:"
391
  msgstr "Pasūtījuma Numurs:"
392
 
393
- #: templates/pdf/Simple/invoice.php:56
 
 
 
 
394
  msgid "Payment Method:"
395
  msgstr "Maksājuma Veids:"
396
 
397
- #: templates/pdf/Simple/invoice.php:69 templates/pdf/Simple/packing-slip.php:45
398
  msgid "Product"
399
  msgstr "Produkts"
400
 
401
- #: templates/pdf/Simple/invoice.php:70 templates/pdf/Simple/packing-slip.php:46
402
  msgid "Quantity"
403
  msgstr "Daudzums"
404
 
405
- #: templates/pdf/Simple/invoice.php:71
406
  msgid "Price"
407
  msgstr "Cena"
408
 
409
- #: templates/pdf/Simple/invoice.php:77
410
  msgid "Description"
411
  msgstr "Apraksts"
412
 
413
- #: templates/pdf/Simple/invoice.php:80
414
  msgid "SKU"
415
  msgstr "SKU"
416
 
417
- #: templates/pdf/Simple/invoice.php:81 templates/pdf/Simple/packing-slip.php:54
418
  msgid "SKU:"
419
  msgstr "SKU:"
420
 
421
- #: templates/pdf/Simple/invoice.php:82 templates/pdf/Simple/packing-slip.php:55
422
  msgid "Weight:"
423
  msgstr "Svars:"
424
 
425
- #: templates/pdf/Simple/invoice.php:114
426
- #: templates/pdf/Simple/packing-slip.php:69
427
  msgid "Customer Notes"
428
  msgstr "Klienta Piezīmes"
429
 
430
- #: woocommerce-pdf-invoices-packingslips.php:96
 
 
 
 
 
 
 
 
 
 
 
 
431
  #, php-format
432
  msgid ""
433
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
@@ -436,39 +1247,65 @@ msgstr ""
436
  "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
437
  "WooCommerce PDF Invoices & Packing Slips!"
438
 
439
- #: woocommerce-pdf-invoices-packingslips.php:191
440
- #: woocommerce-pdf-invoices-packingslips.php:227
441
- msgid "N/A"
442
- msgstr "Nav Pieejams"
 
 
 
 
 
 
 
443
 
444
- #: woocommerce-pdf-invoices-packingslips.php:264
445
- msgid "Payment method"
446
- msgstr "Maksājuma veids"
447
 
448
- #: woocommerce-pdf-invoices-packingslips.php:275
449
- msgid "Shipping method"
450
- msgstr "Piegādes veids"
451
 
452
- #: woocommerce-pdf-invoices-packingslips.php:375
453
- msgid "Subtotal"
454
- msgstr "Starpsumma"
 
 
 
455
 
456
- #: woocommerce-pdf-invoices-packingslips.php:397
457
- msgid "Shipping"
458
- msgstr "Piegāde"
459
 
460
- #: woocommerce-pdf-invoices-packingslips.php:431
461
- msgid "Discount"
462
- msgstr "Atlaide"
463
 
464
- #: woocommerce-pdf-invoices-packingslips.php:470
465
- msgid "VAT"
466
- msgstr "PVN"
467
 
468
- #: woocommerce-pdf-invoices-packingslips.php:507
469
- msgid "Total ex. VAT"
470
- msgstr "Kopā, bez PVN"
471
 
472
- #: woocommerce-pdf-invoices-packingslips.php:510
473
- msgid "Total"
474
- msgstr "Kopā"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2019-12-11 15:16+0100\n"
5
+ "PO-Revision-Date: 2019-12-11 15:17+0100\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: lv\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=3; plural=(n%10==0 || (n%100>=11 && n%100<=19) ? 0 : n"
15
+ "%10==1 && n%100!=11 ? 1 : 2);\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-admin.php:82
21
+ #, php-format
22
+ msgid "Wow, you have created more than %d invoices with our plugin!"
23
+ msgstr ""
24
+
25
+ #: includes/class-wcpdf-admin.php:83
26
+ msgid ""
27
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
28
+ "rating. Help us spread the word and boost our motivation!"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:85
32
+ msgid "Yes you deserve it!"
33
+ msgstr ""
34
+
35
+ #: includes/class-wcpdf-admin.php:86
36
+ #: includes/views/attachment-settings-hint.php:23
37
+ #: includes/views/wcpdf-extensions.php:129
38
+ msgid "Hide this message"
39
+ msgstr ""
40
+
41
+ #: includes/class-wcpdf-admin.php:86
42
+ msgid "Already did!"
43
+ msgstr ""
44
+
45
+ #: includes/class-wcpdf-admin.php:87
46
+ msgid "Actually, I have a complaint..."
47
+ msgstr ""
48
+
49
+ #: includes/class-wcpdf-admin.php:122
50
+ #, fuzzy
51
+ #| msgid "WooCommerce PDF Invoices"
52
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
53
+ msgstr "WooCommerce PDF Pavadzīmes"
54
+
55
+ #: includes/class-wcpdf-admin.php:122
56
+ msgid "Jumpstart the plugin by following our wizard!"
57
+ msgstr ""
58
+
59
+ #: includes/class-wcpdf-admin.php:123
60
+ msgid "Run the Setup Wizard"
61
+ msgstr ""
62
+
63
+ #: includes/class-wcpdf-admin.php:123
64
+ msgid "I am the wizard"
65
+ msgstr ""
66
+
67
+ #: includes/class-wcpdf-admin.php:211 includes/class-wcpdf-admin.php:377
68
+ #: includes/class-wcpdf-main.php:684
69
+ #: includes/documents/class-wcpdf-invoice.php:271
70
+ msgid "Invoice Number"
71
+ msgstr "Pavadzīmes Numurs"
72
+
73
+ #: includes/class-wcpdf-admin.php:248
74
+ #, fuzzy
75
+ #| msgid "Admin New Order email"
76
+ msgid "Send order email"
77
+ msgstr "Administratora \"jauna pasūtījuma\" e-pastam"
78
+
79
+ #: includes/class-wcpdf-admin.php:259
80
+ msgid "Create PDF"
81
+ msgstr "Izveidot PDF"
82
+
83
+ #: includes/class-wcpdf-admin.php:269
84
+ #, fuzzy
85
+ #| msgid "PDF Invoices"
86
+ msgid "PDF Invoice data"
87
+ msgstr "PDF Pavadzīmes"
88
+
89
+ #: includes/class-wcpdf-admin.php:309
90
+ msgid "Send email"
91
+ msgstr ""
92
+
93
+ #: includes/class-wcpdf-admin.php:386 includes/class-wcpdf-admin.php:407
94
+ #: templates/Simple/invoice.php:61
95
+ msgid "Invoice Date:"
96
+ msgstr "Pavadzīmes Datums:"
97
+
98
+ #: includes/class-wcpdf-admin.php:392
99
+ #, fuzzy
100
+ #| msgid "Invoice number format"
101
+ msgid "Set invoice number & date"
102
+ msgstr "Pavadzīmes numura formāts"
103
+
104
+ #: includes/class-wcpdf-admin.php:399
105
+ #, fuzzy
106
+ #| msgid "PDF Invoice Number (unformatted!)"
107
+ msgid "Invoice Number (unformatted!)"
108
+ msgstr "PDF Pavadzīmes Numurs (neformatēts)"
109
+
110
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
111
+ msgid "h"
112
+ msgstr "h"
113
+
114
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
115
+ msgid "m"
116
+ msgstr "m"
117
+
118
+ #: includes/class-wcpdf-admin.php:529
119
+ #, php-format
120
+ msgid "%s email notification manually sent."
121
+ msgstr ""
122
+
123
+ #: includes/class-wcpdf-admin.php:653
124
+ msgid "DEBUG output enabled"
125
+ msgstr ""
126
+
127
+ #: includes/class-wcpdf-assets.php:79
128
+ msgid "Are you sure you want to delete this document? This cannot be undone."
129
+ msgstr ""
130
+
131
+ #: includes/class-wcpdf-frontend.php:57
132
+ #, fuzzy, php-format
133
+ #| msgid "Download the PDF"
134
+ msgid "Download %s (PDF)"
135
+ msgstr "Lejuplādēt PDF"
136
+
137
+ #: includes/class-wcpdf-frontend.php:59
138
+ msgid "Download invoice (PDF)"
139
+ msgstr "Lejuplādēt pavadzīmi (PDF)"
140
+
141
+ #: includes/class-wcpdf-main.php:238 includes/class-wcpdf-main.php:243
142
+ #: includes/class-wcpdf-main.php:313
143
  msgid "You do not have sufficient permissions to access this page."
144
  msgstr "Jums nav tiesību piekļūt šai lapai."
145
 
146
+ #: includes/class-wcpdf-main.php:252
147
+ msgid "You haven't selected any orders"
148
+ msgstr ""
149
+
150
+ #: includes/class-wcpdf-main.php:256
151
+ msgid "Some of the export parameters are missing."
152
+ msgstr ""
153
+
154
+ #: includes/class-wcpdf-main.php:341
155
+ #, php-format
156
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
157
+ msgstr ""
158
+
159
+ #: includes/class-wcpdf-main.php:685
160
+ #: includes/documents/class-wcpdf-invoice.php:255
161
+ #, fuzzy
162
+ #| msgid "Invoice Date:"
163
+ msgid "Invoice Date"
164
+ msgstr "Pavadzīmes Datums:"
165
+
166
+ #: includes/class-wcpdf-settings-callbacks.php:27
167
+ msgid ""
168
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
169
+ "Do not use them on a live website!"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcpdf-settings-callbacks.php:36
173
+ msgid ""
174
+ "These are used for the (optional) footer columns in the <em>Modern "
175
+ "(Premium)</em> template, but can also be used for other elements in your "
176
+ "custom template"
177
+ msgstr ""
178
+ "Šie ir izmantoti (izvēles) kājenes kolonnās <em>Modernā (Premium)</em> "
179
+ "formā, bet var tikt izmantoti arī citiem elementiem individuāli radītajā "
180
+ "formā"
181
+
182
+ #: includes/class-wcpdf-settings-callbacks.php:367
183
+ msgid "Image resolution"
184
+ msgstr "Attēla izšķirtspēja"
185
+
186
+ #: includes/class-wcpdf-settings-callbacks.php:392
187
+ msgid "Save"
188
+ msgstr ""
189
+
190
+ #: includes/class-wcpdf-settings-debug.php:42
191
+ msgid "Reinstall fonts"
192
+ msgstr ""
193
+
194
+ #: includes/class-wcpdf-settings-debug.php:63
195
+ msgid "Fonts reinstalled!"
196
+ msgstr ""
197
+
198
+ #: includes/class-wcpdf-settings-debug.php:70
199
+ msgid "Remove temporary files"
200
+ msgstr ""
201
+
202
+ #: includes/class-wcpdf-settings-debug.php:81
203
+ msgid "Unable to read temporary folder contents!"
204
+ msgstr ""
205
+
206
+ #: includes/class-wcpdf-settings-debug.php:98
207
+ #, php-format
208
+ msgid "Unable to delete %d files! (deleted %d)"
209
+ msgstr ""
210
+
211
+ #: includes/class-wcpdf-settings-debug.php:101
212
+ #, php-format
213
+ msgid "Successfully deleted %d files!"
214
+ msgstr ""
215
+
216
+ #: includes/class-wcpdf-settings-debug.php:105
217
+ msgid "Nothing to delete!"
218
+ msgstr ""
219
+
220
+ #: includes/class-wcpdf-settings-debug.php:114
221
+ msgid "Delete legacy (1.X) settings"
222
+ msgstr ""
223
+
224
+ #: includes/class-wcpdf-settings-debug.php:130
225
+ msgid "Legacy settings deleted!"
226
+ msgstr ""
227
+
228
+ #: includes/class-wcpdf-settings-debug.php:157
229
+ #, fuzzy
230
+ #| msgid "General settings"
231
+ msgid "Debug settings"
232
+ msgstr "Iestatījumi"
233
+
234
+ #: includes/class-wcpdf-settings-debug.php:163
235
+ msgid "Legacy mode"
236
+ msgstr ""
237
+
238
+ #: includes/class-wcpdf-settings-debug.php:169
239
+ msgid ""
240
+ "Legacy mode ensures compatibility with templates and filters from previous "
241
+ "versions."
242
+ msgstr ""
243
+
244
+ #: includes/class-wcpdf-settings-debug.php:175
245
+ msgid "Allow guest access"
246
+ msgstr ""
247
+
248
+ #: includes/class-wcpdf-settings-debug.php:181
249
+ msgid ""
250
+ "Enable this to allow customers that purchase without an account to access "
251
+ "their PDF with a unique key"
252
+ msgstr ""
253
+
254
+ #: includes/class-wcpdf-settings-debug.php:187
255
+ msgid "Calculate document numbers (slow)"
256
+ msgstr ""
257
+
258
+ #: includes/class-wcpdf-settings-debug.php:193
259
+ msgid ""
260
+ "Document numbers (such as invoice numbers) are generated using "
261
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
262
+ "with more than 1."
263
+ msgstr ""
264
+
265
+ #: includes/class-wcpdf-settings-debug.php:199
266
+ msgid "Enable debug output"
267
+ msgstr ""
268
+
269
+ #: includes/class-wcpdf-settings-debug.php:205
270
+ msgid ""
271
+ "Enable this option to output plugin errors if you're getting a blank page or "
272
+ "other PDF generation issues"
273
+ msgstr ""
274
+
275
+ #: includes/class-wcpdf-settings-debug.php:206
276
+ msgid ""
277
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
278
+ "places on your site too, therefor this is not recommended to leave it "
279
+ "enabled on live sites."
280
+ msgstr ""
281
+
282
+ #: includes/class-wcpdf-settings-debug.php:212
283
+ msgid "Enable automatic cleanup"
284
+ msgstr ""
285
+
286
+ #: includes/class-wcpdf-settings-debug.php:219
287
+ #, php-format
288
+ msgid "every %s days"
289
+ msgstr ""
290
+
291
+ #: includes/class-wcpdf-settings-debug.php:224
292
+ msgid ""
293
+ "Automatically clean up PDF files stored in the temporary folder (used for "
294
+ "email attachments)"
295
+ msgstr ""
296
+
297
+ #: includes/class-wcpdf-settings-debug.php:225
298
+ msgid ""
299
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
300
+ "automatic cleanup but not enabled on your server."
301
+ msgstr ""
302
+
303
+ #: includes/class-wcpdf-settings-debug.php:231
304
+ msgid "Output to HTML"
305
+ msgstr ""
306
+
307
+ #: includes/class-wcpdf-settings-debug.php:237
308
+ msgid ""
309
+ "Send the template output as HTML to the browser instead of creating a PDF."
310
+ msgstr ""
311
+
312
+ #: includes/class-wcpdf-settings-debug.php:243
313
+ msgid "Use alternative HTML5 parser to parse HTML"
314
+ msgstr ""
315
+
316
+ #: includes/class-wcpdf-settings-documents.php:30
317
+ #: includes/class-wcpdf-settings.php:96
318
+ msgid "Documents"
319
+ msgstr ""
320
+
321
+ #: includes/class-wcpdf-settings-documents.php:46
322
+ msgid ""
323
+ "All available documents are listed below. Click on a document to configure "
324
+ "it."
325
+ msgstr ""
326
+
327
+ #: includes/class-wcpdf-settings-general.php:38
328
+ msgid "General settings"
329
+ msgstr "Iestatījumi"
330
+
331
+ #: includes/class-wcpdf-settings-general.php:44
332
+ msgid "How do you want to view the PDF?"
333
+ msgstr "Kā vēlaties apskatīt PDF?"
334
+
335
+ #: includes/class-wcpdf-settings-general.php:51
336
+ msgid "Download the PDF"
337
+ msgstr "Lejuplādēt PDF"
338
+
339
+ #: includes/class-wcpdf-settings-general.php:52
340
+ msgid "Open the PDF in a new browser tab/window"
341
+ msgstr "Atvērt PDF pārlūkā jaunā cilnē/logā"
342
+
343
+ #: includes/class-wcpdf-settings-general.php:59
344
+ msgid "Choose a template"
345
+ msgstr "Izvēlieties formu"
346
+
347
+ #: includes/class-wcpdf-settings-general.php:66
348
+ #, fuzzy, php-format
349
+ #| msgid ""
350
+ #| "Want to use your own template? Copy all the files from <code>%s</code> to "
351
+ #| "<code>%s</code> to customize them"
352
+ msgid ""
353
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
354
+ "your (child) theme in <code>%s</code> to customize them"
355
+ msgstr ""
356
+ "Vēlieties izmantot savu formu? Vienkārši nokopējiet visus failus no <code>"
357
+ "%s</code> uz <code>%s</code>, lai tos rediģētu"
358
+
359
+ #: includes/class-wcpdf-settings-general.php:72
360
+ msgid "Paper size"
361
+ msgstr "Lapas izmērs"
362
+
363
+ #: includes/class-wcpdf-settings-general.php:79
364
+ #: includes/views/setup-wizard/paper-format.php:12
365
+ msgid "A4"
366
+ msgstr "A4"
367
+
368
+ #: includes/class-wcpdf-settings-general.php:80
369
+ #: includes/views/setup-wizard/paper-format.php:13
370
+ msgid "Letter"
371
+ msgstr "Vēstule"
372
+
373
+ #: includes/class-wcpdf-settings-general.php:87
374
+ msgid "Test mode"
375
+ msgstr ""
376
+
377
+ #: includes/class-wcpdf-settings-general.php:93
378
+ msgid ""
379
+ "With test mode enabled, any document generated will always use the latest "
380
+ "settings, rather than using the settings as configured at the time the "
381
+ "document was first created."
382
+ msgstr ""
383
+
384
+ #: includes/class-wcpdf-settings-general.php:93
385
+ msgid ""
386
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
387
+ "setting and will still be generated."
388
+ msgstr ""
389
+
390
+ #: includes/class-wcpdf-settings-general.php:99
391
+ msgid "Extended currency symbol support"
392
+ msgstr ""
393
+
394
+ #: includes/class-wcpdf-settings-general.php:105
395
+ msgid "Enable this if your currency symbol is not displaying properly"
396
+ msgstr ""
397
+
398
+ #: includes/class-wcpdf-settings-general.php:111
399
+ msgid "Enable font subsetting"
400
+ msgstr ""
401
+
402
+ #: includes/class-wcpdf-settings-general.php:117
403
+ msgid ""
404
+ "Font subsetting can reduce file size by only including the characters that "
405
+ "are used in the PDF, but limits the ability to edit PDF files later. "
406
+ "Recommended if you're using an Asian font."
407
+ msgstr ""
408
+
409
+ #: includes/class-wcpdf-settings-general.php:123
410
+ msgid "Shop header/logo"
411
+ msgstr "Veikala galvene/logo"
412
+
413
+ #: includes/class-wcpdf-settings-general.php:129
414
+ #: includes/views/setup-wizard/logo.php:20
415
+ msgid "Select or upload your invoice header/logo"
416
+ msgstr "Izvēlieties vai augšup lādējiet Jūsu pavadzīmes galveni/logo"
417
+
418
+ #: includes/class-wcpdf-settings-general.php:130
419
+ #: includes/views/setup-wizard/logo.php:20
420
+ msgid "Set image"
421
+ msgstr "Iestatīt attēlu"
422
+
423
+ #: includes/class-wcpdf-settings-general.php:131
424
+ #: includes/views/setup-wizard/logo.php:20
425
+ msgid "Remove image"
426
+ msgstr "Izņemt attēlu"
427
+
428
+ #: includes/class-wcpdf-settings-general.php:138
429
+ #: includes/class-wcpdf-setup-wizard.php:42
430
+ msgid "Shop Name"
431
+ msgstr "Veikala Nosaukums"
432
+
433
+ #: includes/class-wcpdf-settings-general.php:151
434
+ msgid "Shop Address"
435
+ msgstr "Veikala Adrese"
436
+
437
+ #: includes/class-wcpdf-settings-general.php:166
438
+ msgid "Footer: terms & conditions, policies, etc."
439
+ msgstr "Kājene: lietošanas noteikumi, privātuma politika, u.c."
440
+
441
+ #: includes/class-wcpdf-settings-general.php:181
442
+ msgid "Extra template fields"
443
+ msgstr "Papildus formas lauki"
444
+
445
+ #: includes/class-wcpdf-settings-general.php:187
446
+ msgid "Extra field 1"
447
+ msgstr "Papildus lauks 1"
448
+
449
+ #: includes/class-wcpdf-settings-general.php:195
450
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
451
+ msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 1"
452
+
453
+ #: includes/class-wcpdf-settings-general.php:202
454
+ msgid "Extra field 2"
455
+ msgstr "Papildus lauks 2"
456
+
457
+ #: includes/class-wcpdf-settings-general.php:210
458
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
459
+ msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 2"
460
+
461
+ #: includes/class-wcpdf-settings-general.php:217
462
+ msgid "Extra field 3"
463
+ msgstr "Papildus lauks 3"
464
+
465
+ #: includes/class-wcpdf-settings-general.php:225
466
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
467
+ msgstr "Šī <i>Modernās (Premium)</i> formas kājenes kolonna nr. 3"
468
+
469
+ #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
470
+ msgid "PDF Invoices"
471
+ msgstr "PDF Pavadzīmes"
472
+
473
+ #: includes/class-wcpdf-settings.php:61
474
+ msgid "Settings"
475
+ msgstr "Iestatījumi"
476
+
477
+ #: includes/class-wcpdf-settings.php:74
478
+ msgid "Documentation"
479
+ msgstr ""
480
+
481
+ #: includes/class-wcpdf-settings.php:75
482
+ msgid "Support Forum"
483
+ msgstr ""
484
+
485
+ #: includes/class-wcpdf-settings.php:87
486
+ #, php-format
487
+ msgid ""
488
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
489
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
490
+ "document numbers (slow)' setting in the Status tab to use an alternate "
491
+ "method."
492
+ msgstr ""
493
+
494
+ #: includes/class-wcpdf-settings.php:95
495
+ msgid "General"
496
+ msgstr "Vispārīgā informācija"
497
+
498
+ #: includes/class-wcpdf-settings.php:101
499
+ msgid "Status"
500
+ msgstr "Statuss"
501
+
502
+ #: includes/class-wcpdf-setup-wizard.php:46
503
+ #: includes/views/setup-wizard/logo.php:3
504
+ msgid "Your logo"
505
+ msgstr ""
506
+
507
+ #: includes/class-wcpdf-setup-wizard.php:50
508
+ msgid "Attachments"
509
+ msgstr ""
510
+
511
+ #: includes/class-wcpdf-setup-wizard.php:54
512
+ #: includes/views/setup-wizard/display-options.php:3
513
+ msgid "Display options"
514
+ msgstr ""
515
+
516
+ #: includes/class-wcpdf-setup-wizard.php:58
517
+ #: includes/views/setup-wizard/paper-format.php:3
518
+ msgid "Paper format"
519
+ msgstr ""
520
+
521
+ #: includes/class-wcpdf-setup-wizard.php:62
522
+ #: includes/views/setup-wizard/show-action-buttons.php:3
523
+ msgid "Action buttons"
524
+ msgstr ""
525
+
526
+ #: includes/class-wcpdf-setup-wizard.php:66
527
+ msgid "Ready!"
528
+ msgstr ""
529
+
530
+ #: includes/class-wcpdf-setup-wizard.php:180
531
+ msgid "Previous"
532
+ msgstr ""
533
+
534
+ #: includes/class-wcpdf-setup-wizard.php:186
535
+ msgid "Skip this step"
536
+ msgstr ""
537
+
538
+ #: includes/class-wcpdf-setup-wizard.php:188
539
+ msgid "Finish"
540
+ msgstr ""
541
+
542
+ #: includes/compatibility/class-wc-core-compatibility.php:222
543
+ #, fuzzy
544
+ #| msgid "WooCommerce PDF Invoices"
545
+ msgid "WooCommerce"
546
+ msgstr "WooCommerce PDF Pavadzīmes"
547
+
548
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
549
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
550
+ msgid "N/A"
551
+ msgstr "Nav Pieejams"
552
+
553
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
554
+ msgid "Payment method"
555
+ msgstr "Maksājuma veids"
556
+
557
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
558
+ msgid "Shipping method"
559
+ msgstr "Piegādes veids"
560
+
561
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:874
562
+ #, php-format
563
+ msgid "(includes %s)"
564
+ msgstr ""
565
+
566
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:877
567
+ #, php-format
568
+ msgid "(Includes %s)"
569
+ msgstr ""
570
+
571
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:907
572
+ msgid "Subtotal"
573
+ msgstr "Starpsumma"
574
+
575
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:932
576
+ msgid "Shipping"
577
+ msgstr "Piegāde"
578
+
579
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:995
580
+ msgid "Discount"
581
+ msgstr "Atlaide"
582
+
583
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1036
584
+ msgid "VAT"
585
+ msgstr "PVN"
586
+
587
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1037
588
+ msgid "Tax rate"
589
+ msgstr ""
590
+
591
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1081
592
+ msgid "Total ex. VAT"
593
+ msgstr "Kopā, bez PVN"
594
+
595
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1084
596
+ msgid "Total"
597
+ msgstr "Kopā"
598
+
599
+ #: includes/documents/abstract-wcpdf-order-document.php:782
600
+ #, fuzzy
601
+ #| msgid "Admin New Order email"
602
+ msgid "Admin email"
603
+ msgstr "Administratora \"jauna pasūtījuma\" e-pastam"
604
+
605
+ #: includes/documents/abstract-wcpdf-order-document.php:785
606
+ msgid "Manual email"
607
+ msgstr ""
608
+
609
+ #: includes/documents/class-wcpdf-invoice.php:32
610
+ #: includes/documents/class-wcpdf-invoice.php:56
611
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
612
+ msgid "Invoice"
613
+ msgstr "Pavadzīme"
614
+
615
  # This is a filename (prefix). do not use spaces or special characters!
616
+ #: includes/documents/class-wcpdf-invoice.php:129
617
  msgid "invoice"
618
  msgid_plural "invoices"
619
  msgstr[0] "pavadzīme"
620
  msgstr[1] "pavadzīmes"
621
  msgstr[2] "pavadzīmju"
622
 
623
+ #: includes/documents/class-wcpdf-invoice.php:174
624
+ #: includes/documents/class-wcpdf-packing-slip.php:88
625
+ msgid "Enable"
626
+ msgstr ""
 
 
 
627
 
628
+ #: includes/documents/class-wcpdf-invoice.php:185
629
+ #, fuzzy
630
+ #| msgid "Attach invoice to:"
631
+ msgid "Attach to:"
632
+ msgstr "Pievienot pavadzīmi:"
633
+
634
+ #: includes/documents/class-wcpdf-invoice.php:192
635
+ #, php-format
636
+ msgid ""
637
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
638
+ "permissions for this folder! Without having write access to this folder, the "
639
+ "plugin will not be able to email invoices."
640
+ msgstr ""
641
+ "Šķiet, ka mape (<code>%s</code>) nav rediģējama. Lūdzu pārbaudiet jūsu "
642
+ "piekļuves atļaujas šai mapei. Bez iespējas piekļūt šai mapei, spraudnis "
643
+ "pavadzīmes izmantojot e-pastu neizsūtīs."
644
+
645
+ #: includes/documents/class-wcpdf-invoice.php:198
646
+ msgid "Disable for:"
647
+ msgstr ""
648
+
649
+ #: includes/documents/class-wcpdf-invoice.php:207
650
+ msgid "Select one or more statuses"
651
+ msgstr ""
652
+
653
+ #: includes/documents/class-wcpdf-invoice.php:213
654
+ #: includes/views/setup-wizard/display-options.php:11
655
+ msgid "Display shipping address"
656
+ msgstr ""
657
+
658
+ #: includes/documents/class-wcpdf-invoice.php:219
659
+ msgid ""
660
+ "Display shipping address (in addition to the default billing address) if "
661
+ "different from billing address"
662
+ msgstr ""
663
+
664
+ #: includes/documents/class-wcpdf-invoice.php:225
665
+ #: includes/documents/class-wcpdf-packing-slip.php:111
666
+ #: includes/views/setup-wizard/display-options.php:13
667
+ msgid "Display email address"
668
+ msgstr ""
669
+
670
+ #: includes/documents/class-wcpdf-invoice.php:236
671
+ #: includes/documents/class-wcpdf-packing-slip.php:122
672
+ #: includes/views/setup-wizard/display-options.php:15
673
+ msgid "Display phone number"
674
+ msgstr ""
675
+
676
+ #: includes/documents/class-wcpdf-invoice.php:247
677
+ #: includes/views/setup-wizard/display-options.php:17
678
+ #, fuzzy
679
+ #| msgid "Invoice date"
680
+ msgid "Display invoice date"
681
+ msgstr "Pavadzīmes Datums"
682
+
683
+ #: includes/documents/class-wcpdf-invoice.php:254
684
+ #: includes/documents/class-wcpdf-invoice.php:270
685
+ msgid "No"
686
+ msgstr ""
687
+
688
+ #: includes/documents/class-wcpdf-invoice.php:256
689
+ #, fuzzy
690
+ #| msgid "Order Date:"
691
+ msgid "Order Date"
692
+ msgstr "Pasūtījuma Datums:"
693
+
694
+ #: includes/documents/class-wcpdf-invoice.php:263
695
+ #: includes/views/setup-wizard/display-options.php:19
696
+ #, fuzzy
697
+ #| msgid "Invoice Number"
698
+ msgid "Display invoice number"
699
+ msgstr "Pavadzīmes Numurs"
700
+
701
+ #: includes/documents/class-wcpdf-invoice.php:272
702
+ #, fuzzy
703
+ #| msgid "Order Number:"
704
+ msgid "Order Number"
705
+ msgstr "Pasūtījuma Numurs:"
706
+
707
+ #: includes/documents/class-wcpdf-invoice.php:276
708
+ msgid "Warning!"
709
+ msgstr ""
710
+
711
+ #: includes/documents/class-wcpdf-invoice.php:277
712
+ msgid ""
713
+ "Using the Order Number as invoice number is not recommended as this may lead "
714
+ "to gaps in the invoice number sequence (even when order numbers are "
715
+ "sequential)."
716
+ msgstr ""
717
+
718
+ #: includes/documents/class-wcpdf-invoice.php:278
719
+ msgid "More information"
720
+ msgstr ""
721
+
722
+ #: includes/documents/class-wcpdf-invoice.php:285
723
+ msgid "Next invoice number (without prefix/suffix etc.)"
724
+ msgstr "Nākamais pavadzīmes numurs (bez priedēkļa/piedēkļa u.c.)"
725
+
726
+ #: includes/documents/class-wcpdf-invoice.php:291
727
+ #, fuzzy
728
+ #| msgid ""
729
+ #| "This is the number that will be used on the next invoice that is created. "
730
+ #| "By default, numbering starts from the WooCommerce Order Number of the "
731
+ #| "first invoice that is created and increases for every new invoice. Note "
732
+ #| "that if you override this and set it lower than the highest (PDF) invoice "
733
+ #| "number, this could create double invoice numbers!"
734
+ msgid ""
735
+ "This is the number that will be used for the next document. By default, "
736
+ "numbering starts from 1 and increases for every new document. Note that if "
737
+ "you override this and set it lower than the current/highest number, this "
738
+ "could create duplicate numbers!"
739
+ msgstr ""
740
+ "Šis numurs tiks izmantots nākamajai pavadzīmei, kas tiks radīta. Pēc "
741
+ "noklusējuma, numerācija sākas no WooCommerce pasūtījuma numura un secīgi aug "
742
+ "ar katru nākamo pavadzīmi. Lūdzu ņemiet vēra: ja gadījumā Jūs pārrakstiet šo "
743
+ "numuru uz mazāku kā lielākais (PDF) pavadzīmes numurs, iespējams var tikt "
744
+ "radīta pavadzīmju numuru dublēšanās!"
745
+
746
+ #: includes/documents/class-wcpdf-invoice.php:297
747
+ #, fuzzy
748
+ #| msgid "Invoice number format"
749
+ msgid "Number format"
750
+ msgstr "Pavadzīmes numura formāts"
751
+
752
+ #: includes/documents/class-wcpdf-invoice.php:305
753
+ msgid "Prefix"
754
+ msgstr "Priedēklis"
755
+
756
+ #: includes/documents/class-wcpdf-invoice.php:307
757
+ #, fuzzy
758
+ #| msgid ""
759
+ #| "to use the order year and/or month, use [order_year] or [order_month] "
760
+ #| "respectively"
761
+ msgid ""
762
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
763
+ "respectively"
764
+ msgstr ""
765
+ "izmantojiet [order_year] vai [order_month], lai tiktu attēlots gads vai "
766
+ "mēnesis"
767
+
768
+ #: includes/documents/class-wcpdf-invoice.php:310
769
+ msgid "Suffix"
770
+ msgstr "Piedēklis"
771
+
772
+ #: includes/documents/class-wcpdf-invoice.php:315
773
+ msgid "Padding"
774
+ msgstr "Numura garums"
775
+
776
+ #: includes/documents/class-wcpdf-invoice.php:318
777
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
778
+ msgstr ""
779
+ "ievadiet pavadzīmes numura vēlamo garumu - ievadiet \"6\" lai pavadzīmes "
780
+ "numuru 42 attēlotu kā 000042"
781
+
782
+ #: includes/documents/class-wcpdf-invoice.php:321
783
+ msgid ""
784
+ "note: if you have already created a custom invoice number format with a "
785
+ "filter, the above settings will be ignored"
786
+ msgstr ""
787
+ "svarīgi: ja Jūs jau esat izveidojis savu pavadzīmes numerāciju ar filtru, "
788
+ "tad augstākminētie iestatījumi tiks ignorēti"
789
+
790
+ #: includes/documents/class-wcpdf-invoice.php:327
791
+ #, fuzzy
792
+ #| msgid "Invoice number format"
793
+ msgid "Reset invoice number yearly"
794
+ msgstr "Pavadzīmes numura formāts"
795
+
796
+ #: includes/documents/class-wcpdf-invoice.php:338
797
+ msgid "Allow My Account invoice download"
798
+ msgstr ""
799
+
800
+ #: includes/documents/class-wcpdf-invoice.php:345
801
+ msgid "Only when an invoice is already created/emailed"
802
+ msgstr ""
803
+
804
+ #: includes/documents/class-wcpdf-invoice.php:346
805
+ msgid "Only for specific order statuses (define below)"
806
+ msgstr ""
807
+
808
+ #: includes/documents/class-wcpdf-invoice.php:347
809
+ msgid "Always"
810
+ msgstr ""
811
 
812
+ #: includes/documents/class-wcpdf-invoice.php:348
813
+ msgid "Never"
814
+ msgstr ""
815
 
816
+ #: includes/documents/class-wcpdf-invoice.php:363
817
+ msgid "Enable invoice number column in the orders list"
818
+ msgstr "Iespējot pavadzīmes numura kolonnu pasūtījuma sarakstā"
819
 
820
+ #: includes/documents/class-wcpdf-invoice.php:374
821
+ msgid "Disable for free products"
822
+ msgstr ""
823
 
824
+ #: includes/documents/class-wcpdf-invoice.php:380
825
+ msgid ""
826
+ "Disable automatic creation/attachment when only free products are ordered"
827
+ msgstr ""
828
 
829
+ #: includes/documents/class-wcpdf-invoice.php:386
830
+ msgid "Always use most current settings"
831
+ msgstr ""
832
 
833
+ #: includes/documents/class-wcpdf-invoice.php:392
 
834
  msgid ""
835
+ "When enabled, the document will always reflect the most current settings "
836
+ "(such as footer text, document name, etc.) rather than using historical "
837
+ "settings."
838
  msgstr ""
 
 
839
 
840
+ #: includes/documents/class-wcpdf-invoice.php:394
 
841
  msgid ""
842
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
843
+ "your company name or address in the future, previously generated documents "
844
+ "will also be affected."
845
  msgstr ""
 
 
846
 
847
+ #: includes/documents/class-wcpdf-invoice.php:407
848
+ msgid "Invoice numbers are created by a third-party extension."
849
+ msgstr ""
 
850
 
851
+ #: includes/documents/class-wcpdf-invoice.php:409
852
+ #, php-format
853
+ msgid "Configure it <a href=\"%s\">here</a>."
854
+ msgstr ""
855
 
856
+ #: includes/documents/class-wcpdf-packing-slip.php:32
857
+ #: includes/documents/class-wcpdf-packing-slip.php:41
858
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
859
+ msgid "Packing Slip"
860
+ msgstr "Piegādes Forma"
861
 
862
+ # This is a filename (prefix). do not use spaces or special characters!
863
+ #: includes/documents/class-wcpdf-packing-slip.php:47
864
+ msgid "packing-slip"
865
+ msgid_plural "packing-slips"
866
+ msgstr[0] "piegādes-forma"
867
+ msgstr[1] "piegādes-formas"
868
+ msgstr[2] "piegādes-formu"
869
 
870
+ #: includes/documents/class-wcpdf-packing-slip.php:99
871
+ msgid "Display billing address"
872
+ msgstr ""
873
 
874
+ #: includes/documents/class-wcpdf-packing-slip.php:105
875
+ msgid ""
876
+ "Display billing address (in addition to the default shipping address) if "
877
+ "different from shipping address"
878
+ msgstr ""
879
 
880
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
881
+ msgid "Legacy Document"
882
+ msgstr ""
883
 
884
+ #: includes/legacy/class-wcpdf-legacy.php:72
885
+ msgid "Error"
886
+ msgstr ""
887
 
888
+ #: includes/legacy/class-wcpdf-legacy.php:73
889
+ msgid ""
890
+ "An outdated template or action hook was used to generate the PDF. Legacy "
891
+ "mode has been activated, please try again by reloading this page."
892
+ msgstr ""
893
 
894
+ #: includes/legacy/class-wcpdf-legacy.php:76
895
+ msgid "The following function was called"
896
+ msgstr ""
897
 
898
+ #: includes/views/attachment-settings-hint.php:22
899
  #, php-format
900
  msgid ""
901
+ "It looks like you haven't setup any email attachments yet, check the "
902
+ "settings under <b>%sDocuments > Invoice%s</b>"
 
903
  msgstr ""
 
 
 
904
 
905
+ #: includes/views/setup-wizard/attach-to.php:3
906
+ msgid "Attach too..."
907
+ msgstr ""
908
 
909
+ #: includes/views/setup-wizard/attach-to.php:4
910
+ msgid "Select to which emails you would like to attach your invoice."
911
+ msgstr ""
912
 
913
+ #: includes/views/setup-wizard/display-options.php:4
914
+ msgid "Select some additional display options for your invoice."
915
+ msgstr ""
916
 
917
+ #: includes/views/setup-wizard/good-to-go.php:3
918
+ msgid "You are good to go!"
 
 
 
919
  msgstr ""
 
 
920
 
921
+ #: includes/views/setup-wizard/good-to-go.php:4
922
+ msgid "If you have any questions please have a look at our documentation:"
923
+ msgstr ""
924
 
925
+ #: includes/views/setup-wizard/good-to-go.php:5
926
+ #, fuzzy
927
+ #| msgid "PDF Packing Slips"
928
+ msgid "Invoices & Packing Slips"
929
+ msgstr "PDF Piegādes Formas"
930
 
931
+ #: includes/views/setup-wizard/good-to-go.php:6
932
+ msgid "Happy selling!"
933
+ msgstr ""
934
 
935
+ #: includes/views/setup-wizard/logo.php:4
936
+ msgid "Set the header image that will display on your invoice."
937
+ msgstr ""
938
 
939
+ #: includes/views/setup-wizard/paper-format.php:4
940
+ msgid "Select the paper format for your invoice."
941
+ msgstr ""
942
 
943
+ #: includes/views/setup-wizard/shop-name.php:3
944
+ msgid "Enter your shop name"
945
+ msgstr ""
946
 
947
+ #: includes/views/setup-wizard/shop-name.php:4
948
+ msgid ""
949
+ "Lets quickly setup your invoice. Please enter the name and address of your "
950
+ "shop in the fields on the right."
951
+ msgstr ""
952
 
953
+ #: includes/views/setup-wizard/show-action-buttons.php:4
954
+ msgid ""
955
+ "Would you like to display the action buttons in your WooCommerce order list? "
956
+ "The action buttons allow you to manually create a PDF."
957
+ msgstr ""
958
 
959
+ #: includes/views/setup-wizard/show-action-buttons.php:5
960
+ msgid "(You can always change this setting later via the Screen Options menu)"
961
+ msgstr ""
962
 
963
+ #: includes/views/setup-wizard/show-action-buttons.php:18
964
+ msgid "Show action buttons"
965
+ msgstr ""
966
 
967
+ #: includes/views/wcpdf-extensions.php:16
968
+ msgid "Check out these premium extensions!"
969
+ msgstr ""
970
 
971
+ #: includes/views/wcpdf-extensions.php:17
972
+ msgid "click items to read more"
973
+ msgstr ""
974
 
975
+ #: includes/views/wcpdf-extensions.php:22
976
+ msgid ""
977
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
978
+ "system"
979
+ msgstr ""
980
 
981
+ #: includes/views/wcpdf-extensions.php:24
982
  msgid ""
983
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
984
+ "premium extensions:"
985
  msgstr ""
 
 
986
 
987
+ #: includes/views/wcpdf-extensions.php:25
988
+ msgid "Professional features:"
989
+ msgstr ""
990
 
991
+ #: includes/views/wcpdf-extensions.php:27
992
+ #: includes/views/wcpdf-extensions.php:57
993
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
 
 
 
 
994
  msgstr ""
 
 
 
 
 
995
 
996
+ #: includes/views/wcpdf-extensions.php:28
997
+ #: includes/views/wcpdf-extensions.php:58
998
+ msgid ""
999
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1000
+ "packing slips, for example to a drop-shipper or a supplier."
1001
+ msgstr ""
1002
 
1003
+ #: includes/views/wcpdf-extensions.php:29
1004
+ #: includes/views/wcpdf-extensions.php:59
1005
+ msgid ""
1006
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1007
+ "document) to the WooCommerce emails of your choice."
1008
+ msgstr ""
1009
 
1010
+ #: includes/views/wcpdf-extensions.php:30
1011
+ #: includes/views/wcpdf-extensions.php:60
1012
  msgid ""
1013
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1014
+ "and credit notes or utilize the main invoice numbering system"
1015
  msgstr ""
 
 
1016
 
1017
+ #: includes/views/wcpdf-extensions.php:31
1018
+ #: includes/views/wcpdf-extensions.php:61
1019
+ msgid ""
1020
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1021
+ "additional custom fields, font sizes etc. without the need to create a "
1022
+ "custom template."
1023
+ msgstr ""
1024
 
1025
+ #: includes/views/wcpdf-extensions.php:32
1026
+ #: includes/views/wcpdf-extensions.php:62
1027
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1028
+ msgstr ""
1029
 
1030
+ #: includes/views/wcpdf-extensions.php:34
1031
+ #: includes/views/wcpdf-extensions.php:114
1032
+ msgid "Advanced, customizable templates"
1033
  msgstr ""
 
 
1034
 
1035
+ #: includes/views/wcpdf-extensions.php:36
1036
+ #: includes/views/wcpdf-extensions.php:117
1037
  msgid ""
1038
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1039
+ "your needs with a drag & drop customizer"
1040
  msgstr ""
 
 
1041
 
1042
+ #: includes/views/wcpdf-extensions.php:37
1043
+ #: includes/views/wcpdf-extensions.php:118
1044
+ msgid "Two extra stylish premade templates (Modern & Business)"
1045
+ msgstr ""
1046
 
1047
+ #: includes/views/wcpdf-extensions.php:39
1048
+ #: includes/views/wcpdf-extensions.php:63
1049
+ msgid "Upload automatically to dropbox"
1050
+ msgstr ""
1051
 
1052
+ #: includes/views/wcpdf-extensions.php:41
1053
+ msgid ""
1054
+ "This extension conveniently uploads all the invoices (and other pdf "
1055
+ "documents from the professional extension) that are emailed to your "
1056
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1057
+ "date!"
1058
+ msgstr ""
1059
 
1060
+ #: includes/views/wcpdf-extensions.php:44
1061
+ #, fuzzy
1062
+ #| msgid "WooCommerce PDF Invoices"
1063
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1064
+ msgstr "WooCommerce PDF Pavadzīmes"
1065
 
1066
+ #: includes/views/wcpdf-extensions.php:53
1067
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1068
+ msgstr ""
1069
 
1070
+ #: includes/views/wcpdf-extensions.php:55
1071
+ msgid ""
1072
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1073
+ "features:"
1074
+ msgstr ""
1075
 
1076
+ #: includes/views/wcpdf-extensions.php:65
1077
+ #, fuzzy
1078
+ #| msgid ""
1079
+ #| "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1080
+ #| "installed & activated!"
1081
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1082
+ msgstr ""
1083
+ "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
1084
+ "WooCommerce PDF Invoices & Packing Slips!"
1085
 
1086
+ #: includes/views/wcpdf-extensions.php:73
1087
+ msgid "Automatically send payment reminders to your customers"
1088
+ msgstr ""
1089
 
1090
+ #: includes/views/wcpdf-extensions.php:75
1091
+ #, fuzzy
1092
+ #| msgid "WooCommerce order number"
1093
+ msgid "WooCommerce Smart Reminder emails"
1094
+ msgstr "WooCommerce pasūtījuma numurs"
1095
 
1096
+ #: includes/views/wcpdf-extensions.php:77
1097
+ msgid "<b>Completely automatic</b> scheduled emails"
1098
+ msgstr ""
1099
 
1100
+ #: includes/views/wcpdf-extensions.php:78
1101
+ msgid ""
1102
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1103
+ "from the order (name, order total, etc)"
1104
+ msgstr ""
1105
 
1106
+ #: includes/views/wcpdf-extensions.php:79
1107
  msgid ""
1108
+ "Configure the exact requirements for sending an email (time after order, "
1109
+ "order status, payment method)"
 
1110
  msgstr ""
 
 
 
1111
 
1112
+ #: includes/views/wcpdf-extensions.php:80
1113
+ msgid ""
1114
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1115
+ "order language."
1116
+ msgstr ""
1117
 
1118
+ #: includes/views/wcpdf-extensions.php:81
1119
+ msgid ""
1120
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1121
+ "reminders, repeat purchases)"
1122
+ msgstr ""
1123
 
1124
+ #: includes/views/wcpdf-extensions.php:82
1125
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1126
+ msgstr ""
1127
 
1128
+ #: includes/views/wcpdf-extensions.php:84
1129
+ msgid "Get WooCommerce Smart Reminder Emails"
1130
+ msgstr ""
1131
 
1132
+ #: includes/views/wcpdf-extensions.php:93
1133
+ msgid ""
1134
+ "Automatically send new orders or packing slips to your printer, as soon as "
1135
+ "the customer orders!"
1136
+ msgstr ""
1137
 
1138
+ #: includes/views/wcpdf-extensions.php:99
1139
+ msgid ""
1140
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1141
+ "partners at Simba Hosting"
1142
+ msgstr ""
1143
 
1144
+ #: includes/views/wcpdf-extensions.php:100
1145
+ #, fuzzy
1146
+ #| msgid "WooCommerce order number"
1147
+ msgid "WooCommerce Automatic Order Printing"
1148
+ msgstr "WooCommerce pasūtījuma numurs"
1149
 
1150
+ #: includes/views/wcpdf-extensions.php:119
1151
+ #, fuzzy, php-format
1152
+ #| msgid ""
1153
+ #| "Looking for more advanced templates? Check out the Premium PDF Invoice & "
1154
+ #| "Packing Slips templates at %s."
1155
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1156
+ msgstr ""
1157
+ "Nepieciešamas formas ar plašākām iespējām? Apskatiet Premium PDF Invoice & "
1158
+ "Packing Slips formas %s."
1159
 
1160
+ #: includes/views/wcpdf-extensions.php:120
1161
+ #, php-format
1162
+ msgid "For custom templates, contact us at %s."
1163
+ msgstr "Lai iegūtu personificētas formas, sazinieties ar mums %s."
1164
 
1165
+ #: includes/views/wcpdf-settings-page.php:9
1166
+ msgid "WooCommerce PDF Invoices"
1167
+ msgstr "WooCommerce PDF Pavadzīmes"
1168
 
1169
+ #: includes/wcpdf-functions.php:208
1170
+ msgid "Error creating PDF, please contact the site owner."
1171
+ msgstr ""
 
1172
 
1173
+ #: templates/Simple/invoice.php:31 templates/Simple/packing-slip.php:44
1174
+ msgid "Billing Address:"
1175
+ msgstr ""
 
 
1176
 
1177
+ #: templates/Simple/invoice.php:44
1178
+ msgid "Ship To:"
1179
+ msgstr ""
1180
 
1181
+ #: templates/Simple/invoice.php:55
1182
  msgid "Invoice Number:"
1183
  msgstr "Pavadzīmes Numurs:"
1184
 
1185
+ #: templates/Simple/invoice.php:66 templates/Simple/packing-slip.php:54
1186
  msgid "Order Number:"
1187
  msgstr "Pasūtījuma Numurs:"
1188
 
1189
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1190
+ msgid "Order Date:"
1191
+ msgstr "Pasūtījuma Datums:"
1192
+
1193
+ #: templates/Simple/invoice.php:74
1194
  msgid "Payment Method:"
1195
  msgstr "Maksājuma Veids:"
1196
 
1197
+ #: templates/Simple/invoice.php:88 templates/Simple/packing-slip.php:76
1198
  msgid "Product"
1199
  msgstr "Produkts"
1200
 
1201
+ #: templates/Simple/invoice.php:89 templates/Simple/packing-slip.php:77
1202
  msgid "Quantity"
1203
  msgstr "Daudzums"
1204
 
1205
+ #: templates/Simple/invoice.php:90
1206
  msgid "Price"
1207
  msgstr "Cena"
1208
 
1209
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
1210
  msgid "Description"
1211
  msgstr "Apraksts"
1212
 
1213
+ #: templates/Simple/invoice.php:102 templates/Simple/packing-slip.php:89
1214
  msgid "SKU"
1215
  msgstr "SKU"
1216
 
1217
+ #: templates/Simple/invoice.php:103 templates/Simple/packing-slip.php:90
1218
  msgid "SKU:"
1219
  msgstr "SKU:"
1220
 
1221
+ #: templates/Simple/invoice.php:104 templates/Simple/packing-slip.php:91
1222
  msgid "Weight:"
1223
  msgstr "Svars:"
1224
 
1225
+ #: templates/Simple/invoice.php:119 templates/Simple/packing-slip.php:106
 
1226
  msgid "Customer Notes"
1227
  msgstr "Klienta Piezīmes"
1228
 
1229
+ #: templates/Simple/packing-slip.php:31
1230
+ #, fuzzy
1231
+ #| msgid "Shop Address"
1232
+ msgid "Shipping Address:"
1233
+ msgstr "Veikala Adrese"
1234
+
1235
+ #: templates/Simple/packing-slip.php:62
1236
+ #, fuzzy
1237
+ #| msgid "Shipping method"
1238
+ msgid "Shipping Method:"
1239
+ msgstr "Piegādes veids"
1240
+
1241
+ #: woocommerce-pdf-invoices-packingslips.php:238
1242
  #, php-format
1243
  msgid ""
1244
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1247
  "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
1248
  "WooCommerce PDF Invoices & Packing Slips!"
1249
 
1250
+ #: woocommerce-pdf-invoices-packingslips.php:250
1251
+ #, fuzzy
1252
+ #| msgid ""
1253
+ #| "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1254
+ #| "installed & activated!"
1255
+ msgid ""
1256
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
1257
+ "higher recommended)."
1258
+ msgstr ""
1259
+ "%sWooCommerce%s ir jābūt instalētam un aktivizētam, lai varētu izmantot "
1260
+ "WooCommerce PDF Invoices & Packing Slips!"
1261
 
1262
+ #: woocommerce-pdf-invoices-packingslips.php:251
1263
+ msgid "How to update your PHP version"
1264
+ msgstr ""
1265
 
1266
+ #~ msgid "Template"
1267
+ #~ msgstr "Forma"
 
1268
 
1269
+ #~ msgid ""
1270
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
1271
+ #~ "extension."
1272
+ #~ msgstr ""
1273
+ #~ "Augšuplādējiet visas pavadzīmes automātiski uz Jūsu Dropbox!<br/>Lasīt "
1274
+ #~ "vairāk par %s paplašinājumiem."
1275
 
1276
+ #~ msgid "Customer Processing Order email"
1277
+ #~ msgstr "Klienta \"Pasūtījums ir apstrādē\" e-pastam"
 
1278
 
1279
+ #~ msgid "Customer Completed Order email"
1280
+ #~ msgstr "Klienta \"Pasūtījums apstrādāts\" e-pastam"
 
1281
 
1282
+ #~ msgid "Customer Invoice email"
1283
+ #~ msgstr "Klienta \"Pavadzīme\" e-pastam"
 
1284
 
1285
+ #~ msgid "PDF Template settings"
1286
+ #~ msgstr "PDF Formas iestatījumi"
 
1287
 
1288
+ #~ msgid "Number to display on invoice"
1289
+ #~ msgstr "Numurs, kas tiks attēlots uz pavadzīmes"
1290
+
1291
+ #~ msgid "Built-in sequential invoice number"
1292
+ #~ msgstr "Iestrādātais secīgais pavadzīmes numurs"
1293
+
1294
+ #~ msgid ""
1295
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
1296
+ #~ "the WooCommerce order number"
1297
+ #~ msgstr ""
1298
+ #~ "Ja izmantojat spraudni \"WooCommerce Sequential Order Numbers\", lūdzu "
1299
+ #~ "izvēlieties WooCommerce pasūtījuma numuru"
1300
+
1301
+ #~ msgid "Date to display on invoice"
1302
+ #~ msgstr "Datumus, kurš tiks attēlots uz pavadzīmes"
1303
+
1304
+ #~ msgid "Order date"
1305
+ #~ msgstr "Pasūtījuma Datums"
1306
+
1307
+ #~ msgid "PDF invoice"
1308
+ #~ msgstr "PDF pavadzīme"
1309
+
1310
+ #~ msgid "PDF Packing Slip"
1311
+ #~ msgstr "PDF Piegādes Forma"
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice,
5
  Requires at least: 3.5
6
  Tested up to: 5.3
7
  Requires PHP: 5.3
8
- Stable tag: 2.4.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -102,6 +102,17 @@ There's a setting on the Status tab of the settings page that allows you to togg
102
 
103
  == Changelog ==
104
 
 
 
 
 
 
 
 
 
 
 
 
105
  = 2.4.2 =
106
  * Fix: 'No' option in new date & number visibility setting
107
  * Fix: Resetting headers caused unintended caching of PDF files on some hosts
5
  Requires at least: 3.5
6
  Tested up to: 5.3
7
  Requires PHP: 5.3
8
+ Stable tag: 2.4.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
102
 
103
  == Changelog ==
104
 
105
+ = 2.4.3 =
106
+ * Fix: Prevent errors unsetting a non-existing setting
107
+ * Fix: Potential crash on improperly initiated documents
108
+ * Fix: Reversed tax rate calculation arguments
109
+ * Fix: Support tax rate functions for non-line items
110
+ * Fix: comma position on multiple tax rates
111
+ * Fix: Setup wizard styles
112
+ * Translations: Added lv locale for Latvian (keeping lv_LV as fallback)
113
+ * Translations: Updated bundled Czech translations
114
+ * Tested up to WooCommerce 3.9
115
+
116
  = 2.4.2 =
117
  * Fix: 'No' option in new date & number visibility setting
118
  * Fix: Resetting headers caused unintended caching of PDF files on some hosts
woocommerce-pdf-invoices-packingslips.php CHANGED
@@ -3,14 +3,14 @@
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: 2.4.2
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later
10
  * License URI: http://www.opensource.org/licenses/gpl-license.php
11
  * Text Domain: woocommerce-pdf-invoices-packing-slips
12
  * WC requires at least: 2.2.0
13
- * WC tested up to: 3.8.0
14
  */
15
 
16
  if ( ! defined( 'ABSPATH' ) ) {
@@ -21,7 +21,7 @@ if ( !class_exists( 'WPO_WCPDF' ) ) :
21
 
22
  class WPO_WCPDF {
23
 
24
- public $version = '2.4.2';
25
  public $plugin_basename;
26
  public $legacy_mode;
27
 
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: 2.4.3
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later
10
  * License URI: http://www.opensource.org/licenses/gpl-license.php
11
  * Text Domain: woocommerce-pdf-invoices-packing-slips
12
  * WC requires at least: 2.2.0
13
+ * WC tested up to: 3.9.0
14
  */
15
 
16
  if ( ! defined( 'ABSPATH' ) ) {
21
 
22
  class WPO_WCPDF {
23
 
24
+ public $version = '2.4.3';
25
  public $plugin_basename;
26
  public $legacy_mode;
27