WooCommerce PDF Invoices & Packing Slips - Version 1.3.1

Version Description

  • Fix: invoice number was cleared when Order Actions were being used when an invoice number was not set
  • Translations: Updated Slovak (Thanks Jozef!)
  • Translations: Added Czech (Thanks CubiQ!)
Download this release

Release Info

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

Code changes from version 1.3.0 to 1.3.1

includes/class-wcpdf-export.php CHANGED
@@ -314,6 +314,10 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
314
  // store invoice_number in class object
315
  $this->invoice_number = $invoice_number;
316
 
 
 
 
 
317
  return $invoice_number;
318
  }
319
 
@@ -396,6 +400,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
396
  $data['line_subtotal_tax'] = $this->wc_price( $item['line_subtotal_tax'] );
397
  $data['ex_price'] = $this->get_formatted_item_price ( $item, 'total', 'excl' );
398
  $data['price'] = $this->get_formatted_item_price ( $item, 'total' );
 
399
 
400
  // Calculate the single price with the same rules as the formatted line subtotal (!)
401
  // = before discount
314
  // store invoice_number in class object
315
  $this->invoice_number = $invoice_number;
316
 
317
+ // store invoice number in _POST superglobal to prevent the number from being cleared in a save action
318
+ // (http://wordpress.org/support/topic/customer-invoice-selection-from-order-detail-page-doesnt-record-invoice-id?replies=1)
319
+ $_POST['_wcpdf_invoice_number'] = $invoice_number;
320
+
321
  return $invoice_number;
322
  }
323
 
400
  $data['line_subtotal_tax'] = $this->wc_price( $item['line_subtotal_tax'] );
401
  $data['ex_price'] = $this->get_formatted_item_price ( $item, 'total', 'excl' );
402
  $data['price'] = $this->get_formatted_item_price ( $item, 'total' );
403
+ $data['order_price'] = $this->order->get_formatted_line_subtotal( $item ); // formatted according to WC settings
404
 
405
  // Calculate the single price with the same rules as the formatted line subtotal (!)
406
  // = before discount
includes/class-wcpdf-writepanels.php CHANGED
@@ -181,10 +181,13 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
181
  }
182
 
183
  /**
184
- * Add actions to menu
185
  */
186
  public function edit_invoice_number($order) {
187
- woocommerce_wp_text_input( array( 'id' => '_wcpdf_invoice_number', 'label' => __( 'PDF Invoice Number (unformatted!)', 'wpo_wcpdf' ) ) );
 
 
 
188
  }
189
 
190
  /**
@@ -192,7 +195,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
192
  */
193
  public function save_invoice_number($post_id) {
194
  global $post_type;
195
- if( $post_type == 'shop_order' ) {
196
  update_post_meta( $post_id, '_wcpdf_invoice_number', stripslashes( $_POST['_wcpdf_invoice_number'] ));
197
  }
198
  }
181
  }
182
 
183
  /**
184
+ * Add box to edit invoice number to order details page
185
  */
186
  public function edit_invoice_number($order) {
187
+ $invoice_exists = get_post_meta( $order->id, '_wcpdf_invoice_exists', true );
188
+ if (!empty($invoice_exists)) {
189
+ woocommerce_wp_text_input( array( 'id' => '_wcpdf_invoice_number', 'label' => __( 'PDF Invoice Number (unformatted!)', 'wpo_wcpdf' ) ) );
190
+ }
191
  }
192
 
193
  /**
195
  */
196
  public function save_invoice_number($post_id) {
197
  global $post_type;
198
+ if( $post_type == 'shop_order' && isset($_POST['_wcpdf_invoice_number'])) {
199
  update_post_meta( $post_id, '_wcpdf_invoice_number', stripslashes( $_POST['_wcpdf_invoice_number'] ));
200
  }
201
  }
