WooCommerce PDF Invoices - Version 2.2.3

Version Description

  • April 28, 2015 =

  • Added: Customer notes added via order details page

  • Fixed: Invoice not translated

  • Fixed: Date not translated

  • Updated: Language files

Download this release

Release Info

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

Code changes from version 2.2.2 to 2.2.3

admin/classes/be-woocommerce-pdf-invoices.php CHANGED
@@ -34,10 +34,6 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
34
  const OPTION_INSTALL_DATE = 'bewpi-install-date';
35
  const OPTION_ADMIN_NOTICE_KEY = 'bewpi-hide-notice';
36
 
37
- public static function plugin_activation() {
38
- self::insert_install_date();
39
- }
40
-
41
  /**
42
  * Initialize plugin and register actions and filters.
43
  *
@@ -46,23 +42,43 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
46
  */
47
  public function __construct() {
48
 
49
- new BEWPI_General_Settings();
50
- new BEWPI_Template_Settings();
51
 
52
- /*
53
- * Initialize WooCommerce PDF Invoices
54
- */
55
- add_action( 'init', array( &$this, 'init' ) );
56
 
57
  /**
58
- * Load plugin textdomain
59
  */
60
- add_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
  /**
63
  * Adds the Email It In email as an extra recipient
64
  */
65
- add_filter( 'woocommerce_email_headers', array( &$this, 'add_recipient_to_email_headers' ), 10, 2 );
66
 
67
  /**
68
  * Attach invoice to a specific WooCommerce email
@@ -74,52 +90,31 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
74
  */
75
  add_action( 'wp_ajax_bewpi_download_invoice', array( &$this, 'bewpi_download_invoice' ) );
76
  add_action( 'wp_ajax_nopriv_bewpi_download_invoice', array( &$this, 'bewpi_download_invoice' ) );
77
- }
78
 
79
- /**
80
- * Some preps
81
- */
82
- public function init() {
83
 
84
- $this->init_review_admin_notice();
85
 
86
- /**
87
- * Init invoice actions to view, delete or save invoice.
88
- */
89
- $this->invoice_actions();
90
 
91
- /**
92
- * Creates invoices folder in the uploads dir.
93
- */
94
- $this->create_invoices_dir();
95
 
96
- /**
97
- * Adds Invoices submenu to WooCommerce menu.
98
- */
99
- add_action( 'admin_menu', array( &$this, 'add_woocommerce_submenu_page' ) );
100
 
101
- /**
102
- * Enqueue admin scripts
103
- */
104
- add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueue_scripts' ) );
105
 
106
- /**
107
- * Add actions to overview order page.
108
- */
109
- add_action( 'woocommerce_admin_order_actions_end', array( &$this, 'woocommerce_order_page_action_view_invoice' ) );
110
 
111
- /**
112
- * Adds a meta box to the order details page.
113
- */
114
- add_action( 'add_meta_boxes', array( &$this, 'add_meta_box_to_order_page' ) );
115
 
116
- /**
117
- * Adds a download link for the pdf invoice on the my account page
118
- */
119
- add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'add_my_account_download_pdf_action' ), 10, 2 );
120
- }
121
 
