WooCommerce PDF Invoices - Version 2.2.7

Version Description

  • May 15, 2015 =

  • Added: Filter to change path to textdomain

  • Added: Fees on invoice

  • Added: Option to add month to invoice number format

  • Fixed: Image not always showing on invoice

Download this release

Release Info

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

Code changes from version 2.2.6 to 2.2.7

admin/classes/be-woocommerce-pdf-invoices.php CHANGED
@@ -197,7 +197,8 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
197
  * Loads the textdomain and localizes the plugin options tabs.
198
  */
199
  public function load_textdomain() {
200
- load_plugin_textdomain( $this->textdomain, false, BEWPI_LANG_DIR );
 
201
  $this->settings_tabs['bewpi_general_settings'] = __( 'General', $this->textdomain );
202
  $this->settings_tabs['bewpi_template_settings'] = __( 'Template', $this->textdomain );
203
  }
197
  * Loads the textdomain and localizes the plugin options tabs.
198
  */
199
  public function load_textdomain() {
200
+ $lang_dir = (string)BEWPI_LANG_DIR;
201
+ load_plugin_textdomain( $this->textdomain, false, apply_filters( 'bewpi_lang_dir', $lang_dir ) );
202
  $this->settings_tabs['bewpi_general_settings'] = __( 'General', $this->textdomain );
203
  $this->settings_tabs['bewpi_template_settings'] = __( 'Template', $this->textdomain );
204
  }
admin/classes/bewpi-template-settings.php CHANGED
@@ -300,7 +300,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
300
  'page' => $this->settings_key,
301
  'section' => 'invoice_number',
302
  'type' => 'text',
303
- 'desc' => sprintf( __( 'Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is required.', $this->textdomain ), '<b>[prefix]</b>', '<b>[suffix]</b>', '<b>[number]</b>', '<b>[Y]</b>', '<b>[y]</b>', '<br/>', '<b>', '</b>', '<b>[number]</b>' ),
304
  'default' => '[number]-[Y]',