languages/wpo_wcpdf-cs_CZ.mo ADDED
Binary file
languages/wpo_wcpdf-cs_CZ.po ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-02-17 22:02+0100\n"
5
+ "PO-Revision-Date: 2014-04-08 21:09+0100\n"
6
+ "Last-Translator: Revotech.cz <info@revotech.cz>\n"
7
+ "Language-Team: KubiQ <7kubiq7@gmail.com>\n"
8
+ "Language: sk\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.4\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-export.php:138 includes/class-wcpdf-export.php:143
20
+ #: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
21
+ #: includes/class-wcpdf-export.php:172
22
+ msgid "You do not have sufficient permissions to access this page."
23
+ msgstr "Nemáte dostatečné oprávnění pro přístup."
24
+
25
+ # This is a filename (prefix). do not use spaces or special characters!
26
+ #: includes/class-wcpdf-export.php:180 includes/class-wcpdf-export.php:262
27
+ msgid "invoice"
28
+ msgid_plural "invoices"
29
+ msgstr[0] "Faktura"
30
+ msgstr[1] "Faktury"
31
+ msgstr[2] "Faktur"
32
+
33
+ # This is a filename (prefix). do not use spaces or special characters!
34
+ #: includes/class-wcpdf-export.php:182
35
+ msgid "packing-slip"
36
+ msgid_plural "packing-slips"
37
+ msgstr[0] "Dodací List"
38
+ msgstr[1] "Dodací Listy"
39
+ msgstr[2] "Dodací Listy"
40
+
41
+ #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
42
+ #: includes/class-wcpdf-writepanels.php:131
43
+ #: includes/class-wcpdf-writepanels.php:132
44
+ msgid "PDF Invoices"
45
+ msgstr "PDF Faktura"
46
+
47
+ #: includes/class-wcpdf-settings.php:60
48
+ msgid "Settings"
49
+ msgstr "Nastavení"
50
+
51
+ #: includes/class-wcpdf-settings.php:86
52
+ msgid "WooCommerce PDF Invoices"
53
+ msgstr "WooCommerce PDF Faktury"
54
+
55
+ #: includes/class-wcpdf-settings.php:88
56
+ msgid "General"
57
+ msgstr "Všeobecné"
58
+
59
+ #: includes/class-wcpdf-settings.php:89
60
+ msgid "Template"
61
+ msgstr "Šablona"
62
+
63
+ #: includes/class-wcpdf-settings.php:98
64
+ #, php-format
65
+ msgid ""
66
+ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
67
+ "Packing Slips templates at %s."
68
+ msgstr ""
69
+ "Hledáte lepší šablony? Navštivte Premium PDF Invoice & Packing Slips šablony "
70
+ "na %s."
71
+
72
+ #: includes/class-wcpdf-settings.php:99
73
+ #, php-format
74
+ msgid "For custom templates, contact us at %s."
75
+ msgstr "Pro vlastní šablonu nás kontaktujte na %s."
76
+
77
+ #: includes/class-wcpdf-settings.php:153
78
+ msgid "General settings"
79
+ msgstr "Všeobecné nastavení"
80
+
81
+ #: includes/class-wcpdf-settings.php:160
82
+ msgid "How do you want to view the PDF?"
83
+ msgstr "Jak chcete zobrazit PDF?"
84
+
85
+ #: includes/class-wcpdf-settings.php:168
86
+ msgid "Download the PDF"
87
+ msgstr "Stáhnout PDF"
88
+
89
+ #: includes/class-wcpdf-settings.php:169
90
+ msgid "Open the PDF in a new browser tab/window"
91
+ msgstr "Otevřít PDF v novém okně"
92
+
93
+ #: includes/class-wcpdf-settings.php:179
94
+ msgid "Attach invoice to:"
95
+ msgstr "Přiložit fakturu k:"
96
+
97
+ #: includes/class-wcpdf-settings.php:187
98
+ msgid "Admin New Order email"
99
+ msgstr "Administrátor - email s novou objednávkou"
100
+
101
+ #: includes/class-wcpdf-settings.php:188
102
+ msgid "Customer Processing Order email"
103
+ msgstr "Zákazník - email s přijatou objednávkou"
104
+
105
+ #: includes/class-wcpdf-settings.php:189
106
+ msgid "Customer Completed Order email"
107
+ msgstr "Zákazník - email s dokončenou objednávkou"
108
+
109
+ #: includes/class-wcpdf-settings.php:190
110
+ msgid "Customer Invoice email"
111
+ msgstr "Zákazník - email s fakturou"
112
+
113
+ #: includes/class-wcpdf-settings.php:192
114
+ #, php-format
115
+ msgid ""
116
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
117
+ "permissions for this folder! Without having write access to this folder, the "
118
+ "plugin will not be able to email invoices."
119
+ msgstr ""
120
+ "Zdá se, že dočasná složka (<code>%s</code>) není přístupná, skontrolujte "
121
+ "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky, "
122
+ "nebude možné odesílat faktury e-mailem."
123
+
124
+ #: includes/class-wcpdf-settings.php:224
125
+ msgid "PDF Template settings"
126
+ msgstr "Nastavení PDF šablony"
127
+
128
+ #: includes/class-wcpdf-settings.php:231
129
+ msgid "Choose a template"
130
+ msgstr "Vyberte šablonu"
131
+
132
+ #: includes/class-wcpdf-settings.php:239
133
+ msgid ""
134
+ "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
135
+ "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
136
+ "woocommerce/pdf/yourtemplate/</code> to customize them"
137
+ msgstr ""
138
+ "Chcete použít vlastní šablonu? Skopírujte všechny soubory z "
139
+ "<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> do "
140
+ "<code>yourtheme/woocommerce/pdf/yourtemplate/</code> a upravte je podla "
141
+ "potřeby"
142
+
143
+ #: includes/class-wcpdf-settings.php:245
144
+ msgid "Paper size"
145
+ msgstr "Velikost papíru"
146
+
147
+ #: includes/class-wcpdf-settings.php:253
148
+ msgid "A4"
149
+ msgstr "A4"
150
+
151
+ #: includes/class-wcpdf-settings.php:254
152
+ msgid "Letter"
153
+ msgstr "List"
154
+
155
+ #: includes/class-wcpdf-settings.php:261
156
+ msgid "Shop header/logo"
157
+ msgstr "Hlavička / Logo"
158
+
159
+ #: includes/class-wcpdf-settings.php:268
160
+ msgid "Select or upload your invoice header/logo"
161
+ msgstr "Vyberte hlavičku / Logo"
162
+
163
+ #: includes/class-wcpdf-settings.php:269
164
+ msgid "Set image"
165
+ msgstr "Vybrat obrázek"
166
+
167
+ #: includes/class-wcpdf-settings.php:270
168
+ msgid "Remove image"
169
+ msgstr "Smazat obrázek"
170
+
171
+ #: includes/class-wcpdf-settings.php:277
172
+ msgid "Shop Name"
173
+ msgstr "Název obchodu"
174
+
175
+ #: includes/class-wcpdf-settings.php:290
176
+ msgid "Shop Address"
177
+ msgstr "Adresa obchodu"
178
+
179
+ #: includes/class-wcpdf-settings.php:322
180
+ msgid "Footer: terms & conditions, policies, etc."
181
+ msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
182
+
183
+ #: includes/class-wcpdf-settings.php:337
184
+ msgid "Number to display on invoice"
185
+ msgstr "Číslo ukázané ve faktuře"
186
+
187
+ #: includes/class-wcpdf-settings.php:345
188
+ msgid "WooCommerce order number"
189
+ msgstr "WooCommerce číslo objednávky"
190
+
191
+ #: includes/class-wcpdf-settings.php:346
192
+ msgid "Built-in sequential invoice number"
193
+ msgstr "Základní sekvenční číslování faktur"
194
+
195
+ #: includes/class-wcpdf-settings.php:348
196
+ msgid ""
197
+ "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
198
+ "WooCommerce order number"
199
+ msgstr ""
200
+ "Pokud používáte plugin <i>WooCommerce Sequential Order Numbers</i>, tak "
201
+ "zvolte WooCommerce číslo objednávky"
202
+
203
+ #: includes/class-wcpdf-settings.php:354
204
+ msgid "Next invoice number (without prefix/suffix etc.)"
205
+ msgstr "Další číslo faktury (bez předpony/přípony)"
206
+
207
+ #: includes/class-wcpdf-settings.php:362
208
+ msgid ""
209
+ "This is the number that will be used on the next invoice that is created. By "
210
+ "default, numbering starts from the WooCommerce Order Number of the first "
211
+ "invoice that is created and increases for every new invoice. Note that if "
212
+ "you override this and set it lower than the highest (PDF) invoice number, "
213
+ "this could create double invoice numbers!<br/>Check the <a href=\"http://"
214
+ "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
215
+ "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
216
+ msgstr ""
217
+ "Toto číslo bude použité v další vytvořené faktuře. Číslování začína podle "
218
+ "<i>WooCommerce číslo objednávky</i> první vytvořenou fakturou a roste každou "
219
+ "další vytvořenou fakturou. POZOR: Když toto přepíšete a nastavíte hodnotu na "
220
+ "menší než má poslední vytvořená faktura, může dojít k zdvojení číslování ve "
221
+ "fakturách!<br>Navštivte <a href=\"http://wordpress.org/plugins/woocommerce-"
222
+ "pdf-invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> pro podrobnější "
223
+ "informace o formátovaní čísel faktur."
224
+
225
+ #: includes/class-wcpdf-settings.php:369
226
+ msgid "Date to display on invoice"
227
+ msgstr "Datum zobrazený ve faktuře"
228
+
229
+ #: includes/class-wcpdf-settings.php:377
230
+ msgid "Order date"
231
+ msgstr "Datum objednávky"
232
+
233
+ #: includes/class-wcpdf-settings.php:378
234
+ msgid "Invoice date"
235
+ msgstr "Datum fakturace"
236
+
237
+ #: includes/class-wcpdf-settings.php:386
238
+ msgid "Extra template fields"
239
+ msgstr "Extra políčka v šabloně"
240
+
241
+ #: includes/class-wcpdf-settings.php:393
242
+ msgid "Extra field 1"
243
+ msgstr "Extra políčko 1"
244
+
245
+ #: includes/class-wcpdf-settings.php:402
246
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
247
+ msgstr "Tohle je 1. políčko v patičce v šabloně <i>Modern (Premium)</i>"
248
+
249
+ #: includes/class-wcpdf-settings.php:408
250
+ msgid "Extra field 2"
251
+ msgstr "Extra políčko 2"
252
+
253
+ #: includes/class-wcpdf-settings.php:417
254
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
255
+ msgstr "Tohle je 2. políčko v patičce v šabloně <i>Modern (Premium)</i>"
256
+
257
+ #: includes/class-wcpdf-settings.php:423
258
+ msgid "Extra field 3"
259
+ msgstr "Extra políčko 3"
260
+
261
+ #: includes/class-wcpdf-settings.php:432
262
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
263
+ msgstr "Tohle je 3. políčko v patičce v šabloně <i>Modern (Premium)</i>"
264
+
265
+ #: includes/class-wcpdf-settings.php:689
266
+ msgid "Image resolution"
267
+ msgstr "Rozměry obrázku"
268
+
269
+ #: includes/class-wcpdf-settings.php:719
270
+ msgid ""
271
+ "These are used for the (optional) footer columns in the <em>Modern "
272
+ "(Premium)</em> template, but can also be used for other elements in your "
273
+ "custom template"
274
+ msgstr ""
275
+ "Tyto nastavení jsou použité jako volitelné časti patičky v šabloně "
276
+ "<em>Modern (Premium)</em>, ale mohou být využité také jako jiné prvky ve "
277
+ "Vaší vlastní šabloně"
278
+
279
+ #: includes/class-wcpdf-writepanels.php:92
280
+ msgid "Create PDF"
281
+ msgstr "Vytvořit PDF"
282
+
283
+ #: includes/class-wcpdf-writepanels.php:101
284
+ msgid "Download invoice (PDF)"
285
+ msgstr "Stáhnout fakturu (PDF)"
286
+
287
+ #: includes/class-wcpdf-writepanels.php:115
288
+ msgid "PDF invoice"
289
+ msgstr "PDF faktura"
290
+
291
+ #: includes/class-wcpdf-writepanels.php:116
292
+ msgid "PDF Packing Slip"
293
+ msgstr "PDF Dodací List"
294
+
295
+ #: includes/class-wcpdf-writepanels.php:133
296
+ #: includes/class-wcpdf-writepanels.php:134
297
+ msgid "PDF Packing Slips"
298
+ msgstr "PDF Dodací Listy"
299
+
300
+ #: includes/class-wcpdf-writepanels.php:145
301
+ msgid "PDF Invoice Number"
302
+ msgstr "PDF Číslo Faktury"
303
+
304
+ #: templates/pdf/Simple/html-document-wrapper.php:6
305
+ #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
306
+ msgid "Invoice"
307
+ msgstr "Faktura"
308
+
309
+ #: templates/pdf/Simple/html-document-wrapper.php:6
310
+ #: templates/pdf/Simple/packing-slip.php:9
311
+ #: templates/pdf/Simple/packing-slip.php:21
312
+ msgid "Packing Slip"
313
+ msgstr "Dodací List"
314
+
315
+ #: templates/pdf/Simple/invoice.php:37
316
+ msgid "Invoice Date:"
317
+ msgstr "Datum fakturace:"
318
+
319
+ #: templates/pdf/Simple/invoice.php:40
320
+ #: templates/pdf/Simple/packing-slip.php:30
321
+ msgid "Order Date:"
322
+ msgstr "Datum objednávky:"
323
+
324
+ #: templates/pdf/Simple/invoice.php:46
325
+ msgid "Invoice Number:"
326
+ msgstr "Číslo faktury:"
327
+
328
+ #: templates/pdf/Simple/invoice.php:49
329
+ #: templates/pdf/Simple/packing-slip.php:32
330
+ msgid "Order Number:"
331
+ msgstr "Číslo objednávky:"
332
+
333
+ #: templates/pdf/Simple/invoice.php:56
334
+ msgid "Payment Method:"
335
+ msgstr "Způsob platby:"
336
+
337
+ #: templates/pdf/Simple/invoice.php:69
338
+ #: templates/pdf/Simple/packing-slip.php:45
339
+ msgid "Product"
340
+ msgstr "Zboží"
341
+
342
+ #: templates/pdf/Simple/invoice.php:70
343
+ #: templates/pdf/Simple/packing-slip.php:46
344
+ msgid "Quantity"
345
+ msgstr "Množství"
346
+
347
+ #: templates/pdf/Simple/invoice.php:71
348
+ msgid "Price"
349
+ msgstr "Cena"
350
+
351
+ #: templates/pdf/Simple/invoice.php:79
352
+ #: templates/pdf/Simple/packing-slip.php:54
353
+ msgid "SKU:"
354
+ msgstr "EAN:"
355
+
356
+ #: templates/pdf/Simple/invoice.php:80
357
+ #: templates/pdf/Simple/packing-slip.php:55
358
+ msgid "Weight:"
359
+ msgstr "Hmotnost:"
360
+
361
+ #: templates/pdf/Simple/invoice.php:113
362
+ #: templates/pdf/Simple/packing-slip.php:69
363
+ msgid "Customer Notes"
364
+ msgstr "Poznámka zákazníka"
365
+
366
+ #: woocommerce-pdf-invoices-packingslips.php:96
367
+ #, php-format
368
+ msgid ""
369
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
370
+ "installed & activated!"
371
+ msgstr ""
372
+ "WooCommerce PDF Invoices & Packing Slips vyžaduje nainstalovaný a povolený "
373
+ "%sWooCommerce%s!"
374
+
375
+ #: woocommerce-pdf-invoices-packingslips.php:191
376
+ #: woocommerce-pdf-invoices-packingslips.php:227
377
+ msgid "N/A"
378
+ msgstr "Ano/Ne"
379
+
380
+ #: woocommerce-pdf-invoices-packingslips.php:359
381
+ msgid "Subtotal"
382
+ msgstr "Mezisoučet"
383
+
384
+ #: woocommerce-pdf-invoices-packingslips.php:381
385
+ msgid "Shipping"
386
+ msgstr "Doprava"
387
+
388
+ #: woocommerce-pdf-invoices-packingslips.php:400
389
+ msgid "Discount"
390
+ msgstr "Sleva"
391
+
392
+ #: woocommerce-pdf-invoices-packingslips.php:469
393
+ msgid "Total ex. VAT"
394
+ msgstr "Celkem bez DPH"
395
+
396
+ #: woocommerce-pdf-invoices-packingslips.php:472
397
+ msgid "Total"
398
+ msgstr "Celkem"
399
+
400
+ #~ msgid "..."
401
+ #~ msgstr "..."
402
+
403
+ #~ msgid "Email invoice (attach to order confirmation or invoice email)"
404
+ #~ msgstr ""
405
+ #~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
406
+
languages/wpo_wcpdf-sk_SK.mo CHANGED
Binary file
languages/wpo_wcpdf-sk_SK.po CHANGED
@@ -1,116 +1,144 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-02-17 22:02+0100\n"
5
- "PO-Revision-Date: 2014-03-25 11:27+0100\n"
 
