WooCommerce PDF Invoices - Version 2.3.9

Version Description

  • Oktober 20, 2015 =

  • Improved: Template files

  • Fixed: Admin notices not showing

Download this release

Release Info

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

Code changes from version 2.3.8 to 2.3.9

bootstrap.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version 2.3.8
4
  * @package WooCommerce PDF Invoices
5
  * @author baaaaas
6
  *
@@ -8,7 +8,7 @@
8
  * Plugin Name: WooCommerce PDF Invoices
9
  * Plugin URI:
10
  * Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
11
- * Version: 2.3.8
12
  * Author: Bas Elbers
13
  * Author URI: http://www.wcpdfinvoices.com
14
  * License: GPL-2.0+
@@ -24,7 +24,7 @@ function bewpi_plugins_loaded() {
24
 
25
  $wp_upload_dir = wp_upload_dir();
26
 
27
- define( 'BEWPI_VERSION', '2.3.8' );
28
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
29
  define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
30
  define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . 'includes/templates/' );
1
  <?php
2
  /**
3
+ * @version 2.3.9
4
  * @package WooCommerce PDF Invoices
5
  * @author baaaaas
6
  *
8
  * Plugin Name: WooCommerce PDF Invoices
9
  * Plugin URI:
10
  * Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
11
+ * Version: 2.3.9
12
  * Author: Bas Elbers
13
  * Author URI: http://www.wcpdfinvoices.com
14
  * License: GPL-2.0+
24
 
25
  $wp_upload_dir = wp_upload_dir();
26
 
27
+ define( 'BEWPI_VERSION', '2.3.9' );
28
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
29
  define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
30
  define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . 'includes/templates/' );
includes/be-woocommerce-pdf-invoices.php CHANGED
@@ -123,7 +123,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
123
  public static function plugin_deactivation() {
124
  global $current_user;
125
  $user_id = $current_user->ID;
126
- update_user_meta( $user_id, 'bewpi_hide_activation_notice', '0' );
127
  }
128
 
129
  public function display_activation_admin_notice() {
@@ -534,7 +534,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
534
  $current_user = wp_get_current_user();
535
  $hide_notice = get_user_meta( $current_user->ID, self::OPTION_ADMIN_NOTICE_KEY, true );
536
 
537
- if ( current_user_can( 'install_plugins' ) && $hide_notice == '0' ) {
538
  // Get installation date
539
  $datetime_install = $this->get_install_date();
540
  $datetime_past = new DateTime( '-10 days' );
123
  public static function plugin_deactivation() {
124
  global $current_user;
125
  $user_id = $current_user->ID;
126
+ update_user_meta( $user_id, 'bewpi_hide_activation_notice', '' );
127
  }
128
 
129
  public function display_activation_admin_notice() {
534
  $current_user = wp_get_current_user();
535
  $hide_notice = get_user_meta( $current_user->ID, self::OPTION_ADMIN_NOTICE_KEY, true );
536
 
537
+ if ( current_user_can( 'install_plugins' ) && $hide_notice == '' ) {
538
  // Get installation date
539
  $datetime_install = $this->get_install_date();
540
  $datetime_past = new DateTime( '-10 days' );
includes/class-bewpi-invoice.php CHANGED
@@ -26,7 +26,7 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
26
  public function get_total() {
27
  if ( $this->order->get_total_refunded() > 0 ) {
28
  $total_after_refund = $this->order->get_total() - $this->order->get_total_refunded();
29
- return $total = '<del class="total-without-refund">' . strip_tags( $this->order->get_formatted_order_total() ) . '</del> <ins>' . wc_price( $total_after_refund, array( 'currency' => $this->order->get_order_currency() ) ) . '</ins>';
30
  } else {
31
  return $total = $this->order->get_formatted_order_total();
32
  }
26
  public function get_total() {
27
  if ( $this->order->get_total_refunded() > 0 ) {
28
  $total_after_refund = $this->order->get_total() - $this->order->get_total_refunded();
29
+ return $total = '<del class="total-without-refund">' . wc_price( $this->order->get_total(), array( 'currency' => $this->order->get_order_currency() ) ) . '</del> <ins>' . wc_price( $total_after_refund, array( 'currency' => $this->order->get_order_currency() ) ) . '</ins>';
30
  } else {
31
  return $total = $this->order->get_formatted_order_total();
32
  }
includes/templates/invoices/simple/micro/footer.php CHANGED
@@ -4,13 +4,15 @@
4
  <td class="border" colspan="2" style="border-bottom: 8px solid <?php echo $this->template_options['bewpi_color_theme']; ?>;">
5
  <?php echo $this->template_options['bewpi_terms']; ?><br/>
6
  <?php
7
- if ( $this->template_options['bewpi_show_customer_notes'] && $this->order->post->post_excerpt != "" ) :
8
  // Note added by customer.
9
- echo '<p><strong>' . __( 'Customer note', $this->textdomain ) . '</strong> ' . $this->order->post->post_excerpt . '</p>';
 
 
10
  // Notes added by administrator on order details page.
11
  $customer_order_notes = $this->order->get_customer_order_notes();
12
  if ( count( $customer_order_notes ) > 0 ) {
13
- echo '<p><strong>' . __('Customer note', $this->textdomain) . '</strong>' . $customer_order_notes[0]->comment_content . '</p>';
14
  }
15
  endif;
16
  ?>
4
  <td class="border" colspan="2" style="border-bottom: 8px solid <?php echo $this->template_options['bewpi_color_theme']; ?>;">
5
  <?php echo $this->template_options['bewpi_terms']; ?><br/>
6
  <?php
7
+ if ( $this->template_options['bewpi_show_customer_notes'] ) :
8
  // Note added by customer.
9
+ if ( $this->order->post->post_excerpt != "" ) {
10
+ echo '<p><strong>' . __( 'Customer note', $this->textdomain ) . ' </strong> ' . $this->order->post->post_excerpt . '</p>';
11
+ }
12
  // Notes added by administrator on order details page.
13
  $customer_order_notes = $this->order->get_customer_order_notes();
14
  if ( count( $customer_order_notes ) > 0 ) {
15
+ echo '<p><strong>' . __('Customer note', $this->textdomain) . ' </strong>' . $customer_order_notes[0]->comment_content . '</p>';
16
  }
17
  endif;
18
  ?>
includes/templates/invoices/simple/micro/header.php CHANGED
@@ -2,7 +2,10 @@
2
  <tbody>
3
  <tr>
4
  <td class="logo"><?php $this->get_company_logo_html(); ?></td>
5
- <td class="info"><?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?></td>
 
 
 
6
  </tr>
7
  </tbody>
8
  </table>
2
  <tbody>
3
  <tr>
4
  <td class="logo"><?php $this->get_company_logo_html(); ?></td>
5
+ <td class="info">
6
+ <?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?>
7
+ <?php //echo nl2br( $this->template_options['bewpi_company_details'] ); ?>
8
+ </td>
9
  </tr>
10
  </tbody>
11
  </table>
lang/be-woocommerce-pdf-invoices-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-06 08:26+0100\n"
6
- "PO-Revision-Date: 2015-10-06 08:26+0100\n"
7
  "Last-Translator: iduran <iduran@solucionesc2.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
@@ -26,11 +26,11 @@ msgstr ""
26
  msgid "Paid"
27
  msgstr ""
28
 
29
- #: ../includes/abstracts/abstract-bewpi-setting.php:87
30
  msgid "Feel free to use "
31
  msgstr "Siéntase libre de utilizar"
32
 
33
- #: ../includes/abstracts/abstract-bewpi-setting.php:155
34
  msgid "Remove logo"
35
  msgstr "Eliminar logo"
36
 
@@ -335,52 +335,52 @@ msgstr ""
335
  msgid "Version %s"
336
  msgstr ""
337
 
338
- #: ../includes/be-woocommerce-pdf-invoices.php:276
339
  msgid "Invoicing on Steroids"
340
  msgstr ""
341
 
342
- #: ../includes/be-woocommerce-pdf-invoices.php:277
343
  msgid ""
344
  "We're working on a more powerful version of this invoicing plugin. Be the "
345
  "first to know when we're ready to launch and receive a unique one-time "
346
  "discount!"
347
  msgstr ""
348
 
349
- #: ../includes/be-woocommerce-pdf-invoices.php:291
350
  msgid "Your email address"
351
  msgstr ""
352
 
353
- #: ../includes/be-woocommerce-pdf-invoices.php:294
354
  msgid "Signup"
355
  msgstr ""
356
 
357
- #: ../includes/be-woocommerce-pdf-invoices.php:295
358
  msgid "No spam, ever. Unsubscribe at any time"
359
  msgstr ""
360
 
361
- #: ../includes/be-woocommerce-pdf-invoices.php:303
362
  msgid "About"
363
  msgstr ""
364
 
365
- #: ../includes/be-woocommerce-pdf-invoices.php:304
366
  msgid ""
367
  "This plugin is an open source project wich aims to fill the invoicing gap of "
368
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
369
  msgstr ""
370
 
371
- #: ../includes/be-woocommerce-pdf-invoices.php:305
372
  msgid "<b>Version</b>: "
373
  msgstr ""
374
 
375
- #: ../includes/be-woocommerce-pdf-invoices.php:307
376
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
377
  msgstr ""
378
 
379
- #: ../includes/be-woocommerce-pdf-invoices.php:310
380
  msgid "Support"
381
  msgstr ""
382
 
383
- #: ../includes/be-woocommerce-pdf-invoices.php:311
384
  msgid ""
385
  "We will never ask for donations, but to garantee future development, we do "
386
  "need your support. Please show us your appreciation by leaving a <a href="
@@ -389,77 +389,77 @@ msgid ""
389
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
390
  msgstr ""
391
 
392
- #: ../includes/be-woocommerce-pdf-invoices.php:330
393
  msgid ""
394
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
395
  msgstr ""
396
 
397
- #: ../includes/be-woocommerce-pdf-invoices.php:335
398
  msgid "Need Help?"
399
  msgstr ""
400
 
401
- #: ../includes/be-woocommerce-pdf-invoices.php:337
402
  msgid "Frequently Asked Questions"
403
  msgstr ""
404
 
405
- #: ../includes/be-woocommerce-pdf-invoices.php:338
406
  msgid "Support forum"
407
  msgstr ""
408
 
409
- #: ../includes/be-woocommerce-pdf-invoices.php:339
410
  msgid "Request a feature"
411
  msgstr ""
412
 
413
- #: ../includes/be-woocommerce-pdf-invoices.php:340
414
  msgid "Email us"
415
  msgstr ""
416
 
417
- #: ../includes/be-woocommerce-pdf-invoices.php:399
418
  msgid "PDF Invoice"
419
  msgstr "PDF Factura"
420
 
421
- #: ../includes/be-woocommerce-pdf-invoices.php:425
422
  msgid "Invoiced on:"
423
  msgstr "Facturado en:"
424
 
425
- #: ../includes/be-woocommerce-pdf-invoices.php:429
426
  msgid "Invoice number:"
427
  msgstr "Nº de factura"
428
 
429
- #: ../includes/be-woocommerce-pdf-invoices.php:467
430
  msgid "View invoice"
431
  msgstr "Ver factura"
432
 
433
- #: ../includes/be-woocommerce-pdf-invoices.php:467
434
  msgid "View"
435
  msgstr "Ver"
436
 
437
- #: ../includes/be-woocommerce-pdf-invoices.php:468
438
  msgid "Cancel invoice"
439
  msgstr "Cancelar factura"
440
 
441
- #: ../includes/be-woocommerce-pdf-invoices.php:468
442
  msgid "Cancel"
443
  msgstr "Cancelar"
444
 
445
- #: ../includes/be-woocommerce-pdf-invoices.php:470
446
  msgid "Are you sure to delete the invoice?"
447
  msgstr "¿Está seguro de eliminar la factura?"
448
 
449
- #: ../includes/be-woocommerce-pdf-invoices.php:473
450
  msgid "Create invoice"
451
  msgstr "Crear factura"
452
 
453
- #: ../includes/be-woocommerce-pdf-invoices.php:473
454
  msgid "Create"
455
  msgstr "Crear"
456
 
457
- #: ../includes/be-woocommerce-pdf-invoices.php:506
458
  #, php-format
459
  msgid "Invoice %s (PDF)"
460
  msgstr "Factura %s (PDF)"
461
 
462
- #: ../includes/be-woocommerce-pdf-invoices.php:617
463
  #, php-format
464
  msgid ""
465
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-10 14:10+0100\n"
6
+ "PO-Revision-Date: 2015-10-10 14:10+0100\n"
7
  "Last-Translator: iduran <iduran@solucionesc2.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
26
  msgid "Paid"
27
  msgstr ""
28
 
29
+ #: ../includes/abstracts/abstract-bewpi-setting.php:96
30
  msgid "Feel free to use "
31
  msgstr "Siéntase libre de utilizar"
32
 
33
+ #: ../includes/abstracts/abstract-bewpi-setting.php:176
34
  msgid "Remove logo"
35
  msgstr "Eliminar logo"
36
 
335
  msgid "Version %s"
336
  msgstr ""
337
 
338
+ #: ../includes/be-woocommerce-pdf-invoices.php:287
339
  msgid "Invoicing on Steroids"
340
  msgstr ""
341
 
342
+ #: ../includes/be-woocommerce-pdf-invoices.php:288
343
  msgid ""
344
  "We're working on a more powerful version of this invoicing plugin. Be the "
345
  "first to know when we're ready to launch and receive a unique one-time "
346
  "discount!"
347
  msgstr ""
348
 
349
+ #: ../includes/be-woocommerce-pdf-invoices.php:302
350
  msgid "Your email address"
351
  msgstr ""
352
 
353
+ #: ../includes/be-woocommerce-pdf-invoices.php:305
354
  msgid "Signup"
355
  msgstr ""
356
 
357
+ #: ../includes/be-woocommerce-pdf-invoices.php:306
358
  msgid "No spam, ever. Unsubscribe at any time"
359
  msgstr ""
360
 
361
+ #: ../includes/be-woocommerce-pdf-invoices.php:314
362
  msgid "About"
363
  msgstr ""
364
 
365
+ #: ../includes/be-woocommerce-pdf-invoices.php:315
366
  msgid ""
367
  "This plugin is an open source project wich aims to fill the invoicing gap of "
368
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
369
  msgstr ""
370
 
371
+ #: ../includes/be-woocommerce-pdf-invoices.php:316
372
  msgid "<b>Version</b>: "
373
  msgstr ""
374
 
375
+ #: ../includes/be-woocommerce-pdf-invoices.php:318
376
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
377
  msgstr ""
378
 
379
+ #: ../includes/be-woocommerce-pdf-invoices.php:321
380
  msgid "Support"
381
  msgstr ""
382
 
383
+ #: ../includes/be-woocommerce-pdf-invoices.php:322
384
  msgid ""
385
  "We will never ask for donations, but to garantee future development, we do "
386
  "need your support. Please show us your appreciation by leaving a <a href="
389
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
390
  msgstr ""
391
 
392
+ #: ../includes/be-woocommerce-pdf-invoices.php:341
393
  msgid ""
394
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
395
  msgstr ""
396
 
397
+ #: ../includes/be-woocommerce-pdf-invoices.php:346
398
  msgid "Need Help?"
399
  msgstr ""
400
 
401
+ #: ../includes/be-woocommerce-pdf-invoices.php:348
402
  msgid "Frequently Asked Questions"
403
  msgstr ""
404
 
405
+ #: ../includes/be-woocommerce-pdf-invoices.php:349
406
  msgid "Support forum"
407
  msgstr ""
408
 
409
+ #: ../includes/be-woocommerce-pdf-invoices.php:350
410
  msgid "Request a feature"
411
  msgstr ""
412
 
413
+ #: ../includes/be-woocommerce-pdf-invoices.php:351
414
  msgid "Email us"
415
  msgstr ""
416
 
417
+ #: ../includes/be-woocommerce-pdf-invoices.php:409
418
  msgid "PDF Invoice"
419
  msgstr "PDF Factura"
420
 
421
+ #: ../includes/be-woocommerce-pdf-invoices.php:435
422
  msgid "Invoiced on:"
423
  msgstr "Facturado en:"
424
 
425
+ #: ../includes/be-woocommerce-pdf-invoices.php:439
426
  msgid "Invoice number:"
427
  msgstr "Nº de factura"
428
 
429
+ #: ../includes/be-woocommerce-pdf-invoices.php:477
430
  msgid "View invoice"
431
  msgstr "Ver factura"
432
 
433
+ #: ../includes/be-woocommerce-pdf-invoices.php:477
434
  msgid "View"
435
  msgstr "Ver"
436
 
437
+ #: ../includes/be-woocommerce-pdf-invoices.php:478
438
  msgid "Cancel invoice"
439
  msgstr "Cancelar factura"
440
 
441
+ #: ../includes/be-woocommerce-pdf-invoices.php:478
442
  msgid "Cancel"
443
  msgstr "Cancelar"
444
 
445
+ #: ../includes/be-woocommerce-pdf-invoices.php:480
446
  msgid "Are you sure to delete the invoice?"
447
  msgstr "¿Está seguro de eliminar la factura?"
448
 
449
+ #: ../includes/be-woocommerce-pdf-invoices.php:483
450
  msgid "Create invoice"
451
  msgstr "Crear factura"
452
 
453
+ #: ../includes/be-woocommerce-pdf-invoices.php:483
454
  msgid "Create"
455
  msgstr "Crear"
456
 
457
+ #: ../includes/be-woocommerce-pdf-invoices.php:516
458
  #, php-format
459
  msgid "Invoice %s (PDF)"
460
  msgstr "Factura %s (PDF)"
461
 
462
+ #: ../includes/be-woocommerce-pdf-invoices.php:627
463
  #, php-format
464
  msgid ""
465
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
lang/be-woocommerce-pdf-invoices-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2015-10-06 08:27+0100\n"
5
- "PO-Revision-Date: 2015-10-06 08:27+0100\n"
6
  "Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
7
  "Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
8
  "Language: fr_FR\n"
@@ -23,11 +23,11 @@ msgstr ""
23
  msgid "Paid"
24
  msgstr ""
25
 
26
- #: includes/abstracts/abstract-bewpi-setting.php:87
27
  msgid "Feel free to use "
28
  msgstr "N'hésitez pas à utiliser"
29
 
30
- #: includes/abstracts/abstract-bewpi-setting.php:155
31
  msgid "Remove logo"
32
  msgstr "Retirer le logo"
33
 
@@ -335,52 +335,52 @@ msgstr ""
335
  msgid "Version %s"
336
  msgstr ""
337
 
338
- #: includes/be-woocommerce-pdf-invoices.php:276
339
  msgid "Invoicing on Steroids"
340
  msgstr ""
341
 
342
- #: includes/be-woocommerce-pdf-invoices.php:277
343
  msgid ""
344
  "We're working on a more powerful version of this invoicing plugin. Be the "
345
  "first to know when we're ready to launch and receive a unique one-time "
346
  "discount!"
347
  msgstr ""
348
 
349
- #: includes/be-woocommerce-pdf-invoices.php:291
350
  msgid "Your email address"
351
  msgstr ""
352
 
353
- #: includes/be-woocommerce-pdf-invoices.php:294
354
  msgid "Signup"
355
  msgstr ""
356
 
357
- #: includes/be-woocommerce-pdf-invoices.php:295
358
  msgid "No spam, ever. Unsubscribe at any time"
359
  msgstr ""
360
 
361
- #: includes/be-woocommerce-pdf-invoices.php:303
362
  msgid "About"
363
  msgstr ""
364
 
365
- #: includes/be-woocommerce-pdf-invoices.php:304
366
  msgid ""
367
  "This plugin is an open source project wich aims to fill the invoicing gap of "
368
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
369
  msgstr ""
370
 
371
- #: includes/be-woocommerce-pdf-invoices.php:305
372
  msgid "<b>Version</b>: "
373
  msgstr ""
374
 
375
- #: includes/be-woocommerce-pdf-invoices.php:307
376
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
377
  msgstr ""
378
 
379
- #: includes/be-woocommerce-pdf-invoices.php:310
380
  msgid "Support"
381
  msgstr ""
382
 
383
- #: includes/be-woocommerce-pdf-invoices.php:311
384
  msgid ""
385
  "We will never ask for donations, but to garantee future development, we do "
386
  "need your support. Please show us your appreciation by leaving a <a href="
@@ -389,77 +389,77 @@ msgid ""
389
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
390
  msgstr ""
391
 
392
- #: includes/be-woocommerce-pdf-invoices.php:330
393
  msgid ""
394
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
395
  msgstr ""
396
 
397
- #: includes/be-woocommerce-pdf-invoices.php:335
398
  msgid "Need Help?"
399
  msgstr ""
400
 
401
- #: includes/be-woocommerce-pdf-invoices.php:337
402
  msgid "Frequently Asked Questions"
403
  msgstr ""
404
 
405
- #: includes/be-woocommerce-pdf-invoices.php:338
406
  msgid "Support forum"
407
  msgstr ""
408
 
409
- #: includes/be-woocommerce-pdf-invoices.php:339
410
  msgid "Request a feature"
411
  msgstr ""
412
 
413
- #: includes/be-woocommerce-pdf-invoices.php:340
414
  msgid "Email us"
415
  msgstr ""
416
 
417
- #: includes/be-woocommerce-pdf-invoices.php:399
418
  msgid "PDF Invoice"
419
  msgstr "Facture PDF"
420
 
421
- #: includes/be-woocommerce-pdf-invoices.php:425
422
  msgid "Invoiced on:"
423
  msgstr "Facturés sur"
424
 
425
- #: includes/be-woocommerce-pdf-invoices.php:429
426
  msgid "Invoice number:"
427
  msgstr "Numéro de facture"
428
 
429
- #: includes/be-woocommerce-pdf-invoices.php:467
430
  msgid "View invoice"
431
  msgstr " Voir la facture"
432
 
433
- #: includes/be-woocommerce-pdf-invoices.php:467
434
  msgid "View"
435
  msgstr "Voir"
436
 
437
- #: includes/be-woocommerce-pdf-invoices.php:468
438
  msgid "Cancel invoice"
439
  msgstr "Annuler la facture"
440
 
441
- #: includes/be-woocommerce-pdf-invoices.php:468
442
  msgid "Cancel"
443
  msgstr "Annuler"
444
 
445
- #: includes/be-woocommerce-pdf-invoices.php:470
446
  msgid "Are you sure to delete the invoice?"
447
  msgstr "Êtes-vous certain de vouloir supprimer la facture? "
448
 
449
- #: includes/be-woocommerce-pdf-invoices.php:473
450
  msgid "Create invoice"
451
  msgstr "Créer une facture"
452
 
453
- #: includes/be-woocommerce-pdf-invoices.php:473
454
  msgid "Create"
455
  msgstr "créer"
456
 
457
- #: includes/be-woocommerce-pdf-invoices.php:506
458
  #, php-format
459
  msgid "Invoice %s (PDF)"
460
  msgstr ""
461
 
462
- #: includes/be-woocommerce-pdf-invoices.php:617
463
  #, php-format
464
  msgid ""
465
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-10-10 14:10+0100\n"
5
+ "PO-Revision-Date: 2015-10-10 14:10+0100\n"
6
  "Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
7
  "Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
8
  "Language: fr_FR\n"
23
  msgid "Paid"
24
  msgstr ""
25
 
26
+ #: includes/abstracts/abstract-bewpi-setting.php:96
27
  msgid "Feel free to use "
28
  msgstr "N'hésitez pas à utiliser"
29
 
30
+ #: includes/abstracts/abstract-bewpi-setting.php:176
31
  msgid "Remove logo"
32
  msgstr "Retirer le logo"
33
 
335
  msgid "Version %s"
336
  msgstr ""
337
 
338
+ #: includes/be-woocommerce-pdf-invoices.php:287
339
  msgid "Invoicing on Steroids"
340
  msgstr ""
341
 
342
+ #: includes/be-woocommerce-pdf-invoices.php:288
343
  msgid ""
344
  "We're working on a more powerful version of this invoicing plugin. Be the "
345
  "first to know when we're ready to launch and receive a unique one-time "
346
  "discount!"
347
  msgstr ""
348
 
349
+ #: includes/be-woocommerce-pdf-invoices.php:302
350
  msgid "Your email address"
351
  msgstr ""
352
 
353
+ #: includes/be-woocommerce-pdf-invoices.php:305
354
  msgid "Signup"
355
  msgstr ""
356
 
357
+ #: includes/be-woocommerce-pdf-invoices.php:306
358
  msgid "No spam, ever. Unsubscribe at any time"
359
  msgstr ""
360
 
361
+ #: includes/be-woocommerce-pdf-invoices.php:314
362
  msgid "About"
363
  msgstr ""
364
 
365
+ #: includes/be-woocommerce-pdf-invoices.php:315
366
  msgid ""
367
  "This plugin is an open source project wich aims to fill the invoicing gap of "
368
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
369
  msgstr ""
370
 
371
+ #: includes/be-woocommerce-pdf-invoices.php:316
372
  msgid "<b>Version</b>: "
373
  msgstr ""
374
 
375
+ #: includes/be-woocommerce-pdf-invoices.php:318
376
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
377
  msgstr ""
378
 
379
+ #: includes/be-woocommerce-pdf-invoices.php:321
380
  msgid "Support"
381
  msgstr ""
382
 
383
+ #: includes/be-woocommerce-pdf-invoices.php:322
384
  msgid ""
385
  "We will never ask for donations, but to garantee future development, we do "
386
  "need your support. Please show us your appreciation by leaving a <a href="
389
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
390
  msgstr ""
391
 
392
+ #: includes/be-woocommerce-pdf-invoices.php:341
393
  msgid ""
394
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
395
  msgstr ""
396
 
397
+ #: includes/be-woocommerce-pdf-invoices.php:346
398
  msgid "Need Help?"
399
  msgstr ""
400
 
401
+ #: includes/be-woocommerce-pdf-invoices.php:348
402
  msgid "Frequently Asked Questions"
403
  msgstr ""
404
 
405
+ #: includes/be-woocommerce-pdf-invoices.php:349
406
  msgid "Support forum"
407
  msgstr ""
408
 
409
+ #: includes/be-woocommerce-pdf-invoices.php:350
410
  msgid "Request a feature"
411
  msgstr ""
412
 
413
+ #: includes/be-woocommerce-pdf-invoices.php:351
414
  msgid "Email us"
415
  msgstr ""
416
 
417
+ #: includes/be-woocommerce-pdf-invoices.php:409
418
  msgid "PDF Invoice"
419
  msgstr "Facture PDF"
420
 
421
+ #: includes/be-woocommerce-pdf-invoices.php:435
422
  msgid "Invoiced on:"
423
  msgstr "Facturés sur"
424
 
425
+ #: includes/be-woocommerce-pdf-invoices.php:439
426
  msgid "Invoice number:"
427
  msgstr "Numéro de facture"
428
 
429
+ #: includes/be-woocommerce-pdf-invoices.php:477
430
  msgid "View invoice"
431
  msgstr " Voir la facture"
432
 
433
+ #: includes/be-woocommerce-pdf-invoices.php:477
434
  msgid "View"
435
  msgstr "Voir"
436
 
437
+ #: includes/be-woocommerce-pdf-invoices.php:478
438
  msgid "Cancel invoice"
439
  msgstr "Annuler la facture"
440
 
441
+ #: includes/be-woocommerce-pdf-invoices.php:478
442
  msgid "Cancel"
443
  msgstr "Annuler"
444
 
445
+ #: includes/be-woocommerce-pdf-invoices.php:480
446
  msgid "Are you sure to delete the invoice?"
447
  msgstr "Êtes-vous certain de vouloir supprimer la facture? "
448
 
449
+ #: includes/be-woocommerce-pdf-invoices.php:483
450
  msgid "Create invoice"
451
  msgstr "Créer une facture"
452
 
453
+ #: includes/be-woocommerce-pdf-invoices.php:483
454
  msgid "Create"
455
  msgstr "créer"
456
 
457
+ #: includes/be-woocommerce-pdf-invoices.php:516
458
  #, php-format
459
  msgid "Invoice %s (PDF)"
460
  msgstr ""
461
 
462
+ #: includes/be-woocommerce-pdf-invoices.php:627
463
  #, php-format
464
  msgid ""
465
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
lang/be-woocommerce-pdf-invoices-nb_NO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2015-10-06 08:27+0100\n"
5
- "PO-Revision-Date: 2015-10-06 08:27+0100\n"
6
  "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
  "Language-Team: \n"
8
  "Language: nb\n"
@@ -23,11 +23,11 @@ msgstr ""
23
  msgid "Paid"
24
  msgstr "Betalt"
25
 
26
- #: includes/abstracts/abstract-bewpi-setting.php:87
27
  msgid "Feel free to use "
28
  msgstr "Du kan også bruke "
29
 
30
- #: includes/abstracts/abstract-bewpi-setting.php:155
31
  msgid "Remove logo"
32
  msgstr "Fjern logo"
33
 
@@ -339,52 +339,52 @@ msgstr ""
339
  msgid "Version %s"
340
  msgstr ""
341
 
342
- #: includes/be-woocommerce-pdf-invoices.php:276
343
  msgid "Invoicing on Steroids"
344
  msgstr ""
345
 
346
- #: includes/be-woocommerce-pdf-invoices.php:277
347
  msgid ""
348
  "We're working on a more powerful version of this invoicing plugin. Be the "
349
  "first to know when we're ready to launch and receive a unique one-time "
350
  "discount!"
351
  msgstr ""
352
 
353
- #: includes/be-woocommerce-pdf-invoices.php:291
354
  msgid "Your email address"
355
  msgstr ""
356
 
357
- #: includes/be-woocommerce-pdf-invoices.php:294
358
  msgid "Signup"
359
  msgstr ""
360
 
361
- #: includes/be-woocommerce-pdf-invoices.php:295
362
  msgid "No spam, ever. Unsubscribe at any time"
363
  msgstr ""
364
 
365
- #: includes/be-woocommerce-pdf-invoices.php:303
366
  msgid "About"
367
  msgstr ""
368
 
369
- #: includes/be-woocommerce-pdf-invoices.php:304
370
  msgid ""
371
  "This plugin is an open source project wich aims to fill the invoicing gap of "
372
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
373
  msgstr ""
374
 
375
- #: includes/be-woocommerce-pdf-invoices.php:305
376
  msgid "<b>Version</b>: "
377
  msgstr ""
378
 
379
- #: includes/be-woocommerce-pdf-invoices.php:307
380
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
381
  msgstr ""
382
 
383
- #: includes/be-woocommerce-pdf-invoices.php:310
384
  msgid "Support"
385
  msgstr ""
386
 
387
- #: includes/be-woocommerce-pdf-invoices.php:311
388
  msgid ""
389
  "We will never ask for donations, but to garantee future development, we do "
390
  "need your support. Please show us your appreciation by leaving a <a href="
@@ -393,77 +393,77 @@ msgid ""
393
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
394
  msgstr ""
395
 
396
- #: includes/be-woocommerce-pdf-invoices.php:330
397
  msgid ""
398
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
399
  msgstr ""
400
 
401
- #: includes/be-woocommerce-pdf-invoices.php:335
402
  msgid "Need Help?"
403
  msgstr ""
404
 
405
- #: includes/be-woocommerce-pdf-invoices.php:337
406
  msgid "Frequently Asked Questions"
407
  msgstr ""
408
 
409
- #: includes/be-woocommerce-pdf-invoices.php:338
410
  msgid "Support forum"
411
  msgstr ""
412
 
413
- #: includes/be-woocommerce-pdf-invoices.php:339
414
  msgid "Request a feature"
415
  msgstr ""
416
 
417
- #: includes/be-woocommerce-pdf-invoices.php:340
418
  msgid "Email us"
419
  msgstr ""
420
 
421
- #: includes/be-woocommerce-pdf-invoices.php:399
422
  msgid "PDF Invoice"
423
  msgstr "PDF Faktura"
424
 
425
- #: includes/be-woocommerce-pdf-invoices.php:425
426
  msgid "Invoiced on:"
427
  msgstr "Sendt:"
428
 
429
- #: includes/be-woocommerce-pdf-invoices.php:429
430
  msgid "Invoice number:"
431
  msgstr "Fakturanummer:"
432
 
433
- #: includes/be-woocommerce-pdf-invoices.php:467
434
  msgid "View invoice"
435
  msgstr "Vis faktura"
436
 
437
- #: includes/be-woocommerce-pdf-invoices.php:467
438
  msgid "View"
439
  msgstr "Vis"
440
 
441
- #: includes/be-woocommerce-pdf-invoices.php:468
442
  msgid "Cancel invoice"
443
  msgstr "Slett faktura"
444
 
445
- #: includes/be-woocommerce-pdf-invoices.php:468
446
  msgid "Cancel"
447
  msgstr "Slett"
448
 
449
- #: includes/be-woocommerce-pdf-invoices.php:470
450
  msgid "Are you sure to delete the invoice?"
451
  msgstr "Er du sikker på at du vil slette fakturaen?"
452
 
453
- #: includes/be-woocommerce-pdf-invoices.php:473
454
  msgid "Create invoice"
455
  msgstr "Opprett faktura"
456
 
457
- #: includes/be-woocommerce-pdf-invoices.php:473
458
  msgid "Create"
459
  msgstr "Opprett"
460
 
461
- #: includes/be-woocommerce-pdf-invoices.php:506
462
  #, php-format
463
  msgid "Invoice %s (PDF)"
464
  msgstr "Faktura %s (PDF)"
465
 
466
- #: includes/be-woocommerce-pdf-invoices.php:617
467
  #, php-format
468
  msgid ""
469
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-10-10 14:10+0100\n"
5
+ "PO-Revision-Date: 2015-10-10 14:10+0100\n"
6
  "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
  "Language-Team: \n"
8
  "Language: nb\n"
23
  msgid "Paid"
24
  msgstr "Betalt"
25
 
26
+ #: includes/abstracts/abstract-bewpi-setting.php:96
27
  msgid "Feel free to use "
28
  msgstr "Du kan også bruke "
29
 
30
+ #: includes/abstracts/abstract-bewpi-setting.php:176
31
  msgid "Remove logo"
32
  msgstr "Fjern logo"
33
 
339
  msgid "Version %s"
340
  msgstr ""
341
 
342
+ #: includes/be-woocommerce-pdf-invoices.php:287
343
  msgid "Invoicing on Steroids"
344
  msgstr ""
345
 
346
+ #: includes/be-woocommerce-pdf-invoices.php:288
347
  msgid ""
348
  "We're working on a more powerful version of this invoicing plugin. Be the "
349
  "first to know when we're ready to launch and receive a unique one-time "
350
  "discount!"
351
  msgstr ""
352
 
353
+ #: includes/be-woocommerce-pdf-invoices.php:302
354
  msgid "Your email address"
355
  msgstr ""
356
 
357
+ #: includes/be-woocommerce-pdf-invoices.php:305
358
  msgid "Signup"
359
  msgstr ""
360
 
361
+ #: includes/be-woocommerce-pdf-invoices.php:306
362
  msgid "No spam, ever. Unsubscribe at any time"
363
  msgstr ""
364
 
365
+ #: includes/be-woocommerce-pdf-invoices.php:314
366
  msgid "About"
367
  msgstr ""
368
 
369
+ #: includes/be-woocommerce-pdf-invoices.php:315
370
  msgid ""
371
  "This plugin is an open source project wich aims to fill the invoicing gap of "
372
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
373
  msgstr ""
374
 
375
+ #: includes/be-woocommerce-pdf-invoices.php:316
376
  msgid "<b>Version</b>: "
377
  msgstr ""
378
 
379
+ #: includes/be-woocommerce-pdf-invoices.php:318
380
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
381
  msgstr ""
382
 
383
+ #: includes/be-woocommerce-pdf-invoices.php:321
384
  msgid "Support"
385
  msgstr ""
386
 
387
+ #: includes/be-woocommerce-pdf-invoices.php:322
388
  msgid ""
389
  "We will never ask for donations, but to garantee future development, we do "
390
  "need your support. Please show us your appreciation by leaving a <a href="
393
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
394
  msgstr ""
395
 
396
+ #: includes/be-woocommerce-pdf-invoices.php:341
397
  msgid ""
398
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
399
  msgstr ""
400
 
401
+ #: includes/be-woocommerce-pdf-invoices.php:346
402
  msgid "Need Help?"
403
  msgstr ""
404
 
405
+ #: includes/be-woocommerce-pdf-invoices.php:348
406
  msgid "Frequently Asked Questions"
407
  msgstr ""
408
 
409
+ #: includes/be-woocommerce-pdf-invoices.php:349
410
  msgid "Support forum"
411
  msgstr ""
412
 
413
+ #: includes/be-woocommerce-pdf-invoices.php:350
414
  msgid "Request a feature"
415
  msgstr ""
416
 
417
+ #: includes/be-woocommerce-pdf-invoices.php:351
418
  msgid "Email us"
419
  msgstr ""
420
 
421
+ #: includes/be-woocommerce-pdf-invoices.php:409
422
  msgid "PDF Invoice"
423
  msgstr "PDF Faktura"
424
 
425
+ #: includes/be-woocommerce-pdf-invoices.php:435
426
  msgid "Invoiced on:"
427
  msgstr "Sendt:"
428
 
429
+ #: includes/be-woocommerce-pdf-invoices.php:439
430
  msgid "Invoice number:"
431
  msgstr "Fakturanummer:"
432
 
433
+ #: includes/be-woocommerce-pdf-invoices.php:477
434
  msgid "View invoice"
435
  msgstr "Vis faktura"
436
 
437
+ #: includes/be-woocommerce-pdf-invoices.php:477
438
  msgid "View"
439
  msgstr "Vis"
440
 
441
+ #: includes/be-woocommerce-pdf-invoices.php:478
442
  msgid "Cancel invoice"
443
  msgstr "Slett faktura"
444
 
445
+ #: includes/be-woocommerce-pdf-invoices.php:478
446
  msgid "Cancel"
447
  msgstr "Slett"
448
 
449
+ #: includes/be-woocommerce-pdf-invoices.php:480
450
  msgid "Are you sure to delete the invoice?"
451
  msgstr "Er du sikker på at du vil slette fakturaen?"
452
 
453
+ #: includes/be-woocommerce-pdf-invoices.php:483
454
  msgid "Create invoice"
455
  msgstr "Opprett faktura"
456
 
457
+ #: includes/be-woocommerce-pdf-invoices.php:483
458
  msgid "Create"
459
  msgstr "Opprett"
460
 
461
+ #: includes/be-woocommerce-pdf-invoices.php:516
462
  #, php-format
463
  msgid "Invoice %s (PDF)"
464
  msgstr "Faktura %s (PDF)"
465
 
466
+ #: includes/be-woocommerce-pdf-invoices.php:627
467
  #, php-format
468
  msgid ""
469
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
lang/be-woocommerce-pdf-invoices-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2015-10-06 19:16+0100\n"
5
- "PO-Revision-Date: 2015-10-06 19:16+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -23,11 +23,11 @@ msgstr ""
23
  msgid "Paid"
24
  msgstr "Betaald"
25
 
26
- #: includes/abstracts/abstract-bewpi-setting.php:87
27
  msgid "Feel free to use "
28
  msgstr "Gebruik"
29
 
30
- #: includes/abstracts/abstract-bewpi-setting.php:155
31
  msgid "Remove logo"
32
  msgstr "Verwijder logo"
33
 
@@ -341,11 +341,11 @@ msgstr ""
341
  msgid "Version %s"
342
  msgstr ""
343
 
344
- #: includes/be-woocommerce-pdf-invoices.php:276
345
  msgid "Invoicing on Steroids"
346
  msgstr "Facturen op Steroïde"
347
 
348
- #: includes/be-woocommerce-pdf-invoices.php:277
349
  msgid ""
350
  "We're working on a more powerful version of this invoicing plugin. Be the "
351
  "first to know when we're ready to launch and receive a unique one-time "
@@ -355,23 +355,23 @@ msgstr ""
355
  "meer te weten krijgt over de lancering en verkrijg een unieke eenmalige "
356
  "korting!"
357
 
358
- #: includes/be-woocommerce-pdf-invoices.php:291
359
  msgid "Your email address"
360
  msgstr "Jouw Emailadres"
361
 
362
- #: includes/be-woocommerce-pdf-invoices.php:294
363
  msgid "Signup"
364
  msgstr "Inschrijven"
365
 
366
- #: includes/be-woocommerce-pdf-invoices.php:295
367
  msgid "No spam, ever. Unsubscribe at any time"
368
  msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
369
 
370
- #: includes/be-woocommerce-pdf-invoices.php:303
371
  msgid "About"
372
  msgstr "Over"
373
 
374
- #: includes/be-woocommerce-pdf-invoices.php:304
375
  msgid ""
376
  "This plugin is an open source project wich aims to fill the invoicing gap of "
377
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
@@ -379,19 +379,19 @@ msgstr ""
379
  "Deze plugin is een opensource project met als doel, het facturen gat van "
380
  "WooCommerce op te vullen."
381
 
382
- #: includes/be-woocommerce-pdf-invoices.php:305
383
  msgid "<b>Version</b>: "
384
  msgstr "<b>Versie</b>:"
385
 
386
- #: includes/be-woocommerce-pdf-invoices.php:307
387
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
388
  msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
389
 
390
- #: includes/be-woocommerce-pdf-invoices.php:310
391
  msgid "Support"
392
  msgstr "Ondersteuning"
393
 
394
- #: includes/be-woocommerce-pdf-invoices.php:311
395
  msgid ""
396
  "We will never ask for donations, but to garantee future development, we do "
397
  "need your support. Please show us your appreciation by leaving a <a href="
@@ -406,77 +406,77 @@ msgstr ""
406
  "<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
407
  "a>."
408
 
409
- #: includes/be-woocommerce-pdf-invoices.php:330
410
  msgid ""
411
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
412
  msgstr ""
413
 
414
- #: includes/be-woocommerce-pdf-invoices.php:335
415
  msgid "Need Help?"
416
  msgstr "Hulp Nodig?"
417
 
418
- #: includes/be-woocommerce-pdf-invoices.php:337
419
  msgid "Frequently Asked Questions"
420
  msgstr "Veel gestelde vragen"
421
 
422
- #: includes/be-woocommerce-pdf-invoices.php:338
423
  msgid "Support forum"
424
  msgstr "Support Forum"
425
 
426
- #: includes/be-woocommerce-pdf-invoices.php:339
427
  msgid "Request a feature"
428
  msgstr "Verzoek een nieuwe functionaliteit"
429
 
430
- #: includes/be-woocommerce-pdf-invoices.php:340
431
  msgid "Email us"
432
  msgstr "Email ons"
433
 
434
- #: includes/be-woocommerce-pdf-invoices.php:399
435
  msgid "PDF Invoice"
436
  msgstr "PDF Factuur"
437
 
438
- #: includes/be-woocommerce-pdf-invoices.php:425
439
  msgid "Invoiced on:"
440
  msgstr "Gefactureerd op:"
441
 
442
- #: includes/be-woocommerce-pdf-invoices.php:429
443
  msgid "Invoice number:"
444
  msgstr "Factuurnummer:"
445
 
446
- #: includes/be-woocommerce-pdf-invoices.php:467
447
  msgid "View invoice"
448
  msgstr "Toon factuur"
449
 
450
- #: includes/be-woocommerce-pdf-invoices.php:467
451
  msgid "View"
452
  msgstr "Bekijk"
453
 
454
- #: includes/be-woocommerce-pdf-invoices.php:468
455
  msgid "Cancel invoice"
456
  msgstr "Factuur annuleren"
457
 
458
- #: includes/be-woocommerce-pdf-invoices.php:468
459
  msgid "Cancel"
460
  msgstr "Annuleer"
461
 
462
- #: includes/be-woocommerce-pdf-invoices.php:470
463
  msgid "Are you sure to delete the invoice?"
464
  msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
465
 
466
- #: includes/be-woocommerce-pdf-invoices.php:473
467
  msgid "Create invoice"
468
  msgstr "Maak factuur"
469
 
470
- #: includes/be-woocommerce-pdf-invoices.php:473
471
  msgid "Create"
472
  msgstr "Aanmaken"
473
 
474
- #: includes/be-woocommerce-pdf-invoices.php:506
475
  #, php-format
476
  msgid "Invoice %s (PDF)"
477
  msgstr "Factuur %s (PDF)"
478
 
479
- #: includes/be-woocommerce-pdf-invoices.php:617
480
  #, php-format
481
  msgid ""
482
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-10-10 14:10+0100\n"
5
+ "PO-Revision-Date: 2015-10-10 14:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
23
  msgid "Paid"
24
  msgstr "Betaald"
25
 
26
+ #: includes/abstracts/abstract-bewpi-setting.php:96
27
  msgid "Feel free to use "
28
  msgstr "Gebruik"
29
 
30
+ #: includes/abstracts/abstract-bewpi-setting.php:176
31
  msgid "Remove logo"
32
  msgstr "Verwijder logo"
33
 
341
  msgid "Version %s"
342
  msgstr ""
343
 
344
+ #: includes/be-woocommerce-pdf-invoices.php:287
345
  msgid "Invoicing on Steroids"
346
  msgstr "Facturen op Steroïde"
347
 
348
+ #: includes/be-woocommerce-pdf-invoices.php:288
349
  msgid ""
350
  "We're working on a more powerful version of this invoicing plugin. Be the "
351
  "first to know when we're ready to launch and receive a unique one-time "
355
  "meer te weten krijgt over de lancering en verkrijg een unieke eenmalige "
356
  "korting!"
357
 
358
+ #: includes/be-woocommerce-pdf-invoices.php:302
359
  msgid "Your email address"
360
  msgstr "Jouw Emailadres"
361
 
362
+ #: includes/be-woocommerce-pdf-invoices.php:305
363
  msgid "Signup"
364
  msgstr "Inschrijven"
365
 
366
+ #: includes/be-woocommerce-pdf-invoices.php:306
367
  msgid "No spam, ever. Unsubscribe at any time"
368
  msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
369
 
370
+ #: includes/be-woocommerce-pdf-invoices.php:314
371
  msgid "About"
372
  msgstr "Over"
373
 
374
+ #: includes/be-woocommerce-pdf-invoices.php:315
375
  msgid ""
376
  "This plugin is an open source project wich aims to fill the invoicing gap of "
377
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
379
  "Deze plugin is een opensource project met als doel, het facturen gat van "
380
  "WooCommerce op te vullen."
381
 
382
+ #: includes/be-woocommerce-pdf-invoices.php:316
383
  msgid "<b>Version</b>: "
384
  msgstr "<b>Versie</b>:"
385
 
386
+ #: includes/be-woocommerce-pdf-invoices.php:318
387
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
388
  msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
389
 
390
+ #: includes/be-woocommerce-pdf-invoices.php:321
391
  msgid "Support"
392
  msgstr "Ondersteuning"
393
 
394
+ #: includes/be-woocommerce-pdf-invoices.php:322
395
  msgid ""
396
  "We will never ask for donations, but to garantee future development, we do "
397
  "need your support. Please show us your appreciation by leaving a <a href="
406
  "<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
407
  "a>."
408
 
409
+ #: includes/be-woocommerce-pdf-invoices.php:341
410
  msgid ""
411
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
412
  msgstr ""
413
 
414
+ #: includes/be-woocommerce-pdf-invoices.php:346
415
  msgid "Need Help?"
416
  msgstr "Hulp Nodig?"
417
 
418
+ #: includes/be-woocommerce-pdf-invoices.php:348
419
  msgid "Frequently Asked Questions"
420
  msgstr "Veel gestelde vragen"
421
 
422
+ #: includes/be-woocommerce-pdf-invoices.php:349
423
  msgid "Support forum"
424
  msgstr "Support Forum"
425
 
426
+ #: includes/be-woocommerce-pdf-invoices.php:350
427
  msgid "Request a feature"
428
  msgstr "Verzoek een nieuwe functionaliteit"
429
 
430
+ #: includes/be-woocommerce-pdf-invoices.php:351
431
  msgid "Email us"
432
  msgstr "Email ons"
433
 
434
+ #: includes/be-woocommerce-pdf-invoices.php:409
435
  msgid "PDF Invoice"
436
  msgstr "PDF Factuur"
437
 
438
+ #: includes/be-woocommerce-pdf-invoices.php:435
439
  msgid "Invoiced on:"
440
  msgstr "Gefactureerd op:"
441
 
442
+ #: includes/be-woocommerce-pdf-invoices.php:439
443
  msgid "Invoice number:"
444
  msgstr "Factuurnummer:"
445
 
446
+ #: includes/be-woocommerce-pdf-invoices.php:477
447
  msgid "View invoice"
448
  msgstr "Toon factuur"
449
 
450
+ #: includes/be-woocommerce-pdf-invoices.php:477
451
  msgid "View"
452
  msgstr "Bekijk"
453
 
454
+ #: includes/be-woocommerce-pdf-invoices.php:478
455
  msgid "Cancel invoice"
456
  msgstr "Factuur annuleren"
457
 
458
+ #: includes/be-woocommerce-pdf-invoices.php:478
459
  msgid "Cancel"
460
  msgstr "Annuleer"
461
 
462
+ #: includes/be-woocommerce-pdf-invoices.php:480
463
  msgid "Are you sure to delete the invoice?"
464
  msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
465
 
466
+ #: includes/be-woocommerce-pdf-invoices.php:483
467
  msgid "Create invoice"
468
  msgstr "Maak factuur"
469
 
470
+ #: includes/be-woocommerce-pdf-invoices.php:483
471
  msgid "Create"
472
  msgstr "Aanmaken"
473
 
474
+ #: includes/be-woocommerce-pdf-invoices.php:516
475
  #, php-format
476
  msgid "Invoice %s (PDF)"
477
  msgstr "Factuur %s (PDF)"
478
 
479
+ #: includes/be-woocommerce-pdf-invoices.php:627
480
  #, php-format
481
  msgid ""
482
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
lang/be-woocommerce-pdf-invoices-sl_SI.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2015-10-06 08:27+0100\n"
5
- "PO-Revision-Date: 2015-10-06 08:27+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -23,11 +23,11 @@ msgstr ""
23
  msgid "Paid"
24
  msgstr ""
25
 
26
- #: includes/abstracts/abstract-bewpi-setting.php:87
27
  msgid "Feel free to use "
28
  msgstr ""
29
 
30
- #: includes/abstracts/abstract-bewpi-setting.php:155
31
  msgid "Remove logo"
32
  msgstr ""
33
 
@@ -329,52 +329,52 @@ msgstr ""
329
  msgid "Version %s"
330
  msgstr ""
331
 
332
- #: includes/be-woocommerce-pdf-invoices.php:276
333
  msgid "Invoicing on Steroids"
334
  msgstr ""
335
 
336
- #: includes/be-woocommerce-pdf-invoices.php:277
337
  msgid ""
338
  "We're working on a more powerful version of this invoicing plugin. Be the "
339
  "first to know when we're ready to launch and receive a unique one-time "
340
  "discount!"
341
  msgstr ""
342
 
343
- #: includes/be-woocommerce-pdf-invoices.php:291
344
  msgid "Your email address"
345
  msgstr ""
346
 
347
- #: includes/be-woocommerce-pdf-invoices.php:294
348
  msgid "Signup"
349
  msgstr ""
350
 
351
- #: includes/be-woocommerce-pdf-invoices.php:295
352
  msgid "No spam, ever. Unsubscribe at any time"
353
  msgstr ""
354
 
355
- #: includes/be-woocommerce-pdf-invoices.php:303
356
  msgid "About"
357
  msgstr ""
358
 
359
- #: includes/be-woocommerce-pdf-invoices.php:304
360
  msgid ""
361
  "This plugin is an open source project wich aims to fill the invoicing gap of "
362
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
363
  msgstr ""
364
 
365
- #: includes/be-woocommerce-pdf-invoices.php:305
366
  msgid "<b>Version</b>: "
367
  msgstr ""
368
 
369
- #: includes/be-woocommerce-pdf-invoices.php:307
370
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
371
  msgstr ""
372
 
373
- #: includes/be-woocommerce-pdf-invoices.php:310
374
  msgid "Support"
375
  msgstr ""
376
 
377
- #: includes/be-woocommerce-pdf-invoices.php:311
378
  msgid ""
379
  "We will never ask for donations, but to garantee future development, we do "
380
  "need your support. Please show us your appreciation by leaving a <a href="
@@ -383,77 +383,77 @@ msgid ""
383
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
384
  msgstr ""
385
 
386
- #: includes/be-woocommerce-pdf-invoices.php:330
387
  msgid ""
388
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
389
  msgstr ""
390
 
391
- #: includes/be-woocommerce-pdf-invoices.php:335
392
  msgid "Need Help?"
393
  msgstr ""
394
 
395
- #: includes/be-woocommerce-pdf-invoices.php:337
396
  msgid "Frequently Asked Questions"
397
  msgstr ""
398
 
399
- #: includes/be-woocommerce-pdf-invoices.php:338
400
  msgid "Support forum"
401
  msgstr ""
402
 
403
- #: includes/be-woocommerce-pdf-invoices.php:339
404
  msgid "Request a feature"
405
  msgstr ""
406
 
407
- #: includes/be-woocommerce-pdf-invoices.php:340
408
  msgid "Email us"
409
  msgstr ""
410
 
411
- #: includes/be-woocommerce-pdf-invoices.php:399
412
  msgid "PDF Invoice"
413
  msgstr ""
414
 
415
- #: includes/be-woocommerce-pdf-invoices.php:425
416
  msgid "Invoiced on:"
417
  msgstr ""
418
 
419
- #: includes/be-woocommerce-pdf-invoices.php:429
420
  msgid "Invoice number:"
421
  msgstr ""
422
 
423
- #: includes/be-woocommerce-pdf-invoices.php:467
424
  msgid "View invoice"
425
  msgstr ""
426
 
427
- #: includes/be-woocommerce-pdf-invoices.php:467
428
  msgid "View"
429
  msgstr ""
430
 
431
- #: includes/be-woocommerce-pdf-invoices.php:468
432
  msgid "Cancel invoice"
433
  msgstr ""
434
 
435
- #: includes/be-woocommerce-pdf-invoices.php:468
436
  msgid "Cancel"
437
  msgstr ""
438
 
439
- #: includes/be-woocommerce-pdf-invoices.php:470
440
  msgid "Are you sure to delete the invoice?"
441
  msgstr ""
442
 
443
- #: includes/be-woocommerce-pdf-invoices.php:473
444
  msgid "Create invoice"
445
  msgstr "Maak factuur"
446
 
447
- #: includes/be-woocommerce-pdf-invoices.php:473
448
  msgid "Create"
449
  msgstr ""
450
 
451
- #: includes/be-woocommerce-pdf-invoices.php:506
452
  #, php-format
453
  msgid "Invoice %s (PDF)"
454
  msgstr ""
455
 
456
- #: includes/be-woocommerce-pdf-invoices.php:617
457
  #, php-format
458
  msgid ""
459
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-10-10 14:10+0100\n"
5
+ "PO-Revision-Date: 2015-10-10 14:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
23
  msgid "Paid"
24
  msgstr ""
25
 
26
+ #: includes/abstracts/abstract-bewpi-setting.php:96
27
  msgid "Feel free to use "
28
  msgstr ""
29
 
30
+ #: includes/abstracts/abstract-bewpi-setting.php:176
31
  msgid "Remove logo"
32
  msgstr ""
33
 
329
  msgid "Version %s"
330
  msgstr ""
331
 
332
+ #: includes/be-woocommerce-pdf-invoices.php:287
333
  msgid "Invoicing on Steroids"
334
  msgstr ""
335
 
336
+ #: includes/be-woocommerce-pdf-invoices.php:288
337
  msgid ""
338
  "We're working on a more powerful version of this invoicing plugin. Be the "
339
  "first to know when we're ready to launch and receive a unique one-time "
340
  "discount!"
341
  msgstr ""
342
 
343
+ #: includes/be-woocommerce-pdf-invoices.php:302
344
  msgid "Your email address"
345
  msgstr ""
346
 
347
+ #: includes/be-woocommerce-pdf-invoices.php:305
348
  msgid "Signup"
349
  msgstr ""
350
 
351
+ #: includes/be-woocommerce-pdf-invoices.php:306
352
  msgid "No spam, ever. Unsubscribe at any time"
353
  msgstr ""
354
 
355
+ #: includes/be-woocommerce-pdf-invoices.php:314
356
  msgid "About"
357
  msgstr ""
358
 
359
+ #: includes/be-woocommerce-pdf-invoices.php:315
360
  msgid ""
361
  "This plugin is an open source project wich aims to fill the invoicing gap of "
362
  "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
363
  msgstr ""
364
 
365
+ #: includes/be-woocommerce-pdf-invoices.php:316
366
  msgid "<b>Version</b>: "
367
  msgstr ""
368
 
369
+ #: includes/be-woocommerce-pdf-invoices.php:318
370
  msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
371
  msgstr ""
372
 
373
+ #: includes/be-woocommerce-pdf-invoices.php:321
374
  msgid "Support"
375
  msgstr ""
376
 
377
+ #: includes/be-woocommerce-pdf-invoices.php:322
378
  msgid ""
379
  "We will never ask for donations, but to garantee future development, we do "
380
  "need your support. Please show us your appreciation by leaving a <a href="
383
  "org/plugins/woocommerce-pdf-invoices/\">works</a>."
384
  msgstr ""
385
 
386
+ #: includes/be-woocommerce-pdf-invoices.php:341
387
  msgid ""
388
  "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
389
  msgstr ""
390
 
391
+ #: includes/be-woocommerce-pdf-invoices.php:346
392
  msgid "Need Help?"
393
  msgstr ""
394
 
395
+ #: includes/be-woocommerce-pdf-invoices.php:348
396
  msgid "Frequently Asked Questions"
397
  msgstr ""
398
 
399
+ #: includes/be-woocommerce-pdf-invoices.php:349
400
  msgid "Support forum"
401
  msgstr ""
402
 
403
+ #: includes/be-woocommerce-pdf-invoices.php:350
404
  msgid "Request a feature"
405
  msgstr ""
406
 
407
+ #: includes/be-woocommerce-pdf-invoices.php:351
408
  msgid "Email us"
409
  msgstr ""
410
 
411
+ #: includes/be-woocommerce-pdf-invoices.php:409
412
  msgid "PDF Invoice"
413
  msgstr ""
414
 
415
+ #: includes/be-woocommerce-pdf-invoices.php:435
416
  msgid "Invoiced on:"
417
  msgstr ""
418
 
419
+ #: includes/be-woocommerce-pdf-invoices.php:439
420
  msgid "Invoice number:"
421
  msgstr ""
422
 
423
+ #: includes/be-woocommerce-pdf-invoices.php:477
424
  msgid "View invoice"
425
  msgstr ""
426
 
427
+ #: includes/be-woocommerce-pdf-invoices.php:477
428
  msgid "View"
429
  msgstr ""
430
 
431
+ #: includes/be-woocommerce-pdf-invoices.php:478
432
  msgid "Cancel invoice"
433
  msgstr ""
434
 
435
+ #: includes/be-woocommerce-pdf-invoices.php:478
436
  msgid "Cancel"
437
  msgstr ""
438
 
439
+ #: includes/be-woocommerce-pdf-invoices.php:480
440
  msgid "Are you sure to delete the invoice?"
441
  msgstr ""
442
 
443
+ #: includes/be-woocommerce-pdf-invoices.php:483
444
  msgid "Create invoice"
445
  msgstr "Maak factuur"
446
 
447
+ #: includes/be-woocommerce-pdf-invoices.php:483
448
  msgid "Create"
449
  msgstr ""
450
 
451
+ #: includes/be-woocommerce-pdf-invoices.php:516
452
  #, php-format
453
  msgid "Invoice %s (PDF)"
454
  msgstr ""
455
 
456
+ #: includes/be-woocommerce-pdf-invoices.php:627
457
  #, php-format
458
  msgid ""
459
  "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
lang/be-woocommerce-pdf-invoices.pot ADDED
@@ -0,0 +1,541 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 WooCommerce PDF Invoices
2
+ # This file is distributed under the same license as the WooCommerce PDF Invoices package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WooCommerce PDF Invoices 2.3.8\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-pdf-"
7
+ "invoices\n"
8
+ "POT-Creation-Date: 2015-10-20 20:49:17+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+
16
+ #: includes/abstracts/abstract-bewpi-document.php:69
17
+ msgid "Paid"
18
+ msgstr ""
19
+
20
+ #: includes/abstracts/abstract-bewpi-setting.php:96
21
+ msgid "Feel free to use "
22
+ msgstr ""
23
+
24
+ #: includes/abstracts/abstract-bewpi-setting.php:176
25
+ msgid "Remove logo"
26
+ msgstr ""
27
+
28
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
29
+ msgid "Attach to Email"
30
+ msgstr ""
31
+
32
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
33
+ msgid "Processing order"
34
+ msgstr ""
35
+
36
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
37
+ msgid "Completed order"
38
+ msgstr ""
39
+
40
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
41
+ msgid "Customer invoice"
42
+ msgstr ""
43
+
44
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:116
45
+ msgid "Attach to New order Email"
46
+ msgstr ""
47
+
48
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:128
49
+ msgid "Enable Email It In"
50
+ msgstr ""
51
+
52
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:136
53
+ msgid "Email It In account"
54
+ msgstr ""
55
+
56
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:141
57
+ msgid "Get your account from your Email It In %suser account%s."
58
+ msgstr ""
59
+
60
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
61
+ msgid "Email Options"
62
+ msgstr ""
63
+
64
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:160
65
+ msgid "Cloud Storage Options"
66
+ msgstr ""
67
+
68
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:167
69
+ msgid ""
70
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
71
+ "Egnyte and enter your account below."
72
+ msgstr ""
73
+
74
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:89
75
+ #: includes/be-woocommerce-pdf-invoices.php:200
76
+ msgid "Template"
77
+ msgstr ""
78
+
79
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:101
80
+ msgid "Color theme"
81
+ msgstr ""
82
+
83
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:112
84
+ msgid "Date format"
85
+ msgstr ""
86
+
87
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:117
88
+ msgid "%sFormat%s of invoice date and order date."
89
+ msgstr ""
90
+
91
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
92
+ msgid "Display prices including tax"
93
+ msgstr ""
94
+
95
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:133
96
+ msgid ""
97
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
98
+ "still be excluding tax, so disable it within the visible columns section."
99
+ msgstr ""
100
+
101
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
102
+ msgid "Shipping taxable"
103
+ msgstr ""
104
+
105
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:146
106
+ msgid "Enable to display subtotal including shipping."
107
+ msgstr ""
108
+
109
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
110
+ msgid "Mark invoice as paid"
111
+ msgstr ""
112
+
113
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:159
114
+ msgid "Invoice will be watermarked when order has been paid."
115
+ msgstr ""
116
+
117
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:167
118
+ msgid "Company name"
119
+ msgstr ""
120
+
121
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:178
122
+ msgid "Company logo"
123
+ msgstr ""
124
+
125
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:183
126
+ msgid ""
127
+ "<b>Note</b>: If your logo doesn't show up, try to enable "
128
+ "<code>allow_url_fopen</code>."
129
+ msgstr ""
130
+
131
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:189
132
+ msgid "Company address"
133
+ msgstr ""
134
+
135
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:200
136
+ msgid "Company details"
137
+ msgstr ""
138
+
139
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
140
+ msgid "Intro text"
141
+ msgstr ""
142
+
143
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:223
144
+ msgid "Terms & conditions, policies etc."
145
+ msgstr ""
146
+
147
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
148
+ msgid "Show customer notes"
149
+ msgstr ""
150
+
151
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:247
152
+ msgid "Type"
153
+ msgstr ""
154
+
155
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:255
156
+ msgid "WooCommerce order number"
157
+ msgstr ""
158
+
159
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:259
160
+ msgid "Sequential number"
161
+ msgstr ""
162
+
163
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:273
164
+ msgid "Reset invoice counter"
165
+ msgstr ""
166
+
167
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:283
168
+ msgid "Next"
169
+ msgstr ""
170
+
171
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:288
172
+ msgid ""
173
+ "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
174
+ "Only available with sequential numbering type and you need to check the "
175
+ "checkbox to actually reset the value."
176
+ msgstr ""
177
+
178
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:297
179
+ msgid "Digits"
180
+ msgstr ""
181
+
182
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:313
183
+ msgid "[prefix]"
184
+ msgstr ""
185
+
186
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:324
187
+ msgid "[suffix]"
188
+ msgstr ""
189
+
190
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:335
191
+ msgid "Format"
192
+ msgstr ""
193
+
194
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:340
195
+ msgid ""
196
+ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s is "
197
+ "required and slashes aren't supported."
198
+ msgstr ""
199
+
200
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:354
201
+ msgid "Reset on 1st of january"
202
+ msgstr ""
203
+
204
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:367
205
+ #: includes/templates/invoices/global/micro/body.php:10
206
+ #: includes/templates/invoices/simple/micro/body.php:10
207
+ msgid "SKU"
208
+ msgstr ""
209
+
210
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:379
211
+ #: includes/templates/invoices/global/micro/body.php:200
212
+ #: includes/templates/invoices/simple/micro/body.php:184
213
+ msgid "Subtotal"
214
+ msgstr ""
215
+
216
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:391
217
+ msgid "Tax"
218
+ msgstr ""
219
+
220
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:403
221
+ #: includes/templates/invoices/global/micro/body.php:184
222
+ #: includes/templates/invoices/simple/micro/body.php:168
223
+ msgid "Discount"
224
+ msgstr ""
225
+
226
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:415
227
+ #: includes/templates/invoices/global/micro/body.php:192
228
+ #: includes/templates/invoices/global/micro/body.php:208
229
+ #: includes/templates/invoices/simple/micro/body.php:176
230
+ #: includes/templates/invoices/simple/micro/body.php:192
231
+ msgid "Shipping"
232
+ msgstr ""
233
+
234
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:429
235
+ msgid "General Options"
236
+ msgstr ""
237
+
238
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:435
239
+ msgid "Invoice Number Options"
240
+ msgstr ""
241
+
242
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:441
243
+ msgid "Header Options"
244
+ msgstr ""
245
+
246
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:447
247
+ msgid "Footer Options"
248
+ msgstr ""
249
+
250
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:453
251
+ msgid "Visible Columns"
252
+ msgstr ""
253
+
254
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:459
255
+ msgid "These are the general template options."
256
+ msgstr ""
257
+
258
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:460
259
+ msgid "These are the invoice number options."
260
+ msgstr ""
261
+
262
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:463
263
+ msgid "Enable or disable the columns."
264
+ msgstr ""
265
+
266
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:533
267
+ msgid "File is invalid and contains either '..' or './'."
268
+ msgstr ""
269
+
270
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:540
271
+ msgid "File is invalid and contains ':' after the first character."
272
+ msgstr ""
273
+
274
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:549
275
+ msgid "File should be less then 2MB."
276
+ msgstr ""
277
+
278
+ #: includes/be-woocommerce-pdf-invoices.php:119
279
+ msgid "Settings"
280
+ msgstr ""
281
+
282
+ #: includes/be-woocommerce-pdf-invoices.php:120
283
+ msgid "Premium"
284
+ msgstr ""
285
+
286
+ #: includes/be-woocommerce-pdf-invoices.php:140
287
+ msgid ""
288
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
289
+ "PDF Invoices</strong></a>."
290
+ msgstr ""
291
+
292
+ #: includes/be-woocommerce-pdf-invoices.php:199
293
+ msgid "General"
294
+ msgstr ""
295
+
296
+ #: includes/be-woocommerce-pdf-invoices.php:223
297
+ msgid "Invoices"
298
+ msgstr ""
299
+
300
+ #: includes/be-woocommerce-pdf-invoices.php:262
301
+ msgid ""
302
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
303
+ "%s★★★★★%s rating. A huge thank you in advance!"
304
+ msgstr ""
305
+
306
+ #: includes/be-woocommerce-pdf-invoices.php:263
307
+ msgid "Version %s"
308
+ msgstr ""
309
+
310
+ #: includes/be-woocommerce-pdf-invoices.php:287
311
+ msgid "Invoicing on Steroids"
312
+ msgstr ""
313
+
314
+ #: includes/be-woocommerce-pdf-invoices.php:288
315
+ msgid ""
316
+ "We're working on a more powerful version of this invoicing plugin. Be the "
317
+ "first to know when we're ready to launch and receive a unique one-time "
318
+ "discount!"
319
+ msgstr ""
320
+
321
+ #: includes/be-woocommerce-pdf-invoices.php:302
322
+ msgid "Your email address"
323
+ msgstr ""
324
+
325
+ #: includes/be-woocommerce-pdf-invoices.php:305
326
+ msgid "Signup"
327
+ msgstr ""
328
+
329
+ #: includes/be-woocommerce-pdf-invoices.php:306
330
+ msgid "No spam, ever. Unsubscribe at any time"
331
+ msgstr ""
332
+
333
+ #: includes/be-woocommerce-pdf-invoices.php:314
334
+ msgid "About"
335
+ msgstr ""
336
+
337
+ #: includes/be-woocommerce-pdf-invoices.php:315
338
+ msgid ""
339
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
340
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
341
+ msgstr ""
342
+
343
+ #: includes/be-woocommerce-pdf-invoices.php:318
344
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
345
+ msgstr ""
346
+
347
+ #: includes/be-woocommerce-pdf-invoices.php:321
348
+ msgid "Support"
349
+ msgstr ""
350
+
351
+ #: includes/be-woocommerce-pdf-invoices.php:322
352
+ msgid ""
353
+ "We will never ask for donations, but to garantee future development, we do "
354
+ "need your support. Please show us your appreciation by leaving a <a href="
355
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
356
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
357
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
358
+ msgstr ""
359
+
360
+ #: includes/be-woocommerce-pdf-invoices.php:341
361
+ msgid ""
362
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
363
+ msgstr ""
364
+
365
+ #: includes/be-woocommerce-pdf-invoices.php:346
366
+ msgid "Need Help?"
367
+ msgstr ""
368
+
369
+ #: includes/be-woocommerce-pdf-invoices.php:348
370
+ msgid "Frequently Asked Questions"
371
+ msgstr ""
372
+
373
+ #: includes/be-woocommerce-pdf-invoices.php:349
374
+ msgid "Support forum"
375
+ msgstr ""
376
+
377
+ #: includes/be-woocommerce-pdf-invoices.php:350
378
+ msgid "Request a feature"
379
+ msgstr ""
380
+
381
+ #: includes/be-woocommerce-pdf-invoices.php:351
382
+ msgid "Email us"
383
+ msgstr ""
384
+
385
+ #: includes/be-woocommerce-pdf-invoices.php:409
386
+ msgid "PDF Invoice"
387
+ msgstr ""
388
+
389
+ #: includes/be-woocommerce-pdf-invoices.php:435
390
+ msgid "Invoiced on:"
391
+ msgstr ""
392
+
393
+ #: includes/be-woocommerce-pdf-invoices.php:439
394
+ msgid "Invoice number:"
395
+ msgstr ""
396
+
397
+ #: includes/be-woocommerce-pdf-invoices.php:477
398
+ msgid "View invoice"
399
+ msgstr ""
400
+
401
+ #: includes/be-woocommerce-pdf-invoices.php:477
402
+ msgid "View"
403
+ msgstr ""
404
+
405
+ #: includes/be-woocommerce-pdf-invoices.php:478
406
+ msgid "Cancel invoice"
407
+ msgstr ""
408
+
409
+ #: includes/be-woocommerce-pdf-invoices.php:478
410
+ msgid "Cancel"
411
+ msgstr ""
412
+
413
+ #: includes/be-woocommerce-pdf-invoices.php:480
414
+ msgid "Are you sure to delete the invoice?"
415
+ msgstr ""
416
+
417
+ #: includes/be-woocommerce-pdf-invoices.php:483
418
+ msgid "Create invoice"
419
+ msgstr ""
420
+
421
+ #: includes/be-woocommerce-pdf-invoices.php:483
422
+ msgid "Create"
423
+ msgstr ""
424
+
425
+ #: includes/be-woocommerce-pdf-invoices.php:516
426
+ msgid "Invoice %s (PDF)"
427
+ msgstr ""
428
+
429
+ #: includes/be-woocommerce-pdf-invoices.php:627
430
+ msgid ""
431
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
432
+ "really need your ★★★★★ rating. It will support future development big-time. "
433
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
434
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
435
+ "done it!</a>"
436
+ msgstr ""
437
+
438
+ #: includes/class-bewpi-invoice.php:48
439
+ msgid ""
440
+ "Whoops, no template found. Please select a template on the Template settings "
441
+ "page first."
442
+ msgstr ""
443
+
444
+ #: includes/templates/invoices/global/micro/body.php:6
445
+ #: includes/templates/invoices/simple/micro/body.php:6
446
+ msgid "Description"
447
+ msgstr ""
448
+
449
+ #: includes/templates/invoices/global/micro/body.php:14
450
+ #: includes/templates/invoices/simple/micro/body.php:14
451
+ msgid "Cost"
452
+ msgstr ""
453
+
454
+ #: includes/templates/invoices/global/micro/body.php:16
455
+ #: includes/templates/invoices/simple/micro/body.php:16
456
+ msgid "Qty"
457
+ msgstr ""
458
+
459
+ #: includes/templates/invoices/global/micro/body.php:22
460
+ #: includes/templates/invoices/simple/micro/body.php:22
461
+ msgid "VAT"
462
+ msgstr ""
463
+
464
+ #: includes/templates/invoices/global/micro/body.php:33
465
+ #: includes/templates/invoices/global/micro/body.php:244
466
+ #: includes/templates/invoices/simple/micro/body.php:33
467
+ #: includes/templates/invoices/simple/micro/body.php:228
468
+ msgid "Total"
469
+ msgstr ""
470
+
471
+ #: includes/templates/invoices/global/micro/body.php:41
472
+ msgid "Order #%d - %s"
473
+ msgstr ""
474
+
475
+ #: includes/templates/invoices/global/micro/body.php:219
476
+ #: includes/templates/invoices/simple/micro/body.php:203
477
+ msgid "Fee"
478
+ msgstr ""
479
+
480
+ #: includes/templates/invoices/global/micro/body.php:251
481
+ #: includes/templates/invoices/simple/micro/body.php:235
482
+ msgid "Refunded"
483
+ msgstr ""
484
+
485
+ #: includes/templates/invoices/global/micro/header.php:13
486
+ #: includes/templates/invoices/simple/micro/header.php:13
487
+ msgid "Invoice to"
488
+ msgstr ""
489
+
490
+ #: includes/templates/invoices/global/micro/header.php:15
491
+ #: includes/templates/invoices/simple/micro/header.php:15
492
+ msgid "Phone: %s"
493
+ msgstr ""
494
+
495
+ #: includes/templates/invoices/global/micro/header.php:18
496
+ #: includes/templates/invoices/simple/micro/header.php:18
497
+ msgid "Ship to"
498
+ msgstr ""
499
+
500
+ #: includes/templates/invoices/global/micro/header.php:28
501
+ msgid "Global Invoice"
502
+ msgstr ""
503
+
504
+ #: includes/templates/invoices/simple/micro/footer.php:9
505
+ #: includes/templates/invoices/simple/micro/footer.php:13
506
+ msgid "Customer note"
507
+ msgstr ""
508
+
509
+ #: includes/templates/invoices/simple/micro/footer.php:21
510
+ msgid "%sPayment%s via"
511
+ msgstr ""
512
+
513
+ #: includes/templates/invoices/simple/micro/header.php:28
514
+ msgid "Invoice"
515
+ msgstr ""
516
+
517
+ #: includes/templates/invoices/simple/micro/header.php:31
518
+ msgid "Order Number: %s"
519
+ msgstr ""
520
+
521
+ #: includes/templates/invoices/simple/micro/header.php:32
522
+ msgid "Order Date: %s"
523
+ msgstr ""
524
+
525
+ #. Plugin Name of the plugin/theme
526
+ msgid "WooCommerce PDF Invoices"
527
+ msgstr ""
528
+
529
+ #. Description of the plugin/theme
530
+ msgid ""
531
+ "Automatically generate and attach customizable PDF Invoices to WooCommerce "
532
+ "emails and connect with Dropbox, Google Drive, OneDrive or Egnyte."
533
+ msgstr ""
534
+
535
+ #. Author of the plugin/theme
536
+ msgid "Bas Elbers"
537
+ msgstr ""
538
+
539
+ #. Author URI of the plugin/theme
540
+ msgid "http://www.wcpdfinvoices.com"
541
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: woocommerce pdf invoices, invoice, generate, pdf, woocommerce, attachment, email, completed order, customer invoice, processing order, attach, automatic, vat, rate, sequential, number
5
  Requires at least: 3.5
6
  Tested up to: 4.3.1
7
- Stable tag: 2.3.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -101,9 +101,14 @@ function add_hidden_order_items( $order_items ) {
101
 
102
  == Changelog ==
103
 
 
 
 
 
 
104
  = 2.3.8 - Oktober 9, 2015 =
105
 
106
- - Fixed: Losing settings.
107
 
108
  = 2.3.7 - Oktober 6, 2015 =
109
 
4
  Tags: woocommerce pdf invoices, invoice, generate, pdf, woocommerce, attachment, email, completed order, customer invoice, processing order, attach, automatic, vat, rate, sequential, number
5
  Requires at least: 3.5
6
  Tested up to: 4.3.1
7
+ Stable tag: 2.3.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
101
 
102
  == Changelog ==
103
 
104
+ = 2.3.9 - Oktober 20, 2015 =
105
+
106
+ - Improved: Template files
107
+ - Fixed: Admin notices not showing
108
+
109
  = 2.3.8 - Oktober 9, 2015 =
110
 
111
+ - Fixed: Losing settings
112
 
113
  = 2.3.7 - Oktober 6, 2015 =
114