305
  'attrs' => array(
306
  'required'
300
  'page' => $this->settings_key,
301
  'section' => 'invoice_number',
302
  'type' => 'text',
303
+ 'desc' => sprintf( __( 'Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s is required.', $this->textdomain ), '<b>[prefix]</b>', '<b>[suffix]</b>', '<b>[number]</b>', '<b>[m]</b>', '<b>[Y]</b>', '<b>[y]</b>', '<br/>', '<b>', '</b>', '<b>[number]</b>' ),
304
  'default' => '[number]-[Y]',
305
  'attrs' => array(
306
  'required'
bootstrap.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  /**
4
- * @version 2.2.6
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.6
13
  * Author: baaaaas
14
  * Author URI:
15
  * License: GPL-2.0+
@@ -21,27 +21,24 @@
21
  if ( ! defined( 'ABSPATH' ) )
22
  die( 'Access denied.' );
23
 
24
- if( !defined( 'BEWPI_VERSION' ) )
25
- define( 'BEWPI_VERSION', '2.2.6' );
26
 
27
- if( !defined( 'BEWPI_URL' ) )
28
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
29
 
30
- if( !defined( 'BEWPI_DIR' ) )
31
  define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
32
 
33
- if( !defined( 'BEWPI_TEMPLATES_DIR' ) )
34
- define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . '/includes/views/templates/' );
35
-
36
- if( !defined( 'BEWPI_LANG_DIR' ) )
37
  define( 'BEWPI_LANG_DIR', basename( dirname( __FILE__ ) ) . '/lang' );
38
 
39
- $wp_upload_dir = wp_upload_dir();
40
-
41
- if ( !defined( 'BEWPI_INVOICES_DIR' ) )
42
  define( 'BEWPI_INVOICES_DIR', $wp_upload_dir['basedir'] . '/bewpi-invoices/' );
 
43
 
44
- if ( !defined( 'BEWPI_LIB_DIR' ) )
45
  define( 'BEWPI_LIB_DIR', plugin_dir_path( __FILE__ ) . '/lib/' );
46
 
47
  require_once( BEWPI_DIR . 'functions.php' );
@@ -54,6 +51,4 @@ 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
  }
1
  <?php
2
 
3
  /**
4
+ * @version 2.2.7
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.7
13
  * Author: baaaaas
14
  * Author URI:
15
  * License: GPL-2.0+
21
  if ( ! defined( 'ABSPATH' ) )
22
  die( 'Access denied.' );
23
 
24
+ if ( ! defined( 'BEWPI_VERSION' ) )
25
+ define( 'BEWPI_VERSION', '2.2.7' );
26
 
27
+ if ( ! defined( 'BEWPI_URL' ) )
28
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
29
 
30
+ if ( ! defined( 'BEWPI_DIR' ) )
31
  define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
32
 
33
+ if ( ! defined( 'BEWPI_LANG_DIR' ) )
 
 
 
34
  define( 'BEWPI_LANG_DIR', basename( dirname( __FILE__ ) ) . '/lang' );
35
 
36
+ if ( ! defined( 'BEWPI_INVOICES_DIR' ) ) :
37
+ $wp_upload_dir = wp_upload_dir();
 
38
  define( 'BEWPI_INVOICES_DIR', $wp_upload_dir['basedir'] . '/bewpi-invoices/' );
39
+ endif;
40
 
41
+ if ( ! defined( 'BEWPI_LIB_DIR' ) )
42
  define( 'BEWPI_LIB_DIR', plugin_dir_path( __FILE__ ) . '/lib/' );
43
 
44
  require_once( BEWPI_DIR . 'functions.php' );
51
 
52
  if ( class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
53
  new BE_WooCommerce_PDF_Invoices();
 
 
54
  }
functions.php CHANGED
@@ -6,4 +6,11 @@ if ( ! function_exists( 'wc_tax_enabled' ) ) {
6
  function wc_tax_enabled() {
7
  return get_option( 'woocommerce_calc_taxes' ) === 'yes';
8
  }
 
 
 
 
 
 
 
9
  }
6
  function wc_tax_enabled() {
7
  return get_option( 'woocommerce_calc_taxes' ) === 'yes';
8
  }
9
+ }
10
+
11
+ function image_to_base64( $image_url ) {
12
+ $type = pathinfo( $image_url, PATHINFO_EXTENSION );
13
+ $data = file_get_contents( $image_url );
14
+ $base64 = 'data:image/' . $type . ';base64,' . base64_encode( $data );
15
+ return $base64;
16
  }
includes/classes/bewpi-invoice.php CHANGED
@@ -118,18 +118,19 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
118
  * @return mixed
119
  */
120
  public function get_formatted_number( $insert = false ) {
121
- $invoice_number_format = $this->template_options['bewpi_invoice_number_format'];
122
- // Format number with the number of digits
123
- $digit_str = "%0" . $this->template_options['bewpi_invoice_number_digits'] . "s";
124
- $digitized_invoice_number = sprintf( $digit_str, $this->number );
125
- $year = date('Y');
126
- $y = date('y');
127
-
128
- // Format invoice number
129
- $formatted_invoice_number = str_replace(
130
- array( '[prefix]', '[suffix]', '[number]', '[Y]', '[y]' ),
131
- array( $this->template_options['bewpi_invoice_number_prefix'], $this->template_options['bewpi_invoice_number_suffix'], $digitized_invoice_number, $year, $y ),
132
- $invoice_number_format );
 
133
 
134
  // Insert formatted invoicenumber into db
135
  if ( $insert )
@@ -268,7 +269,7 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
268
  $this->number_of_columns = $this->get_number_of_columns();
269
  $this->colspan = $this->get_colspan();
270
  $this->formatted_number = $this->get_formatted_number( true );
271
- $this->year = (string) date( 'Y' );
272
  $this->filename = BEWPI_INVOICES_DIR . (string)$this->year . '/' . $this->formatted_number . '.pdf';
273
  // Template
274
  $this->css = $this->get_css();
@@ -330,8 +331,6 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
330
  * @return string
331
  */
332
  public function get_total() {
333
- global $woocommerce;
334
-
335
  $total = '';
336
  if ( $this->order->get_total_refunded() > 0 ) :
337
  $total_after_refund = $this->order->get_total() - $this->order->get_total_refunded();
@@ -388,5 +387,19 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
388
  ob_end_clean();
389
  return $html;
390
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
  }
392
  }
118
  * @return mixed
119
  */
120
  public function get_formatted_number( $insert = false ) {
121
+ $invoice_number_format = $this->template_options['bewpi_invoice_number_format'];
122
+ // Format number with the number of digits
123
+ $digit_str = "%0" . $this->template_options['bewpi_invoice_number_digits'] . "s";
124
+ $digitized_invoice_number = sprintf( $digit_str, $this->number );
125
+ $year = date('Y');
126
+ $y = date('y');
127
+ $m = date('m');
128
+
129
+ // Format invoice number
130
+ $formatted_invoice_number = str_replace(
131
+ array( '[prefix]', '[suffix]', '[number]', '[Y]', '[y]' , '[m]' ),
132
+ array( $this->template_options['bewpi_invoice_number_prefix'], $this->template_options['bewpi_invoice_number_suffix'], $digitized_invoice_number, (string)$year, (string)$y, (string)$m ),
133
+ $invoice_number_format );
134
 
135
  // Insert formatted invoicenumber into db
136
  if ( $insert )
269
  $this->number_of_columns = $this->get_number_of_columns();
270
  $this->colspan = $this->get_colspan();
271
  $this->formatted_number = $this->get_formatted_number( true );
272
+ $this->year = date( 'Y' );
273
  $this->filename = BEWPI_INVOICES_DIR . (string)$this->year . '/' . $this->formatted_number . '.pdf';
274
  // Template
275
  $this->css = $this->get_css();
331
  * @return string
332
  */
333
  public function get_total() {
 
 
334
  $total = '';
335
  if ( $this->order->get_total_refunded() > 0 ) :
336
  $total_after_refund = $this->order->get_total() - $this->order->get_total_refunded();
387
  ob_end_clean();
388
  return $html;
389
  }
390
+
391
+ /**
392
+ * Display company name if logo is not found.
393
+ * Convert image to base64 due to incompatibility of subdomains with MPDF
394
+ */
395
+ public function get_company_logo_html() {
396
+ if ( ! empty( $this->template_options['bewpi_company_logo'] ) ) :
397
+ $image_url = $this->template_options['bewpi_company_logo'];
398
+ $image_base64 = image_to_base64( $image_url );
399
+ echo '<img class="company-logo" src="' . $image_base64 . '"/>';
400
+ else :
401
+ echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
402
+ endif;
403
+ }
404
  }
405
  }
includes/views/templates/micro/body.php CHANGED
@@ -195,6 +195,26 @@
195
  <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
196
  </tr>
197
  <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  <!-- Tax -->
199
  <?php if( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() ) {
200
  foreach ( $this->order->get_tax_totals() as $code => $tax ) : ?>
195
  <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
196
  </tr>
197
  <?php } ?>
198
+ <!-- Fees -->
199
+ <?php
200
+ $line_items_fee = $this->order->get_items( 'fee' );
201
+ //if ( count( $line_items_fee ) > 0 ) :
202
+ foreach ( $line_items_fee as $item_id => $item ) :
203
+ ?>
204
+ <tr class="after-products">
205
+ <td colspan="<?php echo $this->colspan['left']; ?>"></td>
206
+ <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php echo ! empty( $item['name'] ) ? esc_html( $item['name'] ) : __( 'Fee', 'woocommerce' ); ?></td>
207
+ <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right">
208
+ <?php
209
+ echo ( isset( $item['line_total'] ) ) ? wc_price( wc_round_tax_total( $item['line_total'] ) ) : '';
210
+
211
+ if ( $refunded = $this->order->get_total_refunded_for_item( $item_id, 'fee' ) ) {
212
+ echo '<br/><small class="refunded">-' . wc_price( $refunded, array( 'currency' => $this->order->get_order_currency() ) ) . '</small>';
213
+ }
214
+ ?>
215
+ </td>
216
+ </tr>
217
+ <?php endforeach; ?>
218
  <!-- Tax -->
219
  <?php if( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() ) {
220
  foreach ( $this->order->get_tax_totals() as $code => $tax ) : ?>
includes/views/templates/micro/header.php CHANGED
@@ -1,16 +1,8 @@
1
  <table class="company two-column">
2
  <tbody>
3
  <tr>
4
- <td class="logo">
5
- <?php if ( !empty( $this->template_options['bewpi_company_logo'] ) ) { ?>
6
- <img class="company-logo" src="<?php echo $this->template_options['bewpi_company_logo']; ?>"/>
7
- <?php } else { ?>
8
- <h1 class="company-logo"><?php echo $this->template_options['bewpi_company_name']; ?></h1>
9
- <?php } ?>
10
- </td>
11
- <td class="info">
12
- <?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?>
13
- </td>
14
  </tr>
15
  </tbody>
16
  </table>
1
  <table class="company two-column">
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>
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-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,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: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. "
@@ -86,48 +86,48 @@ msgid ""
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 "Joindre à l'Email"
92
 
93
- #: admin/classes/bewpi-general-settings.php:93
94
  msgid "Processing order"
95
  msgstr "traitement de la commande en cours"
96
 
97
- #: admin/classes/bewpi-general-settings.php:97
98
  msgid "Completed order"
99
  msgstr "Commande terminée"
100
 
101
- #: admin/classes/bewpi-general-settings.php:101
102
  msgid "Customer invoice"
103
  msgstr "Facture Client"
104
 
105
- #: admin/classes/bewpi-general-settings.php:115
106
  msgid "Attach to New order Email"
107
  msgstr "Joindre à l'email de la nouvelle commande"
108
 
109
- #: admin/classes/bewpi-general-settings.php:127
110
  msgid "Enable Email It In"
111
  msgstr "Activer l'envoi Email It In"
112
 
113
- #: admin/classes/bewpi-general-settings.php:135
114
  msgid "Email It In account"
115
  msgstr "Compte Email It In"
116
 
117
- #: admin/classes/bewpi-general-settings.php:140
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr "Obtenez votre compte depuis Email It In %scompte utilisateur%s"
121
 
122
- #: admin/classes/bewpi-general-settings.php:153
123
  msgid "Email Options"
124
  msgstr "Options Email"
125
 
126
- #: admin/classes/bewpi-general-settings.php:159
127
  msgid "Cloud Storage Options"
128
  msgstr "Options de stockage du cloud"
129
 
130
- #: admin/classes/bewpi-general-settings.php:166
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
@@ -144,64 +144,64 @@ msgstr "N'hésitez pas à utiliser"
144
  msgid "Remove logo"
145
  msgstr "Retirer le logo"
146
 
147
- #: admin/classes/bewpi-template-settings.php:104
148
  msgid "Color theme"
149
  msgstr "Couleur du thème"
150
 
151
- #: admin/classes/bewpi-template-settings.php:115
152
  msgid "Date format"
153
  msgstr "Format de la date"
154
 
155
- #: admin/classes/bewpi-template-settings.php:120
156
  #, php-format
157
  msgid "%sFormat%s of invoice date and order date."
158
  msgstr "%sFormat%s de la date de commande et de la date de facturation "
159
 
160
- #: admin/classes/bewpi-template-settings.php:131
161
  msgid "Company name"
162
  msgstr "Nom de la société"
163
 
164
- #: admin/classes/bewpi-template-settings.php:142
165
  msgid "Company logo"
166
  msgstr "Logo de la société"
167
 
168
- #: admin/classes/bewpi-template-settings.php:153
169
  msgid "Company address"
170
  msgstr "Adresse de la société"
171
 
172
- #: admin/classes/bewpi-template-settings.php:164
173
  msgid "Company details"
174
  msgstr "Détails de la société"
175
 
176
- #: admin/classes/bewpi-template-settings.php:175
177
  msgid "Intro text"
178
  msgstr "Texte d'introduction"
179
 
180
- #: admin/classes/bewpi-template-settings.php:187
181
  msgid "Terms & conditions, policies etc."
182
  msgstr "Termes et conditions, mentions légales, etc..."
183
 
184
- #: admin/classes/bewpi-template-settings.php:203
185
  msgid "Show customer notes"
186
  msgstr "Montrer les notes du client"
187
 
188
- #: admin/classes/bewpi-template-settings.php:211
189
  msgid "Type"
190
  msgstr "Type"
191
 
192
- #: admin/classes/bewpi-template-settings.php:219
193
  msgid "WooCommerce order number"
194
  msgstr "WooCommerce numéro de commande"
195
 
196
- #: admin/classes/bewpi-template-settings.php:223
197
  msgid "Sequential number"
198
  msgstr "Numéro séquentiel"
199
 
200
- #: admin/classes/bewpi-template-settings.php:247
201
  msgid "Next"
202
  msgstr "Suivant"
203
 
204
- #: admin/classes/bewpi-template-settings.php:252
205
  #, php-format
206
  msgid ""
207
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
@@ -213,167 +213,177 @@ msgstr ""
213
  "séquentielle et vous avez besoin de vérifier la case pour réinitialiser la "
214
  "valeur"
215
 
216
- #: admin/classes/bewpi-template-settings.php:261
217
  msgid "Digits"
218
  msgstr "Chiffres"
219
 
220
- #: admin/classes/bewpi-template-settings.php:277
221
  msgid "[prefix]"
222
  msgstr "[prefixe]"
223
 
224
- #: admin/classes/bewpi-template-settings.php:288
225
  msgid "[suffix]"
226
  msgstr "[suffixe]"
227
 
228
- #: admin/classes/bewpi-template-settings.php:299
229
  msgid "Format"
230
  msgstr "Format"
231
 
232
- #: admin/classes/bewpi-template-settings.php:304
233
  #, php-format
234
  msgid ""
235
- "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
236
  "required."
237
  msgstr ""
238
- "N'hésitez pas à utiliser les espaces réservés %s %s %s %s et %s. %s %sNote:"
239
- "%s %s estrequis."
240
 
241
- #: admin/classes/bewpi-template-settings.php:318
242
  msgid "Reset on 1st of january"
243
  msgstr "Réinitialiser le 1er janvier"
244
 
245
- #: admin/classes/bewpi-template-settings.php:331
246
- #: includes/views/templates/invoice-micro.php:220
247
  msgid "SKU"
248
  msgstr "UGS"
249
 
250
- #: admin/classes/bewpi-template-settings.php:343
251
- #: includes/views/templates/invoice-micro.php:388
252
  msgid "Subtotal"
253
  msgstr "Sous-total"
254
 
255
- #: admin/classes/bewpi-template-settings.php:355
256
  msgid "Tax"
257
  msgstr "TVA"
258
 
259
- #: admin/classes/bewpi-template-settings.php:367
260
- #: includes/views/templates/invoice-micro.php:372
261
  msgid "Discount"
262
  msgstr "Réduction"
263
 
264
- #: admin/classes/bewpi-template-settings.php:379
265
- #: includes/views/templates/invoice-micro.php:380
266
  msgid "Shipping"
267
  msgstr "Livraison"
268
 
269
- #: admin/classes/bewpi-template-settings.php:393
270
  msgid "General Options"
271
  msgstr "Options générales "
272
 
273
- #: admin/classes/bewpi-template-settings.php:399
274
  msgid "Invoice Number Options"
275
  msgstr "Options numéro de facture"
276
 
277
- #: admin/classes/bewpi-template-settings.php:405
278
  msgid "Header Options"
279
  msgstr "Options en-tête"
280
 
281
- #: admin/classes/bewpi-template-settings.php:411
282
  msgid "Footer Options"
283
  msgstr "Options pied de page"
284
 
285
- #: admin/classes/bewpi-template-settings.php:417
286
  msgid "Visible Columns"
287
  msgstr "Colonnes Visibles"
288
 
289
- #: admin/classes/bewpi-template-settings.php:423
290
  msgid "These are the general template options."
291
  msgstr "Ce sont les options générales du modèle."
292
 
293
- #: admin/classes/bewpi-template-settings.php:424
294
  msgid "These are the invoice number options."
295
  msgstr "Ce sont les options du numéro de facture."
296
 
297
- #: admin/classes/bewpi-template-settings.php:425
298
  msgid "The header will be visible on every page. "
299
  msgstr "L'en-tête sera visible sur toutes les pages"
300
 
301
- #: admin/classes/bewpi-template-settings.php:426
302
  msgid "The footer will be visible on every page. "
303
  msgstr "Le pied de page sera visible sur toutes les pages"
304
 
305
- #: admin/classes/bewpi-template-settings.php:427
306
  msgid "Enable or disable the columns."
307
  msgstr "Activer ou désactiver les colonnes."
308
 
309
- #: admin/classes/bewpi-template-settings.php:497
310
  msgid "File is invalid and contains either '..' or './'."
311
  msgstr "Le fichier est invalide et contient soit '..' ou './'."
312
 
313
- #: admin/classes/bewpi-template-settings.php:504
314
  msgid "File is invalid and contains ':' after the first character."
315
  msgstr "Le fichier est invalide et contient ':' aprés la premiere lettre. "
316
 
317
- #: admin/classes/bewpi-template-settings.php:513
318
  msgid "File should be less then 2MB."
319
  msgstr "Le fichier doit être inférieure à 2 Mo."
320
 
321
- #: includes/classes/bewpi-invoice.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  msgid "Customer note"
323
  msgstr "Note du client"
324
 
325
- #: includes/classes/bewpi-invoice.php:169
326
  #, php-format
327
  msgid "%sPayment%s via"
328
  msgstr "%sPaiement%s via"
329
 
330
- #: includes/views/templates/invoice-micro.php:185
331
  msgid "Invoice to"
332
  msgstr "Facture pour"
333
 
334
- #: includes/views/templates/invoice-micro.php:189
335
  msgid "Ship to"
336
  msgstr "Livraison pour"
337
 
338
- #: includes/views/templates/invoice-micro.php:199
339
  msgid "Invoice"
340
  msgstr "Facture"
341
 
342
- #: includes/views/templates/invoice-micro.php:202
343
  #, php-format
344
  msgid "Order Number %s"
345
  msgstr "Numéro d'ordre %s"
346
 
347
- #: includes/views/templates/invoice-micro.php:203
348
  #, php-format
349
  msgid "Order Date %s"
350
  msgstr "Date de commande %s"
351
 
352
- #: includes/views/templates/invoice-micro.php:217
353
- msgid "Description"
354
- msgstr "Description"
355
-
356
- #: includes/views/templates/invoice-micro.php:223
357
- msgid "Cost"
358
- msgstr "Coût"
359
-
360
- #: includes/views/templates/invoice-micro.php:224
361
- msgid "Qty"
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
-
369
- #: includes/views/templates/invoice-micro.php:241
370
- #: includes/views/templates/invoice-micro.php:407
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"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-05-15 15:12+0100\n"
5
+ "PO-Revision-Date: 2015-05-15 15:12+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:202
23
  msgid "General"
24
  msgstr "Général"
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:203
27
+ #: admin/classes/bewpi-template-settings.php:85
28
  msgid "Template"
29
  msgstr "Template"
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:222
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:223
33
  msgid "Invoices"
34
  msgstr "Factures"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:328
37
  msgid "PDF Invoice"
38
  msgstr "Facture PDF"
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:355
41
  msgid "Invoiced on:"
42
  msgstr "Facturés sur"
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:359
45
  msgid "Invoice number:"
46
  msgstr "Numéro de facture"
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
49
  msgid "View invoice"
50
  msgstr " Voir la facture"
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
53
  msgid "View"
54
  msgstr "Voir"
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
57
  msgid "Cancel invoice"
58
  msgstr "Annuler la facture"
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
61
  msgid "Cancel"
62
  msgstr "Annuler"
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
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:400
69
  msgid "Create invoice"
70
  msgstr "Créer une facture"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:400
73
  msgid "Create"
74
  msgstr "créer"
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:433
77
  msgid "Download invoice (PDF)"
78
  msgstr "Télécharger la facture (PDF)"
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:512
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
86
  "a> - <a href='%s'>No, already done it!</a>"
87
  msgstr ""
88
 
89
+ #: admin/classes/bewpi-general-settings.php:84
90
  msgid "Attach to Email"
91
  msgstr "Joindre à l'Email"
92
 
93
+ #: admin/classes/bewpi-general-settings.php:92
94
  msgid "Processing order"
95
  msgstr "traitement de la commande en cours"
96
 
97
+ #: admin/classes/bewpi-general-settings.php:96
98
  msgid "Completed order"
99
  msgstr "Commande terminée"
100
 
101
+ #: admin/classes/bewpi-general-settings.php:100
102
  msgid "Customer invoice"
103
  msgstr "Facture Client"
104
 
105
+ #: admin/classes/bewpi-general-settings.php:114
106
  msgid "Attach to New order Email"
107
  msgstr "Joindre à l'email de la nouvelle commande"
108
 
109
+ #: admin/classes/bewpi-general-settings.php:126
110
  msgid "Enable Email It In"
111
  msgstr "Activer l'envoi Email It In"
112
 
113
+ #: admin/classes/bewpi-general-settings.php:134
114
  msgid "Email It In account"
115
  msgstr "Compte Email It In"
116
 
117
+ #: admin/classes/bewpi-general-settings.php:139
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr "Obtenez votre compte depuis Email It In %scompte utilisateur%s"
121
 
122
+ #: admin/classes/bewpi-general-settings.php:152
123
  msgid "Email Options"
124
  msgstr "Options Email"
125
 
126
+ #: admin/classes/bewpi-general-settings.php:158
127
  msgid "Cloud Storage Options"
128
  msgstr "Options de stockage du cloud"
129
 
130
+ #: admin/classes/bewpi-general-settings.php:165
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
144
  msgid "Remove logo"
145
  msgstr "Retirer le logo"
146
 
147
+ #: admin/classes/bewpi-template-settings.php:103
148
  msgid "Color theme"
149
  msgstr "Couleur du thème"
150
 
151
+ #: admin/classes/bewpi-template-settings.php:114
152
  msgid "Date format"
153
  msgstr "Format de la date"
154
 
155
+ #: admin/classes/bewpi-template-settings.php:119
156
  #, php-format
157
  msgid "%sFormat%s of invoice date and order date."
158
  msgstr "%sFormat%s de la date de commande et de la date de facturation "
159
 
160
+ #: admin/classes/bewpi-template-settings.php:130
161
  msgid "Company name"
162
  msgstr "Nom de la société"
163
 
164
+ #: admin/classes/bewpi-template-settings.php:141
165
  msgid "Company logo"
166
  msgstr "Logo de la société"
167
 
168
+ #: admin/classes/bewpi-template-settings.php:152
169
  msgid "Company address"
170
  msgstr "Adresse de la société"
171
 
172
+ #: admin/classes/bewpi-template-settings.php:163
173
  msgid "Company details"
174
  msgstr "Détails de la société"
175
 
176
+ #: admin/classes/bewpi-template-settings.php:174
177
  msgid "Intro text"
178
  msgstr "Texte d'introduction"
179
 
180
+ #: admin/classes/bewpi-template-settings.php:186
181
  msgid "Terms & conditions, policies etc."
182
  msgstr "Termes et conditions, mentions légales, etc..."
183
 
184
+ #: admin/classes/bewpi-template-settings.php:202
185
  msgid "Show customer notes"
186
  msgstr "Montrer les notes du client"
187
 
188
+ #: admin/classes/bewpi-template-settings.php:210
189
  msgid "Type"
190
  msgstr "Type"
191
 
192
+ #: admin/classes/bewpi-template-settings.php:218
193
  msgid "WooCommerce order number"
194
  msgstr "WooCommerce numéro de commande"
195
 
196
+ #: admin/classes/bewpi-template-settings.php:222
197
  msgid "Sequential number"
198
  msgstr "Numéro séquentiel"
199
 
200
+ #: admin/classes/bewpi-template-settings.php:246
201
  msgid "Next"
202
  msgstr "Suivant"
203
 
204
+ #: admin/classes/bewpi-template-settings.php:251
205
  #, php-format
206
  msgid ""
207
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
213
  "séquentielle et vous avez besoin de vérifier la case pour réinitialiser la "
214
  "valeur"
215
 
216
+ #: admin/classes/bewpi-template-settings.php:260
217
  msgid "Digits"
218
  msgstr "Chiffres"
219
 
220
+ #: admin/classes/bewpi-template-settings.php:276
221
  msgid "[prefix]"
222
  msgstr "[prefixe]"
223
 
224
+ #: admin/classes/bewpi-template-settings.php:287
225
  msgid "[suffix]"
226
  msgstr "[suffixe]"
227
 
228
+ #: admin/classes/bewpi-template-settings.php:298
229
  msgid "Format"
230
  msgstr "Format"
231
 
232
+ #: admin/classes/bewpi-template-settings.php:303
233
  #, php-format
234
  msgid ""
235
+ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s is "
236
  "required."
237
  msgstr ""
 
 
238
 
239
+ #: admin/classes/bewpi-template-settings.php:317
240
  msgid "Reset on 1st of january"
241
  msgstr "Réinitialiser le 1er janvier"
242
 
243
+ #: admin/classes/bewpi-template-settings.php:330
244
+ #: includes/views/templates/micro/body.php:25
245
  msgid "SKU"
246
  msgstr "UGS"
247
 
248
+ #: admin/classes/bewpi-template-settings.php:342
249
+ #: includes/views/templates/micro/body.php:194
250
  msgid "Subtotal"
251
  msgstr "Sous-total"
252
 
253
+ #: admin/classes/bewpi-template-settings.php:354
254
  msgid "Tax"
255
  msgstr "TVA"
256
 
257
+ #: admin/classes/bewpi-template-settings.php:366
258
+ #: includes/views/templates/micro/body.php:178
259
  msgid "Discount"
260
  msgstr "Réduction"
261
 
262
+ #: admin/classes/bewpi-template-settings.php:378
263
+ #: includes/views/templates/micro/body.php:186
264
  msgid "Shipping"
265
  msgstr "Livraison"
266
 
267
+ #: admin/classes/bewpi-template-settings.php:392
268
  msgid "General Options"
269
  msgstr "Options générales "
270
 
271
+ #: admin/classes/bewpi-template-settings.php:398
272
  msgid "Invoice Number Options"
273
  msgstr "Options numéro de facture"
274
 
275
+ #: admin/classes/bewpi-template-settings.php:404
276
  msgid "Header Options"
277
  msgstr "Options en-tête"
278
 
279
+ #: admin/classes/bewpi-template-settings.php:410
280
  msgid "Footer Options"
281
  msgstr "Options pied de page"
282
 
283
+ #: admin/classes/bewpi-template-settings.php:416
284
  msgid "Visible Columns"
285
  msgstr "Colonnes Visibles"
286
 
287
+ #: admin/classes/bewpi-template-settings.php:422
288
  msgid "These are the general template options."
289
  msgstr "Ce sont les options générales du modèle."
290
 
291
+ #: admin/classes/bewpi-template-settings.php:423
292
  msgid "These are the invoice number options."
293
  msgstr "Ce sont les options du numéro de facture."
294
 
295
+ #: admin/classes/bewpi-template-settings.php:424
296
  msgid "The header will be visible on every page. "
297
  msgstr "L'en-tête sera visible sur toutes les pages"
298
 
299
+ #: admin/classes/bewpi-template-settings.php:425
300
  msgid "The footer will be visible on every page. "
301
  msgstr "Le pied de page sera visible sur toutes les pages"
302
 
303
+ #: admin/classes/bewpi-template-settings.php:426
304
  msgid "Enable or disable the columns."
305
  msgstr "Activer ou désactiver les colonnes."
306
 
307
+ #: admin/classes/bewpi-template-settings.php:496
308
  msgid "File is invalid and contains either '..' or './'."
309
  msgstr "Le fichier est invalide et contient soit '..' ou './'."
310
 
311
+ #: admin/classes/bewpi-template-settings.php:503
312
  msgid "File is invalid and contains ':' after the first character."
313
  msgstr "Le fichier est invalide et contient ':' aprés la premiere lettre. "
314
 
315
+ #: admin/classes/bewpi-template-settings.php:512
316
  msgid "File should be less then 2MB."
317
  msgstr "Le fichier doit être inférieure à 2 Mo."
318
 
319
+ #: includes/views/templates/micro/body.php:22
320
+ msgid "Description"
321
+ msgstr "Description"
322
+
323
+ #: includes/views/templates/micro/body.php:28
324
+ msgid "Cost"
325
+ msgstr "Coût"
326
+
327
+ #: includes/views/templates/micro/body.php:29
328
+ msgid "Qty"
329
+ msgstr "Qté"
330
+
331
+ #: includes/views/templates/micro/body.php:36
332
+ #: includes/views/templates/micro/body.php:224
333
+ msgid "VAT"
334
+ msgstr "TVA"
335
+
336
+ #: includes/views/templates/micro/body.php:47
337
+ #: includes/views/templates/micro/body.php:233
338
+ msgid "Total"
339
+ msgstr "Total"
340
+
341
+ #: includes/views/templates/micro/body.php:206
342
+ msgid "Fee"
343
+ msgstr ""
344
+
345
+ #: includes/views/templates/micro/body.php:240
346
+ msgid "Refunded"
347
+ msgstr "Remboursement"
348
+
349
+ #: includes/views/templates/micro/footer.php:9
350
+ #: includes/views/templates/micro/footer.php:13
351
  msgid "Customer note"
352
  msgstr "Note du client"
353
 
354
+ #: includes/views/templates/micro/footer.php:21
355
  #, php-format
356
  msgid "%sPayment%s via"
357
  msgstr "%sPaiement%s via"
358
 
359
+ #: includes/views/templates/micro/header.php:13
360
  msgid "Invoice to"
361
  msgstr "Facture pour"
362
 
363
+ #: includes/views/templates/micro/header.php:17
364
  msgid "Ship to"
365
  msgstr "Livraison pour"
366
 
367
+ #: includes/views/templates/micro/header.php:27
368
  msgid "Invoice"
369
  msgstr "Facture"
370
 
371
+ #: includes/views/templates/micro/header.php:30
372
  #, php-format
373
  msgid "Order Number %s"
374
  msgstr "Numéro d'ordre %s"
375
 
376
+ #: includes/views/templates/micro/header.php:31
377
  #, php-format
378
  msgid "Order Date %s"
379
  msgstr "Date de commande %s"
380
 
381
+ #~ msgid ""
382
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
383
+ #~ "required."
384
+ #~ msgstr ""
385
+ #~ "N'hésitez pas à utiliser les espaces réservés %s %s %s %s et %s. %s "
386
+ #~ "%sNote:%s %s estrequis."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
 
388
  #~ msgid "VAT %s"
389
  #~ msgstr "TVA %s"
lang/be-woocommerce-pdf-invoices-nb_NO.mo CHANGED
Binary file
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-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"
@@ -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: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. "
@@ -85,49 +85,53 @@ msgid ""
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"
92
 
93
- #: admin/classes/bewpi-general-settings.php:93
94
  msgid "Processing order"
95
  msgstr "Behandler ordre"
96
 
97
- #: admin/classes/bewpi-general-settings.php:97
98
  msgid "Completed order"
99
  msgstr "Fullført ordre"
100
 
101
- #: admin/classes/bewpi-general-settings.php:101
102
  msgid "Customer invoice"
103
  msgstr "Kundefaktura"
104
 
105
- #: admin/classes/bewpi-general-settings.php:115
106
  msgid "Attach to New order Email"
107
  msgstr "Legg til ny bestilling e-post"
108
 
109
- #: admin/classes/bewpi-general-settings.php:127
110
  msgid "Enable Email It In"
111
  msgstr "Aktiver dette epostvarselet"
112
 
113
- #: admin/classes/bewpi-general-settings.php:135
114
  msgid "Email It In account"
115
  msgstr "Email It In konto"
116
 
117
- #: admin/classes/bewpi-general-settings.php:140
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr "Få din konto fra din Email It In %suser account%s."
121
 
122
- #: admin/classes/bewpi-general-settings.php:153
123
  msgid "Email Options"
124
  msgstr "E-post alternativer"
125
 
126
- #: admin/classes/bewpi-general-settings.php:159
127
  msgid "Cloud Storage Options"
128
  msgstr "Skylagringsalternativer"
129
 
130
- #: admin/classes/bewpi-general-settings.php:166
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
@@ -144,64 +148,64 @@ msgstr "Du kan også bruke "
144
  msgid "Remove logo"
145
  msgstr "Fjern logo"
146
 
147
- #: admin/classes/bewpi-template-settings.php:104
148
  msgid "Color theme"
149
  msgstr "Fargetema"
150
 
151
- #: admin/classes/bewpi-template-settings.php:115
152
  msgid "Date format"
153
  msgstr "Datoformat"
154
 
155
- #: admin/classes/bewpi-template-settings.php:120
156
  #, php-format
157
  msgid "%sFormat%s of invoice date and order date."
158
  msgstr "%sFormat%s til fakturadato og ordredato."
159
 
160
- #: admin/classes/bewpi-template-settings.php:131
161
  msgid "Company name"
162
  msgstr "Firmanavn"
163
 
164
- #: admin/classes/bewpi-template-settings.php:142
165
  msgid "Company logo"
166
  msgstr "Firmalogo"
167
 
168
- #: admin/classes/bewpi-template-settings.php:153
169
  msgid "Company address"
170
  msgstr "Firmaadresse"
171
 
172
- #: admin/classes/bewpi-template-settings.php:164
173
  msgid "Company details"
174
  msgstr "Firmadetaljer"
175
 
176
- #: admin/classes/bewpi-template-settings.php:175
177
  msgid "Intro text"
178
  msgstr "Introduksjonstekst"
179
 
180
- #: admin/classes/bewpi-template-settings.php:187
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"
191
 
192
- #: admin/classes/bewpi-template-settings.php:219
193
  msgid "WooCommerce order number"
194
  msgstr "WooCommerce bestillingsnummer"
195
 
196
- #: admin/classes/bewpi-template-settings.php:223
197
  msgid "Sequential number"
198
  msgstr "Sekvensielt nummer"
199
 
200
- #: admin/classes/bewpi-template-settings.php:247
201
  msgid "Next"
202
  msgstr "Neste"
203
 
204
- #: admin/classes/bewpi-template-settings.php:252
205
  #, php-format
206
  msgid ""
207
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
@@ -212,167 +216,177 @@ msgstr ""
212
  "Kun tilgjengelig med sekvensielle nummer og du må huke av boksen for å "
213
  "faktisk tilbakestille verdien."
214
 
215
- #: admin/classes/bewpi-template-settings.php:261
216
  msgid "Digits"
217
  msgstr "Tegn"
218
 
219
- #: admin/classes/bewpi-template-settings.php:277
220
  msgid "[prefix]"
221
  msgstr "[prefix]"
222
 
223
- #: admin/classes/bewpi-template-settings.php:288
224
  msgid "[suffix]"
225
  msgstr "[suffix]"
226
 
227
- #: admin/classes/bewpi-template-settings.php:299
228
  msgid "Format"
229
  msgstr "Format"
230
 
231
- #: admin/classes/bewpi-template-settings.php:304
232
  #, php-format
233
  msgid ""
234
- "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
235
  "required."
236
  msgstr ""
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"
271
 
272
- #: admin/classes/bewpi-template-settings.php:399
273
  msgid "Invoice Number Options"
274
  msgstr "Alternativer for fakturanummer"
275
 
276
- #: admin/classes/bewpi-template-settings.php:405
277
  msgid "Header Options"
278
  msgstr "Overskriftsvalg"
279
 
280
- #: admin/classes/bewpi-template-settings.php:411
281
  msgid "Footer Options"
282
  msgstr "Footer valg"
283
 
284
- #: admin/classes/bewpi-template-settings.php:417
285
  msgid "Visible Columns"
286
  msgstr "Synlige kolonner"
287
 
288
- #: admin/classes/bewpi-template-settings.php:423
289
  msgid "These are the general template options."
290
  msgstr "Dette er de generelle alternativene for malen."
291
 
292
- #: admin/classes/bewpi-template-settings.php:424
293
  msgid "These are the invoice number options."
294
  msgstr "Dette er alternativene for fakturanummer."
295
 
296
- #: admin/classes/bewpi-template-settings.php:425
297
  msgid "The header will be visible on every page. "
298
  msgstr "Overskriften vil være synlig på alle sider. "
299
 
300
- #: admin/classes/bewpi-template-settings.php:426
301
  msgid "The footer will be visible on every page. "
302
  msgstr "Footeren vil være synlig på alle sider. "
303
 
304
- #: admin/classes/bewpi-template-settings.php:427
305
  msgid "Enable or disable the columns."
306
  msgstr "Aktiver eller deaktiver kolonnene."
307
 
308
- #: admin/classes/bewpi-template-settings.php:497
309
  msgid "File is invalid and contains either '..' or './'."
310
  msgstr "Filen er ugyldig og inneholder enten '...' eller './'."
311
 
312
- #: admin/classes/bewpi-template-settings.php:504
313
  msgid "File is invalid and contains ':' after the first character."
314
  msgstr "Filen er ugyldig og inneholder ':' etter den første bokstaven."
315
 
316
- #: admin/classes/bewpi-template-settings.php:513
317
  msgid "File should be less then 2MB."
318
  msgstr "Filen bør være under 2 megabyte."
319
 
320
- #: includes/classes/bewpi-invoice.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  msgid "Customer note"
322
  msgstr "Kundenotat"
323
 
324
- #: includes/classes/bewpi-invoice.php:169
325
  #, php-format
326
  msgid "%sPayment%s via"
327
  msgstr "%sBetaling%s med"
328
 
329
- #: includes/views/templates/invoice-micro.php:185
330
  msgid "Invoice to"
331
- msgstr "Faktura til"
332
 
333
- #: includes/views/templates/invoice-micro.php:189
334
  msgid "Ship to"
335
  msgstr "Leveringsadresse"
336
 
337
- #: includes/views/templates/invoice-micro.php:199
338
  msgid "Invoice"
339
  msgstr "Faktura"
340
 
341
- #: includes/views/templates/invoice-micro.php:202
342
  #, php-format
343
  msgid "Order Number %s"
344
  msgstr "Bestillingsnummer: %s"
345
 
346
- #: includes/views/templates/invoice-micro.php:203
347
  #, php-format
348
  msgid "Order Date %s"
349
  msgstr "Bestillingsdato: %s"
350
 
351
- #: includes/views/templates/invoice-micro.php:217
352
- msgid "Description"
353
- msgstr "Produkt"
354
-
355
- #: includes/views/templates/invoice-micro.php:223
356
- msgid "Cost"
357
- msgstr "Pris"
358
-
359
- #: includes/views/templates/invoice-micro.php:224
360
- msgid "Qty"
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
-
368
- #: includes/views/templates/invoice-micro.php:241
369
- #: includes/views/templates/invoice-micro.php:407
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"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-05-15 15:13+0100\n"
5
+ "PO-Revision-Date: 2015-05-15 15:13+0100\n"
6
  "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
  "Language-Team: \n"
8
  "Language: nb\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: admin/classes/be-woocommerce-pdf-invoices.php:202
23
  msgid "General"
24
  msgstr "Generelt"
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:203
27
+ #: admin/classes/bewpi-template-settings.php:85
28
  msgid "Template"
29
  msgstr "Mal"
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:222
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:223
33
  msgid "Invoices"
34
+ msgstr "PDF Faktura"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:328
37
  msgid "PDF Invoice"
38
  msgstr "PDF Faktura"
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:355
41
  msgid "Invoiced on:"
42
  msgstr "Sendt:"
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:359
45
  msgid "Invoice number:"
46
  msgstr "Fakturanummer:"
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
49
  msgid "View invoice"
50
  msgstr "Vis faktura"
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
53
  msgid "View"
54
  msgstr "Vis"
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
57
  msgid "Cancel invoice"
58
  msgstr "Slett faktura"
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
61
  msgid "Cancel"
62
  msgstr "Slett"
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
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:400
69
  msgid "Create invoice"
70
  msgstr "Opprett faktura"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:400
73
  msgid "Create"
74
  msgstr "Opprett"
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:433
77
  msgid "Download invoice (PDF)"
78
  msgstr "Last ned faktura (PDF)"
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:512
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
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
+ "Takk for at du har benyttet <b>WooCommerce PDF Invoices</b> en liten stund "
89
+ "allerede. Vennligst vis oss din støtte ved å vurdere utvidelsen med ★★★★★. "
90
+ "Tusen takk for støtten din! <br /> <a href='%s' target='_blank'>Ja, jeg skal "
91
+ "gjøre det med en gang!!</a> - <a href='%s'>Jeg har allerede gjort det!</a>"
92
 
93
+ #: admin/classes/bewpi-general-settings.php:84
94
  msgid "Attach to Email"
95
  msgstr "Legg ved e-post"
96
 
97
+ #: admin/classes/bewpi-general-settings.php:92
98
  msgid "Processing order"
99
  msgstr "Behandler ordre"
100
 
101
+ #: admin/classes/bewpi-general-settings.php:96
102
  msgid "Completed order"
103
  msgstr "Fullført ordre"
104
 
105
+ #: admin/classes/bewpi-general-settings.php:100
106
  msgid "Customer invoice"
107
  msgstr "Kundefaktura"
108
 
109
+ #: admin/classes/bewpi-general-settings.php:114
110
  msgid "Attach to New order Email"
111
  msgstr "Legg til ny bestilling e-post"
112
 
113
+ #: admin/classes/bewpi-general-settings.php:126
114
  msgid "Enable Email It In"
115
  msgstr "Aktiver dette epostvarselet"
116
 
117
+ #: admin/classes/bewpi-general-settings.php:134
118
  msgid "Email It In account"
119
  msgstr "Email It In konto"
120
 
121
+ #: admin/classes/bewpi-general-settings.php:139
122
  #, php-format
123
  msgid "Get your account from your Email It In %suser account%s."
124
  msgstr "Få din konto fra din Email It In %suser account%s."
125
 
126
+ #: admin/classes/bewpi-general-settings.php:152
127
  msgid "Email Options"
128
  msgstr "E-post alternativer"
129
 
130
+ #: admin/classes/bewpi-general-settings.php:158
131
  msgid "Cloud Storage Options"
132
  msgstr "Skylagringsalternativer"
133
 
134
+ #: admin/classes/bewpi-general-settings.php:165
135
  #, php-format
136
  msgid ""
137
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
148
  msgid "Remove logo"
149
  msgstr "Fjern logo"
150
 
151
+ #: admin/classes/bewpi-template-settings.php:103
152
  msgid "Color theme"
153
  msgstr "Fargetema"
154
 
155
+ #: admin/classes/bewpi-template-settings.php:114
156
  msgid "Date format"
157
  msgstr "Datoformat"
158
 
159
+ #: admin/classes/bewpi-template-settings.php:119
160
  #, php-format
161
  msgid "%sFormat%s of invoice date and order date."
162
  msgstr "%sFormat%s til fakturadato og ordredato."
163
 
164
+ #: admin/classes/bewpi-template-settings.php:130
165
  msgid "Company name"
166
  msgstr "Firmanavn"
167
 
168
+ #: admin/classes/bewpi-template-settings.php:141
169
  msgid "Company logo"
170
  msgstr "Firmalogo"
171
 
172
+ #: admin/classes/bewpi-template-settings.php:152
173
  msgid "Company address"
174
  msgstr "Firmaadresse"
175
 
176
+ #: admin/classes/bewpi-template-settings.php:163
177
  msgid "Company details"
178
  msgstr "Firmadetaljer"
179
 
180
+ #: admin/classes/bewpi-template-settings.php:174
181
  msgid "Intro text"
182
  msgstr "Introduksjonstekst"
183
 
184
+ #: admin/classes/bewpi-template-settings.php:186
185
  msgid "Terms & conditions, policies etc."
186
  msgstr "Betingelser, vilkår etc."
187
 
188
+ #: admin/classes/bewpi-template-settings.php:202
189
  msgid "Show customer notes"
190
+ msgstr "Vis kundenotat"
191
 
192
+ #: admin/classes/bewpi-template-settings.php:210
193
  msgid "Type"
194
  msgstr "Type"
195
 
196
+ #: admin/classes/bewpi-template-settings.php:218
197
  msgid "WooCommerce order number"
198
  msgstr "WooCommerce bestillingsnummer"
199
 
200
+ #: admin/classes/bewpi-template-settings.php:222
201
  msgid "Sequential number"
202
  msgstr "Sekvensielt nummer"
203
 
204
+ #: admin/classes/bewpi-template-settings.php:246
205
  msgid "Next"
206
  msgstr "Neste"
207
 
208
+ #: admin/classes/bewpi-template-settings.php:251
209
  #, php-format
210
  msgid ""
211
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
216
  "Kun tilgjengelig med sekvensielle nummer og du må huke av boksen for å "
217
  "faktisk tilbakestille verdien."
218
 
219
+ #: admin/classes/bewpi-template-settings.php:260
220
  msgid "Digits"
221
  msgstr "Tegn"
222
 
223
+ #: admin/classes/bewpi-template-settings.php:276
224
  msgid "[prefix]"
225
  msgstr "[prefix]"
226
 
227
+ #: admin/classes/bewpi-template-settings.php:287
228
  msgid "[suffix]"
229
  msgstr "[suffix]"
230
 
231
+ #: admin/classes/bewpi-template-settings.php:298
232
  msgid "Format"
233
  msgstr "Format"
234
 
235
+ #: admin/classes/bewpi-template-settings.php:303
236
  #, php-format
237
  msgid ""
238
+ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s is "
239
  "required."
240
  msgstr ""
 
 
241
 
242
+ #: admin/classes/bewpi-template-settings.php:317
243
  msgid "Reset on 1st of january"
244
+ msgstr "Tilbakestill 1. Januar"
245
 
246
+ #: admin/classes/bewpi-template-settings.php:330
247
+ #: includes/views/templates/micro/body.php:25
248
  msgid "SKU"
249
+ msgstr "Prod.Nr."
250
 
251
+ #: admin/classes/bewpi-template-settings.php:342
252
+ #: includes/views/templates/micro/body.php:194
253
  msgid "Subtotal"
254
  msgstr "Delsum"
255
 
256
+ #: admin/classes/bewpi-template-settings.php:354
257
  msgid "Tax"
258
+ msgstr "MVA"
259
 
260
+ #: admin/classes/bewpi-template-settings.php:366
261
+ #: includes/views/templates/micro/body.php:178
262
  msgid "Discount"
263
  msgstr "Rabatt"
264
 
265
+ #: admin/classes/bewpi-template-settings.php:378
266
+ #: includes/views/templates/micro/body.php:186
267
  msgid "Shipping"
268
  msgstr "Frakt"
269
 
270
+ #: admin/classes/bewpi-template-settings.php:392
271
  msgid "General Options"
272
  msgstr "Generelle valg"
273
 
274
+ #: admin/classes/bewpi-template-settings.php:398
275
  msgid "Invoice Number Options"
276
  msgstr "Alternativer for fakturanummer"
277
 
278
+ #: admin/classes/bewpi-template-settings.php:404
279
  msgid "Header Options"
280
  msgstr "Overskriftsvalg"
281
 
282
+ #: admin/classes/bewpi-template-settings.php:410
283
  msgid "Footer Options"
284
  msgstr "Footer valg"
285
 
286
+ #: admin/classes/bewpi-template-settings.php:416
287
  msgid "Visible Columns"
288
  msgstr "Synlige kolonner"
289
 
290
+ #: admin/classes/bewpi-template-settings.php:422
291
  msgid "These are the general template options."
292
  msgstr "Dette er de generelle alternativene for malen."
293
 
294
+ #: admin/classes/bewpi-template-settings.php:423
295
  msgid "These are the invoice number options."
296
  msgstr "Dette er alternativene for fakturanummer."
297
 
298
+ #: admin/classes/bewpi-template-settings.php:424
299
  msgid "The header will be visible on every page. "
300
  msgstr "Overskriften vil være synlig på alle sider. "
301
 
302
+ #: admin/classes/bewpi-template-settings.php:425
303
  msgid "The footer will be visible on every page. "
304
  msgstr "Footeren vil være synlig på alle sider. "
305
 
306
+ #: admin/classes/bewpi-template-settings.php:426
307
  msgid "Enable or disable the columns."
308
  msgstr "Aktiver eller deaktiver kolonnene."
309
 
310
+ #: admin/classes/bewpi-template-settings.php:496
311
  msgid "File is invalid and contains either '..' or './'."
312
  msgstr "Filen er ugyldig og inneholder enten '...' eller './'."
313
 
314
+ #: admin/classes/bewpi-template-settings.php:503
315
  msgid "File is invalid and contains ':' after the first character."
316
  msgstr "Filen er ugyldig og inneholder ':' etter den første bokstaven."
317
 
318
+ #: admin/classes/bewpi-template-settings.php:512
319
  msgid "File should be less then 2MB."
320
  msgstr "Filen bør være under 2 megabyte."
321
 
322
+ #: includes/views/templates/micro/body.php:22
323
+ msgid "Description"
324
+ msgstr "Produkt"
325
+
326
+ #: includes/views/templates/micro/body.php:28
327
+ msgid "Cost"
328
+ msgstr "Pris"
329
+
330
+ #: includes/views/templates/micro/body.php:29
331
+ msgid "Qty"
332
+ msgstr "Ant"
333
+
334
+ #: includes/views/templates/micro/body.php:36
335
+ #: includes/views/templates/micro/body.php:224
336
+ msgid "VAT"
337
+ msgstr "MVA"
338
+
339
+ #: includes/views/templates/micro/body.php:47
340
+ #: includes/views/templates/micro/body.php:233
341
+ msgid "Total"
342
+ msgstr "Totalt"
343
+
344
+ #: includes/views/templates/micro/body.php:206
345
+ msgid "Fee"
346
+ msgstr ""
347
+
348
+ #: includes/views/templates/micro/body.php:240
349
+ msgid "Refunded"
350
+ msgstr "Refundert"
351
+
352
+ #: includes/views/templates/micro/footer.php:9
353
+ #: includes/views/templates/micro/footer.php:13
354
  msgid "Customer note"
355
  msgstr "Kundenotat"
356
 
357
+ #: includes/views/templates/micro/footer.php:21
358
  #, php-format
359
  msgid "%sPayment%s via"
360
  msgstr "%sBetaling%s med"
361
 
362
+ #: includes/views/templates/micro/header.php:13
363
  msgid "Invoice to"
364
+ msgstr "Kunde"
365
 
366
+ #: includes/views/templates/micro/header.php:17
367
  msgid "Ship to"
368
  msgstr "Leveringsadresse"
369
 
370
+ #: includes/views/templates/micro/header.php:27
371
  msgid "Invoice"
372
  msgstr "Faktura"
373
 
374
+ #: includes/views/templates/micro/header.php:30
375
  #, php-format
376
  msgid "Order Number %s"
377
  msgstr "Bestillingsnummer: %s"
378
 
379
+ #: includes/views/templates/micro/header.php:31
380
  #, php-format
381
  msgid "Order Date %s"
382
  msgstr "Bestillingsdato: %s"
383
 
384
+ #~ msgid ""
385
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
386
+ #~ "required."
387
+ #~ msgstr ""
388
+ #~ "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
389
+ #~ "obligatorisk."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
 
391
  #~ msgid "VAT %s"
392
  #~ msgstr "MVA %s"
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-05-11 20:07+0100\n"
5
- "PO-Revision-Date: 2015-05-11 20:08+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:201
23
  msgid "General"
24
  msgstr "Algemeen"
25
 
26
- #: admin/classes/be-woocommerce-pdf-invoices.php:202
27
- #: admin/classes/bewpi-template-settings.php:86
28
  msgid "Template"
29
  msgstr ""
30
 
31
- #: admin/classes/be-woocommerce-pdf-invoices.php:221
32
  #: admin/classes/be-woocommerce-pdf-invoices.php:222
 
33
  msgid "Invoices"
34
  msgstr "Facturen"
35
 
36
- #: admin/classes/be-woocommerce-pdf-invoices.php:327
37
  msgid "PDF Invoice"
38
  msgstr "PDF Factuur"
39
 
40
- #: admin/classes/be-woocommerce-pdf-invoices.php:354
41
  msgid "Invoiced on:"
42
  msgstr "Gefactureerd op:"
43
 
44
- #: admin/classes/be-woocommerce-pdf-invoices.php:358
45
  msgid "Invoice number:"
46
  msgstr "Factuurnummer:"
47
 
48
- #: admin/classes/be-woocommerce-pdf-invoices.php:396
49
  msgid "View invoice"
50
  msgstr "Toon factuur"
51
 
52
- #: admin/classes/be-woocommerce-pdf-invoices.php:396
53
  msgid "View"
54
  msgstr "Bekijk"
55
 
56
- #: admin/classes/be-woocommerce-pdf-invoices.php:397
57
  msgid "Cancel invoice"
58
  msgstr "Factuur annuleren"
59
 
60
- #: admin/classes/be-woocommerce-pdf-invoices.php:397
61
  msgid "Cancel"
62
  msgstr "Annuleer"
63
 
64
- #: admin/classes/be-woocommerce-pdf-invoices.php:397
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:399
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
- #: admin/classes/be-woocommerce-pdf-invoices.php:399
73
  msgid "Create"
74
  msgstr "Aanmaken"
75
 
76
- #: admin/classes/be-woocommerce-pdf-invoices.php:432
77
  msgid "Download invoice (PDF)"
78
  msgstr "Download factuur (PDF)"
79
 
80
- #: admin/classes/be-woocommerce-pdf-invoices.php:511
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
@@ -86,48 +86,48 @@ msgid ""
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 "Voeg toe aan Email"
92
 
93
- #: admin/classes/bewpi-general-settings.php:93
94
  msgid "Processing order"
95
  msgstr "Bestelling wordt verwerkt"
96
 
97
- #: admin/classes/bewpi-general-settings.php:97
98
  msgid "Completed order"
99
  msgstr "Bestelling voltooid"
100
 
101
- #: admin/classes/bewpi-general-settings.php:101
102
  msgid "Customer invoice"
103
  msgstr "Klant factuur"
104
 
105
- #: admin/classes/bewpi-general-settings.php:115
106
  msgid "Attach to New order Email"
107
  msgstr "Voeg toe aan New order Email"
108
 
109
- #: admin/classes/bewpi-general-settings.php:127
110
  msgid "Enable Email It In"
111
  msgstr "Inschakelen Email It In"
112
 
113
- #: admin/classes/bewpi-general-settings.php:135
114
  msgid "Email It In account"
115
  msgstr ""
116
 
117
- #: admin/classes/bewpi-general-settings.php:140
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr "Verkrijg uw account van uw Email It In %sgebruikersaccount%s."
121
 
122
- #: admin/classes/bewpi-general-settings.php:153
123
  msgid "Email Options"
124
  msgstr "Email Opties"
125
 
126
- #: admin/classes/bewpi-general-settings.php:159
127
  msgid "Cloud Storage Options"
128
  msgstr "Online Opslag Opties"
129
 
130
- #: admin/classes/bewpi-general-settings.php:166
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
@@ -144,64 +144,64 @@ msgstr "Gebruik"
144
  msgid "Remove logo"
145
  msgstr "Verwijder logo"
146
 
147
- #: admin/classes/bewpi-template-settings.php:104
148
  msgid "Color theme"
149
  msgstr "Kleur thema"
150
 
151
- #: admin/classes/bewpi-template-settings.php:115
152
  msgid "Date format"
153
  msgstr "Datum format"
154
 
155
- #: admin/classes/bewpi-template-settings.php:120
156
  #, php-format
157
  msgid "%sFormat%s of invoice date and order date."
158
  msgstr "%sNotatie%s van factuurdatum en orderdatum."
159
 
160
- #: admin/classes/bewpi-template-settings.php:131
161
  msgid "Company name"
162
  msgstr "Bedrijfsnaam"
163
 
164
- #: admin/classes/bewpi-template-settings.php:142
165
  msgid "Company logo"
166
  msgstr "Bedrijfslogo"
167
 
168
- #: admin/classes/bewpi-template-settings.php:153
169
  msgid "Company address"
170
  msgstr "Bedrijfsadres"
171
 
172
- #: admin/classes/bewpi-template-settings.php:164
173
  msgid "Company details"
174
  msgstr "Algemene bedrijfsgegevens"
175
 
176
- #: admin/classes/bewpi-template-settings.php:175
177
  msgid "Intro text"
178
  msgstr "Introtekst"
179
 
180
- #: admin/classes/bewpi-template-settings.php:187
181
  msgid "Terms & conditions, policies etc."
182
  msgstr "Algemene voorwaarden"
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 ""
191
 
192
- #: admin/classes/bewpi-template-settings.php:219
193
  msgid "WooCommerce order number"
194
  msgstr "WooCommerce ordernummer"
195
 
196
- #: admin/classes/bewpi-template-settings.php:223
197
  msgid "Sequential number"
198
  msgstr "Volgnummer"
199
 
200
- #: admin/classes/bewpi-template-settings.php:247
201
  msgid "Next"
202
  msgstr "Volgende"
203
 
204
- #: admin/classes/bewpi-template-settings.php:252
205
  #, php-format
206
  msgid ""
207
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
@@ -212,108 +212,108 @@ msgstr ""
212
  "%s Alleen beschikbaar bij sequentiële nummering type en vergeet niet het "
213
  "selectievak te selecteren om de waarde ook werkelijk te resetten."
214
 
215
- #: admin/classes/bewpi-template-settings.php:261
216
  msgid "Digits"
217
  msgstr "Aantal nullen."
218
 
219
- #: admin/classes/bewpi-template-settings.php:277
220
  msgid "[prefix]"
221
  msgstr "[prefix]"
222
 
223
- #: admin/classes/bewpi-template-settings.php:288
224
  msgid "[suffix]"
225
  msgstr "[suffix]"
226
 
227
- #: admin/classes/bewpi-template-settings.php:299
228
  msgid "Format"
229
  msgstr "Notatie"
230
 
231
- #: admin/classes/bewpi-template-settings.php:304
232
  #, php-format
233
  msgid ""
234
- "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
235
  "required."
236
  msgstr ""
237
- "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s en %s te "
238
- "gebruiken. %s % sLet wel: %s %s is vereist."
239
 
240
- #: admin/classes/bewpi-template-settings.php:318
241
  msgid "Reset on 1st of january"
242
  msgstr "Reset op 1 januari"
243
 
244
- #: admin/classes/bewpi-template-settings.php:331
245
  #: includes/views/templates/micro/body.php:25
246
  msgid "SKU"
247
  msgstr "Productcode"
248
 
249
- #: admin/classes/bewpi-template-settings.php:343
250
  #: includes/views/templates/micro/body.php:194
251
  msgid "Subtotal"
252
  msgstr "Subtotaal"
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/micro/body.php:178
260
  msgid "Discount"
261
  msgstr "Korting"
262
 
263
- #: admin/classes/bewpi-template-settings.php:379
264
  #: includes/views/templates/micro/body.php:186
265
  msgid "Shipping"
266
  msgstr "Verzending"
267
 
268
- #: admin/classes/bewpi-template-settings.php:393
269
  msgid "General Options"
270
  msgstr "Algemene Opties"
271
 
272
- #: admin/classes/bewpi-template-settings.php:399
273
  msgid "Invoice Number Options"
274
  msgstr "Factuurnummer Opties"
275
 
276
- #: admin/classes/bewpi-template-settings.php:405
277
  msgid "Header Options"
278
  msgstr "Kopregel Opties"
279
 
280
- #: admin/classes/bewpi-template-settings.php:411
281
  msgid "Footer Options"
282
  msgstr "Voetregel Opties"
283
 
284
- #: admin/classes/bewpi-template-settings.php:417
285
  msgid "Visible Columns"
286
  msgstr "Zichtbare Kolommen"
287
 
288
- #: admin/classes/bewpi-template-settings.php:423
289
  msgid "These are the general template options."
290
  msgstr "Dit zijn de algemene template opties."
291
 
292
- #: admin/classes/bewpi-template-settings.php:424
293
  msgid "These are the invoice number options."
294
  msgstr "Dit zijn de factuurnummer opties."
295
 
296
- #: admin/classes/bewpi-template-settings.php:425
297
  msgid "The header will be visible on every page. "
298
  msgstr "De kopregel is zichtbaar op iedere pagina."
299
 
300
- #: admin/classes/bewpi-template-settings.php:426
301
  msgid "The footer will be visible on every page. "
302
  msgstr "De voetregel is zichtbaar op iedere pagina."
303
 
304
- #: admin/classes/bewpi-template-settings.php:427
305
  msgid "Enable or disable the columns."
306
  msgstr "In- of uitschakelen van de kolommen."
307
 
308
- #: admin/classes/bewpi-template-settings.php:497
309
  msgid "File is invalid and contains either '..' or './'."
310
  msgstr "Bestand is niet valide en bevat ofwel '..' of './'."
311
 
312
- #: admin/classes/bewpi-template-settings.php:504
313
  msgid "File is invalid and contains ':' after the first character."
314
  msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
315
 
316
- #: admin/classes/bewpi-template-settings.php:513
317
  msgid "File should be less then 2MB."
318
  msgstr "Bestand moet minder dan 2MB zijn."
319
 
@@ -330,16 +330,20 @@ msgid "Qty"
330
  msgstr "Aantal"
331
 
332
  #: includes/views/templates/micro/body.php:36
333
- #: includes/views/templates/micro/body.php:204
334
  msgid "VAT"
335
  msgstr "BTW"
336
 
337
  #: includes/views/templates/micro/body.php:47
338
- #: includes/views/templates/micro/body.php:213
339
  msgid "Total"
340
  msgstr "Totaal"
341
 
342
- #: includes/views/templates/micro/body.php:220
 
 
 
 
343
  msgid "Refunded"
344
  msgstr "Terugbetaald"
345
 
@@ -353,28 +357,35 @@ msgstr "Opmerking klant"
353
  msgid "%sPayment%s via"
354
  msgstr "%sBetaling%s via"
355
 
356
- #: includes/views/templates/micro/header.php:21
357
  msgid "Invoice to"
358
  msgstr "Facturatie aan"
359
 
360
- #: includes/views/templates/micro/header.php:25
361
  msgid "Ship to"
362
  msgstr "Verzend naar"
363
 
364
- #: includes/views/templates/micro/header.php:35
365
  msgid "Invoice"
366
  msgstr "Factuur"
367
 
368
- #: includes/views/templates/micro/header.php:38
369
  #, php-format
370
  msgid "Order Number %s"
371
  msgstr "Bestelnummer %s"
372
 
373
- #: includes/views/templates/micro/header.php:39
374
  #, php-format
375
  msgid "Order Date %s"
376
  msgstr "Besteldatum: %s"
377
 
 
 
 
 
 
 
 
378
  #~ msgid "VAT %s"
379
  #~ msgstr "BTW %s"
380
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-05-15 15:13+0100\n"
5
+ "PO-Revision-Date: 2015-05-15 15:13+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:202
23
  msgid "General"
24
  msgstr "Algemeen"
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:203
27
+ #: admin/classes/bewpi-template-settings.php:85
28
  msgid "Template"
29
  msgstr ""
30
 
 
31
  #: admin/classes/be-woocommerce-pdf-invoices.php:222
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:223
33
  msgid "Invoices"
34
  msgstr "Facturen"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:328
37
  msgid "PDF Invoice"
38
  msgstr "PDF Factuur"
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:355
41
  msgid "Invoiced on:"
42
  msgstr "Gefactureerd op:"
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:359
45
  msgid "Invoice number:"
46
  msgstr "Factuurnummer:"
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
49
  msgid "View invoice"
50
  msgstr "Toon factuur"
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
53
  msgid "View"
54
  msgstr "Bekijk"
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
57
  msgid "Cancel invoice"
58
  msgstr "Factuur annuleren"
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
61
  msgid "Cancel"
62
  msgstr "Annuleer"
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
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:400
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:400
73
  msgid "Create"
74
  msgstr "Aanmaken"
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:433
77
  msgid "Download invoice (PDF)"
78
  msgstr "Download factuur (PDF)"
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:512
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
86
  "a> - <a href='%s'>No, already done it!</a>"
87
  msgstr ""
88
 
89
+ #: admin/classes/bewpi-general-settings.php:84
90
  msgid "Attach to Email"
91
  msgstr "Voeg toe aan Email"
92
 
93
+ #: admin/classes/bewpi-general-settings.php:92
94
  msgid "Processing order"
95
  msgstr "Bestelling wordt verwerkt"
96
 
97
+ #: admin/classes/bewpi-general-settings.php:96
98
  msgid "Completed order"
99
  msgstr "Bestelling voltooid"
100
 
101
+ #: admin/classes/bewpi-general-settings.php:100
102
  msgid "Customer invoice"
103
  msgstr "Klant factuur"
104
 
105
+ #: admin/classes/bewpi-general-settings.php:114
106
  msgid "Attach to New order Email"
107
  msgstr "Voeg toe aan New order Email"
108
 
109
+ #: admin/classes/bewpi-general-settings.php:126
110
  msgid "Enable Email It In"
111
  msgstr "Inschakelen Email It In"
112
 
113
+ #: admin/classes/bewpi-general-settings.php:134
114
  msgid "Email It In account"
115
  msgstr ""
116
 
117
+ #: admin/classes/bewpi-general-settings.php:139
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr "Verkrijg uw account van uw Email It In %sgebruikersaccount%s."
121
 
122
+ #: admin/classes/bewpi-general-settings.php:152
123
  msgid "Email Options"
124
  msgstr "Email Opties"
125
 
126
+ #: admin/classes/bewpi-general-settings.php:158
127
  msgid "Cloud Storage Options"
128
  msgstr "Online Opslag Opties"
129
 
130
+ #: admin/classes/bewpi-general-settings.php:165
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
144
  msgid "Remove logo"
145
  msgstr "Verwijder logo"
146
 
147
+ #: admin/classes/bewpi-template-settings.php:103
148
  msgid "Color theme"
149
  msgstr "Kleur thema"
150
 
151
+ #: admin/classes/bewpi-template-settings.php:114
152
  msgid "Date format"
153
  msgstr "Datum format"
154
 
155
+ #: admin/classes/bewpi-template-settings.php:119
156
  #, php-format
157
  msgid "%sFormat%s of invoice date and order date."
158
  msgstr "%sNotatie%s van factuurdatum en orderdatum."
159
 
160
+ #: admin/classes/bewpi-template-settings.php:130
161
  msgid "Company name"
162
  msgstr "Bedrijfsnaam"
163
 
164
+ #: admin/classes/bewpi-template-settings.php:141
165
  msgid "Company logo"
166
  msgstr "Bedrijfslogo"
167
 
168
+ #: admin/classes/bewpi-template-settings.php:152
169
  msgid "Company address"
170
  msgstr "Bedrijfsadres"
171
 
172
+ #: admin/classes/bewpi-template-settings.php:163
173
  msgid "Company details"
174
  msgstr "Algemene bedrijfsgegevens"
175
 
176
+ #: admin/classes/bewpi-template-settings.php:174
177
  msgid "Intro text"
178
  msgstr "Introtekst"
179
 
180
+ #: admin/classes/bewpi-template-settings.php:186
181
  msgid "Terms & conditions, policies etc."
182
  msgstr "Algemene voorwaarden"
183
 
184
+ #: admin/classes/bewpi-template-settings.php:202
185
  msgid "Show customer notes"
186
  msgstr "Toon notities klant"
187
 
188
+ #: admin/classes/bewpi-template-settings.php:210
189
  msgid "Type"
190
  msgstr ""
191
 
192
+ #: admin/classes/bewpi-template-settings.php:218
193
  msgid "WooCommerce order number"
194
  msgstr "WooCommerce ordernummer"
195
 
196
+ #: admin/classes/bewpi-template-settings.php:222
197
  msgid "Sequential number"
198
  msgstr "Volgnummer"
199
 
200
+ #: admin/classes/bewpi-template-settings.php:246
201
  msgid "Next"
202
  msgstr "Volgende"
203
 
204
+ #: admin/classes/bewpi-template-settings.php:251
205
  #, php-format
206
  msgid ""
207
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
212
  "%s Alleen beschikbaar bij sequentiële nummering type en vergeet niet het "
213
  "selectievak te selecteren om de waarde ook werkelijk te resetten."
214
 
215
+ #: admin/classes/bewpi-template-settings.php:260
216
  msgid "Digits"
217
  msgstr "Aantal nullen."
218
 
219
+ #: admin/classes/bewpi-template-settings.php:276
220
  msgid "[prefix]"
221
  msgstr "[prefix]"
222
 
223
+ #: admin/classes/bewpi-template-settings.php:287
224
  msgid "[suffix]"
225
  msgstr "[suffix]"
226
 
227
+ #: admin/classes/bewpi-template-settings.php:298
228
  msgid "Format"
229
  msgstr "Notatie"
230
 
231
+ #: admin/classes/bewpi-template-settings.php:303
232
  #, php-format
233
  msgid ""
234
+ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s is "
235
  "required."
236
  msgstr ""
237
+ "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s %s en %s te "
238
+ "gebruiken. %s %s Let wel: %s %s is vereist."
239
 
240
+ #: admin/classes/bewpi-template-settings.php:317
241
  msgid "Reset on 1st of january"
242
  msgstr "Reset op 1 januari"
243
 
244
+ #: admin/classes/bewpi-template-settings.php:330
245
  #: includes/views/templates/micro/body.php:25
246
  msgid "SKU"
247
  msgstr "Productcode"
248
 
249
+ #: admin/classes/bewpi-template-settings.php:342
250
  #: includes/views/templates/micro/body.php:194
251
  msgid "Subtotal"
252
  msgstr "Subtotaal"
253
 
254
+ #: admin/classes/bewpi-template-settings.php:354
255
  msgid "Tax"
256
  msgstr "BTW"
257
 
258
+ #: admin/classes/bewpi-template-settings.php:366
259
  #: includes/views/templates/micro/body.php:178
260
  msgid "Discount"
261
  msgstr "Korting"
262
 
263
+ #: admin/classes/bewpi-template-settings.php:378
264
  #: includes/views/templates/micro/body.php:186
265
  msgid "Shipping"
266
  msgstr "Verzending"
267
 
268
+ #: admin/classes/bewpi-template-settings.php:392
269
  msgid "General Options"
270
  msgstr "Algemene Opties"
271
 
272
+ #: admin/classes/bewpi-template-settings.php:398
273
  msgid "Invoice Number Options"
274
  msgstr "Factuurnummer Opties"
275
 
276
+ #: admin/classes/bewpi-template-settings.php:404
277
  msgid "Header Options"
278
  msgstr "Kopregel Opties"
279
 
280
+ #: admin/classes/bewpi-template-settings.php:410
281
  msgid "Footer Options"
282
  msgstr "Voetregel Opties"
283
 
284
+ #: admin/classes/bewpi-template-settings.php:416
285
  msgid "Visible Columns"
286
  msgstr "Zichtbare Kolommen"
287
 
288
+ #: admin/classes/bewpi-template-settings.php:422
289
  msgid "These are the general template options."
290
  msgstr "Dit zijn de algemene template opties."
291
 
292
+ #: admin/classes/bewpi-template-settings.php:423
293
  msgid "These are the invoice number options."
294
  msgstr "Dit zijn de factuurnummer opties."
295
 
296
+ #: admin/classes/bewpi-template-settings.php:424
297
  msgid "The header will be visible on every page. "
298
  msgstr "De kopregel is zichtbaar op iedere pagina."
299
 
300
+ #: admin/classes/bewpi-template-settings.php:425
301
  msgid "The footer will be visible on every page. "
302
  msgstr "De voetregel is zichtbaar op iedere pagina."
303
 
304
+ #: admin/classes/bewpi-template-settings.php:426
305
  msgid "Enable or disable the columns."
306
  msgstr "In- of uitschakelen van de kolommen."
307
 
308
+ #: admin/classes/bewpi-template-settings.php:496
309
  msgid "File is invalid and contains either '..' or './'."
310
  msgstr "Bestand is niet valide en bevat ofwel '..' of './'."
311
 
312
+ #: admin/classes/bewpi-template-settings.php:503
313
  msgid "File is invalid and contains ':' after the first character."
314
  msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
315
 
316
+ #: admin/classes/bewpi-template-settings.php:512
317
  msgid "File should be less then 2MB."
318
  msgstr "Bestand moet minder dan 2MB zijn."
319
 
330
  msgstr "Aantal"
331
 
332
  #: includes/views/templates/micro/body.php:36
333
+ #: includes/views/templates/micro/body.php:224
334
  msgid "VAT"
335
  msgstr "BTW"
336
 
337
  #: includes/views/templates/micro/body.php:47
338
+ #: includes/views/templates/micro/body.php:233
339
  msgid "Total"
340
  msgstr "Totaal"
341
 
342
+ #: includes/views/templates/micro/body.php:206
343
+ msgid "Fee"
344
+ msgstr ""
345
+
346
+ #: includes/views/templates/micro/body.php:240
347
  msgid "Refunded"
348
  msgstr "Terugbetaald"
349
 
357
  msgid "%sPayment%s via"
358
  msgstr "%sBetaling%s via"
359
 
360
+ #: includes/views/templates/micro/header.php:13
361
  msgid "Invoice to"
362
  msgstr "Facturatie aan"
363
 
364
+ #: includes/views/templates/micro/header.php:17
365
  msgid "Ship to"
366
  msgstr "Verzend naar"
367
 
368
+ #: includes/views/templates/micro/header.php:27
369
  msgid "Invoice"
370
  msgstr "Factuur"
371
 
372
+ #: includes/views/templates/micro/header.php:30
373
  #, php-format
374
  msgid "Order Number %s"
375
  msgstr "Bestelnummer %s"
376
 
377
+ #: includes/views/templates/micro/header.php:31
378
  #, php-format
379
  msgid "Order Date %s"
380
  msgstr "Besteldatum: %s"
381
 
382
+ #~ msgid ""
383
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
384
+ #~ "required."
385
+ #~ msgstr ""
386
+ #~ "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s en %s te "
387
+ #~ "gebruiken. %s % sLet wel: %s %s is vereist."
388
+
389
  #~ msgid "VAT %s"
390
  #~ msgstr "BTW %s"
391
 
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-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,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: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. "
@@ -86,48 +86,48 @@ msgid ""
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 ""
92
 
93
- #: admin/classes/bewpi-general-settings.php:93
94
  msgid "Processing order"
95
  msgstr ""
96
 
97
- #: admin/classes/bewpi-general-settings.php:97
98
  msgid "Completed order"
99
  msgstr ""
100
 
101
- #: admin/classes/bewpi-general-settings.php:101
102
  msgid "Customer invoice"
103
  msgstr ""
104
 
105
- #: admin/classes/bewpi-general-settings.php:115
106
  msgid "Attach to New order Email"
107
  msgstr ""
108
 
109
- #: admin/classes/bewpi-general-settings.php:127
110
  msgid "Enable Email It In"
111
  msgstr ""
112
 
113
- #: admin/classes/bewpi-general-settings.php:135
114
  msgid "Email It In account"
115
  msgstr ""
116
 
117
- #: admin/classes/bewpi-general-settings.php:140
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr ""
121
 
122
- #: admin/classes/bewpi-general-settings.php:153
123
  msgid "Email Options"
124
  msgstr ""
125
 
126
- #: admin/classes/bewpi-general-settings.php:159
127
  msgid "Cloud Storage Options"
128
  msgstr ""
129
 
130
- #: admin/classes/bewpi-general-settings.php:166
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
@@ -142,64 +142,64 @@ msgstr ""
142
  msgid "Remove logo"
143
  msgstr ""
144
 
145
- #: admin/classes/bewpi-template-settings.php:104
146
  msgid "Color theme"
147
  msgstr ""
148
 
149
- #: admin/classes/bewpi-template-settings.php:115
150
  msgid "Date format"
151
  msgstr ""
152
 
153
- #: admin/classes/bewpi-template-settings.php:120
154
  #, php-format
155
  msgid "%sFormat%s of invoice date and order date."
156
  msgstr ""
157
 
158
- #: admin/classes/bewpi-template-settings.php:131
159
  msgid "Company name"
160
  msgstr ""
161
 
162
- #: admin/classes/bewpi-template-settings.php:142
163
  msgid "Company logo"
164
  msgstr ""
165
 
166
- #: admin/classes/bewpi-template-settings.php:153
167
  msgid "Company address"
168
  msgstr ""
169
 
170
- #: admin/classes/bewpi-template-settings.php:164
171
  msgid "Company details"
172
  msgstr ""
173
 
174
- #: admin/classes/bewpi-template-settings.php:175
175
  msgid "Intro text"
176
  msgstr ""
177
 
178
- #: admin/classes/bewpi-template-settings.php:187
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 ""
189
 
190
- #: admin/classes/bewpi-template-settings.php:219
191
  msgid "WooCommerce order number"
192
  msgstr ""
193
 
194
- #: admin/classes/bewpi-template-settings.php:223
195
  msgid "Sequential number"
196
  msgstr ""
197
 
198
- #: admin/classes/bewpi-template-settings.php:247
199
  msgid "Next"
200
  msgstr ""
201
 
202
- #: admin/classes/bewpi-template-settings.php:252
203
  #, php-format
204
  msgid ""
205
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
@@ -207,166 +207,171 @@ msgid ""
207
  "checkbox to actually reset the value."
208
  msgstr ""
209
 
210
- #: admin/classes/bewpi-template-settings.php:261
211
  msgid "Digits"
212
  msgstr ""
213
 
214
- #: admin/classes/bewpi-template-settings.php:277
215
  msgid "[prefix]"
216
  msgstr ""
217
 
218
- #: admin/classes/bewpi-template-settings.php:288
219
  msgid "[suffix]"
220
  msgstr ""
221
 
222
- #: admin/classes/bewpi-template-settings.php:299
223
  msgid "Format"
224
  msgstr ""
225
 
226
- #: admin/classes/bewpi-template-settings.php:304
227
  #, php-format
228
  msgid ""
229
- "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
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 ""
264
 
265
- #: admin/classes/bewpi-template-settings.php:399
266
  msgid "Invoice Number Options"
267
  msgstr ""
268
 
269
- #: admin/classes/bewpi-template-settings.php:405
270
  msgid "Header Options"
271
  msgstr ""
272
 
273
- #: admin/classes/bewpi-template-settings.php:411
274
  msgid "Footer Options"
275
  msgstr ""
276
 
277
- #: admin/classes/bewpi-template-settings.php:417
278
  msgid "Visible Columns"
279
  msgstr ""
280
 
281
- #: admin/classes/bewpi-template-settings.php:423
282
  msgid "These are the general template options."
283
  msgstr ""
284
 
285
- #: admin/classes/bewpi-template-settings.php:424
286
  msgid "These are the invoice number options."
287
  msgstr ""
288
 
289
- #: admin/classes/bewpi-template-settings.php:425
290
  msgid "The header will be visible on every page. "
291
  msgstr ""
292
 
293
- #: admin/classes/bewpi-template-settings.php:426
294
  msgid "The footer will be visible on every page. "
295
  msgstr ""
296
 
297
- #: admin/classes/bewpi-template-settings.php:427
298
  msgid "Enable or disable the columns."
299
  msgstr ""
300
 
301
- #: admin/classes/bewpi-template-settings.php:497
302
  msgid "File is invalid and contains either '..' or './'."
303
  msgstr ""
304
 
305
- #: admin/classes/bewpi-template-settings.php:504
306
  msgid "File is invalid and contains ':' after the first character."
307
  msgstr ""
308
 
309
- #: admin/classes/bewpi-template-settings.php:513
310
  msgid "File should be less then 2MB."
311
  msgstr ""
312
 
313
- #: includes/classes/bewpi-invoice.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  msgid "Customer note"
315
  msgstr "Komentar kupca"
316
 
317
- #: includes/classes/bewpi-invoice.php:169
318
  #, php-format
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
-
370
  #~ msgid "Quantity"
371
  #~ msgstr "Količina"
372
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-05-15 15:13+0100\n"
5
+ "PO-Revision-Date: 2015-05-15 15:13+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:202
23
  msgid "General"
24
  msgstr ""
25
 
26
+ #: admin/classes/be-woocommerce-pdf-invoices.php:203
27
+ #: admin/classes/bewpi-template-settings.php:85
28
  msgid "Template"
29
  msgstr ""
30
 
31
+ #: admin/classes/be-woocommerce-pdf-invoices.php:222
32
+ #: admin/classes/be-woocommerce-pdf-invoices.php:223
33
  msgid "Invoices"
34
  msgstr "Računi"
35
 
36
+ #: admin/classes/be-woocommerce-pdf-invoices.php:328
37
  msgid "PDF Invoice"
38
  msgstr ""
39
 
40
+ #: admin/classes/be-woocommerce-pdf-invoices.php:355
41
  msgid "Invoiced on:"
42
  msgstr ""
43
 
44
+ #: admin/classes/be-woocommerce-pdf-invoices.php:359
45
  msgid "Invoice number:"
46
  msgstr ""
47
 
48
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
49
  msgid "View invoice"
50
  msgstr ""
51
 
52
+ #: admin/classes/be-woocommerce-pdf-invoices.php:397
53
  msgid "View"
54
  msgstr ""
55
 
56
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
57
  msgid "Cancel invoice"
58
  msgstr ""
59
 
60
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
61
  msgid "Cancel"
62
  msgstr ""
63
 
64
+ #: admin/classes/be-woocommerce-pdf-invoices.php:398
65
  msgid "Are you sure to delete the invoice?"
66
  msgstr ""
67
 
68
+ #: admin/classes/be-woocommerce-pdf-invoices.php:400
69
  msgid "Create invoice"
70
  msgstr "Maak factuur"
71
 
72
+ #: admin/classes/be-woocommerce-pdf-invoices.php:400
73
  msgid "Create"
74
  msgstr ""
75
 
76
+ #: admin/classes/be-woocommerce-pdf-invoices.php:433
77
  msgid "Download invoice (PDF)"
78
  msgstr ""
79
 
80
+ #: admin/classes/be-woocommerce-pdf-invoices.php:512
81
  #, php-format
82
  msgid ""
83
  "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
86
  "a> - <a href='%s'>No, already done it!</a>"
87
  msgstr ""
88
 
89
+ #: admin/classes/bewpi-general-settings.php:84
90
  msgid "Attach to Email"
91
  msgstr ""
92
 
93
+ #: admin/classes/bewpi-general-settings.php:92
94
  msgid "Processing order"
95
  msgstr ""
96
 
97
+ #: admin/classes/bewpi-general-settings.php:96
98
  msgid "Completed order"
99
  msgstr ""
100
 
101
+ #: admin/classes/bewpi-general-settings.php:100
102
  msgid "Customer invoice"
103
  msgstr ""
104
 
105
+ #: admin/classes/bewpi-general-settings.php:114
106
  msgid "Attach to New order Email"
107
  msgstr ""
108
 
109
+ #: admin/classes/bewpi-general-settings.php:126
110
  msgid "Enable Email It In"
111
  msgstr ""
112
 
113
+ #: admin/classes/bewpi-general-settings.php:134
114
  msgid "Email It In account"
115
  msgstr ""
116
 
117
+ #: admin/classes/bewpi-general-settings.php:139
118
  #, php-format
119
  msgid "Get your account from your Email It In %suser account%s."
120
  msgstr ""
121
 
122
+ #: admin/classes/bewpi-general-settings.php:152
123
  msgid "Email Options"
124
  msgstr ""
125
 
126
+ #: admin/classes/bewpi-general-settings.php:158
127
  msgid "Cloud Storage Options"
128
  msgstr ""
129
 
130
+ #: admin/classes/bewpi-general-settings.php:165
131
  #, php-format
132
  msgid ""
133
  "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
142
  msgid "Remove logo"
143
  msgstr ""
144
 
145
+ #: admin/classes/bewpi-template-settings.php:103
146
  msgid "Color theme"
147
  msgstr ""
148
 
149
+ #: admin/classes/bewpi-template-settings.php:114
150
  msgid "Date format"
151
  msgstr ""
152
 
153
+ #: admin/classes/bewpi-template-settings.php:119
154
  #, php-format
155
  msgid "%sFormat%s of invoice date and order date."
156
  msgstr ""
157
 
158
+ #: admin/classes/bewpi-template-settings.php:130
159
  msgid "Company name"
160
  msgstr ""
161
 
162
+ #: admin/classes/bewpi-template-settings.php:141
163
  msgid "Company logo"
164
  msgstr ""
165
 
166
+ #: admin/classes/bewpi-template-settings.php:152
167
  msgid "Company address"
168
  msgstr ""
169
 
170
+ #: admin/classes/bewpi-template-settings.php:163
171
  msgid "Company details"
172
  msgstr ""
173
 
174
+ #: admin/classes/bewpi-template-settings.php:174
175
  msgid "Intro text"
176
  msgstr ""
177
 
178
+ #: admin/classes/bewpi-template-settings.php:186
179
  msgid "Terms & conditions, policies etc."
180
  msgstr ""
181
 
182
+ #: admin/classes/bewpi-template-settings.php:202
183
  msgid "Show customer notes"
184
  msgstr ""
185
 
186
+ #: admin/classes/bewpi-template-settings.php:210
187
  msgid "Type"
188
  msgstr ""
189
 
190
+ #: admin/classes/bewpi-template-settings.php:218
191
  msgid "WooCommerce order number"
192
  msgstr ""
193
 
194
+ #: admin/classes/bewpi-template-settings.php:222
195
  msgid "Sequential number"
196
  msgstr ""
197
 
198
+ #: admin/classes/bewpi-template-settings.php:246
199
  msgid "Next"
200
  msgstr ""
201
 
202
+ #: admin/classes/bewpi-template-settings.php:251
203
  #, php-format
204
  msgid ""
205
  "Reset the invoice counter and start with next invoice number. %s %sNote:%s "
207
  "checkbox to actually reset the value."
208
  msgstr ""
209
 
210
+ #: admin/classes/bewpi-template-settings.php:260
211
  msgid "Digits"
212
  msgstr ""
213
 
214
+ #: admin/classes/bewpi-template-settings.php:276
215
  msgid "[prefix]"
216
  msgstr ""
217
 
218
+ #: admin/classes/bewpi-template-settings.php:287
219
  msgid "[suffix]"
220
  msgstr ""
221
 
222
+ #: admin/classes/bewpi-template-settings.php:298
223
  msgid "Format"
224
  msgstr ""
225
 
226
+ #: admin/classes/bewpi-template-settings.php:303
227
  #, php-format
228
  msgid ""
229
+ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s is "
230
  "required."
231
  msgstr ""
232
 
233
+ #: admin/classes/bewpi-template-settings.php:317
234
  msgid "Reset on 1st of january"
235
  msgstr ""
236
 
237
+ #: admin/classes/bewpi-template-settings.php:330
238
+ #: includes/views/templates/micro/body.php:25
239
  msgid "SKU"
240
  msgstr "Koda"
241
 
242
+ #: admin/classes/bewpi-template-settings.php:342
243
+ #: includes/views/templates/micro/body.php:194
244
  msgid "Subtotal"
245
  msgstr "Skupaj"
246
 
247
+ #: admin/classes/bewpi-template-settings.php:354
248
  msgid "Tax"
249
  msgstr "DDV"
250
 
251
+ #: admin/classes/bewpi-template-settings.php:366
252
+ #: includes/views/templates/micro/body.php:178
253
  msgid "Discount"
254
  msgstr "Popust"
255
 
256
+ #: admin/classes/bewpi-template-settings.php:378
257
+ #: includes/views/templates/micro/body.php:186
258
  msgid "Shipping"
259
  msgstr "Poštnina"
260
 
261
+ #: admin/classes/bewpi-template-settings.php:392
262
  msgid "General Options"
263
  msgstr ""
264
 
265
+ #: admin/classes/bewpi-template-settings.php:398
266
  msgid "Invoice Number Options"
267
  msgstr ""
268
 
269
+ #: admin/classes/bewpi-template-settings.php:404
270
  msgid "Header Options"
271
  msgstr ""
272
 
273
+ #: admin/classes/bewpi-template-settings.php:410
274
  msgid "Footer Options"
275
  msgstr ""
276
 
277
+ #: admin/classes/bewpi-template-settings.php:416
278
  msgid "Visible Columns"
279
  msgstr ""
280
 
281
+ #: admin/classes/bewpi-template-settings.php:422
282
  msgid "These are the general template options."
283
  msgstr ""
284
 
285
+ #: admin/classes/bewpi-template-settings.php:423
286
  msgid "These are the invoice number options."
287
  msgstr ""
288
 
289
+ #: admin/classes/bewpi-template-settings.php:424
290
  msgid "The header will be visible on every page. "
291
  msgstr ""
292
 
293
+ #: admin/classes/bewpi-template-settings.php:425
294
  msgid "The footer will be visible on every page. "
295
  msgstr ""
296
 
297
+ #: admin/classes/bewpi-template-settings.php:426
298
  msgid "Enable or disable the columns."
299
  msgstr ""
300
 
301
+ #: admin/classes/bewpi-template-settings.php:496
302
  msgid "File is invalid and contains either '..' or './'."
303
  msgstr ""
304
 
305
+ #: admin/classes/bewpi-template-settings.php:503
306
  msgid "File is invalid and contains ':' after the first character."
307
  msgstr ""
308
 
309
+ #: admin/classes/bewpi-template-settings.php:512
310
  msgid "File should be less then 2MB."
311
  msgstr ""
312
 
313
+ #: includes/views/templates/micro/body.php:22
314
+ msgid "Description"
315
+ msgstr "Opis"
316
+
317
+ #: includes/views/templates/micro/body.php:28
318
+ msgid "Cost"
319
+ msgstr ""
320
+
321
+ #: includes/views/templates/micro/body.php:29
322
+ msgid "Qty"
323
+ msgstr ""
324
+
325
+ #: includes/views/templates/micro/body.php:36
326
+ #: includes/views/templates/micro/body.php:224
327
+ msgid "VAT"
328
+ msgstr ""
329
+
330
+ #: includes/views/templates/micro/body.php:47
331
+ #: includes/views/templates/micro/body.php:233
332
+ msgid "Total"
333
+ msgstr "Skupaj"
334
+
335
+ #: includes/views/templates/micro/body.php:206
336
+ msgid "Fee"
337
+ msgstr ""
338
+
339
+ #: includes/views/templates/micro/body.php:240
340
+ msgid "Refunded"
341
+ msgstr ""
342
+
343
+ #: includes/views/templates/micro/footer.php:9
344
+ #: includes/views/templates/micro/footer.php:13
345
  msgid "Customer note"
346
  msgstr "Komentar kupca"
347
 
348
+ #: includes/views/templates/micro/footer.php:21
349
  #, php-format
350
  msgid "%sPayment%s via"
351
  msgstr ""
352
 
353
+ #: includes/views/templates/micro/header.php:13
354
  msgid "Invoice to"
355
  msgstr ""
356
 
357
+ #: includes/views/templates/micro/header.php:17
358
  msgid "Ship to"
359
  msgstr ""
360
 
361
+ #: includes/views/templates/micro/header.php:27
362
  msgid "Invoice"
363
  msgstr "Račun"
364
 
365
+ #: includes/views/templates/micro/header.php:30
366
  #, php-format
367
  msgid "Order Number %s"
368
  msgstr ""
369
 
370
+ #: includes/views/templates/micro/header.php:31
371
  #, php-format
372
  msgid "Order Date %s"
373
  msgstr ""
374
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  #~ msgid "Quantity"
376
  #~ msgstr "Količina"
377
 
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.6
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.6 - May 14, 2015 =
70
 
71
  - Fixed: Sequential invoice numbering
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.7
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.7 - May 15, 2015 =
70
+
71
+ - Added: Filter to change path to textdomain
72
+ - Added: Fees on invoice
73
+ - Added: Option to add month to invoice number format
74
+ - Fixed: Image not always showing on invoice
75
+
76
  = 2.2.6 - May 14, 2015 =
77
 
78
  - Fixed: Sequential invoice numbering