6
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
7
  "Language-Team: KubiQ <7kubiq7@gmail.com>\n"
8
- "Language: sk\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
 
12
  "X-Generator: Poedit 1.6.4\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-export.php:138 includes/class-wcpdf-export.php:143
20
- #: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
21
- #: includes/class-wcpdf-export.php:172
 
22
  msgid "You do not have sufficient permissions to access this page."
23
- msgstr "Nemáte dostatočné oprávnenia na prístup."
24
 
25
- # This is a filename (prefix). do not use spaces or special characters!
26
- #: includes/class-wcpdf-export.php:180 includes/class-wcpdf-export.php:262
 
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
- msgstr[0] "faktúra"
30
- msgstr[1] "faktúry"
31
- msgstr[2] "faktúr"
32
 
33
- # This is a filename (prefix). do not use spaces or special characters!
34
- #: includes/class-wcpdf-export.php:182
 
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
- msgstr[0] "balenie"
38
- msgstr[1] "balenia"
39
- msgstr[2] "balení"
40
 
 
41
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
42
- #: includes/class-wcpdf-writepanels.php:131
43
- #: includes/class-wcpdf-writepanels.php:132
44
  msgid "PDF Invoices"
45
- msgstr "PDF Faktúra"
46
 
 
47
  #: includes/class-wcpdf-settings.php:60
48
  msgid "Settings"
49
  msgstr "Nastavenia"
50
 
51
- #: includes/class-wcpdf-settings.php:86
52
- msgid "WooCommerce PDF Invoices"
53
- msgstr "WooCommerce PDF Faktúry"
54
-
55
- #: includes/class-wcpdf-settings.php:88
56
  msgid "General"
57
  msgstr "Všeobecné"
58
 
59
- #: includes/class-wcpdf-settings.php:89
 
60
  msgid "Template"
61
  msgstr "Šablóna"
62
 
 
 
 
 
 
 
63
  #: includes/class-wcpdf-settings.php:98
 
 
 
 
 
64
  #, php-format