122
- private function init_review_admin_notice() {
123
  // Check if user is an administrator
124
  if ( ! current_user_can( 'manage_options' ) ) {
125
  return false;
@@ -194,7 +189,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
194
  * Creates invoices dir in uploads folder
195
  */
196
  private function create_invoices_dir() {
197
- //if ( !wp_mkdir_p( BEWPI_INVOICES_DIR . date( 'Y' ) . '/' ) )
198
  wp_mkdir_p( BEWPI_INVOICES_DIR . date( 'Y' ) . '/' );
199
  copy( BEWPI_DIR . 'tmp/.htaccess', BEWPI_INVOICES_DIR . date( 'Y' ) . '/.htaccess' );
200
  copy( BEWPI_DIR . 'tmp/index.php', BEWPI_INVOICES_DIR . date( 'Y' ) . '/index.php' );
@@ -269,7 +264,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
269
  * @param $status
270
  * @return string
271
  */
272
- function add_recipient_to_email_headers($headers, $status) {
273
  $general_options = get_option( 'bewpi_general_settings' );
274
  if ( $status == $general_options['bewpi_email_type']
275
  && $general_options['bewpi_email_it_in']
@@ -423,6 +418,9 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
423
  return $actions;
424
  }
425
 
 
 
 
426
  private static function insert_install_date() {
427
  $datetime_now = new DateTime();
428
  $date_string = $datetime_now->format( 'Y-m-d' );
@@ -431,6 +429,9 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
431
  return $date_string;
432
  }
433
 
 
 
 
434
  private function get_install_date() {
435
  $date_string = get_site_option( self::OPTION_INSTALL_DATE, '' );
436
  if ( $date_string == '' ) {
@@ -441,12 +442,18 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
441
  return new DateTime( $date_string );
442
  }
443
 
 
 
 
444
  private function get_admin_querystring_array() {
445
  parse_str( $_SERVER['QUERY_STRING'], $params );
446
 
447
  return $params;
448
  }
449
 
 
 
 
450
  public function catch_hide_notice() {
451
  if ( isset( $_GET[self::OPTION_ADMIN_NOTICE_KEY] ) && current_user_can( 'install_plugins' ) ) {
452
  // Add user meta
@@ -473,6 +480,9 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
473
  }
474
  }
475
 
 
 
 
476
  public function display_admin_notice() {
477
 
478
  $query_params = $this->get_admin_querystring_array();
34
  const OPTION_INSTALL_DATE = 'bewpi-install-date';
35
  const OPTION_ADMIN_NOTICE_KEY = 'bewpi-hide-notice';
36
 
 
 
 
 
37
  /**
38
  * Initialize plugin and register actions and filters.
39
  *
42
  */
43
  public function __construct() {
44
 
45
+ new BEWPI_General_Settings();
46
+ new BEWPI_Template_Settings();
47
 
48
+ /**
49
+ * Review admin notice
50
+ */
51
+ register_activation_hook( __FILE__, array( 'BE_WooCommerce_PDF_Invoices', 'plugin_activation' ) );
52
 
53
  /**
54
+ * Initialize plugin
55
  */
56
+ add_action( 'init', array( &$this, 'init' ) );
57
+
58
+ /**
59
+ * Adds Invoices submenu to WooCommerce menu.
60
+ */
61
+ add_action( 'admin_menu', array( &$this, 'add_woocommerce_submenu_page' ) );
62
+
63
+ /**
64
+ * Enqueue admin scripts
65
+ */
66
+ add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueue_scripts' ) );
67
+
68
+ /**
69
+ * Add actions to overview order page.
70
+ */
71
+ add_action( 'woocommerce_admin_order_actions_end', array( &$this, 'woocommerce_order_page_action_view_invoice' ) );
72
+
73
+ /**
74
+ * Adds a meta box to the order details page.
75
+ */
76
+ add_action( 'add_meta_boxes', array( &$this, 'add_meta_box_to_order_page' ) );
77
 
78
  /**
79
  * Adds the Email It In email as an extra recipient
80
  */
81
+ add_filter( 'woocommerce_email_headers', array( &$this, 'add_email_it_in_account_to_email_headers' ), 10, 2 );
82
 
83
  /**
84
  * Attach invoice to a specific WooCommerce email
90
  */
91
  add_action( 'wp_ajax_bewpi_download_invoice', array( &$this, 'bewpi_download_invoice' ) );
92
  add_action( 'wp_ajax_nopriv_bewpi_download_invoice', array( &$this, 'bewpi_download_invoice' ) );
 
93
 
94
+ /**
95
+ * Adds a download link for the pdf invoice on the my account page
96
+ */
97
+ add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'add_my_account_download_pdf_action' ), 10, 2 );
98
 
99
+ }
100
 
101
+ public function init() {
 
 
 
102
 
103
+ $this->load_textdomain();
 
 
 
104
 
105
+ $this->create_invoices_dir();
 
 
 
106
 
107
+ $this->invoice_actions();
 
 
 
108
 
109
+ $this->init_review_admin_notice();
 
 
 
110
 
111
+ }
 
 
 
112
 
113
+ public static function plugin_activation() {
114
+ self::insert_install_date();
115
+ }
 
 
116
 
117
+ public function init_review_admin_notice() {
118
  // Check if user is an administrator
119
  if ( ! current_user_can( 'manage_options' ) ) {
120
  return false;
189
  * Creates invoices dir in uploads folder
190
  */
191
  private function create_invoices_dir() {
192
+ //if ( !wp_mkdir_p( BEWPI_INVOICES_DIR . date( 'Y' ) . '/' ) ) htaccess doesn't copies...
193
  wp_mkdir_p( BEWPI_INVOICES_DIR . date( 'Y' ) . '/' );
194
  copy( BEWPI_DIR . 'tmp/.htaccess', BEWPI_INVOICES_DIR . date( 'Y' ) . '/.htaccess' );
195
  copy( BEWPI_DIR . 'tmp/index.php', BEWPI_INVOICES_DIR . date( 'Y' ) . '/index.php' );
264
  * @param $status
265
  * @return string
266
  */
267
+ function add_email_it_in_account_to_email_headers( $headers, $status ) {
268
  $general_options = get_option( 'bewpi_general_settings' );
269
  if ( $status == $general_options['bewpi_email_type']
270
  && $general_options['bewpi_email_it_in']
418
  return $actions;
419
  }
420
 
421
+ /**
422
+ * @return string
423
+ */
424
  private static function insert_install_date() {
425
  $datetime_now = new DateTime();
426
  $date_string = $datetime_now->format( 'Y-m-d' );
429
  return $date_string;
430
  }
431
 
432
+ /**
433
+ * @return DateTime
434
+ */
435
  private function get_install_date() {
436
  $date_string = get_site_option( self::OPTION_INSTALL_DATE, '' );
437
  if ( $date_string == '' ) {
442
  return new DateTime( $date_string );
443
  }
444
 
445
+ /**
446
+ * @return mixed
447
+ */
448
  private function get_admin_querystring_array() {
449
  parse_str( $_SERVER['QUERY_STRING'], $params );
450
 
451
  return $params;
452
  }
453
 
454
+ /**
455
+ *
456
+ */
457
  public function catch_hide_notice() {
458
  if ( isset( $_GET[self::OPTION_ADMIN_NOTICE_KEY] ) && current_user_can( 'install_plugins' ) ) {
459
  // Add user meta
480
  }
481
  }
482
 
483
+ /**
484
+ * Ask admin to review plugin.
485
+ */
486
  public function display_admin_notice() {
487
 
488
  $query_params = $this->get_admin_querystring_array();
bootstrap.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  /**
4
- * @version 2.2.2
5
  * @package WooCommerce PDF Invoices
6
  * @author baaaaas
7
  *
@@ -9,7 +9,7 @@
9
  * Plugin Name: WooCommerce PDF Invoices
10
  * Plugin URI:
11
  * Description: Automatically or manually create and send PDF Invoices for WooCommerce orders and connect with Dropbox, Google Drive, OneDrive or Egnyte.
12
- * Version: 2.2.2
13
  * Author: baaaaas
14
  * Author URI:
15
  * License: GPL-2.0+
@@ -22,7 +22,7 @@ if ( ! defined( 'ABSPATH' ) )
22
  die( 'Access denied.' );
23
 
24
  if( !defined( 'BEWPI_VERSION' ) )
25
- define( 'BEWPI_VERSION', '2.2.2' );
26
 
27
  if( !defined( 'BEWPI_URL' ) )
28
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
@@ -53,6 +53,7 @@ require_once( BEWPI_DIR . 'includes/classes/bewpi-invoice.php' );
53
  require_once( BEWPI_DIR . 'admin/classes/be-woocommerce-pdf-invoices.php' );
54
 
55
  if ( class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
56
- add_action( 'plugins_loaded', create_function( '', 'new BE_WooCommerce_PDF_Invoices();' ) );
57
- register_activation_hook( __FILE__, array( 'BE_WooCommerce_PDF_Invoices', 'plugin_activation' ) );
 
58
  }
1
  <?php
2
 
3
  /**
4
+ * @version 2.2.3
5
  * @package WooCommerce PDF Invoices
6
  * @author baaaaas
7
  *
9
  * Plugin Name: WooCommerce PDF Invoices
10
  * Plugin URI:
11
  * Description: Automatically or manually create and send PDF Invoices for WooCommerce orders and connect with Dropbox, Google Drive, OneDrive or Egnyte.
12
+ * Version: 2.2.3
13
  * Author: baaaaas
14
  * Author URI:
15
  * License: GPL-2.0+
22
  die( 'Access denied.' );
23
 
24
  if( !defined( 'BEWPI_VERSION' ) )
25
+ define( 'BEWPI_VERSION', '2.2.3' );
26
 
27
  if( !defined( 'BEWPI_URL' ) )
28
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
53
  require_once( BEWPI_DIR . 'admin/classes/be-woocommerce-pdf-invoices.php' );
54
 
55
  if ( class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
56
+ new BE_WooCommerce_PDF_Invoices();
57
+ //add_action( 'plugins_loaded', create_function( '', 'new BE_WooCommerce_PDF_Invoices();' ) );
58
+ //register_activation_hook( __FILE__, array( 'BE_WooCommerce_PDF_Invoices', 'plugin_activation' ) );
59
  }
includes/classes/bewpi-invoice.php CHANGED
@@ -123,7 +123,7 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
123
  */
124
  public function get_formatted_invoice_date( $insert = false ) {
125
  $date_format = $this->template_options['bewpi_date_format'];
126
- ( !empty( $date_format ) ) ? $this->date = date( $date_format ) : $this->date = date('d-m-Y');
127
  if( $insert ) add_post_meta($this->order->id, '_bewpi_invoice_date', $this->date);
128
  return $this->date;
129
  }
@@ -132,14 +132,16 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
132
  * Format the order date and return
133
  */
134
  public function get_formatted_order_date() {
135
- $order_date = $date = DateTime::createFromFormat('Y-m-d H:i:s', $this->order->order_date);
136
- if ( !empty ( $this->template_options['bewpi_date_format'] ) ) {
137
  $date_format = $this->template_options['bewpi_date_format'];
138
- $formatted_date = $order_date->format($date_format);
 
 
139
  } else {
140
- $formatted_date = $order_date->format($order_date, "d-m-Y");
 
141
  }
142
- return $formatted_date;
143
  }
144
 
145
  /**
@@ -155,11 +157,13 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
155
  <?php echo $this->template_options['bewpi_terms']; ?><br/>
156
  <?php
157
  if ( $this->template_options['bewpi_show_customer_notes'] && $this->order->post->post_excerpt != "" ) :
 
158
  echo '<p><strong>' . __( 'Customer note', $this->textdomain ) . '</strong> ' . $this->order->post->post_excerpt . '</p>';
159
- /*$customer_order_notes = $this->order->get_customer_order_notes();
 
160
  if ( count( $customer_order_notes ) > 0 ) {
161
  echo '<p><strong>' . __('Customer note', $this->textdomain) . '</strong>' . $customer_order_notes[0]->comment_content . '</p>';
162
- }*/
163
  endif;
164
  ?>
165
  </td>
123
  */
124
  public function get_formatted_invoice_date( $insert = false ) {
125
  $date_format = $this->template_options['bewpi_date_format'];
126
+ ( !empty( $date_format ) ) ? $this->date = date_i18n( $date_format, strtotime( date( $date_format ) ) ) : $this->date = date_i18n( "d-m-Y", strtotime( date( 'd-m-Y' ) ) );
127
  if( $insert ) add_post_meta($this->order->id, '_bewpi_invoice_date', $this->date);
128
  return $this->date;
129
  }
132
  * Format the order date and return
133
  */
134
  public function get_formatted_order_date() {
135
+ $order_date = DateTime::createFromFormat( 'Y-m-d H:i:s', $this->order->order_date );
136
+ if ( ! empty ( $this->template_options['bewpi_date_format'] ) ) {
137
  $date_format = $this->template_options['bewpi_date_format'];
138
+ $formatted_date = $order_date->format( $date_format );
139
+ return date_i18n( $date_format, strtotime( $formatted_date ) );
140
+
141
  } else {
142
+ $formatted_date = $order_date->format( $order_date, "d-m-Y" );
143
+ return date_i18n( "d-m-Y", strtotime( $formatted_date ) );
144
  }
 
145
  }
146
 
147
  /**
157
  <?php echo $this->template_options['bewpi_terms']; ?><br/>
158
  <?php
159
  if ( $this->template_options['bewpi_show_customer_notes'] && $this->order->post->post_excerpt != "" ) :
160
+ // Note added by customer.
161
  echo '<p><strong>' . __( 'Customer note', $this->textdomain ) . '</strong> ' . $this->order->post->post_excerpt . '</p>';
162
+ // Notes added administrator on order details page.
163
+ $customer_order_notes = $this->order->get_customer_order_notes();
164
  if ( count( $customer_order_notes ) > 0 ) {
165
  echo '<p><strong>' . __('Customer note', $this->textdomain) . '</strong>' . $customer_order_notes[0]->comment_content . '</p>';
166
+ }
167
  endif;
168
  ?>
169
  </td>
includes/views/templates/invoice-micro.php CHANGED
@@ -395,7 +395,7 @@
395
  <tr class="after-products">
396
  <td colspan="<?php echo $this->colspan['left']; ?>"></td>
397
  <td colspan="<?php echo $this->colspan['right_left']; ?>">
398
- <?php printf( __( 'VAT %s', true, $this->textdomain ), WC_Tax::get_rate_percent( $tax->rate_id ) ); ?>
399
  </td>
400
  <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo $tax->formatted_amount; ?></td>
401
  </tr>
395
  <tr class="after-products">
396
  <td colspan="<?php echo $this->colspan['left']; ?>"></td>
397
  <td colspan="<?php echo $this->colspan['right_left']; ?>">
398
+ <?php printf( __( 'VAT %s', $this->textdomain ), WC_Tax::get_rate_percent( $tax->rate_id ) ); ?>
399
  </td>
400
  <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo $tax->formatted_amount; ?></td>
401
  </tr>
lang/be-woocommerce-pdf-invoices-fr_FR.mo CHANGED
Binary file
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-04-25 23:38+0100\n"
5
- "PO-Revision-Date: 2015-04-25 23:39+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"
@@ -19,65 +19,65 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: admin/classes/be-woocommerce-pdf-invoices.php:189
23
  msgid "General"
24
  msgstr "Général"
25
 
26
- #: admin/classes/be-woocommerce-pdf-invoices.php:190
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr "Template"
30
 
31
- #: admin/classes/be-woocommerce-pdf-invoices.php:209
32
- #: admin/classes/be-woocommerce-pdf-invoices.php:210
33
  msgid "Invoices"
34
  msgstr "Factures"
35
 
36
- #: admin/classes/be-woocommerce-pdf-invoices.php:315
37
  msgid "PDF Invoice"
38
  msgstr "Facture PDF"
39
 
40
- #: admin/classes/be-woocommerce-pdf-invoices.php:342
41
  msgid "Invoiced on:"
42
  msgstr "Facturés sur"
43
 
44
- #: admin/classes/be-woocommerce-pdf-invoices.php:346
45
  msgid "Invoice number:"
46
  msgstr "Numéro de facture"
47
 
48
- #: admin/classes/be-woocommerce-pdf-invoices.php:384
49
  msgid "View invoice"
50
  msgstr " Voir la facture"
51
 
52
- #: admin/classes/be-woocommerce-pdf-invoices.php:384
53
  msgid "View"
54
  msgstr "Voir"
55
 
56
- #: admin/classes/be-woocommerce-pdf-invoices.php:385
57
  msgid "Cancel invoice"
58
  msgstr "Annuler la facture"
59
 
60
- #: admin/classes/be-woocommerce-pdf-invoices.php:385
61
  msgid "Cancel"
62
  msgstr "Annuler"
63
 
64
- #: admin/classes/be-woocommerce-pdf-invoices.php:385
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr "Êtes-vous certain de vouloir supprimer la facture? "
67
 
68
- #: admin/classes/be-woocommerce-pdf-invoices.php:387
69
  msgid "Create invoice"
70
  msgstr "Créer une facture"
71
 
72
- #: admin/classes/be-woocommerce-pdf-invoices.php:387
73
  msgid "Create"
74
  msgstr "créer"
75
 
76
- #: admin/classes/be-woocommerce-pdf-invoices.php:420
77
  msgid "Download invoice (PDF)"
78
  msgstr "Télécharger la facture (PDF)"
79
 
80
- #: admin/classes/be-woocommerce-pdf-invoices.php:482
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
@@ -362,6 +362,7 @@ msgid "Qty"
362
  msgstr "Qté"
363
 
364
  #: includes/views/templates/invoice-micro.php:231
 
365
  msgid "VAT"
366
  msgstr "TVA"
367
 
@@ -370,15 +371,13 @@ msgstr "TVA"
370
  msgid "Total"
371
  msgstr "Total"
372
 
373
- #: includes/views/templates/invoice-micro.php:398
374
- #, php-format
375
- msgid "VAT %s"
376
- msgstr "TVA %s"
377
-
378
  #: includes/views/templates/invoice-micro.php:414
379
  msgid "Refunded"
380
  msgstr "Remboursement"
381
 
 
 
 
382
  #~ msgid "Feel free to use"
383
  #~ msgstr "N'hésitez pas à l'utiliser"
384
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-04-28 14:01+0100\n"
5
+ "PO-Revision-Date: 2015-04-28 14:01+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"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: admin/classes/be-woocommerce-pdf-invoices.php:184
23
  msgid "General"
24
  msgstr "Général"
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:185
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr "Template"
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:204
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:205
33
  msgid "Invoices"
34
  msgstr "Factures"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:310
37
  msgid "PDF Invoice"
38
  msgstr "Facture PDF"
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:337
41
  msgid "Invoiced on:"
42
  msgstr "Facturés sur"
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:341
45
  msgid "Invoice number:"
46
  msgstr "Numéro de facture"
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
49
  msgid "View invoice"
50
  msgstr " Voir la facture"
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
53
  msgid "View"
54
  msgstr "Voir"
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
57
  msgid "Cancel invoice"
58
  msgstr "Annuler la facture"
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
61
  msgid "Cancel"
62
  msgstr "Annuler"
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr "Êtes-vous certain de vouloir supprimer la facture? "
67
 
68
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
69
  msgid "Create invoice"
70
  msgstr "Créer une facture"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
73
  msgid "Create"
74
  msgstr "créer"
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:415
77
  msgid "Download invoice (PDF)"
78
  msgstr "Télécharger la facture (PDF)"
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:492
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
362
  msgstr "Qté"
363
 
364
  #: includes/views/templates/invoice-micro.php:231
365
+ #: includes/views/templates/invoice-micro.php:398
366
  msgid "VAT"
367
  msgstr "TVA"
368
 
371
  msgid "Total"
372
  msgstr "Total"
373
 
 
 
 
 
 
374
  #: includes/views/templates/invoice-micro.php:414
375
  msgid "Refunded"
376
  msgstr "Remboursement"
377
 
378
+ #~ msgid "VAT %s"
379
+ #~ msgstr "TVA %s"
380
+
381
  #~ msgid "Feel free to use"
382
  #~ msgstr "N'hésitez pas à l'utiliser"
383
 
lang/be-woocommerce-pdf-invoices-nb_NO.mo CHANGED
Binary file
lang/be-woocommerce-pdf-invoices-nb_NO.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2015-04-23 23:33+0100\n"
5
- "PO-Revision-Date: 2015-04-25 16:31+0100\n"
6
  "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
  "Language-Team: \n"
8
  "Language: nb\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.7.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -19,64 +19,73 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: admin/classes/be-woocommerce-pdf-invoices.php:150
23
  msgid "General"
24
  msgstr "Generelt"
25
 
26
- #: admin/classes/be-woocommerce-pdf-invoices.php:151
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr "Mal"
30
 
31
- #: admin/classes/be-woocommerce-pdf-invoices.php:169
32
- #: admin/classes/be-woocommerce-pdf-invoices.php:170
33
  msgid "Invoices"
34
  msgstr "Fakturaer"
35
 
36
- #: admin/classes/be-woocommerce-pdf-invoices.php:275
37
  msgid "PDF Invoice"
38
  msgstr "PDF Faktura"
39
 
40
- #: admin/classes/be-woocommerce-pdf-invoices.php:302
41
  msgid "Invoiced on:"
42
  msgstr "Sendt:"
43
 
44
- #: admin/classes/be-woocommerce-pdf-invoices.php:306
45
  msgid "Invoice number:"
46
  msgstr "Fakturanummer:"
47
 
48
- #: admin/classes/be-woocommerce-pdf-invoices.php:344
49
  msgid "View invoice"
50
  msgstr "Vis faktura"
51
 
52
- #: admin/classes/be-woocommerce-pdf-invoices.php:344
53
  msgid "View"
54
  msgstr "Vis"
55
 
56
- #: admin/classes/be-woocommerce-pdf-invoices.php:345
57
  msgid "Cancel invoice"
58
  msgstr "Slett faktura"
59
 
60
- #: admin/classes/be-woocommerce-pdf-invoices.php:345
61
  msgid "Cancel"
62
  msgstr "Slett"
63
 
64
- #: admin/classes/be-woocommerce-pdf-invoices.php:345
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr "Er du sikker på at du vil slette fakturaen?"
67
 
68
- #: admin/classes/be-woocommerce-pdf-invoices.php:347
69
  msgid "Create invoice"
70
  msgstr "Opprett faktura"
71
 
72
- #: admin/classes/be-woocommerce-pdf-invoices.php:347
73
  msgid "Create"
74
  msgstr "Opprett"
75
 
76
- #: admin/classes/be-woocommerce-pdf-invoices.php:380
77
  msgid "Download invoice (PDF)"
78
  msgstr "Last ned faktura (PDF)"
79
 
 
 
 
 
 
 
 
 
 
80
  #: admin/classes/bewpi-general-settings.php:85
81
  msgid "Attach to Email"
82
  msgstr "Legg ved e-post"
@@ -131,7 +140,7 @@ msgstr ""
131
  msgid "Feel free to use "
132
  msgstr "Du kan også bruke "
133
 
134
- #: admin/classes/bewpi-settings.php:153
135
  msgid "Remove logo"
136
  msgstr "Fjern logo"
137
 
@@ -172,6 +181,10 @@ msgstr "Introduksjonstekst"
172
  msgid "Terms & conditions, policies etc."
173
  msgstr "Betingelser, vilkår etc."
174
 
 
 
 
 
175
  #: admin/classes/bewpi-template-settings.php:211
176
  msgid "Type"
177
  msgstr "Type"
@@ -224,6 +237,34 @@ msgstr ""
224
  "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
225
  "obligatorisk."
226
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  #: admin/classes/bewpi-template-settings.php:393
228
  msgid "General Options"
229
  msgstr "Generelle valg"
@@ -311,10 +352,6 @@ msgstr "Bestillingsdato: %s"
311
  msgid "Description"
312
  msgstr "Produkt"
313
 
314
- #: includes/views/templates/invoice-micro.php:220
315
- msgid "SKU"
316
- msgstr "SKU"
317
-
318
  #: includes/views/templates/invoice-micro.php:223
319
  msgid "Cost"
320
  msgstr "Pris"
@@ -324,6 +361,7 @@ msgid "Qty"
324
  msgstr "Ant"
325
 
326
  #: includes/views/templates/invoice-micro.php:231
 
327
  msgid "VAT"
328
  msgstr "MVA"
329
 
@@ -332,27 +370,13 @@ msgstr "MVA"
332
  msgid "Total"
333
  msgstr "Totalt"
334
 
335
- #: includes/views/templates/invoice-micro.php:372
336
- msgid "Discount"
337
- msgstr "Rabatt"
338
-
339
- #: includes/views/templates/invoice-micro.php:380
340
- msgid "Shipping"
341
- msgstr "Frakt"
342
-
343
- #: includes/views/templates/invoice-micro.php:388
344
- msgid "Subtotal"
345
- msgstr "Delsum"
346
-
347
- #: includes/views/templates/invoice-micro.php:398
348
- #, php-format
349
- msgid "VAT %s"
350
- msgstr "MVA %s"
351
-
352
  #: includes/views/templates/invoice-micro.php:414
353
  msgid "Refunded"
354
  msgstr "Refundert"
355
 
 
 
 
356
  #~ msgid "General Settings"
357
  #~ msgstr "Algemene Opties"
358
 
@@ -426,9 +450,6 @@ msgstr "Refundert"
426
  #~ msgid "Show shipping"
427
  #~ msgstr "Toon verzendkosten"
428
 
429
- #~ msgid "Show customer notes"
430
- #~ msgstr "Toon notities klant"
431
-
432
  #~ msgid "Color theme of the invoice."
433
  #~ msgstr "Kleurthema van de factuur."
434
 
@@ -502,9 +523,6 @@ msgstr "Refundert"
502
  #~ msgid "Unit price"
503
  #~ msgstr "Prijs per stuk"
504
 
505
- #~ msgid "Tax"
506
- #~ msgstr "BTW"
507
-
508
  #~ msgid ""
509
  #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
510
  #~ msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-04-28 14:01+0100\n"
5
+ "PO-Revision-Date: 2015-04-28 14:01+0100\n"
6
  "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
  "Language-Team: \n"
8
  "Language: nb\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.7.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: admin/classes/be-woocommerce-pdf-invoices.php:184
23
  msgid "General"
24
  msgstr "Generelt"
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:185
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr "Mal"
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:204
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:205
33
  msgid "Invoices"
34
  msgstr "Fakturaer"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:310
37
  msgid "PDF Invoice"
38
  msgstr "PDF Faktura"
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:337
41
  msgid "Invoiced on:"
42
  msgstr "Sendt:"
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:341
45
  msgid "Invoice number:"
46
  msgstr "Fakturanummer:"
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
49
  msgid "View invoice"
50
  msgstr "Vis faktura"
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
53
  msgid "View"
54
  msgstr "Vis"
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
57
  msgid "Cancel invoice"
58
  msgstr "Slett faktura"
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
61
  msgid "Cancel"
62
  msgstr "Slett"
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr "Er du sikker på at du vil slette fakturaen?"
67
 
68
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
69
  msgid "Create invoice"
70
  msgstr "Opprett faktura"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
73
  msgid "Create"
74
  msgstr "Opprett"
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:415
77
  msgid "Download invoice (PDF)"
78
  msgstr "Last ned faktura (PDF)"
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:492
81
+ #, php-format
82
+ msgid ""
83
+ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
84
+ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank you "
85
+ "in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right away!</"
86
+ "a> - <a href='%s'>No, already done it!</a>"
87
+ msgstr ""
88
+
89
  #: admin/classes/bewpi-general-settings.php:85
90
  msgid "Attach to Email"
91
  msgstr "Legg ved e-post"
140
  msgid "Feel free to use "
141
  msgstr "Du kan også bruke "
142
 
143
+ #: admin/classes/bewpi-settings.php:157
144
  msgid "Remove logo"
145
  msgstr "Fjern logo"
146
 
181
  msgid "Terms & conditions, policies etc."
182
  msgstr "Betingelser, vilkår etc."
183
 
184
+ #: admin/classes/bewpi-template-settings.php:203
185
+ msgid "Show customer notes"
186
+ msgstr "Toon notities klant"
187
+
188
  #: admin/classes/bewpi-template-settings.php:211
189
  msgid "Type"
190
  msgstr "Type"
237
  "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
238
  "obligatorisk."
239
 
240
+ #: admin/classes/bewpi-template-settings.php:318
241
+ msgid "Reset on 1st of january"
242
+ msgstr ""
243
+
244
+ #: admin/classes/bewpi-template-settings.php:331
245
+ #: includes/views/templates/invoice-micro.php:220
246
+ msgid "SKU"
247
+ msgstr "SKU"
248
+
249
+ #: admin/classes/bewpi-template-settings.php:343
250
+ #: includes/views/templates/invoice-micro.php:388
251
+ msgid "Subtotal"
252
+ msgstr "Delsum"
253
+
254
+ #: admin/classes/bewpi-template-settings.php:355
255
+ msgid "Tax"
256
+ msgstr "BTW"
257
+
258
+ #: admin/classes/bewpi-template-settings.php:367
259
+ #: includes/views/templates/invoice-micro.php:372
260
+ msgid "Discount"
261
+ msgstr "Rabatt"
262
+
263
+ #: admin/classes/bewpi-template-settings.php:379
264
+ #: includes/views/templates/invoice-micro.php:380
265
+ msgid "Shipping"
266
+ msgstr "Frakt"
267
+
268
  #: admin/classes/bewpi-template-settings.php:393
269
  msgid "General Options"
270
  msgstr "Generelle valg"
352
  msgid "Description"
353
  msgstr "Produkt"
354
 
 
 
 
 
355
  #: includes/views/templates/invoice-micro.php:223
356
  msgid "Cost"
357
  msgstr "Pris"
361
  msgstr "Ant"
362
 
363
  #: includes/views/templates/invoice-micro.php:231
364
+ #: includes/views/templates/invoice-micro.php:398
365
  msgid "VAT"
366
  msgstr "MVA"
367
 
370
  msgid "Total"
371
  msgstr "Totalt"
372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
  #: includes/views/templates/invoice-micro.php:414
374
  msgid "Refunded"
375
  msgstr "Refundert"
376
 
377
+ #~ msgid "VAT %s"
378
+ #~ msgstr "MVA %s"
379
+
380
  #~ msgid "General Settings"
381
  #~ msgstr "Algemene Opties"
382
 
450
  #~ msgid "Show shipping"
451
  #~ msgstr "Toon verzendkosten"
452
 
 
 
 
453
  #~ msgid "Color theme of the invoice."
454
  #~ msgstr "Kleurthema van de factuur."
455
 
523
  #~ msgid "Unit price"
524
  #~ msgstr "Prijs per stuk"
525
 
 
 
 
526
  #~ msgid ""
527
  #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
528
  #~ msgstr ""
lang/be-woocommerce-pdf-invoices-nl_NL.mo CHANGED
Binary file
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-04-25 23:29+0100\n"
5
- "PO-Revision-Date: 2015-04-25 23:30+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -19,65 +19,65 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: admin/classes/be-woocommerce-pdf-invoices.php:189
23
  msgid "General"
24
  msgstr "Algemeen"
25
 
26
- #: admin/classes/be-woocommerce-pdf-invoices.php:190
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr ""
30
 
31
- #: admin/classes/be-woocommerce-pdf-invoices.php:209
32
- #: admin/classes/be-woocommerce-pdf-invoices.php:210
33
  msgid "Invoices"
34
  msgstr "Facturen"
35
 
36
- #: admin/classes/be-woocommerce-pdf-invoices.php:315
37
  msgid "PDF Invoice"
38
  msgstr "PDF Factuur"
39
 
40
- #: admin/classes/be-woocommerce-pdf-invoices.php:342
41
  msgid "Invoiced on:"
42
  msgstr "Gefactureerd op:"
43
 
44
- #: admin/classes/be-woocommerce-pdf-invoices.php:346
45
  msgid "Invoice number:"
46
  msgstr "Factuurnummer:"
47
 
48
- #: admin/classes/be-woocommerce-pdf-invoices.php:384
49
  msgid "View invoice"
50
  msgstr "Toon factuur"
51
 
52
- #: admin/classes/be-woocommerce-pdf-invoices.php:384
53
  msgid "View"
54
  msgstr "Bekijk"
55
 
56
- #: admin/classes/be-woocommerce-pdf-invoices.php:385
57
  msgid "Cancel invoice"
58
  msgstr "Factuur annuleren"
59
 
60
- #: admin/classes/be-woocommerce-pdf-invoices.php:385
61
  msgid "Cancel"
62
  msgstr "Annuleer"
63
 
64
- #: admin/classes/be-woocommerce-pdf-invoices.php:385
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
67
 
68
- #: admin/classes/be-woocommerce-pdf-invoices.php:387
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
- #: admin/classes/be-woocommerce-pdf-invoices.php:387
73
  msgid "Create"
74
  msgstr "Aanmaken"
75
 
76
- #: admin/classes/be-woocommerce-pdf-invoices.php:420
77
  msgid "Download invoice (PDF)"
78
  msgstr "Download factuur (PDF)"
79
 
80
- #: admin/classes/be-woocommerce-pdf-invoices.php:482
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
@@ -324,7 +324,7 @@ msgstr "Opmerking klant"
324
  #: includes/classes/bewpi-invoice.php:169
325
  #, php-format
326
  msgid "%sPayment%s via"
327
- msgstr "%sBetaling%s met"
328
 
329
  #: includes/views/templates/invoice-micro.php:185
330
  msgid "Invoice to"
@@ -361,6 +361,7 @@ msgid "Qty"
361
  msgstr "Aantal"
362
 
363
  #: includes/views/templates/invoice-micro.php:231
 
364
  msgid "VAT"
365
  msgstr "BTW"
366
 
@@ -369,15 +370,13 @@ msgstr "BTW"
369
  msgid "Total"
370
  msgstr "Totaal"
371
 
372
- #: includes/views/templates/invoice-micro.php:398
373
- #, php-format
374
- msgid "VAT %s"
375
- msgstr "BTW %s"
376
-
377
  #: includes/views/templates/invoice-micro.php:414
378
  msgid "Refunded"
379
  msgstr "Terugbetaald"
380
 
 
 
 
381
  #~ msgid "General Settings"
382
  #~ msgstr "Algemene Opties"
383
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-04-28 14:01+0100\n"
5
+ "PO-Revision-Date: 2015-04-28 14:01+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: admin/classes/be-woocommerce-pdf-invoices.php:184
23
  msgid "General"
24
  msgstr "Algemeen"
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:185
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr ""
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:204
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:205
33
  msgid "Invoices"
34
  msgstr "Facturen"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:310
37
  msgid "PDF Invoice"
38
  msgstr "PDF Factuur"
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:337
41
  msgid "Invoiced on:"
42
  msgstr "Gefactureerd op:"
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:341
45
  msgid "Invoice number:"
46
  msgstr "Factuurnummer:"
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
49
  msgid "View invoice"
50
  msgstr "Toon factuur"
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
53
  msgid "View"
54
  msgstr "Bekijk"
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
57
  msgid "Cancel invoice"
58
  msgstr "Factuur annuleren"
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
61
  msgid "Cancel"
62
  msgstr "Annuleer"
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
67
 
68
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
73
  msgid "Create"
74
  msgstr "Aanmaken"
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:415
77
  msgid "Download invoice (PDF)"
78
  msgstr "Download factuur (PDF)"
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:492
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
324
  #: includes/classes/bewpi-invoice.php:169
325
  #, php-format
326
  msgid "%sPayment%s via"
327
+ msgstr "%sBetaling%s via"
328
 
329
  #: includes/views/templates/invoice-micro.php:185
330
  msgid "Invoice to"
361
  msgstr "Aantal"
362
 
363
  #: includes/views/templates/invoice-micro.php:231
364
+ #: includes/views/templates/invoice-micro.php:398
365
  msgid "VAT"
366
  msgstr "BTW"
367
 
370
  msgid "Total"
371
  msgstr "Totaal"
372
 
 
 
 
 
 
373
  #: includes/views/templates/invoice-micro.php:414
374
  msgid "Refunded"
375
  msgstr "Terugbetaald"
376
 
377
+ #~ msgid "VAT %s"
378
+ #~ msgstr "BTW %s"
379
+
380
  #~ msgid "General Settings"
381
  #~ msgstr "Algemene Opties"
382
 
lang/be-woocommerce-pdf-invoices-sl_SI.mo CHANGED
Binary file
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-04-24 16:05+0100\n"
5
- "PO-Revision-Date: 2015-04-24 16:05+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -13,70 +13,79 @@ msgstr ""
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
17
- "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: admin/classes/be-woocommerce-pdf-invoices.php:150
23
  msgid "General"
24
  msgstr ""
25
 
26
- #: admin/classes/be-woocommerce-pdf-invoices.php:151
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr ""
30
 
31
- #: admin/classes/be-woocommerce-pdf-invoices.php:170
32
- #: admin/classes/be-woocommerce-pdf-invoices.php:171
33
  msgid "Invoices"
34
  msgstr "Računi"
35
 
36
- #: admin/classes/be-woocommerce-pdf-invoices.php:276
37
  msgid "PDF Invoice"
38
  msgstr ""
39
 
40
- #: admin/classes/be-woocommerce-pdf-invoices.php:303
41
  msgid "Invoiced on:"
42
  msgstr ""
43
 
44
- #: admin/classes/be-woocommerce-pdf-invoices.php:307
45
  msgid "Invoice number:"
46
  msgstr ""
47
 
48
- #: admin/classes/be-woocommerce-pdf-invoices.php:345
49
  msgid "View invoice"
50
  msgstr ""
51
 
52
- #: admin/classes/be-woocommerce-pdf-invoices.php:345
53
  msgid "View"
54
  msgstr ""
55
 
56
- #: admin/classes/be-woocommerce-pdf-invoices.php:346
57
  msgid "Cancel invoice"
58
  msgstr ""
59
 
60
- #: admin/classes/be-woocommerce-pdf-invoices.php:346
61
  msgid "Cancel"
62
  msgstr ""
63
 
64
- #: admin/classes/be-woocommerce-pdf-invoices.php:346
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr ""
67
 
68
- #: admin/classes/be-woocommerce-pdf-invoices.php:348
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
- #: admin/classes/be-woocommerce-pdf-invoices.php:348
73
  msgid "Create"
74
  msgstr ""
75
 
76
- #: admin/classes/be-woocommerce-pdf-invoices.php:381
77
  msgid "Download invoice (PDF)"
78
  msgstr ""
79
 
 
 
 
 
 
 
 
 
 
80
  #: admin/classes/bewpi-general-settings.php:85
81
  msgid "Attach to Email"
82
  msgstr ""
@@ -170,6 +179,10 @@ msgstr ""
170
  msgid "Terms & conditions, policies etc."
171
  msgstr ""
172
 
 
 
 
 
173
  #: admin/classes/bewpi-template-settings.php:211
174
  msgid "Type"
175
  msgstr ""
@@ -217,6 +230,34 @@ msgid ""
217
  "required."
218
  msgstr ""
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  #: admin/classes/bewpi-template-settings.php:393
221
  msgid "General Options"
222
  msgstr ""
@@ -278,71 +319,51 @@ msgstr "Komentar kupca"
278
  msgid "%sPayment%s via"
279
  msgstr ""
280
 
281
- #: includes/views/templates/invoice-micro.php:188
282
  msgid "Invoice to"
283
  msgstr ""
284
 
285
- #: includes/views/templates/invoice-micro.php:192
286
  msgid "Ship to"
287
  msgstr ""
288
 
289
- #: includes/views/templates/invoice-micro.php:202
290
  msgid "Invoice"
291
  msgstr "Račun"
292
 
293
- #: includes/views/templates/invoice-micro.php:205
294
  #, php-format
295
  msgid "Order Number %s"
296
  msgstr ""
297
 
298
- #: includes/views/templates/invoice-micro.php:206
299
  #, php-format
300
  msgid "Order Date %s"
301
  msgstr ""
302
 
303
- #: includes/views/templates/invoice-micro.php:220
304
  msgid "Description"
305
  msgstr "Opis"
306
 
307
  #: includes/views/templates/invoice-micro.php:223
308
- msgid "SKU"
309
- msgstr "Koda"
310
-
311
- #: includes/views/templates/invoice-micro.php:226
312
  msgid "Cost"
313
  msgstr ""
314
 
315
- #: includes/views/templates/invoice-micro.php:227
316
  msgid "Qty"
317
  msgstr ""
318
 
319
- #: includes/views/templates/invoice-micro.php:234
 
320
  msgid "VAT"
321
  msgstr ""
322
 
323
- #: includes/views/templates/invoice-micro.php:244
324
- #: includes/views/templates/invoice-micro.php:413
325
  msgid "Total"
326
  msgstr "Skupaj"
327
 
328
- #: includes/views/templates/invoice-micro.php:378
329
- msgid "Discount"
330
- msgstr "Popust"
331
-
332
- #: includes/views/templates/invoice-micro.php:386
333
- msgid "Shipping"
334
- msgstr "Poštnina"
335
-
336
- #: includes/views/templates/invoice-micro.php:394
337
- msgid "Subtotal"
338
- msgstr "Skupaj"
339
-
340
- #: includes/views/templates/invoice-micro.php:404
341
- #, php-format
342
- msgid "VAT %s"
343
- msgstr ""
344
-
345
- #: includes/views/templates/invoice-micro.php:420
346
  msgid "Refunded"
347
  msgstr ""
348
 
@@ -352,9 +373,6 @@ msgstr ""
352
  #~ msgid "Unit price"
353
  #~ msgstr "Cena za kos"
354
 
355
- #~ msgid "Tax"
356
- #~ msgstr "DDV"
357
-
358
  #~ msgid "Signup at %s and enter your account beyond."
359
  #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
360
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-04-28 14:01+0100\n"
5
+ "PO-Revision-Date: 2015-04-28 14:01+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: admin/classes/be-woocommerce-pdf-invoices.php:184
23
  msgid "General"
24
  msgstr ""
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:185
27
  #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr ""
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:204
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:205
33
  msgid "Invoices"
34
  msgstr "Računi"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:310
37
  msgid "PDF Invoice"
38
  msgstr ""
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:337
41
  msgid "Invoiced on:"
42
  msgstr ""
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:341
45
  msgid "Invoice number:"
46
  msgstr ""
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
49
  msgid "View invoice"
50
  msgstr ""
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:379
53
  msgid "View"
54
  msgstr ""
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
57
  msgid "Cancel invoice"
58
  msgstr ""
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
61
  msgid "Cancel"
62
  msgstr ""
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:380
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr ""
67
 
68
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:382
73
  msgid "Create"
74
  msgstr ""
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:415
77
  msgid "Download invoice (PDF)"
78
  msgstr ""
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:492
81
+ #, php-format
82
+ msgid ""
83
+ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
84
+ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank you "
85
+ "in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right away!</"
86
+ "a> - <a href='%s'>No, already done it!</a>"
87
+ msgstr ""
88
+
89
  #: admin/classes/bewpi-general-settings.php:85
90
  msgid "Attach to Email"
91
  msgstr ""
179
  msgid "Terms & conditions, policies etc."
180
  msgstr ""
181
 
182
+ #: admin/classes/bewpi-template-settings.php:203
183
+ msgid "Show customer notes"
184
+ msgstr ""
185
+
186
  #: admin/classes/bewpi-template-settings.php:211
187
  msgid "Type"
188
  msgstr ""
230
  "required."
231
  msgstr ""
232
 
233
+ #: admin/classes/bewpi-template-settings.php:318
234
+ msgid "Reset on 1st of january"
235
+ msgstr ""
236
+
237
+ #: admin/classes/bewpi-template-settings.php:331
238
+ #: includes/views/templates/invoice-micro.php:220
239
+ msgid "SKU"
240
+ msgstr "Koda"
241
+
242
+ #: admin/classes/bewpi-template-settings.php:343
243
+ #: includes/views/templates/invoice-micro.php:388
244
+ msgid "Subtotal"
245
+ msgstr "Skupaj"
246
+
247
+ #: admin/classes/bewpi-template-settings.php:355
248
+ msgid "Tax"
249
+ msgstr "DDV"
250
+
251
+ #: admin/classes/bewpi-template-settings.php:367
252
+ #: includes/views/templates/invoice-micro.php:372
253
+ msgid "Discount"
254
+ msgstr "Popust"
255
+
256
+ #: admin/classes/bewpi-template-settings.php:379
257
+ #: includes/views/templates/invoice-micro.php:380
258
+ msgid "Shipping"
259
+ msgstr "Poštnina"
260
+
261
  #: admin/classes/bewpi-template-settings.php:393
262
  msgid "General Options"
263
  msgstr ""
319
  msgid "%sPayment%s via"
320
  msgstr ""
321
 
322
+ #: includes/views/templates/invoice-micro.php:185
323
  msgid "Invoice to"
324
  msgstr ""
325
 
326
+ #: includes/views/templates/invoice-micro.php:189
327
  msgid "Ship to"
328
  msgstr ""
329
 
330
+ #: includes/views/templates/invoice-micro.php:199
331
  msgid "Invoice"
332
  msgstr "Račun"
333
 
334
+ #: includes/views/templates/invoice-micro.php:202
335
  #, php-format
336
  msgid "Order Number %s"
337
  msgstr ""
338
 
339
+ #: includes/views/templates/invoice-micro.php:203
340
  #, php-format
341
  msgid "Order Date %s"
342
  msgstr ""
343
 
344
+ #: includes/views/templates/invoice-micro.php:217
345
  msgid "Description"
346
  msgstr "Opis"
347
 
348
  #: includes/views/templates/invoice-micro.php:223
 
 
 
 
349
  msgid "Cost"
350
  msgstr ""
351
 
352
+ #: includes/views/templates/invoice-micro.php:224
353
  msgid "Qty"
354
  msgstr ""
355
 
356
+ #: includes/views/templates/invoice-micro.php:231
357
+ #: includes/views/templates/invoice-micro.php:398
358
  msgid "VAT"
359
  msgstr ""
360
 
361
+ #: includes/views/templates/invoice-micro.php:241
362
+ #: includes/views/templates/invoice-micro.php:407
363
  msgid "Total"
364
  msgstr "Skupaj"
365
 
366
+ #: includes/views/templates/invoice-micro.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  msgid "Refunded"
368
  msgstr ""
369
 
373
  #~ msgid "Unit price"
374
  #~ msgstr "Cena za kos"
375
 
 
 
 
376
  #~ msgid "Signup at %s and enter your account beyond."
377
  #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
378
 
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.2
7
- Stable tag: 2.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -66,6 +66,13 @@ The manual installation method involves downloading our plugin and uploading it
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
 
69
  = 2.2.2 - April 25, 2015 =
70
 
71
  - Added: Admin notices
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.2
7
+ Stable tag: 2.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
66
 
67
  == Changelog ==
68
 
69
+ = 2.2.3 - April 28, 2015 =
70
+
71
+ - Added: Customer notes added via order details page
72
+ - Fixed: Invoice not translated
73
+ - Fixed: Date not translated
74
+ - Updated: Language files
75
+
76
  = 2.2.2 - April 25, 2015 =
77
 
78
  - Added: Admin notices