WooCommerce PDF Invoices & Packing Slips - Version 1.4.0

Version Description

  • NEW Feature: Invoice numbers can now be given a prefix, suffix or padding on the settings page!
  • Filter: wpo_wcpdf_email_allowed_statuses to attach pdf to custom order status emails
  • Tweak: Sequential Order Numbers Pro compatibility
  • Tweak: Filenames are now automatically sanitized to prevent issues with illegal characters
Download this release

Release Info

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

Code changes from version 1.3.2 to 1.4.0

images/dropbox_logo.png ADDED
Binary file
includes/class-wcpdf-export.php CHANGED
@@ -35,6 +35,12 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
35
 
36
  add_action( 'wp_ajax_generate_wpo_wcpdf', array($this, 'generate_pdf_ajax' ));
37
  add_filter( 'woocommerce_email_attachments', array( $this, 'attach_pdf_to_email' ), 99, 3);
 
 
 
 
 
 
38
  }
39
 
40
  /**
@@ -211,6 +217,9 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
211
  }
212
 
213
  $filename = apply_filters( 'wpo_wcpdf_bulk_filename', $filename, $order_ids, $template_name, $template_type );
 
 
 
214
 
215
  // Get output setting
216
  $output_mode = isset($this->general_settings['download_display'])?$this->general_settings['download_display']:'';
@@ -254,7 +263,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
254
  // customer_processing_order
255
  // customer_completed_order
256
 
257
- $allowed_statuses = array_keys( $this->general_settings['email_pdf'] );
258
 
259
  foreach ($allowed_statuses as $key => $order_status) {
260
  // convert 'lazy' status name
@@ -276,6 +285,10 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
276
  $pdf_filename_prefix = __( 'invoice', 'wpo_wcpdf' );
277
  $pdf_filename = $pdf_filename_prefix . '-' . $display_number . '.pdf';
278
  $pdf_filename = apply_filters( 'wpo_wcpdf_attachment_filename', $pdf_filename, $display_number, $order->id );
 
 
 
 
279
  $pdf_path = $tmp_path . $pdf_filename;
280
  file_put_contents ( $pdf_path, $invoice );
281
  $attachments[] = $pdf_path;
@@ -295,9 +308,18 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
295
  $next_invoice_number = $this->template_settings['next_invoice_number'];
296
 
297
  if ( empty($next_invoice_number) ) {
298
- // First time! Use order number as starting point.
 
 
299
  $order_number = ltrim($this->order->get_order_number(), '#');
300
- $invoice_number = $order_number;
 
 
 
 
 
 
 
301
  } else {
302
  $invoice_number = $next_invoice_number;
303
  }
@@ -328,6 +350,33 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
328
  return apply_filters( 'wpo_wcpdf_invoice_number', $invoice_number, $this->order->get_order_number(), $this->order->id, date_i18n( get_option( 'date_format' ), strtotime( $this->order->order_date ) ) );
329
  }
330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  public function get_display_number( $order_id ) {
332
  if ( !isset($this->order) ) {
333
  $this->order = new WC_Order ( $order_id );
35
 
36
  add_action( 'wp_ajax_generate_wpo_wcpdf', array($this, 'generate_pdf_ajax' ));
37
  add_filter( 'woocommerce_email_attachments', array( $this, 'attach_pdf_to_email' ), 99, 3);
38
+
39
+ // check if an invoice number filter has already been registered, if not, use settings
40
+ if ( !has_filter( 'wpo_wcpdf_invoice_number' ) ) {
41
+ add_filter( 'wpo_wcpdf_invoice_number', array( $this, 'format_invoice_number' ), 20, 4 );
42
+ }
43
+
44
  }
45
 
46
  /**
217
  }
218
 
219
  $filename = apply_filters( 'wpo_wcpdf_bulk_filename', $filename, $order_ids, $template_name, $template_type );
220
+
221
+ // sanitize filename!
222
+ $filename = sanitize_file_name( $filename );
223
 
224
  // Get output setting
225
  $output_mode = isset($this->general_settings['download_display'])?$this->general_settings['download_display']:'';
263
  // customer_processing_order
264
  // customer_completed_order
265
 
266
+ $allowed_statuses = apply_filters( 'wpo_wcpdf_email_allowed_statuses', array_keys( $this->general_settings['email_pdf'] ) );
267
 
268
  foreach ($allowed_statuses as $key => $order_status) {
269
  // convert 'lazy' status name
285
  $pdf_filename_prefix = __( 'invoice', 'wpo_wcpdf' );
286
  $pdf_filename = $pdf_filename_prefix . '-' . $display_number . '.pdf';
287
  $pdf_filename = apply_filters( 'wpo_wcpdf_attachment_filename', $pdf_filename, $display_number, $order->id );
288
+
289
+ // sanitize filename!
290
+ $pdf_filename = sanitize_file_name( $pdf_filename );
291
+
292
  $pdf_path = $tmp_path . $pdf_filename;
293
  file_put_contents ( $pdf_path, $invoice );
294
  $attachments[] = $pdf_path;
308
  $next_invoice_number = $this->template_settings['next_invoice_number'];
309
 
310
  if ( empty($next_invoice_number) ) {
311
+ // First time! We start numbering from order_number or order_id
312
+
313
+ // Check if $order_number is an integer
314
  $order_number = ltrim($this->order->get_order_number(), '#');
315
+ if ( ctype_digit( (string)$order_number ) ) {
316
+ // order_number == integer: use as starting point.
317
+ $invoice_number = $order_number;
318
+ } else {
319
+ // fallback: use order_id as starting point.
320
+ $invoice_number = $order_id;
321
+ }
322
+
323
  } else {
324
  $invoice_number = $next_invoice_number;
325
  }
350
  return apply_filters( 'wpo_wcpdf_invoice_number', $invoice_number, $this->order->get_order_number(), $this->order->id, date_i18n( get_option( 'date_format' ), strtotime( $this->order->order_date ) ) );
351
  }
352
 
353
+ public function format_invoice_number( $invoice_number, $order_number, $order_id, $order_date ) {
354
+ // get format settings
355
+ $order_year = date_i18n( 'Y', strtotime( $order_date ) );
356
+ $order_month = date_i18n( 'm', strtotime( $order_date ) );
357
+
358
+
359
+ $formats['prefix'] = $this->template_settings['invoice_number_formatting_prefix'];
360
+ $formats['suffix'] = $this->template_settings['invoice_number_formatting_suffix'];
361
+ $formats['padding'] = $this->template_settings['invoice_number_formatting_padding'];
362
+
363
+ // Replacements
364
+ foreach ($formats as $key => $value) {
365
+ $value = str_replace('[order_year]', $order_year, $value);
366
+ $value = str_replace('[order_month]', $order_month, $value);
367
+ $formats[$key] = $value;
368
+ }
369
+
370
+ // Padding - minimum of 3 for safety
371
+ if ( ctype_digit( (string)$formats['padding'] ) && $formats['padding'] > 3 ) {
372
+ $invoice_number = sprintf('%0'.$formats['padding'].'d', $invoice_number);
373
+ }
374
+
375
+ $formatted_invoice_number = $formats['prefix'] . $invoice_number . $formats['suffix'] ;
376
+
377
+ return $formatted_invoice_number;
378
+ }
379
+
380
  public function get_display_number( $order_id ) {
381
  if ( !isset($this->order) ) {
382
  $this->order = new WC_Order ( $order_id );
includes/class-wcpdf-settings.php CHANGED
@@ -100,17 +100,27 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
100
 
101
  <?php do_action( 'wpo_wcpdf_before_settings_page', $active_tab ); ?>
102
 
103
- <?php if (!class_exists('WooCommerce_PDF_IPS_Templates')) {
 
 
 
 
 
 
 
 
 
 
 
104
  $template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
105
  $email_link = '<a href="mailto:support@wpovernight.com">support@wpovernight.com</a>'
106
  ?>
107
-
108
  <div class="wcpdf-pro-templates" style="border: 1px solid #ccc; border-radius: 5px; padding: 10px; margin-top: 15px; background-color: #eee;">
109
  <?php printf( __("Looking for more advanced templates? Check out the Premium PDF Invoice & Packing Slips templates at %s.", 'wpo_wcpdf'), $template_link );?> <br />
110
  <?php printf( __("For custom templates, contact us at %s.", 'wpo_wcpdf'), $email_link );?>
111
  </div>
112
-
113
- <?php }
114
 
115
  if ( $active_tab=='status' ) {
116
  $this->status_page();
@@ -384,10 +394,41 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
384
  'menu' => $option,
385
  'id' => 'next_invoice_number',
386
  'size' => '10',
387
- 'description' => __( 'This is the number that will be used on the next invoice that is created. By default, numbering starts from the WooCommerce Order Number of the first invoice that is created and increases for every new invoice. Note that if you override this and set it lower than the highest (PDF) invoice number, this could create double invoice numbers!<br/>Check the <a href="http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/" target="_blank">FAQ</a> for instructions on how to format the invoice number.', 'wpo_wcpdf' ),
388
  )
389
  );
390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
  add_settings_field(
393
  'display_date',
@@ -727,6 +768,43 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
727
  echo $html;
728
  }
729
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
730
  /**
731
  * Section null callback.
732
  *
100
 
101
  <?php do_action( 'wpo_wcpdf_before_settings_page', $active_tab ); ?>
102
 
103
+ <?php
104
+ if (!class_exists('WooCommerce_PDF_IPS_Dropbox')) {
105
+ $dropbox_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-dropbox/" target="_blank">WooCommerce PDF Invoices & Packing Slips to Dropbox</a>';
106
+ ?>
107
+ <div class="wcpdf-dropbox" style="border: 1px solid #3D5C99; border-radius: 5px; padding: 15px 10px; margin-top: 15px; background-color: #EBF5FF;">
108
+ <img src="<?php echo WooCommerce_PDF_Invoices::$plugin_url . 'images/dropbox_logo.png'; ?>" style="float:left;margin-right:10px;margin-top:-5px;">
109
+ <?php printf( __("Upload all invoices automatically to your dropbox!<br/>Check out the %s extension.", 'wpo_wcpdf'), $dropbox_link );?> <br />
110
+ </div>
111
+ <?php
112
+ }
113
+
114
+ if (!class_exists('WooCommerce_PDF_IPS_Templates') && $active_tab == 'template') {
115
  $template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
116
  $email_link = '<a href="mailto:support@wpovernight.com">support@wpovernight.com</a>'
117
  ?>
 
118
  <div class="wcpdf-pro-templates" style="border: 1px solid #ccc; border-radius: 5px; padding: 10px; margin-top: 15px; background-color: #eee;">
119
  <?php printf( __("Looking for more advanced templates? Check out the Premium PDF Invoice & Packing Slips templates at %s.", 'wpo_wcpdf'), $template_link );?> <br />
120
  <?php printf( __("For custom templates, contact us at %s.", 'wpo_wcpdf'), $email_link );?>
121
  </div>
122
+ <?php
123
+ }
124
 
125
  if ( $active_tab=='status' ) {
126
  $this->status_page();
394
  'menu' => $option,
395
  'id' => 'next_invoice_number',
396
  'size' => '10',
397
+ 'description' => __( 'This is the number that will be used on the next invoice that is created. By default, numbering starts from the WooCommerce Order Number of the first invoice that is created and increases for every new invoice. Note that if you override this and set it lower than the highest (PDF) invoice number, this could create double invoice numbers!', 'wpo_wcpdf' ),
398
  )
399
  );
400
 
401
+ add_settings_field(
402
+ 'invoice_number_formatting',
403
+ __( 'Invoice number format', 'wpo_wcpdf' ),
404
+ array( &$this, 'invoice_number_formatting_callback' ),
405
+ $option,
406
+ 'template_settings',
407
+ array(
408
+ 'menu' => $option,
409
+ 'id' => 'invoice_number_formatting',
410
+ 'fields' => array(
411
+ 'prefix' => array(
412
+ 'title' => __( 'Prefix' , 'wpo_wcpdf' ),
413
+ 'size' => 20,
414
+ 'description' => __( 'to use the order year and/or month, use [order_year] or [order_month] respectively' , 'wpo_wcpdf' ),
415
+ ),
416
+ 'suffix' => array(
417
+ 'title' => __( 'Suffix' , 'wpo_wcpdf' ),
418
+ 'size' => 20,
419
+ 'description' => '',
420
+ ),
421
+ 'padding' => array(
422
+ 'title' => __( 'Padding' , 'wpo_wcpdf' ),
423
+ 'size' => 2,
424
+ 'description' => __( 'enter the number of digits here - enter "6" to display 42 as 000042' , 'wpo_wcpdf' ),
425
+ ),
426
+ ),
427
+ 'description' => __( 'note: if you have already created a custom invoice number format with a filter, the above settings will be ignored' , 'wpo_wcpdf' ),
428
+ )
429
+ );
430
+
431
+
432
 
433
  add_settings_field(
434
  'display_date',
768
  echo $html;
769
  }
770
 
771
+ /**
772
+ * Invoice number formatting callback.
773
+ *
774
+ * @param array $args Field arguments.
775
+ *
776
+ * @return string Media upload button & preview.
777
+ */
778
+ public function invoice_number_formatting_callback( $args ) {
779
+ $menu = $args['menu'];
780
+ $fields = $args['fields'];
781
+ $options = get_option( $menu );
782
+
783
+ foreach ($fields as $key => $field) {
784
+ $id = $args['id'] . '_' . $key;
785
+
786
+ if ( isset( $options[$id] ) ) {
787
+ $current = $options[$id];
788
+ } else {
789
+ $current = '';
790
+ }
791
+
792
+ $title = $field['title'];
793
+ $size = $field['size'];
794
+ $description = isset( $field['description'] ) ? '<span style="font-style:italic; margin-left:5px;">'.$field['description'].'</span>' : '';
795
+
796
+ printf( '<span style="display:inline-block; width: 5em;">%1$s:</span><input type="text" id="%2$s" name="%3$s[%2$s]" value="%4$s" size="%5$s"/>%6$s<br/>', $title, $id, $menu, $current, $size, $description );
797
+ }
798
+
799
+ // Displays option description.
800
+ if ( isset( $args['description'] ) ) {
801
+ printf( '<p class="description">%s</p>', $args['description'] );
802
+ }
803
+
804
+ // echo $html;
805
+ }
806
+
807
+
808
  /**
809
  * Section null callback.
810
  *
languages/wpo_wcpdf-cs_CZ.mo CHANGED
Binary file
languages/wpo_wcpdf-cs_CZ.po CHANGED
@@ -1,29 +1,29 @@
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"
@@ -31,7 +31,7 @@ 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"
@@ -39,8 +39,8 @@ 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
 
@@ -48,19 +48,30 @@ msgstr "PDF Faktura"
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 & "
@@ -69,48 +80,48 @@ 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 "
@@ -121,15 +132,19 @@ msgstr ""
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/"
@@ -140,59 +155,59 @@ msgstr ""
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"
@@ -200,73 +215,102 @@ 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 "
@@ -276,29 +320,35 @@ msgstr ""
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
@@ -348,12 +398,16 @@ msgstr "Množství"
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:"
@@ -377,23 +431,37 @@ msgstr ""
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
 
@@ -403,4 +471,3 @@ msgstr "Celkem"
403
  #~ msgid "Email invoice (attach to order confirmation or invoice email)"
404
  #~ msgstr ""
405
  #~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
406
-
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-05-12 22:14+0100\n"
5
+ "PO-Revision-Date: 2014-05-12 22:15+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.5\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:151 includes/class-wcpdf-export.php:156
20
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
21
+ #: includes/class-wcpdf-export.php:185
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:206 includes/class-wcpdf-export.php:285
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] "Faktura"
31
  msgstr[2] "Faktur"
32
 
33
  # This is a filename (prefix). do not use spaces or special characters!
34
+ #: includes/class-wcpdf-export.php:208
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
  msgstr[0] "Dodací List"
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:173
43
+ #: includes/class-wcpdf-writepanels.php:174
44
  msgid "PDF Invoices"
45
  msgstr "PDF Faktura"
46
 
48
  msgid "Settings"
49
  msgstr "Nastavení"
50
 
51
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
52
  msgid "General"
53
  msgstr "Všeobecné"
54
 
55
+ #: includes/class-wcpdf-settings.php:83
56
  msgid "Template"
57
  msgstr "Šablona"
58
 
59
+ #: includes/class-wcpdf-settings.php:92
60
+ msgid "WooCommerce PDF Invoices"
61
+ msgstr "WooCommerce PDF Faktury"
62
+
63
  #: includes/class-wcpdf-settings.php:98
64
+ msgid "Status"
65
+ msgstr ""
66
+
67
+ #: includes/class-wcpdf-settings.php:109
68
+ #, php-format
69
+ msgid ""
70
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
71
+ "extension."
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-settings.php:119
75
  #, php-format
76
  msgid ""
77
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
80
  "Hledáte lepší šablony? Navštivte Premium PDF Invoice & Packing Slips šablony "
81
  "na %s."
82
 
83
+ #: includes/class-wcpdf-settings.php:120
84
  #, php-format
85
  msgid "For custom templates, contact us at %s."
86
  msgstr "Pro vlastní šablonu nás kontaktujte na %s."
87
 
88
+ #: includes/class-wcpdf-settings.php:175
89
  msgid "General settings"
90
  msgstr "Všeobecné nastavení"
91
 
92
+ #: includes/class-wcpdf-settings.php:182
93
  msgid "How do you want to view the PDF?"
94
  msgstr "Jak chcete zobrazit PDF?"
95
 
96
+ #: includes/class-wcpdf-settings.php:190
97
  msgid "Download the PDF"
98
  msgstr "Stáhnout PDF"
99
 
100
+ #: includes/class-wcpdf-settings.php:191
101
  msgid "Open the PDF in a new browser tab/window"
102
  msgstr "Otevřít PDF v novém okně"
103
 
104
+ #: includes/class-wcpdf-settings.php:201
105
  msgid "Attach invoice to:"
106
  msgstr "Přiložit fakturu k:"
107
 
108
+ #: includes/class-wcpdf-settings.php:209
109
  msgid "Admin New Order email"
110
  msgstr "Administrátor - email s novou objednávkou"
111
 
112
+ #: includes/class-wcpdf-settings.php:210
113
  msgid "Customer Processing Order email"
114
  msgstr "Zákazník - email s přijatou objednávkou"
115
 
116
+ #: includes/class-wcpdf-settings.php:211
117
  msgid "Customer Completed Order email"
118
  msgstr "Zákazník - email s dokončenou objednávkou"
119
 
120
+ #: includes/class-wcpdf-settings.php:212
121
  msgid "Customer Invoice email"
122
  msgstr "Zákazník - email s fakturou"
123
 
124
+ #: includes/class-wcpdf-settings.php:214
125
  #, php-format
126
  msgid ""
127
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
132
  "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky, "
133
  "nebude možné odesílat faktury e-mailem."
134
 
135
+ #: includes/class-wcpdf-settings.php:220
136
+ msgid "Enable invoice number column in the orders list"
137
+ msgstr ""
138
+
139
+ #: includes/class-wcpdf-settings.php:259
140
  msgid "PDF Template settings"
141
  msgstr "Nastavení PDF šablony"
142
 
143
+ #: includes/class-wcpdf-settings.php:266
144
  msgid "Choose a template"
145
  msgstr "Vyberte šablonu"
146
 
147
+ #: includes/class-wcpdf-settings.php:274
148
  msgid ""
149
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
150
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
155
  "<code>yourtheme/woocommerce/pdf/yourtemplate/</code> a upravte je podla "
156
  "potřeby"
157
 
158
+ #: includes/class-wcpdf-settings.php:280
159
  msgid "Paper size"
160
  msgstr "Velikost papíru"
161
 
162
+ #: includes/class-wcpdf-settings.php:288
163
  msgid "A4"
164
  msgstr "A4"
165
 
166
+ #: includes/class-wcpdf-settings.php:289
167
  msgid "Letter"
168
  msgstr "List"
169
 
170
+ #: includes/class-wcpdf-settings.php:296
171
  msgid "Shop header/logo"
172
  msgstr "Hlavička / Logo"
173
 
174
+ #: includes/class-wcpdf-settings.php:303
175
  msgid "Select or upload your invoice header/logo"
176
  msgstr "Vyberte hlavičku / Logo"
177
 
178
+ #: includes/class-wcpdf-settings.php:304
179
  msgid "Set image"
180
  msgstr "Vybrat obrázek"
181
 
182
+ #: includes/class-wcpdf-settings.php:305
183
  msgid "Remove image"
184
  msgstr "Smazat obrázek"
185
 
186
+ #: includes/class-wcpdf-settings.php:312
187
  msgid "Shop Name"
188
  msgstr "Název obchodu"
189
 
190
+ #: includes/class-wcpdf-settings.php:325
191
  msgid "Shop Address"
192
  msgstr "Adresa obchodu"
193
 
194
+ #: includes/class-wcpdf-settings.php:357
195
  msgid "Footer: terms & conditions, policies, etc."
196
  msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
197
 
198
+ #: includes/class-wcpdf-settings.php:372
199
  msgid "Number to display on invoice"
200
  msgstr "Číslo ukázané ve faktuře"
201
 
202
+ #: includes/class-wcpdf-settings.php:380
203
  msgid "WooCommerce order number"
204
  msgstr "WooCommerce číslo objednávky"
205
 
206
+ #: includes/class-wcpdf-settings.php:381
207
  msgid "Built-in sequential invoice number"
208
  msgstr "Základní sekvenční číslování faktur"
209
 
210
+ #: includes/class-wcpdf-settings.php:383
211
  msgid ""
212
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
213
  "WooCommerce order number"
215
  "Pokud používáte plugin <i>WooCommerce Sequential Order Numbers</i>, tak "
216
  "zvolte WooCommerce číslo objednávky"
217
 
218
+ #: includes/class-wcpdf-settings.php:389
219
  msgid "Next invoice number (without prefix/suffix etc.)"
220
  msgstr "Další číslo faktury (bez předpony/přípony)"
221
 
222
+ #: includes/class-wcpdf-settings.php:397
223
  msgid ""
224
  "This is the number that will be used on the next invoice that is created. By "
225
  "default, numbering starts from the WooCommerce Order Number of the first "
226
  "invoice that is created and increases for every new invoice. Note that if "
227
  "you override this and set it lower than the highest (PDF) invoice number, "
228
+ "this could create double invoice numbers!"
 
 
229
  msgstr ""
230
  "Toto číslo bude použité v další vytvořené faktuře. Číslování začína podle "
231
  "<i>WooCommerce číslo objednávky</i> první vytvořenou fakturou a roste každou "
232
  "další vytvořenou fakturou. POZOR: Když toto přepíšete a nastavíte hodnotu na "
233
  "menší než má poslední vytvořená faktura, může dojít k zdvojení číslování ve "
234
+ "fakturách!"
235
+
236
+ #: includes/class-wcpdf-settings.php:403
237
+ #, fuzzy
238
+ msgid "Invoice number format"
239
+ msgstr "Číslo faktury:"
240
+
241
+ #: includes/class-wcpdf-settings.php:412
242
+ msgid "Prefix"
243
+ msgstr ""
244
+
245
+ #: includes/class-wcpdf-settings.php:414
246
+ msgid ""
247
+ "to use the order year and/or month, use [order_year] or [order_month] "
248
+ "respectively"
249
+ msgstr ""
250
 
251
+ #: includes/class-wcpdf-settings.php:417
252
+ msgid "Suffix"
253
+ msgstr ""
254
+
255
+ #: includes/class-wcpdf-settings.php:422
256
+ msgid "Padding"
257
+ msgstr ""
258
+
259
+ #: includes/class-wcpdf-settings.php:424
260
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
261
+ msgstr ""
262
+
263
+ #: includes/class-wcpdf-settings.php:427
264
+ msgid ""
265
+ "note: if you have already created a custom invoice number format with a "
266
+ "filter, the above settings will be ignored"
267
+ msgstr ""
268
+
269
+ #: includes/class-wcpdf-settings.php:435
270
  msgid "Date to display on invoice"
271
  msgstr "Datum zobrazený ve faktuře"
272
 
273
+ #: includes/class-wcpdf-settings.php:443
274
  msgid "Order date"
275
  msgstr "Datum objednávky"
276
 
277
+ #: includes/class-wcpdf-settings.php:444
278
  msgid "Invoice date"
279
  msgstr "Datum fakturace"
280
 
281
+ #: includes/class-wcpdf-settings.php:452
282
  msgid "Extra template fields"
283
  msgstr "Extra políčka v šabloně"
284
 
285
+ #: includes/class-wcpdf-settings.php:459
286
  msgid "Extra field 1"
287
  msgstr "Extra políčko 1"
288
 
289
+ #: includes/class-wcpdf-settings.php:468
290
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
291
  msgstr "Tohle je 1. políčko v patičce v šabloně <i>Modern (Premium)</i>"
292
 
293
+ #: includes/class-wcpdf-settings.php:474
294
  msgid "Extra field 2"
295
  msgstr "Extra políčko 2"
296
 
297
+ #: includes/class-wcpdf-settings.php:483
298
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
299
  msgstr "Tohle je 2. políčko v patičce v šabloně <i>Modern (Premium)</i>"
300
 
301
+ #: includes/class-wcpdf-settings.php:489
302
  msgid "Extra field 3"
303
  msgstr "Extra políčko 3"
304
 
305
+ #: includes/class-wcpdf-settings.php:498
306
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
307
  msgstr "Tohle je 3. políčko v patičce v šabloně <i>Modern (Premium)</i>"
308
 
309
+ #: includes/class-wcpdf-settings.php:755
310
  msgid "Image resolution"
311
  msgstr "Rozměry obrázku"
312
 
313
+ #: includes/class-wcpdf-settings.php:822
314
  msgid ""
315
  "These are used for the (optional) footer columns in the <em>Modern "
316
  "(Premium)</em> template, but can also be used for other elements in your "
320
  "<em>Modern (Premium)</em>, ale mohou být využité také jako jiné prvky ve "
321
  "Vaší vlastní šabloně"
322
 
323
+ #: includes/class-wcpdf-writepanels.php:102
324
+ #, fuzzy
325
+ msgid "Invoice Number"
326
+ msgstr "Číslo faktury:"
327
+
328
+ #: includes/class-wcpdf-writepanels.php:133
329
  msgid "Create PDF"
330
  msgstr "Vytvořit PDF"
331
 
332
+ #: includes/class-wcpdf-writepanels.php:143
333
  msgid "Download invoice (PDF)"
334
  msgstr "Stáhnout fakturu (PDF)"
335
 
336
+ #: includes/class-wcpdf-writepanels.php:157
337
  msgid "PDF invoice"
338
  msgstr "PDF faktura"
339
 
340
+ #: includes/class-wcpdf-writepanels.php:158
341
  msgid "PDF Packing Slip"
342
  msgstr "PDF Dodací List"
343
 
344
+ #: includes/class-wcpdf-writepanels.php:175
345
+ #: includes/class-wcpdf-writepanels.php:176
346
  msgid "PDF Packing Slips"
347
  msgstr "PDF Dodací Listy"
348
 
349
+ #: includes/class-wcpdf-writepanels.php:189
350
+ #, fuzzy
351
+ msgid "PDF Invoice Number (unformatted!)"
352
  msgstr "PDF Číslo Faktury"
353
 
354
  #: templates/pdf/Simple/html-document-wrapper.php:6
398
  msgid "Price"
399
  msgstr "Cena"
400
 
401
+ #: templates/pdf/Simple/invoice.php:77
402
+ msgid "Description"
403
+ msgstr ""
404
+
405
+ #: templates/pdf/Simple/invoice.php:80
406
  #: templates/pdf/Simple/packing-slip.php:54
407
  msgid "SKU:"
408
  msgstr "EAN:"
409
 
410
+ #: templates/pdf/Simple/invoice.php:81
411
  #: templates/pdf/Simple/packing-slip.php:55
412
  msgid "Weight:"
413
  msgstr "Hmotnost:"
431
  msgid "N/A"
432
  msgstr "Ano/Ne"
433
 
434
+ #: woocommerce-pdf-invoices-packingslips.php:249
435
+ #, fuzzy
436
+ msgid "Payment method"
437
+ msgstr "Způsob platby:"
438
+
439
+ #: woocommerce-pdf-invoices-packingslips.php:260
440
+ #, fuzzy
441
+ msgid "Shipping method"
442
+ msgstr "Doprava"
443
+
444
+ #: woocommerce-pdf-invoices-packingslips.php:360
445
  msgid "Subtotal"
446
  msgstr "Mezisoučet"
447
 
448
+ #: woocommerce-pdf-invoices-packingslips.php:382
449
  msgid "Shipping"
450
  msgstr "Doprava"
451
 
452
+ #: woocommerce-pdf-invoices-packingslips.php:416
453
  msgid "Discount"
454
  msgstr "Sleva"
455
 
456
+ #: woocommerce-pdf-invoices-packingslips.php:455
457
+ msgid "VAT"
458
+ msgstr ""
459
+
460
+ #: woocommerce-pdf-invoices-packingslips.php:487
461
  msgid "Total ex. VAT"
462
  msgstr "Celkem bez DPH"
463
 
464
+ #: woocommerce-pdf-invoices-packingslips.php:490
465
  msgid "Total"
466
  msgstr "Celkem"
467
 
471
  #~ msgid "Email invoice (attach to order confirmation or invoice email)"
472
  #~ msgstr ""
473
  #~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
 
languages/wpo_wcpdf-de_DE.mo CHANGED
Binary file
languages/wpo_wcpdf-de_DE.po CHANGED
@@ -1,36 +1,36 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-02-26 09:12+0100\n"
5
- "PO-Revision-Date: 2014-03-13 10:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.4\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/class-wcpdf-export.php:142 includes/class-wcpdf-export.php:147
20
- #: includes/class-wcpdf-export.php:152 includes/class-wcpdf-export.php:163
21
- #: includes/class-wcpdf-export.php:176
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
24
 
25
  # This is a filename (prefix). do not use spaces or special characters!
26
- #: includes/class-wcpdf-export.php:197 includes/class-wcpdf-export.php:268
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] "Rechnung"
30
  msgstr[1] "Rechnungen"
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
- #: includes/class-wcpdf-export.php:199
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] "Packzettel"
@@ -46,27 +46,30 @@ msgstr "PDF Rechnungen"
46
  msgid "Settings"
47
  msgstr "Einstellungen"
48
 
49
- #: includes/class-wcpdf-settings.php:86
50
- msgid "WooCommerce PDF Invoices"
51
- msgstr "WooCommerce PDF Rechnungen"
52
-
53
- #: includes/class-wcpdf-settings.php:88
54
  msgid "General"
55
  msgstr "Allgemein"
56
 
57
- #: includes/class-wcpdf-settings.php:89
58
  msgid "Template"
59
  msgstr "Vorlage"
60
 
61
- #: includes/class-wcpdf-settings.php:96
 
 
 
 
 
 
 
 
62
  #, php-format
63
  msgid ""
64
- "Your WP Memory Limit is currently set to %s - We recommend setting it to at "
65
- "least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
66
- "memory allocated to PHP</a>"
67
  msgstr ""
68
 
69
- #: includes/class-wcpdf-settings.php:106
70
  #, php-format
71
  msgid ""
72
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -75,48 +78,48 @@ msgstr ""
75
  "Suchst du weitere, forgeschrittenere Templates? Besuche die Premium PDF "
76
  "Invoice & Packing Slips Templates auf %s."
77
 
78
- #: includes/class-wcpdf-settings.php:107
79
  #, php-format
80
  msgid "For custom templates, contact us at %s."
81
  msgstr ""
82
 
83
- #: includes/class-wcpdf-settings.php:161
84
  msgid "General settings"
85
  msgstr "Allgemeine Einstellungen"
86
 
87
- #: includes/class-wcpdf-settings.php:168
88
  msgid "How do you want to view the PDF?"
89
  msgstr "Wie soll das PDF angezeigt werden?"
90
 
91
- #: includes/class-wcpdf-settings.php:176
92
  msgid "Download the PDF"
93
  msgstr "PDF runterladen"
94
 
95
- #: includes/class-wcpdf-settings.php:177
96
  msgid "Open the PDF in a new browser tab/window"
97
  msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
98
 
99
- #: includes/class-wcpdf-settings.php:187
100
  msgid "Attach invoice to:"
101
  msgstr ""
102
 
103
- #: includes/class-wcpdf-settings.php:195
104
  msgid "Admin New Order email"
105
  msgstr ""
106
 
107
- #: includes/class-wcpdf-settings.php:196
108
  msgid "Customer Processing Order email"
109
  msgstr ""
110
 
111
- #: includes/class-wcpdf-settings.php:197
112
  msgid "Customer Completed Order email"
113
  msgstr ""
114
 
115
- #: includes/class-wcpdf-settings.php:198
116
  msgid "Customer Invoice email"
117
  msgstr ""
118
 
119
- #: includes/class-wcpdf-settings.php:200
120
  #, php-format
121
  msgid ""
122
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -127,19 +130,19 @@ msgstr ""
127
  "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
128
  "können keine E-Mail - Rechnungen verschickt werden."
129
 
130
- #: includes/class-wcpdf-settings.php:206
131
  msgid "Enable invoice number column in the orders list"
132
  msgstr ""
133
 
134
- #: includes/class-wcpdf-settings.php:245
135
  msgid "PDF Template settings"
136
  msgstr "PDF Vorlageneinstellungen"
137
 
138
- #: includes/class-wcpdf-settings.php:252
139
  msgid "Choose a template"
140
  msgstr "Wähle eine Vorlage"
141
 
142
- #: includes/class-wcpdf-settings.php:260
143
  msgid ""
144
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
145
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -150,127 +153,158 @@ msgstr ""
150
  "nach <code>deinTheme/woocommerce/pdf/deineVorlage/</code> und passe sie dort "
151
  "an."
152
 
153
- #: includes/class-wcpdf-settings.php:266
154
  msgid "Paper size"
155
  msgstr "Papierformat"
156
 
157
- #: includes/class-wcpdf-settings.php:274
158
  msgid "A4"
159
  msgstr "A4"
160
 
161
- #: includes/class-wcpdf-settings.php:275
162
  msgid "Letter"
163
  msgstr "Letter (US)"
164
 
165
- #: includes/class-wcpdf-settings.php:282
166
  msgid "Shop header/logo"
167
  msgstr "Briefkopf-Logo"
168
 
169
- #: includes/class-wcpdf-settings.php:289
170
  msgid "Select or upload your invoice header/logo"
171
  msgstr "Auswählen oder hochladen des Logos"
172
 
173
- #: includes/class-wcpdf-settings.php:290
174
  msgid "Set image"
175
  msgstr "Logo festlegen"
176
 
177
- #: includes/class-wcpdf-settings.php:291
178
  msgid "Remove image"
179
  msgstr "Logo entfernen"
180
 
181
- #: includes/class-wcpdf-settings.php:298
182
  msgid "Shop Name"
183
  msgstr "Shop Name"
184
 
185
- #: includes/class-wcpdf-settings.php:311
186
  msgid "Shop Address"
187
  msgstr "Shop Adresse"
188
 
189
- #: includes/class-wcpdf-settings.php:343
190
  msgid "Footer: terms & conditions, policies, etc."
191
  msgstr "Fußzeile: allgemeine Bestimmungen, etc."
192
 
193
- #: includes/class-wcpdf-settings.php:358
194
  msgid "Number to display on invoice"
195
  msgstr ""
196
 
197
- #: includes/class-wcpdf-settings.php:366
198
  msgid "WooCommerce order number"
199
  msgstr "WooCommerce Bestellnummer"
200
 
201
- #: includes/class-wcpdf-settings.php:367
202
  msgid "Built-in sequential invoice number"
203
  msgstr ""
204
 
205
- #: includes/class-wcpdf-settings.php:369
206
  msgid ""
207
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
208
  "WooCommerce order number"
209
  msgstr ""
210
 
211
- #: includes/class-wcpdf-settings.php:375
212
  msgid "Next invoice number (without prefix/suffix etc.)"
213
  msgstr ""
214
 
215
- #: includes/class-wcpdf-settings.php:383
216
  msgid ""
217
  "This is the number that will be used on the next invoice that is created. By "
218
  "default, numbering starts from the WooCommerce Order Number of the first "
219
  "invoice that is created and increases for every new invoice. Note that if "
220
  "you override this and set it lower than the highest (PDF) invoice number, "
221
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
222
- "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
223
- "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  msgstr ""
225
 
226
- #: includes/class-wcpdf-settings.php:390
 
 
 
 
 
 
227
  msgid "Date to display on invoice"
228
  msgstr ""
229
 
230
- #: includes/class-wcpdf-settings.php:398
231
  msgid "Order date"
232
  msgstr "Bestelldatum"
233
 
234
- #: includes/class-wcpdf-settings.php:399
235
  msgid "Invoice date"
236
  msgstr "Rechnungsdatum"
237
 
238
- #: includes/class-wcpdf-settings.php:407
239
  msgid "Extra template fields"
240
  msgstr "Zusätzliche Vorlagenfelder"
241
 
242
- #: includes/class-wcpdf-settings.php:414
243
  msgid "Extra field 1"
244
  msgstr "Zusatzfeld 1"
245
 
246
- #: includes/class-wcpdf-settings.php:423
247
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
248
  msgstr ""
249
  "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
250
 
251
- #: includes/class-wcpdf-settings.php:429
252
  msgid "Extra field 2"
253
  msgstr "Zusatzfeld 2"
254
 
255
- #: includes/class-wcpdf-settings.php:438
256
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
257
  msgstr ""
258
  "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
259
 
260
- #: includes/class-wcpdf-settings.php:444
261
  msgid "Extra field 3"
262
  msgstr "Zusatzfeld 3"
263
 
264
- #: includes/class-wcpdf-settings.php:453
265
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
266
  msgstr ""
267
  "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
268
 
269
- #: includes/class-wcpdf-settings.php:710
270
  msgid "Image resolution"
271
  msgstr "Bildauflösung"
272
 
273
- #: includes/class-wcpdf-settings.php:740
274
  msgid ""
275
  "These are used for the (optional) footer columns in the <em>Modern "
276
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -305,7 +339,7 @@ msgstr "PDF Packliste"
305
  msgid "PDF Packing Slips"
306
  msgstr "PDF Packlisten"
307
 
308
- #: includes/class-wcpdf-writepanels.php:187
309
  msgid "PDF Invoice Number (unformatted!)"
310
  msgstr ""
311
 
@@ -370,7 +404,7 @@ msgstr "SKU:"
370
  msgid "Weight:"
371
  msgstr "Gewicht:"
372
 
373
- #: templates/pdf/Simple/invoice.php:114
374
  #: templates/pdf/Simple/packing-slip.php:69
375
  msgid "Customer Notes"
376
  msgstr "Kundenanmerkungen"
@@ -403,19 +437,19 @@ msgstr "Zwischensumme"
403
  msgid "Shipping"
404
  msgstr "Versand"
405
 
406
- #: woocommerce-pdf-invoices-packingslips.php:401
407
  msgid "Discount"
408
  msgstr "Rabatt"
409
 
410
- #: woocommerce-pdf-invoices-packingslips.php:439
411
  msgid "VAT"
412
  msgstr "MwSt"
413
 
414
- #: woocommerce-pdf-invoices-packingslips.php:471
415
  msgid "Total ex. VAT"
416
  msgstr "Gesamtsumme ohne MwSt"
417
 
418
- #: woocommerce-pdf-invoices-packingslips.php:474
419
  msgid "Total"
420
  msgstr "Gesamtsumme"
421
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-05-12 22:15+0100\n"
5
+ "PO-Revision-Date: 2014-05-12 22:15+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
20
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
21
+ #: includes/class-wcpdf-export.php:185
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
24
 
25
  # This is a filename (prefix). do not use spaces or special characters!
26
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] "Rechnung"
30
  msgstr[1] "Rechnungen"
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
+ #: includes/class-wcpdf-export.php:208
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] "Packzettel"
46
  msgid "Settings"
47
  msgstr "Einstellungen"
48
 
49
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
50
  msgid "General"
51
  msgstr "Allgemein"
52
 
53
+ #: includes/class-wcpdf-settings.php:83
54
  msgid "Template"
55
  msgstr "Vorlage"
56
 
57
+ #: includes/class-wcpdf-settings.php:92
58
+ msgid "WooCommerce PDF Invoices"
59
+ msgstr "WooCommerce PDF Rechnungen"
60
+
61
+ #: includes/class-wcpdf-settings.php:98
62
+ msgid "Status"
63
+ msgstr ""
64
+
65
+ #: includes/class-wcpdf-settings.php:109
66
  #, php-format
67
  msgid ""
68
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
69
+ "extension."
 
70
  msgstr ""
71
 
72
+ #: includes/class-wcpdf-settings.php:119
73
  #, php-format
74
  msgid ""
75
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
78
  "Suchst du weitere, forgeschrittenere Templates? Besuche die Premium PDF "
79
  "Invoice & Packing Slips Templates auf %s."
80
 
81
+ #: includes/class-wcpdf-settings.php:120
82
  #, php-format
83
  msgid "For custom templates, contact us at %s."
84
  msgstr ""
85
 
86
+ #: includes/class-wcpdf-settings.php:175
87
  msgid "General settings"
88
  msgstr "Allgemeine Einstellungen"
89
 
90
+ #: includes/class-wcpdf-settings.php:182
91
  msgid "How do you want to view the PDF?"
92
  msgstr "Wie soll das PDF angezeigt werden?"
93
 
94
+ #: includes/class-wcpdf-settings.php:190
95
  msgid "Download the PDF"
96
  msgstr "PDF runterladen"
97
 
98
+ #: includes/class-wcpdf-settings.php:191
99
  msgid "Open the PDF in a new browser tab/window"
100
  msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
101
 
102
+ #: includes/class-wcpdf-settings.php:201
103
  msgid "Attach invoice to:"
104
  msgstr ""
105
 
106
+ #: includes/class-wcpdf-settings.php:209
107
  msgid "Admin New Order email"
108
  msgstr ""
109
 
110
+ #: includes/class-wcpdf-settings.php:210
111
  msgid "Customer Processing Order email"
112
  msgstr ""
113
 
114
+ #: includes/class-wcpdf-settings.php:211
115
  msgid "Customer Completed Order email"
116
  msgstr ""
117
 
118
+ #: includes/class-wcpdf-settings.php:212
119
  msgid "Customer Invoice email"
120
  msgstr ""
121
 
122
+ #: includes/class-wcpdf-settings.php:214
123
  #, php-format
124
  msgid ""
125
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
130
  "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
131
  "können keine E-Mail - Rechnungen verschickt werden."
132
 
133
+ #: includes/class-wcpdf-settings.php:220
134
  msgid "Enable invoice number column in the orders list"
135
  msgstr ""
136
 
137
+ #: includes/class-wcpdf-settings.php:259
138
  msgid "PDF Template settings"
139
  msgstr "PDF Vorlageneinstellungen"
140
 
141
+ #: includes/class-wcpdf-settings.php:266
142
  msgid "Choose a template"
143
  msgstr "Wähle eine Vorlage"
144
 
145
+ #: includes/class-wcpdf-settings.php:274
146
  msgid ""
147
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
148
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
153
  "nach <code>deinTheme/woocommerce/pdf/deineVorlage/</code> und passe sie dort "
154
  "an."
155
 
156
+ #: includes/class-wcpdf-settings.php:280
157
  msgid "Paper size"
158
  msgstr "Papierformat"
159
 
160
+ #: includes/class-wcpdf-settings.php:288
161
  msgid "A4"
162
  msgstr "A4"
163
 
164
+ #: includes/class-wcpdf-settings.php:289
165
  msgid "Letter"
166
  msgstr "Letter (US)"
167
 
168
+ #: includes/class-wcpdf-settings.php:296
169
  msgid "Shop header/logo"
170
  msgstr "Briefkopf-Logo"
171
 
172
+ #: includes/class-wcpdf-settings.php:303
173
  msgid "Select or upload your invoice header/logo"
174
  msgstr "Auswählen oder hochladen des Logos"
175
 
176
+ #: includes/class-wcpdf-settings.php:304
177
  msgid "Set image"
178
  msgstr "Logo festlegen"
179
 
180
+ #: includes/class-wcpdf-settings.php:305
181
  msgid "Remove image"
182
  msgstr "Logo entfernen"
183
 
184
+ #: includes/class-wcpdf-settings.php:312
185
  msgid "Shop Name"
186
  msgstr "Shop Name"
187
 
188
+ #: includes/class-wcpdf-settings.php:325
189
  msgid "Shop Address"
190
  msgstr "Shop Adresse"
191
 
192
+ #: includes/class-wcpdf-settings.php:357
193
  msgid "Footer: terms & conditions, policies, etc."
194
  msgstr "Fußzeile: allgemeine Bestimmungen, etc."
195
 
196
+ #: includes/class-wcpdf-settings.php:372
197
  msgid "Number to display on invoice"
198
  msgstr ""
199
 
200
+ #: includes/class-wcpdf-settings.php:380
201
  msgid "WooCommerce order number"
202
  msgstr "WooCommerce Bestellnummer"
203
 
204
+ #: includes/class-wcpdf-settings.php:381
205
  msgid "Built-in sequential invoice number"
206
  msgstr ""
207
 
208
+ #: includes/class-wcpdf-settings.php:383
209
  msgid ""
210
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
211
  "WooCommerce order number"
212
  msgstr ""
213
 
214
+ #: includes/class-wcpdf-settings.php:389
215
  msgid "Next invoice number (without prefix/suffix etc.)"
216
  msgstr ""
217
 
218
+ #: includes/class-wcpdf-settings.php:397
219
  msgid ""
220
  "This is the number that will be used on the next invoice that is created. By "
221
  "default, numbering starts from the WooCommerce Order Number of the first "
222
  "invoice that is created and increases for every new invoice. Note that if "
223
  "you override this and set it lower than the highest (PDF) invoice number, "
224
+ "this could create double invoice numbers!"
225
+ msgstr ""
226
+
227
+ #: includes/class-wcpdf-settings.php:403
228
+ #, fuzzy
229
+ msgid "Invoice number format"
230
+ msgstr "Rechnungsnummer"
231
+
232
+ #: includes/class-wcpdf-settings.php:412
233
+ msgid "Prefix"
234
+ msgstr ""
235
+
236
+ #: includes/class-wcpdf-settings.php:414
237
+ msgid ""
238
+ "to use the order year and/or month, use [order_year] or [order_month] "
239
+ "respectively"
240
+ msgstr ""
241
+
242
+ #: includes/class-wcpdf-settings.php:417
243
+ msgid "Suffix"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcpdf-settings.php:422
247
+ msgid "Padding"
248
+ msgstr ""
249
+
250
+ #: includes/class-wcpdf-settings.php:424
251
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
252
  msgstr ""
253
 
254
+ #: includes/class-wcpdf-settings.php:427
255
+ msgid ""
256
+ "note: if you have already created a custom invoice number format with a "
257
+ "filter, the above settings will be ignored"
258
+ msgstr ""
259
+
260
+ #: includes/class-wcpdf-settings.php:435
261
  msgid "Date to display on invoice"
262
  msgstr ""
263
 
264
+ #: includes/class-wcpdf-settings.php:443
265
  msgid "Order date"
266
  msgstr "Bestelldatum"
267
 
268
+ #: includes/class-wcpdf-settings.php:444
269
  msgid "Invoice date"
270
  msgstr "Rechnungsdatum"
271
 
272
+ #: includes/class-wcpdf-settings.php:452
273
  msgid "Extra template fields"
274
  msgstr "Zusätzliche Vorlagenfelder"
275
 
276
+ #: includes/class-wcpdf-settings.php:459
277
  msgid "Extra field 1"
278
  msgstr "Zusatzfeld 1"
279
 
280
+ #: includes/class-wcpdf-settings.php:468
281
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
282
  msgstr ""
283
  "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
284
 
285
+ #: includes/class-wcpdf-settings.php:474
286
  msgid "Extra field 2"
287
  msgstr "Zusatzfeld 2"
288
 
289
+ #: includes/class-wcpdf-settings.php:483
290
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
291
  msgstr ""
292
  "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
293
 
294
+ #: includes/class-wcpdf-settings.php:489
295
  msgid "Extra field 3"
296
  msgstr "Zusatzfeld 3"
297
 
298
+ #: includes/class-wcpdf-settings.php:498
299
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
300
  msgstr ""
301
  "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
302
 
303
+ #: includes/class-wcpdf-settings.php:755
304
  msgid "Image resolution"
305
  msgstr "Bildauflösung"
306
 
307
+ #: includes/class-wcpdf-settings.php:822
308
  msgid ""
309
  "These are used for the (optional) footer columns in the <em>Modern "
310
  "(Premium)</em> template, but can also be used for other elements in your "
339
  msgid "PDF Packing Slips"
340
  msgstr "PDF Packlisten"
341
 
342
+ #: includes/class-wcpdf-writepanels.php:189
343
  msgid "PDF Invoice Number (unformatted!)"
344
  msgstr ""
345
 
404
  msgid "Weight:"
405
  msgstr "Gewicht:"
406
 
407
+ #: templates/pdf/Simple/invoice.php:113
408
  #: templates/pdf/Simple/packing-slip.php:69
409
  msgid "Customer Notes"
410
  msgstr "Kundenanmerkungen"
437
  msgid "Shipping"
438
  msgstr "Versand"
439
 
440
+ #: woocommerce-pdf-invoices-packingslips.php:416
441
  msgid "Discount"
442
  msgstr "Rabatt"
443
 
444
+ #: woocommerce-pdf-invoices-packingslips.php:455
445
  msgid "VAT"
446
  msgstr "MwSt"
447
 
448
+ #: woocommerce-pdf-invoices-packingslips.php:487
449
  msgid "Total ex. VAT"
450
  msgstr "Gesamtsumme ohne MwSt"
451
 
452
+ #: woocommerce-pdf-invoices-packingslips.php:490
453
  msgid "Total"
454
  msgstr "Gesamtsumme"
455
 
languages/wpo_wcpdf-es_ES.mo CHANGED
Binary file
languages/wpo_wcpdf-es_ES.po CHANGED
@@ -1,42 +1,42 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-02-21 13:53+0100\n"
5
- "PO-Revision-Date: 2014-02-23 13:34+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: es_ES\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.4\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/class-wcpdf-export.php:137 includes/class-wcpdf-export.php:142
20
- #: includes/class-wcpdf-export.php:147 includes/class-wcpdf-export.php:158
21
- #: includes/class-wcpdf-export.php:171
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "No tiene suficientes permitos para acceder a esta página."
24
 
25
- #: includes/class-wcpdf-export.php:192 includes/class-wcpdf-export.php:263
26
  msgid "invoice"
27
  msgid_plural "invoices"
28
  msgstr[0] "factura"
29
  msgstr[1] "facturas"
30
 
31
- #: includes/class-wcpdf-export.php:194
32
  msgid "packing-slip"
33
  msgid_plural "packing-slips"
34
  msgstr[0] "albarán de entrega"
35
  msgstr[1] "albaranes de entrega"
36
 
37
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
38
- #: includes/class-wcpdf-writepanels.php:172
39
  #: includes/class-wcpdf-writepanels.php:173
 
40
  msgid "PDF Invoices"
41
  msgstr "Facturas PDF"
42
 
@@ -44,30 +44,30 @@ msgstr "Facturas PDF"
44
  msgid "Settings"
45
  msgstr "Ajustes"
46
 
47
- #: includes/class-wcpdf-settings.php:86
48
- msgid "WooCommerce PDF Invoices"
49
- msgstr "WooCommerce Facturas PDF"
50
-
51
- #: includes/class-wcpdf-settings.php:88
52
  msgid "General"
53
  msgstr "General"
54
 
55
- #: includes/class-wcpdf-settings.php:89
56
  msgid "Template"
57
  msgstr "Plantilla"
58
 
59
- #: includes/class-wcpdf-settings.php:96
 
 
 
 
 
 
 
 
60
  #, php-format
61
  msgid ""
62
- "Your WP Memory Limit is currently set to %s - We recommend setting it to at "
63
- "least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
64
- "memory allocated to PHP</a>"
65
  msgstr ""
66
- "Actualmente el límite de memoria de WP está fijado en %s - Se recomienda "
67
- "aumentarlo al menos a 64MB (128 MB para un uso óptimo). Ver: <a href=\"%s"
68
- "\">Ampliar memoria dedicada a PHP</a>"
69
 
70
- #: includes/class-wcpdf-settings.php:106
71
  #, php-format
72
  msgid ""
73
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -76,48 +76,48 @@ msgstr ""
76
  "¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas premium "
77
  "de PDF Invoice & Packing Slips en %s."
78
 
79
- #: includes/class-wcpdf-settings.php:107
80
  #, php-format
81
  msgid "For custom templates, contact us at %s."
82
  msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
83
 
84
- #: includes/class-wcpdf-settings.php:161
85
  msgid "General settings"
86
  msgstr "Ajustes generales"
87
 
88
- #: includes/class-wcpdf-settings.php:168
89
  msgid "How do you want to view the PDF?"
90
  msgstr "¿Cómo desea visualizar el PDF?"
91
 
92
- #: includes/class-wcpdf-settings.php:176
93
  msgid "Download the PDF"
94
  msgstr "Descargándolo."
95
 
96
- #: includes/class-wcpdf-settings.php:177
97
  msgid "Open the PDF in a new browser tab/window"
98
  msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
99
 
100
- #: includes/class-wcpdf-settings.php:187
101
  msgid "Attach invoice to:"
102
  msgstr "Adjuntar factura a:"
103
 
104
- #: includes/class-wcpdf-settings.php:195
105
  msgid "Admin New Order email"
106
  msgstr "Correo electrónico del administrador al crear un nuevo pedido."
107
 
108
- #: includes/class-wcpdf-settings.php:196
109
  msgid "Customer Processing Order email"
110
  msgstr "Correo electrónico del cliente al procesar el pedido."
111
 
112
- #: includes/class-wcpdf-settings.php:197
113
  msgid "Customer Completed Order email"
114
  msgstr "Correo electrónico del cliente al completar el pedido."
115
 
116
- #: includes/class-wcpdf-settings.php:198
117
  msgid "Customer Invoice email"
118
  msgstr "Correo electrónico de la factura del cliente."
119
 
120
- #: includes/class-wcpdf-settings.php:200
121
  #, php-format
122
  msgid ""
123
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -128,19 +128,19 @@ msgstr ""
128
  "¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
129
  "carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
130
 
131
- #: includes/class-wcpdf-settings.php:206
132
  msgid "Enable invoice number column in the orders list"
133
  msgstr "Activar la columna de número de factura en pedidos"
134
 
135
- #: includes/class-wcpdf-settings.php:245
136
  msgid "PDF Template settings"
137
  msgstr "Ajustes de la plantilla PDF"
138
 
139
- #: includes/class-wcpdf-settings.php:252
140
  msgid "Choose a template"
141
  msgstr "Elige una plantilla"
142
 
143
- #: includes/class-wcpdf-settings.php:260
144
  msgid ""
145
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
146
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -150,59 +150,59 @@ msgstr ""
150
  "<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> a "
151
  "<code>yourtheme/woocommerce/pdf/yourtemplate/</code> y personalícela."
152
 
153
- #: includes/class-wcpdf-settings.php:266
154
  msgid "Paper size"
155
  msgstr "Tamaño del papel"
156
 
157
- #: includes/class-wcpdf-settings.php:274
158
  msgid "A4"
159
  msgstr "A4"
160
 
161
- #: includes/class-wcpdf-settings.php:275
162
  msgid "Letter"
163
  msgstr "Carta"
164
 
165
- #: includes/class-wcpdf-settings.php:282
166
  msgid "Shop header/logo"
167
  msgstr "Logotipo de la tienda"
168
 
169
- #: includes/class-wcpdf-settings.php:289
170
  msgid "Select or upload your invoice header/logo"
171
  msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
172
 
173
- #: includes/class-wcpdf-settings.php:290
174
  msgid "Set image"
175
  msgstr "Añadir imagen"
176
 
177
- #: includes/class-wcpdf-settings.php:291
178
  msgid "Remove image"
179
  msgstr "Eliminar la imagen"
180
 
181
- #: includes/class-wcpdf-settings.php:298
182
  msgid "Shop Name"
183
  msgstr "Nombre de la tienda"
184
 
185
- #: includes/class-wcpdf-settings.php:311
186
  msgid "Shop Address"
187
  msgstr "Dirección de la tienda"
188
 
189
- #: includes/class-wcpdf-settings.php:343
190
  msgid "Footer: terms & conditions, policies, etc."
191
  msgstr "Pie de página: Términos y condiciones, políticas, etc."
192
 
193
- #: includes/class-wcpdf-settings.php:358
194
  msgid "Number to display on invoice"
195
  msgstr "Número a mostrar en la factura"
196
 
197
- #: includes/class-wcpdf-settings.php:366
198
  msgid "WooCommerce order number"
199
  msgstr "Número de pedido de WooCommerce "
200
 
201
- #: includes/class-wcpdf-settings.php:367
202
  msgid "Built-in sequential invoice number"
203
  msgstr "Crear numeración secuencial de factura"
204
 
205
- #: includes/class-wcpdf-settings.php:369
206
  msgid ""
207
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
208
  "WooCommerce order number"
@@ -210,79 +210,107 @@ msgstr ""
210
  "Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
211
  "seleccione el número de pedido de WooCommerce."
212
 
213
- #: includes/class-wcpdf-settings.php:375
214
  msgid "Next invoice number (without prefix/suffix etc.)"
215
  msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
216
 
217
- #: includes/class-wcpdf-settings.php:383
218
  msgid ""
219
  "This is the number that will be used on the next invoice that is created. By "
220
  "default, numbering starts from the WooCommerce Order Number of the first "
221
  "invoice that is created and increases for every new invoice. Note that if "
222
  "you override this and set it lower than the highest (PDF) invoice number, "
223
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
224
- "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
225
- "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
226
  msgstr ""
227
  "Este número se utilizará al crear la siguiente factura. Por defecto, la "
228
  "numeración comienza desde la WooCommerce Order Number de la primera factura "
229
  "y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
230
- "ajusta a uno inferior podría crear facturas con números duplicados. <br/"
231
- ">Compruebe el <a href=\"http://wordpress.org/plugins/woocommerce-pdf-"
232
- "invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> para obtener "
233
- "instrucciones sobre cómo formatear el número de la factura."
 
 
 
 
 
 
 
 
 
 
 
 
234
 
235
- #: includes/class-wcpdf-settings.php:390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  msgid "Date to display on invoice"
237
  msgstr "Fecha a mostrar en la factura"
238
 
239
- #: includes/class-wcpdf-settings.php:398
240
  msgid "Order date"
241
  msgstr "Fecha del pedido"
242
 
243
- #: includes/class-wcpdf-settings.php:399
244
  msgid "Invoice date"
245
  msgstr "Fecha de la factura"
246
 
247
- #: includes/class-wcpdf-settings.php:407
248
  msgid "Extra template fields"
249
  msgstr "Campos extra de la plantilla"
250
 
251
- #: includes/class-wcpdf-settings.php:414
252
  msgid "Extra field 1"
253
  msgstr "Campo extra 1"
254
 
255
- #: includes/class-wcpdf-settings.php:423
256
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
257
  msgstr ""
258
  "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
259
  "i>."
260
 
261
- #: includes/class-wcpdf-settings.php:429
262
  msgid "Extra field 2"
263
  msgstr "Campo extra 2"
264
 
265
- #: includes/class-wcpdf-settings.php:438
266
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
267
  msgstr ""
268
  "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
269
  "i>."
270
 
271
- #: includes/class-wcpdf-settings.php:444
272
  msgid "Extra field 3"
273
  msgstr "Campo extra 3"
274
 
275
- #: includes/class-wcpdf-settings.php:453
276
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
277
  msgstr ""
278
  "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
279
  "i>."
280
 
281
- #: includes/class-wcpdf-settings.php:710
282
  msgid "Image resolution"
283
  msgstr "Resolución de la imagen"
284
 
285
- #: includes/class-wcpdf-settings.php:740
286
  msgid ""
287
  "These are used for the (optional) footer columns in the <em>Modern "
288
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -300,24 +328,24 @@ msgstr "Nº de la factura"
300
  msgid "Create PDF"
301
  msgstr "Crear PDF"
302
 
303
- #: includes/class-wcpdf-writepanels.php:142
304
  msgid "Download invoice (PDF)"
305
  msgstr "Descargar factura (PDF)"
306
 
307
- #: includes/class-wcpdf-writepanels.php:156
308
  msgid "PDF invoice"
309
  msgstr "Factura PDF "
310
 
311
- #: includes/class-wcpdf-writepanels.php:157
312
  msgid "PDF Packing Slip"
313
  msgstr "Albarán de entrega PDF"
314
 
315
- #: includes/class-wcpdf-writepanels.php:174
316
  #: includes/class-wcpdf-writepanels.php:175
 
317
  msgid "PDF Packing Slips"
318
  msgstr "Albaranes de entrega PDF"
319
 
320
- #: includes/class-wcpdf-writepanels.php:186
321
  msgid "PDF Invoice Number (unformatted!)"
322
  msgstr "Nº de la factura PDF (¡sin formato!)"
323
 
@@ -368,12 +396,16 @@ msgstr "Cantidad"
368
  msgid "Price"
369
  msgstr "Precio"
370
 
371
- #: templates/pdf/Simple/invoice.php:79
 
 
 
 
372
  #: templates/pdf/Simple/packing-slip.php:54
373
  msgid "SKU:"
374
  msgstr "Nº Referencia:"
375
 
376
- #: templates/pdf/Simple/invoice.php:80
377
  #: templates/pdf/Simple/packing-slip.php:55
378
  msgid "Weight:"
379
  msgstr "Peso:"
@@ -397,26 +429,47 @@ msgstr ""
397
  msgid "N/A"
398
  msgstr "No disponible"
399
 
400
- #: woocommerce-pdf-invoices-packingslips.php:359
 
 
 
 
 
 
 
 
401
  msgid "Subtotal"
402
  msgstr "Subtotal"
403
 
404
- #: woocommerce-pdf-invoices-packingslips.php:381
405
  msgid "Shipping"
406
  msgstr "Envío"
407
 
408
- #: woocommerce-pdf-invoices-packingslips.php:400
409
  msgid "Discount"
410
  msgstr "Descuento"
411
 
412
- #: woocommerce-pdf-invoices-packingslips.php:469
 
 
 
 
413
  msgid "Total ex. VAT"
414
  msgstr "Total (Sin IVA)"
415
 
416
- #: woocommerce-pdf-invoices-packingslips.php:472
417
  msgid "Total"
418
  msgstr "Total"
419
 
 
 
 
 
 
 
 
 
 
420
  #~ msgid "..."
421
  #~ msgstr "..."
422
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-05-12 22:17+0100\n"
5
+ "PO-Revision-Date: 2014-05-12 22:18+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: es_ES\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
20
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
21
+ #: includes/class-wcpdf-export.php:185
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "No tiene suficientes permitos para acceder a esta página."
24
 
25
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
26
  msgid "invoice"
27
  msgid_plural "invoices"
28
  msgstr[0] "factura"
29
  msgstr[1] "facturas"
30
 
31
+ #: includes/class-wcpdf-export.php:208
32
  msgid "packing-slip"
33
  msgid_plural "packing-slips"
34
  msgstr[0] "albarán de entrega"
35
  msgstr[1] "albaranes de entrega"
36
 
37
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
 
38
  #: includes/class-wcpdf-writepanels.php:173
39
+ #: includes/class-wcpdf-writepanels.php:174
40
  msgid "PDF Invoices"
41
  msgstr "Facturas PDF"
42
 
44
  msgid "Settings"
45
  msgstr "Ajustes"
46
 
47
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
48
  msgid "General"
49
  msgstr "General"
50
 
51
+ #: includes/class-wcpdf-settings.php:83
52
  msgid "Template"
53
  msgstr "Plantilla"
54
 
55
+ #: includes/class-wcpdf-settings.php:92
56
+ msgid "WooCommerce PDF Invoices"
57
+ msgstr "WooCommerce Facturas PDF"
58
+
59
+ #: includes/class-wcpdf-settings.php:98
60
+ msgid "Status"
61
+ msgstr ""
62
+
63
+ #: includes/class-wcpdf-settings.php:109
64
  #, php-format
65
  msgid ""
66
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
67
+ "extension."
 
68
  msgstr ""
 
 
 
69
 
70
+ #: includes/class-wcpdf-settings.php:119
71
  #, php-format
72
  msgid ""
73
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
76
  "¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas premium "
77
  "de PDF Invoice & Packing Slips en %s."
78
 
79
+ #: includes/class-wcpdf-settings.php:120
80
  #, php-format
81
  msgid "For custom templates, contact us at %s."
82
  msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
83
 
84
+ #: includes/class-wcpdf-settings.php:175
85
  msgid "General settings"
86
  msgstr "Ajustes generales"
87
 
88
+ #: includes/class-wcpdf-settings.php:182
89
  msgid "How do you want to view the PDF?"
90
  msgstr "¿Cómo desea visualizar el PDF?"
91
 
92
+ #: includes/class-wcpdf-settings.php:190
93
  msgid "Download the PDF"
94
  msgstr "Descargándolo."
95
 
96
+ #: includes/class-wcpdf-settings.php:191
97
  msgid "Open the PDF in a new browser tab/window"
98
  msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
99
 
100
+ #: includes/class-wcpdf-settings.php:201
101
  msgid "Attach invoice to:"
102
  msgstr "Adjuntar factura a:"
103
 
104
+ #: includes/class-wcpdf-settings.php:209
105
  msgid "Admin New Order email"
106
  msgstr "Correo electrónico del administrador al crear un nuevo pedido."
107
 
108
+ #: includes/class-wcpdf-settings.php:210
109
  msgid "Customer Processing Order email"
110
  msgstr "Correo electrónico del cliente al procesar el pedido."
111
 
112
+ #: includes/class-wcpdf-settings.php:211
113
  msgid "Customer Completed Order email"
114
  msgstr "Correo electrónico del cliente al completar el pedido."
115
 
116
+ #: includes/class-wcpdf-settings.php:212
117
  msgid "Customer Invoice email"
118
  msgstr "Correo electrónico de la factura del cliente."
119
 
120
+ #: includes/class-wcpdf-settings.php:214
121
  #, php-format
122
  msgid ""
123
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
128
  "¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
129
  "carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
130
 
131
+ #: includes/class-wcpdf-settings.php:220
132
  msgid "Enable invoice number column in the orders list"
133
  msgstr "Activar la columna de número de factura en pedidos"
134
 
135
+ #: includes/class-wcpdf-settings.php:259
136
  msgid "PDF Template settings"
137
  msgstr "Ajustes de la plantilla PDF"
138
 
139
+ #: includes/class-wcpdf-settings.php:266
140
  msgid "Choose a template"
141
  msgstr "Elige una plantilla"
142
 
143
+ #: includes/class-wcpdf-settings.php:274
144
  msgid ""
145
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
146
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
150
  "<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> a "
151
  "<code>yourtheme/woocommerce/pdf/yourtemplate/</code> y personalícela."
152
 
153
+ #: includes/class-wcpdf-settings.php:280
154
  msgid "Paper size"
155
  msgstr "Tamaño del papel"
156
 
157
+ #: includes/class-wcpdf-settings.php:288
158
  msgid "A4"
159
  msgstr "A4"
160
 
161
+ #: includes/class-wcpdf-settings.php:289
162
  msgid "Letter"
163
  msgstr "Carta"
164
 
165
+ #: includes/class-wcpdf-settings.php:296
166
  msgid "Shop header/logo"
167
  msgstr "Logotipo de la tienda"
168
 
169
+ #: includes/class-wcpdf-settings.php:303
170
  msgid "Select or upload your invoice header/logo"
171
  msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
172
 
173
+ #: includes/class-wcpdf-settings.php:304
174
  msgid "Set image"
175
  msgstr "Añadir imagen"
176
 
177
+ #: includes/class-wcpdf-settings.php:305
178
  msgid "Remove image"
179
  msgstr "Eliminar la imagen"
180
 
181
+ #: includes/class-wcpdf-settings.php:312
182
  msgid "Shop Name"
183
  msgstr "Nombre de la tienda"
184
 
185
+ #: includes/class-wcpdf-settings.php:325
186
  msgid "Shop Address"
187
  msgstr "Dirección de la tienda"
188
 
189
+ #: includes/class-wcpdf-settings.php:357
190
  msgid "Footer: terms & conditions, policies, etc."
191
  msgstr "Pie de página: Términos y condiciones, políticas, etc."
192
 
193
+ #: includes/class-wcpdf-settings.php:372
194
  msgid "Number to display on invoice"
195
  msgstr "Número a mostrar en la factura"
196
 
197
+ #: includes/class-wcpdf-settings.php:380
198
  msgid "WooCommerce order number"
199
  msgstr "Número de pedido de WooCommerce "
200
 
201
+ #: includes/class-wcpdf-settings.php:381
202
  msgid "Built-in sequential invoice number"
203
  msgstr "Crear numeración secuencial de factura"
204
 
205
+ #: includes/class-wcpdf-settings.php:383
206
  msgid ""
207
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
208
  "WooCommerce order number"
210
  "Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
211
  "seleccione el número de pedido de WooCommerce."
212
 
213
+ #: includes/class-wcpdf-settings.php:389
214
  msgid "Next invoice number (without prefix/suffix etc.)"
215
  msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
216
 
217
+ #: includes/class-wcpdf-settings.php:397
218
  msgid ""
219
  "This is the number that will be used on the next invoice that is created. By "
220
  "default, numbering starts from the WooCommerce Order Number of the first "
221
  "invoice that is created and increases for every new invoice. Note that if "
222
  "you override this and set it lower than the highest (PDF) invoice number, "
223
+ "this could create double invoice numbers!"
 
 
224
  msgstr ""
225
  "Este número se utilizará al crear la siguiente factura. Por defecto, la "
226
  "numeración comienza desde la WooCommerce Order Number de la primera factura "
227
  "y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
228
+ "ajusta a uno inferior podría crear facturas con números duplicados."
229
+
230
+ #: includes/class-wcpdf-settings.php:403
231
+ #, fuzzy
232
+ msgid "Invoice number format"
233
+ msgstr "Nº de la factura"
234
+
235
+ #: includes/class-wcpdf-settings.php:412
236
+ msgid "Prefix"
237
+ msgstr ""
238
+
239
+ #: includes/class-wcpdf-settings.php:414
240
+ msgid ""
241
+ "to use the order year and/or month, use [order_year] or [order_month] "
242
+ "respectively"
243
+ msgstr ""
244
 
245
+ #: includes/class-wcpdf-settings.php:417
246
+ msgid "Suffix"
247
+ msgstr ""
248
+
249
+ #: includes/class-wcpdf-settings.php:422
250
+ msgid "Padding"
251
+ msgstr ""
252
+
253
+ #: includes/class-wcpdf-settings.php:424
254
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
255
+ msgstr ""
256
+
257
+ #: includes/class-wcpdf-settings.php:427
258
+ msgid ""
259
+ "note: if you have already created a custom invoice number format with a "
260
+ "filter, the above settings will be ignored"
261
+ msgstr ""
262
+
263
+ #: includes/class-wcpdf-settings.php:435
264
  msgid "Date to display on invoice"
265
  msgstr "Fecha a mostrar en la factura"
266
 
267
+ #: includes/class-wcpdf-settings.php:443
268
  msgid "Order date"
269
  msgstr "Fecha del pedido"
270
 
271
+ #: includes/class-wcpdf-settings.php:444
272
  msgid "Invoice date"
273
  msgstr "Fecha de la factura"
274
 
275
+ #: includes/class-wcpdf-settings.php:452
276
  msgid "Extra template fields"
277
  msgstr "Campos extra de la plantilla"
278
 
279
+ #: includes/class-wcpdf-settings.php:459
280
  msgid "Extra field 1"
281
  msgstr "Campo extra 1"
282
 
283
+ #: includes/class-wcpdf-settings.php:468
284
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
285
  msgstr ""
286
  "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
287
  "i>."
288
 
289
+ #: includes/class-wcpdf-settings.php:474
290
  msgid "Extra field 2"
291
  msgstr "Campo extra 2"
292
 
293
+ #: includes/class-wcpdf-settings.php:483
294
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
295
  msgstr ""
296
  "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
297
  "i>."
298
 
299
+ #: includes/class-wcpdf-settings.php:489
300
  msgid "Extra field 3"
301
  msgstr "Campo extra 3"
302
 
303
+ #: includes/class-wcpdf-settings.php:498
304
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
305
  msgstr ""
306
  "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
307
  "i>."
308
 
309
+ #: includes/class-wcpdf-settings.php:755
310
  msgid "Image resolution"
311
  msgstr "Resolución de la imagen"
312
 
313
+ #: includes/class-wcpdf-settings.php:822
314
  msgid ""
315
  "These are used for the (optional) footer columns in the <em>Modern "
316
  "(Premium)</em> template, but can also be used for other elements in your "
328
  msgid "Create PDF"
329
  msgstr "Crear PDF"
330
 
331
+ #: includes/class-wcpdf-writepanels.php:143
332
  msgid "Download invoice (PDF)"
333
  msgstr "Descargar factura (PDF)"
334
 
335
+ #: includes/class-wcpdf-writepanels.php:157
336
  msgid "PDF invoice"
337
  msgstr "Factura PDF "
338
 
339
+ #: includes/class-wcpdf-writepanels.php:158
340
  msgid "PDF Packing Slip"
341
  msgstr "Albarán de entrega PDF"
342
 
 
343
  #: includes/class-wcpdf-writepanels.php:175
344
+ #: includes/class-wcpdf-writepanels.php:176
345
  msgid "PDF Packing Slips"
346
  msgstr "Albaranes de entrega PDF"
347
 
348
+ #: includes/class-wcpdf-writepanels.php:189
349
  msgid "PDF Invoice Number (unformatted!)"
350
  msgstr "Nº de la factura PDF (¡sin formato!)"
351
 
396
  msgid "Price"
397
  msgstr "Precio"
398
 
399
+ #: templates/pdf/Simple/invoice.php:77
400
+ msgid "Description"
401
+ msgstr "Descripción"
402
+
403
+ #: templates/pdf/Simple/invoice.php:80
404
  #: templates/pdf/Simple/packing-slip.php:54
405
  msgid "SKU:"
406
  msgstr "Nº Referencia:"
407
 
408
+ #: templates/pdf/Simple/invoice.php:81
409
  #: templates/pdf/Simple/packing-slip.php:55
410
  msgid "Weight:"
411
  msgstr "Peso:"
429
  msgid "N/A"
430
  msgstr "No disponible"
431
 
432
+ #: woocommerce-pdf-invoices-packingslips.php:249
433
+ msgid "Payment method"
434
+ msgstr "Forma de pago"
435
+
436
+ #: woocommerce-pdf-invoices-packingslips.php:260
437
+ msgid "Shipping method"
438
+ msgstr "Envío"
439
+
440
+ #: woocommerce-pdf-invoices-packingslips.php:360
441
  msgid "Subtotal"
442
  msgstr "Subtotal"
443
 
444
+ #: woocommerce-pdf-invoices-packingslips.php:382
445
  msgid "Shipping"
446
  msgstr "Envío"
447
 
448
+ #: woocommerce-pdf-invoices-packingslips.php:416
449
  msgid "Discount"
450
  msgstr "Descuento"
451
 
452
+ #: woocommerce-pdf-invoices-packingslips.php:455
453
+ msgid "VAT"
454
+ msgstr "IVA"
455
+
456
+ #: woocommerce-pdf-invoices-packingslips.php:487
457
  msgid "Total ex. VAT"
458
  msgstr "Total (Sin IVA)"
459
 
460
+ #: woocommerce-pdf-invoices-packingslips.php:490
461
  msgid "Total"
462
  msgstr "Total"
463
 
464
+ #~ msgid ""
465
+ #~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
466
+ #~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
467
+ #~ "\">Increasing memory allocated to PHP</a>"
468
+ #~ msgstr ""
469
+ #~ "Actualmente el límite de memoria de WP está fijado en %s - Se recomienda "
470
+ #~ "aumentarlo al menos a 64MB (128 MB para un uso óptimo). Ver: <a href=\"%s"
471
+ #~ "\">Ampliar memoria dedicada a PHP</a>"
472
+
473
  #~ msgid "..."
474
  #~ msgstr "..."
475
 
languages/wpo_wcpdf-fr_FR.mo CHANGED
Binary file
languages/wpo_wcpdf-fr_FR.po CHANGED
@@ -1,99 +1,86 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-01-23 12:32+0100\n"
5
- "PO-Revision-Date: 2014-01-23 16:31+0100\n"
6
- "Last-Translator: \n"
 
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.3\n"
12
- "X-Poedit-Basepath: ../\n"
13
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
16
- "Language: fr\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: woocommerce-pdf-invoices-packingslips.php:96
20
- #, php-format
21
- msgid ""
22
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
23
- "installed & activated!"
24
- msgstr ""
25
- "WooCommerce PDF Invoices & Packing Slips requiert %sWooCommerce%s pour être "
26
- "installé et activé!"
27
-
28
- #: woocommerce-pdf-invoices-packingslips.php:183
29
- #: woocommerce-pdf-invoices-packingslips.php:219
30
- msgid "N/A"
31
- msgstr "N/A"
32
-
33
- #: woocommerce-pdf-invoices-packingslips.php:320
34
- msgid "Subtotal"
35
- msgstr "Sous-total"
36
-
37
- #: woocommerce-pdf-invoices-packingslips.php:338
38
- msgid "Shipping"
39
- msgstr "Livraison"
40
-
41
- #: woocommerce-pdf-invoices-packingslips.php:353
42
- msgid "Discount"
43
- msgstr "Remise"
44
-
45
- #: woocommerce-pdf-invoices-packingslips.php:418
46
- msgid "Total ex. VAT"
47
- msgstr "Total H.T."
48
-
49
- #: woocommerce-pdf-invoices-packingslips.php:421
50
- msgid "Total"
51
- msgstr "Total TTC"
52
-
53
- #: includes/class-wcpdf-export.php:98 includes/class-wcpdf-export.php:103
54
- #: includes/class-wcpdf-export.php:108
55
  msgid "You do not have sufficient permissions to access this page."
56
  msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
57
 
58
- #: includes/class-wcpdf-export.php:115 includes/class-wcpdf-export.php:175
 
59
  msgid "invoice"
60
  msgid_plural "invoices"
61
  msgstr[0] "facture"
62
  msgstr[1] "factures"
63
 
64
- #: includes/class-wcpdf-export.php:117
 
65
  msgid "packing-slip"
66
  msgid_plural "packing-slips"
67
  msgstr[0] "bon-de-livraison"
68
  msgstr[1] "bons-de-livraison"
69
 
 
70
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
71
- #: includes/class-wcpdf-writepanels.php:115
72
- #: includes/class-wcpdf-writepanels.php:116
73
  msgid "PDF Invoices"
74
  msgstr "Générer les factures au format PDF"
75
 
 
76
  #: includes/class-wcpdf-settings.php:60
77
  msgid "Settings"
78
  msgstr "Paramètres"
79
 
80
- #: includes/class-wcpdf-settings.php:75
81
- msgid "..."
82
- msgstr "..."
83
-
84
- #: includes/class-wcpdf-settings.php:86
85
- msgid "WooCommerce PDF Invoices"
86
- msgstr "Factures PDF WooCommerce"
87
-
88
- #: includes/class-wcpdf-settings.php:88
89
  msgid "General"
90
  msgstr "Général"
91
 
92
- #: includes/class-wcpdf-settings.php:89
 
93
  msgid "Template"
94
  msgstr "Modèle"
95
 
96
- #: includes/class-wcpdf-settings.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  #, php-format
98
  msgid ""
99
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -102,30 +89,60 @@ msgstr ""
102
  "Vous cherchez des modèles plus avancés ? Jetez un oeil aux modèles Premium "
103
  "PDF Invoice & Packing Slips sur %s."
104
 
105
- #: includes/class-wcpdf-settings.php:151
 
 
 
 
 
 
 
106
  msgid "General settings"
107
  msgstr "Paramètres généraux"
108
 
109
- #: includes/class-wcpdf-settings.php:158
 
110
  msgid "How do you want to view the PDF?"
111
  msgstr "Comment voulez-vous voir le PDF?"
112
 
113
- #: includes/class-wcpdf-settings.php:166
 
114
  msgid "Download the PDF"
115
  msgstr "Télécharger le PDF"
116
 
117
- #: includes/class-wcpdf-settings.php:167
 
118
  msgid "Open the PDF in a new browser tab/window"
119
  msgstr ""
120
  "Ouvrir le PDF dans un nouvel onglet/une nouvelle fenêtre du navigateur."
121
 
122
- #: includes/class-wcpdf-settings.php:177
123
- msgid "Email invoice (attach to order confirmation or invoice email)"
124
- msgstr ""
125
- "Envoyer les factures par e-mail (jointes aux e-mails de confirmation ou de "
126
- "facturation)"
127
-
128
- #: includes/class-wcpdf-settings.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  #, php-format
130
  msgid ""
131
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -136,15 +153,23 @@ msgstr ""
136
  "vos permissions pour ce dossier! Sans l'autorisation d'écriture dans ce "
137
  "dossier, le plugin ne pourra pas envoyer les factures par e-mail."
138
 
139
- #: includes/class-wcpdf-settings.php:206
 
 
 
 
 
 
140
  msgid "PDF Template settings"
141
  msgstr "Paramètres des modèles PDF"
142
 
143
- #: includes/class-wcpdf-settings.php:213
 
144
  msgid "Choose a template"
145
  msgstr "Sélectionnez un modèle"
146
 
147
- #: includes/class-wcpdf-settings.php:221
 
148
  msgid ""
149
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
150
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -155,79 +180,191 @@ msgstr ""
155
  "dans <code>yourtheme/woocommerce/pdf/votremodele/</code> pour le "
156
  "personnaliser"
157
 
158
- #: includes/class-wcpdf-settings.php:227
 
159
  msgid "Paper size"
160
  msgstr "Taille du papier"
161
 
162
- #: includes/class-wcpdf-settings.php:235
 
163
  msgid "A4"
164
  msgstr "A4"
165
 
166
- #: includes/class-wcpdf-settings.php:236
 
167
  msgid "Letter"
168
  msgstr "Lettre"
169
 
170
- #: includes/class-wcpdf-settings.php:243
 
171
  msgid "Shop header/logo"
172
  msgstr "En-tête de la boutique/logo"
173
 
174
- #: includes/class-wcpdf-settings.php:250
 
175
  msgid "Select or upload your invoice header/logo"
176
  msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
177
 
178
- #: includes/class-wcpdf-settings.php:251
 
179
  msgid "Set image"
180
  msgstr "Choisir une autre image"
181
 
182
- #: includes/class-wcpdf-settings.php:252
 
183
  msgid "Remove image"
184
  msgstr "Supprimer l'image"
185
 
186
- #: includes/class-wcpdf-settings.php:259
 
187
  msgid "Shop Name"
188
  msgstr "Nom de la boutique"
189
 
190
- #: includes/class-wcpdf-settings.php:272
 
191
  msgid "Shop Address"
192
  msgstr "Adresse de la boutique"
193
 
194
- #: includes/class-wcpdf-settings.php:304
 
195
  msgid "Footer: terms & conditions, policies, etc."
196
  msgstr "Pied de page : conditions générales de ventes, etc."
197
 
198
- #: includes/class-wcpdf-settings.php:320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  msgid "Extra template fields"
200
  msgstr "Champs supplémentaires du modèle"
201
 
202
- #: includes/class-wcpdf-settings.php:327
 
203
  msgid "Extra field 1"
204
  msgstr "Champ supplémentaire 1"
205
 
206
- #: includes/class-wcpdf-settings.php:336
 
207
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
208
  msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
209
 
210
- #: includes/class-wcpdf-settings.php:342
 
211
  msgid "Extra field 2"
212
  msgstr "Champ supplémentaire 2"
213
 
214
- #: includes/class-wcpdf-settings.php:351
 
215
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
216
  msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
217
 
218
- #: includes/class-wcpdf-settings.php:357
 
219
  msgid "Extra field 3"
220
  msgstr "Champ supplémentaire 3"
221
 
222
- #: includes/class-wcpdf-settings.php:366
 
223
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
224
  msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
225
 
226
- #: includes/class-wcpdf-settings.php:579
 
227
  msgid "Image resolution"
228
  msgstr "Résolution de l'image"
229
 
230
- #: includes/class-wcpdf-settings.php:609
 
231
  msgid ""
232
  "These are used for the (optional) footer columns in the <em>Modern "
233
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -237,75 +374,174 @@ msgstr ""
237
  "le modèle <em>Modern (Premium)</em>, mais ils peuvent aussi être utilisés "
238
  "pour d'autres éléments dans votre modèle personnalisé."
239
 
240
- #: includes/class-wcpdf-writepanels.php:81
 
 
 
 
 
 
241
  msgid "Create PDF"
242
  msgstr "Créer un PDF"
243
 
244
- #: includes/class-wcpdf-writepanels.php:87
 
245
  msgid "Download invoice (PDF)"
246
  msgstr "Télécharger la facture (PDF)"
247
 
248
- #: includes/class-wcpdf-writepanels.php:100
 
249
  msgid "PDF invoice"
250
  msgstr "Générer la facture au format PDF"
251
 
252
- #: includes/class-wcpdf-writepanels.php:101
 
253
  msgid "PDF Packing Slip"
254
  msgstr "Générer le bon de livraison au format PDF"
255
 
256
- #: includes/class-wcpdf-writepanels.php:117
257
- #: includes/class-wcpdf-writepanels.php:118
 
258
  msgid "PDF Packing Slips"
259
  msgstr "Générer les bons de livraison au format PDF"
260
 
 
 
 
 
 
 
 
261
  #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
262
  msgid "Invoice"
263
  msgstr "Facture"
264
 
265
- #: templates/pdf/Simple/invoice.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  #: templates/pdf/Simple/packing-slip.php:30
267
  msgid "Order Date:"
268
  msgstr "Date de commande:"
269
 
270
- #: templates/pdf/Simple/invoice.php:32
 
 
 
 
 
 
271
  #: templates/pdf/Simple/packing-slip.php:32
272
  msgid "Order Number:"
273
  msgstr "Numéro de commande:"
274
 
275
- #: templates/pdf/Simple/invoice.php:34
 
276
  msgid "Payment Method:"
277
  msgstr "Méthode de paiement"
278
 
279
- #: templates/pdf/Simple/invoice.php:47
 
280
  #: templates/pdf/Simple/packing-slip.php:45
281
  msgid "Product"
282
  msgstr "Produits"
283
 
284
- #: templates/pdf/Simple/invoice.php:48
 
285
  #: templates/pdf/Simple/packing-slip.php:46
286
  msgid "Quantity"
287
  msgstr "Quantité"
288
 
289
- #: templates/pdf/Simple/invoice.php:49
 
290
  msgid "Price"
291
  msgstr "Prix"
292
 
293
- #: templates/pdf/Simple/invoice.php:57
 
 
 
 
 
 
294
  #: templates/pdf/Simple/packing-slip.php:54
295
  msgid "SKU:"
296
- msgstr "SKU:"
297
 
298
- #: templates/pdf/Simple/invoice.php:58
 
299
  #: templates/pdf/Simple/packing-slip.php:55
300
  msgid "Weight:"
301
  msgstr "Poids:"
302
 
303
- #: templates/pdf/Simple/invoice.php:91
 
304
  #: templates/pdf/Simple/packing-slip.php:69
305
  msgid "Customer Notes"
306
  msgstr "Notes du Client"
307
 
308
- #: templates/pdf/Simple/packing-slip.php:9
309
- #: templates/pdf/Simple/packing-slip.php:21
310
- msgid "Packing Slip"
311
- msgstr "Bon de livraison"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-12 22:18+0100\n"
6
+ "PO-Revision-Date: 2014-05-12 22:18+0100\n"
7
+ "Last-Translator: Serge Labrosse <serge.labrosse@gmail.com>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
+ "Language: fr_FR\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=2; plural=n>1;\n"
14
+ "X-Generator: Poedit 1.6.5\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:151 includes/class-wcpdf-export.php:156
24
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
25
+ #: includes/class-wcpdf-export.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "You do not have sufficient permissions to access this page."
27
  msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
28
 
29
+ # @ wpo_wcpdf
30
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
31
  msgid "invoice"
32
  msgid_plural "invoices"
33
  msgstr[0] "facture"
34
  msgstr[1] "factures"
35
 
36
+ # @ wpo_wcpdf
37
+ #: includes/class-wcpdf-export.php:208
38
  msgid "packing-slip"
39
  msgid_plural "packing-slips"
40
  msgstr[0] "bon-de-livraison"
41
  msgstr[1] "bons-de-livraison"
42
 
43
+ # @ wpo_wcpdf
44
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
45
+ #: includes/class-wcpdf-writepanels.php:173
46
+ #: includes/class-wcpdf-writepanels.php:174
47
  msgid "PDF Invoices"
48
  msgstr "Générer les factures au format PDF"
49
 
50
+ # @ woocommerce
51
  #: includes/class-wcpdf-settings.php:60
52
  msgid "Settings"
53
  msgstr "Paramètres"
54
 
55
+ # @ wpo_wcpdf
56
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
 
 
 
57
  msgid "General"
58
  msgstr "Général"
59
 
60
+ # @ wpo_wcpdf
61
+ #: includes/class-wcpdf-settings.php:83
62
  msgid "Template"
63
  msgstr "Modèle"
64
 
65
+ # @ wpo_wcpdf
66
+ #: includes/class-wcpdf-settings.php:92
67
+ msgid "WooCommerce PDF Invoices"
68
+ msgstr "Factures PDF WooCommerce"
69
+
70
+ # @ wpo_wcpdf
71
+ #: includes/class-wcpdf-settings.php:98
72
+ msgid "Status"
73
+ msgstr "État"
74
+
75
+ #: includes/class-wcpdf-settings.php:109
76
+ #, php-format
77
+ msgid ""
78
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
79
+ "extension."
80
+ msgstr ""
81
+
82
+ # @ wpo_wcpdf
83
+ #: includes/class-wcpdf-settings.php:119
84
  #, php-format
85
  msgid ""
86
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
89
  "Vous cherchez des modèles plus avancés ? Jetez un oeil aux modèles Premium "
90
  "PDF Invoice & Packing Slips sur %s."
91
 
92
+ # @ wpo_wcpdf
93
+ #: includes/class-wcpdf-settings.php:120
94
+ #, php-format
95
+ msgid "For custom templates, contact us at %s."
96
+ msgstr "Pour des modèles sur mesure, nous contacter au %s."
97
+
98
+ # @ wpo_wcpdf
99
+ #: includes/class-wcpdf-settings.php:175
100
  msgid "General settings"
101
  msgstr "Paramètres généraux"
102
 
103
+ # @ wpo_wcpdf
104
+ #: includes/class-wcpdf-settings.php:182
105
  msgid "How do you want to view the PDF?"
106
  msgstr "Comment voulez-vous voir le PDF?"
107
 
108
+ # @ wpo_wcpdf
109
+ #: includes/class-wcpdf-settings.php:190
110
  msgid "Download the PDF"
111
  msgstr "Télécharger le PDF"
112
 
113
+ # @ wpo_wcpdf
114
+ #: includes/class-wcpdf-settings.php:191
115
  msgid "Open the PDF in a new browser tab/window"
116
  msgstr ""
117
  "Ouvrir le PDF dans un nouvel onglet/une nouvelle fenêtre du navigateur."
118
 
119
+ # @ wpo_wcpdf
120
+ #: includes/class-wcpdf-settings.php:201
121
+ msgid "Attach invoice to:"
122
+ msgstr "joindre la facture à :"
123
+
124
+ # @ wpo_wcpdf
125
+ #: includes/class-wcpdf-settings.php:209
126
+ msgid "Admin New Order email"
127
+ msgstr "Courrier El Admin pour nouvelle commande"
128
+
129
+ # @ wpo_wcpdf
130
+ #: includes/class-wcpdf-settings.php:210
131
+ msgid "Customer Processing Order email"
132
+ msgstr "Courrier El Client pour commande en cours"
133
+
134
+ # @ wpo_wcpdf
135
+ #: includes/class-wcpdf-settings.php:211
136
+ msgid "Customer Completed Order email"
137
+ msgstr "Courrier El client pour commande terminée"
138
+
139
+ # @ wpo_wcpdf
140
+ #: includes/class-wcpdf-settings.php:212
141
+ msgid "Customer Invoice email"
142
+ msgstr "Clourrier El pour Facture client"
143
+
144
+ # @ wpo_wcpdf
145
+ #: includes/class-wcpdf-settings.php:214
146
  #, php-format
147
  msgid ""
148
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
153
  "vos permissions pour ce dossier! Sans l'autorisation d'écriture dans ce "
154
  "dossier, le plugin ne pourra pas envoyer les factures par e-mail."
155
 
156
+ # @ wpo_wcpdf
157
+ #: includes/class-wcpdf-settings.php:220
158
+ msgid "Enable invoice number column in the orders list"
159
+ msgstr "Activer la colonne du numéro de facture dans la liste de commande"
160
+
161
+ # @ wpo_wcpdf
162
+ #: includes/class-wcpdf-settings.php:259
163
  msgid "PDF Template settings"
164
  msgstr "Paramètres des modèles PDF"
165
 
166
+ # @ wpo_wcpdf
167
+ #: includes/class-wcpdf-settings.php:266
168
  msgid "Choose a template"
169
  msgstr "Sélectionnez un modèle"
170
 
171
+ # @ wpo_wcpdf
172
+ #: includes/class-wcpdf-settings.php:274
173
  msgid ""
174
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
175
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
180
  "dans <code>yourtheme/woocommerce/pdf/votremodele/</code> pour le "
181
  "personnaliser"
182
 
183
+ # @ wpo_wcpdf
184
+ #: includes/class-wcpdf-settings.php:280
185
  msgid "Paper size"
186
  msgstr "Taille du papier"
187
 
188
+ # @ wpo_wcpdf
189
+ #: includes/class-wcpdf-settings.php:288
190
  msgid "A4"
191
  msgstr "A4"
192
 
193
+ # @ wpo_wcpdf
194
+ #: includes/class-wcpdf-settings.php:289
195
  msgid "Letter"
196
  msgstr "Lettre"
197
 
198
+ # @ wpo_wcpdf
199
+ #: includes/class-wcpdf-settings.php:296
200
  msgid "Shop header/logo"
201
  msgstr "En-tête de la boutique/logo"
202
 
203
+ # @ wpo_wcpdf
204
+ #: includes/class-wcpdf-settings.php:303
205
  msgid "Select or upload your invoice header/logo"
206
  msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
207
 
208
+ # @ wpo_wcpdf
209
+ #: includes/class-wcpdf-settings.php:304
210
  msgid "Set image"
211
  msgstr "Choisir une autre image"
212
 
213
+ # @ wpo_wcpdf
214
+ #: includes/class-wcpdf-settings.php:305
215
  msgid "Remove image"
216
  msgstr "Supprimer l'image"
217
 
218
+ # @ wpo_wcpdf
219
+ #: includes/class-wcpdf-settings.php:312
220
  msgid "Shop Name"
221
  msgstr "Nom de la boutique"
222
 
223
+ # @ wpo_wcpdf
224
+ #: includes/class-wcpdf-settings.php:325
225
  msgid "Shop Address"
226
  msgstr "Adresse de la boutique"
227
 
228
+ # @ wpo_wcpdf
229
+ #: includes/class-wcpdf-settings.php:357
230
  msgid "Footer: terms & conditions, policies, etc."
231
  msgstr "Pied de page : conditions générales de ventes, etc."
232
 
233
+ # @ wpo_wcpdf
234
+ #: includes/class-wcpdf-settings.php:372
235
+ msgid "Number to display on invoice"
236
+ msgstr "Numéro à afficher sur la facture"
237
+
238
+ # @ wpo_wcpdf
239
+ #: includes/class-wcpdf-settings.php:380
240
+ msgid "WooCommerce order number"
241
+ msgstr "Numéro de Commande WooCommerce"
242
+
243
+ # @ wpo_wcpdf
244
+ #: includes/class-wcpdf-settings.php:381
245
+ msgid "Built-in sequential invoice number"
246
+ msgstr "Numéro de facture séquentiel imbriqué"
247
+
248
+ # @ wpo_wcpdf
249
+ #: includes/class-wcpdf-settings.php:383
250
+ msgid ""
251
+ "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
252
+ "WooCommerce order number"
253
+ msgstr ""
254
+ "Si vous utilisez l'extension WooCommerce pour la numérotation, choisir le "
255
+ "numéro de commande WooCommerce"
256
+
257
+ # @ wpo_wcpdf
258
+ #: includes/class-wcpdf-settings.php:389
259
+ msgid "Next invoice number (without prefix/suffix etc.)"
260
+ msgstr "Prochain numéro de facture (sans préfixe/suffixe,etc.)"
261
+
262
+ # @ wpo_wcpdf
263
+ #: includes/class-wcpdf-settings.php:397
264
+ msgid ""
265
+ "This is the number that will be used on the next invoice that is created. By "
266
+ "default, numbering starts from the WooCommerce Order Number of the first "
267
+ "invoice that is created and increases for every new invoice. Note that if "
268
+ "you override this and set it lower than the highest (PDF) invoice number, "
269
+ "this could create double invoice numbers!"
270
+ msgstr ""
271
+ "Ceci est le numéro qui sera utilisé pour la prochaine facture. Par défaut, "
272
+ "la numérotation débute avec le numéro de commande de WooCommerce sur la "
273
+ "première facture créée et s'incrémente à chaque nouvelle facture. À noter "
274
+ "que si vous changer le numéro et qu'il est plus petit que celui de la "
275
+ "facture PDF, vous pourriez créer des numéros de facture en double!"
276
+
277
+ # @ wpo_wcpdf
278
+ #: includes/class-wcpdf-settings.php:403
279
+ #, fuzzy
280
+ msgid "Invoice number format"
281
+ msgstr "Numéro de Facture"
282
+
283
+ #: includes/class-wcpdf-settings.php:412
284
+ msgid "Prefix"
285
+ msgstr ""
286
+
287
+ #: includes/class-wcpdf-settings.php:414
288
+ msgid ""
289
+ "to use the order year and/or month, use [order_year] or [order_month] "
290
+ "respectively"
291
+ msgstr ""
292
+
293
+ #: includes/class-wcpdf-settings.php:417
294
+ msgid "Suffix"
295
+ msgstr ""
296
+
297
+ #: includes/class-wcpdf-settings.php:422
298
+ msgid "Padding"
299
+ msgstr ""
300
+
301
+ #: includes/class-wcpdf-settings.php:424
302
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
303
+ msgstr ""
304
+
305
+ #: includes/class-wcpdf-settings.php:427
306
+ msgid ""
307
+ "note: if you have already created a custom invoice number format with a "
308
+ "filter, the above settings will be ignored"
309
+ msgstr ""
310
+
311
+ # @ wpo_wcpdf
312
+ #: includes/class-wcpdf-settings.php:435
313
+ msgid "Date to display on invoice"
314
+ msgstr "Date à afficher sur la facture"
315
+
316
+ # @ wpo_wcpdf
317
+ #: includes/class-wcpdf-settings.php:443
318
+ msgid "Order date"
319
+ msgstr "Date de la commande"
320
+
321
+ # @ wpo_wcpdf
322
+ #: includes/class-wcpdf-settings.php:444
323
+ msgid "Invoice date"
324
+ msgstr "Date de la facture"
325
+
326
+ # @ wpo_wcpdf
327
+ #: includes/class-wcpdf-settings.php:452
328
  msgid "Extra template fields"
329
  msgstr "Champs supplémentaires du modèle"
330
 
331
+ # @ wpo_wcpdf
332
+ #: includes/class-wcpdf-settings.php:459
333
  msgid "Extra field 1"
334
  msgstr "Champ supplémentaire 1"
335
 
336
+ # @ wpo_wcpdf
337
+ #: includes/class-wcpdf-settings.php:468
338
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
339
  msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
340
 
341
+ # @ wpo_wcpdf
342
+ #: includes/class-wcpdf-settings.php:474
343
  msgid "Extra field 2"
344
  msgstr "Champ supplémentaire 2"
345
 
346
+ # @ wpo_wcpdf
347
+ #: includes/class-wcpdf-settings.php:483
348
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
349
  msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
350
 
351
+ # @ wpo_wcpdf
352
+ #: includes/class-wcpdf-settings.php:489
353
  msgid "Extra field 3"
354
  msgstr "Champ supplémentaire 3"
355
 
356
+ # @ wpo_wcpdf
357
+ #: includes/class-wcpdf-settings.php:498
358
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
359
  msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
360
 
361
+ # @ default
362
+ #: includes/class-wcpdf-settings.php:755
363
  msgid "Image resolution"
364
  msgstr "Résolution de l'image"
365
 
366
+ # @ wpo_wcpdf
367
+ #: includes/class-wcpdf-settings.php:822
368
  msgid ""
369
  "These are used for the (optional) footer columns in the <em>Modern "
370
  "(Premium)</em> template, but can also be used for other elements in your "
374
  "le modèle <em>Modern (Premium)</em>, mais ils peuvent aussi être utilisés "
375
  "pour d'autres éléments dans votre modèle personnalisé."
376
 
377
+ # @ wpo_wcpdf
378
+ #: includes/class-wcpdf-writepanels.php:102
379
+ msgid "Invoice Number"
380
+ msgstr "Numéro de Facture"
381
+
382
+ # @ wpo_wcpdf
383
+ #: includes/class-wcpdf-writepanels.php:133
384
  msgid "Create PDF"
385
  msgstr "Créer un PDF"
386
 
387
+ # @ wpo_wcpdf
388
+ #: includes/class-wcpdf-writepanels.php:143
389
  msgid "Download invoice (PDF)"
390
  msgstr "Télécharger la facture (PDF)"
391
 
392
+ # @ wpo_wcpdf
393
+ #: includes/class-wcpdf-writepanels.php:157
394
  msgid "PDF invoice"
395
  msgstr "Générer la facture au format PDF"
396
 
397
+ # @ wpo_wcpdf
398
+ #: includes/class-wcpdf-writepanels.php:158
399
  msgid "PDF Packing Slip"
400
  msgstr "Générer le bon de livraison au format PDF"
401
 
402
+ # @ wpo_wcpdf
403
+ #: includes/class-wcpdf-writepanels.php:175
404
+ #: includes/class-wcpdf-writepanels.php:176
405
  msgid "PDF Packing Slips"
406
  msgstr "Générer les bons de livraison au format PDF"
407
 
408
+ # @ wpo_wcpdf
409
+ #: includes/class-wcpdf-writepanels.php:189
410
+ msgid "PDF Invoice Number (unformatted!)"
411
+ msgstr "Numéro (non formatté) de Facture PDF"
412
+
413
+ # @ wpo_wcpdf
414
+ #: templates/pdf/Simple/html-document-wrapper.php:6
415
  #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
416
  msgid "Invoice"
417
  msgstr "Facture"
418
 
419
+ # @ wpo_wcpdf
420
+ #: templates/pdf/Simple/html-document-wrapper.php:6
421
+ #: templates/pdf/Simple/packing-slip.php:9
422
+ #: templates/pdf/Simple/packing-slip.php:21
423
+ msgid "Packing Slip"
424
+ msgstr "Bon de livraison"
425
+
426
+ # @ wpo_wcpdf
427
+ #: templates/pdf/Simple/invoice.php:37
428
+ msgid "Invoice Date:"
429
+ msgstr "Date de la Facture ;"
430
+
431
+ # @ wpo_wcpdf
432
+ #: templates/pdf/Simple/invoice.php:40
433
  #: templates/pdf/Simple/packing-slip.php:30
434
  msgid "Order Date:"
435
  msgstr "Date de commande:"
436
 
437
+ # @ wpo_wcpdf
438
+ #: templates/pdf/Simple/invoice.php:46
439
+ msgid "Invoice Number:"
440
+ msgstr "Numéro de la Facture :"
441
+
442
+ # @ wpo_wcpdf
443
+ #: templates/pdf/Simple/invoice.php:49
444
  #: templates/pdf/Simple/packing-slip.php:32
445
  msgid "Order Number:"
446
  msgstr "Numéro de commande:"
447
 
448
+ # @ wpo_wcpdf
449
+ #: templates/pdf/Simple/invoice.php:56
450
  msgid "Payment Method:"
451
  msgstr "Méthode de paiement"
452
 
453
+ # @ wpo_wcpdf
454
+ #: templates/pdf/Simple/invoice.php:69
455
  #: templates/pdf/Simple/packing-slip.php:45
456
  msgid "Product"
457
  msgstr "Produits"
458
 
459
+ # @ wpo_wcpdf
460
+ #: templates/pdf/Simple/invoice.php:70
461
  #: templates/pdf/Simple/packing-slip.php:46
462
  msgid "Quantity"
463
  msgstr "Quantité"
464
 
465
+ # @ wpo_wcpdf
466
+ #: templates/pdf/Simple/invoice.php:71
467
  msgid "Price"
468
  msgstr "Prix"
469
 
470
+ # @ wpo_wcpdf
471
+ #: templates/pdf/Simple/invoice.php:77
472
+ msgid "Description"
473
+ msgstr "Description"
474
+
475
+ # @ wpo_wcpdf
476
+ #: templates/pdf/Simple/invoice.php:80
477
  #: templates/pdf/Simple/packing-slip.php:54
478
  msgid "SKU:"
479
+ msgstr "UGS:"
480
 
481
+ # @ wpo_wcpdf
482
+ #: templates/pdf/Simple/invoice.php:81
483
  #: templates/pdf/Simple/packing-slip.php:55
484
  msgid "Weight:"
485
  msgstr "Poids:"
486
 
487
+ # @ wpo_wcpdf
488
+ #: templates/pdf/Simple/invoice.php:113
489
  #: templates/pdf/Simple/packing-slip.php:69
490
  msgid "Customer Notes"
491
  msgstr "Notes du Client"
492
 
493
+ # @ wpo_wcpdf
494
+ #: woocommerce-pdf-invoices-packingslips.php:96
495
+ #, php-format
496
+ msgid ""
497
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
498
+ "installed & activated!"
499
+ msgstr ""
500
+ "WooCommerce PDF Invoices & Packing Slips requiert %sWooCommerce%s pour être "
501
+ "installé et activé!"
502
+
503
+ # @ wpo_wcpdf
504
+ #: woocommerce-pdf-invoices-packingslips.php:191
505
+ #: woocommerce-pdf-invoices-packingslips.php:227
506
+ msgid "N/A"
507
+ msgstr "N/A"
508
+
509
+ # @ wpo_wcpdf
510
+ #: woocommerce-pdf-invoices-packingslips.php:249
511
+ msgid "Payment method"
512
+ msgstr "Méthode de Paiement"
513
+
514
+ # @ wpo_wcpdf
515
+ #: woocommerce-pdf-invoices-packingslips.php:260
516
+ msgid "Shipping method"
517
+ msgstr "Méthode de Livraison"
518
+
519
+ # @ wpo_wcpdf
520
+ #: woocommerce-pdf-invoices-packingslips.php:360
521
+ msgid "Subtotal"
522
+ msgstr "Sous-total"
523
+
524
+ # @ wpo_wcpdf
525
+ #: woocommerce-pdf-invoices-packingslips.php:382
526
+ msgid "Shipping"
527
+ msgstr "Livraison"
528
+
529
+ # @ wpo_wcpdf
530
+ #: woocommerce-pdf-invoices-packingslips.php:416
531
+ msgid "Discount"
532
+ msgstr "Remise"
533
+
534
+ # @ wpo_wcpdf
535
+ #: woocommerce-pdf-invoices-packingslips.php:455
536
+ msgid "VAT"
537
+ msgstr "H.T."
538
+
539
+ # @ default
540
+ #: woocommerce-pdf-invoices-packingslips.php:487
541
+ msgid "Total ex. VAT"
542
+ msgstr "Total H.T."
543
+
544
+ # @ default
545
+ #: woocommerce-pdf-invoices-packingslips.php:490
546
+ msgid "Total"
547
+ msgstr "Total TTC"
languages/wpo_wcpdf-nl_NL.mo CHANGED
Binary file
languages/wpo_wcpdf-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-26 09:12+0100\n"
6
- "PO-Revision-Date: 2014-02-26 09:19+0100\n"
7
  "Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
  "Language: nl_NL\n"
@@ -19,19 +19,19 @@ msgstr ""
19
  "X-Generator: Poedit 1.6.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: includes/class-wcpdf-export.php:142 includes/class-wcpdf-export.php:147
23
- #: includes/class-wcpdf-export.php:152 includes/class-wcpdf-export.php:163
24
- #: includes/class-wcpdf-export.php:176
25
  msgid "You do not have sufficient permissions to access this page."
26
  msgstr "Je hebt onvoldoende rechten voor deze pagina."
27
 
28
- #: includes/class-wcpdf-export.php:197 includes/class-wcpdf-export.php:268
29
  msgid "invoice"
30
  msgid_plural "invoices"
31
  msgstr[0] "factuur"
32
  msgstr[1] "facturen"
33
 
34
- #: includes/class-wcpdf-export.php:199
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
  msgstr[0] "pakbon"
@@ -47,30 +47,31 @@ msgstr "PDF facturen"
47
  msgid "Settings"
48
  msgstr "Instellingen"
49
 
50
- #: includes/class-wcpdf-settings.php:86
51
- msgid "WooCommerce PDF Invoices"
52
- msgstr "WooCommerce PDF Facturen"
53
-
54
- #: includes/class-wcpdf-settings.php:88
55
  msgid "General"
56
  msgstr "Algemeen"
57
 
58
- #: includes/class-wcpdf-settings.php:89
59
  msgid "Template"
60
  msgstr "Template"
61
 
62
- #: includes/class-wcpdf-settings.php:96
 
 
 
 
 
 
 
 
63
  #, php-format
64
  msgid ""
65
- "Your WP Memory Limit is currently set to %s - We recommend setting it to at "
66
- "least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
67
- "memory allocated to PHP</a>"
68
  msgstr ""
69
- "Uw WordPress geheugenlimiet is momenteel ingesteld op %s - We adviseren om "
70
- "deze in te stellen op tenminste 64MB (128MB voor de beste performance). Zie: "
71
- "<a href=\"%s\">Increasing memory allocated to PHP</a>"
72
 
73
- #: includes/class-wcpdf-settings.php:106
74
  #, php-format
75
  msgid ""
76
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -79,48 +80,48 @@ msgstr ""
79
  "Op zoek naar geavanceerdere sjablonen? Bekijk de Premium PDF Invoice & "
80
  "Packing Slips sjablonen op %s."
81
 
82
- #: includes/class-wcpdf-settings.php:107
83
  #, php-format
84
  msgid "For custom templates, contact us at %s."
85
  msgstr "Neem voor custom templates contact met ons op via %s"
86
 
87
- #: includes/class-wcpdf-settings.php:161
88
  msgid "General settings"
89
  msgstr "Algemene instellingen"
90
 
91
- #: includes/class-wcpdf-settings.php:168
92
  msgid "How do you want to view the PDF?"
93
  msgstr "Hoe wil je de PDF bekijken?"
94
 
95
- #: includes/class-wcpdf-settings.php:176
96
  msgid "Download the PDF"
97
  msgstr "Download de PDF"
98
 
99
- #: includes/class-wcpdf-settings.php:177
100
  msgid "Open the PDF in a new browser tab/window"
101
  msgstr "Open de PDF in een nieuwe browser tab/venster"
102
 
103
- #: includes/class-wcpdf-settings.php:187
104
  msgid "Attach invoice to:"
105
  msgstr "Factuur als bijlage toevoegen aan:"
106
 
107
- #: includes/class-wcpdf-settings.php:195
108
  msgid "Admin New Order email"
109
  msgstr "Nieuwe bestelling admin email"
110
 
111
- #: includes/class-wcpdf-settings.php:196
112
  msgid "Customer Processing Order email"
113
  msgstr "Bestelling in verwerking klant email"
114
 
115
- #: includes/class-wcpdf-settings.php:197
116
  msgid "Customer Completed Order email"
117
  msgstr "Bestelling voltooid klant email"
118
 
119
- #: includes/class-wcpdf-settings.php:198
120
  msgid "Customer Invoice email"
121
  msgstr "Klant factuur email"
122
 
123
- #: includes/class-wcpdf-settings.php:200
124
  #, php-format
125
  msgid ""
126
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -131,19 +132,19 @@ msgstr ""
131
  "controleer de rechten op deze folder! Zonder schrijfrechten kan de plugin "
132
  "geen facturen emailen."
133
 
134
- #: includes/class-wcpdf-settings.php:206
135
  msgid "Enable invoice number column in the orders list"
136
  msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
137
 
138
- #: includes/class-wcpdf-settings.php:245
139
  msgid "PDF Template settings"
140
  msgstr "PDF Template instellingen"
141
 
142
- #: includes/class-wcpdf-settings.php:252
143
  msgid "Choose a template"
144
  msgstr "Kies een template"
145
 
146
- #: includes/class-wcpdf-settings.php:260
147
  msgid ""
148
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
149
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -154,59 +155,59 @@ msgstr ""
154
  "naar <code>jouwtheme/woocommerce/pdf/jouwtemplate/</code> en pas ze aan naar "
155
  "je wensen."
156
 
157
- #: includes/class-wcpdf-settings.php:266
158
  msgid "Paper size"
159
  msgstr "Papier formaat"
160
 
161
- #: includes/class-wcpdf-settings.php:274
162
  msgid "A4"
163
  msgstr "A4"
164
 
165
- #: includes/class-wcpdf-settings.php:275
166
  msgid "Letter"
167
  msgstr "Letter (US)"
168
 
169
- #: includes/class-wcpdf-settings.php:282
170
  msgid "Shop header/logo"
171
  msgstr "Shop header/logo"
172
 
173
- #: includes/class-wcpdf-settings.php:289
174
  msgid "Select or upload your invoice header/logo"
175
  msgstr "Selecteer of upload je factuur header/logo"
176
 
177
- #: includes/class-wcpdf-settings.php:290
178
  msgid "Set image"
179
  msgstr "Stel afbeelding in"
180
 
181
- #: includes/class-wcpdf-settings.php:291
182
  msgid "Remove image"
183
  msgstr "Verwijder afbeelding"
184
 
185
- #: includes/class-wcpdf-settings.php:298
186
  msgid "Shop Name"
187
  msgstr "Shop Naam"
188
 
189
- #: includes/class-wcpdf-settings.php:311
190
  msgid "Shop Address"
191
  msgstr "Shop Adres"
192
 
193
- #: includes/class-wcpdf-settings.php:343
194
  msgid "Footer: terms & conditions, policies, etc."
195
  msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
196
 
197
- #: includes/class-wcpdf-settings.php:358
198
  msgid "Number to display on invoice"
199
  msgstr "Nummer op de factuur"
200
 
201
- #: includes/class-wcpdf-settings.php:366
202
  msgid "WooCommerce order number"
203
  msgstr "WooCommerce ordernummer"
204
 
205
- #: includes/class-wcpdf-settings.php:367
206
  msgid "Built-in sequential invoice number"
207
  msgstr "Ingebouwde sequentiële factuurnummers"
208
 
209
- #: includes/class-wcpdf-settings.php:369
210
  msgid ""
211
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
212
  "WooCommerce order number"
@@ -214,74 +215,108 @@ msgstr ""
214
  "Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
215
  "dan WooCommerce ordernummer"
216
 
217
- #: includes/class-wcpdf-settings.php:375
218
  msgid "Next invoice number (without prefix/suffix etc.)"
219
  msgstr "Volgende factuurnummer (zonder voorvoegsel/achtervoegsel etc.)"
220
 
221
- #: includes/class-wcpdf-settings.php:383
222
  msgid ""
223
  "This is the number that will be used on the next invoice that is created. By "
224
  "default, numbering starts from the WooCommerce Order Number of the first "
225
  "invoice that is created and increases for every new invoice. Note that if "
226
  "you override this and set it lower than the highest (PDF) invoice number, "
227
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
228
- "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
229
- "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
230
  msgstr ""
231
  "Dit is het nummer dat gebruikt zal worden op de eerstvolgende factuur. "
232
  "Standaard begint het nummeren vanaf het WooCommerce ordernummer van de "
233
  "eerste factuur die wordt aangemaakt, en wordt opgehoogd voor iedere nieuwe "
234
  "factuur. Let op, als je dit nummer aanpast en op een lager nummer dan het "
235
  "hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
236
- "gevolg hebben!. <br/>Bekijk de <a href=\"http://wordpress.org/plugins/"
237
- "woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> voor "
238
- "instructies om de weergave van het factuurnummer aan te passen."
 
 
 
 
 
 
239
 
240
- #: includes/class-wcpdf-settings.php:390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "Date to display on invoice"
242
  msgstr "Datum op de factuur"
243
 
244
- #: includes/class-wcpdf-settings.php:398
245
  msgid "Order date"
246
  msgstr "Orderdatum"
247
 
248
- #: includes/class-wcpdf-settings.php:399
249
  msgid "Invoice date"
250
  msgstr "Factuurdatum"
251
 
252
- #: includes/class-wcpdf-settings.php:407
253
  msgid "Extra template fields"
254
  msgstr "Extra templatevelden"
255
 
256
- #: includes/class-wcpdf-settings.php:414
257
  msgid "Extra field 1"
258
  msgstr "Extra veld 1"
259
 
260
- #: includes/class-wcpdf-settings.php:423
261
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
262
  msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
263
 
264
- #: includes/class-wcpdf-settings.php:429
265
  msgid "Extra field 2"
266
  msgstr "Extra veld 2"
267
 
268
- #: includes/class-wcpdf-settings.php:438
269
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
270
  msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
271
 
272
- #: includes/class-wcpdf-settings.php:444
273
  msgid "Extra field 3"
274
  msgstr "Extra veld 3"
275
 
276
- #: includes/class-wcpdf-settings.php:453
277
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
278
  msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
279
 
280
- #: includes/class-wcpdf-settings.php:710
281
  msgid "Image resolution"
282
  msgstr "Afbeeldings resolutie"
283
 
284
- #: includes/class-wcpdf-settings.php:740
285
  msgid ""
286
  "These are used for the (optional) footer columns in the <em>Modern "
287
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -316,7 +351,7 @@ msgstr "PDF Pakbon"
316
  msgid "PDF Packing Slips"
317
  msgstr "PDF Pakbonnen"
318
 
319
- #: includes/class-wcpdf-writepanels.php:187
320
  msgid "PDF Invoice Number (unformatted!)"
321
  msgstr "PDF Factuurnummer (zonder formatting!)"
322
 
@@ -381,7 +416,7 @@ msgstr "SKU:"
381
  msgid "Weight:"
382
  msgstr "Gewicht:"
383
 
384
- #: templates/pdf/Simple/invoice.php:114
385
  #: templates/pdf/Simple/packing-slip.php:69
386
  msgid "Customer Notes"
387
  msgstr "Opmerking klant:"
@@ -416,22 +451,31 @@ msgstr "Subtotaal"
416
  msgid "Shipping"
417
  msgstr "Verzendkosten"
418
 
419
- #: woocommerce-pdf-invoices-packingslips.php:401
420
  msgid "Discount"
421
  msgstr "Korting"
422
 
423
- #: woocommerce-pdf-invoices-packingslips.php:439
424
  msgid "VAT"
425
  msgstr "BTW"
426
 
427
- #: woocommerce-pdf-invoices-packingslips.php:471
428
  msgid "Total ex. VAT"
429
  msgstr "Totaal excl. BTW"
430
 
431
- #: woocommerce-pdf-invoices-packingslips.php:474
432
  msgid "Total"
433
  msgstr "Totaal"
434
 
 
 
 
 
 
 
 
 
 
435
  #~ msgid "Email invoice (attach to order confirmation or invoice email)"
436
  #~ msgstr ""
437
  #~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-12 22:11+0100\n"
6
+ "PO-Revision-Date: 2014-05-12 22:13+0100\n"
7
  "Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
  "Language: nl_NL\n"
19
  "X-Generator: Poedit 1.6.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
23
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
24
+ #: includes/class-wcpdf-export.php:185
25
  msgid "You do not have sufficient permissions to access this page."
26
  msgstr "Je hebt onvoldoende rechten voor deze pagina."
27
 
28
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
29
  msgid "invoice"
30
  msgid_plural "invoices"
31
  msgstr[0] "factuur"
32
  msgstr[1] "facturen"
33
 
34
+ #: includes/class-wcpdf-export.php:208
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
  msgstr[0] "pakbon"
47
  msgid "Settings"
48
  msgstr "Instellingen"
49
 
50
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
51
  msgid "General"
52
  msgstr "Algemeen"
53
 
54
+ #: includes/class-wcpdf-settings.php:83
55
  msgid "Template"
56
  msgstr "Template"
57
 
58
+ #: includes/class-wcpdf-settings.php:92
59
+ msgid "WooCommerce PDF Invoices"
60
+ msgstr "WooCommerce PDF Facturen"
61
+
62
+ #: includes/class-wcpdf-settings.php:98
63
+ msgid "Status"
64
+ msgstr "Status"
65
+
66
+ #: includes/class-wcpdf-settings.php:109
67
  #, php-format
68
  msgid ""
69
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
70
+ "extension."
 
71
  msgstr ""
72
+ "Upload alle facturen automatisch naar je Dropbox!<br/>Bekijk de %s extensie."
 
 
73
 
74
+ #: includes/class-wcpdf-settings.php:119
75
  #, php-format
76
  msgid ""
77
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
80
  "Op zoek naar geavanceerdere sjablonen? Bekijk de Premium PDF Invoice & "
81
  "Packing Slips sjablonen op %s."
82
 
83
+ #: includes/class-wcpdf-settings.php:120
84
  #, php-format
85
  msgid "For custom templates, contact us at %s."
86
  msgstr "Neem voor custom templates contact met ons op via %s"
87
 
88
+ #: includes/class-wcpdf-settings.php:175
89
  msgid "General settings"
90
  msgstr "Algemene instellingen"
91
 
92
+ #: includes/class-wcpdf-settings.php:182
93
  msgid "How do you want to view the PDF?"
94
  msgstr "Hoe wil je de PDF bekijken?"
95
 
96
+ #: includes/class-wcpdf-settings.php:190
97
  msgid "Download the PDF"
98
  msgstr "Download de PDF"
99
 
100
+ #: includes/class-wcpdf-settings.php:191
101
  msgid "Open the PDF in a new browser tab/window"
102
  msgstr "Open de PDF in een nieuwe browser tab/venster"
103
 
104
+ #: includes/class-wcpdf-settings.php:201
105
  msgid "Attach invoice to:"
106
  msgstr "Factuur als bijlage toevoegen aan:"
107
 
108
+ #: includes/class-wcpdf-settings.php:209
109
  msgid "Admin New Order email"
110
  msgstr "Nieuwe bestelling admin email"
111
 
112
+ #: includes/class-wcpdf-settings.php:210
113
  msgid "Customer Processing Order email"
114
  msgstr "Bestelling in verwerking klant email"
115
 
116
+ #: includes/class-wcpdf-settings.php:211
117
  msgid "Customer Completed Order email"
118
  msgstr "Bestelling voltooid klant email"
119
 
120
+ #: includes/class-wcpdf-settings.php:212
121
  msgid "Customer Invoice email"
122
  msgstr "Klant factuur email"
123
 
124
+ #: includes/class-wcpdf-settings.php:214
125
  #, php-format
126
  msgid ""
127
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
132
  "controleer de rechten op deze folder! Zonder schrijfrechten kan de plugin "
133
  "geen facturen emailen."
134
 
135
+ #: includes/class-wcpdf-settings.php:220
136
  msgid "Enable invoice number column in the orders list"
137
  msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
138
 
139
+ #: includes/class-wcpdf-settings.php:259
140
  msgid "PDF Template settings"
141
  msgstr "PDF Template instellingen"
142
 
143
+ #: includes/class-wcpdf-settings.php:266
144
  msgid "Choose a template"
145
  msgstr "Kies een template"
146
 
147
+ #: includes/class-wcpdf-settings.php:274
148
  msgid ""
149
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
150
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
155
  "naar <code>jouwtheme/woocommerce/pdf/jouwtemplate/</code> en pas ze aan naar "
156
  "je wensen."
157
 
158
+ #: includes/class-wcpdf-settings.php:280
159
  msgid "Paper size"
160
  msgstr "Papier formaat"
161
 
162
+ #: includes/class-wcpdf-settings.php:288
163
  msgid "A4"
164
  msgstr "A4"
165
 
166
+ #: includes/class-wcpdf-settings.php:289
167
  msgid "Letter"
168
  msgstr "Letter (US)"
169
 
170
+ #: includes/class-wcpdf-settings.php:296
171
  msgid "Shop header/logo"
172
  msgstr "Shop header/logo"
173
 
174
+ #: includes/class-wcpdf-settings.php:303
175
  msgid "Select or upload your invoice header/logo"
176
  msgstr "Selecteer of upload je factuur header/logo"
177
 
178
+ #: includes/class-wcpdf-settings.php:304
179
  msgid "Set image"
180
  msgstr "Stel afbeelding in"
181
 
182
+ #: includes/class-wcpdf-settings.php:305
183
  msgid "Remove image"
184
  msgstr "Verwijder afbeelding"
185
 
186
+ #: includes/class-wcpdf-settings.php:312
187
  msgid "Shop Name"
188
  msgstr "Shop Naam"
189
 
190
+ #: includes/class-wcpdf-settings.php:325
191
  msgid "Shop Address"
192
  msgstr "Shop Adres"
193
 
194
+ #: includes/class-wcpdf-settings.php:357
195
  msgid "Footer: terms & conditions, policies, etc."
196
  msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
197
 
198
+ #: includes/class-wcpdf-settings.php:372
199
  msgid "Number to display on invoice"
200
  msgstr "Nummer op de factuur"
201
 
202
+ #: includes/class-wcpdf-settings.php:380
203
  msgid "WooCommerce order number"
204
  msgstr "WooCommerce ordernummer"
205
 
206
+ #: includes/class-wcpdf-settings.php:381
207
  msgid "Built-in sequential invoice number"
208
  msgstr "Ingebouwde sequentiële factuurnummers"
209
 
210
+ #: includes/class-wcpdf-settings.php:383
211
  msgid ""
212
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
213
  "WooCommerce order number"
215
  "Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
216
  "dan WooCommerce ordernummer"
217
 
218
+ #: includes/class-wcpdf-settings.php:389
219
  msgid "Next invoice number (without prefix/suffix etc.)"
220
  msgstr "Volgende factuurnummer (zonder voorvoegsel/achtervoegsel etc.)"
221
 
222
+ #: includes/class-wcpdf-settings.php:397
223
  msgid ""
224
  "This is the number that will be used on the next invoice that is created. By "
225
  "default, numbering starts from the WooCommerce Order Number of the first "
226
  "invoice that is created and increases for every new invoice. Note that if "
227
  "you override this and set it lower than the highest (PDF) invoice number, "
228
+ "this could create double invoice numbers!"
 
 
229
  msgstr ""
230
  "Dit is het nummer dat gebruikt zal worden op de eerstvolgende factuur. "
231
  "Standaard begint het nummeren vanaf het WooCommerce ordernummer van de "
232
  "eerste factuur die wordt aangemaakt, en wordt opgehoogd voor iedere nieuwe "
233
  "factuur. Let op, als je dit nummer aanpast en op een lager nummer dan het "
234
  "hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
235
+ "gevolg hebben!"
236
+
237
+ #: includes/class-wcpdf-settings.php:403
238
+ msgid "Invoice number format"
239
+ msgstr "Factuurnummer format"
240
+
241
+ #: includes/class-wcpdf-settings.php:412
242
+ msgid "Prefix"
243
+ msgstr "Voorvoegsel"
244
 
245
+ #: includes/class-wcpdf-settings.php:414
246
+ msgid ""
247
+ "to use the order year and/or month, use [order_year] or [order_month] "
248
+ "respectively"
249
+ msgstr ""
250
+ "gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
251
+ "te geven"
252
+
253
+ #: includes/class-wcpdf-settings.php:417
254
+ msgid "Suffix"
255
+ msgstr "Achtervoegsel"
256
+
257
+ #: includes/class-wcpdf-settings.php:422
258
+ msgid "Padding"
259
+ msgstr "Vulling"
260
+
261
+ #: includes/class-wcpdf-settings.php:424
262
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
263
+ msgstr ""
264
+ "voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
265
+ "geven"
266
+
267
+ #: includes/class-wcpdf-settings.php:427
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
+ "let op: als je al een format voor een factuurnummer hebt gemaakt met een "
273
+ "filter, worden de bovenstaande instellingen genegeerd"
274
+
275
+ #: includes/class-wcpdf-settings.php:435
276
  msgid "Date to display on invoice"
277
  msgstr "Datum op de factuur"
278
 
279
+ #: includes/class-wcpdf-settings.php:443
280
  msgid "Order date"
281
  msgstr "Orderdatum"
282
 
283
+ #: includes/class-wcpdf-settings.php:444
284
  msgid "Invoice date"
285
  msgstr "Factuurdatum"
286
 
287
+ #: includes/class-wcpdf-settings.php:452
288
  msgid "Extra template fields"
289
  msgstr "Extra templatevelden"
290
 
291
+ #: includes/class-wcpdf-settings.php:459
292
  msgid "Extra field 1"
293
  msgstr "Extra veld 1"
294
 
295
+ #: includes/class-wcpdf-settings.php:468
296
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
297
  msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
298
 
299
+ #: includes/class-wcpdf-settings.php:474
300
  msgid "Extra field 2"
301
  msgstr "Extra veld 2"
302
 
303
+ #: includes/class-wcpdf-settings.php:483
304
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
305
  msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
306
 
307
+ #: includes/class-wcpdf-settings.php:489
308
  msgid "Extra field 3"
309
  msgstr "Extra veld 3"
310
 
311
+ #: includes/class-wcpdf-settings.php:498
312
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
313
  msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
314
 
315
+ #: includes/class-wcpdf-settings.php:755
316
  msgid "Image resolution"
317
  msgstr "Afbeeldings resolutie"
318
 
319
+ #: includes/class-wcpdf-settings.php:822
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 "
351
  msgid "PDF Packing Slips"
352
  msgstr "PDF Pakbonnen"
353
 
354
+ #: includes/class-wcpdf-writepanels.php:189
355
  msgid "PDF Invoice Number (unformatted!)"
356
  msgstr "PDF Factuurnummer (zonder formatting!)"
357
 
416
  msgid "Weight:"
417
  msgstr "Gewicht:"
418
 
419
+ #: templates/pdf/Simple/invoice.php:113
420
  #: templates/pdf/Simple/packing-slip.php:69
421
  msgid "Customer Notes"
422
  msgstr "Opmerking klant:"
451
  msgid "Shipping"
452
  msgstr "Verzendkosten"
453
 
454
+ #: woocommerce-pdf-invoices-packingslips.php:416
455
  msgid "Discount"
456
  msgstr "Korting"
457
 
458
+ #: woocommerce-pdf-invoices-packingslips.php:455
459
  msgid "VAT"
460
  msgstr "BTW"
461
 
462
+ #: woocommerce-pdf-invoices-packingslips.php:487
463
  msgid "Total ex. VAT"
464
  msgstr "Totaal excl. BTW"
465
 
466
+ #: woocommerce-pdf-invoices-packingslips.php:490
467
  msgid "Total"
468
  msgstr "Totaal"
469
 
470
+ #~ msgid ""
471
+ #~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
472
+ #~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
473
+ #~ "\">Increasing memory allocated to PHP</a>"
474
+ #~ msgstr ""
475
+ #~ "Uw WordPress geheugenlimiet is momenteel ingesteld op %s - We adviseren "
476
+ #~ "om deze in te stellen op tenminste 64MB (128MB voor de beste "
477
+ #~ "performance). Zie: <a href=\"%s\">Increasing memory allocated to PHP</a>"
478
+
479
  #~ msgid "Email invoice (attach to order confirmation or invoice email)"
480
  #~ msgstr ""
481
  #~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
languages/wpo_wcpdf-ro_RO.mo CHANGED
Binary file
languages/wpo_wcpdf-ro_RO.po CHANGED
@@ -2,481 +2,551 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.2.13\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-03-28 18:24:19+0000\n"
7
  "Last-Translator: afternoon <zicevrei@afternoon.ro>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: Romanian\n"
15
- "X-Poedit-Country: ROMANIA\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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-Poedit-Bookmarks: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: includes/class-wcpdf-export.php:142
24
- #: includes/class-wcpdf-export.php:147
25
- #: includes/class-wcpdf-export.php:152
26
- #: includes/class-wcpdf-export.php:163
27
- #: includes/class-wcpdf-export.php:176
28
- #@ wpo_wcpdf
29
  msgid "You do not have sufficient permissions to access this page."
30
  msgstr "Nu aveți permisiunea pentru a accesa această pagină."
31
 
32
- #. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code!
33
- #: includes/class-wcpdf-export.php:197
34
- #: includes/class-wcpdf-export.php:273
35
- #@ wpo_wcpdf
36
  msgid "invoice"
37
  msgid_plural "invoices"
38
  msgstr[0] ""
39
  msgstr[1] ""
40
 
41
- #: includes/class-wcpdf-export.php:199
42
- #@ wpo_wcpdf
43
  msgid "packing-slip"
44
  msgid_plural "packing-slips"
45
  msgstr[0] ""
46
  msgstr[1] ""
47
 
48
- #: includes/class-wcpdf-settings.php:36
49
- #: includes/class-wcpdf-settings.php:37
50
  #: includes/class-wcpdf-writepanels.php:173
51
  #: includes/class-wcpdf-writepanels.php:174
52
- #@ wpo_wcpdf
53
  msgid "PDF Invoices"
54
  msgstr "Factură PDF"
55
 
 
56
  #: includes/class-wcpdf-settings.php:60
57
- #@ woocommerce
58
  msgid "Settings"
59
  msgstr ""
60
 
61
- #: includes/class-wcpdf-settings.php:86
62
- #@ wpo_wcpdf
63
- msgid "WooCommerce PDF Invoices"
64
- msgstr "Factură PDF WooCommerce"
65
-
66
- #: includes/class-wcpdf-settings.php:88
67
- #@ wpo_wcpdf
68
  msgid "General"
69
  msgstr "General"
70
 
71
- #: includes/class-wcpdf-settings.php:89
72
- #@ wpo_wcpdf
73
  msgid "Template"
74
  msgstr "Șablon"
75
 
76
- #: includes/class-wcpdf-settings.php:96
 
 
 
 
 
 
 
 
 
77
  #, php-format
78
- #@ wpo_wcpdf
79
- msgid "Your WP Memory Limit is currently set to %s - We recommend setting it to at least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing memory allocated to PHP</a>"
80
- msgstr "Limita dvs. de memorie WP este setată la %s - Vă recomandăm să o setați la cel puțin 64 MB (128 MB pentru performanțe optime). A se vedea: <a href=\"%s\">Creșterea de memorie alocată pentru PHP</ a>"
 
81
 
82
- #: includes/class-wcpdf-settings.php:106
 
83
  #, php-format
84
- #@ wpo_wcpdf
85
- msgid "Looking for more advanced templates? Check out the Premium PDF Invoice & Packing Slips templates at %s."
86
- msgstr "Căutați șabloane mai avansate? Vezi șabloanele Premium pentru Factură PDF și pentru Ordinul de comandă la %s."
 
 
 
87
 
88
- #: includes/class-wcpdf-settings.php:107
 
89
  #, php-format
90
- #@ wpo_wcpdf
91
  msgid "For custom templates, contact us at %s."
92
  msgstr "Pentru șabloane personalizate, contactați-ne la %s."
93
 
94
- #: includes/class-wcpdf-settings.php:161
95
- #@ wpo_wcpdf
96
  msgid "General settings"
97
  msgstr "Setări generale"
98
 
99
- #: includes/class-wcpdf-settings.php:168
100
- #@ wpo_wcpdf
101
  msgid "How do you want to view the PDF?"
102
  msgstr "Cum doriți să vizualizați PDF-ul?"
103
 
104
- #: includes/class-wcpdf-settings.php:176
105
- #@ wpo_wcpdf
106
  msgid "Download the PDF"
107
  msgstr "Descarcă PDF"
108
 
109
- #: includes/class-wcpdf-settings.php:177
110
- #@ wpo_wcpdf
111
  msgid "Open the PDF in a new browser tab/window"
112
  msgstr "Deschideți PDF-ul într-o filă/fereastră nouă"
113
 
114
- #: includes/class-wcpdf-settings.php:187
115
- #@ wpo_wcpdf
116
  msgid "Attach invoice to:"
117
  msgstr "Atașați factura la:"
118
 
119
- #: includes/class-wcpdf-settings.php:195
120
- #@ wpo_wcpdf
121
  msgid "Admin New Order email"
122
  msgstr "Comanda nouă destinată Administratorului"
123
 
124
- #: includes/class-wcpdf-settings.php:196
125
- #@ wpo_wcpdf
126
  msgid "Customer Processing Order email"
127
  msgstr "Comanda trimisă clientului în momentul procesării acesteia"
128
 
129
- #: includes/class-wcpdf-settings.php:197
130
- #@ wpo_wcpdf
131
  msgid "Customer Completed Order email"
132
  msgstr "Comanda trimisă clientului în momentul finalizării acesteia"
133
 
134
- #: includes/class-wcpdf-settings.php:198
135
- #@ wpo_wcpdf
136
  msgid "Customer Invoice email"
137
  msgstr "Email-ul trimis cu factura finală"
138
 
139
- #: includes/class-wcpdf-settings.php:200
 
140
  #, php-format
141
- #@ wpo_wcpdf
142
- msgid "It looks like the temp folder (<code>%s</code>) is not writable, check the permissions for this folder! Without having write access to this folder, the plugin will not be able to email invoices."
143
- msgstr "Se pare folderul Temp (<code>%s</ code>) nu poate fi scris, verificați permisiunile pentru acest folder! Fără a avea acces de scriere la acest folder, plugin-ul nu va fi în măsură să trimita email-ul cu facturi."
 
 
 
 
 
144
 
145
- #: includes/class-wcpdf-settings.php:206
146
- #@ wpo_wcpdf
147
  msgid "Enable invoice number column in the orders list"
148
  msgstr "Activați coloana Număr de Factură din lista comenzilor"
149
 
150
- #: includes/class-wcpdf-settings.php:245
151
- #@ wpo_wcpdf
152
  msgid "PDF Template settings"
153
  msgstr "Setări șablon PDF"
154
 
155
- #: includes/class-wcpdf-settings.php:252
156
- #@ wpo_wcpdf
157
  msgid "Choose a template"
158
  msgstr "Alege un șablon"
159
 
160
- #: includes/class-wcpdf-settings.php:260
161
- #@ wpo_wcpdf
162
- msgid "Want to use your own template? Copy all the files from <code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/woocommerce/pdf/yourtemplate/</code> to customize them"
163
- msgstr "Vreți sa utilizați propriul șablon? Copiați toate fișierele din <code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</ code> în <code>yourtheme/woocommerce/pdf/yourtemplate/</ code> pentru a le personaliza"
 
 
 
 
 
 
 
164
 
165
- #: includes/class-wcpdf-settings.php:266
166
- #@ wpo_wcpdf
167
  msgid "Paper size"
168
  msgstr "Dimensiune hârtie"
169
 
170
- #: includes/class-wcpdf-settings.php:274
171
- #@ wpo_wcpdf
172
  msgid "A4"
173
  msgstr "A4"
174
 
175
- #: includes/class-wcpdf-settings.php:275
176
- #@ wpo_wcpdf
177
  msgid "Letter"
178
  msgstr "Letter"
179
 
180
- #: includes/class-wcpdf-settings.php:282
181
- #@ wpo_wcpdf
182
  msgid "Shop header/logo"
183
  msgstr "Antet/Logo"
184
 
185
- #: includes/class-wcpdf-settings.php:289
186
- #@ wpo_wcpdf
187
  msgid "Select or upload your invoice header/logo"
188
  msgstr "Selectați sau încărcați propriul dvs. antet sau logo"
189
 
190
- #: includes/class-wcpdf-settings.php:290
191
- #@ wpo_wcpdf
192
  msgid "Set image"
193
  msgstr "Setare imagine"
194
 
195
- #: includes/class-wcpdf-settings.php:291
196
- #@ wpo_wcpdf
197
  msgid "Remove image"
198
  msgstr "Șterge imagine"
199
 
200
- #: includes/class-wcpdf-settings.php:298
201
- #@ wpo_wcpdf
202
  msgid "Shop Name"
203
  msgstr "Nume magazin"
204
 
205
- #: includes/class-wcpdf-settings.php:311
206
- #@ wpo_wcpdf
207
  msgid "Shop Address"
208
  msgstr "Adresă magazin"
209
 
210
- #: includes/class-wcpdf-settings.php:343
211
- #@ wpo_wcpdf
212
  msgid "Footer: terms & conditions, policies, etc."
213
- msgstr "Notă de subsol: termeni și condiții, politică de confidențialitate, etc."
 
214
 
215
- #: includes/class-wcpdf-settings.php:358
216
- #@ wpo_wcpdf
217
  msgid "Number to display on invoice"
218
  msgstr "Număr pentru a fi afișat pe factură"
219
 
220
- #: includes/class-wcpdf-settings.php:366
221
- #@ wpo_wcpdf
222
  msgid "WooCommerce order number"
223
  msgstr "Numărul de comandă WooCommerce"
224
 
225
- #: includes/class-wcpdf-settings.php:367
226
- #@ wpo_wcpdf
227
  msgid "Built-in sequential invoice number"
228
  msgstr "Număr de factură secvențial"
229
 
230
- #: includes/class-wcpdf-settings.php:369
231
- #@ wpo_wcpdf
232
- msgid "If you are using the WooCommerce Sequential Order Numbers plugin, select the WooCommerce order number"
233
- msgstr "Dacă utilizați plugin-ul WooCommerce Sequential Order Numbers, selectați Numărul de comandă WooCommerce"
 
 
 
 
234
 
235
- #: includes/class-wcpdf-settings.php:375
236
- #@ wpo_wcpdf
237
  msgid "Next invoice number (without prefix/suffix etc.)"
238
  msgstr "Următorul număr de factură (fără prefix/sufix etc.)"
239
 
240
- #: includes/class-wcpdf-settings.php:383
241
- #@ wpo_wcpdf
242
- msgid "This is the number that will be used on the next invoice that is created. By default, numbering starts from the WooCommerce Order Number of the first invoice that is created and increases for every new invoice. Note that if you override this and set it lower than the highest (PDF) invoice number, this could create double invoice numbers!<br/>Check the <a href=\"http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> for instructions on how to format the invoice number."
243
- msgstr "Acesta este numărul care va fi folosit la următoarea factură creată. În mod implicit, numerotarea începe de la primul număr al Ordinului de comanda WooCommerce creat și crește pentru fiecare nouă factură. Rețineți că, dacă rescrieți factura și îi setați un număr mai mic decât cel mai mare număr de factură (PDF), acest lucru ar putea crea un număr duplicat la factură! <br/> Verificați <a href=\"http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> pentru instrucțiuni despre cum să formatați numărul facturii."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
 
245
- #: includes/class-wcpdf-settings.php:390
246
- #@ wpo_wcpdf
247
  msgid "Date to display on invoice"
248
  msgstr "Dată pentru a afișa pe factură"
249
 
250
- #: includes/class-wcpdf-settings.php:398
251
- #@ wpo_wcpdf
252
  msgid "Order date"
253
  msgstr "Dată comandă"
254
 
255
- #: includes/class-wcpdf-settings.php:399
256
- #@ wpo_wcpdf
257
  msgid "Invoice date"
258
  msgstr "Dată factură"
259
 
260
- #: includes/class-wcpdf-settings.php:407
261
- #@ wpo_wcpdf
262
  msgid "Extra template fields"
263
  msgstr "Câmpuri suplimentare pentru șablon"
264
 
265
- #: includes/class-wcpdf-settings.php:414
266
- #@ wpo_wcpdf
267
  msgid "Extra field 1"
268
  msgstr "Câmp suplimentar 1"
269
 
270
- #: includes/class-wcpdf-settings.php:423
271
- #@ wpo_wcpdf
272
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
273
- msgstr "Aceasta este coloana 1 pentru nota de subsol, disponibilă în șablonul <i>Modern (Premium)</ i>"
 
 
274
 
275
- #: includes/class-wcpdf-settings.php:429
276
- #@ wpo_wcpdf
277
  msgid "Extra field 2"
278
  msgstr "Câmp suplimentar 2"
279
 
280
- #: includes/class-wcpdf-settings.php:438
281
- #@ wpo_wcpdf
282
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
283
- msgstr "Aceasta este coloana 2 pentru nota de subsol, disponibilă în șablonul <i>Modern (Premium)</ i>"
 
 
284
 
285
- #: includes/class-wcpdf-settings.php:444
286
- #@ wpo_wcpdf
287
  msgid "Extra field 3"
288
  msgstr "Câmp suplimentar 3"
289
 
290
- #: includes/class-wcpdf-settings.php:453
291
- #@ wpo_wcpdf
292
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
293
- msgstr "Aceasta este coloana 3 pentru nota de subsol, disponibilă în șablonul <i>Modern (Premium)</ i>"
 
 
294
 
295
- #: includes/class-wcpdf-settings.php:710
296
- #@ default
297
  msgid "Image resolution"
298
  msgstr ""
299
 
300
- #: includes/class-wcpdf-settings.php:740
301
- #@ wpo_wcpdf
302
- msgid "These are used for the (optional) footer columns in the <em>Modern (Premium)</em> template, but can also be used for other elements in your custom template"
303
- msgstr "Acestea sunt utilizate pentru (opțional) coloanele notei de subsol din șablonul <em>Modern (Premium)</ em>, dar poate fi de asemenea utilizat pentru alte elemente în șablonul personalizat"
304
-
305
- #: includes/class-wcpdf-writepanels.php:81
306
- #: includes/class-wcpdf-writepanels.php:82
307
- #: includes/class-wcpdf-writepanels.php:157
308
- #@ wpo_wcpdf
309
- msgid "PDF invoice"
310
- msgstr "Factură PDF"
311
-
312
- #: includes/class-wcpdf-writepanels.php:84
313
- #: includes/class-wcpdf-writepanels.php:85
314
- #: includes/class-wcpdf-writepanels.php:158
315
- #@ wpo_wcpdf
316
- msgid "PDF Packing Slip"
317
- msgstr "Ordin de comandă PDF"
318
 
 
319
  #: includes/class-wcpdf-writepanels.php:102
320
- #@ wpo_wcpdf
321
  msgid "Invoice Number"
322
  msgstr "Număr factură"
323
 
 
324
  #: includes/class-wcpdf-writepanels.php:133
325
- #@ wpo_wcpdf
326
  msgid "Create PDF"
327
  msgstr "Crează PDF"
328
 
 
329
  #: includes/class-wcpdf-writepanels.php:143
330
- #@ wpo_wcpdf
331
  msgid "Download invoice (PDF)"
332
  msgstr "Descarcă factură (PDF)"
333
 
 
334
  #: includes/class-wcpdf-writepanels.php:157
335
- #@ wpo_wcpdf
336
- msgid "PDF Invoice"
337
  msgstr "Factură PDF"
338
 
 
 
 
 
 
 
339
  #: includes/class-wcpdf-writepanels.php:175
340
  #: includes/class-wcpdf-writepanels.php:176
341
- #@ wpo_wcpdf
342
  msgid "PDF Packing Slips"
343
  msgstr "Ordine de comandă PDF"
344
 
345
- #: includes/class-wcpdf-writepanels.php:187
346
- #@ wpo_wcpdf
347
  msgid "PDF Invoice Number (unformatted!)"
348
  msgstr "Număr factură PDF (neformatat!)"
349
 
 
350
  #: templates/pdf/Simple/html-document-wrapper.php:6
351
- #: templates/pdf/Simple/invoice.php:9
352
- #: templates/pdf/Simple/invoice.php:21
353
- #@ wpo_wcpdf
354
  msgid "Invoice"
355
  msgstr "Factură"
356
 
 
357
  #: templates/pdf/Simple/html-document-wrapper.php:6
358
  #: templates/pdf/Simple/packing-slip.php:9
359
  #: templates/pdf/Simple/packing-slip.php:21
360
- #@ wpo_wcpdf
361
  msgid "Packing Slip"
362
  msgstr "Ordin de comandă"
363
 
 
364
  #: templates/pdf/Simple/invoice.php:37
365
- #@ wpo_wcpdf
366
  msgid "Invoice Date:"
367
  msgstr "Dată factură:"
368
 
 
369
  #: templates/pdf/Simple/invoice.php:40
370
  #: templates/pdf/Simple/packing-slip.php:30
371
- #@ wpo_wcpdf
372
  msgid "Order Date:"
373
  msgstr "Dată comandă:"
374
 
 
375
  #: templates/pdf/Simple/invoice.php:46
376
- #@ wpo_wcpdf
377
  msgid "Invoice Number:"
378
  msgstr "Număr factură:"
379
 
 
380
  #: templates/pdf/Simple/invoice.php:49
381
  #: templates/pdf/Simple/packing-slip.php:32
382
- #@ wpo_wcpdf
383
  msgid "Order Number:"
384
  msgstr "Număr comandă:"
385
 
 
386
  #: templates/pdf/Simple/invoice.php:56
387
- #@ wpo_wcpdf
388
  msgid "Payment Method:"
389
  msgstr "Metodă de plată:"
390
 
 
391
  #: templates/pdf/Simple/invoice.php:69
392
  #: templates/pdf/Simple/packing-slip.php:45
393
- #@ wpo_wcpdf
394
  msgid "Product"
395
  msgstr "Produs"
396
 
 
397
  #: templates/pdf/Simple/invoice.php:70
398
  #: templates/pdf/Simple/packing-slip.php:46
399
- #@ wpo_wcpdf
400
  msgid "Quantity"
401
  msgstr "Cantitate"
402
 
 
403
  #: templates/pdf/Simple/invoice.php:71
404
- #@ wpo_wcpdf
405
  msgid "Price"
406
  msgstr "Preț"
407
 
 
408
  #: templates/pdf/Simple/invoice.php:77
409
- #@ wpo_wcpdf
410
  msgid "Description"
411
  msgstr "Descriere"
412
 
 
413
  #: templates/pdf/Simple/invoice.php:80
414
  #: templates/pdf/Simple/packing-slip.php:54
415
- #@ wpo_wcpdf
416
  msgid "SKU:"
417
  msgstr "Cod produs (SKU):"
418
 
 
419
  #: templates/pdf/Simple/invoice.php:81
420
  #: templates/pdf/Simple/packing-slip.php:55
421
- #@ wpo_wcpdf
422
  msgid "Weight:"
423
  msgstr "Greutate:"
424
 
425
- #: templates/pdf/Simple/invoice.php:114
 
426
  #: templates/pdf/Simple/packing-slip.php:69
427
- #@ wpo_wcpdf
428
  msgid "Customer Notes"
429
  msgstr "Notiță client"
430
 
 
431
  #: woocommerce-pdf-invoices-packingslips.php:96
432
  #, php-format
433
- #@ wpo_wcpdf
434
- msgid "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be installed & activated!"
435
- msgstr "%sWooCommerce%s trebuie să fie instalat și activ pentru ca Factura PDF și Ordinul de comandă WooCommerce să funcționeze."
 
 
 
436
 
 
437
  #: woocommerce-pdf-invoices-packingslips.php:191
438
  #: woocommerce-pdf-invoices-packingslips.php:227
439
- #@ wpo_wcpdf
440
  msgid "N/A"
441
  msgstr "Nu se aplică (N/A)"
442
 
 
443
  #: woocommerce-pdf-invoices-packingslips.php:249
444
- #@ wpo_wcpdf
445
  msgid "Payment method"
446
  msgstr "Metodă de plată"
447
 
 
448
  #: woocommerce-pdf-invoices-packingslips.php:260
449
- #@ wpo_wcpdf
450
  msgid "Shipping method"
451
  msgstr "Metodă de livrare"
452
 
 
453
  #: woocommerce-pdf-invoices-packingslips.php:360
454
- #@ wpo_wcpdf
455
  msgid "Subtotal"
456
  msgstr "Subtotal"
457
 
 
458
  #: woocommerce-pdf-invoices-packingslips.php:382
459
- #@ wpo_wcpdf
460
  msgid "Shipping"
461
  msgstr "Transport"
462
 
463
- #: woocommerce-pdf-invoices-packingslips.php:401
464
- #@ wpo_wcpdf
465
  msgid "Discount"
466
  msgstr "Reducere"
467
 
468
- #: woocommerce-pdf-invoices-packingslips.php:439
469
- #@ wpo_wcpdf
470
  msgid "VAT"
471
  msgstr "TVA"
472
 
473
- #: woocommerce-pdf-invoices-packingslips.php:471
474
- #@ default
475
  msgid "Total ex. VAT"
476
  msgstr ""
477
 
478
- #: woocommerce-pdf-invoices-packingslips.php:474
479
- #@ default
480
  msgid "Total"
481
  msgstr ""
482
-
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.2.13\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-12 22:19+0100\n"
6
+ "PO-Revision-Date: 2014-05-12 22:19+0100\n"
7
  "Last-Translator: afternoon <zicevrei@afternoon.ro>\n"
8
  "Language-Team: \n"
9
+ "Language: ro_RO\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=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.6.5\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:151 includes/class-wcpdf-export.php:156
24
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
25
+ #: includes/class-wcpdf-export.php:185
 
 
 
26
  msgid "You do not have sufficient permissions to access this page."
27
  msgstr "Nu aveți permisiunea pentru a accesa această pagină."
28
 
29
+ # @ wpo_wcpdf
30
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
 
 
31
  msgid "invoice"
32
  msgid_plural "invoices"
33
  msgstr[0] ""
34
  msgstr[1] ""
35
 
36
+ # @ wpo_wcpdf
37
+ #: includes/class-wcpdf-export.php:208
38
  msgid "packing-slip"
39
  msgid_plural "packing-slips"
40
  msgstr[0] ""
41
  msgstr[1] ""
42
 
43
+ # @ wpo_wcpdf
44
+ #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
45
  #: includes/class-wcpdf-writepanels.php:173
46
  #: includes/class-wcpdf-writepanels.php:174
 
47
  msgid "PDF Invoices"
48
  msgstr "Factură PDF"
49
 
50
+ # @ woocommerce
51
  #: includes/class-wcpdf-settings.php:60
 
52
  msgid "Settings"
53
  msgstr ""
54
 
55
+ # @ wpo_wcpdf
56
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
 
57
  msgid "General"
58
  msgstr "General"
59
 
60
+ # @ wpo_wcpdf
61
+ #: includes/class-wcpdf-settings.php:83
62
  msgid "Template"
63
  msgstr "Șablon"
64
 
65
+ # @ wpo_wcpdf
66
+ #: includes/class-wcpdf-settings.php:92
67
+ msgid "WooCommerce PDF Invoices"
68
+ msgstr "Factură PDF WooCommerce"
69
+
70
+ #: includes/class-wcpdf-settings.php:98
71
+ msgid "Status"
72
+ msgstr ""
73
+
74
+ #: includes/class-wcpdf-settings.php:109
75
  #, php-format
76
+ msgid ""
77
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
78
+ "extension."
79
+ msgstr ""
80
 
81
+ # @ wpo_wcpdf
82
+ #: includes/class-wcpdf-settings.php:119
83
  #, php-format
84
+ msgid ""
85
+ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
86
+ "Packing Slips templates at %s."
87
+ msgstr ""
88
+ "Căutați șabloane mai avansate? Vezi șabloanele Premium pentru Factură PDF și "
89
+ "pentru Ordinul de comandă la %s."
90
 
91
+ # @ wpo_wcpdf
92
+ #: includes/class-wcpdf-settings.php:120
93
  #, php-format
 
94
  msgid "For custom templates, contact us at %s."
95
  msgstr "Pentru șabloane personalizate, contactați-ne la %s."
96
 
97
+ # @ wpo_wcpdf
98
+ #: includes/class-wcpdf-settings.php:175
99
  msgid "General settings"
100
  msgstr "Setări generale"
101
 
102
+ # @ wpo_wcpdf
103
+ #: includes/class-wcpdf-settings.php:182
104
  msgid "How do you want to view the PDF?"
105
  msgstr "Cum doriți să vizualizați PDF-ul?"
106
 
107
+ # @ wpo_wcpdf
108
+ #: includes/class-wcpdf-settings.php:190
109
  msgid "Download the PDF"
110
  msgstr "Descarcă PDF"
111
 
112
+ # @ wpo_wcpdf
113
+ #: includes/class-wcpdf-settings.php:191
114
  msgid "Open the PDF in a new browser tab/window"
115
  msgstr "Deschideți PDF-ul într-o filă/fereastră nouă"
116
 
117
+ # @ wpo_wcpdf
118
+ #: includes/class-wcpdf-settings.php:201
119
  msgid "Attach invoice to:"
120
  msgstr "Atașați factura la:"
121
 
122
+ # @ wpo_wcpdf
123
+ #: includes/class-wcpdf-settings.php:209
124
  msgid "Admin New Order email"
125
  msgstr "Comanda nouă destinată Administratorului"
126
 
127
+ # @ wpo_wcpdf
128
+ #: includes/class-wcpdf-settings.php:210
129
  msgid "Customer Processing Order email"
130
  msgstr "Comanda trimisă clientului în momentul procesării acesteia"
131
 
132
+ # @ wpo_wcpdf
133
+ #: includes/class-wcpdf-settings.php:211
134
  msgid "Customer Completed Order email"
135
  msgstr "Comanda trimisă clientului în momentul finalizării acesteia"
136
 
137
+ # @ wpo_wcpdf
138
+ #: includes/class-wcpdf-settings.php:212
139
  msgid "Customer Invoice email"
140
  msgstr "Email-ul trimis cu factura finală"
141
 
142
+ # @ wpo_wcpdf
143
+ #: includes/class-wcpdf-settings.php:214
144
  #, php-format
145
+ msgid ""
146
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
147
+ "permissions for this folder! Without having write access to this folder, the "
148
+ "plugin will not be able to email invoices."
149
+ msgstr ""
150
+ "Se pare că folderul Temp (<code>%s</ code>) nu poate fi scris, verificați "
151
+ "permisiunile pentru acest folder! Fără a avea acces de scriere la acest "
152
+ "folder, plugin-ul nu va fi în măsură să trimita email-ul cu facturi."
153
 
154
+ # @ wpo_wcpdf
155
+ #: includes/class-wcpdf-settings.php:220
156
  msgid "Enable invoice number column in the orders list"
157
  msgstr "Activați coloana Număr de Factură din lista comenzilor"
158
 
159
+ # @ wpo_wcpdf
160
+ #: includes/class-wcpdf-settings.php:259
161
  msgid "PDF Template settings"
162
  msgstr "Setări șablon PDF"
163
 
164
+ # @ wpo_wcpdf
165
+ #: includes/class-wcpdf-settings.php:266
166
  msgid "Choose a template"
167
  msgstr "Alege un șablon"
168
 
169
+ # @ wpo_wcpdf
170
+ #: includes/class-wcpdf-settings.php:274
171
+ msgid ""
172
+ "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
173
+ "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
174
+ "woocommerce/pdf/yourtemplate/</code> to customize them"
175
+ msgstr ""
176
+ "Vreți sa utilizați propriul șablon? Copiați toate fișierele din "
177
+ "<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</ code> "
178
+ "în <code>yourtheme/woocommerce/pdf/yourtemplate/</ code> pentru a le "
179
+ "personaliza"
180
 
181
+ # @ wpo_wcpdf
182
+ #: includes/class-wcpdf-settings.php:280
183
  msgid "Paper size"
184
  msgstr "Dimensiune hârtie"
185
 
186
+ # @ wpo_wcpdf
187
+ #: includes/class-wcpdf-settings.php:288
188
  msgid "A4"
189
  msgstr "A4"
190
 
191
+ # @ wpo_wcpdf
192
+ #: includes/class-wcpdf-settings.php:289
193
  msgid "Letter"
194
  msgstr "Letter"
195
 
196
+ # @ wpo_wcpdf
197
+ #: includes/class-wcpdf-settings.php:296
198
  msgid "Shop header/logo"
199
  msgstr "Antet/Logo"
200
 
201
+ # @ wpo_wcpdf
202
+ #: includes/class-wcpdf-settings.php:303
203
  msgid "Select or upload your invoice header/logo"
204
  msgstr "Selectați sau încărcați propriul dvs. antet sau logo"
205
 
206
+ # @ wpo_wcpdf
207
+ #: includes/class-wcpdf-settings.php:304
208
  msgid "Set image"
209
  msgstr "Setare imagine"
210
 
211
+ # @ wpo_wcpdf
212
+ #: includes/class-wcpdf-settings.php:305
213
  msgid "Remove image"
214
  msgstr "Șterge imagine"
215
 
216
+ # @ wpo_wcpdf
217
+ #: includes/class-wcpdf-settings.php:312
218
  msgid "Shop Name"
219
  msgstr "Nume magazin"
220
 
221
+ # @ wpo_wcpdf
222
+ #: includes/class-wcpdf-settings.php:325
223
  msgid "Shop Address"
224
  msgstr "Adresă magazin"
225
 
226
+ # @ wpo_wcpdf
227
+ #: includes/class-wcpdf-settings.php:357
228
  msgid "Footer: terms & conditions, policies, etc."
229
+ msgstr ""
230
+ "Notă de subsol: termeni și condiții, politică de confidențialitate, etc."
231
 
232
+ # @ wpo_wcpdf
233
+ #: includes/class-wcpdf-settings.php:372
234
  msgid "Number to display on invoice"
235
  msgstr "Număr pentru a fi afișat pe factură"
236
 
237
+ # @ wpo_wcpdf
238
+ #: includes/class-wcpdf-settings.php:380
239
  msgid "WooCommerce order number"
240
  msgstr "Numărul de comandă WooCommerce"
241
 
242
+ # @ wpo_wcpdf
243
+ #: includes/class-wcpdf-settings.php:381
244
  msgid "Built-in sequential invoice number"
245
  msgstr "Număr de factură secvențial"
246
 
247
+ # @ wpo_wcpdf
248
+ #: includes/class-wcpdf-settings.php:383
249
+ msgid ""
250
+ "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
251
+ "WooCommerce order number"
252
+ msgstr ""
253
+ "Dacă utilizați plugin-ul WooCommerce Sequential Order Numbers, selectați "
254
+ "Numărul de comandă WooCommerce"
255
 
256
+ # @ wpo_wcpdf
257
+ #: includes/class-wcpdf-settings.php:389
258
  msgid "Next invoice number (without prefix/suffix etc.)"
259
  msgstr "Următorul număr de factură (fără prefix/sufix etc.)"
260
 
261
+ # @ wpo_wcpdf
262
+ #: includes/class-wcpdf-settings.php:397
263
+ msgid ""
264
+ "This is the number that will be used on the next invoice that is created. By "
265
+ "default, numbering starts from the WooCommerce Order Number of the first "
266
+ "invoice that is created and increases for every new invoice. Note that if "
267
+ "you override this and set it lower than the highest (PDF) invoice number, "
268
+ "this could create double invoice numbers!"
269
+ msgstr ""
270
+ "Acesta este numărul care va fi folosit la următoarea factură creată. În mod "
271
+ "implicit, numerotarea începe de la primul număr al Ordinului de comanda "
272
+ "WooCommerce creat și crește pentru fiecare nouă factură. Rețineți că, dacă "
273
+ "rescrieți factura și îi setați un număr mai mic decât cel mai mare număr de "
274
+ "factură (PDF), acest lucru ar putea crea un număr duplicat la factură!"
275
+
276
+ # @ wpo_wcpdf
277
+ #: includes/class-wcpdf-settings.php:403
278
+ #, fuzzy
279
+ msgid "Invoice number format"
280
+ msgstr "Număr factură"
281
+
282
+ #: includes/class-wcpdf-settings.php:412
283
+ msgid "Prefix"
284
+ msgstr ""
285
+
286
+ #: includes/class-wcpdf-settings.php:414
287
+ msgid ""
288
+ "to use the order year and/or month, use [order_year] or [order_month] "
289
+ "respectively"
290
+ msgstr ""
291
+
292
+ #: includes/class-wcpdf-settings.php:417
293
+ msgid "Suffix"
294
+ msgstr ""
295
+
296
+ #: includes/class-wcpdf-settings.php:422
297
+ msgid "Padding"
298
+ msgstr ""
299
+
300
+ #: includes/class-wcpdf-settings.php:424
301
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
302
+ msgstr ""
303
+
304
+ #: includes/class-wcpdf-settings.php:427
305
+ msgid ""
306
+ "note: if you have already created a custom invoice number format with a "
307
+ "filter, the above settings will be ignored"
308
+ msgstr ""
309
 
310
+ # @ wpo_wcpdf
311
+ #: includes/class-wcpdf-settings.php:435
312
  msgid "Date to display on invoice"
313
  msgstr "Dată pentru a afișa pe factură"
314
 
315
+ # @ wpo_wcpdf
316
+ #: includes/class-wcpdf-settings.php:443
317
  msgid "Order date"
318
  msgstr "Dată comandă"
319
 
320
+ # @ wpo_wcpdf
321
+ #: includes/class-wcpdf-settings.php:444
322
  msgid "Invoice date"
323
  msgstr "Dată factură"
324
 
325
+ # @ wpo_wcpdf
326
+ #: includes/class-wcpdf-settings.php:452
327
  msgid "Extra template fields"
328
  msgstr "Câmpuri suplimentare pentru șablon"
329
 
330
+ # @ wpo_wcpdf
331
+ #: includes/class-wcpdf-settings.php:459
332
  msgid "Extra field 1"
333
  msgstr "Câmp suplimentar 1"
334
 
335
+ # @ wpo_wcpdf
336
+ #: includes/class-wcpdf-settings.php:468
337
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
338
+ msgstr ""
339
+ "Aceasta este coloana 1 pentru nota de subsol, disponibilă în șablonul "
340
+ "<i>Modern (Premium)</ i>"
341
 
342
+ # @ wpo_wcpdf
343
+ #: includes/class-wcpdf-settings.php:474
344
  msgid "Extra field 2"
345
  msgstr "Câmp suplimentar 2"
346
 
347
+ # @ wpo_wcpdf
348
+ #: includes/class-wcpdf-settings.php:483
349
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
350
+ msgstr ""
351
+ "Aceasta este coloana 2 pentru nota de subsol, disponibilă în șablonul "
352
+ "<i>Modern (Premium)</ i>"
353
 
354
+ # @ wpo_wcpdf
355
+ #: includes/class-wcpdf-settings.php:489
356
  msgid "Extra field 3"
357
  msgstr "Câmp suplimentar 3"
358
 
359
+ # @ wpo_wcpdf
360
+ #: includes/class-wcpdf-settings.php:498
361
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
362
+ msgstr ""
363
+ "Aceasta este coloana 3 pentru nota de subsol, disponibilă în șablonul "
364
+ "<i>Modern (Premium)</ i>"
365
 
366
+ # @ default
367
+ #: includes/class-wcpdf-settings.php:755
368
  msgid "Image resolution"
369
  msgstr ""
370
 
371
+ # @ wpo_wcpdf
372
+ #: includes/class-wcpdf-settings.php:822
373
+ msgid ""
374
+ "These are used for the (optional) footer columns in the <em>Modern "
375
+ "(Premium)</em> template, but can also be used for other elements in your "
376
+ "custom template"
377
+ msgstr ""
378
+ "Acestea sunt utilizate pentru (opțional) coloanele notei de subsol din "
379
+ "șablonul <em>Modern (Premium)</ em>, dar poate fi de asemenea utilizat "
380
+ "pentru alte elemente în șablonul personalizat"
 
 
 
 
 
 
 
 
381
 
382
+ # @ wpo_wcpdf
383
  #: includes/class-wcpdf-writepanels.php:102
 
384
  msgid "Invoice Number"
385
  msgstr "Număr factură"
386
 
387
+ # @ wpo_wcpdf
388
  #: includes/class-wcpdf-writepanels.php:133
 
389
  msgid "Create PDF"
390
  msgstr "Crează PDF"
391
 
392
+ # @ wpo_wcpdf
393
  #: includes/class-wcpdf-writepanels.php:143
 
394
  msgid "Download invoice (PDF)"
395
  msgstr "Descarcă factură (PDF)"
396
 
397
+ # @ wpo_wcpdf
398
  #: includes/class-wcpdf-writepanels.php:157
399
+ msgid "PDF invoice"
 
400
  msgstr "Factură PDF"
401
 
402
+ # @ wpo_wcpdf
403
+ #: includes/class-wcpdf-writepanels.php:158
404
+ msgid "PDF Packing Slip"
405
+ msgstr "Ordin de comandă PDF"
406
+
407
+ # @ wpo_wcpdf
408
  #: includes/class-wcpdf-writepanels.php:175
409
  #: includes/class-wcpdf-writepanels.php:176
 
410
  msgid "PDF Packing Slips"
411
  msgstr "Ordine de comandă PDF"
412
 
413
+ # @ wpo_wcpdf
414
+ #: includes/class-wcpdf-writepanels.php:189
415
  msgid "PDF Invoice Number (unformatted!)"
416
  msgstr "Număr factură PDF (neformatat!)"
417
 
418
+ # @ wpo_wcpdf
419
  #: templates/pdf/Simple/html-document-wrapper.php:6
420
+ #: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
 
 
421
  msgid "Invoice"
422
  msgstr "Factură"
423
 
424
+ # @ wpo_wcpdf
425
  #: templates/pdf/Simple/html-document-wrapper.php:6
426
  #: templates/pdf/Simple/packing-slip.php:9
427
  #: templates/pdf/Simple/packing-slip.php:21
 
428
  msgid "Packing Slip"
429
  msgstr "Ordin de comandă"
430
 
431
+ # @ wpo_wcpdf
432
  #: templates/pdf/Simple/invoice.php:37
 
433
  msgid "Invoice Date:"
434
  msgstr "Dată factură:"
435
 
436
+ # @ wpo_wcpdf
437
  #: templates/pdf/Simple/invoice.php:40
438
  #: templates/pdf/Simple/packing-slip.php:30
 
439
  msgid "Order Date:"
440
  msgstr "Dată comandă:"
441
 
442
+ # @ wpo_wcpdf
443
  #: templates/pdf/Simple/invoice.php:46
 
444
  msgid "Invoice Number:"
445
  msgstr "Număr factură:"
446
 
447
+ # @ wpo_wcpdf
448
  #: templates/pdf/Simple/invoice.php:49
449
  #: templates/pdf/Simple/packing-slip.php:32
 
450
  msgid "Order Number:"
451
  msgstr "Număr comandă:"
452
 
453
+ # @ wpo_wcpdf
454
  #: templates/pdf/Simple/invoice.php:56
 
455
  msgid "Payment Method:"
456
  msgstr "Metodă de plată:"
457
 
458
+ # @ wpo_wcpdf
459
  #: templates/pdf/Simple/invoice.php:69
460
  #: templates/pdf/Simple/packing-slip.php:45
 
461
  msgid "Product"
462
  msgstr "Produs"
463
 
464
+ # @ wpo_wcpdf
465
  #: templates/pdf/Simple/invoice.php:70
466
  #: templates/pdf/Simple/packing-slip.php:46
 
467
  msgid "Quantity"
468
  msgstr "Cantitate"
469
 
470
+ # @ wpo_wcpdf
471
  #: templates/pdf/Simple/invoice.php:71
 
472
  msgid "Price"
473
  msgstr "Preț"
474
 
475
+ # @ wpo_wcpdf
476
  #: templates/pdf/Simple/invoice.php:77
 
477
  msgid "Description"
478
  msgstr "Descriere"
479
 
480
+ # @ wpo_wcpdf
481
  #: templates/pdf/Simple/invoice.php:80
482
  #: templates/pdf/Simple/packing-slip.php:54
 
483
  msgid "SKU:"
484
  msgstr "Cod produs (SKU):"
485
 
486
+ # @ wpo_wcpdf
487
  #: templates/pdf/Simple/invoice.php:81
488
  #: templates/pdf/Simple/packing-slip.php:55
 
489
  msgid "Weight:"
490
  msgstr "Greutate:"
491
 
492
+ # @ wpo_wcpdf
493
+ #: templates/pdf/Simple/invoice.php:113
494
  #: templates/pdf/Simple/packing-slip.php:69
 
495
  msgid "Customer Notes"
496
  msgstr "Notiță client"
497
 
498
+ # @ wpo_wcpdf
499
  #: woocommerce-pdf-invoices-packingslips.php:96
500
  #, php-format
501
+ msgid ""
502
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
503
+ "installed & activated!"
504
+ msgstr ""
505
+ "%sWooCommerce%s trebuie să fie instalat și activ pentru ca Factura PDF și "
506
+ "Ordinul de comandă WooCommerce să funcționeze."
507
 
508
+ # @ wpo_wcpdf
509
  #: woocommerce-pdf-invoices-packingslips.php:191
510
  #: woocommerce-pdf-invoices-packingslips.php:227
 
511
  msgid "N/A"
512
  msgstr "Nu se aplică (N/A)"
513
 
514
+ # @ wpo_wcpdf
515
  #: woocommerce-pdf-invoices-packingslips.php:249
 
516
  msgid "Payment method"
517
  msgstr "Metodă de plată"
518
 
519
+ # @ wpo_wcpdf
520
  #: woocommerce-pdf-invoices-packingslips.php:260
 
521
  msgid "Shipping method"
522
  msgstr "Metodă de livrare"
523
 
524
+ # @ wpo_wcpdf
525
  #: woocommerce-pdf-invoices-packingslips.php:360
 
526
  msgid "Subtotal"
527
  msgstr "Subtotal"
528
 
529
+ # @ wpo_wcpdf
530
  #: woocommerce-pdf-invoices-packingslips.php:382
 
531
  msgid "Shipping"
532
  msgstr "Transport"
533
 
534
+ # @ wpo_wcpdf
535
+ #: woocommerce-pdf-invoices-packingslips.php:416
536
  msgid "Discount"
537
  msgstr "Reducere"
538
 
539
+ # @ wpo_wcpdf
540
+ #: woocommerce-pdf-invoices-packingslips.php:455
541
  msgid "VAT"
542
  msgstr "TVA"
543
 
544
+ # @ default
545
+ #: woocommerce-pdf-invoices-packingslips.php:487
546
  msgid "Total ex. VAT"
547
  msgstr ""
548
 
549
+ # @ default
550
+ #: woocommerce-pdf-invoices-packingslips.php:490
551
  msgid "Total"
552
  msgstr ""
 
languages/wpo_wcpdf-ru_RU.mo CHANGED
Binary file
languages/wpo_wcpdf-ru_RU.po CHANGED
@@ -1,44 +1,44 @@
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-02-19 02:07+0200\n"
6
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.4\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/class-wcpdf-export.php: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 "Вы не имеете достаточно прав для доступа к этой странице."
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] "накладная"
30
  msgstr[1] "накладные"
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
- #: includes/class-wcpdf-export.php:182
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] "Счет-Фактура"
37
  msgstr[1] "Счета-Фактуры"
38
 
39
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
40
- #: includes/class-wcpdf-writepanels.php:131
41
- #: includes/class-wcpdf-writepanels.php:132
42
  msgid "PDF Invoices"
43
  msgstr "PDF Накладные"
44
 
@@ -46,19 +46,30 @@ msgstr "PDF Накладные"
46
  msgid "Settings"
47
  msgstr "Настройки"
48
 
49
- #: includes/class-wcpdf-settings.php:86
50
- msgid "WooCommerce PDF Invoices"
51
- msgstr "WooCommerce PDF Накладные"
52
-
53
- #: includes/class-wcpdf-settings.php:88
54
  msgid "General"
55
  msgstr "Основное"
56
 
57
- #: includes/class-wcpdf-settings.php:89
58
  msgid "Template"
59
  msgstr "Шаблон"
60
 
 
 
 
 
61
  #: includes/class-wcpdf-settings.php:98
 
 
 
 
 
 
 
 
 
 
 
62
  #, php-format
63
  msgid ""
64
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -67,48 +78,48 @@ msgstr ""
67
  "Ищите дополнительные шаблоны? Посмотрите премиум шаблоны от PDF Накладные и "
68
  "Счет-Фактуры на %s."
69
 
70
- #: includes/class-wcpdf-settings.php:99
71
  #, php-format
72
  msgid "For custom templates, contact us at %s."
73
  msgstr "По поводу индивидуальных шаблонов, свяжитесь с нами %s."
74
 
75
- #: includes/class-wcpdf-settings.php:153
76
  msgid "General settings"
77
  msgstr "Основные настройки"
78
 
79
- #: includes/class-wcpdf-settings.php:160
80
  msgid "How do you want to view the PDF?"
81
  msgstr "Как вы хотите просмотреть PDF?"
82
 
83
- #: includes/class-wcpdf-settings.php:168
84
  msgid "Download the PDF"
85
  msgstr "Скачать PDF"
86
 
87
- #: includes/class-wcpdf-settings.php:169
88
  msgid "Open the PDF in a new browser tab/window"
89
  msgstr "Открыть PDF в новой вкладке/окне браузера"
90
 
91
- #: includes/class-wcpdf-settings.php:179
92
  msgid "Attach invoice to:"
93
  msgstr "Прикрепить накладную к:"
94
 
95
- #: includes/class-wcpdf-settings.php:187
96
  msgid "Admin New Order email"
97
  msgstr "Email-у нового заказа админа"
98
 
99
- #: includes/class-wcpdf-settings.php:188
100
  msgid "Customer Processing Order email"
101
  msgstr "Email-у заказа клиента в обработке"
102
 
103
- #: includes/class-wcpdf-settings.php:189
104
  msgid "Customer Completed Order email"
105
  msgstr "Email-у завершенного заказа клиента"
106
 
107
- #: includes/class-wcpdf-settings.php:190
108
  msgid "Customer Invoice email"
109
  msgstr "Email-у накладной клиента"
110
 
111
- #: includes/class-wcpdf-settings.php:192
112
  #, php-format
113
  msgid ""
114
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -119,15 +130,19 @@ msgstr ""
119
  "доступ к папке. Без доступа записи к данной папки, плагин не сможет отсылать "
120
  "накладные по Email."
121
 
122
- #: includes/class-wcpdf-settings.php:224
 
 
 
 
123
  msgid "PDF Template settings"
124
  msgstr "PDF Настройки шаблона"
125
 
126
- #: includes/class-wcpdf-settings.php:231
127
  msgid "Choose a template"
128
  msgstr "Выберите шаблон"
129
 
130
- #: includes/class-wcpdf-settings.php:239
131
  msgid ""
132
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
133
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -137,59 +152,59 @@ msgstr ""
137
  "pdf-invoices-packing-slips/templates/pdf/Simple/</code> в <code>ваша_тема/"
138
  "woocommerce/pdf/название_шаблона/</code> и настройте по своему усмотрению."
139
 
140
- #: includes/class-wcpdf-settings.php:245
141
  msgid "Paper size"
142
  msgstr "Размер бумаги"
143
 
144
- #: includes/class-wcpdf-settings.php:253
145
  msgid "A4"
146
  msgstr "A4"
147
 
148
- #: includes/class-wcpdf-settings.php:254
149
  msgid "Letter"
150
  msgstr "Письмо"
151
 
152
- #: includes/class-wcpdf-settings.php:261
153
  msgid "Shop header/logo"
154
  msgstr "Логотип в шапке документа"
155
 
156
- #: includes/class-wcpdf-settings.php:268
157
  msgid "Select or upload your invoice header/logo"
158
  msgstr "Выберите чтобы загрузить шапку/логотип для накладной"
159
 
160
- #: includes/class-wcpdf-settings.php:269
161
  msgid "Set image"
162
  msgstr "Установить изображение"
163
 
164
- #: includes/class-wcpdf-settings.php:270
165
  msgid "Remove image"
166
  msgstr "Удалить изображение"
167
 
168
- #: includes/class-wcpdf-settings.php:277
169
  msgid "Shop Name"
170
  msgstr "Название магазина"
171
 
172
- #: includes/class-wcpdf-settings.php:290
173
  msgid "Shop Address"
174
  msgstr "Адрес магазина"
175
 
176
- #: includes/class-wcpdf-settings.php:322
177
  msgid "Footer: terms & conditions, policies, etc."
178
  msgstr "Подвал: термины, условия, политика и тд."
179
 
180
- #: includes/class-wcpdf-settings.php:337
181
  msgid "Number to display on invoice"
182
  msgstr "Номер для отображения в накладной"
183
 
184
- #: includes/class-wcpdf-settings.php:345
185
  msgid "WooCommerce order number"
186
  msgstr "WooCommerce номер заказа"
187
 
188
- #: includes/class-wcpdf-settings.php:346
189
  msgid "Built-in sequential invoice number"
190
  msgstr "Встроенный секвенсор номеров накладной"
191
 
192
- #: includes/class-wcpdf-settings.php:348
193
  msgid ""
194
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
195
  "WooCommerce order number"
@@ -197,74 +212,103 @@ msgstr ""
197
  "Если вы используете WooCommerce Sequential Order Numbers плагин, выберите "
198
  "WooCommerce номер заказа"
199
 
200
- #: includes/class-wcpdf-settings.php:354
201
  msgid "Next invoice number (without prefix/suffix etc.)"
202
  msgstr "Следующий номер накладной (без префикса/суффикса и тд.)"
203
 
204
- #: includes/class-wcpdf-settings.php:362
205
  msgid ""
206
  "This is the number that will be used on the next invoice that is created. By "
207
  "default, numbering starts from the WooCommerce Order Number of the first "
208
  "invoice that is created and increases for every new invoice. Note that if "
209
  "you override this and set it lower than the highest (PDF) invoice number, "
210
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
211
- "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
212
- "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
213
  msgstr ""
214
  "Это номер, который будет использоваться для следующей созданной накладной. "
215
  "По умолчанию, нумерация начинается с первой созданной накладной основываясь "
216
  "на WooCommerce номере заказа, дальше число увеличивается с каждой новой "
217
  "накладной. Заметьте, если вы перезаписываете это поле и устанавливаете "
218
  "значение ниже чем самый большой номер (PDF) накладной, это может привести к "
219
- "созданию дублированной накладной!<br/>Смотрите <a href=\"http://wordpress."
220
- "org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank"
221
- "\">FAQ</a>, чтобы узнать как форматировать номер накладной."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
- #: includes/class-wcpdf-settings.php:369
 
 
 
 
 
 
224
  msgid "Date to display on invoice"
225
  msgstr "Дата для отображения в накладной"
226
 
227
- #: includes/class-wcpdf-settings.php:377
228
  msgid "Order date"
229
  msgstr "Дата заказа"
230
 
231
- #: includes/class-wcpdf-settings.php:378
232
  msgid "Invoice date"
233
  msgstr "Дата накладной"
234
 
235
- #: includes/class-wcpdf-settings.php:386
236
  msgid "Extra template fields"
237
  msgstr "Дополнительные поля шаблона"
238
 
239
- #: includes/class-wcpdf-settings.php:393
240
  msgid "Extra field 1"
241
  msgstr "Дополнительное поле 1"
242
 
243
- #: includes/class-wcpdf-settings.php:402
244
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
245
  msgstr "Это колонка 1 в подвале документа для <i>Modern (Premium)</i> шаблонов"
246
 
247
- #: includes/class-wcpdf-settings.php:408
248
  msgid "Extra field 2"
249
  msgstr "Дополнительное поле 2"
250
 
251
- #: includes/class-wcpdf-settings.php:417
252
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
253
  msgstr "Это колонка 2 в подвале документа для <i>Modern (Premium)</i> шаблонов"
254
 
255
- #: includes/class-wcpdf-settings.php:423
256
  msgid "Extra field 3"
257
  msgstr "Дополнительное поле 3"
258
 
259
- #: includes/class-wcpdf-settings.php:432
260
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
261
  msgstr "Это колонка 3 в подвале документа для <i>Modern (Premium)</i> шаблонов"
262
 
263
- #: includes/class-wcpdf-settings.php:689
264
  msgid "Image resolution"
265
  msgstr "Разрешение изображения"
266
 
267
- #: includes/class-wcpdf-settings.php:719
268
  msgid ""
269
  "These are used for the (optional) footer columns in the <em>Modern "
270
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -274,29 +318,35 @@ msgstr ""
274
  "<em>Modern (Premium)</em> шаблонов, но вы также можете использовать этот "
275
  "блок для вывода в индивидуальном шаблоне."
276
 
277
- #: includes/class-wcpdf-writepanels.php:92
 
 
 
 
 
278
  msgid "Create PDF"
279
  msgstr "Создать PDF"
280
 
281
- #: includes/class-wcpdf-writepanels.php:101
282
  msgid "Download invoice (PDF)"
283
  msgstr "Скачать накладную (PDF)"
284
 
285
- #: includes/class-wcpdf-writepanels.php:115
286
  msgid "PDF invoice"
287
  msgstr "PDF Накладная"
288
 
289
- #: includes/class-wcpdf-writepanels.php:116
290
  msgid "PDF Packing Slip"
291
  msgstr "PDF Счет-Фактура"
292
 
293
- #: includes/class-wcpdf-writepanels.php:133
294
- #: includes/class-wcpdf-writepanels.php:134
295
  msgid "PDF Packing Slips"
296
  msgstr "PDF Счета-Фактуры"
297
 
298
- #: includes/class-wcpdf-writepanels.php:145
299
- msgid "PDF Invoice Number"
 
300
  msgstr "PDF Номер накладной"
301
 
302
  #: templates/pdf/Simple/html-document-wrapper.php:6
@@ -346,12 +396,16 @@ msgstr "Количество"
346
  msgid "Price"
347
  msgstr "Цена"
348
 
349
- #: templates/pdf/Simple/invoice.php:79
 
 
 
 
350
  #: templates/pdf/Simple/packing-slip.php:54
351
  msgid "SKU:"
352
  msgstr "ИТП:"
353
 
354
- #: templates/pdf/Simple/invoice.php:80
355
  #: templates/pdf/Simple/packing-slip.php:55
356
  msgid "Weight:"
357
  msgstr "Вес:"
@@ -375,23 +429,37 @@ msgstr ""
375
  msgid "N/A"
376
  msgstr "N/A"
377
 
378
- #: woocommerce-pdf-invoices-packingslips.php:359
 
 
 
 
 
 
 
 
 
 
379
  msgid "Subtotal"
380
  msgstr "Промежуточный итог"
381
 
382
- #: woocommerce-pdf-invoices-packingslips.php:381
383
  msgid "Shipping"
384
  msgstr "Доставка"
385
 
386
- #: woocommerce-pdf-invoices-packingslips.php:400
387
  msgid "Discount"
388
  msgstr "Скидка"
389
 
390
- #: woocommerce-pdf-invoices-packingslips.php:469
 
 
 
 
391
  msgid "Total ex. VAT"
392
  msgstr "Всего отл. НДС"
393
 
394
- #: woocommerce-pdf-invoices-packingslips.php:472
395
  msgid "Total"
396
  msgstr "Итого"
397
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-05-12 22:20+0100\n"
5
+ "PO-Revision-Date: 2014-05-12 22:20+0100\n"
6
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
20
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
21
+ #: includes/class-wcpdf-export.php:185
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Вы не имеете достаточно прав для доступа к этой странице."
24
 
25
  # This is a filename (prefix). do not use spaces or special characters!
26
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] "накладная"
30
  msgstr[1] "накладные"
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
+ #: includes/class-wcpdf-export.php:208
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] "Счет-Фактура"
37
  msgstr[1] "Счета-Фактуры"
38
 
39
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
40
+ #: includes/class-wcpdf-writepanels.php:173
41
+ #: includes/class-wcpdf-writepanels.php:174
42
  msgid "PDF Invoices"
43
  msgstr "PDF Накладные"
44
 
46
  msgid "Settings"
47
  msgstr "Настройки"
48
 
49
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
50
  msgid "General"
51
  msgstr "Основное"
52
 
53
+ #: includes/class-wcpdf-settings.php:83
54
  msgid "Template"
55
  msgstr "Шаблон"
56
 
57
+ #: includes/class-wcpdf-settings.php:92
58
+ msgid "WooCommerce PDF Invoices"
59
+ msgstr "WooCommerce PDF Накладные"
60
+
61
  #: includes/class-wcpdf-settings.php:98
62
+ msgid "Status"
63
+ msgstr ""
64
+
65
+ #: includes/class-wcpdf-settings.php:109
66
+ #, php-format
67
+ msgid ""
68
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
69
+ "extension."
70
+ msgstr ""
71
+
72
+ #: includes/class-wcpdf-settings.php:119
73
  #, php-format
74
  msgid ""
75
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
78
  "Ищите дополнительные шаблоны? Посмотрите премиум шаблоны от PDF Накладные и "
79
  "Счет-Фактуры на %s."
80
 
81
+ #: includes/class-wcpdf-settings.php:120
82
  #, php-format
83
  msgid "For custom templates, contact us at %s."
84
  msgstr "По поводу индивидуальных шаблонов, свяжитесь с нами %s."
85
 
86
+ #: includes/class-wcpdf-settings.php:175
87
  msgid "General settings"
88
  msgstr "Основные настройки"
89
 
90
+ #: includes/class-wcpdf-settings.php:182
91
  msgid "How do you want to view the PDF?"
92
  msgstr "Как вы хотите просмотреть PDF?"
93
 
94
+ #: includes/class-wcpdf-settings.php:190
95
  msgid "Download the PDF"
96
  msgstr "Скачать PDF"
97
 
98
+ #: includes/class-wcpdf-settings.php:191
99
  msgid "Open the PDF in a new browser tab/window"
100
  msgstr "Открыть PDF в новой вкладке/окне браузера"
101
 
102
+ #: includes/class-wcpdf-settings.php:201
103
  msgid "Attach invoice to:"
104
  msgstr "Прикрепить накладную к:"
105
 
106
+ #: includes/class-wcpdf-settings.php:209
107
  msgid "Admin New Order email"
108
  msgstr "Email-у нового заказа админа"
109
 
110
+ #: includes/class-wcpdf-settings.php:210
111
  msgid "Customer Processing Order email"
112
  msgstr "Email-у заказа клиента в обработке"
113
 
114
+ #: includes/class-wcpdf-settings.php:211
115
  msgid "Customer Completed Order email"
116
  msgstr "Email-у завершенного заказа клиента"
117
 
118
+ #: includes/class-wcpdf-settings.php:212
119
  msgid "Customer Invoice email"
120
  msgstr "Email-у накладной клиента"
121
 
122
+ #: includes/class-wcpdf-settings.php:214
123
  #, php-format
124
  msgid ""
125
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
130
  "доступ к папке. Без доступа записи к данной папки, плагин не сможет отсылать "
131
  "накладные по Email."
132
 
133
+ #: includes/class-wcpdf-settings.php:220
134
+ msgid "Enable invoice number column in the orders list"
135
+ msgstr ""
136
+
137
+ #: includes/class-wcpdf-settings.php:259
138
  msgid "PDF Template settings"
139
  msgstr "PDF Настройки шаблона"
140
 
141
+ #: includes/class-wcpdf-settings.php:266
142
  msgid "Choose a template"
143
  msgstr "Выберите шаблон"
144
 
145
+ #: includes/class-wcpdf-settings.php:274
146
  msgid ""
147
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
148
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
152
  "pdf-invoices-packing-slips/templates/pdf/Simple/</code> в <code>ваша_тема/"
153
  "woocommerce/pdf/название_шаблона/</code> и настройте по своему усмотрению."
154
 
155
+ #: includes/class-wcpdf-settings.php:280
156
  msgid "Paper size"
157
  msgstr "Размер бумаги"
158
 
159
+ #: includes/class-wcpdf-settings.php:288
160
  msgid "A4"
161
  msgstr "A4"
162
 
163
+ #: includes/class-wcpdf-settings.php:289
164
  msgid "Letter"
165
  msgstr "Письмо"
166
 
167
+ #: includes/class-wcpdf-settings.php:296
168
  msgid "Shop header/logo"
169
  msgstr "Логотип в шапке документа"
170
 
171
+ #: includes/class-wcpdf-settings.php:303
172
  msgid "Select or upload your invoice header/logo"
173
  msgstr "Выберите чтобы загрузить шапку/логотип для накладной"
174
 
175
+ #: includes/class-wcpdf-settings.php:304
176
  msgid "Set image"
177
  msgstr "Установить изображение"
178
 
179
+ #: includes/class-wcpdf-settings.php:305
180
  msgid "Remove image"
181
  msgstr "Удалить изображение"
182
 
183
+ #: includes/class-wcpdf-settings.php:312
184
  msgid "Shop Name"
185
  msgstr "Название магазина"
186
 
187
+ #: includes/class-wcpdf-settings.php:325
188
  msgid "Shop Address"
189
  msgstr "Адрес магазина"
190
 
191
+ #: includes/class-wcpdf-settings.php:357
192
  msgid "Footer: terms & conditions, policies, etc."
193
  msgstr "Подвал: термины, условия, политика и тд."
194
 
195
+ #: includes/class-wcpdf-settings.php:372
196
  msgid "Number to display on invoice"
197
  msgstr "Номер для отображения в накладной"
198
 
199
+ #: includes/class-wcpdf-settings.php:380
200
  msgid "WooCommerce order number"
201
  msgstr "WooCommerce номер заказа"
202
 
203
+ #: includes/class-wcpdf-settings.php:381
204
  msgid "Built-in sequential invoice number"
205
  msgstr "Встроенный секвенсор номеров накладной"
206
 
207
+ #: includes/class-wcpdf-settings.php:383
208
  msgid ""
209
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
210
  "WooCommerce order number"
212
  "Если вы используете WooCommerce Sequential Order Numbers плагин, выберите "
213
  "WooCommerce номер заказа"
214
 
215
+ #: includes/class-wcpdf-settings.php:389
216
  msgid "Next invoice number (without prefix/suffix etc.)"
217
  msgstr "Следующий номер накладной (без префикса/суффикса и тд.)"
218
 
219
+ #: includes/class-wcpdf-settings.php:397
220
  msgid ""
221
  "This is the number that will be used on the next invoice that is created. By "
222
  "default, numbering starts from the WooCommerce Order Number of the first "
223
  "invoice that is created and increases for every new invoice. Note that if "
224
  "you override this and set it lower than the highest (PDF) invoice number, "
225
+ "this could create double invoice numbers!"
 
 
226
  msgstr ""
227
  "Это номер, который будет использоваться для следующей созданной накладной. "
228
  "По умолчанию, нумерация начинается с первой созданной накладной основываясь "
229
  "на WooCommerce номере заказа, дальше число увеличивается с каждой новой "
230
  "накладной. Заметьте, если вы перезаписываете это поле и устанавливаете "
231
  "значение ниже чем самый большой номер (PDF) накладной, это может привести к "
232
+ "созданию дублированной накладной!"
233
+
234
+ #: includes/class-wcpdf-settings.php:403
235
+ #, fuzzy
236
+ msgid "Invoice number format"
237
+ msgstr "Номер накладной:"
238
+
239
+ #: includes/class-wcpdf-settings.php:412
240
+ msgid "Prefix"
241
+ msgstr ""
242
+
243
+ #: includes/class-wcpdf-settings.php:414
244
+ msgid ""
245
+ "to use the order year and/or month, use [order_year] or [order_month] "
246
+ "respectively"
247
+ msgstr ""
248
+
249
+ #: includes/class-wcpdf-settings.php:417
250
+ msgid "Suffix"
251
+ msgstr ""
252
+
253
+ #: includes/class-wcpdf-settings.php:422
254
+ msgid "Padding"
255
+ msgstr ""
256
+
257
+ #: includes/class-wcpdf-settings.php:424
258
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
259
+ msgstr ""
260
 
261
+ #: includes/class-wcpdf-settings.php:427
262
+ msgid ""
263
+ "note: if you have already created a custom invoice number format with a "
264
+ "filter, the above settings will be ignored"
265
+ msgstr ""
266
+
267
+ #: includes/class-wcpdf-settings.php:435
268
  msgid "Date to display on invoice"
269
  msgstr "Дата для отображения в накладной"
270
 
271
+ #: includes/class-wcpdf-settings.php:443
272
  msgid "Order date"
273
  msgstr "Дата заказа"
274
 
275
+ #: includes/class-wcpdf-settings.php:444
276
  msgid "Invoice date"
277
  msgstr "Дата накладной"
278
 
279
+ #: includes/class-wcpdf-settings.php:452
280
  msgid "Extra template fields"
281
  msgstr "Дополнительные поля шаблона"
282
 
283
+ #: includes/class-wcpdf-settings.php:459
284
  msgid "Extra field 1"
285
  msgstr "Дополнительное поле 1"
286
 
287
+ #: includes/class-wcpdf-settings.php:468
288
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
289
  msgstr "Это колонка 1 в подвале документа для <i>Modern (Premium)</i> шаблонов"
290
 
291
+ #: includes/class-wcpdf-settings.php:474
292
  msgid "Extra field 2"
293
  msgstr "Дополнительное поле 2"
294
 
295
+ #: includes/class-wcpdf-settings.php:483
296
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
297
  msgstr "Это колонка 2 в подвале документа для <i>Modern (Premium)</i> шаблонов"
298
 
299
+ #: includes/class-wcpdf-settings.php:489
300
  msgid "Extra field 3"
301
  msgstr "Дополнительное поле 3"
302
 
303
+ #: includes/class-wcpdf-settings.php:498
304
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
305
  msgstr "Это колонка 3 в подвале документа для <i>Modern (Premium)</i> шаблонов"
306
 
307
+ #: includes/class-wcpdf-settings.php:755
308
  msgid "Image resolution"
309
  msgstr "Разрешение изображения"
310
 
311
+ #: includes/class-wcpdf-settings.php:822
312
  msgid ""
313
  "These are used for the (optional) footer columns in the <em>Modern "
314
  "(Premium)</em> template, but can also be used for other elements in your "
318
  "<em>Modern (Premium)</em> шаблонов, но вы также можете использовать этот "
319
  "блок для вывода в индивидуальном шаблоне."
320
 
321
+ #: includes/class-wcpdf-writepanels.php:102
322
+ #, fuzzy
323
+ msgid "Invoice Number"
324
+ msgstr "Номер накладной:"
325
+
326
+ #: includes/class-wcpdf-writepanels.php:133
327
  msgid "Create PDF"
328
  msgstr "Создать PDF"
329
 
330
+ #: includes/class-wcpdf-writepanels.php:143
331
  msgid "Download invoice (PDF)"
332
  msgstr "Скачать накладную (PDF)"
333
 
334
+ #: includes/class-wcpdf-writepanels.php:157
335
  msgid "PDF invoice"
336
  msgstr "PDF Накладная"
337
 
338
+ #: includes/class-wcpdf-writepanels.php:158
339
  msgid "PDF Packing Slip"
340
  msgstr "PDF Счет-Фактура"
341
 
342
+ #: includes/class-wcpdf-writepanels.php:175
343
+ #: includes/class-wcpdf-writepanels.php:176
344
  msgid "PDF Packing Slips"
345
  msgstr "PDF Счета-Фактуры"
346
 
347
+ #: includes/class-wcpdf-writepanels.php:189
348
+ #, fuzzy
349
+ msgid "PDF Invoice Number (unformatted!)"
350
  msgstr "PDF Номер накладной"
351
 
352
  #: templates/pdf/Simple/html-document-wrapper.php:6
396
  msgid "Price"
397
  msgstr "Цена"
398
 
399
+ #: templates/pdf/Simple/invoice.php:77
400
+ msgid "Description"
401
+ msgstr ""
402
+
403
+ #: templates/pdf/Simple/invoice.php:80
404
  #: templates/pdf/Simple/packing-slip.php:54
405
  msgid "SKU:"
406
  msgstr "ИТП:"
407
 
408
+ #: templates/pdf/Simple/invoice.php:81
409
  #: templates/pdf/Simple/packing-slip.php:55
410
  msgid "Weight:"
411
  msgstr "Вес:"
429
  msgid "N/A"
430
  msgstr "N/A"
431
 
432
+ #: woocommerce-pdf-invoices-packingslips.php:249
433
+ #, fuzzy
434
+ msgid "Payment method"
435
+ msgstr "Метод оплаты:"
436
+
437
+ #: woocommerce-pdf-invoices-packingslips.php:260
438
+ #, fuzzy
439
+ msgid "Shipping method"
440
+ msgstr "Доставка"
441
+
442
+ #: woocommerce-pdf-invoices-packingslips.php:360
443
  msgid "Subtotal"
444
  msgstr "Промежуточный итог"
445
 
446
+ #: woocommerce-pdf-invoices-packingslips.php:382
447
  msgid "Shipping"
448
  msgstr "Доставка"
449
 
450
+ #: woocommerce-pdf-invoices-packingslips.php:416
451
  msgid "Discount"
452
  msgstr "Скидка"
453
 
454
+ #: woocommerce-pdf-invoices-packingslips.php:455
455
+ msgid "VAT"
456
+ msgstr ""
457
+
458
+ #: woocommerce-pdf-invoices-packingslips.php:487
459
  msgid "Total ex. VAT"
460
  msgstr "Всего отл. НДС"
461
 
462
+ #: woocommerce-pdf-invoices-packingslips.php:490
463
  msgid "Total"
464
  msgstr "Итого"
465
 
languages/wpo_wcpdf-sk_SK.mo CHANGED
Binary file
languages/wpo_wcpdf-sk_SK.po CHANGED
@@ -2,8 +2,8 @@ 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"
@@ -11,7 +11,7 @@ msgstr ""
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"
@@ -20,15 +20,15 @@ msgstr ""
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"
@@ -37,7 +37,7 @@ 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"
@@ -76,10 +76,17 @@ msgstr "WooCommerce PDF faktúry"
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 ""
@@ -87,58 +94,58 @@ msgstr ""
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 "
@@ -150,22 +157,22 @@ msgstr ""
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/"
@@ -176,72 +183,72 @@ msgstr ""
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"
@@ -250,86 +257,115 @@ msgstr ""
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 "
262
  "invoice that is created and increases for every new invoice. Note that if "
263
  "you override this and set it lower than the highest (PDF) invoice number, "
264
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
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 má ď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 "
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-05-12 22:20+0100\n"
6
+ "PO-Revision-Date: 2014-05-12 22:20+0100\n"
7
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
8
  "Language-Team: KubiQ <7kubiq7@gmail.com>\n"
9
  "Language: sk_SK\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.5\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"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ wpo_wcpdf
23
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
24
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
25
+ #: includes/class-wcpdf-export.php:185
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:206 includes/class-wcpdf-export.php:285
32
  msgid "invoice"
33
  msgid_plural "invoices"
34
  msgstr[0] "faktury"
37
 
38
  # This is a filename (prefix). do not use spaces or special characters!
39
  # @ wpo_wcpdf
40
+ #: includes/class-wcpdf-export.php:208
41
  msgid "packing-slip"
42
  msgid_plural "packing-slips"
43
  msgstr[0] "dodacie-listy"
76
  msgid "Status"
77
  msgstr "Stav"
78
 
 
79
  #: includes/class-wcpdf-settings.php:109
80
  #, php-format
81
  msgid ""
82
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
83
+ "extension."
84
+ msgstr ""
85
+
86
+ # @ wpo_wcpdf
87
+ #: includes/class-wcpdf-settings.php:119
88
+ #, php-format
89
+ msgid ""
90
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
91
  "Packing Slips templates at %s."
92
  msgstr ""
94
  "šablóny na stránke %s."
95
 
96
  # @ wpo_wcpdf
97
+ #: includes/class-wcpdf-settings.php:120
98
  #, php-format
99
  msgid "For custom templates, contact us at %s."
100
  msgstr "Ak chcete šablónu na mieru, kontaktuje nás na %s."
101
 
102
  # @ wpo_wcpdf
103
+ #: includes/class-wcpdf-settings.php:175
104
  msgid "General settings"
105
  msgstr "Všeobecné nastavenia"
106
 
107
  # @ wpo_wcpdf
108
+ #: includes/class-wcpdf-settings.php:182
109
  msgid "How do you want to view the PDF?"
110
  msgstr "Ako chcete zobraziť PDF?"
111
 
112
  # @ wpo_wcpdf
113
+ #: includes/class-wcpdf-settings.php:190
114
  msgid "Download the PDF"
115
  msgstr "Stiahnuť PDF"
116
 
117
  # @ wpo_wcpdf
118
+ #: includes/class-wcpdf-settings.php:191
119
  msgid "Open the PDF in a new browser tab/window"
120
  msgstr "Otvoriť PDF v novom okne"
121
 
122
  # @ wpo_wcpdf
123
+ #: includes/class-wcpdf-settings.php:201
124
  msgid "Attach invoice to:"
125
  msgstr "Priložiť faktúru k správam pre:"
126
 
127
  # @ wpo_wcpdf
128
+ #: includes/class-wcpdf-settings.php:209
129
  msgid "Admin New Order email"
130
  msgstr "administrátora - e-mail pri vytvorení novej objednávky"
131
 
132
  # @ wpo_wcpdf
133
+ #: includes/class-wcpdf-settings.php:210
134
  msgid "Customer Processing Order email"
135
  msgstr "zákazníka - e-mail pri prijatí objednávky"
136
 
137
  # @ wpo_wcpdf
138
+ #: includes/class-wcpdf-settings.php:211
139
  msgid "Customer Completed Order email"
140
  msgstr "zákazníka - e-mail pri vybavení objednávky"
141
 
142
  # @ wpo_wcpdf
143
+ #: includes/class-wcpdf-settings.php:212
144
  msgid "Customer Invoice email"
145
  msgstr "zákazníka - e-mail pri vytvorení faktúry"
146
 
147
  # @ wpo_wcpdf
148
+ #: includes/class-wcpdf-settings.php:214
149
  #, php-format
150
  msgid ""
151
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
157
  "priečinku, nebude možné odosielať faktúry e-mailom."
158
 
159
  # @ wpo_wcpdf
160
+ #: includes/class-wcpdf-settings.php:220
161
  msgid "Enable invoice number column in the orders list"
162
  msgstr "Zobraziť stĺpec s číslom faktúry v objednávkach"
163
 
164
  # @ wpo_wcpdf
165
+ #: includes/class-wcpdf-settings.php:259
166
  msgid "PDF Template settings"
167
  msgstr "Nastavenia PDF šablón"
168
 
169
  # @ wpo_wcpdf
170
+ #: includes/class-wcpdf-settings.php:266
171
  msgid "Choose a template"
172
  msgstr "Zvoľte šablónu"
173
 
174
  # @ wpo_wcpdf
175
+ #: includes/class-wcpdf-settings.php:274
176
  msgid ""
177
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
178
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
183
  "woocommerce/pdf/yourtemplate/</code> a upravte ich podľa potreby"
184
 
185
  # @ wpo_wcpdf
186
+ #: includes/class-wcpdf-settings.php:280
187
  msgid "Paper size"
188
  msgstr "Veľkosť papiera"
189
 
190
  # @ wpo_wcpdf
191
+ #: includes/class-wcpdf-settings.php:288
192
  msgid "A4"
193
  msgstr "A4"
194
 
195
  # @ wpo_wcpdf
196
+ #: includes/class-wcpdf-settings.php:289
197
  msgid "Letter"
198
  msgstr "Letter"
199
 
200
  # @ wpo_wcpdf
201
+ #: includes/class-wcpdf-settings.php:296
202
  msgid "Shop header/logo"
203
  msgstr "Hlavička / logo"
204
 
205
  # @ wpo_wcpdf
206
+ #: includes/class-wcpdf-settings.php:303
207
  msgid "Select or upload your invoice header/logo"
208
  msgstr "Vyberte alebo nahrajte hlavičku / logo vo faktúre"
209
 
210
  # @ wpo_wcpdf
211
+ #: includes/class-wcpdf-settings.php:304
212
  msgid "Set image"
213
  msgstr "Zvoliť obrázok"
214
 
215
  # @ wpo_wcpdf
216
+ #: includes/class-wcpdf-settings.php:305
217
  msgid "Remove image"
218
  msgstr "Odstrániť obrázok"
219
 
220
  # @ wpo_wcpdf
221
+ #: includes/class-wcpdf-settings.php:312
222
  msgid "Shop Name"
223
  msgstr "Názov obchodu"
224
 
225
  # @ wpo_wcpdf
226
+ #: includes/class-wcpdf-settings.php:325
227
  msgid "Shop Address"
228
  msgstr "Adresa obchodu"
229
 
230
  # @ wpo_wcpdf
231
+ #: includes/class-wcpdf-settings.php:357
232
  msgid "Footer: terms & conditions, policies, etc."
233
  msgstr "Pätička: obchodné podmienky, ochrana osobných údajov, atď."
234
 
235
  # @ wpo_wcpdf
236
+ #: includes/class-wcpdf-settings.php:372
237
  msgid "Number to display on invoice"
238
  msgstr "Číslo zobrazené vo faktúre"
239
 
240
  # @ wpo_wcpdf
241
+ #: includes/class-wcpdf-settings.php:380
242
  msgid "WooCommerce order number"
243
  msgstr "Číslo objednávky"
244
 
245
  # @ wpo_wcpdf
246
+ #: includes/class-wcpdf-settings.php:381
247
  msgid "Built-in sequential invoice number"
248
  msgstr "Poradové číslo faktúry"
249
 
250
  # @ wpo_wcpdf
251
+ #: includes/class-wcpdf-settings.php:383
252
  msgid ""
253
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
254
  "WooCommerce order number"
257
  "Číslo objednávky"
258
 
259
  # @ wpo_wcpdf
260
+ #: includes/class-wcpdf-settings.php:389
261
  msgid "Next invoice number (without prefix/suffix etc.)"
262
  msgstr "Ďalšie číslo faktúry (bez predpony/prípony)"
263
 
264
  # @ wpo_wcpdf
265
+ #: includes/class-wcpdf-settings.php:397
266
  msgid ""
267
  "This is the number that will be used on the next invoice that is created. By "
268
  "default, numbering starts from the WooCommerce Order Number of the first "
269
  "invoice that is created and increases for every new invoice. Note that if "
270
  "you override this and set it lower than the highest (PDF) invoice number, "
271
+ "this could create double invoice numbers!"
 
 
272
  msgstr ""
273
  "Toto číslo bude použité v ďalšej vytvorenej faktúre. Číslovanie začína prvou "
274
  "vytvorenou faktúrou a narastá každou ďalšou vytvorenou faktúrou. POZOR: Ak "
275
  "toto prepíšete a nastavíte hodnotu na menšiu ako má ďalšia vytvorená "
276
+ "faktúra, môže dôjsť k zdvojeniu číslovania vo faktúrach!"
 
 
 
277
 
278
  # @ wpo_wcpdf
279
+ #: includes/class-wcpdf-settings.php:403
280
+ #, fuzzy
281
+ msgid "Invoice number format"
282
+ msgstr "Číslo faktúry"
283
+
284
+ #: includes/class-wcpdf-settings.php:412
285
+ msgid "Prefix"
286
+ msgstr ""
287
+
288
+ #: includes/class-wcpdf-settings.php:414
289
+ msgid ""
290
+ "to use the order year and/or month, use [order_year] or [order_month] "
291
+ "respectively"
292
+ msgstr ""
293
+
294
+ #: includes/class-wcpdf-settings.php:417
295
+ msgid "Suffix"
296
+ msgstr ""
297
+
298
+ #: includes/class-wcpdf-settings.php:422
299
+ msgid "Padding"
300
+ msgstr ""
301
+
302
+ #: includes/class-wcpdf-settings.php:424
303
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
304
+ msgstr ""
305
+
306
+ #: includes/class-wcpdf-settings.php:427
307
+ msgid ""
308
+ "note: if you have already created a custom invoice number format with a "
309
+ "filter, the above settings will be ignored"
310
+ msgstr ""
311
+
312
+ # @ wpo_wcpdf
313
+ #: includes/class-wcpdf-settings.php:435
314
  msgid "Date to display on invoice"
315
  msgstr "Dátum zobrazený vo faktúre"
316
 
317
  # @ wpo_wcpdf
318
+ #: includes/class-wcpdf-settings.php:443
319
  msgid "Order date"
320
  msgstr "Dátum objednávky"
321
 
322
  # @ wpo_wcpdf
323
+ #: includes/class-wcpdf-settings.php:444
324
  msgid "Invoice date"
325
  msgstr "Dátum vystavenia faktúry"
326
 
327
  # @ wpo_wcpdf
328
+ #: includes/class-wcpdf-settings.php:452
329
  msgid "Extra template fields"
330
  msgstr "Extra políčka v šablóne"
331
 
332
  # @ wpo_wcpdf
333
+ #: includes/class-wcpdf-settings.php:459
334
  msgid "Extra field 1"
335
  msgstr "Extra políčko 1"
336
 
337
  # @ wpo_wcpdf
338
+ #: includes/class-wcpdf-settings.php:468
339
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
340
  msgstr "Toto je 1. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
341
 
342
  # @ wpo_wcpdf
343
+ #: includes/class-wcpdf-settings.php:474
344
  msgid "Extra field 2"
345
  msgstr "Extra políčko 2"
346
 
347
  # @ wpo_wcpdf
348
+ #: includes/class-wcpdf-settings.php:483
349
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
350
  msgstr "Toto je 2. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
351
 
352
  # @ wpo_wcpdf
353
+ #: includes/class-wcpdf-settings.php:489
354
  msgid "Extra field 3"
355
  msgstr "Extra políčko 3"
356
 
357
  # @ wpo_wcpdf
358
+ #: includes/class-wcpdf-settings.php:498
359
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
360
  msgstr "Toto je 3. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
361
 
362
  # @ default
363
+ #: includes/class-wcpdf-settings.php:755
364
  msgid "Image resolution"
365
  msgstr "Rozlíšenie obrázka"
366
 
367
  # @ wpo_wcpdf
368
+ #: includes/class-wcpdf-settings.php:822
369
  msgid ""
370
  "These are used for the (optional) footer columns in the <em>Modern "
371
  "(Premium)</em> template, but can also be used for other elements in your "
languages/wpo_wcpdf-sv_SE.mo CHANGED
Binary file
languages/wpo_wcpdf-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-26 09:12+0100\n"
6
- "PO-Revision-Date: 2014-03-12 08:27+0100\n"
7
  "Last-Translator: Fredrik Rudin <fredrik.rudin@outlook.com>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
  "Language: nl_NL\n"
@@ -16,22 +16,22 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 1.6.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: includes/class-wcpdf-export.php:142 includes/class-wcpdf-export.php:147
23
- #: includes/class-wcpdf-export.php:152 includes/class-wcpdf-export.php:163
24
- #: includes/class-wcpdf-export.php:176
25
  msgid "You do not have sufficient permissions to access this page."
26
  msgstr "Du har inte behörighet att komma åt den här sidan."
27
 
28
- #: includes/class-wcpdf-export.php:197 includes/class-wcpdf-export.php:268
29
  msgid "invoice"
30
  msgid_plural "invoices"
31
  msgstr[0] "faktura"
32
  msgstr[1] "fakturor"
33
 
34
- #: includes/class-wcpdf-export.php:199
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
  msgstr[0] "följesedel"
@@ -47,30 +47,30 @@ msgstr "E-fakturor"
47
  msgid "Settings"
48
  msgstr "Inställningar"
49
 
50
- #: includes/class-wcpdf-settings.php:86
51
- msgid "WooCommerce PDF Invoices"
52
- msgstr "WooCommerce E-fakturor"
53
-
54
- #: includes/class-wcpdf-settings.php:88
55
  msgid "General"
56
  msgstr "Allmänt"
57
 
58
- #: includes/class-wcpdf-settings.php:89
59
  msgid "Template"
60
  msgstr "Mall"
61
 
62
- #: includes/class-wcpdf-settings.php:96
 
 
 
 
 
 
 
 
63
  #, php-format
64
  msgid ""
65
- "Your WP Memory Limit is currently set to %s - We recommend setting it to at "
66
- "least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
67
- "memory allocated to PHP</a>"
68
  msgstr ""
69
- "Din WP minnesgräns är inställt på %s - Vi rekommenderar att minst ha 64MB "
70
- "(128MB för bästa funktionallitet). Se: <a href=\"%s\">Increasing memory "
71
- "allocated to PHP</a>"
72
 
73
- #: includes/class-wcpdf-settings.php:106
74
  #, php-format
75
  msgid ""
76
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -78,48 +78,48 @@ msgid ""
78
  msgstr ""
79
  "Letar du efter mer avancerade mallar? Kolla in våra premium mallar på %s."
80
 
81
- #: includes/class-wcpdf-settings.php:107
82
  #, php-format
83
  msgid "For custom templates, contact us at %s."
84
  msgstr "För skräddarsydda mallar, kontakta oss på %s"
85
 
86
- #: includes/class-wcpdf-settings.php:161
87
  msgid "General settings"
88
  msgstr "Allmäna inställningar"
89
 
90
- #: includes/class-wcpdf-settings.php:168
91
  msgid "How do you want to view the PDF?"
92
  msgstr "Hur vill du visa din PDF?"
93
 
94
- #: includes/class-wcpdf-settings.php:176
95
  msgid "Download the PDF"
96
  msgstr "Ladda ner PDF"
97
 
98
- #: includes/class-wcpdf-settings.php:177
99
  msgid "Open the PDF in a new browser tab/window"
100
  msgstr "Öppna PDF i en ny tabb/fönster"
101
 
102
- #: includes/class-wcpdf-settings.php:187
103
  msgid "Attach invoice to:"
104
  msgstr "Skicka faktura med:"
105
 
106
- #: includes/class-wcpdf-settings.php:195
107
  msgid "Admin New Order email"
108
  msgstr "Ny order admin epost"
109
 
110
- #: includes/class-wcpdf-settings.php:196
111
  msgid "Customer Processing Order email"
112
  msgstr "Kundorder berarbetas epost"
113
 
114
- #: includes/class-wcpdf-settings.php:197
115
  msgid "Customer Completed Order email"
116
  msgstr "Kundorder färdig epost"
117
 
118
- #: includes/class-wcpdf-settings.php:198
119
  msgid "Customer Invoice email"
120
  msgstr "Kundfaktura epost"
121
 
122
- #: includes/class-wcpdf-settings.php:200
123
  #, php-format
124
  msgid ""
125
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -130,19 +130,19 @@ msgstr ""
130
  "kontrollera rättigheterna för den mappen! Utan skrivrättigheter så kan inte "
131
  "detta plugin skapa email fakturor."
132
 
133
- #: includes/class-wcpdf-settings.php:206
134
  msgid "Enable invoice number column in the orders list"
135
  msgstr "Aktivera fakturanummer i orderlistan."
136
 
137
- #: includes/class-wcpdf-settings.php:245
138
  msgid "PDF Template settings"
139
  msgstr "PDF-mall inställningar"
140
 
141
- #: includes/class-wcpdf-settings.php:252
142
  msgid "Choose a template"
143
  msgstr "Välj en mall"
144
 
145
- #: includes/class-wcpdf-settings.php:260
146
  msgid ""
147
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
148
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -152,59 +152,59 @@ msgstr ""
152
  "invoices-packing-slips/templates/pdf/Simple/</code> till <code>yourtheme/"
153
  "woocommerce/pdf/yourtemplate/</code> för att redigera dem"
154
 
155
- #: includes/class-wcpdf-settings.php:266
156
  msgid "Paper size"
157
  msgstr "Pappersstorlek"
158
 
159
- #: includes/class-wcpdf-settings.php:274
160
  msgid "A4"
161
  msgstr "A4"
162
 
163
- #: includes/class-wcpdf-settings.php:275
164
  msgid "Letter"
165
  msgstr "Letter (US)"
166
 
167
- #: includes/class-wcpdf-settings.php:282
168
  msgid "Shop header/logo"
169
  msgstr "Shop header/logo"
170
 
171
- #: includes/class-wcpdf-settings.php:289
172
  msgid "Select or upload your invoice header/logo"
173
  msgstr "Välj eller ladda upp din faktura header/logo"
174
 
175
- #: includes/class-wcpdf-settings.php:290
176
  msgid "Set image"
177
  msgstr "Välj bild"
178
 
179
- #: includes/class-wcpdf-settings.php:291
180
  msgid "Remove image"
181
  msgstr "Ta bort bild"
182
 
183
- #: includes/class-wcpdf-settings.php:298
184
  msgid "Shop Name"
185
  msgstr "Shop namn"
186
 
187
- #: includes/class-wcpdf-settings.php:311
188
  msgid "Shop Address"
189
  msgstr "Shop adress"
190
 
191
- #: includes/class-wcpdf-settings.php:343
192
  msgid "Footer: terms & conditions, policies, etc."
193
  msgstr "Sidfot: villkor, policy, osv."
194
 
195
- #: includes/class-wcpdf-settings.php:358
196
  msgid "Number to display on invoice"
197
  msgstr "Nummer att visa på faktura"
198
 
199
- #: includes/class-wcpdf-settings.php:366
200
  msgid "WooCommerce order number"
201
  msgstr "WooCommerce ordernummer"
202
 
203
- #: includes/class-wcpdf-settings.php:367
204
  msgid "Built-in sequential invoice number"
205
  msgstr "Inbyggda sekvensnummer för order"
206
 
207
- #: includes/class-wcpdf-settings.php:369
208
  msgid ""
209
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
210
  "WooCommerce order number"
@@ -212,74 +212,102 @@ msgstr ""
212
  "Om du använder WooCommerce \"Sequential Order Numbers plugin\", välj "
213
  "WooCommerce ordernummer."
214
 
215
- #: includes/class-wcpdf-settings.php:375
216
  msgid "Next invoice number (without prefix/suffix etc.)"
217
  msgstr "Nästa ordernummer (utan prefix/suffix etc.)"
218
 
219
- #: includes/class-wcpdf-settings.php:383
220
  msgid ""
221
  "This is the number that will be used on the next invoice that is created. By "
222
  "default, numbering starts from the WooCommerce Order Number of the first "
223
  "invoice that is created and increases for every new invoice. Note that if "
224
  "you override this and set it lower than the highest (PDF) invoice number, "
225
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
226
- "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
227
- "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
228
  msgstr ""
229
  "Det här är nummret som kommer användas när nästa order görs. Det förvalda "
230
  "värdet startar från WooCommerce ordernummer och den första fakturan som "
231
  "skapas kommer att följa efter varje ny faktura som skapas. Notera att om du "
232
  "skriver över detta och sätter ett lägre värde än det högsta (PDF) faktura "
233
- "nummret så kan det resultera i dubbla fakturanummer. <br/>Kolla <a href="
234
- "\"http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" "
235
- "target=\"_blank\">FAQ</a> för instruktioner hur du ska formatera "
236
- "fakturanummret."
 
 
 
 
 
 
237
 
238
- #: includes/class-wcpdf-settings.php:390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  msgid "Date to display on invoice"
240
  msgstr "Datum att visa på faktura"
241
 
242
- #: includes/class-wcpdf-settings.php:398
243
  msgid "Order date"
244
  msgstr "Orderdatum"
245
 
246
- #: includes/class-wcpdf-settings.php:399
247
  msgid "Invoice date"
248
  msgstr "Fakturadatum"
249
 
250
- #: includes/class-wcpdf-settings.php:407
251
  msgid "Extra template fields"
252
  msgstr "Extra mallfält"
253
 
254
- #: includes/class-wcpdf-settings.php:414
255
  msgid "Extra field 1"
256
  msgstr "Extra fält 1"
257
 
258
- #: includes/class-wcpdf-settings.php:423
259
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
260
  msgstr "Kolumn nummer 1 i footer <i>Modern (Premium)</i> mallen"
261
 
262
- #: includes/class-wcpdf-settings.php:429
263
  msgid "Extra field 2"
264
  msgstr "Extra fält 2"
265
 
266
- #: includes/class-wcpdf-settings.php:438
267
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
268
  msgstr "Kolumn nummer 2 i footer <i>Modern (Premium)</i> mallen"
269
 
270
- #: includes/class-wcpdf-settings.php:444
271
  msgid "Extra field 3"
272
  msgstr "Extra fält 3"
273
 
274
- #: includes/class-wcpdf-settings.php:453
275
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
276
  msgstr "Kolumn nummer 3 i footer <i>Modern (Premium)</i> mallen"
277
 
278
- #: includes/class-wcpdf-settings.php:710
279
  msgid "Image resolution"
280
  msgstr "Bildupplösning"
281
 
282
- #: includes/class-wcpdf-settings.php:740
283
  msgid ""
284
  "These are used for the (optional) footer columns in the <em>Modern "
285
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -314,7 +342,7 @@ msgstr "följesedel (PDF)"
314
  msgid "PDF Packing Slips"
315
  msgstr "följesedlar (PDF)"
316
 
317
- #: includes/class-wcpdf-writepanels.php:187
318
  msgid "PDF Invoice Number (unformatted!)"
319
  msgstr "E-fakturanummer (oformaterat!)"
320
 
@@ -379,7 +407,7 @@ msgstr "SKU:"
379
  msgid "Weight:"
380
  msgstr "Vikt:"
381
 
382
- #: templates/pdf/Simple/invoice.php:114
383
  #: templates/pdf/Simple/packing-slip.php:69
384
  msgid "Customer Notes"
385
  msgstr "Kundnoteringar"
@@ -414,22 +442,31 @@ msgstr "Totalt"
414
  msgid "Shipping"
415
  msgstr "Frakt"
416
 
417
- #: woocommerce-pdf-invoices-packingslips.php:401
418
  msgid "Discount"
419
  msgstr "Rabatt"
420
 
421
- #: woocommerce-pdf-invoices-packingslips.php:439
422
  msgid "VAT"
423
  msgstr "MOMS"
424
 
425
- #: woocommerce-pdf-invoices-packingslips.php:471
426
  msgid "Total ex. VAT"
427
  msgstr "Totalt ex. MOMS"
428
 
429
- #: woocommerce-pdf-invoices-packingslips.php:474
430
  msgid "Total"
431
  msgstr "Totalt"
432
 
 
 
 
 
 
 
 
 
 
433
  #~ msgid "Email invoice (attach to order confirmation or invoice email)"
434
  #~ msgstr ""
435
  #~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-12 22:20+0100\n"
6
+ "PO-Revision-Date: 2014-05-12 22:20+0100\n"
7
  "Last-Translator: Fredrik Rudin <fredrik.rudin@outlook.com>\n"
8
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
  "Language: nl_NL\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.6.5\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
23
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
24
+ #: includes/class-wcpdf-export.php:185
25
  msgid "You do not have sufficient permissions to access this page."
26
  msgstr "Du har inte behörighet att komma åt den här sidan."
27
 
28
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
29
  msgid "invoice"
30
  msgid_plural "invoices"
31
  msgstr[0] "faktura"
32
  msgstr[1] "fakturor"
33
 
34
+ #: includes/class-wcpdf-export.php:208
35
  msgid "packing-slip"
36
  msgid_plural "packing-slips"
37
  msgstr[0] "följesedel"
47
  msgid "Settings"
48
  msgstr "Inställningar"
49
 
50
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
51
  msgid "General"
52
  msgstr "Allmänt"
53
 
54
+ #: includes/class-wcpdf-settings.php:83
55
  msgid "Template"
56
  msgstr "Mall"
57
 
58
+ #: includes/class-wcpdf-settings.php:92
59
+ msgid "WooCommerce PDF Invoices"
60
+ msgstr "WooCommerce E-fakturor"
61
+
62
+ #: includes/class-wcpdf-settings.php:98
63
+ msgid "Status"
64
+ msgstr ""
65
+
66
+ #: includes/class-wcpdf-settings.php:109
67
  #, php-format
68
  msgid ""
69
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
70
+ "extension."
 
71
  msgstr ""
 
 
 
72
 
73
+ #: includes/class-wcpdf-settings.php:119
74
  #, php-format
75
  msgid ""
76
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
78
  msgstr ""
79
  "Letar du efter mer avancerade mallar? Kolla in våra premium mallar på %s."
80
 
81
+ #: includes/class-wcpdf-settings.php:120
82
  #, php-format
83
  msgid "For custom templates, contact us at %s."
84
  msgstr "För skräddarsydda mallar, kontakta oss på %s"
85
 
86
+ #: includes/class-wcpdf-settings.php:175
87
  msgid "General settings"
88
  msgstr "Allmäna inställningar"
89
 
90
+ #: includes/class-wcpdf-settings.php:182
91
  msgid "How do you want to view the PDF?"
92
  msgstr "Hur vill du visa din PDF?"
93
 
94
+ #: includes/class-wcpdf-settings.php:190
95
  msgid "Download the PDF"
96
  msgstr "Ladda ner PDF"
97
 
98
+ #: includes/class-wcpdf-settings.php:191
99
  msgid "Open the PDF in a new browser tab/window"
100
  msgstr "Öppna PDF i en ny tabb/fönster"
101
 
102
+ #: includes/class-wcpdf-settings.php:201
103
  msgid "Attach invoice to:"
104
  msgstr "Skicka faktura med:"
105
 
106
+ #: includes/class-wcpdf-settings.php:209
107
  msgid "Admin New Order email"
108
  msgstr "Ny order admin epost"
109
 
110
+ #: includes/class-wcpdf-settings.php:210
111
  msgid "Customer Processing Order email"
112
  msgstr "Kundorder berarbetas epost"
113
 
114
+ #: includes/class-wcpdf-settings.php:211
115
  msgid "Customer Completed Order email"
116
  msgstr "Kundorder färdig epost"
117
 
118
+ #: includes/class-wcpdf-settings.php:212
119
  msgid "Customer Invoice email"
120
  msgstr "Kundfaktura epost"
121
 
122
+ #: includes/class-wcpdf-settings.php:214
123
  #, php-format
124
  msgid ""
125
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
130
  "kontrollera rättigheterna för den mappen! Utan skrivrättigheter så kan inte "
131
  "detta plugin skapa email fakturor."
132
 
133
+ #: includes/class-wcpdf-settings.php:220
134
  msgid "Enable invoice number column in the orders list"
135
  msgstr "Aktivera fakturanummer i orderlistan."
136
 
137
+ #: includes/class-wcpdf-settings.php:259
138
  msgid "PDF Template settings"
139
  msgstr "PDF-mall inställningar"
140
 
141
+ #: includes/class-wcpdf-settings.php:266
142
  msgid "Choose a template"
143
  msgstr "Välj en mall"
144
 
145
+ #: includes/class-wcpdf-settings.php:274
146
  msgid ""
147
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
148
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
152
  "invoices-packing-slips/templates/pdf/Simple/</code> till <code>yourtheme/"
153
  "woocommerce/pdf/yourtemplate/</code> för att redigera dem"
154
 
155
+ #: includes/class-wcpdf-settings.php:280
156
  msgid "Paper size"
157
  msgstr "Pappersstorlek"
158
 
159
+ #: includes/class-wcpdf-settings.php:288
160
  msgid "A4"
161
  msgstr "A4"
162
 
163
+ #: includes/class-wcpdf-settings.php:289
164
  msgid "Letter"
165
  msgstr "Letter (US)"
166
 
167
+ #: includes/class-wcpdf-settings.php:296
168
  msgid "Shop header/logo"
169
  msgstr "Shop header/logo"
170
 
171
+ #: includes/class-wcpdf-settings.php:303
172
  msgid "Select or upload your invoice header/logo"
173
  msgstr "Välj eller ladda upp din faktura header/logo"
174
 
175
+ #: includes/class-wcpdf-settings.php:304
176
  msgid "Set image"
177
  msgstr "Välj bild"
178
 
179
+ #: includes/class-wcpdf-settings.php:305
180
  msgid "Remove image"
181
  msgstr "Ta bort bild"
182
 
183
+ #: includes/class-wcpdf-settings.php:312
184
  msgid "Shop Name"
185
  msgstr "Shop namn"
186
 
187
+ #: includes/class-wcpdf-settings.php:325
188
  msgid "Shop Address"
189
  msgstr "Shop adress"
190
 
191
+ #: includes/class-wcpdf-settings.php:357
192
  msgid "Footer: terms & conditions, policies, etc."
193
  msgstr "Sidfot: villkor, policy, osv."
194
 
195
+ #: includes/class-wcpdf-settings.php:372
196
  msgid "Number to display on invoice"
197
  msgstr "Nummer att visa på faktura"
198
 
199
+ #: includes/class-wcpdf-settings.php:380
200
  msgid "WooCommerce order number"
201
  msgstr "WooCommerce ordernummer"
202
 
203
+ #: includes/class-wcpdf-settings.php:381
204
  msgid "Built-in sequential invoice number"
205
  msgstr "Inbyggda sekvensnummer för order"
206
 
207
+ #: includes/class-wcpdf-settings.php:383
208
  msgid ""
209
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
210
  "WooCommerce order number"
212
  "Om du använder WooCommerce \"Sequential Order Numbers plugin\", välj "
213
  "WooCommerce ordernummer."
214
 
215
+ #: includes/class-wcpdf-settings.php:389
216
  msgid "Next invoice number (without prefix/suffix etc.)"
217
  msgstr "Nästa ordernummer (utan prefix/suffix etc.)"
218
 
219
+ #: includes/class-wcpdf-settings.php:397
220
  msgid ""
221
  "This is the number that will be used on the next invoice that is created. By "
222
  "default, numbering starts from the WooCommerce Order Number of the first "
223
  "invoice that is created and increases for every new invoice. Note that if "
224
  "you override this and set it lower than the highest (PDF) invoice number, "
225
+ "this could create double invoice numbers!"
 
 
226
  msgstr ""
227
  "Det här är nummret som kommer användas när nästa order görs. Det förvalda "
228
  "värdet startar från WooCommerce ordernummer och den första fakturan som "
229
  "skapas kommer att följa efter varje ny faktura som skapas. Notera att om du "
230
  "skriver över detta och sätter ett lägre värde än det högsta (PDF) faktura "
231
+ "nummret så kan det resultera i dubbla fakturanummer."
232
+
233
+ #: includes/class-wcpdf-settings.php:403
234
+ #, fuzzy
235
+ msgid "Invoice number format"
236
+ msgstr "Fakturanummer"
237
+
238
+ #: includes/class-wcpdf-settings.php:412
239
+ msgid "Prefix"
240
+ msgstr ""
241
 
242
+ #: includes/class-wcpdf-settings.php:414
243
+ msgid ""
244
+ "to use the order year and/or month, use [order_year] or [order_month] "
245
+ "respectively"
246
+ msgstr ""
247
+
248
+ #: includes/class-wcpdf-settings.php:417
249
+ msgid "Suffix"
250
+ msgstr ""
251
+
252
+ #: includes/class-wcpdf-settings.php:422
253
+ msgid "Padding"
254
+ msgstr ""
255
+
256
+ #: includes/class-wcpdf-settings.php:424
257
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
258
+ msgstr ""
259
+
260
+ #: includes/class-wcpdf-settings.php:427
261
+ msgid ""
262
+ "note: if you have already created a custom invoice number format with a "
263
+ "filter, the above settings will be ignored"
264
+ msgstr ""
265
+
266
+ #: includes/class-wcpdf-settings.php:435
267
  msgid "Date to display on invoice"
268
  msgstr "Datum att visa på faktura"
269
 
270
+ #: includes/class-wcpdf-settings.php:443
271
  msgid "Order date"
272
  msgstr "Orderdatum"
273
 
274
+ #: includes/class-wcpdf-settings.php:444
275
  msgid "Invoice date"
276
  msgstr "Fakturadatum"
277
 
278
+ #: includes/class-wcpdf-settings.php:452
279
  msgid "Extra template fields"
280
  msgstr "Extra mallfält"
281
 
282
+ #: includes/class-wcpdf-settings.php:459
283
  msgid "Extra field 1"
284
  msgstr "Extra fält 1"
285
 
286
+ #: includes/class-wcpdf-settings.php:468
287
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
288
  msgstr "Kolumn nummer 1 i footer <i>Modern (Premium)</i> mallen"
289
 
290
+ #: includes/class-wcpdf-settings.php:474
291
  msgid "Extra field 2"
292
  msgstr "Extra fält 2"
293
 
294
+ #: includes/class-wcpdf-settings.php:483
295
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
296
  msgstr "Kolumn nummer 2 i footer <i>Modern (Premium)</i> mallen"
297
 
298
+ #: includes/class-wcpdf-settings.php:489
299
  msgid "Extra field 3"
300
  msgstr "Extra fält 3"
301
 
302
+ #: includes/class-wcpdf-settings.php:498
303
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
304
  msgstr "Kolumn nummer 3 i footer <i>Modern (Premium)</i> mallen"
305
 
306
+ #: includes/class-wcpdf-settings.php:755
307
  msgid "Image resolution"
308
  msgstr "Bildupplösning"
309
 
310
+ #: includes/class-wcpdf-settings.php:822
311
  msgid ""
312
  "These are used for the (optional) footer columns in the <em>Modern "
313
  "(Premium)</em> template, but can also be used for other elements in your "
342
  msgid "PDF Packing Slips"
343
  msgstr "följesedlar (PDF)"
344
 
345
+ #: includes/class-wcpdf-writepanels.php:189
346
  msgid "PDF Invoice Number (unformatted!)"
347
  msgstr "E-fakturanummer (oformaterat!)"
348
 
407
  msgid "Weight:"
408
  msgstr "Vikt:"
409
 
410
+ #: templates/pdf/Simple/invoice.php:113
411
  #: templates/pdf/Simple/packing-slip.php:69
412
  msgid "Customer Notes"
413
  msgstr "Kundnoteringar"
442
  msgid "Shipping"
443
  msgstr "Frakt"
444
 
445
+ #: woocommerce-pdf-invoices-packingslips.php:416
446
  msgid "Discount"
447
  msgstr "Rabatt"
448
 
449
+ #: woocommerce-pdf-invoices-packingslips.php:455
450
  msgid "VAT"
451
  msgstr "MOMS"
452
 
453
+ #: woocommerce-pdf-invoices-packingslips.php:487
454
  msgid "Total ex. VAT"
455
  msgstr "Totalt ex. MOMS"
456
 
457
+ #: woocommerce-pdf-invoices-packingslips.php:490
458
  msgid "Total"
459
  msgstr "Totalt"
460
 
461
+ #~ msgid ""
462
+ #~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
463
+ #~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
464
+ #~ "\">Increasing memory allocated to PHP</a>"
465
+ #~ msgstr ""
466
+ #~ "Din WP minnesgräns är inställt på %s - Vi rekommenderar att minst ha 64MB "
467
+ #~ "(128MB för bästa funktionallitet). Se: <a href=\"%s\">Increasing memory "
468
+ #~ "allocated to PHP</a>"
469
+
470
  #~ msgid "Email invoice (attach to order confirmation or invoice email)"
471
  #~ msgstr ""
472
  #~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
languages/wpo_wcpdf-uk.mo CHANGED
Binary file
languages/wpo_wcpdf-uk.po CHANGED
@@ -1,44 +1,44 @@
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-02-19 02:04+0200\n"
6
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.4\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/class-wcpdf-export.php: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 "Ви не маєте достатньо прав для доступу до цієї сторінки."
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] "накладна"
30
  msgstr[1] "накладні"
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
- #: includes/class-wcpdf-export.php:182
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] "Рахунок-Фактура"
37
  msgstr[1] "Рахунки-Фактури"
38
 
39
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
40
- #: includes/class-wcpdf-writepanels.php:131
41
- #: includes/class-wcpdf-writepanels.php:132
42
  msgid "PDF Invoices"
43
  msgstr "PDF Накладні"
44
 
@@ -46,19 +46,30 @@ msgstr "PDF Накладні"
46
  msgid "Settings"
47
  msgstr "Налаштування"
48
 
49
- #: includes/class-wcpdf-settings.php:86
50
- msgid "WooCommerce PDF Invoices"
51
- msgstr "WooCommerce PDF Накладні"
52
-
53
- #: includes/class-wcpdf-settings.php:88
54
  msgid "General"
55
  msgstr "Основне"
56
 
57
- #: includes/class-wcpdf-settings.php:89
58
  msgid "Template"
59
  msgstr "Шаблон"
60
 
 
 
 
 
61
  #: includes/class-wcpdf-settings.php:98
 
 
 
 
 
 
 
 
 
 
 
62
  #, php-format
63
  msgid ""
64
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
@@ -67,48 +78,48 @@ msgstr ""
67
  "Шукайте додаткові шаблони? Подивіться преміум шаблони від PDF Накладні і "
68
  "Рахунки-Фактур на %s."
69
 
70
- #: includes/class-wcpdf-settings.php:99
71
  #, php-format
72
  msgid "For custom templates, contact us at %s."
73
  msgstr "З приводу індивідуальних шаблонів, зв'яжіться з нами %s."
74
 
75
- #: includes/class-wcpdf-settings.php:153
76
  msgid "General settings"
77
  msgstr "Основні налаштування"
78
 
79
- #: includes/class-wcpdf-settings.php:160
80
  msgid "How do you want to view the PDF?"
81
  msgstr "Як ви хочете переглянути PDF?"
82
 
83
- #: includes/class-wcpdf-settings.php:168
84
  msgid "Download the PDF"
85
  msgstr "Завантажити PDF"
86
 
87
- #: includes/class-wcpdf-settings.php:169
88
  msgid "Open the PDF in a new browser tab/window"
89
  msgstr "Відкрити PDF в новій вкладці/вікні браузера"
90
 
91
- #: includes/class-wcpdf-settings.php:179
92
  msgid "Attach invoice to:"
93
  msgstr "Прикріпити накладну до:"
94
 
95
- #: includes/class-wcpdf-settings.php:187
96
  msgid "Admin New Order email"
97
  msgstr "Email-у нового замовлення адміна"
98
 
99
- #: includes/class-wcpdf-settings.php:188
100
  msgid "Customer Processing Order email"
101
  msgstr "Email-у замовлення клієнта в обробці"
102
 
103
- #: includes/class-wcpdf-settings.php:189
104
  msgid "Customer Completed Order email"
105
  msgstr "Email-у завершеного замовлення клієнта"
106
 
107
- #: includes/class-wcpdf-settings.php:190
108
  msgid "Customer Invoice email"
109
  msgstr "Email-у накладній клієнта"
110
 
111
- #: includes/class-wcpdf-settings.php:192
112
  #, php-format
113
  msgid ""
114
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -119,15 +130,19 @@ msgstr ""
119
  "доступ до папки. Без доступу запису до даної папки, плагін не зможе "
120
  "відсилати накладні по Email."
121
 
122
- #: includes/class-wcpdf-settings.php:224
 
 
 
 
123
  msgid "PDF Template settings"
124
  msgstr "PDF Налаштування шаблону"
125
 
126
- #: includes/class-wcpdf-settings.php:231
127
  msgid "Choose a template"
128
  msgstr "Виберіть шаблон"
129
 
130
- #: includes/class-wcpdf-settings.php:239
131
  msgid ""
132
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
133
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
@@ -137,59 +152,59 @@ msgstr ""
137
  "invoices-packing-slips/templates/pdf/Simple /</code> в <code>ваша_тема/"
138
  "woocommerce/pdf/назва_шаблону/</code> і налаштуйте на свій розсуд."
139
 
140
- #: includes/class-wcpdf-settings.php:245
141
  msgid "Paper size"
142
  msgstr "Розмір паперу"
143
 
144
- #: includes/class-wcpdf-settings.php:253
145
  msgid "A4"
146
  msgstr "А4"
147
 
148
- #: includes/class-wcpdf-settings.php:254
149
  msgid "Letter"
150
  msgstr "Лист"
151
 
152
- #: includes/class-wcpdf-settings.php:261
153
  msgid "Shop header/logo"
154
  msgstr "Логотип в шапці документа"
155
 
156
- #: includes/class-wcpdf-settings.php:268
157
  msgid "Select or upload your invoice header/logo"
158
  msgstr "Виберіть, щоб завантажити шапку/логотип для накладної"
159
 
160
- #: includes/class-wcpdf-settings.php:269
161
  msgid "Set image"
162
  msgstr "Встановити зображення"
163
 
164
- #: includes/class-wcpdf-settings.php:270
165
  msgid "Remove image"
166
  msgstr "Видалити зображення"
167
 
168
- #: includes/class-wcpdf-settings.php:277
169
  msgid "Shop Name"
170
  msgstr "Назва магазину"
171
 
172
- #: includes/class-wcpdf-settings.php:290
173
  msgid "Shop Address"
174
  msgstr "Адреса магазину"
175
 
176
- #: includes/class-wcpdf-settings.php:322
177
  msgid "Footer: terms & conditions, policies, etc."
178
  msgstr "Підвал: терміни, умови, політика і тд."
179
 
180
- #: includes/class-wcpdf-settings.php:337
181
  msgid "Number to display on invoice"
182
  msgstr "Номер для відображення в накладній"
183
 
184
- #: includes/class-wcpdf-settings.php:345
185
  msgid "WooCommerce order number"
186
  msgstr "WooCommerce номер замовлення"
187
 
188
- #: includes/class-wcpdf-settings.php:346
189
  msgid "Built-in sequential invoice number"
190
  msgstr "Вбудований секвенсор номерів накладної"
191
 
192
- #: includes/class-wcpdf-settings.php:348
193
  msgid ""
194
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
195
  "WooCommerce order number"
@@ -197,74 +212,103 @@ msgstr ""
197
  "Якщо ви використовуєте WooCommerce Sequential Order Numbers плагін, виберіть "
198
  "WooCommerce номер замовлення"
199
 
200
- #: includes/class-wcpdf-settings.php:354
201
  msgid "Next invoice number (without prefix/suffix etc.)"
202
  msgstr "Наступний номер накладної (без префікса/суфікса і тд.)"
203
 
204
- #: includes/class-wcpdf-settings.php:362
205
  msgid ""
206
  "This is the number that will be used on the next invoice that is created. By "
207
  "default, numbering starts from the WooCommerce Order Number of the first "
208
  "invoice that is created and increases for every new invoice. Note that if "
209
  "you override this and set it lower than the highest (PDF) invoice number, "
210
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
211
- "wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
212
- "\"_blank\">FAQ</a> for instructions on how to format the invoice number."
213
  msgstr ""
214
  "Це номер, який буде використовуватися для наступної створеної накладної. За "
215
  "замовчуванням, нумерація починається з першої створеної накладної "
216
  "грунтуючись на WooCommerce номері замовлення, далі число збільшується з "
217
  "кожною новою накладною. Зауважте, якщо ви перезаписуєте це поле і "
218
  "встановлюєте значення нижче ніж найбільший номер (PDF) накладної, це може "
219
- "привести до створення дубльованої накладної! <br/> Дивіться <a href=\"http://"
220
- "wordpress.org/plugins/woocommerce -pdf-invoices-packing-slips/faq /\"target ="
221
- "\"_blank\">FAQ</a>, щоб дізнатися як форматувати номер накладної."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
- #: includes/class-wcpdf-settings.php:369
 
 
 
 
 
 
224
  msgid "Date to display on invoice"
225
  msgstr "Дата для відображення в накладній"
226
 
227
- #: includes/class-wcpdf-settings.php:377
228
  msgid "Order date"
229
  msgstr "Дата замовлення"
230
 
231
- #: includes/class-wcpdf-settings.php:378
232
  msgid "Invoice date"
233
  msgstr "Дата накладної"
234
 
235
- #: includes/class-wcpdf-settings.php:386
236
  msgid "Extra template fields"
237
  msgstr "Додаткові поля шаблону"
238
 
239
- #: includes/class-wcpdf-settings.php:393
240
  msgid "Extra field 1"
241
  msgstr "Додаткове поле 1"
242
 
243
- #: includes/class-wcpdf-settings.php:402
244
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
245
  msgstr "Це колонка 1 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
246
 
247
- #: includes/class-wcpdf-settings.php:408
248
  msgid "Extra field 2"
249
  msgstr "Додаткове поле 2"
250
 
251
- #: includes/class-wcpdf-settings.php:417
252
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
253
  msgstr "Це колонка 2 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
254
 
255
- #: includes/class-wcpdf-settings.php:423
256
  msgid "Extra field 3"
257
  msgstr "Додаткове поле 3"
258
 
259
- #: includes/class-wcpdf-settings.php:432
260
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
261
  msgstr "Це колонка 3 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
262
 
263
- #: includes/class-wcpdf-settings.php:689
264
  msgid "Image resolution"
265
  msgstr "Дозвіл зображення"
266
 
267
- #: includes/class-wcpdf-settings.php:719
268
  msgid ""
269
  "These are used for the (optional) footer columns in the <em>Modern "
270
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -274,29 +318,35 @@ msgstr ""
274
  "<em>Modern (Premium)</em> шаблонів, але ви також можете використовувати цей "
275
  "блок для виведення в індивідуальному шаблоні."
276
 
277
- #: includes/class-wcpdf-writepanels.php:92
 
 
 
 
 
278
  msgid "Create PDF"
279
  msgstr "Створити PDF"
280
 
281
- #: includes/class-wcpdf-writepanels.php:101
282
  msgid "Download invoice (PDF)"
283
  msgstr "Завантажити накладну (PDF)"
284
 
285
- #: includes/class-wcpdf-writepanels.php:115
286
  msgid "PDF invoice"
287
  msgstr "PDF Накладна"
288
 
289
- #: includes/class-wcpdf-writepanels.php:116
290
  msgid "PDF Packing Slip"
291
  msgstr "PDF Рахунок-Фактура"
292
 
293
- #: includes/class-wcpdf-writepanels.php:133
294
- #: includes/class-wcpdf-writepanels.php:134
295
  msgid "PDF Packing Slips"
296
  msgstr "PDF Рахунки-Фактур"
297
 
298
- #: includes/class-wcpdf-writepanels.php:145
299
- msgid "PDF Invoice Number"
 
300
  msgstr "PDF Номер накладної"
301
 
302
  #: templates/pdf/Simple/html-document-wrapper.php:6
@@ -346,12 +396,16 @@ msgstr "Кількість"
346
  msgid "Price"
347
  msgstr "Ціна"
348
 
349
- #: templates/pdf/Simple/invoice.php:79
 
 
 
 
350
  #: templates/pdf/Simple/packing-slip.php:54
351
  msgid "SKU:"
352
  msgstr "ІТП:"
353
 
354
- #: templates/pdf/Simple/invoice.php:80
355
  #: templates/pdf/Simple/packing-slip.php:55
356
  msgid "Weight:"
357
  msgstr "Вага:"
@@ -375,23 +429,37 @@ msgstr ""
375
  msgid "N/A"
376
  msgstr "N/A"
377
 
378
- #: woocommerce-pdf-invoices-packingslips.php:359
 
 
 
 
 
 
 
 
 
 
379
  msgid "Subtotal"
380
  msgstr "Проміжний підсумок"
381
 
382
- #: woocommerce-pdf-invoices-packingslips.php:381
383
  msgid "Shipping"
384
  msgstr "Доставка"
385
 
386
- #: woocommerce-pdf-invoices-packingslips.php:400
387
  msgid "Discount"
388
  msgstr "Знижка"
389
 
390
- #: woocommerce-pdf-invoices-packingslips.php:469
 
 
 
 
391
  msgid "Total ex. VAT"
392
  msgstr "Всього отл. ПДВ"
393
 
394
- #: woocommerce-pdf-invoices-packingslips.php:472
395
  msgid "Total"
396
  msgstr "Разом"
397
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-05-12 22:21+0100\n"
5
+ "PO-Revision-Date: 2014-05-12 22:21+0100\n"
6
  "Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
20
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
21
+ #: includes/class-wcpdf-export.php:185
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Ви не маєте достатньо прав для доступу до цієї сторінки."
24
 
25
  # This is a filename (prefix). do not use spaces or special characters!
26
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] "накладна"
30
  msgstr[1] "накладні"
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
+ #: includes/class-wcpdf-export.php:208
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] "Рахунок-Фактура"
37
  msgstr[1] "Рахунки-Фактури"
38
 
39
  #: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
40
+ #: includes/class-wcpdf-writepanels.php:173
41
+ #: includes/class-wcpdf-writepanels.php:174
42
  msgid "PDF Invoices"
43
  msgstr "PDF Накладні"
44
 
46
  msgid "Settings"
47
  msgstr "Налаштування"
48
 
49
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
50
  msgid "General"
51
  msgstr "Основне"
52
 
53
+ #: includes/class-wcpdf-settings.php:83
54
  msgid "Template"
55
  msgstr "Шаблон"
56
 
57
+ #: includes/class-wcpdf-settings.php:92
58
+ msgid "WooCommerce PDF Invoices"
59
+ msgstr "WooCommerce PDF Накладні"
60
+
61
  #: includes/class-wcpdf-settings.php:98
62
+ msgid "Status"
63
+ msgstr ""
64
+
65
+ #: includes/class-wcpdf-settings.php:109
66
+ #, php-format
67
+ msgid ""
68
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
69
+ "extension."
70
+ msgstr ""
71
+
72
+ #: includes/class-wcpdf-settings.php:119
73
  #, php-format
74
  msgid ""
75
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
78
  "Шукайте додаткові шаблони? Подивіться преміум шаблони від PDF Накладні і "
79
  "Рахунки-Фактур на %s."
80
 
81
+ #: includes/class-wcpdf-settings.php:120
82
  #, php-format
83
  msgid "For custom templates, contact us at %s."
84
  msgstr "З приводу індивідуальних шаблонів, зв'яжіться з нами %s."
85
 
86
+ #: includes/class-wcpdf-settings.php:175
87
  msgid "General settings"
88
  msgstr "Основні налаштування"
89
 
90
+ #: includes/class-wcpdf-settings.php:182
91
  msgid "How do you want to view the PDF?"
92
  msgstr "Як ви хочете переглянути PDF?"
93
 
94
+ #: includes/class-wcpdf-settings.php:190
95
  msgid "Download the PDF"
96
  msgstr "Завантажити PDF"
97
 
98
+ #: includes/class-wcpdf-settings.php:191
99
  msgid "Open the PDF in a new browser tab/window"
100
  msgstr "Відкрити PDF в новій вкладці/вікні браузера"
101
 
102
+ #: includes/class-wcpdf-settings.php:201
103
  msgid "Attach invoice to:"
104
  msgstr "Прикріпити накладну до:"
105
 
106
+ #: includes/class-wcpdf-settings.php:209
107
  msgid "Admin New Order email"
108
  msgstr "Email-у нового замовлення адміна"
109
 
110
+ #: includes/class-wcpdf-settings.php:210
111
  msgid "Customer Processing Order email"
112
  msgstr "Email-у замовлення клієнта в обробці"
113
 
114
+ #: includes/class-wcpdf-settings.php:211
115
  msgid "Customer Completed Order email"
116
  msgstr "Email-у завершеного замовлення клієнта"
117
 
118
+ #: includes/class-wcpdf-settings.php:212
119
  msgid "Customer Invoice email"
120
  msgstr "Email-у накладній клієнта"
121
 
122
+ #: includes/class-wcpdf-settings.php:214
123
  #, php-format
124
  msgid ""
125
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
130
  "доступ до папки. Без доступу запису до даної папки, плагін не зможе "
131
  "відсилати накладні по Email."
132
 
133
+ #: includes/class-wcpdf-settings.php:220
134
+ msgid "Enable invoice number column in the orders list"
135
+ msgstr ""
136
+
137
+ #: includes/class-wcpdf-settings.php:259
138
  msgid "PDF Template settings"
139
  msgstr "PDF Налаштування шаблону"
140
 
141
+ #: includes/class-wcpdf-settings.php:266
142
  msgid "Choose a template"
143
  msgstr "Виберіть шаблон"
144
 
145
+ #: includes/class-wcpdf-settings.php:274
146
  msgid ""
147
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
148
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
152
  "invoices-packing-slips/templates/pdf/Simple /</code> в <code>ваша_тема/"
153
  "woocommerce/pdf/назва_шаблону/</code> і налаштуйте на свій розсуд."
154
 
155
+ #: includes/class-wcpdf-settings.php:280
156
  msgid "Paper size"
157
  msgstr "Розмір паперу"
158
 
159
+ #: includes/class-wcpdf-settings.php:288
160
  msgid "A4"
161
  msgstr "А4"
162
 
163
+ #: includes/class-wcpdf-settings.php:289
164
  msgid "Letter"
165
  msgstr "Лист"
166
 
167
+ #: includes/class-wcpdf-settings.php:296
168
  msgid "Shop header/logo"
169
  msgstr "Логотип в шапці документа"
170
 
171
+ #: includes/class-wcpdf-settings.php:303
172
  msgid "Select or upload your invoice header/logo"
173
  msgstr "Виберіть, щоб завантажити шапку/логотип для накладної"
174
 
175
+ #: includes/class-wcpdf-settings.php:304
176
  msgid "Set image"
177
  msgstr "Встановити зображення"
178
 
179
+ #: includes/class-wcpdf-settings.php:305
180
  msgid "Remove image"
181
  msgstr "Видалити зображення"
182
 
183
+ #: includes/class-wcpdf-settings.php:312
184
  msgid "Shop Name"
185
  msgstr "Назва магазину"
186
 
187
+ #: includes/class-wcpdf-settings.php:325
188
  msgid "Shop Address"
189
  msgstr "Адреса магазину"
190
 
191
+ #: includes/class-wcpdf-settings.php:357
192
  msgid "Footer: terms & conditions, policies, etc."
193
  msgstr "Підвал: терміни, умови, політика і тд."
194
 
195
+ #: includes/class-wcpdf-settings.php:372
196
  msgid "Number to display on invoice"
197
  msgstr "Номер для відображення в накладній"
198
 
199
+ #: includes/class-wcpdf-settings.php:380
200
  msgid "WooCommerce order number"
201
  msgstr "WooCommerce номер замовлення"
202
 
203
+ #: includes/class-wcpdf-settings.php:381
204
  msgid "Built-in sequential invoice number"
205
  msgstr "Вбудований секвенсор номерів накладної"
206
 
207
+ #: includes/class-wcpdf-settings.php:383
208
  msgid ""
209
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
210
  "WooCommerce order number"
212
  "Якщо ви використовуєте WooCommerce Sequential Order Numbers плагін, виберіть "
213
  "WooCommerce номер замовлення"
214
 
215
+ #: includes/class-wcpdf-settings.php:389
216
  msgid "Next invoice number (without prefix/suffix etc.)"
217
  msgstr "Наступний номер накладної (без префікса/суфікса і тд.)"
218
 
219
+ #: includes/class-wcpdf-settings.php:397
220
  msgid ""
221
  "This is the number that will be used on the next invoice that is created. By "
222
  "default, numbering starts from the WooCommerce Order Number of the first "
223
  "invoice that is created and increases for every new invoice. Note that if "
224
  "you override this and set it lower than the highest (PDF) invoice number, "
225
+ "this could create double invoice numbers!"
 
 
226
  msgstr ""
227
  "Це номер, який буде використовуватися для наступної створеної накладної. За "
228
  "замовчуванням, нумерація починається з першої створеної накладної "
229
  "грунтуючись на WooCommerce номері замовлення, далі число збільшується з "
230
  "кожною новою накладною. Зауважте, якщо ви перезаписуєте це поле і "
231
  "встановлюєте значення нижче ніж найбільший номер (PDF) накладної, це може "
232
+ "привести до створення дубльованої накладної!"
233
+
234
+ #: includes/class-wcpdf-settings.php:403
235
+ #, fuzzy
236
+ msgid "Invoice number format"
237
+ msgstr "Номер накладної:"
238
+
239
+ #: includes/class-wcpdf-settings.php:412
240
+ msgid "Prefix"
241
+ msgstr ""
242
+
243
+ #: includes/class-wcpdf-settings.php:414
244
+ msgid ""
245
+ "to use the order year and/or month, use [order_year] or [order_month] "
246
+ "respectively"
247
+ msgstr ""
248
+
249
+ #: includes/class-wcpdf-settings.php:417
250
+ msgid "Suffix"
251
+ msgstr ""
252
+
253
+ #: includes/class-wcpdf-settings.php:422
254
+ msgid "Padding"
255
+ msgstr ""
256
+
257
+ #: includes/class-wcpdf-settings.php:424
258
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
259
+ msgstr ""
260
 
261
+ #: includes/class-wcpdf-settings.php:427
262
+ msgid ""
263
+ "note: if you have already created a custom invoice number format with a "
264
+ "filter, the above settings will be ignored"
265
+ msgstr ""
266
+
267
+ #: includes/class-wcpdf-settings.php:435
268
  msgid "Date to display on invoice"
269
  msgstr "Дата для відображення в накладній"
270
 
271
+ #: includes/class-wcpdf-settings.php:443
272
  msgid "Order date"
273
  msgstr "Дата замовлення"
274
 
275
+ #: includes/class-wcpdf-settings.php:444
276
  msgid "Invoice date"
277
  msgstr "Дата накладної"
278
 
279
+ #: includes/class-wcpdf-settings.php:452
280
  msgid "Extra template fields"
281
  msgstr "Додаткові поля шаблону"
282
 
283
+ #: includes/class-wcpdf-settings.php:459
284
  msgid "Extra field 1"
285
  msgstr "Додаткове поле 1"
286
 
287
+ #: includes/class-wcpdf-settings.php:468
288
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
289
  msgstr "Це колонка 1 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
290
 
291
+ #: includes/class-wcpdf-settings.php:474
292
  msgid "Extra field 2"
293
  msgstr "Додаткове поле 2"
294
 
295
+ #: includes/class-wcpdf-settings.php:483
296
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
297
  msgstr "Це колонка 2 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
298
 
299
+ #: includes/class-wcpdf-settings.php:489
300
  msgid "Extra field 3"
301
  msgstr "Додаткове поле 3"
302
 
303
+ #: includes/class-wcpdf-settings.php:498
304
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
305
  msgstr "Це колонка 3 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
306
 
307
+ #: includes/class-wcpdf-settings.php:755
308
  msgid "Image resolution"
309
  msgstr "Дозвіл зображення"
310
 
311
+ #: includes/class-wcpdf-settings.php:822
312
  msgid ""
313
  "These are used for the (optional) footer columns in the <em>Modern "
314
  "(Premium)</em> template, but can also be used for other elements in your "
318
  "<em>Modern (Premium)</em> шаблонів, але ви також можете використовувати цей "
319
  "блок для виведення в індивідуальному шаблоні."
320
 
321
+ #: includes/class-wcpdf-writepanels.php:102
322
+ #, fuzzy
323
+ msgid "Invoice Number"
324
+ msgstr "Номер накладної:"
325
+
326
+ #: includes/class-wcpdf-writepanels.php:133
327
  msgid "Create PDF"
328
  msgstr "Створити PDF"
329
 
330
+ #: includes/class-wcpdf-writepanels.php:143
331
  msgid "Download invoice (PDF)"
332
  msgstr "Завантажити накладну (PDF)"
333
 
334
+ #: includes/class-wcpdf-writepanels.php:157
335
  msgid "PDF invoice"
336
  msgstr "PDF Накладна"
337
 
338
+ #: includes/class-wcpdf-writepanels.php:158
339
  msgid "PDF Packing Slip"
340
  msgstr "PDF Рахунок-Фактура"
341
 
342
+ #: includes/class-wcpdf-writepanels.php:175
343
+ #: includes/class-wcpdf-writepanels.php:176
344
  msgid "PDF Packing Slips"
345
  msgstr "PDF Рахунки-Фактур"
346
 
347
+ #: includes/class-wcpdf-writepanels.php:189
348
+ #, fuzzy
349
+ msgid "PDF Invoice Number (unformatted!)"
350
  msgstr "PDF Номер накладної"
351
 
352
  #: templates/pdf/Simple/html-document-wrapper.php:6
396
  msgid "Price"
397
  msgstr "Ціна"
398
 
399
+ #: templates/pdf/Simple/invoice.php:77
400
+ msgid "Description"
401
+ msgstr ""
402
+
403
+ #: templates/pdf/Simple/invoice.php:80
404
  #: templates/pdf/Simple/packing-slip.php:54
405
  msgid "SKU:"
406
  msgstr "ІТП:"
407
 
408
+ #: templates/pdf/Simple/invoice.php:81
409
  #: templates/pdf/Simple/packing-slip.php:55
410
  msgid "Weight:"
411
  msgstr "Вага:"
429
  msgid "N/A"
430
  msgstr "N/A"
431
 
432
+ #: woocommerce-pdf-invoices-packingslips.php:249
433
+ #, fuzzy
434
+ msgid "Payment method"
435
+ msgstr "Метод оплати:"
436
+
437
+ #: woocommerce-pdf-invoices-packingslips.php:260
438
+ #, fuzzy
439
+ msgid "Shipping method"
440
+ msgstr "Доставка"
441
+
442
+ #: woocommerce-pdf-invoices-packingslips.php:360
443
  msgid "Subtotal"
444
  msgstr "Проміжний підсумок"
445
 
446
+ #: woocommerce-pdf-invoices-packingslips.php:382
447
  msgid "Shipping"
448
  msgstr "Доставка"
449
 
450
+ #: woocommerce-pdf-invoices-packingslips.php:416
451
  msgid "Discount"
452
  msgstr "Знижка"
453
 
454
+ #: woocommerce-pdf-invoices-packingslips.php:455
455
+ msgid "VAT"
456
+ msgstr ""
457
+
458
+ #: woocommerce-pdf-invoices-packingslips.php:487
459
  msgid "Total ex. VAT"
460
  msgstr "Всього отл. ПДВ"
461
 
462
+ #: woocommerce-pdf-invoices-packingslips.php:490
463
  msgid "Total"
464
  msgstr "Разом"
465
 
languages/wpo_wcpdf.pot CHANGED
@@ -1,36 +1,36 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2014-02-26 09:12+0100\n"
5
- "PO-Revision-Date: 2014-02-26 09:12+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: en_US\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=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/class-wcpdf-export.php:142 includes/class-wcpdf-export.php:147
20
- #: includes/class-wcpdf-export.php:152 includes/class-wcpdf-export.php:163
21
- #: includes/class-wcpdf-export.php:176
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr ""
24
 
25
  # This is a filename (prefix). do not use spaces or special characters!
26
- #: includes/class-wcpdf-export.php:197 includes/class-wcpdf-export.php:268
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] ""
30
  msgstr[1] ""
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
- #: includes/class-wcpdf-export.php:199
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] ""
@@ -46,75 +46,78 @@ msgstr ""
46
  msgid "Settings"
47
  msgstr ""
48
 
49
- #: includes/class-wcpdf-settings.php:86
50
- msgid "WooCommerce PDF Invoices"
51
- msgstr ""
52
-
53
- #: includes/class-wcpdf-settings.php:88
54
  msgid "General"
55
  msgstr ""
56
 
57
- #: includes/class-wcpdf-settings.php:89
58
  msgid "Template"
59
  msgstr ""
60
 
61
- #: includes/class-wcpdf-settings.php:96
 
 
 
 
 
 
 
 
62
  #, php-format
63
  msgid ""
64
- "Your WP Memory Limit is currently set to %s - We recommend setting it to at "
65
- "least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
66
- "memory allocated to PHP</a>"
67
  msgstr ""
68
 
69
- #: includes/class-wcpdf-settings.php:106
70
  #, php-format
71
  msgid ""
72
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
73
  "Packing Slips templates at %s."
74
  msgstr ""
75
 
76
- #: includes/class-wcpdf-settings.php:107
77
  #, php-format
78
  msgid "For custom templates, contact us at %s."
79
  msgstr ""
80
 
81
- #: includes/class-wcpdf-settings.php:161
82
  msgid "General settings"
83
  msgstr ""
84
 
85
- #: includes/class-wcpdf-settings.php:168
86
  msgid "How do you want to view the PDF?"
87
  msgstr ""
88
 
89
- #: includes/class-wcpdf-settings.php:176
90
  msgid "Download the PDF"
91
  msgstr ""
92
 
93
- #: includes/class-wcpdf-settings.php:177
94
  msgid "Open the PDF in a new browser tab/window"
95
  msgstr ""
96
 
97
- #: includes/class-wcpdf-settings.php:187
98
  msgid "Attach invoice to:"
99
  msgstr ""
100
 
101
- #: includes/class-wcpdf-settings.php:195
102
  msgid "Admin New Order email"
103
  msgstr ""
104
 
105
- #: includes/class-wcpdf-settings.php:196
106
  msgid "Customer Processing Order email"
107
  msgstr ""
108
 
109
- #: includes/class-wcpdf-settings.php:197
110
  msgid "Customer Completed Order email"
111
  msgstr ""
112
 
113
- #: includes/class-wcpdf-settings.php:198
114
  msgid "Customer Invoice email"
115
  msgstr ""
116
 
117
- #: includes/class-wcpdf-settings.php:200
118
  #, php-format
119
  msgid ""
120
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
@@ -122,143 +125,173 @@ msgid ""
122
  "plugin will not be able to email invoices."
123
  msgstr ""
124
 
125
- #: includes/class-wcpdf-settings.php:206
126
  msgid "Enable invoice number column in the orders list"
127
  msgstr ""
128
 
129
- #: includes/class-wcpdf-settings.php:245
130
  msgid "PDF Template settings"
131
  msgstr ""
132
 
133
- #: includes/class-wcpdf-settings.php:252
134
  msgid "Choose a template"
135
  msgstr ""
136
 
137
- #: includes/class-wcpdf-settings.php:260
138
  msgid ""
139
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
140
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
141
  "woocommerce/pdf/yourtemplate/</code> to customize them"
142
  msgstr ""
143
 
144
- #: includes/class-wcpdf-settings.php:266
145
  msgid "Paper size"
146
  msgstr ""
147
 
148
- #: includes/class-wcpdf-settings.php:274
149
  msgid "A4"
150
  msgstr ""
151
 
152
- #: includes/class-wcpdf-settings.php:275
153
  msgid "Letter"
154
  msgstr ""
155
 
156
- #: includes/class-wcpdf-settings.php:282
157
  msgid "Shop header/logo"
158
  msgstr ""
159
 
160
- #: includes/class-wcpdf-settings.php:289
161
  msgid "Select or upload your invoice header/logo"
162
  msgstr ""
163
 
164
- #: includes/class-wcpdf-settings.php:290
165
  msgid "Set image"
166
  msgstr ""
167
 
168
- #: includes/class-wcpdf-settings.php:291
169
  msgid "Remove image"
170
  msgstr ""
171
 
172
- #: includes/class-wcpdf-settings.php:298
173
  msgid "Shop Name"
174
  msgstr ""
175
 
176
- #: includes/class-wcpdf-settings.php:311
177
  msgid "Shop Address"
178
  msgstr ""
179
 
180
- #: includes/class-wcpdf-settings.php:343
181
  msgid "Footer: terms & conditions, policies, etc."
182
  msgstr ""
183
 
184
- #: includes/class-wcpdf-settings.php:358
185
  msgid "Number to display on invoice"
186
  msgstr ""
187
 
188
- #: includes/class-wcpdf-settings.php:366
189
  msgid "WooCommerce order number"
190
  msgstr ""
191
 
192
- #: includes/class-wcpdf-settings.php:367
193
  msgid "Built-in sequential invoice number"
194
  msgstr ""
195
 
196
- #: includes/class-wcpdf-settings.php:369
197
  msgid ""
198
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
199
  "WooCommerce order number"
200
  msgstr ""
201
 
202
- #: includes/class-wcpdf-settings.php:375
203
  msgid "Next invoice number (without prefix/suffix etc.)"
204
  msgstr ""
205
 
206
- #: includes/class-wcpdf-settings.php:383
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 "
210
  "invoice that is created and increases for every new invoice. Note that if "
211
  "you override this and set it lower than the highest (PDF) invoice number, "
212
- "this could create double invoice numbers!<br/>Check the <a href=\"http://"
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
 
217
- #: includes/class-wcpdf-settings.php:390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  msgid "Date to display on invoice"
219
  msgstr ""
220
 
221
- #: includes/class-wcpdf-settings.php:398
222
  msgid "Order date"
223
  msgstr ""
224
 
225
- #: includes/class-wcpdf-settings.php:399
226
  msgid "Invoice date"
227
  msgstr ""
228
 
229
- #: includes/class-wcpdf-settings.php:407
230
  msgid "Extra template fields"
231
  msgstr ""
232
 
233
- #: includes/class-wcpdf-settings.php:414
234
  msgid "Extra field 1"
235
  msgstr ""
236
 
237
- #: includes/class-wcpdf-settings.php:423
238
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
  msgstr ""
240
 
241
- #: includes/class-wcpdf-settings.php:429
242
  msgid "Extra field 2"
243
  msgstr ""
244
 
245
- #: includes/class-wcpdf-settings.php:438
246
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
247
  msgstr ""
248
 
249
- #: includes/class-wcpdf-settings.php:444
250
  msgid "Extra field 3"
251
  msgstr ""
252
 
253
- #: includes/class-wcpdf-settings.php:453
254
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
255
  msgstr ""
256
 
257
- #: includes/class-wcpdf-settings.php:710
258
  msgid "Image resolution"
259
  msgstr ""
260
 
261
- #: includes/class-wcpdf-settings.php:740
262
  msgid ""
263
  "These are used for the (optional) footer columns in the <em>Modern "
264
  "(Premium)</em> template, but can also be used for other elements in your "
@@ -290,7 +323,7 @@ msgstr ""
290
  msgid "PDF Packing Slips"
291
  msgstr ""
292
 
293
- #: includes/class-wcpdf-writepanels.php:187
294
  msgid "PDF Invoice Number (unformatted!)"
295
  msgstr ""
296
 
@@ -355,7 +388,7 @@ msgstr ""
355
  msgid "Weight:"
356
  msgstr ""
357
 
358
- #: templates/pdf/Simple/invoice.php:114
359
  #: templates/pdf/Simple/packing-slip.php:69
360
  msgid "Customer Notes"
361
  msgstr ""
@@ -388,18 +421,18 @@ msgstr ""
388
  msgid "Shipping"
389
  msgstr ""
390
 
391
- #: woocommerce-pdf-invoices-packingslips.php:401
392
  msgid "Discount"
393
  msgstr ""
394
 
395
- #: woocommerce-pdf-invoices-packingslips.php:439
396
  msgid "VAT"
397
  msgstr ""
398
 
399
- #: woocommerce-pdf-invoices-packingslips.php:471
400
  msgid "Total ex. VAT"
401
  msgstr ""
402
 
403
- #: woocommerce-pdf-invoices-packingslips.php:474
404
  msgid "Total"
405
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2014-05-12 22:22+0100\n"
5
+ "PO-Revision-Date: 2014-05-12 22:22+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
  "Language: en_US\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.5\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcpdf-export.php:151 includes/class-wcpdf-export.php:156
20
+ #: includes/class-wcpdf-export.php:161 includes/class-wcpdf-export.php:172
21
+ #: includes/class-wcpdf-export.php:185
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr ""
24
 
25
  # This is a filename (prefix). do not use spaces or special characters!
26
+ #: includes/class-wcpdf-export.php:206 includes/class-wcpdf-export.php:285
27
  msgid "invoice"
28
  msgid_plural "invoices"
29
  msgstr[0] ""
30
  msgstr[1] ""
31
 
32
  # This is a filename (prefix). do not use spaces or special characters!
33
+ #: includes/class-wcpdf-export.php:208
34
  msgid "packing-slip"
35
  msgid_plural "packing-slips"
36
  msgstr[0] ""
46
  msgid "Settings"
47
  msgstr ""
48
 
49
+ #: includes/class-wcpdf-settings.php:82
 
 
 
 
50
  msgid "General"
51
  msgstr ""
52
 
53
+ #: includes/class-wcpdf-settings.php:83
54
  msgid "Template"
55
  msgstr ""
56
 
57
+ #: includes/class-wcpdf-settings.php:92
58
+ msgid "WooCommerce PDF Invoices"
59
+ msgstr ""
60
+
61
+ #: includes/class-wcpdf-settings.php:98
62
+ msgid "Status"
63
+ msgstr ""
64
+
65
+ #: includes/class-wcpdf-settings.php:109
66
  #, php-format
67
  msgid ""
68
+ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
69
+ "extension."
 
70
  msgstr ""
71
 
72
+ #: includes/class-wcpdf-settings.php:119
73
  #, php-format
74
  msgid ""
75
  "Looking for more advanced templates? Check out the Premium PDF Invoice & "
76
  "Packing Slips templates at %s."
77
  msgstr ""
78
 
79
+ #: includes/class-wcpdf-settings.php:120
80
  #, php-format
81
  msgid "For custom templates, contact us at %s."
82
  msgstr ""
83
 
84
+ #: includes/class-wcpdf-settings.php:175
85
  msgid "General settings"
86
  msgstr ""
87
 
88
+ #: includes/class-wcpdf-settings.php:182
89
  msgid "How do you want to view the PDF?"
90
  msgstr ""
91
 
92
+ #: includes/class-wcpdf-settings.php:190
93
  msgid "Download the PDF"
94
  msgstr ""
95
 
96
+ #: includes/class-wcpdf-settings.php:191
97
  msgid "Open the PDF in a new browser tab/window"
98
  msgstr ""
99
 
100
+ #: includes/class-wcpdf-settings.php:201
101
  msgid "Attach invoice to:"
102
  msgstr ""
103
 
104
+ #: includes/class-wcpdf-settings.php:209
105
  msgid "Admin New Order email"
106
  msgstr ""
107
 
108
+ #: includes/class-wcpdf-settings.php:210
109
  msgid "Customer Processing Order email"
110
  msgstr ""
111
 
112
+ #: includes/class-wcpdf-settings.php:211
113
  msgid "Customer Completed Order email"
114
  msgstr ""
115
 
116
+ #: includes/class-wcpdf-settings.php:212
117
  msgid "Customer Invoice email"
118
  msgstr ""
119
 
120
+ #: includes/class-wcpdf-settings.php:214
121
  #, php-format
122
  msgid ""
123
  "It looks like the temp folder (<code>%s</code>) is not writable, check the "
125
  "plugin will not be able to email invoices."
126
  msgstr ""
127
 
128
+ #: includes/class-wcpdf-settings.php:220
129
  msgid "Enable invoice number column in the orders list"
130
  msgstr ""
131
 
132
+ #: includes/class-wcpdf-settings.php:259
133
  msgid "PDF Template settings"
134
  msgstr ""
135
 
136
+ #: includes/class-wcpdf-settings.php:266
137
  msgid "Choose a template"
138
  msgstr ""
139
 
140
+ #: includes/class-wcpdf-settings.php:274
141
  msgid ""
142
  "Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
143
  "invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
144
  "woocommerce/pdf/yourtemplate/</code> to customize them"
145
  msgstr ""
146
 
147
+ #: includes/class-wcpdf-settings.php:280
148
  msgid "Paper size"
149
  msgstr ""
150
 
151
+ #: includes/class-wcpdf-settings.php:288
152
  msgid "A4"
153
  msgstr ""
154
 
155
+ #: includes/class-wcpdf-settings.php:289
156
  msgid "Letter"
157
  msgstr ""
158
 
159
+ #: includes/class-wcpdf-settings.php:296
160
  msgid "Shop header/logo"
161
  msgstr ""
162
 
163
+ #: includes/class-wcpdf-settings.php:303
164
  msgid "Select or upload your invoice header/logo"
165
  msgstr ""
166
 
167
+ #: includes/class-wcpdf-settings.php:304
168
  msgid "Set image"
169
  msgstr ""
170
 
171
+ #: includes/class-wcpdf-settings.php:305
172
  msgid "Remove image"
173
  msgstr ""
174
 
175
+ #: includes/class-wcpdf-settings.php:312
176
  msgid "Shop Name"
177
  msgstr ""
178
 
179
+ #: includes/class-wcpdf-settings.php:325
180
  msgid "Shop Address"
181
  msgstr ""
182
 
183
+ #: includes/class-wcpdf-settings.php:357
184
  msgid "Footer: terms & conditions, policies, etc."
185
  msgstr ""
186
 
187
+ #: includes/class-wcpdf-settings.php:372
188
  msgid "Number to display on invoice"
189
  msgstr ""
190
 
191
+ #: includes/class-wcpdf-settings.php:380
192
  msgid "WooCommerce order number"
193
  msgstr ""
194
 
195
+ #: includes/class-wcpdf-settings.php:381
196
  msgid "Built-in sequential invoice number"
197
  msgstr ""
198
 
199
+ #: includes/class-wcpdf-settings.php:383
200
  msgid ""
201
  "If you are using the WooCommerce Sequential Order Numbers plugin, select the "
202
  "WooCommerce order number"
203
  msgstr ""
204
 
205
+ #: includes/class-wcpdf-settings.php:389
206
  msgid "Next invoice number (without prefix/suffix etc.)"
207
  msgstr ""
208
 
209
+ #: includes/class-wcpdf-settings.php:397
210
  msgid ""
211
  "This is the number that will be used on the next invoice that is created. By "
212
  "default, numbering starts from the WooCommerce Order Number of the first "
213
  "invoice that is created and increases for every new invoice. Note that if "
214
  "you override this and set it lower than the highest (PDF) invoice number, "
215
+ "this could create double invoice numbers!"
216
+ msgstr ""
217
+
218
+ #: includes/class-wcpdf-settings.php:403
219
+ msgid "Invoice number format"
220
  msgstr ""
221
 
222
+ #: includes/class-wcpdf-settings.php:412
223
+ msgid "Prefix"
224
+ msgstr ""
225
+
226
+ #: includes/class-wcpdf-settings.php:414
227
+ msgid ""
228
+ "to use the order year and/or month, use [order_year] or [order_month] "
229
+ "respectively"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcpdf-settings.php:417
233
+ msgid "Suffix"
234
+ msgstr ""
235
+
236
+ #: includes/class-wcpdf-settings.php:422
237
+ msgid "Padding"
238
+ msgstr ""
239
+
240
+ #: includes/class-wcpdf-settings.php:424
241
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
242
+ msgstr ""
243
+
244
+ #: includes/class-wcpdf-settings.php:427
245
+ msgid ""
246
+ "note: if you have already created a custom invoice number format with a "
247
+ "filter, the above settings will be ignored"
248
+ msgstr ""
249
+
250
+ #: includes/class-wcpdf-settings.php:435
251
  msgid "Date to display on invoice"
252
  msgstr ""
253
 
254
+ #: includes/class-wcpdf-settings.php:443
255
  msgid "Order date"
256
  msgstr ""
257
 
258
+ #: includes/class-wcpdf-settings.php:444
259
  msgid "Invoice date"
260
  msgstr ""
261
 
262
+ #: includes/class-wcpdf-settings.php:452
263
  msgid "Extra template fields"
264
  msgstr ""
265
 
266
+ #: includes/class-wcpdf-settings.php:459
267
  msgid "Extra field 1"
268
  msgstr ""
269
 
270
+ #: includes/class-wcpdf-settings.php:468
271
  msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
272
  msgstr ""
273
 
274
+ #: includes/class-wcpdf-settings.php:474
275
  msgid "Extra field 2"
276
  msgstr ""
277
 
278
+ #: includes/class-wcpdf-settings.php:483
279
  msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
280
  msgstr ""
281
 
282
+ #: includes/class-wcpdf-settings.php:489
283
  msgid "Extra field 3"
284
  msgstr ""
285
 
286
+ #: includes/class-wcpdf-settings.php:498
287
  msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
288
  msgstr ""
289
 
290
+ #: includes/class-wcpdf-settings.php:755
291
  msgid "Image resolution"
292
  msgstr ""
293
 
294
+ #: includes/class-wcpdf-settings.php:822
295
  msgid ""
296
  "These are used for the (optional) footer columns in the <em>Modern "
297
  "(Premium)</em> template, but can also be used for other elements in your "
323
  msgid "PDF Packing Slips"
324
  msgstr ""
325
 
326
+ #: includes/class-wcpdf-writepanels.php:189
327
  msgid "PDF Invoice Number (unformatted!)"
328
  msgstr ""
329
 
388
  msgid "Weight:"
389
  msgstr ""
390
 
391
+ #: templates/pdf/Simple/invoice.php:113
392
  #: templates/pdf/Simple/packing-slip.php:69
393
  msgid "Customer Notes"
394
  msgstr ""
421
  msgid "Shipping"
422
  msgstr ""
423
 
424
+ #: woocommerce-pdf-invoices-packingslips.php:416
425
  msgid "Discount"
426
  msgstr ""
427
 
428
+ #: woocommerce-pdf-invoices-packingslips.php:455
429
  msgid "VAT"
430
  msgstr ""
431
 
432
+ #: woocommerce-pdf-invoices-packingslips.php:487
433
  msgid "Total ex. VAT"
434
  msgstr ""
435
 
436
+ #: woocommerce-pdf-invoices-packingslips.php:490
437
  msgid "Total"
438
  msgstr ""
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.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -20,6 +20,8 @@ This WooCommerce extension automatically adds a PDF invoice to the order confirm
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.
25
 
@@ -57,6 +59,10 @@ Copy the files from `wp-content/plugins/woocommerce-pdf-invoices-packing-slips/t
57
 
58
  Go to [wpovernight.com](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/) to checkout more templates! These include templates with more tax details and product thumbnails. Need a custom templates? Contact us at support@wpovernight.com for more information.
59
 
 
 
 
 
60
  = My language is not included, how can I contribute? =
61
 
62
  This plugin is translation ready, which means that you can translate it using standard WordPress methods.
@@ -70,22 +76,6 @@ This plugin is translation ready, which means that you can translate it using st
70
  7. Enter the translations. invoice and packing-slip now have two translation fields, single & plural. Note that this is a filename, so replace spaces with a - just to be sure!
71
  8. Save as `wpo_wcpdf-xx_XX.po`, where you replace xx_XX with your language code & country code suffix (da_DK, pl_PL, de_DE etc.)
72
 
73
- = How to I add a prefix, suffix or offset to the invoice number? =
74
-
75
- You can do this via a filter in your theme's `functions.php` (Some themes have a "custom functions" area in the settings).
76
-
77
- `
78
- add_filter( 'wpo_wcpdf_invoice_number', 'wpo_wcpdf_invoice_number', 10, 4 );
79
- function wpo_wcpdf_invoice_number( $invoice_number, $order_number, $order_id, $order_date ) {
80
- $prefix = 'ABC';
81
- $order_year = date_i18n( 'Y', strtotime( $order_date ) );
82
- $padding = 6; // number of digits - so 42 becomes 000042
83
- $suffix = 'X';
84
- $invoice_number = $prefix . $order_year . sprintf('%0'.$padding.'d', $invoice_number) . $suffix ;
85
- return $invoice_number;
86
- }
87
- `
88
-
89
  = How do can I modify the pdf filename? =
90
 
91
  You can do this via a filter in your theme's `functions.php` (Some themes have a "custom functions" area in the settings).
@@ -168,6 +158,12 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
168
 
169
  == Changelog ==
170
 
 
 
 
 
 
 
171
  = 1.3.2 =
172
  * Fix: error on wpo_wcpdf_email_attachment filter when $pdf_path not set
173
 
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.4.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
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
+ Upload all invoices automatically to dropbox with our [WooCommerce PDF Invoices & Packing Slips to Dropbox](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/) extension!
24
+
25
  = Fully customizable =
26
  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.
27
 
59
 
60
  Go to [wpovernight.com](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/) to checkout more templates! These include templates with more tax details and product thumbnails. Need a custom templates? Contact us at support@wpovernight.com for more information.
61
 
62
+ = Can I contribute to the code? =
63
+ You're more than welcome! This plugin is hosted on github, where you can post issues or make pull requests.
64
+ https://github.com/wpovernight/woocommerce-pdf-invoices-packing-slips
65
+
66
  = My language is not included, how can I contribute? =
67
 
68
  This plugin is translation ready, which means that you can translate it using standard WordPress methods.
76
  7. Enter the translations. invoice and packing-slip now have two translation fields, single & plural. Note that this is a filename, so replace spaces with a - just to be sure!
77
  8. Save as `wpo_wcpdf-xx_XX.po`, where you replace xx_XX with your language code & country code suffix (da_DK, pl_PL, de_DE etc.)
78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  = How do can I modify the pdf filename? =
80
 
81
  You can do this via a filter in your theme's `functions.php` (Some themes have a "custom functions" area in the settings).
158
 
159
  == Changelog ==
160
 
161
+ = 1.4.0 =
162
+ * NEW Feature: Invoice numbers can now be given a prefix, suffix or padding on the settings page!
163
+ * Filter: `wpo_wcpdf_email_allowed_statuses` to attach pdf to custom order status emails
164
+ * Tweak: Sequential Order Numbers Pro compatibility
165
+ * Tweak: Filenames are now automatically sanitized to prevent issues with illegal characters
166
+
167
  = 1.3.2 =
168
  * Fix: error on wpo_wcpdf_email_attachment filter when $pdf_path not set
169
 
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.2
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.4.0
7
  * Author: Ewout Fernhout
8
  * Author URI: http://www.wpovernight.com
9
  * License: GPLv2 or later