65
  msgid ""
66
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
67
  "Packing Slips templates at %s."
68
  msgstr ""
69
  "Hľadáte lepšie šablóny? Navštívte Premium PDF Invoice & Packing Slips "
70
- "šablóny na %s."
71
 
72
- #: includes/class-wcpdf-settings.php:99
 
73
  #, php-format
74
  msgid "For custom templates, contact us at %s."
75
- msgstr "Pre vlastnú šablónu nás kontaktujte na %s."
76
 
77
- #: includes/class-wcpdf-settings.php:153
 
78
  msgid "General settings"
79
  msgstr "Všeobecné nastavenia"
80
 
81
- #: includes/class-wcpdf-settings.php:160
 
82
  msgid "How do you want to view the PDF?"
83
  msgstr "Ako chcete zobraziť PDF?"
84
 
85
- #: includes/class-wcpdf-settings.php:168
 
86
  msgid "Download the PDF"
87
  msgstr "Stiahnuť PDF"
88
 
89
- #: includes/class-wcpdf-settings.php:169
 
90
  msgid "Open the PDF in a new browser tab/window"
91
  msgstr "Otvoriť PDF v novom okne"
92
 
93
- #: includes/class-wcpdf-settings.php:179
 
94
  msgid "Attach invoice to:"
95
- msgstr "Priložiť faktúru k:"
96
 
97
- #: includes/class-wcpdf-settings.php:187
 
98
  msgid "Admin New Order email"
99
- msgstr "Administrátor - email s novou objednávkou"
100
 
101
- #: includes/class-wcpdf-settings.php:188
 
102
  msgid "Customer Processing Order email"
103
- msgstr "Zákazník - email s prijatou objednávkou"
104
 
105
- #: includes/class-wcpdf-settings.php:189
 
106
  msgid "Customer Completed Order email"
107
- msgstr "Zákazník - email s vybavenou objednávkou"
108
 
109
- #: includes/class-wcpdf-settings.php:190
 
110
  msgid "Customer Invoice email"
111
- msgstr "Zákazník - email s faktúrou"
112
 
113
- #: includes/class-wcpdf-settings.php:192
 
114
  #, php-format
115
  msgid ""
116
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -118,18 +146,26 @@ msgid ""
118
  "plugin will not be able to email invoices."
119
  msgstr ""
120
  "Zdá sa, že dočasný priečinok (<code>%s</code>) nie je prístupný, "
121
- "skontrolujte prosím poverenia (chmod)! Bez povolení pre zápis do tohto "
122
  "priečinku, nebude možné odosielať faktúry e-mailom."
123
 
124
- #: includes/class-wcpdf-settings.php:224
 
 
 
 
 
 
125
  msgid "PDF Template settings"
126
- msgstr "Nastavenia PDF šablóny"
127
 
128
- #: includes/class-wcpdf-settings.php:231
 
129
  msgid "Choose a template"
130
  msgstr "Zvoľte šablónu"
131
 
132
- #: includes/class-wcpdf-settings.php:239
 
133
  msgid ""
134
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
135
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -139,71 +175,87 @@ msgstr ""
139
  "pdf-invoices-packing-slips/templates/pdf/Simple/</code> do <code>yourtheme/"
140
  "woocommerce/pdf/yourtemplate/</code> a upravte ich podľa potreby"
141
 
142
- #: includes/class-wcpdf-settings.php:245
 
143
  msgid "Paper size"
144
  msgstr "Veľkosť papiera"
145
 
146
- #: includes/class-wcpdf-settings.php:253
 
147
  msgid "A4"
148
  msgstr "A4"
149
 
150
- #: includes/class-wcpdf-settings.php:254
 
151
  msgid "Letter"
152
- msgstr "List"
153
 
154
- #: includes/class-wcpdf-settings.php:261
 
155
  msgid "Shop header/logo"
156
  msgstr "Hlavička / logo"
157
 
158
- #: includes/class-wcpdf-settings.php:268
 
159
  msgid "Select or upload your invoice header/logo"
160
- msgstr "Vyberte hlavičku / logo"
161
 
162
- #: includes/class-wcpdf-settings.php:269
 
163
  msgid "Set image"
164
  msgstr "Zvoliť obrázok"
165
 
166
- #: includes/class-wcpdf-settings.php:270
 
167
  msgid "Remove image"
168
  msgstr "Odstrániť obrázok"
169
 
170
- #: includes/class-wcpdf-settings.php:277
 
171
  msgid "Shop Name"
172
  msgstr "Názov obchodu"
173
 
174
- #: includes/class-wcpdf-settings.php:290
 
175
  msgid "Shop Address"
176
  msgstr "Adresa obchodu"
177
 
178
- #: includes/class-wcpdf-settings.php:322
 
179
  msgid "Footer: terms & conditions, policies, etc."
180
  msgstr "Pätička: obchodné podmienky, ochrana osobných údajov, atď."
181
 
182
- #: includes/class-wcpdf-settings.php:337
 
183
  msgid "Number to display on invoice"
184
  msgstr "Číslo zobrazené vo faktúre"
185
 
186
- #: includes/class-wcpdf-settings.php:345
 
187
  msgid "WooCommerce order number"
188
- msgstr "WooCommerce číslo objednávky"
189
 
190
- #: includes/class-wcpdf-settings.php:346
 
191
  msgid "Built-in sequential invoice number"
192
- msgstr "Základné sekvenčné číslovanie faktúr"
193
 
194
- #: includes/class-wcpdf-settings.php:348
 
195
  msgid ""
196
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
197
  "WooCommerce order number"
198
  msgstr ""
199
  "Ak používate plugin <i>WooCommerce Sequential Order Numbers</i>, tak zvoľte "
200
- "WooCommerce číslo objednávky"
201
 
202
- #: includes/class-wcpdf-settings.php:354
 
203
  msgid "Next invoice number (without prefix/suffix etc.)"
204
  msgstr "Ďalšie číslo faktúry (bez predpony/prípony)"
205
 
206
- #: includes/class-wcpdf-settings.php:362
 
207
  msgid ""
208
  "This is the number that will be used on the next invoice that is created. By "
209
  "default, numbering starts from the WooCommerce Order Number of the first "
@@ -213,59 +265,71 @@ msgid ""
213
  "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
214
  "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
215
  msgstr ""
216
- "Toto číslo bude použité v ďalšej vytvorenej faktúre. Číslovanie začína podľa "
217
- "<i>WooCommerce číslo objednávky</i> prvou vytvorenou faktúrou a vzrastá "
218
- "každou ďalšou vytvorenou faktúrou. POZOR: Ak toto prepíšete a nastavíte "
219
- "hodnotu na menšiu ako má posledná vytvorená faktúra, môže dôjsť k zdvojeniu "
220
- "číslovanie vo faktúrach!<br>Navštívte <a href=\"http://wordpress.org/plugins/"
221
- "woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> pre "
222
- "podrobnejšie informácie o formátovaní čísiel faktúr."
223
-
224
- #: includes/class-wcpdf-settings.php:369
 
225
  msgid "Date to display on invoice"
226
  msgstr "Dátum zobrazený vo faktúre"
227
 
228
- #: includes/class-wcpdf-settings.php:377
 
229
  msgid "Order date"
230
  msgstr "Dátum objednávky"
231
 
232
- #: includes/class-wcpdf-settings.php:378
 
233
  msgid "Invoice date"
234
- msgstr "Dátum fakturácie"
235
 
236
- #: includes/class-wcpdf-settings.php:386
 
237
  msgid "Extra template fields"
238
  msgstr "Extra políčka v šablóne"
239
 
240
- #: includes/class-wcpdf-settings.php:393
 
241
  msgid "Extra field 1"
242
  msgstr "Extra políčko 1"
243
 
244
- #: includes/class-wcpdf-settings.php:402
 
245
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
246
  msgstr "Toto je 1. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
247
 
248
- #: includes/class-wcpdf-settings.php:408
 
249
  msgid "Extra field 2"
250
  msgstr "Extra políčko 2"
251
 
252
- #: includes/class-wcpdf-settings.php:417
 
253
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
254
  msgstr "Toto je 2. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
255
 
256
- #: includes/class-wcpdf-settings.php:423
 
257
  msgid "Extra field 3"
258
  msgstr "Extra políčko 3"
259
 
260
- #: includes/class-wcpdf-settings.php:432
 
261
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
262
  msgstr "Toto je 3. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
263
 
264
- #: includes/class-wcpdf-settings.php:689
 
265
  msgid "Image resolution"
266
- msgstr "Rozmery obrázka"
267
 
268
- #: includes/class-wcpdf-settings.php:719
 
269
  msgid ""
270
  "These are used for the (optional) footer columns in the <em>Modern "
271
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -275,130 +339,174 @@ msgstr ""
275
  "(Premium)</em>, ale môžu byť využité aj ako iné prvky vo Vašej vlastnej "
276
  "šablóne"
277
 
278
- #: includes/class-wcpdf-writepanels.php:92
 
 
 
 
 
 
279
  msgid "Create PDF"
280
  msgstr "Vytvoriť PDF"
281
 
282
- #: includes/class-wcpdf-writepanels.php:101
 
283
  msgid "Download invoice (PDF)"
284
  msgstr "Stiahnuť faktúru (PDF)"
285
 
286
- #: includes/class-wcpdf-writepanels.php:115
 
287
  msgid "PDF invoice"
288
  msgstr "PDF faktúra"
289
 
290
- #: includes/class-wcpdf-writepanels.php:116
 
291
  msgid "PDF Packing Slip"
292
- msgstr "PDF Dodací list"
293
 
294
- #: includes/class-wcpdf-writepanels.php:133
295
- #: includes/class-wcpdf-writepanels.php:134
 
296
  msgid "PDF Packing Slips"
297
- msgstr "PDF Dodacie listy"
298
 
299
- #: includes/class-wcpdf-writepanels.php:145
300
- msgid "PDF Invoice Number"
301
- msgstr "PDF Číslo faktúry"
 
302
 
 
303
  #: templates/pdf/Simple/html-document-wrapper.php:6
304
  #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
305
  msgid "Invoice"
306
  msgstr "Faktúra"
307
 
 
308
  #: templates/pdf/Simple/html-document-wrapper.php:6
309
  #: templates/pdf/Simple/packing-slip.php:9
310
  #: templates/pdf/Simple/packing-slip.php:21
311
  msgid "Packing Slip"
312
  msgstr "Dodací list"
313
 
 
314
  #: templates/pdf/Simple/invoice.php:37
315
  msgid "Invoice Date:"
316
- msgstr "Dátum fakturácie:"
317
 
 
318
  #: templates/pdf/Simple/invoice.php:40
319
  #: templates/pdf/Simple/packing-slip.php:30
320
  msgid "Order Date:"
321
  msgstr "Dátum objednávky:"
322
 
 
323
  #: templates/pdf/Simple/invoice.php:46
324
  msgid "Invoice Number:"
325
  msgstr "Číslo faktúry:"
326
 
 
327
  #: templates/pdf/Simple/invoice.php:49
328
  #: templates/pdf/Simple/packing-slip.php:32
329
  msgid "Order Number:"
330
  msgstr "Číslo objednávky:"
331
 
 
332
  #: templates/pdf/Simple/invoice.php:56
333
  msgid "Payment Method:"
334
  msgstr "Spôsob platby:"
335
 
 
336
  #: templates/pdf/Simple/invoice.php:69
337
  #: templates/pdf/Simple/packing-slip.php:45
338
  msgid "Product"
339
- msgstr "Tovar"
340
 
 
341
  #: templates/pdf/Simple/invoice.php:70
342
  #: templates/pdf/Simple/packing-slip.php:46
343
  msgid "Quantity"
344
  msgstr "Množstvo"
345
 
 
346
  #: templates/pdf/Simple/invoice.php:71
347
  msgid "Price"
348
  msgstr "Cena"
349
 
350
- #: templates/pdf/Simple/invoice.php:79
 
 
 
 
 
 
351
  #: templates/pdf/Simple/packing-slip.php:54
352
  msgid "SKU:"
353
- msgstr "EAN:"
354
 
355
- #: templates/pdf/Simple/invoice.php:80
 
356
  #: templates/pdf/Simple/packing-slip.php:55
357
  msgid "Weight:"
358
  msgstr "Hmotnosť:"
359
 
 
360
  #: templates/pdf/Simple/invoice.php:113
361
  #: templates/pdf/Simple/packing-slip.php:69
362
  msgid "Customer Notes"
363
- msgstr "Poznámka zákazníka"
364
 
 
365
  #: woocommerce-pdf-invoices-packingslips.php:96
366
  #, php-format
367
  msgid ""
368
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
369
  "installed & activated!"
370
  msgstr ""
371
- "WooCommerce PDF Invoices & Packing Slips vyžaduje nainštalovaný a povolený "
372
  "%sWooCommerce%s!"
373
 
 
374
  #: woocommerce-pdf-invoices-packingslips.php:191
375
  #: woocommerce-pdf-invoices-packingslips.php:227
376
  msgid "N/A"
377
- msgstr "Áno/Nie"
378
 
379
- #: woocommerce-pdf-invoices-packingslips.php:359
 
 
 
 
 
 
 
 
 
 
 
380
  msgid "Subtotal"
381
  msgstr "Medzisúčet"
382
 
383
- #: woocommerce-pdf-invoices-packingslips.php:381
 
384
  msgid "Shipping"
385
  msgstr "Doprava"
386
 
387
- #: woocommerce-pdf-invoices-packingslips.php:400
 
388
  msgid "Discount"
389
  msgstr "Zľava"
390
 
391
- #: woocommerce-pdf-invoices-packingslips.php:469
 
 
 
 
 
 
392
  msgid "Total ex. VAT"
393
  msgstr "Spolu bez DPH"
394
 
395
- #: woocommerce-pdf-invoices-packingslips.php:472
 
396
  msgid "Total"
397
  msgstr "Spolu"
398
-
399
- #~ msgid "..."
400
- #~ msgstr "..."
401
-
402
- #~ msgid "Email invoice (attach to order confirmation or invoice email)"
403
- #~ msgstr ""
404
- #~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-17 11:03+0100\n"
6
+ "PO-Revision-Date: 2014-04-17 11:03+0100\n"
7
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
8
  "Language-Team: KubiQ <7kubiq7@gmail.com>\n"
9
+ "Language: sk_SK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
14
  "X-Generator: Poedit 1.6.4\n"
 
 
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ # @ wpo_wcpdf
23
+ #: includes/class-wcpdf-export.php:145 includes/class-wcpdf-export.php:150
24
+ #: includes/class-wcpdf-export.php:155 includes/class-wcpdf-export.php:166
25
+ #: includes/class-wcpdf-export.php:179
26
  msgid "You do not have sufficient permissions to access this page."
27
+ msgstr "Nemáte dostatočné oprávnenia na prístup k tejto stránke."
28
 
29
+ # This is a filename (prefix). do not use spaces or special characters!
30
+ # @ wpo_wcpdf
31
+ #: includes/class-wcpdf-export.php:200 includes/class-wcpdf-export.php:276
32
  msgid "invoice"
33
  msgid_plural "invoices"
34
+ msgstr[0] "faktury"
35
+ msgstr[1] "faktura"
36
+ msgstr[2] "faktury"
37
 
38
+ # This is a filename (prefix). do not use spaces or special characters!
39
+ # @ wpo_wcpdf
40
+ #: includes/class-wcpdf-export.php:202
41
  msgid "packing-slip"
42
  msgid_plural "packing-slips"
43
+ msgstr[0] "dodacie-listy"
44
+ msgstr[1] "dodaci-list"
45
+ msgstr[2] "dodacie-listy"
46
 
47
+ # @ wpo_wcpdf
48
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
49
+ #: includes/class-wcpdf-writepanels.php:173
50
+ #: includes/class-wcpdf-writepanels.php:174
51
  msgid "PDF Invoices"
52
+ msgstr "PDF faktúry"
53
 
54
+ # @ woocommerce
55
  #: includes/class-wcpdf-settings.php:60
56
  msgid "Settings"
57
  msgstr "Nastavenia"
58
 
59
+ # @ wpo_wcpdf
60
+ #: includes/class-wcpdf-settings.php:82
 
 
 
61
  msgid "General"
62
  msgstr "Všeobecné"
63
 
64
+ # @ wpo_wcpdf
65
+ #: includes/class-wcpdf-settings.php:83
66
  msgid "Template"
67
  msgstr "Šablóna"
68
 
69
+ # @ wpo_wcpdf
70
+ #: includes/class-wcpdf-settings.php:92
71
+ msgid "WooCommerce PDF Invoices"
72
+ msgstr "WooCommerce PDF faktúry"
73
+
74
+ # @ wpo_wcpdf
75
  #: includes/class-wcpdf-settings.php:98
76
+ msgid "Status"
77
+ msgstr "Stav"
78
+
79
+ # @ wpo_wcpdf
80
+ #: includes/class-wcpdf-settings.php:109
81
  #, php-format
82
  msgid ""
83
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
84
  "Packing Slips templates at %s."
85
  msgstr ""
86
  "Hľadáte lepšie šablóny? Navštívte Premium PDF Invoice & Packing Slips "
87
+ "šablóny na stránke %s."
88
 
89
+ # @ wpo_wcpdf
90
+ #: includes/class-wcpdf-settings.php:110
91
  #, php-format
92
  msgid "For custom templates, contact us at %s."
93
+ msgstr "Ak chcete šablónu na mieru, kontaktuje nás na %s."
94
 
95
+ # @ wpo_wcpdf
96
+ #: includes/class-wcpdf-settings.php:165
97
  msgid "General settings"
98
  msgstr "Všeobecné nastavenia"
99
 
100
+ # @ wpo_wcpdf
101
+ #: includes/class-wcpdf-settings.php:172
102
  msgid "How do you want to view the PDF?"
103
  msgstr "Ako chcete zobraziť PDF?"
104
 
105
+ # @ wpo_wcpdf
106
+ #: includes/class-wcpdf-settings.php:180
107
  msgid "Download the PDF"
108
  msgstr "Stiahnuť PDF"
109
 
110
+ # @ wpo_wcpdf
111
+ #: includes/class-wcpdf-settings.php:181
112
  msgid "Open the PDF in a new browser tab/window"
113
  msgstr "Otvoriť PDF v novom okne"
114
 
115
+ # @ wpo_wcpdf
116
+ #: includes/class-wcpdf-settings.php:191
117
  msgid "Attach invoice to:"
118
+ msgstr "Priložiť faktúru k správam pre:"
119
 
120
+ # @ wpo_wcpdf
121
+ #: includes/class-wcpdf-settings.php:199
122
  msgid "Admin New Order email"
123
+ msgstr "administrátora - e-mail pri vytvorení novej objednávky"
124
 
125
+ # @ wpo_wcpdf
126
+ #: includes/class-wcpdf-settings.php:200
127
  msgid "Customer Processing Order email"
128
+ msgstr "zákazníka - e-mail pri prijatí objednávky"
129
 
130
+ # @ wpo_wcpdf
131
+ #: includes/class-wcpdf-settings.php:201
132
  msgid "Customer Completed Order email"
133
+ msgstr "zákazníka - e-mail pri vybavení objednávky"
134
 
135
+ # @ wpo_wcpdf
136
+ #: includes/class-wcpdf-settings.php:202
137
  msgid "Customer Invoice email"
138
+ msgstr "zákazníka - e-mail pri vytvorení faktúry"
139
 
140
+ # @ wpo_wcpdf
141
+ #: includes/class-wcpdf-settings.php:204
142
  #, php-format
143
  msgid ""
144
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
146
  "plugin will not be able to email invoices."
147
  msgstr ""
148
  "Zdá sa, že dočasný priečinok (<code>%s</code>) nie je prístupný, "
149
+ "skontrolujte prosím poverenia (CHMOD)! Bez povolení pre zápis do tohto "
150
  "priečinku, nebude možné odosielať faktúry e-mailom."
151
 
152
+ # @ wpo_wcpdf
153
+ #: includes/class-wcpdf-settings.php:210
154
+ msgid "Enable invoice number column in the orders list"
155
+ msgstr "Zobraziť stĺpec s číslom faktúry v objednávkach"
156
+
157
+ # @ wpo_wcpdf
158
+ #: includes/class-wcpdf-settings.php:249
159
  msgid "PDF Template settings"
160
+ msgstr "Nastavenia PDF šablón"
161
 
162
+ # @ wpo_wcpdf
163
+ #: includes/class-wcpdf-settings.php:256
164
  msgid "Choose a template"
165
  msgstr "Zvoľte šablónu"
166
 
167
+ # @ wpo_wcpdf
168
+ #: includes/class-wcpdf-settings.php:264
169
  msgid ""
170
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
171
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
175
  "pdf-invoices-packing-slips/templates/pdf/Simple/</code> do <code>yourtheme/"
176
  "woocommerce/pdf/yourtemplate/</code> a upravte ich podľa potreby"
177
 
178
+ # @ wpo_wcpdf
179
+ #: includes/class-wcpdf-settings.php:270
180
  msgid "Paper size"
181
  msgstr "Veľkosť papiera"
182
 
183
+ # @ wpo_wcpdf
184
+ #: includes/class-wcpdf-settings.php:278
185
  msgid "A4"
186
  msgstr "A4"
187
 
188
+ # @ wpo_wcpdf
189
+ #: includes/class-wcpdf-settings.php:279
190
  msgid "Letter"
191
+ msgstr "Letter"
192
 
193
+ # @ wpo_wcpdf
194
+ #: includes/class-wcpdf-settings.php:286
195
  msgid "Shop header/logo"
196
  msgstr "Hlavička / logo"
197
 
198
+ # @ wpo_wcpdf
199
+ #: includes/class-wcpdf-settings.php:293
200
  msgid "Select or upload your invoice header/logo"
201
+ msgstr "Vyberte alebo nahrajte hlavičku / logo vo faktúre"
202
 
203
+ # @ wpo_wcpdf
204
+ #: includes/class-wcpdf-settings.php:294
205
  msgid "Set image"
206
  msgstr "Zvoliť obrázok"
207
 
208
+ # @ wpo_wcpdf
209
+ #: includes/class-wcpdf-settings.php:295
210
  msgid "Remove image"
211
  msgstr "Odstrániť obrázok"
212
 
213
+ # @ wpo_wcpdf
214
+ #: includes/class-wcpdf-settings.php:302
215
  msgid "Shop Name"
216
  msgstr "Názov obchodu"
217
 
218
+ # @ wpo_wcpdf
219
+ #: includes/class-wcpdf-settings.php:315
220
  msgid "Shop Address"
221
  msgstr "Adresa obchodu"
222
 
223
+ # @ wpo_wcpdf
224
+ #: includes/class-wcpdf-settings.php:347
225
  msgid "Footer: terms & conditions, policies, etc."
226
  msgstr "Pätička: obchodné podmienky, ochrana osobných údajov, atď."
227
 
228
+ # @ wpo_wcpdf
229
+ #: includes/class-wcpdf-settings.php:362
230
  msgid "Number to display on invoice"
231
  msgstr "Číslo zobrazené vo faktúre"
232
 
233
+ # @ wpo_wcpdf
234
+ #: includes/class-wcpdf-settings.php:370
235
  msgid "WooCommerce order number"
236
+ msgstr "Číslo objednávky"
237
 
238
+ # @ wpo_wcpdf
239
+ #: includes/class-wcpdf-settings.php:371
240
  msgid "Built-in sequential invoice number"
241
+ msgstr "Poradové číslo faktúry"
242
 
243
+ # @ wpo_wcpdf
244
+ #: includes/class-wcpdf-settings.php:373
245
  msgid ""
246
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
247
  "WooCommerce order number"
248
  msgstr ""
249
  "Ak používate plugin <i>WooCommerce Sequential Order Numbers</i>, tak zvoľte "
250
+ "Číslo objednávky"
251
 
252
+ # @ wpo_wcpdf
253
+ #: includes/class-wcpdf-settings.php:379
254
  msgid "Next invoice number (without prefix/suffix etc.)"
255
  msgstr "Ďalšie číslo faktúry (bez predpony/prípony)"
256
 
257
+ # @ wpo_wcpdf
258
+ #: includes/class-wcpdf-settings.php:387
259
  msgid ""
260
  "This is the number that will be used on the next invoice that is created. By "
261
  "default, numbering starts from the WooCommerce Order Number of the first "
265
  "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
266
  "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
267
  msgstr ""
268
+ "Toto číslo bude použité v ďalšej vytvorenej faktúre. Číslovanie začína prvou "
269
+ "vytvorenou faktúrou a narastá každou ďalšou vytvorenou faktúrou. POZOR: Ak "
270
+ "toto prepíšete a nastavíte hodnotu na menšiu ako ďalšia vytvorená "
271
+ "faktúra, môže dôjsť k zdvojeniu číslovania vo faktúrach!<br>Navštívte <a "
272
+ "href=\"http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/"
273
+ "faq/\" target=\"_blank\">FAQ</a> pre podrobnejšie informácie o formátovaní "
274
+ "čísiel faktúr."
275
+
276
+ # @ wpo_wcpdf
277
+ #: includes/class-wcpdf-settings.php:394
278
  msgid "Date to display on invoice"
279
  msgstr "Dátum zobrazený vo faktúre"
280
 
281
+ # @ wpo_wcpdf
282
+ #: includes/class-wcpdf-settings.php:402
283
  msgid "Order date"
284
  msgstr "Dátum objednávky"
285
 
286
+ # @ wpo_wcpdf
287
+ #: includes/class-wcpdf-settings.php:403
288
  msgid "Invoice date"
289
+ msgstr "Dátum vystavenia faktúry"
290
 
291
+ # @ wpo_wcpdf
292
+ #: includes/class-wcpdf-settings.php:411
293
  msgid "Extra template fields"
294
  msgstr "Extra políčka v šablóne"
295
 
296
+ # @ wpo_wcpdf
297
+ #: includes/class-wcpdf-settings.php:418
298
  msgid "Extra field 1"
299
  msgstr "Extra políčko 1"
300
 
301
+ # @ wpo_wcpdf
302
+ #: includes/class-wcpdf-settings.php:427
303
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
304
  msgstr "Toto je 1. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
305
 
306
+ # @ wpo_wcpdf
307
+ #: includes/class-wcpdf-settings.php:433
308
  msgid "Extra field 2"
309
  msgstr "Extra políčko 2"
310
 
311
+ # @ wpo_wcpdf
312
+ #: includes/class-wcpdf-settings.php:442
313
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
314
  msgstr "Toto je 2. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
315
 
316
+ # @ wpo_wcpdf
317
+ #: includes/class-wcpdf-settings.php:448
318
  msgid "Extra field 3"
319
  msgstr "Extra políčko 3"
320
 
321
+ # @ wpo_wcpdf
322
+ #: includes/class-wcpdf-settings.php:457
323
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
324
  msgstr "Toto je 3. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
325
 
326
+ # @ default
327
+ #: includes/class-wcpdf-settings.php:714
328
  msgid "Image resolution"
329
+ msgstr "Rozlíšenie obrázka"
330
 
331
+ # @ wpo_wcpdf
332
+ #: includes/class-wcpdf-settings.php:744
333
  msgid ""
334
  "These are used for the (optional) footer columns in the <em>Modern "
335
  "(Premium)</em> template, but can also be used for other elements in your "
339
  "(Premium)</em>, ale môžu byť využité aj ako iné prvky vo Vašej vlastnej "
340
  "šablóne"
341
 
342
+ # @ wpo_wcpdf
343
+ #: includes/class-wcpdf-writepanels.php:102
344
+ msgid "Invoice Number"
345
+ msgstr "Číslo faktúry"
346
+
347
+ # @ wpo_wcpdf
348
+ #: includes/class-wcpdf-writepanels.php:133
349
  msgid "Create PDF"
350
  msgstr "Vytvoriť PDF"
351
 
352
+ # @ wpo_wcpdf
353
+ #: includes/class-wcpdf-writepanels.php:143
354
  msgid "Download invoice (PDF)"
355
  msgstr "Stiahnuť faktúru (PDF)"
356
 
357
+ # @ wpo_wcpdf
358
+ #: includes/class-wcpdf-writepanels.php:157
359
  msgid "PDF invoice"
360
  msgstr "PDF faktúra"
361
 
362
+ # @ wpo_wcpdf
363
+ #: includes/class-wcpdf-writepanels.php:158
364
  msgid "PDF Packing Slip"
365
+ msgstr "PDF dodací list"
366
 
367
+ # @ wpo_wcpdf
368
+ #: includes/class-wcpdf-writepanels.php:175
369
+ #: includes/class-wcpdf-writepanels.php:176
370
  msgid "PDF Packing Slips"
371
+ msgstr "PDF dodacie listy"
372
 
373
+ # @ wpo_wcpdf
374
+ #: includes/class-wcpdf-writepanels.php:189
375
+ msgid "PDF Invoice Number (unformatted!)"
376
+ msgstr "Číslo faktúry (mimo formátovania!)"
377
 
378
+ # @ wpo_wcpdf
379
  #: templates/pdf/Simple/html-document-wrapper.php:6
380
  #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
381
  msgid "Invoice"
382
  msgstr "Faktúra"
383
 
384
+ # @ wpo_wcpdf
385
  #: templates/pdf/Simple/html-document-wrapper.php:6
386
  #: templates/pdf/Simple/packing-slip.php:9
387
  #: templates/pdf/Simple/packing-slip.php:21
388
  msgid "Packing Slip"
389
  msgstr "Dodací list"
390
 
391
+ # @ wpo_wcpdf
392
  #: templates/pdf/Simple/invoice.php:37
393
  msgid "Invoice Date:"
394
+ msgstr "Dátum vystavenia faktúry:"
395
 
396
+ # @ wpo_wcpdf
397
  #: templates/pdf/Simple/invoice.php:40
398
  #: templates/pdf/Simple/packing-slip.php:30
399
  msgid "Order Date:"
400
  msgstr "Dátum objednávky:"
401
 
402
+ # @ wpo_wcpdf
403
  #: templates/pdf/Simple/invoice.php:46
404
  msgid "Invoice Number:"
405
  msgstr "Číslo faktúry:"
406
 
407
+ # @ wpo_wcpdf
408
  #: templates/pdf/Simple/invoice.php:49
409
  #: templates/pdf/Simple/packing-slip.php:32
410
  msgid "Order Number:"
411
  msgstr "Číslo objednávky:"
412
 
413
+ # @ wpo_wcpdf
414
  #: templates/pdf/Simple/invoice.php:56
415
  msgid "Payment Method:"
416
  msgstr "Spôsob platby:"
417
 
418
+ # @ wpo_wcpdf
419
  #: templates/pdf/Simple/invoice.php:69
420
  #: templates/pdf/Simple/packing-slip.php:45
421
  msgid "Product"
422
+ msgstr "Produkt"
423
 
424
+ # @ wpo_wcpdf
425
  #: templates/pdf/Simple/invoice.php:70
426
  #: templates/pdf/Simple/packing-slip.php:46
427
  msgid "Quantity"
428
  msgstr "Množstvo"
429
 
430
+ # @ wpo_wcpdf
431
  #: templates/pdf/Simple/invoice.php:71
432
  msgid "Price"
433
  msgstr "Cena"
434
 
435
+ # @ wpo_wcpdf
436
+ #: templates/pdf/Simple/invoice.php:77
437
+ msgid "Description"
438
+ msgstr "Popis"
439
+
440
+ # @ wpo_wcpdf
441
+ #: templates/pdf/Simple/invoice.php:80
442
  #: templates/pdf/Simple/packing-slip.php:54
443
  msgid "SKU:"
444
+ msgstr "Kód:"
445
 
446
+ # @ wpo_wcpdf
447
+ #: templates/pdf/Simple/invoice.php:81
448
  #: templates/pdf/Simple/packing-slip.php:55
449
  msgid "Weight:"
450
  msgstr "Hmotnosť:"
451
 
452
+ # @ wpo_wcpdf
453
  #: templates/pdf/Simple/invoice.php:113
454
  #: templates/pdf/Simple/packing-slip.php:69
455
  msgid "Customer Notes"
456
+ msgstr "Poznámky"
457
 
458
+ # @ wpo_wcpdf
459
  #: woocommerce-pdf-invoices-packingslips.php:96
460
  #, php-format
461
  msgid ""
462
  "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
463
  "installed & activated!"
464
  msgstr ""
465
+ "WooCommerce PDF Invoices & Packing Slips vyžaduje nainštalovaný a aktivovaný "
466
  "%sWooCommerce%s!"
467
 
468
+ # @ wpo_wcpdf
469
  #: woocommerce-pdf-invoices-packingslips.php:191
470
  #: woocommerce-pdf-invoices-packingslips.php:227
471
  msgid "N/A"
472
+ msgstr "N/A"
473
 
474
+ # @ wpo_wcpdf
475
+ #: woocommerce-pdf-invoices-packingslips.php:249
476
+ msgid "Payment method"
477
+ msgstr "Spôsob platby"
478
+
479
+ # @ wpo_wcpdf
480
+ #: woocommerce-pdf-invoices-packingslips.php:260
481
+ msgid "Shipping method"
482
+ msgstr "Doprava"
483
+
484
+ # @ wpo_wcpdf
485
+ #: woocommerce-pdf-invoices-packingslips.php:360
486
  msgid "Subtotal"
487
  msgstr "Medzisúčet"
488
 
489
+ # @ wpo_wcpdf
490
+ #: woocommerce-pdf-invoices-packingslips.php:382
491
  msgid "Shipping"
492
  msgstr "Doprava"
493
 
494
+ # @ wpo_wcpdf
495
+ #: woocommerce-pdf-invoices-packingslips.php:416
496
  msgid "Discount"
497
  msgstr "Zľava"
498
 
499
+ # @ wpo_wcpdf
500
+ #: woocommerce-pdf-invoices-packingslips.php:455
501
+ msgid "VAT"
502
+ msgstr "DPH"
503
+
504
+ # @ default
505
+ #: woocommerce-pdf-invoices-packingslips.php:487
506
  msgid "Total ex. VAT"
507
  msgstr "Spolu bez DPH"
508
 
509
+ # @ default
510
+ #: woocommerce-pdf-invoices-packingslips.php:490
511
  msgid "Total"
512
  msgstr "Spolu"
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: pomegranate
3
  Tags: woocommerce, print, pdf, bulk, packing slips, invoices, delivery notes, invoice, packing slip, export, email
4
  Requires at least: 3.5 and WooCommerce 2.0
5
  Tested up to: 3.8.1 and WooCommerce 2.1
6
- Stable tag: 1.3.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -18,7 +18,7 @@ This WooCommerce extension automatically adds a PDF invoice to the order confirm
18
  * Automatically attach invoice PDF to order confirmation email
19
  * Users can download their invoices from the My Account page
20
  * Sequential invoice numbers (fully customizable with filters, see the [FAQ](http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/))
21
- * **Available in: Dutch, English, French, German, Hungarian, Italian, Romanian, Russian, Slovak, Spanish, Swedish & Ukrainian**
22
 
23
  = Fully customizable =
24
  In addition to a number of default settings (including a custom header/logo) and several layout fields that you can use out of the box, the plugin contains HTML/CSS based templates that allow for customization & full control over the PDF output.
@@ -168,6 +168,11 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
168
 
169
  == Changelog ==
170
 
 
 
 
 
 
171
  = 1.3.0 =
172
  * Feature: Added 'status' panel for better problem diagnosis
173
  * Feature: Order & Cart, & total discounts can now be called separately with order_discount()
3
  Tags: woocommerce, print, pdf, bulk, packing slips, invoices, delivery notes, invoice, packing slip, export, email
4
  Requires at least: 3.5 and WooCommerce 2.0
5
  Tested up to: 3.8.1 and WooCommerce 2.1
6
+ Stable tag: 1.3.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
18
  * Automatically attach invoice PDF to order confirmation email
19
  * Users can download their invoices from the My Account page
20
  * Sequential invoice numbers (fully customizable with filters, see the [FAQ](http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/))
21
+ * **Available in: Czech, Dutch, English, French, German, Hungarian, Italian, Romanian, Russian, Slovak, Spanish, Swedish & Ukrainian**
22
 
23
  = Fully customizable =
24
  In addition to a number of default settings (including a custom header/logo) and several layout fields that you can use out of the box, the plugin contains HTML/CSS based templates that allow for customization & full control over the PDF output.
168
 
169
  == Changelog ==
170
 
171
+ = 1.3.1 =
172
+ * Fix: invoice number was cleared when Order Actions were being used when an invoice number was not set
173
+ * Translations: Updated Slovak (Thanks Jozef!)
174
+ * Translations: Added Czech (Thanks CubiQ!)
175
+
176
  = 1.3.0 =
177
  * Feature: Added 'status' panel for better problem diagnosis
178
  * Feature: Order & Cart, & total discounts can now be called separately with order_discount()
templates/pdf/Simple/invoice.php CHANGED
@@ -82,7 +82,7 @@
82
  </dl>
83
  </td>
84
  <td class="quantity"><?php echo $item['quantity']; ?></td>
85
- <td class="price"><?php echo $item['price']; ?></td>
86
  </tr><?php endforeach; endif; ?>
87
  </tbody>
88
  <tfoot>
82
  </dl>
83
  </td>
84
  <td class="quantity"><?php echo $item['quantity']; ?></td>
85
+ <td class="price"><?php echo $item['order_price']; ?></td>
86
  </tr><?php endforeach; endif; ?>
87
  </tbody>
88
  <tfoot>
woocommerce-pdf-invoices-packingslips.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PDF Invoices & Packing Slips
4
  * Plugin URI: http://www.wpovernight.com
5
  * Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
6
- * Version: 1.3.0
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later
3
  * Plugin Name: WooCommerce PDF Invoices & Packing Slips
4
  * Plugin URI: http://www.wpovernight.com
5
  * Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
6
+ * Version: 1.3.1
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later