WooCommerce PDF Invoices - Version 2.4.3

Version Description

  • March 06, 2016 =

  • Removed: Borders on template due to testing layout.

Download this release

Release Info

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

Code changes from version 2.4.1 to 2.4.3

assets/js/admin.js CHANGED
@@ -22,4 +22,20 @@ Settings.previewInvoice = function (data) {
22
  Settings.enableDisableNextInvoiceNumbering = function (elem) {
23
  var nextInvoiceNumberInput = document.getElementById('bewpi-next-invoice-number');
24
  ( elem.checked ) ? nextInvoiceNumberInput.disabled = false : nextInvoiceNumberInput.disabled = true;
25
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  Settings.enableDisableNextInvoiceNumbering = function (elem) {
23
  var nextInvoiceNumberInput = document.getElementById('bewpi-next-invoice-number');
24
  ( elem.checked ) ? nextInvoiceNumberInput.disabled = false : nextInvoiceNumberInput.disabled = true;
25
+ };
26
+
27
+ jQuery( function ( $ ) {
28
+ // Tooltips
29
+ var tiptip_args = {
30
+ 'attribute': 'data-tip',
31
+ 'fadeIn': 50,
32
+ 'fadeOut': 50,
33
+ 'delay': 200
34
+ };
35
+ $('.tips, .help_tip, .woocommerce-help-tip').tipTip(tiptip_args);
36
+
37
+ // Add tiptip to parent element for widefat tables
38
+ $('.parent-tips').each(function () {
39
+ $(this).closest('a, th').attr('data-tip', $(this).data('tip')).tipTip(tiptip_args).css('cursor', 'help');
40
+ });
41
+ });
bootstrap.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PDF Invoices
4
  * Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
5
  * Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
6
- * Version: 2.4.1
7
  * Author: Bas Elbers
8
  * Author URI: http://wcpdfinvoices.com
9
  * License: GPL-2.0+
@@ -19,7 +19,7 @@ function bewpi_plugins_loaded() {
19
 
20
  $wp_upload_dir = wp_upload_dir();
21
 
22
- define( 'BEWPI_VERSION', '2.4.1' );
23
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
24
  define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
25
  define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . 'includes/templates/' );
@@ -28,8 +28,6 @@ function bewpi_plugins_loaded() {
28
  define( 'BEWPI_INVOICES_DIR', $wp_upload_dir['basedir'] . '/bewpi-invoices/' );
29
  define( 'BEWPI_LANG_DIR', basename( dirname( __FILE__ ) ) . '/lang' );
30
  define( 'BEWPI_LIB_DIR', plugin_dir_path( __FILE__ ) . '/lib/' );
31
- define( 'BEWPI_WP_REPO_URL', 'https://wordpress.org/plugins/woocommerce-pdf-invoices/' );
32
- define( 'BEWPI_WEBSITE_URL', 'http//wcpdfinvoices.com' );
33
 
34
  require_once( BEWPI_DIR . 'functions.php' );
35
  require_once( BEWPI_DIR . 'includes/abstracts/abstract-bewpi-document.php' );
@@ -42,7 +40,7 @@ function bewpi_plugins_loaded() {
42
 
43
  new BE_WooCommerce_PDF_Invoices();
44
  }
45
- add_action( 'plugins_loaded', 'bewpi_plugins_loaded', 11 );
46
 
47
  if ( is_admin() ) {
48
  require_once( dirname( __FILE__ ) . '/includes/be-woocommerce-pdf-invoices.php' );
3
  * Plugin Name: WooCommerce PDF Invoices
4
  * Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
5
  * Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
6
+ * Version: 2.4.3
7
  * Author: Bas Elbers
8
  * Author URI: http://wcpdfinvoices.com
9
  * License: GPL-2.0+
19
 
20
  $wp_upload_dir = wp_upload_dir();
21
 
22
+ define( 'BEWPI_VERSION', '2.4.3' );
23
  define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
24
  define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
25
  define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . 'includes/templates/' );
28
  define( 'BEWPI_INVOICES_DIR', $wp_upload_dir['basedir'] . '/bewpi-invoices/' );
29
  define( 'BEWPI_LANG_DIR', basename( dirname( __FILE__ ) ) . '/lang' );
30
  define( 'BEWPI_LIB_DIR', plugin_dir_path( __FILE__ ) . '/lib/' );
 
 
31
 
32
  require_once( BEWPI_DIR . 'functions.php' );
33
  require_once( BEWPI_DIR . 'includes/abstracts/abstract-bewpi-document.php' );
40
 
41
  new BE_WooCommerce_PDF_Invoices();
42
  }
43
+ add_action( 'plugins_loaded', 'bewpi_plugins_loaded', 10 );
44
 
45
  if ( is_admin() ) {
46
  require_once( dirname( __FILE__ ) . '/includes/be-woocommerce-pdf-invoices.php' );
includes/abstracts/abstract-bewpi-document.php CHANGED
@@ -79,11 +79,13 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
79
  $mpdf->autoMarginPadding = 10;
80
  $mpdf->useOnlyCoreFonts = false;
81
 
82
- if ( ! empty ( $html_sections['header'] ) )
83
- $mpdf->SetHTMLHeader( $html_sections['header'] );
 
84
 
85
- if ( ! empty( $html_sections['footer'] ) )
86
- $mpdf->SetHTMLFooter( $html_sections['footer'] );
 
87
 
88
  $mpdf->WriteHTML( $html_sections['style'] . $html_sections['body'] );
89
 
@@ -116,7 +118,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
116
  }
117
 
118
  /**
119
- * Delete invoice from tmp dir.
120
  */
121
  public function delete() {
122
  return unlink( $this->full_path );
79
  $mpdf->autoMarginPadding = 10;
80
  $mpdf->useOnlyCoreFonts = false;
81
 
82
+ if ( ! empty ( $html_sections['header'] ) ) {
83
+ $mpdf->SetHTMLHeader($html_sections['header']);
84
+ }
85
 
86
+ if ( ! empty( $html_sections['footer'] ) ) {
87
+ $mpdf->SetHTMLFooter($html_sections['footer']);
88
+ }
89
 
90
  $mpdf->WriteHTML( $html_sections['style'] . $html_sections['body'] );
91
 
118
  }
119
 
120
  /**
121
+ * Delete PDF file
122
  */
123
  public function delete() {
124
  return unlink( $this->full_path );
includes/abstracts/abstract-bewpi-invoice.php CHANGED
@@ -9,7 +9,8 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
9
  * Makes the invoice.
10
  * Class BEWPI_Invoice
11
  */
12
- class BEWPI_Abstract_Invoice extends BEWPI_Abstract_Document {
 
13
 
14
  /**
15
  * @var WC_Order
@@ -39,11 +40,11 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
39
  */
40
  protected $date;
41
 
42
- /**
43
- * Creation year
44
- * @var datetime
45
- */
46
- protected $year;
47
 
48
  /**
49
  * Number of columns for the products table
@@ -63,420 +64,521 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
63
  */
64
  protected $desc_cell_width;
65
 
66
- /**
67
- * Name of the template
68
- * @var string
69
- */
70
- protected $template_name;
71
-
72
- /**
73
- * Type of invoice
74
- * @var string
75
- */
76
- protected $type;
77
-
78
- /**
79
- * Dir of the template
80
- * @var string
81
- */
82
- protected $template_dir_name;
83
-
84
- /**
85
- * Next invoice counter reset enabling
86
- * @var bool
87
- */
88
- protected $counter_reset = false;
89
 
90
  /**
91
  * Initialize invoice with WooCommerce order
92
  * @param string $order
93
  */
94
- public function __construct( $order_id, $type, $taxes_count = 0 ) {
95
- parent::__construct();
96
- $this->order = wc_get_order( $order_id );
97
- $this->type = $type;
98
- $this->columns_count = $this->get_columns_count( $taxes_count );
99
- $this->formatted_number = get_post_meta( $this->order->id, '_bewpi_formatted_invoice_number', true );
100
- $this->template_name = $this->template_options["bewpi_template_name"];
101
-
102
- // Check if the invoice already exists.
103
- if( ! empty( $this->formatted_number ) || isset( $_GET['bewpi_action'] ) && $_GET['bewpi_action'] !== 'cancel' )
104
- $this->init();
 
105
  }
106
 
107
  /**
108
  * Gets all the existing invoice data from database or creates new invoice number.
109
  */
110
- private function init() {
111
- $this->number = get_post_meta( $this->order->id, '_bewpi_invoice_number', true );
112
- $this->year = get_post_meta( $this->order->id, '_bewpi_invoice_year', true );
113
- $this->filename = $this->formatted_number . '.pdf';
114
- $this->full_path = BEWPI_INVOICES_DIR . (string)$this->year . '/' . $this->filename;
115
- $this->date = get_post_meta( $this->order->id, '_bewpi_invoice_date', true );
 
116
  }
117
 
118
- /**
119
- * Format the invoice number with prefix and/or suffix.
120
- * @return mixed
121
- */
122
- public function get_formatted_number() {
 
123
  $invoice_number_format = $this->template_options['bewpi_invoice_number_format'];
124
  // Format number with the number of digits
125
  $digit_str = "%0" . $this->template_options['bewpi_invoice_number_digits'] . "s";
126
- $digitized_invoice_number = sprintf( $digit_str, $this->number );
127
- $year = date_i18n( 'Y' );
128
- $y = date_i18n( 'y' );
129
- $m = date_i18n( 'm' );
130
 
131
  // Format invoice number
132
  $formatted_invoice_number = str_replace(
133
- array( '[prefix]', '[suffix]', '[number]', '[Y]', '[y]' , '[m]' ),
134
- array( $this->template_options['bewpi_invoice_number_prefix'], $this->template_options['bewpi_invoice_number_suffix'], $digitized_invoice_number, (string)$year, (string)$y, (string)$m ),
135
- $invoice_number_format );
136
 
137
- return $formatted_invoice_number;
138
- }
139
 
140
  /**
141
  * Format date
142
  * @param bool $insert
143
  * @return bool|datetime|string
144
  */
145
- public function get_formatted_invoice_date() {
146
- $date_format = $this->template_options[ 'bewpi_date_format' ];
147
- return ( !empty( $date_format ) ) ? date_i18n( $date_format, current_time( 'timestamp' ) ) : date_i18n( "d-m-Y", current_time( 'timestamp' ) );
 
148
  }
149
 
150
  /*
151
  * Format the order date and return
152
  */
153
- public function get_formatted_order_date( $order_id = 0 ) {
154
- if ( $order_id != 0 ) {
155
- // format date for global invoice
156
- $order = wc_get_order( $order_id );
157
- $order_date = $order->order_date;
158
- } else {
159
- $order_date = $this->order->order_date;
160
- }
161
-
162
- $order_date = DateTime::createFromFormat( 'Y-m-d H:i:s', $order_date );
163
- if ( ! empty ( $this->template_options[ 'bewpi_date_format' ] ) ) {
164
- $date_format = $this->template_options[ 'bewpi_date_format' ];
165
- $formatted_date = $order_date->format( $date_format );
166
- return date_i18n( $date_format, strtotime( $formatted_date ) );
 
167
  } else {
168
- $formatted_date = $order_date->format( 'd-m-Y' );
169
- return date_i18n( "d-m-Y", strtotime( $formatted_date ) );
170
  }
171
  }
172
 
173
  /**
174
  * Get all html from html files and store as vars
175
  */
176
- private function output_template_files_to_buffer( $html_template_files ) {
177
- do_action( 'bewpi_before_output_template_to_buffer', array( 'order_id' => $this->order->id ) );
178
- $html_sections = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
 
180
- foreach ( $html_template_files as $section => $full_path ) {
181
- $html = ( $section === 'style' ) ? $this->output_style_to_buffer( $full_path ) : $this->output_to_buffer( $full_path );
182
- $html_sections[ $section ] = $html;
183
- }
 
 
 
184
 
185
- do_action( 'bewpi_after_output_template_to_buffer' );
 
 
186
 
187
- return $html_sections;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  }
189
 
190
- private function get_next_invoice_number() {
191
- // check if user uses the built in WooCommerce order numbers
192
- if ( $this->template_options[ 'bewpi_invoice_number_type' ] !== "sequential_number" )
193
- return $this->order->get_order_number();
 
 
 
 
 
194
 
195
- // check if user did a counter reset
196
- if ( $this->template_options[ 'bewpi_reset_counter' ] && $this->template_options[ 'bewpi_next_invoice_number' ] > 0 ) {
197
- $this->counter_reset = true;
198
- // uncheck option to actually change the value
199
- $this->template_options[ 'bewpi_reset_counter' ] = 0;
200
- update_option( 'bewpi_template_settings', $this->template_options );
201
 
202
- return $this->template_options[ 'bewpi_next_invoice_number' ];
203
- }
 
204
 
205
- $last_invoice_number = $this->get_max_invoice_number();
206
- return ( $last_invoice_number == "" ) ? 1 : (int)$last_invoice_number + 1;
207
- }
208
 
209
- public function get_max_invoice_number() {
210
- global $wpdb;
 
211
 
212
- if ( (bool)$this->template_options[ 'bewpi_reset_counter_yearly' ] ) {
213
- // get all by year
214
- $query = $wpdb->prepare(
215
- "
 
 
 
 
216
  SELECT max(cast(pm2.meta_value as unsigned)) as last_invoice_number
217
  FROM $wpdb->postmeta pm1 INNER JOIN $wpdb->postmeta pm2 ON pm1.post_id = pm2.post_id
218
  WHERE pm1.meta_key = '%s'
219
  AND pm1.meta_value = %d
220
- AND pm2.meta_key = '%s';
221
  ",
222
- "_bewpi_invoice_year",
223
- (int) date_i18n( 'Y', current_time( 'timestamp' ) ),
224
- "_bewpi_invoice_number"
225
- );
226
- } else {
227
- // get all
228
- $query = $wpdb->prepare(
229
- "
230
  SELECT max(cast(pm2.meta_value as unsigned)) as last_invoice_number
231
  FROM $wpdb->postmeta pm1 INNER JOIN $wpdb->postmeta pm2 ON pm1.post_id = pm2.post_id
232
- WHERE pm1.meta_key = '%s' AND pm2.meta_key = '%s';
233
  ",
234
- "_bewpi_invoice_year",
235
- "_bewpi_invoice_number"
236
- );
237
- }
238
-
239
- return $wpdb->get_var( $query );
240
- }
241
-
242
- public function sh_icl_current_language($lang){
243
- return 'nl';
244
- }
245
-
246
- /**
247
- * Generates and saves the invoice to the uploads folder.
248
- * @param $dest
249
- * @return string
250
- */
251
- protected function save( $dest, $html_templates ) {
252
- $this->number = $this->get_next_invoice_number();
253
- $this->formatted_number = $this->get_formatted_number();
254
- $this->filename = $this->formatted_number . '.pdf';
255
- $this->year = date_i18n( 'Y', current_time( 'timestamp' ) );
256
- $this->full_path = BEWPI_INVOICES_DIR . (string)$this->year . '/' . $this->filename;
257
-
258
- // check if invoice doesn't already exists in invoice dir
259
- if ( $this->exists() ) {
260
- if ( $this->counter_reset ) {
261
- // user used invoice number reset, but invoice already exists with this invoice number
262
- wp_die( sprintf( __( 'Could not create invoice. In order to reset invoice number with %d, delete all invoices with invoice number %s and greater.', 'woocommerce-pdf-invoices' ), (int)$this->template_options[ 'bewpi_next_invoice_number' ], $this->formatted_number ),
263
- '',
264
- array( 'response' => 200, 'back_link' => true )
265
- );
266
- } else {
267
- wp_die( sprintf( __( 'Could not create invoice. Invoice with invoice number %s already exists. First delete invoice and try again.', 'woocommerce-pdf-invoices' ), $this->formatted_number ),
268
- '',
269
- array( 'response' => 200, 'back_link' => true )
270
- );
271
- }
272
- }
273
-
274
- // update invoice data in db
275
- update_post_meta( $this->order->id, '_bewpi_formatted_invoice_number', $this->formatted_number );
276
- update_post_meta( $this->order->id, '_bewpi_invoice_number', $this->number );
277
- update_post_meta( $this->order->id, '_bewpi_invoice_year', $this->year );
278
- $this->date = $this->get_formatted_invoice_date();
279
- update_post_meta( $this->order->id, '_bewpi_invoice_date', $this->date );
280
-
281
- $this->colspan = $this->get_colspan();
282
- $html_sections = $this->output_template_files_to_buffer( $html_templates );
283
- $paid = $this->is_paid();
284
-
285
- do_action( 'bewpi_before_document_generation', array( 'type' => $this->type, 'order_id' => $this->order->id ) );
286
-
287
- parent::generate( $html_sections, $dest, $paid );
288
-
289
- return $this->full_path;
290
- }
291
-
292
- /**
293
- * Checks if order is paid
294
- * @return bool
295
- */
296
- public function is_paid() {
297
- if ( $this->order->payment_method_title !== 'Cash on Delivery' ) {
298
- return false;
299
- }
300
-
301
- return ( ! in_array( $this->order->get_status(), array( 'pending', 'on-hold', 'auto-draft' ) ) );
302
- }
303
-
304
- /**
305
- * View or download the invoice.
306
- * @param $download
307
- */
308
- public function view() {
309
- if ( ! $this->exists() )
310
- wp_die( sprintf( __( 'Invoice with invoice number %s not found. First create invoice and try again.', 'woocommerce-pdf-invoices' ), $this->formatted_number ),
311
- '',
312
- array( 'response' => 200, 'back_link' => true )
313
- );
314
- parent::view();
315
- }
316
-
317
- /**
318
- * Delete all invoice data from database and the file.
319
- */
320
- public function delete() {
321
- // remove all invoice data from db
322
- delete_post_meta( $this->order->id, '_bewpi_invoice_number' );
323
- delete_post_meta( $this->order->id, '_bewpi_formatted_invoice_number' );
324
- delete_post_meta( $this->order->id, '_bewpi_invoice_date' );
325
- delete_post_meta( $this->order->id, '_bewpi_invoice_year' );
326
-
327
- // delete file
328
- if ( $this->exists() )
329
- parent::delete();
330
- }
331
-
332
- /**
333
- * @param $order_status
334
- * Customer is only allowed to download invoice if the status of the order matches the email type option.
335
- * @return bool
336
- */
337
- public function is_download_allowed( $order_status ) {
338
- $allowed = false;
339
- if ( $this->general_options['bewpi_email_type'] === "customer_processing_order"
340
- && $order_status === "wc-processing" || $order_status === "wc-completed" ) {
341
- $allowed = true;
342
- }
343
- return $allowed;
344
- }
345
 
346
  /**
347
  * Display company name if logo is not found.
348
  * Convert image to base64 due to incompatibility of subdomains with MPDF
349
  */
350
- public function get_company_logo_html() {
351
- if ( ! empty( $this->template_options['bewpi_company_logo'] ) ) {
352
- $image_url = $this->template_options['bewpi_company_logo'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
 
354
- // get the relative path due to slow generation of invoice.
355
- $image_url = '..' . str_replace( get_site_url(), '', $image_url );
 
 
 
356
 
357
- // try base64 encoding with or without relative path if MPDF gives images errors.
358
- //$image_url = image_to_base64( $image_url );
 
 
359
 
360
- echo '<img class="company-logo" style="max-height: 250px;" src="' . $image_url . '"/>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  } else {
362
- echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
363
  }
364
  }
365
 
366
- /**
367
- * Get VAT number from WooCommerce EU VAT Number plugin
368
- */
369
- public function display_vat_number() {
370
- $vat_number = get_post_meta( $this->order->id, '_vat_number', true );
371
- if ( $vat_number !== '' ) {
372
- echo '<span>' . sprintf( __( 'VAT Number: %s', 'woocommerce-pdf-invoices' ), $vat_number ) . '</span>';
373
- }
374
- }
375
-
376
- /**
377
- * Get PO Number from WooCommerce Purchase Order Gateway plugin
378
- */
379
- public function display_purchase_order_number () {
380
- if ( isset( $this->order->payment_method ) && $this->order->payment_method === 'woocommerce_gateway_purchase_order' ) {
381
- $po_number = get_post_meta( $this->order->id, '_po_number', true );
382
- if ( $po_number !== '' ) {
383
- echo '<span>' . sprintf( __( 'Purchase Order Number: %s', 'woocommerce-gateway-purchase-order' ), $po_number ) . '</span>';
384
- }
385
- }
386
- }
387
-
388
- private function output_to_buffer( $full_path ) {
389
- ob_start();
390
- require_once $full_path;
391
- $output = ob_get_contents();
392
- ob_end_clean();
393
- return $output;
394
- }
395
-
396
- private function output_style_to_buffer( $full_path ) {
397
- return '<style>' . file_get_contents( $full_path ) . '</style>';
398
- }
399
-
400
- public function outlining_columns_html() {
401
- ?>
402
- <style>
403
- <?php
404
- // Create css for outlining the product cells.
405
- $righter_product_row_tds_css = "";
406
- for ( $td = $this->colspan['left'] + 1; $td <= $this->columns_count; $td++ ) {
407
- if ( $td !== $this->columns_count ) {
408
- $righter_product_row_tds_css .= "tr.product-row td:nth-child(" . $td . "),";
409
- } else {
410
- $righter_product_row_tds_css .= "tr.product-row td:nth-child(" . $td . ")";
411
- $righter_product_row_tds_css .= "{ width: " . ( 50 / $this->colspan['right'] ) . "%; }";
412
- }
413
- }
414
- echo $righter_product_row_tds_css;
415
- ?>
416
- tr.product-row td:nth-child(1) {
417
- width: <?php echo $this->desc_cell_width; ?>;
418
- }
419
- </style>
420
- <?php
421
- }
422
-
423
- private function get_columns_count( $taxes_count ) {
424
- $columns_count = 4;
425
-
426
- if ( $this->template_options['bewpi_show_sku'] )
427
- $columns_count ++;
428
-
429
- if ( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty( $legacy_order ) )
430
- $columns_count += $taxes_count;
431
-
432
- return $columns_count;
433
- }
434
-
435
- /**
436
- * Calculates colspan for table footer cells
437
- * @return array
438
- */
439
- public function get_colspan() {
440
- $colspan = array();
441
- $number_of_left_half_columns = 3;
442
- $this->desc_cell_width = '30%';
443
-
444
- // The product table will be split into 2 where on the right 5 columns are the max
445
- if ( $this->columns_count <= 4 ) :
446
- $number_of_left_half_columns = 1;
447
- $this->desc_cell_width = '48%';
448
- elseif ( $this->columns_count <= 6 ) :
449
- $number_of_left_half_columns = 2;
450
- $this->desc_cell_width = '35.50%';
451
- endif;
452
-
453
- $colspan['left'] = $number_of_left_half_columns;
454
- $colspan['right'] = $this->columns_count - $number_of_left_half_columns;
455
- $colspan['right_left'] = round( ( $colspan['right'] / 2 ), 0, PHP_ROUND_HALF_DOWN );
456
- $colspan['right_right'] = round( ( $colspan['right'] / 2 ), 0, PHP_ROUND_HALF_UP );
457
-
458
- return $colspan;
459
- }
460
-
461
- /**
462
- * Determine if the template is a custom or standard
463
- * @param $template_name
464
- * @return string
465
- */
466
- protected function get_template_dir( $template_name ) {
467
- $custom_template_dir = BEWPI_CUSTOM_TEMPLATES_INVOICES_DIR . $this->type . '/' . $template_name . '/';
468
- if ( file_exists( $custom_template_dir ) )
469
- return $custom_template_dir;
470
-
471
- $template_dir = BEWPI_TEMPLATES_INVOICES_DIR . $this->type . '/' . $template_name . '/';
472
- if ( file_exists( $template_dir ) )
473
- return $template_dir;
474
-
475
- return '';
476
- }
477
-
478
- public function get_full_path() {
479
- return $this->full_path;
480
- }
481
  }
482
  }
9
  * Makes the invoice.
10
  * Class BEWPI_Invoice
11
  */
12
+ class BEWPI_Abstract_Invoice extends BEWPI_Abstract_Document
13
+ {
14
 
15
  /**
16
  * @var WC_Order
40
  */
41
  protected $date;
42
 
43
+ /**
44
+ * Creation year
45
+ * @var datetime
46
+ */
47
+ protected $year;
48
 
49
  /**
50
  * Number of columns for the products table
64
  */
65
  protected $desc_cell_width;
66
 
67
+ /**
68
+ * Name of the template
69
+ * @var string
70
+ */
71
+ protected $template_name;
72
+
73
+ /**
74
+ * Type of invoice
75
+ * @var string
76
+ */
77
+ protected $type;
78
+
79
+ /**
80
+ * Dir of the template
81
+ * @var string
82
+ */
83
+ protected $template_dir_name;
84
+
85
+ /**
86
+ * Next invoice counter reset enabling
87
+ * @var bool
88
+ */
89
+ protected $counter_reset = false;
90
 
91
  /**
92
  * Initialize invoice with WooCommerce order
93
  * @param string $order
94
  */
95
+ public function __construct($order_id, $type, $taxes_count = 0)
96
+ {
97
+ parent::__construct();
98
+ $this->order = wc_get_order($order_id);
99
+ $this->type = $type;
100
+ $this->columns_count = $this->get_columns_count($taxes_count);
101
+ $this->formatted_number = get_post_meta($this->order->id, '_bewpi_formatted_invoice_number', true);
102
+ $this->template_name = $this->template_options["bewpi_template_name"];
103
+
104
+ // Check if the invoice already exists.
105
+ if (!empty($this->formatted_number) || isset($_GET['bewpi_action']) && $_GET['bewpi_action'] !== 'cancel')
106
+ $this->init();
107
  }
108
 
109
  /**
110
  * Gets all the existing invoice data from database or creates new invoice number.
111
  */
112
+ private function init()
113
+ {
114
+ $this->number = get_post_meta($this->order->id, '_bewpi_invoice_number', true);
115
+ $this->year = get_post_meta($this->order->id, '_bewpi_invoice_year', true);
116
+ $this->filename = $this->formatted_number . '.pdf';
117
+ $this->full_path = BEWPI_INVOICES_DIR . (string)$this->year . '/' . $this->filename;
118
+ $this->date = get_post_meta($this->order->id, '_bewpi_invoice_date', true);
119
  }
120
 
121
+ /**
122
+ * Format the invoice number with prefix and/or suffix.
123
+ * @return mixed
124
+ */
125
+ public function get_formatted_number()
126
+ {
127
  $invoice_number_format = $this->template_options['bewpi_invoice_number_format'];
128
  // Format number with the number of digits
129
  $digit_str = "%0" . $this->template_options['bewpi_invoice_number_digits'] . "s";
130
+ $digitized_invoice_number = sprintf($digit_str, $this->number);
131
+ $year = date_i18n('Y');
132
+ $y = date_i18n('y');
133
+ $m = date_i18n('m');
134
 
135
  // Format invoice number
136
  $formatted_invoice_number = str_replace(
137
+ array('[prefix]', '[suffix]', '[number]', '[Y]', '[y]', '[m]'),
138
+ array($this->template_options['bewpi_invoice_number_prefix'], $this->template_options['bewpi_invoice_number_suffix'], $digitized_invoice_number, (string)$year, (string)$y, (string)$m),
139
+ $invoice_number_format);
140
 
141
+ return $formatted_invoice_number;
142
+ }
143
 
144
  /**
145
  * Format date
146
  * @param bool $insert
147
  * @return bool|datetime|string
148
  */
149
+ public function get_formatted_invoice_date()
150
+ {
151
+ $date_format = $this->template_options['bewpi_date_format'];
152
+ return (!empty($date_format)) ? date_i18n($date_format, current_time('timestamp')) : date_i18n("d-m-Y", current_time('timestamp'));
153
  }
154
 
155
  /*
156
  * Format the order date and return
157
  */
158
+ public function get_formatted_order_date($order_id = 0)
159
+ {
160
+ if ($order_id != 0) {
161
+ // format date for global invoice
162
+ $order = wc_get_order($order_id);
163
+ $order_date = $order->order_date;
164
+ } else {
165
+ $order_date = $this->order->order_date;
166
+ }
167
+
168
+ $order_date = DateTime::createFromFormat('Y-m-d H:i:s', $order_date);
169
+ if (!empty ($this->template_options['bewpi_date_format'])) {
170
+ $date_format = $this->template_options['bewpi_date_format'];
171
+ $formatted_date = $order_date->format($date_format);
172
+ return date_i18n($date_format, strtotime($formatted_date));
173
  } else {
174
+ $formatted_date = $order_date->format('d-m-Y');
175
+ return date_i18n("d-m-Y", strtotime($formatted_date));
176
  }
177
  }
178
 
179
  /**
180
  * Get all html from html files and store as vars
181
  */
182
+ private function output_template_files_to_buffer($html_template_files)
183
+ {
184
+ do_action('bewpi_before_output_template_to_buffer', array('order_id' => $this->order->id));
185
+ $html_sections = array();
186
+
187
+ foreach ($html_template_files as $section => $full_path) {
188
+ $html = ($section === 'style') ? $this->output_style_to_buffer($full_path) : $this->output_to_buffer($full_path);
189
+ $html_sections[$section] = $html;
190
+ }
191
+
192
+ do_action('bewpi_after_output_template_to_buffer');
193
+
194
+ return $html_sections;
195
+ }
196
+
197
+ private function delete_pdf_invoices()
198
+ {
199
+ if ((bool)$this->template_options['bewpi_reset_counter_yearly']) {
200
+ $current_year = (int)date_i18n('Y', current_time('timestamp'));
201
+ $bewpi_invoices_dir = BEWPI_INVOICES_DIR . $current_year . '/*.pdf';
202
+ } else {
203
+ $bewpi_invoices_dir = BEWPI_INVOICES_DIR . '*.pdf';
204
+ }
205
 
206
+ $files = glob($bewpi_invoices_dir);
207
+ foreach ($files as $file) {
208
+ if (is_file($file)) {
209
+ unlink($file);
210
+ }
211
+ }
212
+ }
213
 
214
+ private function delete_invoice_meta()
215
+ {
216
+ global $wpdb;
217
 
218
+ if ((bool)$this->template_options['bewpi_reset_counter_yearly']) {
219
+ // delete all by year
220
+ $query = $wpdb->prepare(
221
+ "
222
+ DELETE pm2 FROM $wpdb->postmeta pm1
223
+ INNER JOIN $wpdb->postmeta pm2 ON pm1.post_id = pm2.post_id
224
+ WHERE pm1.meta_key = '%s'
225
+ AND pm1.meta_value = %d
226
+ AND (pm2.meta_key LIKE '%s' OR pm2.meta_key LIKE '%s')
227
+ ",
228
+ "_bewpi_invoice_year",
229
+ (int)date_i18n('Y', current_time('timestamp')),
230
+ "_bewpi_invoice_%",
231
+ "_bewpi_formatted_%"
232
+ );
233
+ } else {
234
+ // delete all
235
+ $query = $wpdb->prepare(
236
+ "
237
+ DELETE FROM $wpdb->postmeta
238
+ WHERE meta_key = '%s'
239
+ OR meta_key = '%s'
240
+ OR meta_key = '%s'
241
+ OR meta_key = '%s'
242
+ ",
243
+ "_bewpi_invoice_number",
244
+ "_bewpi_formatted_invoice_number",
245
+ "_bewpi_invoice_date",
246
+ "_bewpi_invoice_year"
247
+ );
248
+ }
249
+
250
+ $wpdb->query($query);
251
  }
252
 
253
+ private function get_next_invoice_number()
254
+ {
255
+ // check if user uses the built in WooCommerce order numbers
256
+ if ($this->template_options['bewpi_invoice_number_type'] !== "sequential_number")
257
+ return $this->order->get_order_number();
258
+
259
+ // check if user did a counter reset
260
+ if ($this->template_options['bewpi_reset_counter'] && $this->template_options['bewpi_next_invoice_number'] > 0) {
261
+ $this->counter_reset = true;
262
 
263
+ $this->delete_pdf_invoices();
264
+ $this->delete_invoice_meta();
 
 
 
 
265
 
266
+ // uncheck option to actually change the value
267
+ $this->template_options['bewpi_reset_counter'] = 0;
268
+ update_option('bewpi_template_settings', $this->template_options);
269
 
270
+ return $this->template_options['bewpi_next_invoice_number'];
271
+ }
 
272
 
273
+ $last_invoice_number = $this->get_max_invoice_number();
274
+ return (empty($last_invoice_number)) ? 1 : (int)$last_invoice_number + 1;
275
+ }
276
 
277
+ public function get_max_invoice_number()
278
+ {
279
+ global $wpdb;
280
+
281
+ if ((bool)$this->template_options['bewpi_reset_counter_yearly']) {
282
+ // get all by year
283
+ $query = $wpdb->prepare(
284
+ "
285
  SELECT max(cast(pm2.meta_value as unsigned)) as last_invoice_number
286
  FROM $wpdb->postmeta pm1 INNER JOIN $wpdb->postmeta pm2 ON pm1.post_id = pm2.post_id
287
  WHERE pm1.meta_key = '%s'
288
  AND pm1.meta_value = %d
289
+ AND pm2.meta_key = '%s'
290
  ",
291
+ "_bewpi_invoice_year",
292
+ (int)date_i18n('Y', current_time('timestamp')),
293
+ "_bewpi_invoice_number"
294
+ );
295
+ } else {
296
+ // get all
297
+ $query = $wpdb->prepare(
298
+ "
299
  SELECT max(cast(pm2.meta_value as unsigned)) as last_invoice_number
300
  FROM $wpdb->postmeta pm1 INNER JOIN $wpdb->postmeta pm2 ON pm1.post_id = pm2.post_id
301
+ WHERE pm1.meta_key = '%s' AND pm2.meta_key = '%s'
302
  ",
303
+ "_bewpi_invoice_year",
304
+ "_bewpi_invoice_number"
305
+ );
306
+ }
307
+
308
+ return $wpdb->get_var($query);
309
+ }
310
+
311
+ /**
312
+ * Generates and saves the invoice to the uploads folder.
313
+ * @param $dest
314
+ * @return string
315
+ */
316
+ protected function save($dest, $html_templates)
317
+ {
318
+ if ($this->exists()) {
319
+ // delete postmeta and PDF
320
+ $this->delete();
321
+ }
322
+
323
+ $this->number = $this->get_next_invoice_number();
324
+ $this->formatted_number = $this->get_formatted_number();
325
+ $this->filename = $this->formatted_number . '.pdf';
326
+ $this->year = date_i18n('Y', current_time('timestamp'));
327
+ $this->full_path = BEWPI_INVOICES_DIR . (string)$this->year . '/' . $this->filename;
328
+
329
+ // update invoice data in db
330
+ update_post_meta($this->order->id, '_bewpi_formatted_invoice_number', $this->formatted_number);
331
+ update_post_meta($this->order->id, '_bewpi_invoice_number', $this->number);
332
+ update_post_meta($this->order->id, '_bewpi_invoice_year', $this->year);
333
+ $this->date = $this->get_formatted_invoice_date();
334
+ update_post_meta($this->order->id, '_bewpi_invoice_date', $this->date);
335
+
336
+ $this->colspan = $this->get_colspan();
337
+ $html_sections = $this->output_template_files_to_buffer($html_templates);
338
+ $paid = $this->is_paid();
339
+
340
+ do_action('bewpi_before_document_generation', array('type' => $this->type, 'order_id' => $this->order->id));
341
+
342
+ parent::generate($html_sections, $dest, $paid);
343
+
344
+ return $this->full_path;
345
+ }
346
+
347
+ /**
348
+ * Checks if order is paid
349
+ * @return bool
350
+ */
351
+ public function is_paid()
352
+ {
353
+ $payment_methods = apply_filters('bewpi_paid_watermark_excluded_payment_methods', array('cod'), $this->order->id);
354
+ if (in_array($this->order->payment_method, $payment_methods)) {
355
+ return false;
356
+ }
357
+
358
+ $order_statuses = apply_filters('bewpi_paid_watermark_excluded_order_statuses', array('pending', 'on-hold', 'auto-draft'), $this->order->id);
359
+ return (!in_array($this->order->get_status(), $order_statuses ));
360
+ }
361
+
362
+ public function view()
363
+ {
364
+ if (!$this->exists()) {
365
+ wp_die(sprintf(__('Invoice with invoice number %s not found. First create invoice and try again.', 'woocommerce-pdf-invoices'), $this->formatted_number),
366
+ '',
367
+ array('response' => 200, 'back_link' => true)
368
+ );
369
+ }
370
+
371
+ parent::view();
372
+ }
373
+
374
+ /**
375
+ * Delete all invoice data from database and the file.
376
+ */
377
+ public function delete()
378
+ {
379
+ // remove all invoice data from db
380
+ delete_post_meta($this->order->id, '_bewpi_invoice_number');
381
+ delete_post_meta($this->order->id, '_bewpi_formatted_invoice_number');
382
+ delete_post_meta($this->order->id, '_bewpi_invoice_date');
383
+ delete_post_meta($this->order->id, '_bewpi_invoice_year');
384
+
385
+ do_action('bewpi_after_post_meta_deletion', $this->order->id);
386
+
387
+ // delete file
388
+ if ($this->exists())
389
+ parent::delete();
390
+ }
391
+
392
+ /**
393
+ * @param $order_status
394
+ * Customer is only allowed to download invoice if the status of the order matches the email type option.
395
+ * @return bool
396
+ */
397
+ public function is_download_allowed($order_status)
398
+ {
399
+ if ($order_status === "wc-completed") {
400
+ return true;
401
+ }
402
+
403
+ // if user selected email type 'Cutomer Processing Order' download is also allowed.
404
+ return ($order_status === "wc-processing" && $this->general_options['bewpi_email_type'] === "customer_processing_order");
405
+ }
 
 
 
 
 
 
 
 
406
 
407
  /**
408
  * Display company name if logo is not found.
409
  * Convert image to base64 due to incompatibility of subdomains with MPDF
410
  */
411
+ public function get_company_logo_html()
412
+ {
413
+ if (!empty($this->template_options['bewpi_company_logo'])) {
414
+ // get the relative path due to slow generation of invoice.
415
+ $image_path = str_replace(get_site_url(), '..', $this->template_options['bewpi_company_logo']);
416
+ // give the user the option to change the image (path/url) due to some errors of mPDF.
417
+ $image_url = apply_filters( 'bewpi_company_logo_url', $image_path );
418
+
419
+ echo '<img class="company-logo" src="' . $image_url . '"/>';
420
+ } else {
421
+ echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
422
+ }
423
+ }
424
+
425
+ /**
426
+ * Get VAT number from WooCommerce EU VAT Number plugin
427
+ */
428
+ public function display_vat_number()
429
+ {
430
+ $vat_number = get_post_meta($this->order->id, '_vat_number', true);
431
+ if ($vat_number !== '') {
432
+ echo '<span>' . sprintf(__('VAT Number: %s', 'woocommerce-pdf-invoices'), $vat_number) . '</span>';
433
+ }
434
+ }
435
+
436
+ /**
437
+ * Get PO Number from WooCommerce Purchase Order Gateway plugin
438
+ */
439
+ public function display_purchase_order_number()
440
+ {
441
+ if (isset($this->order->payment_method) && $this->order->payment_method === 'woocommerce_gateway_purchase_order') {
442
+ $po_number = get_post_meta($this->order->id, '_po_number', true);
443
+ if ($po_number !== '') {
444
+ echo '<span>' . sprintf(__('Purchase Order Number: %s', 'woocommerce-gateway-purchase-order'), $po_number) . '</span>';
445
+ }
446
+ }
447
+ }
448
+
449
+ private function output_to_buffer($full_path)
450
+ {
451
+ ob_start();
452
+ require_once($full_path);
453
+ $output = ob_get_contents();
454
+ ob_end_clean();
455
+ return $output;
456
+ }
457
+
458
+ private function output_style_to_buffer($full_path)
459
+ {
460
+ return '<style>' . file_get_contents($full_path) . '</style>';
461
+ }
462
+
463
+ public function outlining_columns_html()
464
+ {
465
+ ?>
466
+ <style>
467
+ <?php
468
+ // Create css for outlining the product cells.
469
+ $righter_product_row_tds_css = "";
470
+ for ( $td = $this->colspan['left'] + 1; $td <= $this->columns_count; $td++ ) {
471
+ if ( $td !== $this->columns_count ) {
472
+ $righter_product_row_tds_css .= "tr.product-row td:nth-child(" . $td . "),";
473
+ } else {
474
+ $righter_product_row_tds_css .= "tr.product-row td:nth-child(" . $td . ")";
475
+ $righter_product_row_tds_css .= "{ width: " . ( 50 / $this->colspan['right'] ) . "%; }";
476
+ }
477
+ }
478
+ echo $righter_product_row_tds_css;
479
+ ?>
480
+ tr.product-row td:nth-child(1) {
481
+ width: <?php echo $this->desc_cell_width; ?>;
482
+ }
483
+ </style>
484
+ <?php
485
+ }
486
+
487
+ private function get_columns_count($taxes_count)
488
+ {
489
+ $columns_count = 4;
490
+
491
+ if ($this->template_options['bewpi_show_sku'])
492
+ $columns_count++;
493
+
494
+ if ($this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty($legacy_order))
495
+ $columns_count += $taxes_count;
496
+
497
+ return $columns_count;
498
+ }
499
+
500
+ /**
501
+ * Calculates colspan for table footer cells
502
+ * @return array
503
+ */
504
+ public function get_colspan()
505
+ {
506
+ $colspan = array();
507
+ $number_of_left_half_columns = 3;
508
+ $this->desc_cell_width = '30%';
509
+
510
+ // The product table will be split into 2 where on the right 5 columns are the max
511
+ if ($this->columns_count <= 4) :
512
+ $number_of_left_half_columns = 1;
513
+ $this->desc_cell_width = '48%';
514
+ elseif ($this->columns_count <= 6) :
515
+ $number_of_left_half_columns = 2;
516
+ $this->desc_cell_width = '35.50%';
517
+ endif;
518
+
519
+ $colspan['left'] = $number_of_left_half_columns;
520
+ $colspan['right'] = $this->columns_count - $number_of_left_half_columns;
521
+ $colspan['right_left'] = round(($colspan['right'] / 2), 0, PHP_ROUND_HALF_DOWN);
522
+ $colspan['right_right'] = round(($colspan['right'] / 2), 0, PHP_ROUND_HALF_UP);
523
+
524
+ return $colspan;
525
+ }
526
+
527
+ /**
528
+ * Determine if the template is a custom or standard
529
+ * @param $template_name
530
+ * @return string
531
+ */
532
+ protected function get_template_dir($template_name)
533
+ {
534
+ // check if a custom template exists.
535
+ $custom_template_dir = BEWPI_CUSTOM_TEMPLATES_INVOICES_DIR . $this->type . '/' . $template_name . '/';
536
+ if (file_exists($custom_template_dir)) {
537
+ return $custom_template_dir;
538
+ }
539
 
540
+ $template_dir = BEWPI_TEMPLATES_INVOICES_DIR . $this->type . '/' . $template_name . '/';
541
+ if (file_exists($template_dir)) {
542
+ return $template_dir;
543
+ }
544
+ }
545
 
546
+ public function get_full_path()
547
+ {
548
+ return $this->full_path;
549
+ }
550
 
551
+ public function left_footer_column_html()
552
+ {
553
+ $left_footer_column_text = $this->template_options['bewpi_left_footer_column'];
554
+ if (!empty($left_footer_column_text))
555
+ {
556
+ echo '<p>' . nl2br($this->replace_placeholders($left_footer_column_text)) . '</p>';
557
+ }
558
+ }
559
+
560
+ public function right_footer_column_html()
561
+ {
562
+ $right_footer_column_text = $this->template_options['bewpi_right_footer_column'];
563
+ if (!empty($right_footer_column_text))
564
+ {
565
+ echo '<p>' . nl2br($this->replace_placeholders($right_footer_column_text)) . '</p>';
566
  } else {
567
+ echo '<p>' . sprintf( __( '%s of %s', 'woocommerce-pdf-invoices' ), '{PAGENO}', '{nbpg}' ) . '</p>';
568
  }
569
  }
570
 
571
+ private function replace_placeholders( $str ) {
572
+ $placeholders = apply_filters('bewpi_placeholders', array(
573
+ '[payment_method]' => $this->order->payment_method_title,
574
+ '[shipping_method]' => $this->order->get_shipping_method()
575
+ ), $this->order->id);
576
+
577
+ foreach ($placeholders as $placeholder => $value){
578
+ $str = str_replace($placeholder, $value, $str);
579
+ }
580
+
581
+ return $str;
582
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  }
584
  }
includes/admin/settings/class-bewpi-admin-settings-template.php CHANGED
@@ -307,7 +307,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
307
  'page' => $this->settings_key,
308
  'section' => 'invoice_number',
309
  'type' => 'number',
310
- 'desc' => __( 'Reset the invoice counter and start counting from given invoice number.<br/><b>Note:</b> Only available for Sequential numbering and value will be editable by selecting checkbox. Next number needs to be lower then highest existing invoice number or delete invoices first.', 'woocommerce-pdf-invoices' ),
311
  'default' => 1,
312
  'attrs' => array(
313
  'disabled',
@@ -503,7 +503,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
503
  public function body_desc_callback() { }
504
 
505
  public function footer_desc_callback() {
506
- echo __( 'The footer will be visible on every page.', 'woocommerce-pdf-invoices' ) . '<br/>' . $this->get_allowed_tags_str() . '<br/>' . __( '<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the order payment method.', 'woocommerce-pdf-invoices' );
507
  }
508
 
509
  public function visible_columns_desc_callback() { _e( 'Enable or disable the columns.', 'woocommerce-pdf-invoices' ); }
307
  'page' => $this->settings_key,
308
  'section' => 'invoice_number',
309
  'type' => 'number',
310
+ 'desc' => __( 'Reset the invoice counter and start counting from given invoice number.<br/><b>Note:</b> Only available for Sequential numbering. All PDF invoices will be deleted and need to be manually created again! Value will be editable by selecting checkbox.', 'woocommerce-pdf-invoices' ),
311
  'default' => 1,
312
  'attrs' => array(
313
  'disabled',
503
  public function body_desc_callback() { }
504
 
505
  public function footer_desc_callback() {
506
+ echo __( 'The footer will be visible on every page.', 'woocommerce-pdf-invoices' ) . '<br/>' . $this->get_allowed_tags_str() . '<br/>' . __( '<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the order payment method or <code>[shipping_method]</code> to display shipping method.', 'woocommerce-pdf-invoices' );
507
  }
508
 
509
  public function visible_columns_desc_callback() { _e( 'Enable or disable the columns.', 'woocommerce-pdf-invoices' ); }
includes/be-woocommerce-pdf-invoices.php CHANGED
@@ -90,8 +90,19 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
90
  * Shortcode to display invoice from view
91
  */
92
  add_shortcode( 'bewpi-download-invoice', array( $this, 'bewpi_download_invoice_func' ) );
 
 
 
93
  }
94
 
 
 
 
 
 
 
 
 
95
  public function init() {
96
  $this->load_textdomain();
97
  $this->init_settings_tabs();
@@ -258,9 +269,13 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
258
  * Admin scripts
259
  */
260
  public function admin_enqueue_scripts() {
261
- wp_enqueue_script( 'bewpi_admin_settings_script', BEWPI_URL . '/assets/js/admin.js' );
 
 
262
  wp_register_style( 'bewpi_admin_settings_css', BEWPI_URL . '/assets/css/admin.css', false, '1.0.0' );
 
263
  wp_enqueue_style( 'bewpi_admin_settings_css' );
 
264
  }
265
 
266
  /**
90
  * Shortcode to display invoice from view
91
  */
92
  add_shortcode( 'bewpi-download-invoice', array( $this, 'bewpi_download_invoice_func' ) );
93
+
94
+ add_action('wp_trash_post', array( $this, 'delete_invoice' ), 10, 1);
95
+ add_action('before_delete_post', array( $this, 'delete_invoice' ), 10, 1);
96
  }
97
 
98
+ public function delete_invoice($post_id){
99
+ $type = get_post_type($post_id);
100
+ if ( $type === 'shop_order' ) {
101
+ $invoice = new BEWPI_Invoice( $post_id );
102
+ $invoice->delete();
103
+ }
104
+ }
105
+
106
  public function init() {
107
  $this->load_textdomain();
108
  $this->init_settings_tabs();
269
  * Admin scripts
270
  */
271
  public function admin_enqueue_scripts() {
272
+ wp_enqueue_script( 'bewpi_admin_settings_script', BEWPI_URL . 'assets/js/admin.js' );
273
+ wp_enqueue_script( 'jquery_tiptip', WC()->plugin_url() . '/assets/js/jquery-tiptip/jquery.tipTip.min.js' );
274
+
275
  wp_register_style( 'bewpi_admin_settings_css', BEWPI_URL . '/assets/css/admin.css', false, '1.0.0' );
276
+ wp_register_style( 'woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css', array(), WC_VERSION );
277
  wp_enqueue_style( 'bewpi_admin_settings_css' );
278
+ wp_enqueue_style( 'woocommerce_admin_styles' );
279
  }
280
 
281
  /**
includes/class-bewpi-invoice.php CHANGED
@@ -44,11 +44,11 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
44
  }
45
 
46
  public function save( $dest, $html_templates = array() ) {
47
- if ( $this->template_name == "" )
48
- wp_die( __( 'Whoops, no template found. Please select a template on the Template settings page first.', 'woocommerce-pdf-invoices' ) );
 
49
 
50
  $template_dir_name = $this->get_template_dir( $this->template_name );
51
-
52
  $html_templates = array(
53
  "header" => $template_dir_name . 'header.php',
54
  "footer" => $template_dir_name . 'footer.php',
44
  }
45
 
46
  public function save( $dest, $html_templates = array() ) {
47
+ if ( empty ( $this->template_name ) ) {
48
+ return "";
49
+ }
50
 
51
  $template_dir_name = $this->get_template_dir( $this->template_name );
 
52
  $html_templates = array(
53
  "header" => $template_dir_name . 'header.php',
54
  "footer" => $template_dir_name . 'footer.php',
includes/templates/invoices/global/micro/body.php DELETED
@@ -1,300 +0,0 @@
1
- <table class="two-column customer">
2
- <tbody>
3
- <tr>
4
- <td class="address small-font">
5
- <b><?php _e( 'Invoice to', 'woocommerce-pdf-invoices' ); ?></b><br/>
6
- <?php echo $this->order->get_formatted_billing_address(); ?><br/>
7
- <?php if ( $this->order->billing_phone != "" ) printf( __( 'Phone: %s', 'woocommerce-pdf-invoices' ), $this->order->billing_phone ); ?>
8
- </td>
9
- <td class="address small-font">
10
- <?php if ( $this->order->get_formatted_shipping_address() != "" ) { ?>
11
- <b><?php _e( 'Ship to', 'woocommerce-pdf-invoices' ); ?></b><br/>
12
- <?php echo $this->order->get_formatted_shipping_address(); ?>
13
- <?php } ?>
14
- </td>
15
- </tr>
16
- </tbody>
17
- </table>
18
- <table class="invoice-head">
19
- <tbody>
20
- <tr>
21
- <td class="invoice-details">
22
- <h1 class="title"><?php _e( 'Global Invoice', 'woocommerce-pdf-invoices' ); ?></h1>
23
- <span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
24
- <span class="small-font"><?php echo $this->get_formatted_invoice_date(); ?></span><br/><br/>
25
- </td>
26
- <td class="total-amount" bgcolor="<?php echo $this->template_options['bewpi_color_theme']; ?>">
27
- <span>
28
- <h1 class="amount"><?php echo wc_price( $this->get_total_after_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></h1>
29
- <p class="small-font"><?php echo $this->template_options['bewpi_intro_text']; ?></p>
30
- </span>
31
- </td>
32
- </tr>
33
- </tbody>
34
- </table>
35
- <?php echo $this->outlining_columns_html(); ?>
36
- <table class="products small-font">
37
- <thead>
38
- <tr class="table-headers">
39
- <!-- Description -->
40
- <th class="align-left"><?php _e( 'Description', 'woocommerce-pdf-invoices' ); ?></th>
41
- <!-- SKU -->
42
- <?php
43
- if( $this->template_options['bewpi_show_sku'] ) {
44
- echo '<th class="align-left">' . __( "SKU", 'woocommerce-pdf-invoices') . '</th>';
45
- }
46
- ?>
47
- <!-- Cost -->
48
- <th class="align-left"><?php _e( 'Cost', 'woocommerce-pdf-invoices' ); ?></th>
49
- <!-- Qty -->
50
- <th class="align-left"><?php _e( 'Qty', 'woocommerce-pdf-invoices' ); ?></th>
51
- <!-- Tax -->
52
- <?php
53
- $order_taxes = $this->get_taxes();
54
- if ( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty( $legacy_order ) && ! empty( $order_taxes ) ) :
55
- foreach ( $order_taxes as $tax_id => $tax_item ) :
56
- $tax_label = __( 'VAT', 'woocommerce-pdf-invoices' );
57
- $column_label = ! empty( $tax_item->label ) ? $tax_item->label : $tax_label;
58
- ?>
59
- <th class="align-left">
60
- <?php echo $column_label; ?>
61
- </th>
62
- <?php
63
- endforeach;
64
- endif;
65
- ?>
66
- <!-- Total -->
67
- <th class="align-right"><?php _e( 'Total', 'woocommerce-pdf-invoices' ); ?></th>
68
- </tr>
69
- </thead>
70
- <!-- Products -->
71
- <tbody>
72
- <?php foreach ( $this->orders as $order ) :
73
- $order = wc_get_order( $order->id ); ?>
74
- <tr>
75
- <td><strong><?php printf( __( 'Order #%d - %s', 'woocommerce-pdf-invoices' ), $order->get_order_number(), $this->get_formatted_order_date( $order->id ) ); ?></strong></td>
76
- </tr>
77
- <?php foreach( $order->get_items( 'line_item' ) as $item_id => $item ) :
78
- $product = wc_get_product( $item['product_id'] ); ?>
79
-
80
- <tr class="product-row">
81
- <td>
82
- <!-- Title -->
83
- <?php
84
- echo $product->get_title();
85
- global $wpdb;
86
-
87
- if ( $metadata = $order->has_meta( $item_id ) ) :
88
- foreach ( $metadata as $meta ) :
89
-
90
- // Skip hidden core fields
91
- if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array(
92
- '_qty',
93
- '_tax_class',
94
- '_product_id',
95
- '_variation_id',
96
- '_line_subtotal',
97
- '_line_subtotal_tax',
98
- '_line_total',
99
- '_line_tax',
100
- ) ) ) ) {
101
- continue;
102
- }
103
-
104
- // Skip serialised meta
105
- if ( is_serialized( $meta['meta_value'] ) ) {
106
- continue;
107
- }
108
-
109
- // Get attribute data
110
- if ( taxonomy_exists( wc_sanitize_taxonomy_name( $meta['meta_key'] ) ) ) {
111
- $term = get_term_by( 'slug', $meta['meta_value'], wc_sanitize_taxonomy_name( $meta['meta_key'] ) );
112
- $meta['meta_key'] = wc_attribute_label( wc_sanitize_taxonomy_name( $meta['meta_key'] ) );
113
- $meta['meta_value'] = isset( $term->name ) ? $term->name : $meta['meta_value'];
114
- } else {
115
- $meta['meta_key'] = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $product ), $meta['meta_key'] );
116
- }
117
-
118
- echo '<div class="item-attribute"><span style="font-weight: bold;">' . wp_kses_post( rawurldecode( $meta['meta_key'] ) ) . ': </span>' . wp_kses_post( rawurldecode( $meta['meta_value'] ) ) . '</div>';
119
- endforeach;
120
- endif;
121
- ?>
122
- </td>
123
- <!-- SKU -->
124
- <?php
125
- if ( $this->template_options['bewpi_show_sku'] ) :
126
- echo '<td>';
127
- echo ( $product->get_sku() != '' ) ? $product->get_sku() : '-';
128
- echo '</td>';
129
- endif;
130
- ?>
131
- <td>
132
- <!-- Line total -->
133
- <?php
134
- if ( isset( $item['line_total'] ) ) {
135
- if ( isset( $item['line_subtotal'] ) && $item['line_subtotal'] != $item['line_total'] ) {
136
- echo '<del>' . wc_price( $order->get_item_subtotal( $item, false, true ), array( 'currency' => $this->get_currency() ) ) . '</del> ';
137
- }
138
- echo wc_price( $order->get_item_total( $item, false, true ), array( 'currency' => $this->get_currency() ) );
139
- }
140
- ?>
141
- </td>
142
- <td>
143
- <!-- Qty -->
144
- <?php
145
- echo $item['qty'];
146
-
147
- if ( $refunded_qty = $order->get_qty_refunded_for_item( $item_id ) )
148
- echo '<br/><small class="refunded">-' . $refunded_qty . '</small>';
149
- ?>
150
- </td>
151
- <?php
152
- if ( empty( $legacy_order ) && wc_tax_enabled() && $this->template_options['bewpi_show_tax'] ) :
153
- $line_tax_data = isset( $item['line_tax_data'] ) ? $item['line_tax_data'] : '';
154
- $tax_data = maybe_unserialize( $line_tax_data );
155
-
156
- foreach ( $this->get_taxes() as $tax_item ) :
157
- $tax_item_id = $tax_item->rate_id;
158
- $tax_item_total = isset( $tax_data['total'][ $tax_item_id ] ) ? $tax_data['total'][ $tax_item_id ] : '';
159
- $tax_item_subtotal = isset( $tax_data['subtotal'][ $tax_item_id ] ) ? $tax_data['subtotal'][ $tax_item_id ] : '';
160
- ?>
161
-
162
- <td class="item-tax">
163
- <!-- Tax -->
164
- <?php
165
- if ( '' != $tax_item_total ) {
166
- if ( isset( $tax_item_subtotal ) && $tax_item_subtotal != $tax_item_total ) {
167
- echo '<del>' . wc_price( wc_round_tax_total( $tax_item_subtotal ), array( 'currency' => $this->get_currency() ) ) . '</del> ';
168
- }
169
-
170
- echo wc_price( wc_round_tax_total( $tax_item_total ), array( 'currency' => $this->get_currency() ) );
171
- } else {
172
- echo '&ndash;';
173
- }
174
-
175
- if ( $refunded = $order->get_tax_refunded_for_item( $item_id, $tax_item_id ) ) {
176
- echo '<br/><small class="refunded">-' . wc_price( $refunded, array( 'currency' => $this->get_currency() ) ) . '</small>';
177
- }
178
- ?>
179
- </td>
180
-
181
- <?php
182
- endforeach;
183
- endif;
184
- ?>
185
- <td class="align-right item-total" width="">
186
- <!-- Item total -->
187
- <?php
188
- if ( isset( $item['line_total'] ) ) {
189
- $incl_tax = (bool)$this->template_options[ 'bewpi_display_prices_incl_tax' ];
190
-
191
- if ( isset( $item['line_subtotal'] ) && $item['line_subtotal'] != $item['line_total'] ) {
192
- echo '<del>' . wc_price( $order->get_line_subtotal( $item, $incl_tax, true ), array( 'currency' => $this->get_currency() ) ) . '</del> ';
193
- }
194
-
195
- echo wc_price( $order->get_line_total( $item, $incl_tax, true ), array( 'currency' => $this->get_currency() ) );
196
- }
197
-
198
- if ( $refunded = $order->get_total_refunded_for_item( $item_id ) ) {
199
- echo '<br/><small class="refunded">-' . wc_price( $refunded, array( 'currency' => $this->get_currency() ) ) . '</small>';
200
- }
201
- ?>
202
- </td>
203
- </tr>
204
-
205
-
206
- <?php endforeach; ?>
207
- <?php endforeach; ?>
208
-
209
- <!-- Space -->
210
- <tr class="space">
211
- <td colspan="<?php echo $this->columns_count; ?>"></td>
212
- </tr>
213
- </tbody>
214
- <tfoot>
215
- <!-- Table footers -->
216
- <!-- Discount -->
217
- <?php if( $this->template_options['bewpi_show_discount'] && $this->get_total_discount() !== 0 ) { ?>
218
- <tr class="discount after-products">
219
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
220
- <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Discount', 'woocommerce-pdf-invoices' ); ?></td>
221
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_discount(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
222
- </tr>
223
- <?php } ?>
224
- <!-- Shipping taxable -->
225
- <?php if( $this->template_options['bewpi_show_shipping'] && (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
226
- <tr class="shipping after-products">
227
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
228
- <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping', 'woocommerce-pdf-invoices' ); ?></td>
229
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
230
- </tr>
231
- <?php } ?>
232
- <!-- Subtotal -->
233
- <?php if( $this->template_options['bewpi_show_subtotal'] ) { ?>
234
- <tr class="subtotal after-products">
235
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
236
- <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Subtotal', 'woocommerce-pdf-invoices' ); ?></td>
237
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
238
- </tr>
239
- <?php } ?>
240
- <!-- Shipping not taxable -->
241
- <?php if( $this->template_options['bewpi_show_shipping'] && ! (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
242
- <tr class="shipping after-products">
243
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
244
- <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping', 'woocommerce-pdf-invoices' ); ?></td>
245
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
246
- </tr>
247
- <?php } ?>
248
- <!-- Fees -->
249
- <?php
250
- $line_items_fee = $this->order->get_fees();
251
- foreach ( $line_items_fee as $item_id => $item ) :
252
- ?>
253
- <tr class="after-products">
254
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
255
- <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php echo ! empty( $item['name'] ) ? esc_html( $item['name'] ) : __( 'Fee', 'woocommerce' ); ?></td>
256
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right">
257
- <?php
258
- echo ( isset( $item['line_total'] ) ) ? wc_price( wc_round_tax_total( $item['line_total'] ) ) : '';
259
-
260
- if ( $refunded = $this->order->get_total_refunded_for_item( $item_id, 'fee' ) ) {
261
- echo '<br/><small class="refunded">-' . wc_price( $refunded, array( 'currency' => $this->order->get_order_currency() ) ) . '</small>';
262
- }
263
- ?>
264
- </td>
265
- </tr>
266
- <?php endforeach; ?>
267
- <!-- Tax -->
268
- <?php if( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() ) :
269
- foreach ( $this->get_taxes() as $tax ) : ?>
270
- <tr class="after-products">
271
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
272
- <td colspan="<?php echo $this->colspan['right_left']; ?>"><?php echo $tax->label; ?></td>
273
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $tax->amount, array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
274
- </tr>
275
- <?php endforeach; ?>
276
- <?php endif; ?>
277
- <!-- Total -->
278
- <tr class="after-products">
279
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
280
- <td colspan="<?php echo $this->colspan['right_left']; ?>" class="total"><?php _e( 'Total', 'woocommerce-pdf-invoices' ); ?></td>
281
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="grand-total align-right" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_total(); ?></td>
282
- </tr>
283
- <!-- Refunded -->
284
- <?php if ( $this->get_total_refunded() > 0 ) { ?>
285
- <tr class="after-products">
286
- <td colspan="<?php echo $this->colspan['left']; ?>"></td>
287
- <td colspan="<?php echo $this->colspan['right_left']; ?>" class="refunded"><?php _e( 'Refunded', 'woocommerce-pdf-invoices' ); ?></td>
288
- <td colspan="<?php echo $this->colspan['right_right']; ?>" class="refunded align-right"><?php echo '-' . wc_price( $this->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
289
- </tr>
290
- <?php } ?>
291
- </tfoot>
292
- </table>
293
- <table id="terms-notes">
294
- <!-- Notes & terms -->
295
- <tr>
296
- <td class="border" colspan="3">
297
- <?php echo nl2br( $this->template_options['bewpi_terms'] ); ?>
298
- </td>
299
- </tr>
300
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/templates/invoices/global/micro/footer.php DELETED
@@ -1,22 +0,0 @@
1
- <table class="foot">
2
- <tbody>
3
- <tr>
4
- <td class="company-details" style="border-top: 4px solid <?php echo $this->template_options['bewpi_color_theme']; ?>;">
5
- <p>
6
- <?php echo nl2br( $this->template_options[ 'bewpi_left_footer_column' ] ); ?>
7
- </p>
8
- </td>
9
- <td class="payment" style="border-top: 4px solid <?php echo $this->template_options['bewpi_color_theme']; ?>;">
10
- <p>
11
- <?php
12
- if ( $this->template_options[ 'bewpi_right_footer_column' ] !== "" ) {
13
- echo nl2br( $this->template_options['bewpi_right_footer_column'] );
14
- } else {
15
- printf( __( '%s of %s', 'woocommerce-pdf-invoices' ), '{PAGENO}', '{nbpg}' );
16
- }
17
- ?>
18
- </p>
19
- </td>
20
- </tr>
21
- </tbody>
22
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/templates/invoices/global/micro/header.php DELETED
@@ -1,13 +0,0 @@
1
- <table class="company two-column">
2
- <tbody>
3
- <tr>
4
- <td class="logo">
5
- <?php $this->get_company_logo_html(); ?>
6
- </td>
7
- <td class="info">
8
- <?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?><br/>
9
- <?php echo nl2br( $this->template_options['bewpi_company_details'] ); ?>
10
- </td>
11
- </tr>
12
- </tbody>
13
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/templates/invoices/global/micro/style.css DELETED
@@ -1,136 +0,0 @@
1
- div, table, td, tr, tfoot, tbody, thead, span, h1, h2, h3, h4, span, p {
2
- /*border: 1px solid black;*/
3
- }
4
- h1.company-logo {
5
- font-size: 30px;
6
- }
7
- img.company-logo {
8
- max-height: 150px;
9
- }
10
- table {
11
- border-collapse: collapse;
12
- font-size: 14px;
13
- width: 100%;
14
- color: #757575;
15
- }
16
- table.products th {
17
- border-bottom: 2px solid #A5A5A5;
18
- }
19
- table.products td{
20
- vertical-align: top;
21
- }
22
- table.products td, table.products th {
23
- padding: 5px;
24
- }
25
- tr.product-row td {
26
- border-bottom: 1px solid #CECECE;
27
- }
28
- td.total, td.grand-total {
29
- border-top: 4px solid #8D8D8D;
30
- padding-bottom: 0; margin-bottom: 0;
31
- }
32
- td.grand-total {
33
- font-size: 16px !important;
34
- }
35
- table, tbody, h1 {
36
- margin: 0;
37
- padding: 0;
38
- }
39
- h1 {
40
- font-size: 36px;
41
- }
42
- span {
43
- display: block;
44
- width: 100%;
45
- }
46
- .align-left { text-align: left; }
47
- .align-right { text-align: right; }
48
- .company {
49
- margin-bottom: 40px;
50
- }
51
- .company .logo {
52
- text-align: left;
53
- }
54
- .company .info {
55
- text-align: left;
56
- vertical-align: middle;
57
- }
58
- .two-column {
59
- margin-bottom: 40px;
60
- width: 100%;
61
- }
62
- .two-column td {
63
- text-align: left;
64
- vertical-align: top;
65
- width: 50%;
66
- }
67
- .invoice-head {
68
- margin-bottom: 20px;
69
- margin-right: -64px;
70
- }
71
- .invoice-head td {
72
- text-align: left;
73
- }
74
- .invoice-head .title {
75
- color: #525252;
76
- }
77
- td.invoice-details {
78
- vertical-align: top;
79
- }
80
- .number {
81
- font-size: 16px;
82
- }
83
- .small-font {
84
- font-size: 12px;
85
- }
86
- .total-amount p {
87
- margin: 0; padding: 0;
88
- }
89
- .total-amount {
90
- padding: 20px 20px 30px 20px;
91
- width: 54%;
92
- }
93
- .total-amount, .total-amount h1 {
94
- color: white;
95
- }
96
- div.item-attribute {
97
- font-size: 12px;
98
- margin-top: 10px;
99
- }
100
- .invoice {
101
- margin-bottom: 20px;
102
- }
103
- .foot {
104
- margin: 0 -64px;
105
- font-size: 12px;
106
- }
107
- .foot td.border {
108
- padding: 20px 40px;
109
- width: 100%;
110
- text-align: center;
111
- }
112
- td.company-details, td.payment {
113
- padding: 20px 40px 20px 40px;
114
- text-align: center;
115
- vertical-align: top;
116
- width: 50%;
117
- }
118
- .foot td {
119
- border: 1px solid white;
120
- }
121
- .refunded {
122
- color: #a00 !important;
123
- }
124
- .total-without-refund {
125
- color: #757575 !important;
126
- }
127
- .space td {
128
- padding-bottom: 35px;
129
- }
130
- table.products td {
131
- overflow: hidden;
132
- }
133
- table.customer-notes {
134
- margin-top: 30px;
135
- text-align: center;
136
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/templates/invoices/simple/micro/footer.php CHANGED
@@ -1,24 +1,10 @@
1
  <table class="foot border" style="border-top: 4px solid <?php echo $this->template_options['bewpi_color_theme']; ?>;">
2
  <tr>
3
  <td class="company-details">
4
- <p>
5
- <?php echo nl2br( str_replace( '[payment_method]',
6
- $this->order->payment_method_title,
7
- $this->template_options[ 'bewpi_left_footer_column' ] ) ); ?>
8
- </p>
9
  </td>
10
  <td class="payment">
11
- <p>
12
- <?php
13
- if ( $this->template_options[ 'bewpi_right_footer_column' ] !== "" ) {
14
- echo nl2br( str_replace( '[payment_method]',
15
- $this->order->payment_method_title,
16
- $this->template_options['bewpi_right_footer_column'] ) );
17
- } else {
18
- printf( __( '%s of %s', 'woocommerce-pdf-invoices' ), '{PAGENO}', '{nbpg}' );
19
- }
20
- ?>
21
- </p>
22
  </td>
23
  </tr>
24
  </table>
1
  <table class="foot border" style="border-top: 4px solid <?php echo $this->template_options['bewpi_color_theme']; ?>;">
2
  <tr>
3
  <td class="company-details">
4
+ <?php $this->left_footer_column_html(); ?>
 
 
 
 
5
  </td>
6
  <td class="payment">
7
+ <?php $this->right_footer_column_html(); ?>
 
 
 
 
 
 
 
 
 
 
8
  </td>
9
  </tr>
10
  </table>
includes/templates/invoices/simple/micro/header.php CHANGED
@@ -1,9 +1,9 @@
1
- <table class="company two-column">
2
  <tr>
3
  <td class="logo" width="50%"><?php $this->get_company_logo_html(); ?></td>
4
- <td class="info" width="50%">
5
- <?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?><br/>
6
- <?php echo nl2br( $this->template_options['bewpi_company_details'] ); ?>
7
  </td>
8
  </tr>
9
  </table>
1
+ <table class="company two-column" style="overflow: hidden;">
2
  <tr>
3
  <td class="logo" width="50%"><?php $this->get_company_logo_html(); ?></td>
4
+ <td class="info small-font" width="50%">
5
+ <?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?><br/>
6
+ <?php echo nl2br( $this->template_options['bewpi_company_details'] ); ?>
7
  </td>
8
  </tr>
9
  </table>
includes/templates/invoices/simple/micro/style.css CHANGED
@@ -10,6 +10,22 @@ table {
10
  width: 100%;
11
  color: #757575;
12
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  table.products th {
14
  border-bottom: 2px solid #A5A5A5;
15
  }
@@ -50,24 +66,6 @@ span {
50
  .nowrap {
51
  white-space: nowrap;
52
  }
53
- .align-left { text-align: left; }
54
- .align-right { text-align: right; }
55
- .company {
56
- margin-bottom: 30px;
57
- }
58
- .company .info, .company .logo {
59
- text-align: left;
60
- vertical-align: middle;
61
- }
62
- .two-column {
63
- margin-bottom: 40px;
64
- width: 100%;
65
- }
66
- .two-column td {
67
- text-align: left;
68
- vertical-align: top;
69
- width: 50%;
70
- }
71
  .invoice-head {
72
  margin-bottom: 30px;
73
  margin-right: -64px;
10
  width: 100%;
11
  color: #757575;
12
  }
13
+ .align-left { text-align: left; }
14
+ .align-right { text-align: right; }
15
+ .company .info,
16
+ .company .logo {
17
+ text-align: left;
18
+ vertical-align: middle;
19
+ font-size: 14px !important;
20
+ }
21
+ table.two-column {
22
+ margin: 40px 0;
23
+ width: 100%;
24
+ }
25
+ .two-column td {
26
+ text-align: left;
27
+ vertical-align: top;
28
+ }
29
  table.products th {
30
  border-bottom: 2px solid #A5A5A5;
31
  }
66
  .nowrap {
67
  white-space: nowrap;
68
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  .invoice-head {
70
  margin-bottom: 30px;
71
  margin-right: -64px;
lang/woocommerce-pdf-invoices-de_DE.mo CHANGED
Binary file
lang/woocommerce-pdf-invoices-de_DE.po CHANGED
@@ -1,1177 +1,1239 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
5
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: de_DE\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.3\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: includes/abstracts/abstract-bewpi-document.php:64
23
- msgid "Paid"
24
- msgstr ""
25
-
26
- #: includes/abstracts/abstract-bewpi-invoice.php:262
27
- #, php-format
28
- msgid ""
29
- "Could not create invoice. In order to reset invoice number with %d, delete "
30
- "all invoices with invoice number %s and greater."
31
- msgstr ""
32
-
33
- #: includes/abstracts/abstract-bewpi-invoice.php:267
34
- #, php-format
35
- msgid ""
36
- "Could not create invoice. Invoice with invoice number %s already exists. "
37
- "First delete invoice and try again."
38
- msgstr ""
39
-
40
- #: includes/abstracts/abstract-bewpi-invoice.php:310
41
- #, php-format
42
- msgid ""
43
- "Invoice with invoice number %s not found. First create invoice and try again."
44
- msgstr ""
45
-
46
- #: includes/abstracts/abstract-bewpi-invoice.php:372
47
- #, php-format
48
- msgid "VAT Number: %s"
49
- msgstr ""
50
-
51
- #: includes/abstracts/abstract-bewpi-invoice.php:383
52
- #, php-format
53
- msgid "Purchase Order Number: %s"
54
- msgstr ""
55
-
56
- #: includes/abstracts/abstract-bewpi-setting.php:98
57
- msgid "Allowed HTML tags: "
58
- msgstr ""
59
-
60
- #: includes/abstracts/abstract-bewpi-setting.php:173
61
- msgid "Remove logo"
62
- msgstr "Logo entfernen"
63
-
64
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
- msgid "Attach to Email"
66
- msgstr "An Email anhängen"
67
-
68
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
69
- msgid "Processing order"
70
- msgstr "Bearbeiten der Bestellung"
71
-
72
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
73
- msgid "Completed order"
74
- msgstr "Fertiggestellte Bestellung"
75
-
76
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
77
- msgid "Customer invoice"
78
- msgstr "Kundenrechnung"
79
-
80
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
81
- msgid "Do not attach"
82
- msgstr "Nicht anhängen"
83
-
84
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
85
- msgid "Attach to New order Email"
86
- msgstr "An neue Bestell-Email anhängen"
87
-
88
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
89
- msgid "View PDF"
90
- msgstr ""
91
-
92
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
93
- msgid "Download"
94
- msgstr ""
95
-
96
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
97
- msgid "Open in new browser tab/window"
98
- msgstr ""
99
-
100
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
101
- msgid "Enable download from account"
102
- msgstr ""
103
-
104
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
105
- msgid ""
106
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
107
- "page.</div>"
108
- msgstr ""
109
-
110
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
111
- msgid "Enable Email It In"
112
- msgstr "Enable Email It In"
113
-
114
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
115
- msgid "Email It In account"
116
- msgstr "Email It In account"
117
-
118
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
119
- #, php-format
120
- msgid "Get your account from your Email It In %suser account%s."
121
- msgstr "Get your account from your Email It In %suser account%s."
122
-
123
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
124
- msgid "Enable mPDF debugging"
125
- msgstr ""
126
-
127
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
128
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
129
- msgstr ""
130
-
131
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
132
- msgid "Email Options"
133
- msgstr "Email Optionen"
134
-
135
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
136
- msgid "Download Options"
137
- msgstr ""
138
-
139
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
140
- msgid "Cloud Storage Options"
141
- msgstr "Cloud Storage Optionen"
142
-
143
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
144
- msgid "Debug Options"
145
- msgstr ""
146
-
147
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
148
- #, php-format
149
- msgid ""
150
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
151
- "Egnyte and enter your account below."
152
- msgstr ""
153
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
154
- "Egnyte and enter your account below."
155
-
156
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
157
- #: includes/be-woocommerce-pdf-invoices.php:219
158
- msgid "Template"
159
- msgstr "Template"
160
-
161
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
162
- msgid "Color theme"
163
- msgstr "Farben Theme"
164
-
165
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
166
- msgid "Date format"
167
- msgstr "Datumsformat"
168
-
169
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
170
- #, php-format
171
- msgid "%sFormat%s of invoice date and order date."
172
- msgstr "%sFormat%s von Rechnungsdatum und Bestellungsdatum."
173
-
174
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
175
- msgid "Display prices including tax"
176
- msgstr "Preis inklusive Mehrwertsteuer anzeigen"
177
-
178
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
179
- msgid ""
180
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
181
- "still be excluding tax, so disable it within the visible columns section."
182
- msgstr ""
183
-
184
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
185
- msgid "Shipping taxable"
186
- msgstr ""
187
-
188
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
189
- msgid "Enable to display subtotal including shipping."
190
- msgstr ""
191
-
192
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
193
- msgid "Mark invoice as paid"
194
- msgstr ""
195
-
196
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
197
- msgid "Invoice will be watermarked when order has been paid."
198
- msgstr ""
199
-
200
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
201
- msgid "Company name"
202
- msgstr "Firmenname"
203
-
204
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
205
- msgid "Company logo"
206
- msgstr "Firmenlogo"
207
-
208
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
209
- msgid "Company address"
210
- msgstr "Firmenadresse"
211
-
212
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
213
- msgid "Displayed in upper-right corner near logo."
214
- msgstr ""
215
-
216
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
217
- msgid "Company details"
218
- msgstr "Firmendetails"
219
-
220
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
221
- msgid "Displayed below company address."
222
- msgstr ""
223
-
224
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
225
- msgid "Thank you text"
226
- msgstr ""
227
-
228
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
229
- msgid "Displayed in big colored bar directly after invoice total."
230
- msgstr ""
231
-
232
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
233
- msgid "Thank you for your purchase!"
234
- msgstr ""
235
-
236
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
237
- msgid "Show customer notes"
238
- msgstr "Kundenkommentare anzeigen"
239
-
240
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
241
- msgid "Terms & conditions, policies etc."
242
- msgstr "AGB’s‚ Richtlinien etc."
243
-
244
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
245
- #, php-format
246
- msgid ""
247
- "Displayed below customer notes and above footer. Want to attach additional "
248
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
249
- msgstr ""
250
-
251
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
252
- msgid "Items will be shipped within 2 days."
253
- msgstr ""
254
-
255
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
256
- msgid "Left footer column."
257
- msgstr ""
258
-
259
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
260
- #, php-format
261
- msgid "<b>Payment method</b> %s"
262
- msgstr ""
263
-
264
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
265
- msgid "Right footer column."
266
- msgstr ""
267
-
268
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
269
- msgid "Leave empty to show page numbering."
270
- msgstr ""
271
-
272
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
273
- msgid "Type"
274
- msgstr "Type"
275
-
276
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
277
- msgid "WooCommerce order number"
278
- msgstr "WooCommerce Bestellungsnummer"
279
-
280
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
281
- msgid "Sequential number"
282
- msgstr "Aufeinanderfolgende nummer"
283
-
284
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
285
- msgid "Reset invoice counter"
286
- msgstr "Reset invoice counter"
287
-
288
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
289
- msgid "Next"
290
- msgstr "Weiter"
291
-
292
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
293
- msgid ""
294
- "Reset the invoice counter and start counting from given invoice number.<br/"
295
- "><b>Note:</b> Only available for Sequential numbering and value will be "
296
- "editable by selecting checkbox. Next number needs to be lower then highest "
297
- "existing invoice number or delete invoices first."
298
- msgstr ""
299
-
300
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
301
- msgid "Digits"
302
- msgstr "Ziffern"
303
-
304
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
305
- msgid "[prefix]"
306
- msgstr "[prefix]"
307
-
308
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
309
- msgid "[suffix]"
310
- msgstr "[suffix]"
311
-
312
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
313
- msgid "Format"
314
- msgstr "Format"
315
-
316
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
317
- #, php-format
318
- msgid ""
319
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
320
- "slashes aren't supported."
321
- msgstr ""
322
-
323
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
324
- msgid "Reset on 1st of january"
325
- msgstr "Am 1. Januar zurücksetzen"
326
-
327
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
328
- #: includes/templates/invoices/global/micro/body.php:44
329
- #: includes/templates/invoices/simple/micro/body.php:48
330
- msgid "SKU"
331
- msgstr "Prod.Nr."
332
-
333
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
334
- #: includes/templates/invoices/global/micro/body.php:236
335
- #: includes/templates/invoices/simple/micro/body.php:101
336
- msgid "Subtotal"
337
- msgstr "Zwischensumme"
338
-
339
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
340
- msgid "Tax (item)"
341
- msgstr ""
342
-
343
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
344
- msgid "Tax (total)"
345
- msgstr ""
346
-
347
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
348
- #: includes/templates/invoices/global/micro/body.php:220
349
- #: includes/templates/invoices/simple/micro/body.php:85
350
- msgid "Discount"
351
- msgstr "Rabatt"
352
-
353
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
354
- #: includes/templates/invoices/global/micro/body.php:228
355
- #: includes/templates/invoices/global/micro/body.php:244
356
- #: includes/templates/invoices/simple/micro/body.php:93
357
- #: includes/templates/invoices/simple/micro/body.php:109
358
- msgid "Shipping"
359
- msgstr "Lieferung"
360
-
361
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
362
- msgid "General Options"
363
- msgstr "Allgemeine Optionen"
364
-
365
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
366
- msgid "Invoice Number Options"
367
- msgstr "Rechnungsnummer Optionen"
368
-
369
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
370
- msgid "Header Options"
371
- msgstr "Header Optionen"
372
-
373
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
374
- msgid "Body Options"
375
- msgstr ""
376
-
377
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
378
- msgid "Footer Options"
379
- msgstr "Footer Optionen"
380
-
381
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
382
- msgid "Visible Columns"
383
- msgstr "Sichtbare Spalten"
384
-
385
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
386
- msgid "These are the general template options."
387
- msgstr "Dies sind die allgemeinen template Optionen."
388
-
389
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
390
- msgid "These are the invoice number options."
391
- msgstr "Dies sind die Rechnungsnummer Optionen"
392
-
393
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
394
- msgid "The header will be visible on every page. "
395
- msgstr "Der Header wird auf jeder Seite sichtbar sein."
396
-
397
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
398
- msgid "The footer will be visible on every page."
399
- msgstr ""
400
-
401
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
402
- msgid ""
403
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
404
- "order payment method."
405
- msgstr ""
406
-
407
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
408
- msgid "Enable or disable the columns."
409
- msgstr "Aktiviere oder deaktiviere die Spalten."
410
-
411
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
412
- msgid "File is invalid and contains either '..' or './'."
413
- msgstr "Datei ist ungültig und enthält entweder '...' oder './'."
414
-
415
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
416
- msgid "File is invalid and contains ':' after the first character."
417
- msgstr "Datei ist ungültig und enthält ':' nach dem ersten Buchstaben."
418
-
419
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
420
- msgid "File should be less then 2MB."
421
- msgstr "Datei sollte kleiner als 2MB sein."
422
-
423
- #: includes/be-woocommerce-pdf-invoices.php:126
424
- #, php-format
425
- msgid ""
426
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
427
- "PDF Invoices</strong></a>."
428
- msgstr ""
429
-
430
- #: includes/be-woocommerce-pdf-invoices.php:136
431
- msgid "Settings"
432
- msgstr "Einstellungen"
433
-
434
- #: includes/be-woocommerce-pdf-invoices.php:137
435
- msgid "Premium"
436
- msgstr "Premium"
437
-
438
- #: includes/be-woocommerce-pdf-invoices.php:182
439
- msgid "Invalid request"
440
- msgstr "Ungültige Anfrage"
441
-
442
- #: includes/be-woocommerce-pdf-invoices.php:185
443
- msgid "Invalid order ID"
444
- msgstr ""
445
-
446
- #: includes/be-woocommerce-pdf-invoices.php:191
447
- msgid "Access denied"
448
- msgstr ""
449
-
450
- #: includes/be-woocommerce-pdf-invoices.php:218
451
- msgid "General"
452
- msgstr "Allgemein"
453
-
454
- #: includes/be-woocommerce-pdf-invoices.php:242
455
- msgid "Invoices"
456
- msgstr "Rechnungen"
457
-
458
- #: includes/be-woocommerce-pdf-invoices.php:281
459
- #, php-format
460
- msgid ""
461
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
462
- "%s★★★★★%s rating. A huge thank you in advance!"
463
- msgstr ""
464
-
465
- #: includes/be-woocommerce-pdf-invoices.php:282
466
- #, php-format
467
- msgid "Version %s"
468
- msgstr ""
469
-
470
- #: includes/be-woocommerce-pdf-invoices.php:356
471
- msgid "PDF Invoice"
472
- msgstr "PDF Rechnung"
473
-
474
- #: includes/be-woocommerce-pdf-invoices.php:382
475
- msgid "Invoiced on:"
476
- msgstr "In Rechnung gestellt am:"
477
-
478
- #: includes/be-woocommerce-pdf-invoices.php:386
479
- msgid "Invoice number:"
480
- msgstr "Rechnungsnummer:"
481
-
482
- #: includes/be-woocommerce-pdf-invoices.php:424
483
- msgid "View invoice"
484
- msgstr "Rechnung anzeigen"
485
-
486
- #: includes/be-woocommerce-pdf-invoices.php:424
487
- msgid "View"
488
- msgstr "Anzeigen"
489
-
490
- #: includes/be-woocommerce-pdf-invoices.php:425
491
- msgid "Cancel invoice"
492
- msgstr "Rechnung stornieren"
493
-
494
- #: includes/be-woocommerce-pdf-invoices.php:425
495
- msgid "Cancel"
496
- msgstr "abbrechen"
497
-
498
- #: includes/be-woocommerce-pdf-invoices.php:427
499
- msgid "Are you sure to delete the invoice?"
500
- msgstr "Bist du dir sicher, dass du die Rechnung löschen willst?"
501
-
502
- #: includes/be-woocommerce-pdf-invoices.php:430
503
- msgid "Create invoice"
504
- msgstr "Rechnung erstellen"
505
-
506
- #: includes/be-woocommerce-pdf-invoices.php:430
507
- msgid "Create"
508
- msgstr "Erstellen"
509
-
510
- #: includes/be-woocommerce-pdf-invoices.php:453
511
- #, php-format
512
- msgid "Invoice %s (PDF)"
513
- msgstr "Rechnung %s (PDF)"
514
-
515
- #: includes/be-woocommerce-pdf-invoices.php:563
516
- #, php-format
517
- msgid ""
518
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
519
- "really need your ★★★★★ rating. It will support future development big-time. "
520
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
521
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
522
- "done it!</a>"
523
- msgstr ""
524
-
525
- #: includes/class-bewpi-invoice.php:48
526
- msgid ""
527
- "Whoops, no template found. Please select a template on the Template settings "
528
- "page first."
529
- msgstr ""
530
-
531
- #: includes/partials/settings-sidebar.php:2
532
- msgid "WooCommerce PDF Invoices Premium"
533
- msgstr ""
534
-
535
- #: includes/partials/settings-sidebar.php:4
536
- msgid ""
537
- "This plugin offers a premium version which comes with the following features:"
538
- msgstr ""
539
-
540
- #: includes/partials/settings-sidebar.php:5
541
- msgid "Bill periodically by generating and sending global invoices."
542
- msgstr ""
543
-
544
- #: includes/partials/settings-sidebar.php:6
545
- msgid "Add additional PDF's to customer invoices."
546
- msgstr ""
547
-
548
- #: includes/partials/settings-sidebar.php:7
549
- msgid "Send customer invoices directly to suppliers and others."
550
- msgstr ""
551
-
552
- #: includes/partials/settings-sidebar.php:8
553
- #, php-format
554
- msgid ""
555
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
556
- msgstr ""
557
-
558
- #: includes/partials/settings-sidebar.php:10
559
- msgid "Learn more"
560
- msgstr ""
561
-
562
- #: includes/partials/settings-sidebar.php:13
563
- msgid "Stay up-to-date"
564
- msgstr ""
565
-
566
- #: includes/partials/settings-sidebar.php:17
567
- msgid ""
568
- "We're constantly developing new features, stay up-to-date by subscribing to "
569
- "our newsletter."
570
- msgstr ""
571
-
572
- #: includes/partials/settings-sidebar.php:23
573
- msgid "Your email address"
574
- msgstr ""
575
-
576
- #: includes/partials/settings-sidebar.php:29
577
- msgid "Signup"
578
- msgstr ""
579
-
580
- #: includes/partials/settings-sidebar.php:32
581
- msgid "No spam, ever. Unsubscribe at any time"
582
- msgstr ""
583
-
584
- #: includes/partials/settings-sidebar.php:41
585
- msgid "About"
586
- msgstr ""
587
-
588
- #: includes/partials/settings-sidebar.php:43
589
- msgid ""
590
- "This plugin is an open source project wich aims to fill the invoicing gap of "
591
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
592
- msgstr ""
593
-
594
- #: includes/partials/settings-sidebar.php:45
595
- msgid "<b>Version</b>: "
596
- msgstr ""
597
-
598
- #: includes/partials/settings-sidebar.php:47
599
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
600
- msgstr ""
601
-
602
- #: includes/partials/settings-sidebar.php:50
603
- msgid "Support"
604
- msgstr "Hilfe"
605
-
606
- #: includes/partials/settings-sidebar.php:52
607
- msgid ""
608
- "We will never ask for donations, but to garantee future development, we do "
609
- "need your support. Please show us your appreciation by leaving a <a href="
610
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
611
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
612
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
613
- msgstr ""
614
-
615
- #: includes/partials/settings-sidebar.php:72
616
- msgid ""
617
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
618
- msgstr ""
619
-
620
- #: includes/partials/settings-sidebar.php:77
621
- msgid "Need Help?"
622
- msgstr ""
623
-
624
- #: includes/partials/settings-sidebar.php:79
625
- msgid "Frequently Asked Questions"
626
- msgstr ""
627
-
628
- #: includes/partials/settings-sidebar.php:80
629
- msgid "Support forum"
630
- msgstr ""
631
-
632
- #: includes/partials/settings-sidebar.php:81
633
- msgid "Request a feature"
634
- msgstr ""
635
-
636
- #: includes/partials/settings-sidebar.php:82
637
- msgid "Email us"
638
- msgstr ""
639
-
640
- #: includes/templates/invoices/global/micro/body.php:5
641
- #: includes/templates/invoices/simple/micro/body.php:5
642
- msgid "Invoice to"
643
- msgstr "Rechnung an"
644
-
645
- #: includes/templates/invoices/global/micro/body.php:7
646
- #: includes/templates/invoices/simple/micro/body.php:7
647
- #, php-format
648
- msgid "Phone: %s"
649
- msgstr ""
650
-
651
- #: includes/templates/invoices/global/micro/body.php:11
652
- #: includes/templates/invoices/simple/micro/body.php:11
653
- msgid "Ship to"
654
- msgstr "Lieferadresse"
655
-
656
- #: includes/templates/invoices/global/micro/body.php:22
657
- msgid "Global Invoice"
658
- msgstr "Global Invoice"
659
-
660
- #: includes/templates/invoices/global/micro/body.php:40
661
- #: includes/templates/invoices/simple/micro/body.php:44
662
- msgid "Description"
663
- msgstr "Beschreibung"
664
-
665
- #: includes/templates/invoices/global/micro/body.php:48
666
- #: includes/templates/invoices/simple/micro/body.php:52
667
- msgid "Cost"
668
- msgstr "Preis"
669
-
670
- #: includes/templates/invoices/global/micro/body.php:50
671
- #: includes/templates/invoices/simple/micro/body.php:54
672
- msgid "Qty"
673
- msgstr "Anzahl"
674
-
675
- #: includes/templates/invoices/global/micro/body.php:56
676
- #: includes/templates/invoices/simple/micro/body.php:60
677
- msgid "VAT"
678
- msgstr "Mehrwertsteuer"
679
-
680
- #: includes/templates/invoices/global/micro/body.php:67
681
- #: includes/templates/invoices/global/micro/body.php:280
682
- #: includes/templates/invoices/simple/micro/body.php:71
683
- #: includes/templates/invoices/simple/micro/body.php:145
684
- msgid "Total"
685
- msgstr "Gesamt"
686
-
687
- #: includes/templates/invoices/global/micro/body.php:75
688
- #, php-format
689
- msgid "Order #%d - %s"
690
- msgstr "Bestellung #%d - %s"
691
-
692
- #: includes/templates/invoices/global/micro/body.php:255
693
- #: includes/templates/invoices/simple/micro/body.php:120
694
- msgid "Fee"
695
- msgstr "Gebühr"
696
-
697
- #: includes/templates/invoices/global/micro/body.php:287
698
- #: includes/templates/invoices/simple/micro/body.php:152
699
- msgid "Refunded"
700
- msgstr "Erstattet"
701
-
702
- #: includes/templates/invoices/global/micro/footer.php:15
703
- #: includes/templates/invoices/simple/micro/footer.php:18
704
- #, php-format
705
- msgid "%s of %s"
706
- msgstr ""
707
-
708
- #: includes/templates/invoices/simple/micro/body.php:22
709
- msgid "Invoice"
710
- msgstr "Rechnung"
711
-
712
- #: includes/templates/invoices/simple/micro/body.php:25
713
- #, fuzzy, php-format
714
- msgid "Order Number: %s"
715
- msgstr "Bestellungsnummer:"
716
-
717
- #: includes/templates/invoices/simple/micro/body.php:26
718
- #, php-format
719
- msgid "Order Date: %s"
720
- msgstr "Bestellungsdatum: %s"
721
-
722
- #: includes/templates/invoices/simple/micro/body.php:289
723
- #: includes/templates/invoices/simple/micro/body.php:294
724
- msgid "Customer note"
725
- msgstr "Kundenkommentar"
726
-
727
- #~ msgid "Purchase email"
728
- #~ msgstr "Käufer Email"
729
-
730
- #~ msgid ""
731
- #~ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
732
- #~ "\">wcpdfinvoices.com</a>."
733
- #~ msgstr ""
734
- #~ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
735
- #~ "\">wcpdfinvoices.com</a>."
736
-
737
- #~ msgid "License"
738
- #~ msgstr "Lizenz"
739
-
740
- #~ msgid ""
741
- #~ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
742
- #~ "\">wcpdfinvoices.com</a> to receive updates."
743
- #~ msgstr ""
744
- #~ "Gib deinen Lizenzschlüssel von <a href=\"http://wcpdfinvoices.com"
745
- #~ "\">wcpdfinvoices.com</a> ein um Updates zu erhalten."
746
-
747
- #~ msgid "Processing Renewal Order"
748
- #~ msgstr "Bearbeiten der erneuerten Bestellung"
749
-
750
- #~ msgid "Completed Renewal Order"
751
- #~ msgstr "Erneuerte Rechnung fertiggestellt"
752
-
753
- #~ msgid "Customer Renewal Invoice"
754
- #~ msgstr "Erneuerte Kundenrechnung"
755
-
756
- #~ msgid "Attach to New Renewal Order Email"
757
- #~ msgstr "An neue erneuerte Bestell-Email anhängen"
758
-
759
- #~ msgid "PDF attachment"
760
- #~ msgstr "PDF-Anhang"
761
-
762
- #~ msgid "Add for example a PDF with your terms & conditions."
763
- #~ msgstr "Hänge ein PDF-Dokument an, wie zum Beispiel deine AGBs."
764
-
765
- #~ msgid "Suppliers"
766
- #~ msgstr "Lieferanten"
767
-
768
- #~ msgid ""
769
- #~ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by "
770
- #~ "simply adding there Email It In email addresses. Email addresses need to "
771
- #~ "be seperated by comma's."
772
- #~ msgstr ""
773
- #~ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by "
774
- #~ "simply adding there Email It In email addresses. Email addresses need to "
775
- #~ "be seperated by comma's."
776
-
777
- #~ msgid ""
778
- #~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
779
- #~ "generate a global invoice from within there account</div>"
780
- #~ msgstr ""
781
- #~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
782
- #~ "generate a global invoice from within there account</div>"
783
-
784
- #~ msgid "Customer generation period"
785
- #~ msgstr "Customer generation period"
786
-
787
- #~ msgid ""
788
- #~ "Should your customers have the ability to generate a global invoice by "
789
- #~ "month or by year?<br/><strong>Note:</strong> Customer generation should "
790
- #~ "be enabled."
791
- #~ msgstr ""
792
- #~ "Should your customers have the ability to generate a global invoice by "
793
- #~ "month or by year?<br/><strong>Note:</strong> Customer generation should "
794
- #~ "be enabled."
795
-
796
- #~ msgid "Month"
797
- #~ msgstr "Monat"
798
-
799
- #~ msgid "Year"
800
- #~ msgstr "Jahr"
801
-
802
- #~ msgid "Send to your Cloud Storage"
803
- #~ msgstr "An Cloud Storage senden"
804
-
805
- #~ msgid "Email to customer"
806
- #~ msgstr "Email an Kunden"
807
-
808
- #~ msgid "Email to supplier(s)"
809
- #~ msgstr "Email an Lieferanten"
810
-
811
- #~ msgid "Email subject"
812
- #~ msgstr "Email Betreff"
813
-
814
- #~ msgid "Subject for the global invoice email."
815
- #~ msgstr "Subject for the global invoice email."
816
-
817
- #~ msgid "Email message"
818
- #~ msgstr "Email Nachricht"
819
-
820
- #~ msgid "Message for the global invoice email."
821
- #~ msgstr "Message for the global invoice email."
822
-
823
- #~ msgid "Premium Options"
824
- #~ msgstr "Premium Optionen"
825
-
826
- #~ msgid "Woocommerce Subscriptions Email Options"
827
- #~ msgstr "Woocommerce Subscriptions Email Options"
828
-
829
- #~ msgid "Attachment Options"
830
- #~ msgstr "Anhangs Optionen"
831
-
832
- #~ msgid "Supplier Options"
833
- #~ msgstr "Lieferanten Optionen"
834
-
835
- #~ msgid "Global Invoice Options"
836
- #~ msgstr "Global Invoice Options"
837
-
838
- #~ msgid ""
839
- #~ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
840
- #~ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
841
- #~ "should be activated in order to work."
842
- #~ msgstr ""
843
- #~ "PDF Rechnung an <a href=\"http://www.woothemes.com/products/woocommerce-"
844
- #~ "subscriptions/\">WooCommerce Subscriptions</a> email anhängen. Plugin "
845
- #~ "sollte aktiviert sein um die Funktion zu ermöglichen."
846
-
847
- #~ msgid "Attach a PDF to the invoice."
848
- #~ msgstr "Ein PDF-Dokument an die Rechnung anhängen."
849
-
850
- #~ msgid "Send customer invoice automatically to your supplier(s)."
851
- #~ msgstr "Kunden Rechnung automatisch an Lieferanten senden."
852
-
853
- #~ msgid ""
854
- #~ "Generate global invoices on Orders page by selecting multiple orders and "
855
- #~ "applying action or let customers generate periodically from My Account "
856
- #~ "page."
857
- #~ msgstr ""
858
- #~ "Generate global invoices on Orders page by selecting multiple orders and "
859
- #~ "applying action or let customers generate periodically from My Account "
860
- #~ "page."
861
-
862
- #~ msgid "File to large."
863
- #~ msgstr "Datei zu groß."
864
-
865
- #~ msgid "Only PDF files are allowed."
866
- #~ msgstr "Es sind lediglich PDF-Dokumente zulässig."
867
-
868
- #~ msgid "Remove"
869
- #~ msgstr "Entfernen"
870
-
871
- #~ msgid "Choose"
872
- #~ msgstr "Auswählen"
873
-
874
- #~ msgid "Active"
875
- #~ msgstr "Aktiv"
876
-
877
- #~ msgid "Inactive"
878
- #~ msgstr "Inaktiv"
879
-
880
- #~ msgid "Something went wrong."
881
- #~ msgstr "Uuhps! Da ist wohl etwas schief gelaufen."
882
-
883
- #~ msgid "No orders found."
884
- #~ msgstr "Keine Bestellungen gefunden."
885
-
886
- #~ msgid ""
887
- #~ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
888
- #~ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. "
889
- #~ "Get the free version (%s+) and try again.</p>"
890
- #~ msgstr ""
891
- #~ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
892
- #~ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. "
893
- #~ "Get the free version (%s+) and try again.</p>"
894
-
895
- #~ msgid "Generate global invoice"
896
- #~ msgstr "Generate global invoice"
897
-
898
- #~ msgid "Please select more then one order."
899
- #~ msgstr "Bitte mehr als eine Bestellungen auswählen."
900
-
901
- #~ msgid "Global invoice succesfully generated! "
902
- #~ msgstr "Global invoice succesfully generated! "
903
-
904
- #~ msgid "Generate Global Invoice"
905
- #~ msgstr "Generate Global Invoice"
906
-
907
- #~ msgid "Select a month"
908
- #~ msgstr "Monat auswählen"
909
-
910
- #~ msgid "Select a year"
911
- #~ msgstr "Jahr auswählen"
912
-
913
- #~ msgid "Generate invoice"
914
- #~ msgstr "Rechnung generieren."
915
-
916
- #~ msgid "Feel free to use "
917
- #~ msgstr "Feel free to use "
918
-
919
- #~ msgid "Subtotal will be including tax and excluding discount and shipping."
920
- #~ msgstr ""
921
- #~ "Zwischensumme enthält Mehrwertsteuer aber keine Rabatte oder Lieferkosten."
922
-
923
- #~ msgid "Intro text"
924
- #~ msgstr "Einleitungstext"
925
-
926
- #~ msgid ""
927
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
928
- #~ "%s Only available with sequential numbering type and you need to check "
929
- #~ "the checkbox to actually reset the value."
930
- #~ msgstr ""
931
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
932
- #~ "%s Only available with sequential numbering type and you need to check "
933
- #~ "the checkbox to actually reset the value."
934
-
935
- #~ msgid ""
936
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
937
- #~ "is required."
938
- #~ msgstr ""
939
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
940
- #~ "is required."
941
-
942
- #~ msgid "Tax"
943
- #~ msgstr "Steuer"
944
-
945
- #~ msgid "The footer will be visible on every page. "
946
- #~ msgstr "Der Footer wird auf jeder Seite sichtbar sein."
947
-
948
- #~ msgid ""
949
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
950
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
951
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
952
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
953
- #~ msgstr ""
954
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
955
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
956
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
957
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
958
-
959
- #~ msgid "%sPayment%s via"
960
- #~ msgstr "Bezahlt per"
961
-
962
- #~ msgid "PAID"
963
- #~ msgstr "BEZAHLT"
964
-
965
- #~ msgid "UNPAID"
966
- #~ msgstr "NICHT BEZAHLT"
967
-
968
- #~ msgid "Order Number %s"
969
- #~ msgstr "Bestellungsnummer"
970
-
971
- #~ msgid "Order Date %s"
972
- #~ msgstr "Bestellungsdatum"
973
-
974
- #~ msgid "Download invoice (PDF)"
975
- #~ msgstr "Download Rechnung (PDF)"
976
-
977
- #~ msgid ""
978
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
979
- #~ "required."
980
- #~ msgstr ""
981
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
982
- #~ "required."
983
-
984
- #~ msgid "VAT %s"
985
- #~ msgstr "Mehrwertsteuer %s"
986
-
987
- #~ msgid "General Settings"
988
- #~ msgstr "Allgemeine Einstellungen"
989
-
990
- #~ msgid ""
991
- #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
992
- #~ msgstr ""
993
- #~ "Sende Rechnung automatisch an Google Drive, Egnyte, Dropbox of OneDrive"
994
-
995
- #~ msgid "For bookkeeping purposes."
996
- #~ msgstr "Zu Buchhaltungszwecken."
997
-
998
- #~ msgid "Signup at %s and enter your account below."
999
- #~ msgstr "Melde dich an bei %s und gib unten deine Account ein."
1000
-
1001
- #~ msgid "Enter your %s account."
1002
- #~ msgstr "Enter your %s account."
1003
-
1004
- #~ msgid "Invalid type of Email."
1005
- #~ msgstr "Ungültiger Emailtyp."
1006
-
1007
- #~ msgid "Please don't try to change the values."
1008
- #~ msgstr "Bitte versuche nicht die Werte zu ändern."
1009
-
1010
- #~ msgid "Invalid Email address."
1011
- #~ msgstr "Ungültige Email-Adresse."
1012
-
1013
- #~ msgid "Allowed tags: "
1014
- #~ msgstr "Allowed tags: "
1015
-
1016
- #~ msgid "Template Settings"
1017
- #~ msgstr "Template Einstellungen"
1018
-
1019
- #~ msgid "Invoice number type"
1020
- #~ msgstr "Rechnungsnummerntyp"
1021
-
1022
- #~ msgid "Next invoice number"
1023
- #~ msgstr "Nächste Rechnungsnummer"
1024
-
1025
- #~ msgid "Number of digits"
1026
- #~ msgstr "Anzahl der Nachkommastellen"
1027
-
1028
- #~ msgid "Invoice number prefix"
1029
- #~ msgstr "Rechnungsnummer Vorsilbe"
1030
-
1031
- #~ msgid "Invoice number suffix"
1032
- #~ msgstr "Rechnungsnummer Nachsilbe"
1033
-
1034
- #~ msgid "Invoice number format"
1035
- #~ msgstr "Rechnungsnummernformat"
1036
-
1037
- #~ msgid "Reset on 1st January"
1038
- #~ msgstr "Am 1. Januar zurücksetzen"
1039
-
1040
- #~ msgid "Invoice date format"
1041
- #~ msgstr "Format des Rechnungsdatums"
1042
-
1043
- #~ msgid "Order date format"
1044
- #~ msgstr "Format des Bestellungsdatums"
1045
-
1046
- #~ msgid "Show SKU"
1047
- #~ msgstr "Zeige Sorte"
1048
-
1049
- #~ msgid "Show discount"
1050
- #~ msgstr "Zeige Rabatt"
1051
-
1052
- #~ msgid "Show subtotal"
1053
- #~ msgstr "Zeige Zwischensumme"
1054
-
1055
- #~ msgid "Show tax"
1056
- #~ msgstr "Zeige Steuer"
1057
-
1058
- #~ msgid "Show shipping"
1059
- #~ msgstr "Zeige Lieferkosten"
1060
-
1061
- #~ msgid "Color theme of the invoice."
1062
- #~ msgstr "Farb-theme der Rechnung."
1063
-
1064
- #~ msgid ""
1065
- #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
1066
- #~ "png."
1067
- #~ msgstr ""
1068
- #~ "Bitte lade ein Bild kleiner als 200Kb hoch. Erlaubt sind jpeg, jpg oder "
1069
- #~ "png -Formate."
1070
-
1071
- #~ msgid "Invoice number to use for next invoice."
1072
- #~ msgstr "Rechnungsnummer für nächste Rechnung verwenden."
1073
-
1074
- #~ msgid "Number of zero digits."
1075
- #~ msgstr "Anzahl der Nullen."
1076
-
1077
- #~ msgid "Prefix text for the invoice number. Not required."
1078
- #~ msgstr "Prefix text for the invoice number. Not required."
1079
-
1080
- #~ msgid "Suffix text for the invoice number. Not required."
1081
- #~ msgstr "Suffix text for the invoice number. Not required."
1082
-
1083
- #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
1084
- #~ msgstr ""
1085
- #~ "Vorhandene Platzhalter sind %s %s %s %s und %s. %s ist verpflichtend."
1086
-
1087
- #~ msgid "Reset on the first of January."
1088
- #~ msgstr "Am 1. Januar zurücksetzen"
1089
-
1090
- #~ msgid "%sFormat%s of the date. Examples: %s or %s."
1091
- #~ msgstr "%sFormat%s vom Datum. Beispiele: %s oder %s."
1092
-
1093
- #~ msgid "Order date %sformat%s. Examples: %s or %s."
1094
- #~ msgstr "Bestellungsdatum %sFormat%s. Beispiele: %s oder %s."
1095
-
1096
- #~ msgid "Invalid template."
1097
- #~ msgstr "Ungültiges Template."
1098
-
1099
- #~ msgid "Invalid color theme code."
1100
- #~ msgstr "Ungültiger Farb-Theme Code."
1101
-
1102
- #~ msgid "Invalid company name."
1103
- #~ msgstr "Ungültiger Firmenname."
1104
-
1105
- #~ msgid "Invalid input into one of the textarea's."
1106
- #~ msgstr "Ungültige Eingabe in eines der Textfelder."
1107
-
1108
- #~ msgid "Invalid type of invoice number."
1109
- #~ msgstr "Ungültiger Rechnungsnummern-Typ."
1110
-
1111
- #~ msgid "Invalid (next) invoice number."
1112
- #~ msgstr "Ungültige (nächste) Rechnungsnummer."
1113
-
1114
- #~ msgid "Invalid invoice number digits."
1115
- #~ msgstr "Ungültige Rechnungsnummer-Ziffern."
1116
-
1117
- #~ msgid "The [number] placeholder is required as invoice number format."
1118
- #~ msgstr ""
1119
- #~ "Der [Nummer] Platzhalter ist als Rechnungsnummern-Format erforderlich."
1120
-
1121
- #~ msgid "Invalid invoice number format."
1122
- #~ msgstr "Ungültiges Rechnungsnummern-Format."
1123
-
1124
- #~ msgid "Invalid date format."
1125
- #~ msgstr "Ungültiges Datums-Format."
1126
-
1127
- #~ msgid "Please upload image with extension jpg, jpeg or png."
1128
- #~ msgstr "Please upload image with extension jpg, jpeg or png."
1129
-
1130
- #~ msgid "Quantity"
1131
- #~ msgstr "Anzahl"
1132
-
1133
- #~ msgid "Unit price"
1134
- #~ msgstr "Stückpreis"
1135
-
1136
- #~ msgid ""
1137
- #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1138
- #~ msgstr ""
1139
- #~ "Benutze [prefix], [suffix] und [number] als Platzhalter. [number] ist "
1140
- #~ "erforderlich."
1141
-
1142
- #~ msgid "Signup at %s and enter your account beyond."
1143
- #~ msgstr "Signup at %s and enter your account beyond."
1144
-
1145
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1146
- #~ msgstr "%sFormat%s des Datums. Beispiele: %s oder %s"
1147
-
1148
- #~ msgid "Show invoice"
1149
- #~ msgstr "Zeige Rechnung"
1150
-
1151
- #~ msgid "%sFormat%s of the date."
1152
- #~ msgstr "%sFormat%s des Datums."
1153
-
1154
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1155
- #~ msgstr "Benutze [suffix], [prefix] und [number] als Platzhalter."
1156
-
1157
- #~ msgid "Choose the color witch fits your company."
1158
- #~ msgstr "Wähle eine Farbe die zu deiner Firma passt."
1159
-
1160
- #~ msgid ""
1161
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1162
- #~ "[number] as placeholders."
1163
- #~ msgstr ""
1164
- #~ "Wähle das Format der Rechnungsnummer. Benutze [prefix], [suffix] und "
1165
- #~ "[number] als Platzhalter."
1166
-
1167
- #~ msgid "Text to greet, congratulate or thank the customer. "
1168
- #~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
1169
-
1170
- #~ msgid "Some text"
1171
- #~ msgstr "Etwas Text"
1172
-
1173
- #~ msgid "Text to greet, congratulate or thank the customer."
1174
- #~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
1175
-
1176
- #~ msgid "Start all over on the first of January."
1177
- #~ msgstr "Am 1. Januar komplett neu beginnen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
5
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: de_DE\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/abstracts/abstract-bewpi-document.php:64
23
+ msgid "Paid"
24
+ msgstr ""
25
+
26
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
27
+ #, php-format
28
+ msgid ""
29
+ "Could not create invoice. In order to reset invoice number with %d, delete "
30
+ "all invoices with invoice number %s and greater."
31
+ msgstr ""
32
+
33
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
34
+ #, php-format
35
+ msgid ""
36
+ "Could not create invoice. Invoice with invoice number %s already exists. "
37
+ "First delete invoice and try again."
38
+ msgstr ""
39
+
40
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
41
+ #, php-format
42
+ msgid ""
43
+ "Invoice with invoice number %s not found. First create invoice and try again."
44
+ msgstr ""
45
+
46
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
47
+ #, php-format
48
+ msgid "VAT Number: %s"
49
+ msgstr ""
50
+
51
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
52
+ #, php-format
53
+ msgid "Purchase Order Number: %s"
54
+ msgstr ""
55
+
56
+ #: includes/abstracts/abstract-bewpi-setting.php:98
57
+ msgid "Allowed HTML tags: "
58
+ msgstr ""
59
+
60
+ #: includes/abstracts/abstract-bewpi-setting.php:173
61
+ msgid "Remove logo"
62
+ msgstr "Logo entfernen"
63
+
64
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
66
+ msgid "Attach to Email"
67
+ msgstr "An Email anhängen"
68
+
69
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
70
+ msgid "Processing order"
71
+ msgstr "Bearbeiten der Bestellung"
72
+
73
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
74
+ msgid "Completed order"
75
+ msgstr "Fertiggestellte Bestellung"
76
+
77
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
78
+ msgid "Customer invoice"
79
+ msgstr "Kundenrechnung"
80
+
81
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
82
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
83
+ msgid "Do not attach"
84
+ msgstr "Nicht anhängen"
85
+
86
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
87
+ msgid "Attach to New order Email"
88
+ msgstr "An neue Bestell-Email anhängen"
89
+
90
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
91
+ msgid "View PDF"
92
+ msgstr ""
93
+
94
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
95
+ msgid "Download"
96
+ msgstr ""
97
+
98
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
99
+ msgid "Open in new browser tab/window"
100
+ msgstr ""
101
+
102
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
103
+ msgid "Enable download from account"
104
+ msgstr ""
105
+
106
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
107
+ msgid ""
108
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
109
+ "page.</div>"
110
+ msgstr ""
111
+
112
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
113
+ msgid "Enable Email It In"
114
+ msgstr "Enable Email It In"
115
+
116
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
117
+ msgid "Email It In account"
118
+ msgstr "Email It In account"
119
+
120
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
121
+ #, php-format
122
+ msgid "Get your account from your Email It In %suser account%s."
123
+ msgstr "Get your account from your Email It In %suser account%s."
124
+
125
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
126
+ msgid "Enable mPDF debugging"
127
+ msgstr ""
128
+
129
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
130
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
131
+ msgstr ""
132
+
133
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
134
+ msgid "Email Options"
135
+ msgstr "Email Optionen"
136
+
137
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
138
+ msgid "Download Options"
139
+ msgstr ""
140
+
141
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
142
+ msgid "Cloud Storage Options"
143
+ msgstr "Cloud Storage Optionen"
144
+
145
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
146
+ msgid "Debug Options"
147
+ msgstr ""
148
+
149
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
150
+ #, php-format
151
+ msgid ""
152
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
153
+ "Egnyte and enter your account below."
154
+ msgstr ""
155
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
156
+ "Egnyte and enter your account below."
157
+
158
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
159
+ #: includes/be-woocommerce-pdf-invoices.php:219
160
+ msgid "Template"
161
+ msgstr "Template"
162
+
163
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
164
+ msgid "Color theme"
165
+ msgstr "Farben Theme"
166
+
167
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
168
+ msgid "Date format"
169
+ msgstr "Datumsformat"
170
+
171
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
172
+ #, php-format
173
+ msgid "%sFormat%s of invoice date and order date."
174
+ msgstr "%sFormat%s von Rechnungsdatum und Bestellungsdatum."
175
+
176
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
177
+ msgid "Display prices including tax"
178
+ msgstr "Preis inklusive Mehrwertsteuer anzeigen"
179
+
180
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
181
+ msgid ""
182
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
183
+ "still be excluding tax, so disable it within the visible columns section."
184
+ msgstr ""
185
+
186
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
187
+ msgid "Shipping taxable"
188
+ msgstr ""
189
+
190
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
191
+ msgid "Enable to display subtotal including shipping."
192
+ msgstr ""
193
+
194
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
195
+ msgid "Mark invoice as paid"
196
+ msgstr ""
197
+
198
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
199
+ msgid "Invoice will be watermarked when order has been paid."
200
+ msgstr ""
201
+
202
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
203
+ msgid "Company name"
204
+ msgstr "Firmenname"
205
+
206
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
207
+ msgid "Company logo"
208
+ msgstr "Firmenlogo"
209
+
210
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
211
+ msgid "Company address"
212
+ msgstr "Firmenadresse"
213
+
214
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
215
+ msgid "Displayed in upper-right corner near logo."
216
+ msgstr ""
217
+
218
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
219
+ msgid "Company details"
220
+ msgstr "Firmendetails"
221
+
222
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
223
+ msgid "Displayed below company address."
224
+ msgstr ""
225
+
226
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
227
+ msgid "Thank you text"
228
+ msgstr ""
229
+
230
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
231
+ msgid "Displayed in big colored bar directly after invoice total."
232
+ msgstr ""
233
+
234
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
235
+ msgid "Thank you for your purchase!"
236
+ msgstr ""
237
+
238
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
239
+ msgid "Show customer notes"
240
+ msgstr "Kundenkommentare anzeigen"
241
+
242
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
243
+ msgid "Terms & conditions, policies etc."
244
+ msgstr "AGB’s‚ Richtlinien etc."
245
+
246
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
247
+ #, php-format
248
+ msgid ""
249
+ "Displayed below customer notes and above footer. Want to attach additional "
250
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
251
+ msgstr ""
252
+
253
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
254
+ msgid "Items will be shipped within 2 days."
255
+ msgstr ""
256
+
257
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
258
+ msgid "Left footer column."
259
+ msgstr ""
260
+
261
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
262
+ #, php-format
263
+ msgid "<b>Payment method</b> %s"
264
+ msgstr ""
265
+
266
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
267
+ msgid "Right footer column."
268
+ msgstr ""
269
+
270
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
271
+ msgid "Leave empty to show page numbering."
272
+ msgstr ""
273
+
274
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
275
+ msgid "Type"
276
+ msgstr "Type"
277
+
278
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
279
+ msgid "WooCommerce order number"
280
+ msgstr "WooCommerce Bestellungsnummer"
281
+
282
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
283
+ msgid "Sequential number"
284
+ msgstr "Aufeinanderfolgende nummer"
285
+
286
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
287
+ msgid "Reset invoice counter"
288
+ msgstr "Reset invoice counter"
289
+
290
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
291
+ msgid "Next"
292
+ msgstr "Weiter"
293
+
294
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
295
+ msgid ""
296
+ "Reset the invoice counter and start counting from given invoice number.<br/"
297
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
298
+ "editable by selecting checkbox. Next number needs to be lower then highest "
299
+ "existing invoice number or delete invoices first."
300
+ msgstr ""
301
+
302
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
303
+ msgid "Digits"
304
+ msgstr "Ziffern"
305
+
306
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
307
+ msgid "[prefix]"
308
+ msgstr "[prefix]"
309
+
310
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
311
+ msgid "[suffix]"
312
+ msgstr "[suffix]"
313
+
314
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
315
+ msgid "Format"
316
+ msgstr "Format"
317
+
318
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
319
+ #, php-format
320
+ msgid ""
321
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
322
+ "slashes aren't supported."
323
+ msgstr ""
324
+
325
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
326
+ msgid "Reset on 1st of january"
327
+ msgstr "Am 1. Januar zurücksetzen"
328
+
329
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
330
+ #: includes/templates/invoices/global/micro/body.php:44
331
+ #: includes/templates/invoices/simple/micro/body.php:48
332
+ msgid "SKU"
333
+ msgstr "Prod.Nr."
334
+
335
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
336
+ #: includes/templates/invoices/global/micro/body.php:236
337
+ #: includes/templates/invoices/simple/micro/body.php:101
338
+ msgid "Subtotal"
339
+ msgstr "Zwischensumme"
340
+
341
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
342
+ msgid "Tax (item)"
343
+ msgstr ""
344
+
345
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
346
+ msgid "Tax (total)"
347
+ msgstr ""
348
+
349
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
350
+ #: includes/templates/invoices/global/micro/body.php:220
351
+ #: includes/templates/invoices/simple/micro/body.php:85
352
+ msgid "Discount"
353
+ msgstr "Rabatt"
354
+
355
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
356
+ #: includes/templates/invoices/global/micro/body.php:228
357
+ #: includes/templates/invoices/global/micro/body.php:244
358
+ #: includes/templates/invoices/simple/micro/body.php:93
359
+ #: includes/templates/invoices/simple/micro/body.php:109
360
+ msgid "Shipping"
361
+ msgstr "Lieferung"
362
+
363
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
364
+ msgid "General Options"
365
+ msgstr "Allgemeine Optionen"
366
+
367
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
368
+ msgid "Invoice Number Options"
369
+ msgstr "Rechnungsnummer Optionen"
370
+
371
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
372
+ msgid "Header Options"
373
+ msgstr "Header Optionen"
374
+
375
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
376
+ msgid "Body Options"
377
+ msgstr ""
378
+
379
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
380
+ msgid "Footer Options"
381
+ msgstr "Footer Optionen"
382
+
383
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
384
+ msgid "Visible Columns"
385
+ msgstr "Sichtbare Spalten"
386
+
387
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
388
+ msgid "These are the general template options."
389
+ msgstr "Dies sind die allgemeinen template Optionen."
390
+
391
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
392
+ msgid "These are the invoice number options."
393
+ msgstr "Dies sind die Rechnungsnummer Optionen"
394
+
395
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
396
+ msgid "The header will be visible on every page. "
397
+ msgstr "Der Header wird auf jeder Seite sichtbar sein."
398
+
399
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
400
+ msgid "The footer will be visible on every page."
401
+ msgstr ""
402
+
403
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
404
+ msgid ""
405
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
406
+ "order payment method."
407
+ msgstr ""
408
+
409
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
410
+ msgid "Enable or disable the columns."
411
+ msgstr "Aktiviere oder deaktiviere die Spalten."
412
+
413
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
414
+ msgid "File is invalid and contains either '..' or './'."
415
+ msgstr "Datei ist ungültig und enthält entweder '...' oder './'."
416
+
417
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
418
+ msgid "File is invalid and contains ':' after the first character."
419
+ msgstr "Datei ist ungültig und enthält ':' nach dem ersten Buchstaben."
420
+
421
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
422
+ msgid "File should be less then 2MB."
423
+ msgstr "Datei sollte kleiner als 2MB sein."
424
+
425
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
426
+ msgid "Purchase email"
427
+ msgstr "Käufer Email"
428
+
429
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
430
+ msgid ""
431
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
432
+ "\">wcpdfinvoices.com</a>."
433
+ msgstr ""
434
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
435
+ "\">wcpdfinvoices.com</a>."
436
+
437
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
438
+ msgid "License"
439
+ msgstr "Lizenz"
440
+
441
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
442
+ msgid ""
443
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
444
+ "\">wcpdfinvoices.com</a> to receive updates."
445
+ msgstr ""
446
+ "Gib deinen Lizenzschlüssel von <a href=\"http://wcpdfinvoices.com"
447
+ "\">wcpdfinvoices.com</a> ein um Updates zu erhalten."
448
+
449
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
450
+ msgid "Processing Renewal Order"
451
+ msgstr "Bearbeiten der erneuerten Bestellung"
452
+
453
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
454
+ msgid "Completed Renewal Order"
455
+ msgstr "Erneuerte Rechnung fertiggestellt"
456
+
457
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
458
+ msgid "Customer Renewal Invoice"
459
+ msgstr "Erneuerte Kundenrechnung"
460
+
461
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
462
+ msgid "Attach to New Renewal Order Email"
463
+ msgstr "An neue erneuerte Bestell-Email anhängen"
464
+
465
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
466
+ msgid "PDF attachment"
467
+ msgstr "PDF-Anhang"
468
+
469
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
470
+ msgid "Add for example a PDF with your terms & conditions."
471
+ msgstr "Hänge ein PDF-Dokument an, wie zum Beispiel deine AGBs."
472
+
473
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
474
+ msgid "Suppliers"
475
+ msgstr "Lieferanten"
476
+
477
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
478
+ msgid ""
479
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
480
+ "adding there Email It In email addresses. Email addresses need to be "
481
+ "seperated by comma's."
482
+ msgstr ""
483
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
484
+ "adding there Email It In email addresses. Email addresses need to be "
485
+ "seperated by comma's."
486
+
487
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
488
+ msgid ""
489
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
490
+ "generate a global invoice from there account</div>"
491
+ msgstr ""
492
+
493
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
494
+ msgid "Customer generation period"
495
+ msgstr "Customer generation period"
496
+
497
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
498
+ msgid ""
499
+ "Should your customers have the ability to generate a global invoice by month "
500
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
501
+ msgstr ""
502
+ "Should your customers have the ability to generate a global invoice by month "
503
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
504
+
505
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
506
+ msgid "Month"
507
+ msgstr "Monat"
508
+
509
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
510
+ msgid "Year"
511
+ msgstr "Jahr"
512
+
513
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
514
+ msgid "Send to your Cloud Storage"
515
+ msgstr "An Cloud Storage senden"
516
+
517
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
518
+ msgid "Email to customer"
519
+ msgstr "Email an Kunden"
520
+
521
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
522
+ msgid "Email to supplier(s)"
523
+ msgstr "Email an Lieferanten"
524
+
525
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
526
+ msgid "Email subject"
527
+ msgstr "Email Betreff"
528
+
529
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
530
+ msgid "Subject for the global invoice email."
531
+ msgstr "Subject for the global invoice email."
532
+
533
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
534
+ msgid "Email message"
535
+ msgstr "Email Nachricht"
536
+
537
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
538
+ msgid "Message for the global invoice email."
539
+ msgstr "Message for the global invoice email."
540
+
541
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
542
+ msgid "Premium Options"
543
+ msgstr "Premium Optionen"
544
+
545
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
546
+ msgid "Woocommerce Subscriptions Email Options"
547
+ msgstr "Woocommerce Subscriptions Email Options"
548
+
549
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
550
+ msgid "Attachment Options"
551
+ msgstr "Anhangs Optionen"
552
+
553
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
554
+ msgid "Supplier Options"
555
+ msgstr "Lieferanten Optionen"
556
+
557
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
558
+ msgid "Global Invoice Options"
559
+ msgstr "Global Invoice Options"
560
+
561
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
562
+ msgid ""
563
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
564
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
565
+ "should be activated in order to work."
566
+ msgstr ""
567
+ "PDF Rechnung an <a href=\"http://www.woothemes.com/products/woocommerce-"
568
+ "subscriptions/\">WooCommerce Subscriptions</a> email anhängen. Plugin sollte "
569
+ "aktiviert sein um die Funktion zu ermöglichen."
570
+
571
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
572
+ msgid "Attach a PDF to the invoice."
573
+ msgstr "Ein PDF-Dokument an die Rechnung anhängen."
574
+
575
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
576
+ msgid "Send customer invoice automatically to your supplier(s)."
577
+ msgstr "Kunden Rechnung automatisch an Lieferanten senden."
578
+
579
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
580
+ msgid ""
581
+ "Generate global invoices on Orders page by selecting multiple orders and "
582
+ "applying action or let customers generate periodically from My Account page."
583
+ msgstr ""
584
+ "Generate global invoices on Orders page by selecting multiple orders and "
585
+ "applying action or let customers generate periodically from My Account page."
586
+
587
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
588
+ msgid "File to large."
589
+ msgstr "Datei zu groß."
590
+
591
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
592
+ msgid "Only PDF files are allowed."
593
+ msgstr "Es sind lediglich PDF-Dokumente zulässig."
594
+
595
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
596
+ msgid "Remove"
597
+ msgstr "Entfernen"
598
+
599
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
600
+ msgid "Choose"
601
+ msgstr "Auswählen"
602
+
603
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
604
+ msgid "Active"
605
+ msgstr "Aktiv"
606
+
607
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
608
+ msgid "Inactive"
609
+ msgstr "Inaktiv"
610
+
611
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
612
+ #: includes/be-woocommerce-pdf-invoices.php:182
613
+ msgid "Invalid request"
614
+ msgstr "Ungültige Anfrage"
615
+
616
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
617
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
618
+ msgid "Something went wrong."
619
+ msgstr "Uuhps! Da ist wohl etwas schief gelaufen."
620
+
621
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
622
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
623
+ msgid "No orders found."
624
+ msgstr "Keine Bestellungen gefunden."
625
+
626
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
627
+ #: includes/be-woocommerce-pdf-invoices.php:136
628
+ msgid "Settings"
629
+ msgstr "Einstellungen"
630
+
631
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
632
+ #: includes/partials/settings-sidebar.php:50
633
+ msgid "Support"
634
+ msgstr "Hilfe"
635
+
636
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
637
+ #, php-format
638
+ msgid ""
639
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
640
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
641
+ "the free version (%s+) and try again.</p>"
642
+ msgstr ""
643
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
644
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
645
+ "the free version (%s+) and try again.</p>"
646
+
647
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
648
+ #: includes/be-woocommerce-pdf-invoices.php:137
649
+ msgid "Premium"
650
+ msgstr "Premium"
651
+
652
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
653
+ msgid "Generate global invoice"
654
+ msgstr "Generate global invoice"
655
+
656
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
657
+ msgid "Please select more then one order."
658
+ msgstr "Bitte mehr als eine Bestellungen auswählen."
659
+
660
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
661
+ msgid "Global invoice successfully generated! "
662
+ msgstr ""
663
+
664
+ #: includes/be-woocommerce-pdf-invoices.php:126
665
+ #, php-format
666
+ msgid ""
667
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
668
+ "PDF Invoices</strong></a>."
669
+ msgstr ""
670
+
671
+ #: includes/be-woocommerce-pdf-invoices.php:185
672
+ msgid "Invalid order ID"
673
+ msgstr ""
674
+
675
+ #: includes/be-woocommerce-pdf-invoices.php:191
676
+ msgid "Access denied"
677
+ msgstr ""
678
+
679
+ #: includes/be-woocommerce-pdf-invoices.php:218
680
+ msgid "General"
681
+ msgstr "Allgemein"
682
+
683
+ #: includes/be-woocommerce-pdf-invoices.php:251
684
+ msgid "Invoices"
685
+ msgstr "Rechnungen"
686
+
687
+ #: includes/be-woocommerce-pdf-invoices.php:294
688
+ #, php-format
689
+ msgid ""
690
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
691
+ "%s★★★★★%s rating. A huge thank you in advance!"
692
+ msgstr ""
693
+
694
+ #: includes/be-woocommerce-pdf-invoices.php:295
695
+ #, php-format
696
+ msgid "Version %s"
697
+ msgstr ""
698
+
699
+ #: includes/be-woocommerce-pdf-invoices.php:369
700
+ msgid "PDF Invoice"
701
+ msgstr "PDF Rechnung"
702
+
703
+ #: includes/be-woocommerce-pdf-invoices.php:395
704
+ msgid "Invoiced on:"
705
+ msgstr "In Rechnung gestellt am:"
706
+
707
+ #: includes/be-woocommerce-pdf-invoices.php:399
708
+ msgid "Invoice number:"
709
+ msgstr "Rechnungsnummer:"
710
+
711
+ #: includes/be-woocommerce-pdf-invoices.php:438
712
+ msgid "View invoice"
713
+ msgstr "Rechnung anzeigen"
714
+
715
+ #: includes/be-woocommerce-pdf-invoices.php:438
716
+ msgid "View"
717
+ msgstr "Anzeigen"
718
+
719
+ #: includes/be-woocommerce-pdf-invoices.php:439
720
+ msgid "Cancel invoice"
721
+ msgstr "Rechnung stornieren"
722
+
723
+ #: includes/be-woocommerce-pdf-invoices.php:439
724
+ msgid "Cancel"
725
+ msgstr "abbrechen"
726
+
727
+ #: includes/be-woocommerce-pdf-invoices.php:441
728
+ msgid "Are you sure to delete the invoice?"
729
+ msgstr "Bist du dir sicher, dass du die Rechnung löschen willst?"
730
+
731
+ #: includes/be-woocommerce-pdf-invoices.php:444
732
+ msgid "Create invoice"
733
+ msgstr "Rechnung erstellen"
734
+
735
+ #: includes/be-woocommerce-pdf-invoices.php:444
736
+ msgid "Create"
737
+ msgstr "Erstellen"
738
+
739
+ #: includes/be-woocommerce-pdf-invoices.php:467
740
+ #, php-format
741
+ msgid "Invoice %s (PDF)"
742
+ msgstr "Rechnung %s (PDF)"
743
+
744
+ #: includes/be-woocommerce-pdf-invoices.php:577
745
+ #, php-format
746
+ msgid ""
747
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
748
+ "really need your ★★★★★ rating. It will support future development big-time. "
749
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
750
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
751
+ "done it!</a>"
752
+ msgstr ""
753
+
754
+ #: includes/class-bewpi-invoice.php:50
755
+ msgid ""
756
+ "Whoops, no template found. Please select a template on the Template settings "
757
+ "page first."
758
+ msgstr ""
759
+
760
+ #: includes/partials/customer-generation.php:1
761
+ msgid "Generate Global Invoice"
762
+ msgstr "Generate Global Invoice"
763
+
764
+ #: includes/partials/customer-generation.php:11
765
+ msgid "Select a month"
766
+ msgstr "Monat auswählen"
767
+
768
+ #: includes/partials/customer-generation.php:24
769
+ msgid "Select a year"
770
+ msgstr "Jahr auswählen"
771
+
772
+ #: includes/partials/customer-generation.php:38
773
+ msgid "Generate invoice"
774
+ msgstr "Rechnung generieren."
775
+
776
+ #: includes/partials/settings-sidebar.php:2
777
+ msgid "WooCommerce PDF Invoices Premium"
778
+ msgstr ""
779
+
780
+ #: includes/partials/settings-sidebar.php:4
781
+ msgid ""
782
+ "This plugin offers a premium version which comes with the following features:"
783
+ msgstr ""
784
+
785
+ #: includes/partials/settings-sidebar.php:5
786
+ msgid "Bill periodically by generating and sending global invoices."
787
+ msgstr ""
788
+
789
+ #: includes/partials/settings-sidebar.php:6
790
+ msgid "Add additional PDF's to customer invoices."
791
+ msgstr ""
792
+
793
+ #: includes/partials/settings-sidebar.php:7
794
+ msgid "Send customer invoices directly to suppliers and others."
795
+ msgstr ""
796
+
797
+ #: includes/partials/settings-sidebar.php:8
798
+ #, php-format
799
+ msgid ""
800
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
801
+ msgstr ""
802
+
803
+ #: includes/partials/settings-sidebar.php:10
804
+ msgid "Learn more"
805
+ msgstr ""
806
+
807
+ #: includes/partials/settings-sidebar.php:13
808
+ msgid "Stay up-to-date"
809
+ msgstr ""
810
+
811
+ #: includes/partials/settings-sidebar.php:17
812
+ msgid ""
813
+ "We're constantly developing new features, stay up-to-date by subscribing to "
814
+ "our newsletter."
815
+ msgstr ""
816
+
817
+ #: includes/partials/settings-sidebar.php:23
818
+ msgid "Your email address"
819
+ msgstr ""
820
+
821
+ #: includes/partials/settings-sidebar.php:29
822
+ msgid "Signup"
823
+ msgstr ""
824
+
825
+ #: includes/partials/settings-sidebar.php:32
826
+ msgid "No spam, ever. Unsubscribe at any time"
827
+ msgstr ""
828
+
829
+ #: includes/partials/settings-sidebar.php:41
830
+ msgid "About"
831
+ msgstr ""
832
+
833
+ #: includes/partials/settings-sidebar.php:43
834
+ msgid ""
835
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
836
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
837
+ msgstr ""
838
+
839
+ #: includes/partials/settings-sidebar.php:45
840
+ msgid "<b>Version</b>: "
841
+ msgstr ""
842
+
843
+ #: includes/partials/settings-sidebar.php:47
844
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
845
+ msgstr ""
846
+
847
+ #: includes/partials/settings-sidebar.php:52
848
+ msgid ""
849
+ "We will never ask for donations, but to garantee future development, we do "
850
+ "need your support. Please show us your appreciation by leaving a <a href="
851
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
852
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
853
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
854
+ msgstr ""
855
+
856
+ #: includes/partials/settings-sidebar.php:72
857
+ msgid ""
858
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
859
+ msgstr ""
860
+
861
+ #: includes/partials/settings-sidebar.php:77
862
+ msgid "Need Help?"
863
+ msgstr ""
864
+
865
+ #: includes/partials/settings-sidebar.php:79
866
+ msgid "Frequently Asked Questions"
867
+ msgstr ""
868
+
869
+ #: includes/partials/settings-sidebar.php:80
870
+ msgid "Support forum"
871
+ msgstr ""
872
+
873
+ #: includes/partials/settings-sidebar.php:81
874
+ msgid "Request a feature"
875
+ msgstr ""
876
+
877
+ #: includes/partials/settings-sidebar.php:82
878
+ msgid "Email us"
879
+ msgstr ""
880
+
881
+ #: includes/templates/invoices/global/micro/body.php:5
882
+ #: includes/templates/invoices/simple/micro/body.php:5
883
+ msgid "Invoice to"
884
+ msgstr "Rechnung an"
885
+
886
+ #: includes/templates/invoices/global/micro/body.php:7
887
+ #: includes/templates/invoices/simple/micro/body.php:7
888
+ #, php-format
889
+ msgid "Phone: %s"
890
+ msgstr ""
891
+
892
+ #: includes/templates/invoices/global/micro/body.php:11
893
+ #: includes/templates/invoices/simple/micro/body.php:11
894
+ msgid "Ship to"
895
+ msgstr "Lieferadresse"
896
+
897
+ #: includes/templates/invoices/global/micro/body.php:22
898
+ msgid "Global Invoice"
899
+ msgstr "Global Invoice"
900
+
901
+ #: includes/templates/invoices/global/micro/body.php:40
902
+ #: includes/templates/invoices/simple/micro/body.php:44
903
+ msgid "Description"
904
+ msgstr "Beschreibung"
905
+
906
+ #: includes/templates/invoices/global/micro/body.php:48
907
+ #: includes/templates/invoices/simple/micro/body.php:52
908
+ msgid "Cost"
909
+ msgstr "Preis"
910
+
911
+ #: includes/templates/invoices/global/micro/body.php:50
912
+ #: includes/templates/invoices/simple/micro/body.php:54
913
+ msgid "Qty"
914
+ msgstr "Anzahl"
915
+
916
+ #: includes/templates/invoices/global/micro/body.php:56
917
+ #: includes/templates/invoices/simple/micro/body.php:60
918
+ msgid "VAT"
919
+ msgstr "Mehrwertsteuer"
920
+
921
+ #: includes/templates/invoices/global/micro/body.php:67
922
+ #: includes/templates/invoices/global/micro/body.php:280
923
+ #: includes/templates/invoices/simple/micro/body.php:71
924
+ #: includes/templates/invoices/simple/micro/body.php:145
925
+ msgid "Total"
926
+ msgstr "Gesamt"
927
+
928
+ #: includes/templates/invoices/global/micro/body.php:75
929
+ #, php-format
930
+ msgid "Order #%d - %s"
931
+ msgstr "Bestellung #%d - %s"
932
+
933
+ #: includes/templates/invoices/global/micro/body.php:255
934
+ #: includes/templates/invoices/simple/micro/body.php:120
935
+ msgid "Fee"
936
+ msgstr "Gebühr"
937
+
938
+ #: includes/templates/invoices/global/micro/body.php:287
939
+ #: includes/templates/invoices/simple/micro/body.php:152
940
+ msgid "Refunded"
941
+ msgstr "Erstattet"
942
+
943
+ #: includes/templates/invoices/global/micro/footer.php:15
944
+ #: includes/templates/invoices/simple/micro/footer.php:18
945
+ #, php-format
946
+ msgid "%s of %s"
947
+ msgstr ""
948
+
949
+ #: includes/templates/invoices/simple/micro/body.php:22
950
+ msgid "Invoice"
951
+ msgstr "Rechnung"
952
+
953
+ #: includes/templates/invoices/simple/micro/body.php:25
954
+ #, fuzzy, php-format
955
+ msgid "Order Number: %s"
956
+ msgstr "Bestellungsnummer:"
957
+
958
+ #: includes/templates/invoices/simple/micro/body.php:26
959
+ #, php-format
960
+ msgid "Order Date: %s"
961
+ msgstr "Bestellungsdatum: %s"
962
+
963
+ #: includes/templates/invoices/simple/micro/body.php:289
964
+ #: includes/templates/invoices/simple/micro/body.php:294
965
+ msgid "Customer note"
966
+ msgstr "Kundenkommentar"
967
+
968
+ #~ msgid ""
969
+ #~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
970
+ #~ "generate a global invoice from within there account</div>"
971
+ #~ msgstr ""
972
+ #~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
973
+ #~ "generate a global invoice from within there account</div>"
974
+
975
+ #~ msgid "Global invoice succesfully generated! "
976
+ #~ msgstr "Global invoice succesfully generated! "
977
+
978
+ #~ msgid "Feel free to use "
979
+ #~ msgstr "Feel free to use "
980
+
981
+ #~ msgid "Subtotal will be including tax and excluding discount and shipping."
982
+ #~ msgstr ""
983
+ #~ "Zwischensumme enthält Mehrwertsteuer aber keine Rabatte oder Lieferkosten."
984
+
985
+ #~ msgid "Intro text"
986
+ #~ msgstr "Einleitungstext"
987
+
988
+ #~ msgid ""
989
+ #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
990
+ #~ "%s Only available with sequential numbering type and you need to check "
991
+ #~ "the checkbox to actually reset the value."
992
+ #~ msgstr ""
993
+ #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
994
+ #~ "%s Only available with sequential numbering type and you need to check "
995
+ #~ "the checkbox to actually reset the value."
996
+
997
+ #~ msgid ""
998
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
999
+ #~ "is required."
1000
+ #~ msgstr ""
1001
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1002
+ #~ "is required."
1003
+
1004
+ #~ msgid "Tax"
1005
+ #~ msgstr "Steuer"
1006
+
1007
+ #~ msgid "The footer will be visible on every page. "
1008
+ #~ msgstr "Der Footer wird auf jeder Seite sichtbar sein."
1009
+
1010
+ #~ msgid ""
1011
+ #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
1012
+ #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
1013
+ #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
1014
+ #~ "away!</a> - <a href='%s'>No, already done it!</a>"
1015
+ #~ msgstr ""
1016
+ #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
1017
+ #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
1018
+ #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
1019
+ #~ "away!</a> - <a href='%s'>No, already done it!</a>"
1020
+
1021
+ #~ msgid "%sPayment%s via"
1022
+ #~ msgstr "Bezahlt per"
1023
+
1024
+ #~ msgid "PAID"
1025
+ #~ msgstr "BEZAHLT"
1026
+
1027
+ #~ msgid "UNPAID"
1028
+ #~ msgstr "NICHT BEZAHLT"
1029
+
1030
+ #~ msgid "Order Number %s"
1031
+ #~ msgstr "Bestellungsnummer"
1032
+
1033
+ #~ msgid "Order Date %s"
1034
+ #~ msgstr "Bestellungsdatum"
1035
+
1036
+ #~ msgid "Download invoice (PDF)"
1037
+ #~ msgstr "Download Rechnung (PDF)"
1038
+
1039
+ #~ msgid ""
1040
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
1041
+ #~ "required."
1042
+ #~ msgstr ""
1043
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
1044
+ #~ "required."
1045
+
1046
+ #~ msgid "VAT %s"
1047
+ #~ msgstr "Mehrwertsteuer %s"
1048
+
1049
+ #~ msgid "General Settings"
1050
+ #~ msgstr "Allgemeine Einstellungen"
1051
+
1052
+ #~ msgid ""
1053
+ #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
1054
+ #~ msgstr ""
1055
+ #~ "Sende Rechnung automatisch an Google Drive, Egnyte, Dropbox of OneDrive"
1056
+
1057
+ #~ msgid "For bookkeeping purposes."
1058
+ #~ msgstr "Zu Buchhaltungszwecken."
1059
+
1060
+ #~ msgid "Signup at %s and enter your account below."
1061
+ #~ msgstr "Melde dich an bei %s und gib unten deine Account ein."
1062
+
1063
+ #~ msgid "Enter your %s account."
1064
+ #~ msgstr "Enter your %s account."
1065
+
1066
+ #~ msgid "Invalid type of Email."
1067
+ #~ msgstr "Ungültiger Emailtyp."
1068
+
1069
+ #~ msgid "Please don't try to change the values."
1070
+ #~ msgstr "Bitte versuche nicht die Werte zu ändern."
1071
+
1072
+ #~ msgid "Invalid Email address."
1073
+ #~ msgstr "Ungültige Email-Adresse."
1074
+
1075
+ #~ msgid "Allowed tags: "
1076
+ #~ msgstr "Allowed tags: "
1077
+
1078
+ #~ msgid "Template Settings"
1079
+ #~ msgstr "Template Einstellungen"
1080
+
1081
+ #~ msgid "Invoice number type"
1082
+ #~ msgstr "Rechnungsnummerntyp"
1083
+
1084
+ #~ msgid "Next invoice number"
1085
+ #~ msgstr "Nächste Rechnungsnummer"
1086
+
1087
+ #~ msgid "Number of digits"
1088
+ #~ msgstr "Anzahl der Nachkommastellen"
1089
+
1090
+ #~ msgid "Invoice number prefix"
1091
+ #~ msgstr "Rechnungsnummer Vorsilbe"
1092
+
1093
+ #~ msgid "Invoice number suffix"
1094
+ #~ msgstr "Rechnungsnummer Nachsilbe"
1095
+
1096
+ #~ msgid "Invoice number format"
1097
+ #~ msgstr "Rechnungsnummernformat"
1098
+
1099
+ #~ msgid "Reset on 1st January"
1100
+ #~ msgstr "Am 1. Januar zurücksetzen"
1101
+
1102
+ #~ msgid "Invoice date format"
1103
+ #~ msgstr "Format des Rechnungsdatums"
1104
+
1105
+ #~ msgid "Order date format"
1106
+ #~ msgstr "Format des Bestellungsdatums"
1107
+
1108
+ #~ msgid "Show SKU"
1109
+ #~ msgstr "Zeige Sorte"
1110
+
1111
+ #~ msgid "Show discount"
1112
+ #~ msgstr "Zeige Rabatt"
1113
+
1114
+ #~ msgid "Show subtotal"
1115
+ #~ msgstr "Zeige Zwischensumme"
1116
+
1117
+ #~ msgid "Show tax"
1118
+ #~ msgstr "Zeige Steuer"
1119
+
1120
+ #~ msgid "Show shipping"
1121
+ #~ msgstr "Zeige Lieferkosten"
1122
+
1123
+ #~ msgid "Color theme of the invoice."
1124
+ #~ msgstr "Farb-theme der Rechnung."
1125
+
1126
+ #~ msgid ""
1127
+ #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
1128
+ #~ "png."
1129
+ #~ msgstr ""
1130
+ #~ "Bitte lade ein Bild kleiner als 200Kb hoch. Erlaubt sind jpeg, jpg oder "
1131
+ #~ "png -Formate."
1132
+
1133
+ #~ msgid "Invoice number to use for next invoice."
1134
+ #~ msgstr "Rechnungsnummer für nächste Rechnung verwenden."
1135
+
1136
+ #~ msgid "Number of zero digits."
1137
+ #~ msgstr "Anzahl der Nullen."
1138
+
1139
+ #~ msgid "Prefix text for the invoice number. Not required."
1140
+ #~ msgstr "Prefix text for the invoice number. Not required."
1141
+
1142
+ #~ msgid "Suffix text for the invoice number. Not required."
1143
+ #~ msgstr "Suffix text for the invoice number. Not required."
1144
+
1145
+ #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
1146
+ #~ msgstr ""
1147
+ #~ "Vorhandene Platzhalter sind %s %s %s %s und %s. %s ist verpflichtend."
1148
+
1149
+ #~ msgid "Reset on the first of January."
1150
+ #~ msgstr "Am 1. Januar zurücksetzen"
1151
+
1152
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s."
1153
+ #~ msgstr "%sFormat%s vom Datum. Beispiele: %s oder %s."
1154
+
1155
+ #~ msgid "Order date %sformat%s. Examples: %s or %s."
1156
+ #~ msgstr "Bestellungsdatum %sFormat%s. Beispiele: %s oder %s."
1157
+
1158
+ #~ msgid "Invalid template."
1159
+ #~ msgstr "Ungültiges Template."
1160
+
1161
+ #~ msgid "Invalid color theme code."
1162
+ #~ msgstr "Ungültiger Farb-Theme Code."
1163
+
1164
+ #~ msgid "Invalid company name."
1165
+ #~ msgstr "Ungültiger Firmenname."
1166
+
1167
+ #~ msgid "Invalid input into one of the textarea's."
1168
+ #~ msgstr "Ungültige Eingabe in eines der Textfelder."
1169
+
1170
+ #~ msgid "Invalid type of invoice number."
1171
+ #~ msgstr "Ungültiger Rechnungsnummern-Typ."
1172
+
1173
+ #~ msgid "Invalid (next) invoice number."
1174
+ #~ msgstr "Ungültige (nächste) Rechnungsnummer."
1175
+
1176
+ #~ msgid "Invalid invoice number digits."
1177
+ #~ msgstr "Ungültige Rechnungsnummer-Ziffern."
1178
+
1179
+ #~ msgid "The [number] placeholder is required as invoice number format."
1180
+ #~ msgstr ""
1181
+ #~ "Der [Nummer] Platzhalter ist als Rechnungsnummern-Format erforderlich."
1182
+
1183
+ #~ msgid "Invalid invoice number format."
1184
+ #~ msgstr "Ungültiges Rechnungsnummern-Format."
1185
+
1186
+ #~ msgid "Invalid date format."
1187
+ #~ msgstr "Ungültiges Datums-Format."
1188
+
1189
+ #~ msgid "Please upload image with extension jpg, jpeg or png."
1190
+ #~ msgstr "Please upload image with extension jpg, jpeg or png."
1191
+
1192
+ #~ msgid "Quantity"
1193
+ #~ msgstr "Anzahl"
1194
+
1195
+ #~ msgid "Unit price"
1196
+ #~ msgstr "Stückpreis"
1197
+
1198
+ #~ msgid ""
1199
+ #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1200
+ #~ msgstr ""
1201
+ #~ "Benutze [prefix], [suffix] und [number] als Platzhalter. [number] ist "
1202
+ #~ "erforderlich."
1203
+
1204
+ #~ msgid "Signup at %s and enter your account beyond."
1205
+ #~ msgstr "Signup at %s and enter your account beyond."
1206
+
1207
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1208
+ #~ msgstr "%sFormat%s des Datums. Beispiele: %s oder %s"
1209
+
1210
+ #~ msgid "Show invoice"
1211
+ #~ msgstr "Zeige Rechnung"
1212
+
1213
+ #~ msgid "%sFormat%s of the date."
1214
+ #~ msgstr "%sFormat%s des Datums."
1215
+
1216
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1217
+ #~ msgstr "Benutze [suffix], [prefix] und [number] als Platzhalter."
1218
+
1219
+ #~ msgid "Choose the color witch fits your company."
1220
+ #~ msgstr "Wähle eine Farbe die zu deiner Firma passt."
1221
+
1222
+ #~ msgid ""
1223
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1224
+ #~ "[number] as placeholders."
1225
+ #~ msgstr ""
1226
+ #~ "Wähle das Format der Rechnungsnummer. Benutze [prefix], [suffix] und "
1227
+ #~ "[number] als Platzhalter."
1228
+
1229
+ #~ msgid "Text to greet, congratulate or thank the customer. "
1230
+ #~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
1231
+
1232
+ #~ msgid "Some text"
1233
+ #~ msgstr "Etwas Text"
1234
+
1235
+ #~ msgid "Text to greet, congratulate or thank the customer."
1236
+ #~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
1237
+
1238
+ #~ msgid "Start all over on the first of January."
1239
+ #~ msgstr "Am 1. Januar komplett neu beginnen."
lang/woocommerce-pdf-invoices-es_ES.po CHANGED
@@ -1,775 +1,999 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
6
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
7
- "Last-Translator: iduran <iduran@solucionesc2.com>\n"
8
- "Language-Team: \n"
9
- "Language: es_ES\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Loco-Target-Locale: es_ES\n"
22
- "X-Generator: Poedit 1.7.3\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
-
25
- #: ../includes/abstracts/abstract-bewpi-document.php:64
26
- msgid "Paid"
27
- msgstr ""
28
-
29
- #: ../includes/abstracts/abstract-bewpi-invoice.php:262
30
- #, php-format
31
- msgid ""
32
- "Could not create invoice. In order to reset invoice number with %d, delete "
33
- "all invoices with invoice number %s and greater."
34
- msgstr ""
35
-
36
- #: ../includes/abstracts/abstract-bewpi-invoice.php:267
37
- #, php-format
38
- msgid ""
39
- "Could not create invoice. Invoice with invoice number %s already exists. "
40
- "First delete invoice and try again."
41
- msgstr ""
42
-
43
- #: ../includes/abstracts/abstract-bewpi-invoice.php:310
44
- #, php-format
45
- msgid ""
46
- "Invoice with invoice number %s not found. First create invoice and try again."
47
- msgstr ""
48
-
49
- #: ../includes/abstracts/abstract-bewpi-invoice.php:372
50
- #, php-format
51
- msgid "VAT Number: %s"
52
- msgstr ""
53
-
54
- #: ../includes/abstracts/abstract-bewpi-invoice.php:383
55
- #, php-format
56
- msgid "Purchase Order Number: %s"
57
- msgstr ""
58
-
59
- #: ../includes/abstracts/abstract-bewpi-setting.php:98
60
- msgid "Allowed HTML tags: "
61
- msgstr ""
62
-
63
- #: ../includes/abstracts/abstract-bewpi-setting.php:173
64
- msgid "Remove logo"
65
- msgstr "Eliminar logo"
66
-
67
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:86
68
- msgid "Attach to Email"
69
- msgstr "Adjuntar a correo electrónico"
70
-
71
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:94
72
- msgid "Processing order"
73
- msgstr "Procesando el pedido."
74
-
75
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:98
76
- msgid "Completed order"
77
- msgstr "Pedido completado"
78
-
79
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:102
80
- msgid "Customer invoice"
81
- msgstr "Factura de Cliente"
82
-
83
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:106
84
- msgid "Do not attach"
85
- msgstr ""
86
-
87
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:120
88
- msgid "Attach to New order Email"
89
- msgstr ""
90
-
91
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:127
92
- msgid "View PDF"
93
- msgstr ""
94
-
95
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:135
96
- msgid "Download"
97
- msgstr ""
98
-
99
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:139
100
- msgid "Open in new browser tab/window"
101
- msgstr ""
102
-
103
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:153
104
- msgid "Enable download from account"
105
- msgstr ""
106
-
107
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:154
108
- msgid ""
109
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
110
- "page.</div>"
111
- msgstr ""
112
-
113
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:166
114
- msgid "Enable Email It In"
115
- msgstr "Habilitar Email It In"
116
-
117
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:174
118
- msgid "Email It In account"
119
- msgstr "Cuenta Email it In"
120
-
121
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:179
122
- #, php-format
123
- msgid "Get your account from your Email It In %suser account%s."
124
- msgstr "Obtenga su cuenta desde su Email It In %suser account%s."
125
-
126
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:190
127
- msgid "Enable mPDF debugging"
128
- msgstr ""
129
-
130
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:191
131
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
132
- msgstr ""
133
-
134
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:206
135
- msgid "Email Options"
136
- msgstr "Opciones de correo electrónico"
137
-
138
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:212
139
- msgid "Download Options"
140
- msgstr ""
141
-
142
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:218
143
- msgid "Cloud Storage Options"
144
- msgstr "Opciones de almacenamiento en la nube"
145
-
146
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:224
147
- msgid "Debug Options"
148
- msgstr ""
149
-
150
- #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:232
151
- #, php-format
152
- msgid ""
153
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
154
- "Egnyte and enter your account below."
155
- msgstr ""
156
-
157
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:88
158
- #: ../includes/be-woocommerce-pdf-invoices.php:219
159
- msgid "Template"
160
- msgstr "Plantilla"
161
-
162
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:100
163
- msgid "Color theme"
164
- msgstr "Color del tema"
165
-
166
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:111
167
- msgid "Date format"
168
- msgstr "Formato de fecha"
169
-
170
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:116
171
- #, php-format
172
- msgid "%sFormat%s of invoice date and order date."
173
- msgstr "%sFormat%s de la fecha de la factura y fecha del pedido."
174
-
175
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:131
176
- msgid "Display prices including tax"
177
- msgstr "Mostrar precios con impuesto incluido"
178
-
179
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:132
180
- msgid ""
181
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
182
- "still be excluding tax, so disable it within the visible columns section."
183
- msgstr ""
184
-
185
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:144
186
- msgid "Shipping taxable"
187
- msgstr ""
188
-
189
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:145
190
- msgid "Enable to display subtotal including shipping."
191
- msgstr ""
192
-
193
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:157
194
- msgid "Mark invoice as paid"
195
- msgstr ""
196
-
197
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:158
198
- msgid "Invoice will be watermarked when order has been paid."
199
- msgstr ""
200
-
201
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:166
202
- msgid "Company name"
203
- msgstr "Nombre de la empresa"
204
-
205
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:177
206
- msgid "Company logo"
207
- msgstr "Logo de la empresa"
208
-
209
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:188
210
- msgid "Company address"
211
- msgstr "Dirección de la empresa"
212
-
213
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:193
214
- msgid "Displayed in upper-right corner near logo."
215
- msgstr ""
216
-
217
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:199
218
- msgid "Company details"
219
- msgstr "Detalles de la empresa"
220
-
221
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:204
222
- msgid "Displayed below company address."
223
- msgstr ""
224
-
225
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:211
226
- msgid "Thank you text"
227
- msgstr ""
228
-
229
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:216
230
- msgid "Displayed in big colored bar directly after invoice total."
231
- msgstr ""
232
-
233
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:217
234
- msgid "Thank you for your purchase!"
235
- msgstr ""
236
-
237
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:227
238
- msgid "Show customer notes"
239
- msgstr "Mostrar notas de cliente"
240
-
241
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:234
242
- msgid "Terms & conditions, policies etc."
243
- msgstr "Términos y condiciones, políticas, etc."
244
-
245
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:239
246
- #, php-format
247
- msgid ""
248
- "Displayed below customer notes and above footer. Want to attach additional "
249
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
250
- msgstr ""
251
-
252
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:240
253
- msgid "Items will be shipped within 2 days."
254
- msgstr ""
255
-
256
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:246
257
- msgid "Left footer column."
258
- msgstr ""
259
-
260
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:252
261
- #, php-format
262
- msgid "<b>Payment method</b> %s"
263
- msgstr ""
264
-
265
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:257
266
- msgid "Right footer column."
267
- msgstr ""
268
-
269
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:262
270
- msgid "Leave empty to show page numbering."
271
- msgstr ""
272
-
273
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:269
274
- msgid "Type"
275
- msgstr "Tipo"
276
-
277
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:277
278
- msgid "WooCommerce order number"
279
- msgstr "Número de pedido de WooCommerce"
280
-
281
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:281
282
- msgid "Sequential number"
283
- msgstr "Número secuencial"
284
-
285
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:295
286
- msgid "Reset invoice counter"
287
- msgstr ""
288
-
289
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:305
290
- msgid "Next"
291
- msgstr "Siguiente"
292
-
293
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:310
294
- msgid ""
295
- "Reset the invoice counter and start counting from given invoice number.<br/"
296
- "><b>Note:</b> Only available for Sequential numbering and value will be "
297
- "editable by selecting checkbox. Next number needs to be lower then highest "
298
- "existing invoice number or delete invoices first."
299
- msgstr ""
300
-
301
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:320
302
- msgid "Digits"
303
- msgstr "Dígitos"
304
-
305
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:336
306
- msgid "[prefix]"
307
- msgstr "Prefijo"
308
-
309
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:347
310
- msgid "[suffix]"
311
- msgstr "Sufijo"
312
-
313
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:358
314
- msgid "Format"
315
- msgstr "Formato"
316
-
317
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:363
318
- #, php-format
319
- msgid ""
320
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
321
- "slashes aren't supported."
322
- msgstr ""
323
-
324
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:377
325
- msgid "Reset on 1st of january"
326
- msgstr "Reiniciar el 1 de enero"
327
-
328
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:390
329
- #: ../includes/templates/invoices/global/micro/body.php:44
330
- #: ../includes/templates/invoices/simple/micro/body.php:48
331
- msgid "SKU"
332
- msgstr "Identificador"
333
-
334
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:402
335
- #: ../includes/templates/invoices/global/micro/body.php:236
336
- #: ../includes/templates/invoices/simple/micro/body.php:101
337
- msgid "Subtotal"
338
- msgstr "Subtotal"
339
-
340
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:414
341
- msgid "Tax (item)"
342
- msgstr ""
343
-
344
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:426
345
- msgid "Tax (total)"
346
- msgstr ""
347
-
348
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:438
349
- #: ../includes/templates/invoices/global/micro/body.php:220
350
- #: ../includes/templates/invoices/simple/micro/body.php:85
351
- msgid "Discount"
352
- msgstr "Descuento"
353
-
354
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:450
355
- #: ../includes/templates/invoices/global/micro/body.php:228
356
- #: ../includes/templates/invoices/global/micro/body.php:244
357
- #: ../includes/templates/invoices/simple/micro/body.php:93
358
- #: ../includes/templates/invoices/simple/micro/body.php:109
359
- msgid "Shipping"
360
- msgstr "Envío"
361
-
362
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:464
363
- msgid "General Options"
364
- msgstr "Ajustes generales"
365
-
366
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:470
367
- msgid "Invoice Number Options"
368
- msgstr "Opciones de número de factura"
369
-
370
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:476
371
- msgid "Header Options"
372
- msgstr "Opciones de la cabecera"
373
-
374
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:482
375
- msgid "Body Options"
376
- msgstr ""
377
-
378
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:488
379
- msgid "Footer Options"
380
- msgstr "Opciones del Pie"
381
-
382
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:494
383
- msgid "Visible Columns"
384
- msgstr "Columnas visibles"
385
-
386
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:500
387
- msgid "These are the general template options."
388
- msgstr "Estas son las opciones de plantilla general."
389
-
390
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:501
391
- msgid "These are the invoice number options."
392
- msgstr "Estas son las opciones de número de factura."
393
-
394
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:502
395
- msgid "The header will be visible on every page. "
396
- msgstr ""
397
-
398
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:506
399
- msgid "The footer will be visible on every page."
400
- msgstr ""
401
-
402
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:506
403
- msgid ""
404
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
405
- "order payment method."
406
- msgstr ""
407
-
408
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:509
409
- msgid "Enable or disable the columns."
410
- msgstr "Activar o desactivar las columnas."
411
-
412
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:579
413
- msgid "File is invalid and contains either '..' or './'."
414
- msgstr "Archivo no es válido y contiene '..' o './'."
415
-
416
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:586
417
- msgid "File is invalid and contains ':' after the first character."
418
- msgstr "Archivo no es válido y contiene ':' después del primer carácter."
419
-
420
- #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:595
421
- msgid "File should be less then 2MB."
422
- msgstr "Este archivo debe pesar menos de 2MB."
423
-
424
- #: ../includes/be-woocommerce-pdf-invoices.php:126
425
- #, php-format
426
- msgid ""
427
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
428
- "PDF Invoices</strong></a>."
429
- msgstr ""
430
-
431
- #: ../includes/be-woocommerce-pdf-invoices.php:136
432
- msgid "Settings"
433
- msgstr ""
434
-
435
- #: ../includes/be-woocommerce-pdf-invoices.php:137
436
- msgid "Premium"
437
- msgstr ""
438
-
439
- #: ../includes/be-woocommerce-pdf-invoices.php:182
440
- msgid "Invalid request"
441
- msgstr ""
442
-
443
- #: ../includes/be-woocommerce-pdf-invoices.php:185
444
- msgid "Invalid order ID"
445
- msgstr ""
446
-
447
- #: ../includes/be-woocommerce-pdf-invoices.php:191
448
- msgid "Access denied"
449
- msgstr ""
450
-
451
- #: ../includes/be-woocommerce-pdf-invoices.php:218
452
- msgid "General"
453
- msgstr "General"
454
-
455
- #: ../includes/be-woocommerce-pdf-invoices.php:242
456
- msgid "Invoices"
457
- msgstr "Facturas"
458
-
459
- #: ../includes/be-woocommerce-pdf-invoices.php:281
460
- #, php-format
461
- msgid ""
462
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
463
- "%s★★★★★%s rating. A huge thank you in advance!"
464
- msgstr ""
465
-
466
- #: ../includes/be-woocommerce-pdf-invoices.php:282
467
- #, php-format
468
- msgid "Version %s"
469
- msgstr ""
470
-
471
- #: ../includes/be-woocommerce-pdf-invoices.php:356
472
- msgid "PDF Invoice"
473
- msgstr "PDF Factura"
474
-
475
- #: ../includes/be-woocommerce-pdf-invoices.php:382
476
- msgid "Invoiced on:"
477
- msgstr "Facturado en:"
478
-
479
- #: ../includes/be-woocommerce-pdf-invoices.php:386
480
- msgid "Invoice number:"
481
- msgstr "Nº de factura"
482
-
483
- #: ../includes/be-woocommerce-pdf-invoices.php:424
484
- msgid "View invoice"
485
- msgstr "Ver factura"
486
-
487
- #: ../includes/be-woocommerce-pdf-invoices.php:424
488
- msgid "View"
489
- msgstr "Ver"
490
-
491
- #: ../includes/be-woocommerce-pdf-invoices.php:425
492
- msgid "Cancel invoice"
493
- msgstr "Cancelar factura"
494
-
495
- #: ../includes/be-woocommerce-pdf-invoices.php:425
496
- msgid "Cancel"
497
- msgstr "Cancelar"
498
-
499
- #: ../includes/be-woocommerce-pdf-invoices.php:427
500
- msgid "Are you sure to delete the invoice?"
501
- msgstr "¿Está seguro de eliminar la factura?"
502
-
503
- #: ../includes/be-woocommerce-pdf-invoices.php:430
504
- msgid "Create invoice"
505
- msgstr "Crear factura"
506
-
507
- #: ../includes/be-woocommerce-pdf-invoices.php:430
508
- msgid "Create"
509
- msgstr "Crear"
510
-
511
- #: ../includes/be-woocommerce-pdf-invoices.php:453
512
- #, php-format
513
- msgid "Invoice %s (PDF)"
514
- msgstr "Factura %s (PDF)"
515
-
516
- #: ../includes/be-woocommerce-pdf-invoices.php:563
517
- #, php-format
518
- msgid ""
519
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
520
- "really need your ★★★★★ rating. It will support future development big-time. "
521
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
522
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
523
- "done it!</a>"
524
- msgstr ""
525
-
526
- #: ../includes/class-bewpi-invoice.php:48
527
- msgid ""
528
- "Whoops, no template found. Please select a template on the Template settings "
529
- "page first."
530
- msgstr ""
531
-
532
- #: ../includes/partials/settings-sidebar.php:2
533
- msgid "WooCommerce PDF Invoices Premium"
534
- msgstr ""
535
-
536
- #: ../includes/partials/settings-sidebar.php:4
537
- msgid ""
538
- "This plugin offers a premium version which comes with the following features:"
539
- msgstr ""
540
-
541
- #: ../includes/partials/settings-sidebar.php:5
542
- msgid "Bill periodically by generating and sending global invoices."
543
- msgstr ""
544
-
545
- #: ../includes/partials/settings-sidebar.php:6
546
- msgid "Add additional PDF's to customer invoices."
547
- msgstr ""
548
-
549
- #: ../includes/partials/settings-sidebar.php:7
550
- msgid "Send customer invoices directly to suppliers and others."
551
- msgstr ""
552
-
553
- #: ../includes/partials/settings-sidebar.php:8
554
- #, php-format
555
- msgid ""
556
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
557
- msgstr ""
558
-
559
- #: ../includes/partials/settings-sidebar.php:10
560
- msgid "Learn more"
561
- msgstr ""
562
-
563
- #: ../includes/partials/settings-sidebar.php:13
564
- msgid "Stay up-to-date"
565
- msgstr ""
566
-
567
- #: ../includes/partials/settings-sidebar.php:17
568
- msgid ""
569
- "We're constantly developing new features, stay up-to-date by subscribing to "
570
- "our newsletter."
571
- msgstr ""
572
-
573
- #: ../includes/partials/settings-sidebar.php:23
574
- msgid "Your email address"
575
- msgstr ""
576
-
577
- #: ../includes/partials/settings-sidebar.php:29
578
- msgid "Signup"
579
- msgstr ""
580
-
581
- #: ../includes/partials/settings-sidebar.php:32
582
- msgid "No spam, ever. Unsubscribe at any time"
583
- msgstr ""
584
-
585
- #: ../includes/partials/settings-sidebar.php:41
586
- msgid "About"
587
- msgstr ""
588
-
589
- #: ../includes/partials/settings-sidebar.php:43
590
- msgid ""
591
- "This plugin is an open source project wich aims to fill the invoicing gap of "
592
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
593
- msgstr ""
594
-
595
- #: ../includes/partials/settings-sidebar.php:45
596
- msgid "<b>Version</b>: "
597
- msgstr ""
598
-
599
- #: ../includes/partials/settings-sidebar.php:47
600
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
601
- msgstr ""
602
-
603
- #: ../includes/partials/settings-sidebar.php:50
604
- msgid "Support"
605
- msgstr ""
606
-
607
- #: ../includes/partials/settings-sidebar.php:52
608
- msgid ""
609
- "We will never ask for donations, but to garantee future development, we do "
610
- "need your support. Please show us your appreciation by leaving a <a href="
611
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
612
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
613
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
614
- msgstr ""
615
-
616
- #: ../includes/partials/settings-sidebar.php:72
617
- msgid ""
618
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
619
- msgstr ""
620
-
621
- #: ../includes/partials/settings-sidebar.php:77
622
- msgid "Need Help?"
623
- msgstr ""
624
-
625
- #: ../includes/partials/settings-sidebar.php:79
626
- msgid "Frequently Asked Questions"
627
- msgstr ""
628
-
629
- #: ../includes/partials/settings-sidebar.php:80
630
- msgid "Support forum"
631
- msgstr ""
632
-
633
- #: ../includes/partials/settings-sidebar.php:81
634
- msgid "Request a feature"
635
- msgstr ""
636
-
637
- #: ../includes/partials/settings-sidebar.php:82
638
- msgid "Email us"
639
- msgstr ""
640
-
641
- #: ../includes/templates/invoices/global/micro/body.php:5
642
- #: ../includes/templates/invoices/simple/micro/body.php:5
643
- msgid "Invoice to"
644
- msgstr "Factura a"
645
-
646
- #: ../includes/templates/invoices/global/micro/body.php:7
647
- #: ../includes/templates/invoices/simple/micro/body.php:7
648
- #, php-format
649
- msgid "Phone: %s"
650
- msgstr ""
651
-
652
- #: ../includes/templates/invoices/global/micro/body.php:11
653
- #: ../includes/templates/invoices/simple/micro/body.php:11
654
- msgid "Ship to"
655
- msgstr "Enviar a"
656
-
657
- #: ../includes/templates/invoices/global/micro/body.php:22
658
- msgid "Global Invoice"
659
- msgstr ""
660
-
661
- #: ../includes/templates/invoices/global/micro/body.php:40
662
- #: ../includes/templates/invoices/simple/micro/body.php:44
663
- msgid "Description"
664
- msgstr "Descripción"
665
-
666
- #: ../includes/templates/invoices/global/micro/body.php:48
667
- #: ../includes/templates/invoices/simple/micro/body.php:52
668
- msgid "Cost"
669
- msgstr "Importe"
670
-
671
- #: ../includes/templates/invoices/global/micro/body.php:50
672
- #: ../includes/templates/invoices/simple/micro/body.php:54
673
- msgid "Qty"
674
- msgstr "Cant."
675
-
676
- #: ../includes/templates/invoices/global/micro/body.php:56
677
- #: ../includes/templates/invoices/simple/micro/body.php:60
678
- msgid "VAT"
679
- msgstr "Impuestos"
680
-
681
- #: ../includes/templates/invoices/global/micro/body.php:67
682
- #: ../includes/templates/invoices/global/micro/body.php:280
683
- #: ../includes/templates/invoices/simple/micro/body.php:71
684
- #: ../includes/templates/invoices/simple/micro/body.php:145
685
- msgid "Total"
686
- msgstr "Total"
687
-
688
- #: ../includes/templates/invoices/global/micro/body.php:75
689
- #, php-format
690
- msgid "Order #%d - %s"
691
- msgstr ""
692
-
693
- #: ../includes/templates/invoices/global/micro/body.php:255
694
- #: ../includes/templates/invoices/simple/micro/body.php:120
695
- msgid "Fee"
696
- msgstr "Cuota"
697
-
698
- #: ../includes/templates/invoices/global/micro/body.php:287
699
- #: ../includes/templates/invoices/simple/micro/body.php:152
700
- msgid "Refunded"
701
- msgstr "Rembolsado"
702
-
703
- #: ../includes/templates/invoices/global/micro/footer.php:15
704
- #: ../includes/templates/invoices/simple/micro/footer.php:18
705
- #, php-format
706
- msgid "%s of %s"
707
- msgstr ""
708
-
709
- #: ../includes/templates/invoices/simple/micro/body.php:22
710
- msgid "Invoice"
711
- msgstr "Factura"
712
-
713
- #: ../includes/templates/invoices/simple/micro/body.php:25
714
- #, php-format
715
- msgid "Order Number: %s"
716
- msgstr ""
717
-
718
- #: ../includes/templates/invoices/simple/micro/body.php:26
719
- #, php-format
720
- msgid "Order Date: %s"
721
- msgstr ""
722
-
723
- #: ../includes/templates/invoices/simple/micro/body.php:289
724
- #: ../includes/templates/invoices/simple/micro/body.php:294
725
- msgid "Customer note"
726
- msgstr "Nota del Cliente"
727
-
728
- #~ msgid "Feel free to use "
729
- #~ msgstr "Siéntase libre de utilizar"
730
-
731
- #~ msgid "Intro text"
732
- #~ msgstr "Texto introductorio"
733
-
734
- #~ msgid ""
735
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
736
- #~ "%s Only available with sequential numbering type and you need to check "
737
- #~ "the checkbox to actually reset the value."
738
- #~ msgstr ""
739
- #~ "Reiniciar el contador de factura y comenzar con el siguiente número de la "
740
- #~ "factura. %s %sNote:%s Sólo está disponible con el tipo de numeración "
741
- #~ "secuencial y necesitas marcar la casilla para reiniciar realmente el "
742
- #~ "valor."
743
-
744
- #~ msgid "Tax"
745
- #~ msgstr "Impuesto"
746
-
747
- #~ msgid "%sPayment%s via"
748
- #~ msgstr "%sPayment%s vía"
749
-
750
- #~ msgid ""
751
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
752
- #~ "is required."
753
- #~ msgstr ""
754
- #~ "No dude en utilizar los marcadores de posición %s %s %s %s %s y %s. %s "
755
- #~ "%sNote:%s %s es necesario."
756
-
757
- #~ msgid "Subtotal will be including tax and excluding discount and shipping."
758
- #~ msgstr "Subtotal es incluyendo impuestos y excepto el descuento y el envío."
759
-
760
- #~ msgid ""
761
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
762
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
763
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
764
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
765
- #~ msgstr ""
766
- #~ "Gracias por usar <b>WooCommerce PDF Facturas</b> por algún tiempo ahora. "
767
- #~ "Por favor, mostrar su agradecimiento al dejar una calificación ★★★★★. Un "
768
- #~ "enorme gracias por adelantado! <br /> <a href='%s' target='_blank'>Sí, lo "
769
- #~ "hará de inmediato!</a> - <a href='%s'>No, ya hecho!</a>"
770
-
771
- #~ msgid "Order Number %s"
772
- #~ msgstr "Número de pedido: %s"
773
-
774
- #~ msgid "Order Date %s"
775
- #~ msgstr "Fecha del pedido: %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
6
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
7
+ "Last-Translator: iduran <iduran@solucionesc2.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: es_ES\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Loco-Target-Locale: es_ES\n"
22
+ "X-Generator: Poedit 1.7.3\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: ../includes/abstracts/abstract-bewpi-document.php:64
26
+ msgid "Paid"
27
+ msgstr ""
28
+
29
+ #: ../includes/abstracts/abstract-bewpi-invoice.php:262
30
+ #, php-format
31
+ msgid ""
32
+ "Could not create invoice. In order to reset invoice number with %d, delete "
33
+ "all invoices with invoice number %s and greater."
34
+ msgstr ""
35
+
36
+ #: ../includes/abstracts/abstract-bewpi-invoice.php:267
37
+ #, php-format
38
+ msgid ""
39
+ "Could not create invoice. Invoice with invoice number %s already exists. "
40
+ "First delete invoice and try again."
41
+ msgstr ""
42
+
43
+ #: ../includes/abstracts/abstract-bewpi-invoice.php:310
44
+ #, php-format
45
+ msgid ""
46
+ "Invoice with invoice number %s not found. First create invoice and try again."
47
+ msgstr ""
48
+
49
+ #: ../includes/abstracts/abstract-bewpi-invoice.php:372
50
+ #, php-format
51
+ msgid "VAT Number: %s"
52
+ msgstr ""
53
+
54
+ #: ../includes/abstracts/abstract-bewpi-invoice.php:383
55
+ #, php-format
56
+ msgid "Purchase Order Number: %s"
57
+ msgstr ""
58
+
59
+ #: ../includes/abstracts/abstract-bewpi-setting.php:98
60
+ msgid "Allowed HTML tags: "
61
+ msgstr ""
62
+
63
+ #: ../includes/abstracts/abstract-bewpi-setting.php:173
64
+ msgid "Remove logo"
65
+ msgstr "Eliminar logo"
66
+
67
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:86
68
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:115
69
+ msgid "Attach to Email"
70
+ msgstr "Adjuntar a correo electrónico"
71
+
72
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:94
73
+ msgid "Processing order"
74
+ msgstr "Procesando el pedido."
75
+
76
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:98
77
+ msgid "Completed order"
78
+ msgstr "Pedido completado"
79
+
80
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:102
81
+ msgid "Customer invoice"
82
+ msgstr "Factura de Cliente"
83
+
84
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:106
85
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:135
86
+ msgid "Do not attach"
87
+ msgstr ""
88
+
89
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:120
90
+ msgid "Attach to New order Email"
91
+ msgstr ""
92
+
93
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:127
94
+ msgid "View PDF"
95
+ msgstr ""
96
+
97
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:135
98
+ msgid "Download"
99
+ msgstr ""
100
+
101
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:139
102
+ msgid "Open in new browser tab/window"
103
+ msgstr ""
104
+
105
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:153
106
+ msgid "Enable download from account"
107
+ msgstr ""
108
+
109
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:154
110
+ msgid ""
111
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
112
+ "page.</div>"
113
+ msgstr ""
114
+
115
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:166
116
+ msgid "Enable Email It In"
117
+ msgstr "Habilitar Email It In"
118
+
119
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:174
120
+ msgid "Email It In account"
121
+ msgstr "Cuenta Email it In"
122
+
123
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:179
124
+ #, php-format
125
+ msgid "Get your account from your Email It In %suser account%s."
126
+ msgstr "Obtenga su cuenta desde su Email It In %suser account%s."
127
+
128
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:190
129
+ msgid "Enable mPDF debugging"
130
+ msgstr ""
131
+
132
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:191
133
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
134
+ msgstr ""
135
+
136
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:206
137
+ msgid "Email Options"
138
+ msgstr "Opciones de correo electrónico"
139
+
140
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:212
141
+ msgid "Download Options"
142
+ msgstr ""
143
+
144
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:218
145
+ msgid "Cloud Storage Options"
146
+ msgstr "Opciones de almacenamiento en la nube"
147
+
148
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:224
149
+ msgid "Debug Options"
150
+ msgstr ""
151
+
152
+ #: ../includes/admin/settings/class-bewpi-admin-settings-general.php:232
153
+ #, php-format
154
+ msgid ""
155
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
156
+ "Egnyte and enter your account below."
157
+ msgstr ""
158
+
159
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:88
160
+ #: ../includes/be-woocommerce-pdf-invoices.php:219
161
+ msgid "Template"
162
+ msgstr "Plantilla"
163
+
164
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:100
165
+ msgid "Color theme"
166
+ msgstr "Color del tema"
167
+
168
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:111
169
+ msgid "Date format"
170
+ msgstr "Formato de fecha"
171
+
172
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:116
173
+ #, php-format
174
+ msgid "%sFormat%s of invoice date and order date."
175
+ msgstr "%sFormat%s de la fecha de la factura y fecha del pedido."
176
+
177
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:131
178
+ msgid "Display prices including tax"
179
+ msgstr "Mostrar precios con impuesto incluido"
180
+
181
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:132
182
+ msgid ""
183
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
184
+ "still be excluding tax, so disable it within the visible columns section."
185
+ msgstr ""
186
+
187
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:144
188
+ msgid "Shipping taxable"
189
+ msgstr ""
190
+
191
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:145
192
+ msgid "Enable to display subtotal including shipping."
193
+ msgstr ""
194
+
195
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:157
196
+ msgid "Mark invoice as paid"
197
+ msgstr ""
198
+
199
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:158
200
+ msgid "Invoice will be watermarked when order has been paid."
201
+ msgstr ""
202
+
203
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:166
204
+ msgid "Company name"
205
+ msgstr "Nombre de la empresa"
206
+
207
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:177
208
+ msgid "Company logo"
209
+ msgstr "Logo de la empresa"
210
+
211
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:188
212
+ msgid "Company address"
213
+ msgstr "Dirección de la empresa"
214
+
215
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:193
216
+ msgid "Displayed in upper-right corner near logo."
217
+ msgstr ""
218
+
219
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:199
220
+ msgid "Company details"
221
+ msgstr "Detalles de la empresa"
222
+
223
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:204
224
+ msgid "Displayed below company address."
225
+ msgstr ""
226
+
227
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:211
228
+ msgid "Thank you text"
229
+ msgstr ""
230
+
231
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:216
232
+ msgid "Displayed in big colored bar directly after invoice total."
233
+ msgstr ""
234
+
235
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:217
236
+ msgid "Thank you for your purchase!"
237
+ msgstr ""
238
+
239
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:227
240
+ msgid "Show customer notes"
241
+ msgstr "Mostrar notas de cliente"
242
+
243
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:234
244
+ msgid "Terms & conditions, policies etc."
245
+ msgstr "Términos y condiciones, políticas, etc."
246
+
247
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:239
248
+ #, php-format
249
+ msgid ""
250
+ "Displayed below customer notes and above footer. Want to attach additional "
251
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
252
+ msgstr ""
253
+
254
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:240
255
+ msgid "Items will be shipped within 2 days."
256
+ msgstr ""
257
+
258
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:246
259
+ msgid "Left footer column."
260
+ msgstr ""
261
+
262
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:252
263
+ #, php-format
264
+ msgid "<b>Payment method</b> %s"
265
+ msgstr ""
266
+
267
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:257
268
+ msgid "Right footer column."
269
+ msgstr ""
270
+
271
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:262
272
+ msgid "Leave empty to show page numbering."
273
+ msgstr ""
274
+
275
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:269
276
+ msgid "Type"
277
+ msgstr "Tipo"
278
+
279
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:277
280
+ msgid "WooCommerce order number"
281
+ msgstr "Número de pedido de WooCommerce"
282
+
283
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:281
284
+ msgid "Sequential number"
285
+ msgstr "Número secuencial"
286
+
287
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:295
288
+ msgid "Reset invoice counter"
289
+ msgstr ""
290
+
291
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:305
292
+ msgid "Next"
293
+ msgstr "Siguiente"
294
+
295
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:310
296
+ msgid ""
297
+ "Reset the invoice counter and start counting from given invoice number.<br/"
298
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
299
+ "editable by selecting checkbox. Next number needs to be lower then highest "
300
+ "existing invoice number or delete invoices first."
301
+ msgstr ""
302
+
303
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:320
304
+ msgid "Digits"
305
+ msgstr "Dígitos"
306
+
307
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:336
308
+ msgid "[prefix]"
309
+ msgstr "Prefijo"
310
+
311
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:347
312
+ msgid "[suffix]"
313
+ msgstr "Sufijo"
314
+
315
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:358
316
+ msgid "Format"
317
+ msgstr "Formato"
318
+
319
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:363
320
+ #, php-format
321
+ msgid ""
322
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
323
+ "slashes aren't supported."
324
+ msgstr ""
325
+
326
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:377
327
+ msgid "Reset on 1st of january"
328
+ msgstr "Reiniciar el 1 de enero"
329
+
330
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:390
331
+ #: ../includes/templates/invoices/global/micro/body.php:44
332
+ #: ../includes/templates/invoices/simple/micro/body.php:48
333
+ msgid "SKU"
334
+ msgstr "Identificador"
335
+
336
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:402
337
+ #: ../includes/templates/invoices/global/micro/body.php:236
338
+ #: ../includes/templates/invoices/simple/micro/body.php:101
339
+ msgid "Subtotal"
340
+ msgstr "Subtotal"
341
+
342
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:414
343
+ msgid "Tax (item)"
344
+ msgstr ""
345
+
346
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:426
347
+ msgid "Tax (total)"
348
+ msgstr ""
349
+
350
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:438
351
+ #: ../includes/templates/invoices/global/micro/body.php:220
352
+ #: ../includes/templates/invoices/simple/micro/body.php:85
353
+ msgid "Discount"
354
+ msgstr "Descuento"
355
+
356
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:450
357
+ #: ../includes/templates/invoices/global/micro/body.php:228
358
+ #: ../includes/templates/invoices/global/micro/body.php:244
359
+ #: ../includes/templates/invoices/simple/micro/body.php:93
360
+ #: ../includes/templates/invoices/simple/micro/body.php:109
361
+ msgid "Shipping"
362
+ msgstr "Envío"
363
+
364
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:464
365
+ msgid "General Options"
366
+ msgstr "Ajustes generales"
367
+
368
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:470
369
+ msgid "Invoice Number Options"
370
+ msgstr "Opciones de número de factura"
371
+
372
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:476
373
+ msgid "Header Options"
374
+ msgstr "Opciones de la cabecera"
375
+
376
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:482
377
+ msgid "Body Options"
378
+ msgstr ""
379
+
380
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:488
381
+ msgid "Footer Options"
382
+ msgstr "Opciones del Pie"
383
+
384
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:494
385
+ msgid "Visible Columns"
386
+ msgstr "Columnas visibles"
387
+
388
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:500
389
+ msgid "These are the general template options."
390
+ msgstr "Estas son las opciones de plantilla general."
391
+
392
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:501
393
+ msgid "These are the invoice number options."
394
+ msgstr "Estas son las opciones de número de factura."
395
+
396
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:502
397
+ msgid "The header will be visible on every page. "
398
+ msgstr ""
399
+
400
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:506
401
+ msgid "The footer will be visible on every page."
402
+ msgstr ""
403
+
404
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:506
405
+ msgid ""
406
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
407
+ "order payment method."
408
+ msgstr ""
409
+
410
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:509
411
+ msgid "Enable or disable the columns."
412
+ msgstr "Activar o desactivar las columnas."
413
+
414
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:579
415
+ msgid "File is invalid and contains either '..' or './'."
416
+ msgstr "Archivo no es válido y contiene '..' o './'."
417
+
418
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:586
419
+ msgid "File is invalid and contains ':' after the first character."
420
+ msgstr "Archivo no es válido y contiene ':' después del primer carácter."
421
+
422
+ #: ../includes/admin/settings/class-bewpi-admin-settings-template.php:595
423
+ msgid "File should be less then 2MB."
424
+ msgstr "Este archivo debe pesar menos de 2MB."
425
+
426
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:92
427
+ msgid "Purchase email"
428
+ msgstr ""
429
+
430
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:97
431
+ msgid ""
432
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
433
+ "\">wcpdfinvoices.com</a>."
434
+ msgstr ""
435
+
436
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:103
437
+ msgid "License"
438
+ msgstr ""
439
+
440
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:108
441
+ msgid ""
442
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
443
+ "\">wcpdfinvoices.com</a> to receive updates."
444
+ msgstr ""
445
+
446
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:123
447
+ msgid "Processing Renewal Order"
448
+ msgstr ""
449
+
450
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:127
451
+ msgid "Completed Renewal Order"
452
+ msgstr ""
453
+
454
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:131
455
+ msgid "Customer Renewal Invoice"
456
+ msgstr ""
457
+
458
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:149
459
+ msgid "Attach to New Renewal Order Email"
460
+ msgstr ""
461
+
462
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:157
463
+ msgid "PDF attachment"
464
+ msgstr ""
465
+
466
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:162
467
+ msgid "Add for example a PDF with your terms & conditions."
468
+ msgstr ""
469
+
470
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:168
471
+ msgid "Suppliers"
472
+ msgstr ""
473
+
474
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:173
475
+ msgid ""
476
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
477
+ "adding there Email It In email addresses. Email addresses need to be "
478
+ "seperated by comma's."
479
+ msgstr ""
480
+
481
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:184
482
+ msgid ""
483
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
484
+ "generate a global invoice from there account</div>"
485
+ msgstr ""
486
+
487
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:191
488
+ msgid "Customer generation period"
489
+ msgstr ""
490
+
491
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:196
492
+ msgid ""
493
+ "Should your customers have the ability to generate a global invoice by month "
494
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
495
+ msgstr ""
496
+
497
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:199
498
+ msgid "Month"
499
+ msgstr ""
500
+
501
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:203
502
+ msgid "Year"
503
+ msgstr ""
504
+
505
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:217
506
+ msgid "Send to your Cloud Storage"
507
+ msgstr ""
508
+
509
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:229
510
+ msgid "Email to customer"
511
+ msgstr ""
512
+
513
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:241
514
+ msgid "Email to supplier(s)"
515
+ msgstr ""
516
+
517
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:248
518
+ msgid "Email subject"
519
+ msgstr ""
520
+
521
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:253
522
+ msgid "Subject for the global invoice email."
523
+ msgstr ""
524
+
525
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:260
526
+ msgid "Email message"
527
+ msgstr ""
528
+
529
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:265
530
+ msgid "Message for the global invoice email."
531
+ msgstr ""
532
+
533
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:279
534
+ msgid "Premium Options"
535
+ msgstr ""
536
+
537
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:285
538
+ msgid "Woocommerce Subscriptions Email Options"
539
+ msgstr ""
540
+
541
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:291
542
+ msgid "Attachment Options"
543
+ msgstr ""
544
+
545
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:297
546
+ msgid "Supplier Options"
547
+ msgstr ""
548
+
549
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:303
550
+ msgid "Global Invoice Options"
551
+ msgstr ""
552
+
553
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:310
554
+ msgid ""
555
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
556
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
557
+ "should be activated in order to work."
558
+ msgstr ""
559
+
560
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:311
561
+ msgid "Attach a PDF to the invoice."
562
+ msgstr ""
563
+
564
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:312
565
+ msgid "Send customer invoice automatically to your supplier(s)."
566
+ msgstr ""
567
+
568
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:313
569
+ msgid ""
570
+ "Generate global invoices on Orders page by selecting multiple orders and "
571
+ "applying action or let customers generate periodically from My Account page."
572
+ msgstr ""
573
+
574
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:407
575
+ msgid "File to large."
576
+ msgstr ""
577
+
578
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:410
579
+ msgid "Only PDF files are allowed."
580
+ msgstr ""
581
+
582
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:422
583
+ msgid "Remove"
584
+ msgstr ""
585
+
586
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:424
587
+ msgid "Choose"
588
+ msgstr ""
589
+
590
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:447
591
+ msgid "Active"
592
+ msgstr ""
593
+
594
+ #: ../includes/admin/settings/class-bewpipremium-admin-settings.php:449
595
+ msgid "Inactive"
596
+ msgstr ""
597
+
598
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:89
599
+ #: ../includes/be-woocommerce-pdf-invoices.php:182
600
+ msgid "Invalid request"
601
+ msgstr ""
602
+
603
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:98
604
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:121
605
+ msgid "Something went wrong."
606
+ msgstr ""
607
+
608
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:109
609
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:132
610
+ msgid "No orders found."
611
+ msgstr ""
612
+
613
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:169
614
+ #: ../includes/be-woocommerce-pdf-invoices.php:136
615
+ msgid "Settings"
616
+ msgstr ""
617
+
618
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:170
619
+ #: ../includes/partials/settings-sidebar.php:50
620
+ msgid "Support"
621
+ msgstr ""
622
+
623
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:189
624
+ #, php-format
625
+ msgid ""
626
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
627
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
628
+ "the free version (%s+) and try again.</p>"
629
+ msgstr ""
630
+
631
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:195
632
+ #: ../includes/be-woocommerce-pdf-invoices.php:137
633
+ msgid "Premium"
634
+ msgstr ""
635
+
636
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:210
637
+ msgid "Generate global invoice"
638
+ msgstr ""
639
+
640
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:264
641
+ msgid "Please select more then one order."
642
+ msgstr ""
643
+
644
+ #: ../includes/be-woocommerce-pdf-invoices-premium.php:360
645
+ msgid "Global invoice successfully generated! "
646
+ msgstr ""
647
+
648
+ #: ../includes/be-woocommerce-pdf-invoices.php:126
649
+ #, php-format
650
+ msgid ""
651
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
652
+ "PDF Invoices</strong></a>."
653
+ msgstr ""
654
+
655
+ #: ../includes/be-woocommerce-pdf-invoices.php:185
656
+ msgid "Invalid order ID"
657
+ msgstr ""
658
+
659
+ #: ../includes/be-woocommerce-pdf-invoices.php:191
660
+ msgid "Access denied"
661
+ msgstr ""
662
+
663
+ #: ../includes/be-woocommerce-pdf-invoices.php:218
664
+ msgid "General"
665
+ msgstr "General"
666
+
667
+ #: ../includes/be-woocommerce-pdf-invoices.php:251
668
+ msgid "Invoices"
669
+ msgstr "Facturas"
670
+
671
+ #: ../includes/be-woocommerce-pdf-invoices.php:294
672
+ #, php-format
673
+ msgid ""
674
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
675
+ "%s★★★★★%s rating. A huge thank you in advance!"
676
+ msgstr ""
677
+
678
+ #: ../includes/be-woocommerce-pdf-invoices.php:295
679
+ #, php-format
680
+ msgid "Version %s"
681
+ msgstr ""
682
+
683
+ #: ../includes/be-woocommerce-pdf-invoices.php:369
684
+ msgid "PDF Invoice"
685
+ msgstr "PDF Factura"
686
+
687
+ #: ../includes/be-woocommerce-pdf-invoices.php:395
688
+ msgid "Invoiced on:"
689
+ msgstr "Facturado en:"
690
+
691
+ #: ../includes/be-woocommerce-pdf-invoices.php:399
692
+ msgid "Invoice number:"
693
+ msgstr "Nº de factura"
694
+
695
+ #: ../includes/be-woocommerce-pdf-invoices.php:438
696
+ msgid "View invoice"
697
+ msgstr "Ver factura"
698
+
699
+ #: ../includes/be-woocommerce-pdf-invoices.php:438
700
+ msgid "View"
701
+ msgstr "Ver"
702
+
703
+ #: ../includes/be-woocommerce-pdf-invoices.php:439
704
+ msgid "Cancel invoice"
705
+ msgstr "Cancelar factura"
706
+
707
+ #: ../includes/be-woocommerce-pdf-invoices.php:439
708
+ msgid "Cancel"
709
+ msgstr "Cancelar"
710
+
711
+ #: ../includes/be-woocommerce-pdf-invoices.php:441
712
+ msgid "Are you sure to delete the invoice?"
713
+ msgstr "¿Está seguro de eliminar la factura?"
714
+
715
+ #: ../includes/be-woocommerce-pdf-invoices.php:444
716
+ msgid "Create invoice"
717
+ msgstr "Crear factura"
718
+
719
+ #: ../includes/be-woocommerce-pdf-invoices.php:444
720
+ msgid "Create"
721
+ msgstr "Crear"
722
+
723
+ #: ../includes/be-woocommerce-pdf-invoices.php:467
724
+ #, php-format
725
+ msgid "Invoice %s (PDF)"
726
+ msgstr "Factura %s (PDF)"
727
+
728
+ #: ../includes/be-woocommerce-pdf-invoices.php:577
729
+ #, php-format
730
+ msgid ""
731
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
732
+ "really need your ★★★★★ rating. It will support future development big-time. "
733
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
734
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
735
+ "done it!</a>"
736
+ msgstr ""
737
+
738
+ #: ../includes/class-bewpi-invoice.php:50
739
+ msgid ""
740
+ "Whoops, no template found. Please select a template on the Template settings "
741
+ "page first."
742
+ msgstr ""
743
+
744
+ #: ../includes/partials/customer-generation.php:1
745
+ msgid "Generate Global Invoice"
746
+ msgstr ""
747
+
748
+ #: ../includes/partials/customer-generation.php:11
749
+ msgid "Select a month"
750
+ msgstr ""
751
+
752
+ #: ../includes/partials/customer-generation.php:24
753
+ msgid "Select a year"
754
+ msgstr ""
755
+
756
+ #: ../includes/partials/customer-generation.php:38
757
+ msgid "Generate invoice"
758
+ msgstr ""
759
+
760
+ #: ../includes/partials/settings-sidebar.php:2
761
+ msgid "WooCommerce PDF Invoices Premium"
762
+ msgstr ""
763
+
764
+ #: ../includes/partials/settings-sidebar.php:4
765
+ msgid ""
766
+ "This plugin offers a premium version which comes with the following features:"
767
+ msgstr ""
768
+
769
+ #: ../includes/partials/settings-sidebar.php:5
770
+ msgid "Bill periodically by generating and sending global invoices."
771
+ msgstr ""
772
+
773
+ #: ../includes/partials/settings-sidebar.php:6
774
+ msgid "Add additional PDF's to customer invoices."
775
+ msgstr ""
776
+
777
+ #: ../includes/partials/settings-sidebar.php:7
778
+ msgid "Send customer invoices directly to suppliers and others."
779
+ msgstr ""
780
+
781
+ #: ../includes/partials/settings-sidebar.php:8
782
+ #, php-format
783
+ msgid ""
784
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
785
+ msgstr ""
786
+
787
+ #: ../includes/partials/settings-sidebar.php:10
788
+ msgid "Learn more"
789
+ msgstr ""
790
+
791
+ #: ../includes/partials/settings-sidebar.php:13
792
+ msgid "Stay up-to-date"
793
+ msgstr ""
794
+
795
+ #: ../includes/partials/settings-sidebar.php:17
796
+ msgid ""
797
+ "We're constantly developing new features, stay up-to-date by subscribing to "
798
+ "our newsletter."
799
+ msgstr ""
800
+
801
+ #: ../includes/partials/settings-sidebar.php:23
802
+ msgid "Your email address"
803
+ msgstr ""
804
+
805
+ #: ../includes/partials/settings-sidebar.php:29
806
+ msgid "Signup"
807
+ msgstr ""
808
+
809
+ #: ../includes/partials/settings-sidebar.php:32
810
+ msgid "No spam, ever. Unsubscribe at any time"
811
+ msgstr ""
812
+
813
+ #: ../includes/partials/settings-sidebar.php:41
814
+ msgid "About"
815
+ msgstr ""
816
+
817
+ #: ../includes/partials/settings-sidebar.php:43
818
+ msgid ""
819
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
820
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
821
+ msgstr ""
822
+
823
+ #: ../includes/partials/settings-sidebar.php:45
824
+ msgid "<b>Version</b>: "
825
+ msgstr ""
826
+
827
+ #: ../includes/partials/settings-sidebar.php:47
828
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
829
+ msgstr ""
830
+
831
+ #: ../includes/partials/settings-sidebar.php:52
832
+ msgid ""
833
+ "We will never ask for donations, but to garantee future development, we do "
834
+ "need your support. Please show us your appreciation by leaving a <a href="
835
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
836
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
837
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
838
+ msgstr ""
839
+
840
+ #: ../includes/partials/settings-sidebar.php:72
841
+ msgid ""
842
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
843
+ msgstr ""
844
+
845
+ #: ../includes/partials/settings-sidebar.php:77
846
+ msgid "Need Help?"
847
+ msgstr ""
848
+
849
+ #: ../includes/partials/settings-sidebar.php:79
850
+ msgid "Frequently Asked Questions"
851
+ msgstr ""
852
+
853
+ #: ../includes/partials/settings-sidebar.php:80
854
+ msgid "Support forum"
855
+ msgstr ""
856
+
857
+ #: ../includes/partials/settings-sidebar.php:81
858
+ msgid "Request a feature"
859
+ msgstr ""
860
+
861
+ #: ../includes/partials/settings-sidebar.php:82
862
+ msgid "Email us"
863
+ msgstr ""
864
+
865
+ #: ../includes/templates/invoices/global/micro/body.php:5
866
+ #: ../includes/templates/invoices/simple/micro/body.php:5
867
+ msgid "Invoice to"
868
+ msgstr "Factura a"
869
+
870
+ #: ../includes/templates/invoices/global/micro/body.php:7
871
+ #: ../includes/templates/invoices/simple/micro/body.php:7
872
+ #, php-format
873
+ msgid "Phone: %s"
874
+ msgstr ""
875
+
876
+ #: ../includes/templates/invoices/global/micro/body.php:11
877
+ #: ../includes/templates/invoices/simple/micro/body.php:11
878
+ msgid "Ship to"
879
+ msgstr "Enviar a"
880
+
881
+ #: ../includes/templates/invoices/global/micro/body.php:22
882
+ msgid "Global Invoice"
883
+ msgstr ""
884
+
885
+ #: ../includes/templates/invoices/global/micro/body.php:40
886
+ #: ../includes/templates/invoices/simple/micro/body.php:44
887
+ msgid "Description"
888
+ msgstr "Descripción"
889
+
890
+ #: ../includes/templates/invoices/global/micro/body.php:48
891
+ #: ../includes/templates/invoices/simple/micro/body.php:52
892
+ msgid "Cost"
893
+ msgstr "Importe"
894
+
895
+ #: ../includes/templates/invoices/global/micro/body.php:50
896
+ #: ../includes/templates/invoices/simple/micro/body.php:54
897
+ msgid "Qty"
898
+ msgstr "Cant."
899
+
900
+ #: ../includes/templates/invoices/global/micro/body.php:56
901
+ #: ../includes/templates/invoices/simple/micro/body.php:60
902
+ msgid "VAT"
903
+ msgstr "Impuestos"
904
+
905
+ #: ../includes/templates/invoices/global/micro/body.php:67
906
+ #: ../includes/templates/invoices/global/micro/body.php:280
907
+ #: ../includes/templates/invoices/simple/micro/body.php:71
908
+ #: ../includes/templates/invoices/simple/micro/body.php:145
909
+ msgid "Total"
910
+ msgstr "Total"
911
+
912
+ #: ../includes/templates/invoices/global/micro/body.php:75
913
+ #, php-format
914
+ msgid "Order #%d - %s"
915
+ msgstr ""
916
+
917
+ #: ../includes/templates/invoices/global/micro/body.php:255
918
+ #: ../includes/templates/invoices/simple/micro/body.php:120
919
+ msgid "Fee"
920
+ msgstr "Cuota"
921
+
922
+ #: ../includes/templates/invoices/global/micro/body.php:287
923
+ #: ../includes/templates/invoices/simple/micro/body.php:152
924
+ msgid "Refunded"
925
+ msgstr "Rembolsado"
926
+
927
+ #: ../includes/templates/invoices/global/micro/footer.php:15
928
+ #: ../includes/templates/invoices/simple/micro/footer.php:18
929
+ #, php-format
930
+ msgid "%s of %s"
931
+ msgstr ""
932
+
933
+ #: ../includes/templates/invoices/simple/micro/body.php:22
934
+ msgid "Invoice"
935
+ msgstr "Factura"
936
+
937
+ #: ../includes/templates/invoices/simple/micro/body.php:25
938
+ #, php-format
939
+ msgid "Order Number: %s"
940
+ msgstr ""
941
+
942
+ #: ../includes/templates/invoices/simple/micro/body.php:26
943
+ #, php-format
944
+ msgid "Order Date: %s"
945
+ msgstr ""
946
+
947
+ #: ../includes/templates/invoices/simple/micro/body.php:289
948
+ #: ../includes/templates/invoices/simple/micro/body.php:294
949
+ msgid "Customer note"
950
+ msgstr "Nota del Cliente"
951
+
952
+ #~ msgid "Feel free to use "
953
+ #~ msgstr "Siéntase libre de utilizar"
954
+
955
+ #~ msgid "Intro text"
956
+ #~ msgstr "Texto introductorio"
957
+
958
+ #~ msgid ""
959
+ #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
960
+ #~ "%s Only available with sequential numbering type and you need to check "
961
+ #~ "the checkbox to actually reset the value."
962
+ #~ msgstr ""
963
+ #~ "Reiniciar el contador de factura y comenzar con el siguiente número de la "
964
+ #~ "factura. %s %sNote:%s Sólo está disponible con el tipo de numeración "
965
+ #~ "secuencial y necesitas marcar la casilla para reiniciar realmente el "
966
+ #~ "valor."
967
+
968
+ #~ msgid "Tax"
969
+ #~ msgstr "Impuesto"
970
+
971
+ #~ msgid "%sPayment%s via"
972
+ #~ msgstr "%sPayment%s vía"
973
+
974
+ #~ msgid ""
975
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
976
+ #~ "is required."
977
+ #~ msgstr ""
978
+ #~ "No dude en utilizar los marcadores de posición %s %s %s %s %s y %s. %s "
979
+ #~ "%sNote:%s %s es necesario."
980
+
981
+ #~ msgid "Subtotal will be including tax and excluding discount and shipping."
982
+ #~ msgstr "Subtotal es incluyendo impuestos y excepto el descuento y el envío."
983
+
984
+ #~ msgid ""
985
+ #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
986
+ #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
987
+ #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
988
+ #~ "away!</a> - <a href='%s'>No, already done it!</a>"
989
+ #~ msgstr ""
990
+ #~ "Gracias por usar <b>WooCommerce PDF Facturas</b> por algún tiempo ahora. "
991
+ #~ "Por favor, mostrar su agradecimiento al dejar una calificación ★★★★★. Un "
992
+ #~ "enorme gracias por adelantado! <br /> <a href='%s' target='_blank'>Sí, lo "
993
+ #~ "hará de inmediato!</a> - <a href='%s'>No, ya hecho!</a>"
994
+
995
+ #~ msgid "Order Number %s"
996
+ #~ msgstr "Número de pedido: %s"
997
+
998
+ #~ msgid "Order Date %s"
999
+ #~ msgstr "Fecha del pedido: %s"
lang/woocommerce-pdf-invoices-fr_FR.po CHANGED
@@ -1,816 +1,1040 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
5
- "PO-Revision-Date: 2016-02-10 21:03+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"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.3\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: includes/abstracts/abstract-bewpi-document.php:64
23
- msgid "Paid"
24
- msgstr ""
25
-
26
- #: includes/abstracts/abstract-bewpi-invoice.php:262
27
- #, php-format
28
- msgid ""
29
- "Could not create invoice. In order to reset invoice number with %d, delete "
30
- "all invoices with invoice number %s and greater."
31
- msgstr ""
32
-
33
- #: includes/abstracts/abstract-bewpi-invoice.php:267
34
- #, php-format
35
- msgid ""
36
- "Could not create invoice. Invoice with invoice number %s already exists. "
37
- "First delete invoice and try again."
38
- msgstr ""
39
-
40
- #: includes/abstracts/abstract-bewpi-invoice.php:310
41
- #, php-format
42
- msgid ""
43
- "Invoice with invoice number %s not found. First create invoice and try again."
44
- msgstr ""
45
-
46
- #: includes/abstracts/abstract-bewpi-invoice.php:372
47
- #, php-format
48
- msgid "VAT Number: %s"
49
- msgstr ""
50
-
51
- #: includes/abstracts/abstract-bewpi-invoice.php:383
52
- #, php-format
53
- msgid "Purchase Order Number: %s"
54
- msgstr ""
55
-
56
- #: includes/abstracts/abstract-bewpi-setting.php:98
57
- msgid "Allowed HTML tags: "
58
- msgstr ""
59
-
60
- #: includes/abstracts/abstract-bewpi-setting.php:173
61
- msgid "Remove logo"
62
- msgstr "Retirer le logo"
63
-
64
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
- msgid "Attach to Email"
66
- msgstr "Joindre à l'Email"
67
-
68
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
69
- msgid "Processing order"
70
- msgstr "traitement de la commande en cours"
71
-
72
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
73
- msgid "Completed order"
74
- msgstr "Commande terminée"
75
-
76
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
77
- msgid "Customer invoice"
78
- msgstr "Facture Client"
79
-
80
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
81
- msgid "Do not attach"
82
- msgstr ""
83
-
84
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
85
- msgid "Attach to New order Email"
86
- msgstr "Joindre à l'email de la nouvelle commande"
87
-
88
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
89
- msgid "View PDF"
90
- msgstr ""
91
-
92
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
93
- msgid "Download"
94
- msgstr ""
95
-
96
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
97
- msgid "Open in new browser tab/window"
98
- msgstr ""
99
-
100
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
101
- msgid "Enable download from account"
102
- msgstr ""
103
-
104
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
105
- msgid ""
106
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
107
- "page.</div>"
108
- msgstr ""
109
-
110
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
111
- msgid "Enable Email It In"
112
- msgstr "Activer l'envoi Email It In"
113
-
114
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
115
- msgid "Email It In account"
116
- msgstr "Compte Email It In"
117
-
118
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
119
- #, php-format
120
- msgid "Get your account from your Email It In %suser account%s."
121
- msgstr "Obtenez votre compte depuis Email It In %scompte utilisateur%s"
122
-
123
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
124
- msgid "Enable mPDF debugging"
125
- msgstr ""
126
-
127
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
128
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
129
- msgstr ""
130
-
131
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
132
- msgid "Email Options"
133
- msgstr "Options Email"
134
-
135
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
136
- msgid "Download Options"
137
- msgstr ""
138
-
139
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
140
- msgid "Cloud Storage Options"
141
- msgstr "Options de stockage du cloud"
142
-
143
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
144
- msgid "Debug Options"
145
- msgstr ""
146
-
147
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
148
- #, php-format
149
- msgid ""
150
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
151
- "Egnyte and enter your account below."
152
- msgstr ""
153
- "Inscrivez-vous à %s pour envoyer les factures dans votre Dropbox, OneDrive, "
154
- "Google Drive ou Egnyte et entrez votre compte ci-dessous"
155
-
156
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
157
- #: includes/be-woocommerce-pdf-invoices.php:219
158
- msgid "Template"
159
- msgstr "Template"
160
-
161
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
162
- msgid "Color theme"
163
- msgstr "Couleur du thème"
164
-
165
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
166
- msgid "Date format"
167
- msgstr "Format de la date"
168
-
169
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
170
- #, php-format
171
- msgid "%sFormat%s of invoice date and order date."
172
- msgstr "%sFormat%s de la date de commande et de la date de facturation "
173
-
174
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
175
- msgid "Display prices including tax"
176
- msgstr ""
177
-
178
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
179
- msgid ""
180
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
181
- "still be excluding tax, so disable it within the visible columns section."
182
- msgstr ""
183
-
184
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
185
- msgid "Shipping taxable"
186
- msgstr ""
187
-
188
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
189
- msgid "Enable to display subtotal including shipping."
190
- msgstr ""
191
-
192
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
193
- msgid "Mark invoice as paid"
194
- msgstr ""
195
-
196
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
197
- msgid "Invoice will be watermarked when order has been paid."
198
- msgstr ""
199
-
200
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
201
- msgid "Company name"
202
- msgstr "Nom de la société"
203
-
204
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
205
- msgid "Company logo"
206
- msgstr "Logo de la société"
207
-
208
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
209
- msgid "Company address"
210
- msgstr "Adresse de la société"
211
-
212
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
213
- msgid "Displayed in upper-right corner near logo."
214
- msgstr ""
215
-
216
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
217
- msgid "Company details"
218
- msgstr "Détails de la société"
219
-
220
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
221
- msgid "Displayed below company address."
222
- msgstr ""
223
-
224
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
225
- msgid "Thank you text"
226
- msgstr ""
227
-
228
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
229
- msgid "Displayed in big colored bar directly after invoice total."
230
- msgstr ""
231
-
232
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
233
- msgid "Thank you for your purchase!"
234
- msgstr ""
235
-
236
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
237
- msgid "Show customer notes"
238
- msgstr "Montrer les notes du client"
239
-
240
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
241
- msgid "Terms & conditions, policies etc."
242
- msgstr "Termes et conditions, mentions légales, etc..."
243
-
244
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
245
- #, php-format
246
- msgid ""
247
- "Displayed below customer notes and above footer. Want to attach additional "
248
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
249
- msgstr ""
250
-
251
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
252
- msgid "Items will be shipped within 2 days."
253
- msgstr ""
254
-
255
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
256
- msgid "Left footer column."
257
- msgstr ""
258
-
259
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
260
- #, php-format
261
- msgid "<b>Payment method</b> %s"
262
- msgstr ""
263
-
264
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
265
- msgid "Right footer column."
266
- msgstr ""
267
-
268
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
269
- msgid "Leave empty to show page numbering."
270
- msgstr ""
271
-
272
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
273
- msgid "Type"
274
- msgstr "Type"
275
-
276
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
277
- msgid "WooCommerce order number"
278
- msgstr "WooCommerce numéro de commande"
279
-
280
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
281
- msgid "Sequential number"
282
- msgstr "Numéro séquentiel"
283
-
284
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
285
- msgid "Reset invoice counter"
286
- msgstr ""
287
-
288
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
289
- msgid "Next"
290
- msgstr "Suivant"
291
-
292
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
293
- msgid ""
294
- "Reset the invoice counter and start counting from given invoice number.<br/"
295
- "><b>Note:</b> Only available for Sequential numbering and value will be "
296
- "editable by selecting checkbox. Next number needs to be lower then highest "
297
- "existing invoice number or delete invoices first."
298
- msgstr ""
299
-
300
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
301
- msgid "Digits"
302
- msgstr "Chiffres"
303
-
304
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
305
- msgid "[prefix]"
306
- msgstr "[prefixe]"
307
-
308
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
309
- msgid "[suffix]"
310
- msgstr "[suffixe]"
311
-
312
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
313
- msgid "Format"
314
- msgstr "Format"
315
-
316
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
317
- #, php-format
318
- msgid ""
319
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
320
- "slashes aren't supported."
321
- msgstr ""
322
-
323
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
324
- msgid "Reset on 1st of january"
325
- msgstr "Réinitialiser le 1er janvier"
326
-
327
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
328
- #: includes/templates/invoices/global/micro/body.php:44
329
- #: includes/templates/invoices/simple/micro/body.php:48
330
- msgid "SKU"
331
- msgstr "UGS"
332
-
333
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
334
- #: includes/templates/invoices/global/micro/body.php:236
335
- #: includes/templates/invoices/simple/micro/body.php:101
336
- msgid "Subtotal"
337
- msgstr "Sous-total"
338
-
339
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
340
- msgid "Tax (item)"
341
- msgstr ""
342
-
343
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
344
- msgid "Tax (total)"
345
- msgstr ""
346
-
347
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
348
- #: includes/templates/invoices/global/micro/body.php:220
349
- #: includes/templates/invoices/simple/micro/body.php:85
350
- msgid "Discount"
351
- msgstr "Réduction"
352
-
353
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
354
- #: includes/templates/invoices/global/micro/body.php:228
355
- #: includes/templates/invoices/global/micro/body.php:244
356
- #: includes/templates/invoices/simple/micro/body.php:93
357
- #: includes/templates/invoices/simple/micro/body.php:109
358
- msgid "Shipping"
359
- msgstr "Livraison"
360
-
361
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
362
- msgid "General Options"
363
- msgstr "Options générales "
364
-
365
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
366
- msgid "Invoice Number Options"
367
- msgstr "Options numéro de facture"
368
-
369
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
370
- msgid "Header Options"
371
- msgstr "Options en-tête"
372
-
373
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
374
- msgid "Body Options"
375
- msgstr ""
376
-
377
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
378
- msgid "Footer Options"
379
- msgstr "Options pied de page"
380
-
381
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
382
- msgid "Visible Columns"
383
- msgstr "Colonnes Visibles"
384
-
385
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
386
- msgid "These are the general template options."
387
- msgstr "Ce sont les options générales du modèle."
388
-
389
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
390
- msgid "These are the invoice number options."
391
- msgstr "Ce sont les options du numéro de facture."
392
-
393
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
394
- msgid "The header will be visible on every page. "
395
- msgstr "L'en-tête sera visible sur toutes les pages"
396
-
397
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
398
- msgid "The footer will be visible on every page."
399
- msgstr ""
400
-
401
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
402
- msgid ""
403
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
404
- "order payment method."
405
- msgstr ""
406
-
407
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
408
- msgid "Enable or disable the columns."
409
- msgstr "Activer ou désactiver les colonnes."
410
-
411
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
412
- msgid "File is invalid and contains either '..' or './'."
413
- msgstr "Le fichier est invalide et contient soit '..' ou './'."
414
-
415
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
416
- msgid "File is invalid and contains ':' after the first character."
417
- msgstr "Le fichier est invalide et contient ':' aprés la premiere lettre. "
418
-
419
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
420
- msgid "File should be less then 2MB."
421
- msgstr "Le fichier doit être inférieure à 2 Mo."
422
-
423
- #: includes/be-woocommerce-pdf-invoices.php:126
424
- #, php-format
425
- msgid ""
426
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
427
- "PDF Invoices</strong></a>."
428
- msgstr ""
429
-
430
- #: includes/be-woocommerce-pdf-invoices.php:136
431
- msgid "Settings"
432
- msgstr ""
433
-
434
- #: includes/be-woocommerce-pdf-invoices.php:137
435
- msgid "Premium"
436
- msgstr ""
437
-
438
- #: includes/be-woocommerce-pdf-invoices.php:182
439
- msgid "Invalid request"
440
- msgstr ""
441
-
442
- #: includes/be-woocommerce-pdf-invoices.php:185
443
- msgid "Invalid order ID"
444
- msgstr ""
445
-
446
- #: includes/be-woocommerce-pdf-invoices.php:191
447
- msgid "Access denied"
448
- msgstr ""
449
-
450
- #: includes/be-woocommerce-pdf-invoices.php:218
451
- msgid "General"
452
- msgstr "Général"
453
-
454
- #: includes/be-woocommerce-pdf-invoices.php:242
455
- msgid "Invoices"
456
- msgstr "Factures"
457
-
458
- #: includes/be-woocommerce-pdf-invoices.php:281
459
- #, php-format
460
- msgid ""
461
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
462
- "%s★★★★★%s rating. A huge thank you in advance!"
463
- msgstr ""
464
-
465
- #: includes/be-woocommerce-pdf-invoices.php:282
466
- #, php-format
467
- msgid "Version %s"
468
- msgstr ""
469
-
470
- #: includes/be-woocommerce-pdf-invoices.php:356
471
- msgid "PDF Invoice"
472
- msgstr "Facture PDF"
473
-
474
- #: includes/be-woocommerce-pdf-invoices.php:382
475
- msgid "Invoiced on:"
476
- msgstr "Facturés sur"
477
-
478
- #: includes/be-woocommerce-pdf-invoices.php:386
479
- msgid "Invoice number:"
480
- msgstr "Numéro de facture"
481
-
482
- #: includes/be-woocommerce-pdf-invoices.php:424
483
- msgid "View invoice"
484
- msgstr " Voir la facture"
485
-
486
- #: includes/be-woocommerce-pdf-invoices.php:424
487
- msgid "View"
488
- msgstr "Voir"
489
-
490
- #: includes/be-woocommerce-pdf-invoices.php:425
491
- msgid "Cancel invoice"
492
- msgstr "Annuler la facture"
493
-
494
- #: includes/be-woocommerce-pdf-invoices.php:425
495
- msgid "Cancel"
496
- msgstr "Annuler"
497
-
498
- #: includes/be-woocommerce-pdf-invoices.php:427
499
- msgid "Are you sure to delete the invoice?"
500
- msgstr "Êtes-vous certain de vouloir supprimer la facture? "
501
-
502
- #: includes/be-woocommerce-pdf-invoices.php:430
503
- msgid "Create invoice"
504
- msgstr "Créer une facture"
505
-
506
- #: includes/be-woocommerce-pdf-invoices.php:430
507
- msgid "Create"
508
- msgstr "créer"
509
-
510
- #: includes/be-woocommerce-pdf-invoices.php:453
511
- #, php-format
512
- msgid "Invoice %s (PDF)"
513
- msgstr ""
514
-
515
- #: includes/be-woocommerce-pdf-invoices.php:563
516
- #, php-format
517
- msgid ""
518
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
519
- "really need your ★★★★★ rating. It will support future development big-time. "
520
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
521
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
522
- "done it!</a>"
523
- msgstr ""
524
-
525
- #: includes/class-bewpi-invoice.php:48
526
- msgid ""
527
- "Whoops, no template found. Please select a template on the Template settings "
528
- "page first."
529
- msgstr ""
530
-
531
- #: includes/partials/settings-sidebar.php:2
532
- msgid "WooCommerce PDF Invoices Premium"
533
- msgstr ""
534
-
535
- #: includes/partials/settings-sidebar.php:4
536
- msgid ""
537
- "This plugin offers a premium version which comes with the following features:"
538
- msgstr ""
539
-
540
- #: includes/partials/settings-sidebar.php:5
541
- msgid "Bill periodically by generating and sending global invoices."
542
- msgstr ""
543
-
544
- #: includes/partials/settings-sidebar.php:6
545
- msgid "Add additional PDF's to customer invoices."
546
- msgstr ""
547
-
548
- #: includes/partials/settings-sidebar.php:7
549
- msgid "Send customer invoices directly to suppliers and others."
550
- msgstr ""
551
-
552
- #: includes/partials/settings-sidebar.php:8
553
- #, php-format
554
- msgid ""
555
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
556
- msgstr ""
557
-
558
- #: includes/partials/settings-sidebar.php:10
559
- msgid "Learn more"
560
- msgstr ""
561
-
562
- #: includes/partials/settings-sidebar.php:13
563
- msgid "Stay up-to-date"
564
- msgstr ""
565
-
566
- #: includes/partials/settings-sidebar.php:17
567
- msgid ""
568
- "We're constantly developing new features, stay up-to-date by subscribing to "
569
- "our newsletter."
570
- msgstr ""
571
-
572
- #: includes/partials/settings-sidebar.php:23
573
- msgid "Your email address"
574
- msgstr ""
575
-
576
- #: includes/partials/settings-sidebar.php:29
577
- msgid "Signup"
578
- msgstr ""
579
-
580
- #: includes/partials/settings-sidebar.php:32
581
- msgid "No spam, ever. Unsubscribe at any time"
582
- msgstr ""
583
-
584
- #: includes/partials/settings-sidebar.php:41
585
- msgid "About"
586
- msgstr ""
587
-
588
- #: includes/partials/settings-sidebar.php:43
589
- msgid ""
590
- "This plugin is an open source project wich aims to fill the invoicing gap of "
591
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
592
- msgstr ""
593
-
594
- #: includes/partials/settings-sidebar.php:45
595
- msgid "<b>Version</b>: "
596
- msgstr ""
597
-
598
- #: includes/partials/settings-sidebar.php:47
599
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
600
- msgstr ""
601
-
602
- #: includes/partials/settings-sidebar.php:50
603
- msgid "Support"
604
- msgstr ""
605
-
606
- #: includes/partials/settings-sidebar.php:52
607
- msgid ""
608
- "We will never ask for donations, but to garantee future development, we do "
609
- "need your support. Please show us your appreciation by leaving a <a href="
610
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
611
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
612
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
613
- msgstr ""
614
-
615
- #: includes/partials/settings-sidebar.php:72
616
- msgid ""
617
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
618
- msgstr ""
619
-
620
- #: includes/partials/settings-sidebar.php:77
621
- msgid "Need Help?"
622
- msgstr ""
623
-
624
- #: includes/partials/settings-sidebar.php:79
625
- msgid "Frequently Asked Questions"
626
- msgstr ""
627
-
628
- #: includes/partials/settings-sidebar.php:80
629
- msgid "Support forum"
630
- msgstr ""
631
-
632
- #: includes/partials/settings-sidebar.php:81
633
- msgid "Request a feature"
634
- msgstr ""
635
-
636
- #: includes/partials/settings-sidebar.php:82
637
- msgid "Email us"
638
- msgstr ""
639
-
640
- #: includes/templates/invoices/global/micro/body.php:5
641
- #: includes/templates/invoices/simple/micro/body.php:5
642
- msgid "Invoice to"
643
- msgstr "Facture pour"
644
-
645
- #: includes/templates/invoices/global/micro/body.php:7
646
- #: includes/templates/invoices/simple/micro/body.php:7
647
- #, php-format
648
- msgid "Phone: %s"
649
- msgstr ""
650
-
651
- #: includes/templates/invoices/global/micro/body.php:11
652
- #: includes/templates/invoices/simple/micro/body.php:11
653
- msgid "Ship to"
654
- msgstr "Livraison pour"
655
-
656
- #: includes/templates/invoices/global/micro/body.php:22
657
- msgid "Global Invoice"
658
- msgstr ""
659
-
660
- #: includes/templates/invoices/global/micro/body.php:40
661
- #: includes/templates/invoices/simple/micro/body.php:44
662
- msgid "Description"
663
- msgstr "Description"
664
-
665
- #: includes/templates/invoices/global/micro/body.php:48
666
- #: includes/templates/invoices/simple/micro/body.php:52
667
- msgid "Cost"
668
- msgstr "Coût"
669
-
670
- #: includes/templates/invoices/global/micro/body.php:50
671
- #: includes/templates/invoices/simple/micro/body.php:54
672
- msgid "Qty"
673
- msgstr "Qté"
674
-
675
- #: includes/templates/invoices/global/micro/body.php:56
676
- #: includes/templates/invoices/simple/micro/body.php:60
677
- msgid "VAT"
678
- msgstr "TVA"
679
-
680
- #: includes/templates/invoices/global/micro/body.php:67
681
- #: includes/templates/invoices/global/micro/body.php:280
682
- #: includes/templates/invoices/simple/micro/body.php:71
683
- #: includes/templates/invoices/simple/micro/body.php:145
684
- msgid "Total"
685
- msgstr "Total"
686
-
687
- #: includes/templates/invoices/global/micro/body.php:75
688
- #, php-format
689
- msgid "Order #%d - %s"
690
- msgstr ""
691
-
692
- #: includes/templates/invoices/global/micro/body.php:255
693
- #: includes/templates/invoices/simple/micro/body.php:120
694
- msgid "Fee"
695
- msgstr ""
696
-
697
- #: includes/templates/invoices/global/micro/body.php:287
698
- #: includes/templates/invoices/simple/micro/body.php:152
699
- msgid "Refunded"
700
- msgstr "Remboursement"
701
-
702
- #: includes/templates/invoices/global/micro/footer.php:15
703
- #: includes/templates/invoices/simple/micro/footer.php:18
704
- #, php-format
705
- msgid "%s of %s"
706
- msgstr ""
707
-
708
- #: includes/templates/invoices/simple/micro/body.php:22
709
- msgid "Invoice"
710
- msgstr "Facture"
711
-
712
- #: includes/templates/invoices/simple/micro/body.php:25
713
- #, php-format
714
- msgid "Order Number: %s"
715
- msgstr ""
716
-
717
- #: includes/templates/invoices/simple/micro/body.php:26
718
- #, php-format
719
- msgid "Order Date: %s"
720
- msgstr ""
721
-
722
- #: includes/templates/invoices/simple/micro/body.php:289
723
- #: includes/templates/invoices/simple/micro/body.php:294
724
- msgid "Customer note"
725
- msgstr "Note du client"
726
-
727
- #~ msgid "Feel free to use "
728
- #~ msgstr "N'hésitez pas à utiliser"
729
-
730
- #~ msgid "Intro text"
731
- #~ msgstr "Texte d'introduction"
732
-
733
- #~ msgid ""
734
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
735
- #~ "%s Only available with sequential numbering type and you need to check "
736
- #~ "the checkbox to actually reset the value."
737
- #~ msgstr ""
738
- #~ "Réinitialiser le compteur de la facture et commencer avec le prochain "
739
- #~ "numéro de facture. %s %sNote:%s Uniquement disponible avec le type de "
740
- #~ "numérotation séquentielle et vous avez besoin de vérifier la case pour "
741
- #~ "réinitialiser la valeur"
742
-
743
- #~ msgid "Tax"
744
- #~ msgstr "TVA"
745
-
746
- #~ msgid "The footer will be visible on every page. "
747
- #~ msgstr "Le pied de page sera visible sur toutes les pages"
748
-
749
- #~ msgid "%sPayment%s via"
750
- #~ msgstr "%sPaiement%s via"
751
-
752
- #~ msgid "Order Number %s"
753
- #~ msgstr "Numéro d'ordre %s"
754
-
755
- #~ msgid "Order Date %s"
756
- #~ msgstr "Date de commande %s"
757
-
758
- #~ msgid "Download invoice (PDF)"
759
- #~ msgstr "Télécharger la facture (PDF)"
760
-
761
- #~ msgid ""
762
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
763
- #~ "required."
764
- #~ msgstr ""
765
- #~ "N'hésitez pas à utiliser les espaces réservés %s %s %s %s et %s. %s "
766
- #~ "%sNote:%s %s estrequis."
767
-
768
- #~ msgid "VAT %s"
769
- #~ msgstr "TVA %s"
770
-
771
- #~ msgid "Feel free to use"
772
- #~ msgstr "N'hésitez pas à l'utiliser"
773
-
774
- #~ msgid "Quantity"
775
- #~ msgstr "Qté"
776
-
777
- #~ msgid "Unit price"
778
- #~ msgstr "Prix unitaire"
779
-
780
- #~ msgid "Signup at %s and enter your account beyond."
781
- #~ msgstr "Inscription à %s et entrez votre compte."
782
-
783
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
784
- #~ msgstr "%sFormat%s de la date. Exemples: %s of %s"
785
-
786
- #~ msgid "Show invoice"
787
- #~ msgstr "voir la facture"
788
-
789
- #~ msgid "%sFormat%s of the date."
790
- #~ msgstr "%sFormat%s de la date."
791
-
792
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
793
- #~ msgstr ""
794
- #~ "Utilisez [suffixe], [préfixe] et [nombre] dans les espaces réservés."
795
-
796
- #~ msgid "Choose the color witch fits your company."
797
- #~ msgstr "Choisissez la couleur qui convient à votre entreprise."
798
-
799
- #~ msgid ""
800
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
801
- #~ "[number] as placeholders."
802
- #~ msgstr ""
803
- #~ "Choisissez le format pour le numéro de la facture. Utilisez [prefixe], "
804
- #~ "[suffixe] et [nombre] dans les espaces réservés."
805
-
806
- #~ msgid "Text to greet, congratulate or thank the customer. "
807
- #~ msgstr "Texte pour saluer, féliciter ou remercier le client. "
808
-
809
- #~ msgid "Some text"
810
- #~ msgstr "Du texte!!!!"
811
-
812
- #~ msgid "Text to greet, congratulate or thank the customer."
813
- #~ msgstr "Texte pour saluer, féliciter ou remercier le client."
814
-
815
- #~ msgid "Start all over on the first of January."
816
- #~ msgstr "Tout recommencer à zéro à partir du 1er Janvier."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
5
+ "PO-Revision-Date: 2016-03-04 14:25+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"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/abstracts/abstract-bewpi-document.php:64
23
+ msgid "Paid"
24
+ msgstr ""
25
+
26
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
27
+ #, php-format
28
+ msgid ""
29
+ "Could not create invoice. In order to reset invoice number with %d, delete "
30
+ "all invoices with invoice number %s and greater."
31
+ msgstr ""
32
+
33
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
34
+ #, php-format
35
+ msgid ""
36
+ "Could not create invoice. Invoice with invoice number %s already exists. "
37
+ "First delete invoice and try again."
38
+ msgstr ""
39
+
40
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
41
+ #, php-format
42
+ msgid ""
43
+ "Invoice with invoice number %s not found. First create invoice and try again."
44
+ msgstr ""
45
+
46
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
47
+ #, php-format
48
+ msgid "VAT Number: %s"
49
+ msgstr ""
50
+
51
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
52
+ #, php-format
53
+ msgid "Purchase Order Number: %s"
54
+ msgstr ""
55
+
56
+ #: includes/abstracts/abstract-bewpi-setting.php:98
57
+ msgid "Allowed HTML tags: "
58
+ msgstr ""
59
+
60
+ #: includes/abstracts/abstract-bewpi-setting.php:173
61
+ msgid "Remove logo"
62
+ msgstr "Retirer le logo"
63
+
64
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
66
+ msgid "Attach to Email"
67
+ msgstr "Joindre à l'Email"
68
+
69
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
70
+ msgid "Processing order"
71
+ msgstr "traitement de la commande en cours"
72
+
73
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
74
+ msgid "Completed order"
75
+ msgstr "Commande terminée"
76
+
77
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
78
+ msgid "Customer invoice"
79
+ msgstr "Facture Client"
80
+
81
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
82
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
83
+ msgid "Do not attach"
84
+ msgstr ""
85
+
86
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
87
+ msgid "Attach to New order Email"
88
+ msgstr "Joindre à l'email de la nouvelle commande"
89
+
90
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
91
+ msgid "View PDF"
92
+ msgstr ""
93
+
94
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
95
+ msgid "Download"
96
+ msgstr ""
97
+
98
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
99
+ msgid "Open in new browser tab/window"
100
+ msgstr ""
101
+
102
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
103
+ msgid "Enable download from account"
104
+ msgstr ""
105
+
106
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
107
+ msgid ""
108
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
109
+ "page.</div>"
110
+ msgstr ""
111
+
112
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
113
+ msgid "Enable Email It In"
114
+ msgstr "Activer l'envoi Email It In"
115
+
116
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
117
+ msgid "Email It In account"
118
+ msgstr "Compte Email It In"
119
+
120
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
121
+ #, php-format
122
+ msgid "Get your account from your Email It In %suser account%s."
123
+ msgstr "Obtenez votre compte depuis Email It In %scompte utilisateur%s"
124
+
125
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
126
+ msgid "Enable mPDF debugging"
127
+ msgstr ""
128
+
129
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
130
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
131
+ msgstr ""
132
+
133
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
134
+ msgid "Email Options"
135
+ msgstr "Options Email"
136
+
137
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
138
+ msgid "Download Options"
139
+ msgstr ""
140
+
141
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
142
+ msgid "Cloud Storage Options"
143
+ msgstr "Options de stockage du cloud"
144
+
145
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
146
+ msgid "Debug Options"
147
+ msgstr ""
148
+
149
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
150
+ #, php-format
151
+ msgid ""
152
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
153
+ "Egnyte and enter your account below."
154
+ msgstr ""
155
+ "Inscrivez-vous à %s pour envoyer les factures dans votre Dropbox, OneDrive, "
156
+ "Google Drive ou Egnyte et entrez votre compte ci-dessous"
157
+
158
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
159
+ #: includes/be-woocommerce-pdf-invoices.php:219
160
+ msgid "Template"
161
+ msgstr "Template"
162
+
163
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
164
+ msgid "Color theme"
165
+ msgstr "Couleur du thème"
166
+
167
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
168
+ msgid "Date format"
169
+ msgstr "Format de la date"
170
+
171
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
172
+ #, php-format
173
+ msgid "%sFormat%s of invoice date and order date."
174
+ msgstr "%sFormat%s de la date de commande et de la date de facturation "
175
+
176
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
177
+ msgid "Display prices including tax"
178
+ msgstr ""
179
+
180
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
181
+ msgid ""
182
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
183
+ "still be excluding tax, so disable it within the visible columns section."
184
+ msgstr ""
185
+
186
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
187
+ msgid "Shipping taxable"
188
+ msgstr ""
189
+
190
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
191
+ msgid "Enable to display subtotal including shipping."
192
+ msgstr ""
193
+
194
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
195
+ msgid "Mark invoice as paid"
196
+ msgstr ""
197
+
198
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
199
+ msgid "Invoice will be watermarked when order has been paid."
200
+ msgstr ""
201
+
202
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
203
+ msgid "Company name"
204
+ msgstr "Nom de la société"
205
+
206
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
207
+ msgid "Company logo"
208
+ msgstr "Logo de la société"
209
+
210
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
211
+ msgid "Company address"
212
+ msgstr "Adresse de la société"
213
+
214
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
215
+ msgid "Displayed in upper-right corner near logo."
216
+ msgstr ""
217
+
218
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
219
+ msgid "Company details"
220
+ msgstr "Détails de la société"
221
+
222
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
223
+ msgid "Displayed below company address."
224
+ msgstr ""
225
+
226
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
227
+ msgid "Thank you text"
228
+ msgstr ""
229
+
230
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
231
+ msgid "Displayed in big colored bar directly after invoice total."
232
+ msgstr ""
233
+
234
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
235
+ msgid "Thank you for your purchase!"
236
+ msgstr ""
237
+
238
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
239
+ msgid "Show customer notes"
240
+ msgstr "Montrer les notes du client"
241
+
242
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
243
+ msgid "Terms & conditions, policies etc."
244
+ msgstr "Termes et conditions, mentions légales, etc..."
245
+
246
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
247
+ #, php-format
248
+ msgid ""
249
+ "Displayed below customer notes and above footer. Want to attach additional "
250
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
251
+ msgstr ""
252
+
253
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
254
+ msgid "Items will be shipped within 2 days."
255
+ msgstr ""
256
+
257
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
258
+ msgid "Left footer column."
259
+ msgstr ""
260
+
261
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
262
+ #, php-format
263
+ msgid "<b>Payment method</b> %s"
264
+ msgstr ""
265
+
266
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
267
+ msgid "Right footer column."
268
+ msgstr ""
269
+
270
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
271
+ msgid "Leave empty to show page numbering."
272
+ msgstr ""
273
+
274
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
275
+ msgid "Type"
276
+ msgstr "Type"
277
+
278
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
279
+ msgid "WooCommerce order number"
280
+ msgstr "WooCommerce numéro de commande"
281
+
282
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
283
+ msgid "Sequential number"
284
+ msgstr "Numéro séquentiel"
285
+
286
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
287
+ msgid "Reset invoice counter"
288
+ msgstr ""
289
+
290
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
291
+ msgid "Next"
292
+ msgstr "Suivant"
293
+
294
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
295
+ msgid ""
296
+ "Reset the invoice counter and start counting from given invoice number.<br/"
297
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
298
+ "editable by selecting checkbox. Next number needs to be lower then highest "
299
+ "existing invoice number or delete invoices first."
300
+ msgstr ""
301
+
302
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
303
+ msgid "Digits"
304
+ msgstr "Chiffres"
305
+
306
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
307
+ msgid "[prefix]"
308
+ msgstr "[prefixe]"
309
+
310
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
311
+ msgid "[suffix]"
312
+ msgstr "[suffixe]"
313
+
314
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
315
+ msgid "Format"
316
+ msgstr "Format"
317
+
318
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
319
+ #, php-format
320
+ msgid ""
321
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
322
+ "slashes aren't supported."
323
+ msgstr ""
324
+
325
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
326
+ msgid "Reset on 1st of january"
327
+ msgstr "Réinitialiser le 1er janvier"
328
+
329
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
330
+ #: includes/templates/invoices/global/micro/body.php:44
331
+ #: includes/templates/invoices/simple/micro/body.php:48
332
+ msgid "SKU"
333
+ msgstr "UGS"
334
+
335
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
336
+ #: includes/templates/invoices/global/micro/body.php:236
337
+ #: includes/templates/invoices/simple/micro/body.php:101
338
+ msgid "Subtotal"
339
+ msgstr "Sous-total"
340
+
341
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
342
+ msgid "Tax (item)"
343
+ msgstr ""
344
+
345
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
346
+ msgid "Tax (total)"
347
+ msgstr ""
348
+
349
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
350
+ #: includes/templates/invoices/global/micro/body.php:220
351
+ #: includes/templates/invoices/simple/micro/body.php:85
352
+ msgid "Discount"
353
+ msgstr "Réduction"
354
+
355
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
356
+ #: includes/templates/invoices/global/micro/body.php:228
357
+ #: includes/templates/invoices/global/micro/body.php:244
358
+ #: includes/templates/invoices/simple/micro/body.php:93
359
+ #: includes/templates/invoices/simple/micro/body.php:109
360
+ msgid "Shipping"
361
+ msgstr "Livraison"
362
+
363
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
364
+ msgid "General Options"
365
+ msgstr "Options générales "
366
+
367
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
368
+ msgid "Invoice Number Options"
369
+ msgstr "Options numéro de facture"
370
+
371
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
372
+ msgid "Header Options"
373
+ msgstr "Options en-tête"
374
+
375
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
376
+ msgid "Body Options"
377
+ msgstr ""
378
+
379
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
380
+ msgid "Footer Options"
381
+ msgstr "Options pied de page"
382
+
383
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
384
+ msgid "Visible Columns"
385
+ msgstr "Colonnes Visibles"
386
+
387
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
388
+ msgid "These are the general template options."
389
+ msgstr "Ce sont les options générales du modèle."
390
+
391
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
392
+ msgid "These are the invoice number options."
393
+ msgstr "Ce sont les options du numéro de facture."
394
+
395
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
396
+ msgid "The header will be visible on every page. "
397
+ msgstr "L'en-tête sera visible sur toutes les pages"
398
+
399
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
400
+ msgid "The footer will be visible on every page."
401
+ msgstr ""
402
+
403
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
404
+ msgid ""
405
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
406
+ "order payment method."
407
+ msgstr ""
408
+
409
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
410
+ msgid "Enable or disable the columns."
411
+ msgstr "Activer ou désactiver les colonnes."
412
+
413
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
414
+ msgid "File is invalid and contains either '..' or './'."
415
+ msgstr "Le fichier est invalide et contient soit '..' ou './'."
416
+
417
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
418
+ msgid "File is invalid and contains ':' after the first character."
419
+ msgstr "Le fichier est invalide et contient ':' aprés la premiere lettre. "
420
+
421
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
422
+ msgid "File should be less then 2MB."
423
+ msgstr "Le fichier doit être inférieure à 2 Mo."
424
+
425
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
426
+ msgid "Purchase email"
427
+ msgstr ""
428
+
429
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
430
+ msgid ""
431
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
432
+ "\">wcpdfinvoices.com</a>."
433
+ msgstr ""
434
+
435
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
436
+ msgid "License"
437
+ msgstr ""
438
+
439
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
440
+ msgid ""
441
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
442
+ "\">wcpdfinvoices.com</a> to receive updates."
443
+ msgstr ""
444
+
445
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
446
+ msgid "Processing Renewal Order"
447
+ msgstr ""
448
+
449
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
450
+ msgid "Completed Renewal Order"
451
+ msgstr ""
452
+
453
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
454
+ msgid "Customer Renewal Invoice"
455
+ msgstr ""
456
+
457
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
458
+ msgid "Attach to New Renewal Order Email"
459
+ msgstr ""
460
+
461
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
462
+ msgid "PDF attachment"
463
+ msgstr ""
464
+
465
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
466
+ msgid "Add for example a PDF with your terms & conditions."
467
+ msgstr ""
468
+
469
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
470
+ msgid "Suppliers"
471
+ msgstr ""
472
+
473
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
474
+ msgid ""
475
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
476
+ "adding there Email It In email addresses. Email addresses need to be "
477
+ "seperated by comma's."
478
+ msgstr ""
479
+
480
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
481
+ msgid ""
482
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
483
+ "generate a global invoice from there account</div>"
484
+ msgstr ""
485
+
486
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
487
+ msgid "Customer generation period"
488
+ msgstr ""
489
+
490
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
491
+ msgid ""
492
+ "Should your customers have the ability to generate a global invoice by month "
493
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
494
+ msgstr ""
495
+
496
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
497
+ msgid "Month"
498
+ msgstr ""
499
+
500
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
501
+ msgid "Year"
502
+ msgstr ""
503
+
504
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
505
+ msgid "Send to your Cloud Storage"
506
+ msgstr ""
507
+
508
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
509
+ msgid "Email to customer"
510
+ msgstr ""
511
+
512
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
513
+ msgid "Email to supplier(s)"
514
+ msgstr ""
515
+
516
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
517
+ msgid "Email subject"
518
+ msgstr ""
519
+
520
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
521
+ msgid "Subject for the global invoice email."
522
+ msgstr ""
523
+
524
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
525
+ msgid "Email message"
526
+ msgstr ""
527
+
528
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
529
+ msgid "Message for the global invoice email."
530
+ msgstr ""
531
+
532
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
533
+ msgid "Premium Options"
534
+ msgstr ""
535
+
536
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
537
+ msgid "Woocommerce Subscriptions Email Options"
538
+ msgstr ""
539
+
540
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
541
+ msgid "Attachment Options"
542
+ msgstr ""
543
+
544
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
545
+ msgid "Supplier Options"
546
+ msgstr ""
547
+
548
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
549
+ msgid "Global Invoice Options"
550
+ msgstr ""
551
+
552
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
553
+ msgid ""
554
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
555
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
556
+ "should be activated in order to work."
557
+ msgstr ""
558
+
559
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
560
+ msgid "Attach a PDF to the invoice."
561
+ msgstr ""
562
+
563
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
564
+ msgid "Send customer invoice automatically to your supplier(s)."
565
+ msgstr ""
566
+
567
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
568
+ msgid ""
569
+ "Generate global invoices on Orders page by selecting multiple orders and "
570
+ "applying action or let customers generate periodically from My Account page."
571
+ msgstr ""
572
+
573
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
574
+ msgid "File to large."
575
+ msgstr ""
576
+
577
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
578
+ msgid "Only PDF files are allowed."
579
+ msgstr ""
580
+
581
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
582
+ msgid "Remove"
583
+ msgstr ""
584
+
585
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
586
+ msgid "Choose"
587
+ msgstr ""
588
+
589
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
590
+ msgid "Active"
591
+ msgstr ""
592
+
593
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
594
+ msgid "Inactive"
595
+ msgstr ""
596
+
597
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
598
+ #: includes/be-woocommerce-pdf-invoices.php:182
599
+ msgid "Invalid request"
600
+ msgstr ""
601
+
602
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
603
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
604
+ msgid "Something went wrong."
605
+ msgstr ""
606
+
607
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
608
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
609
+ msgid "No orders found."
610
+ msgstr ""
611
+
612
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
613
+ #: includes/be-woocommerce-pdf-invoices.php:136
614
+ msgid "Settings"
615
+ msgstr ""
616
+
617
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
618
+ #: includes/partials/settings-sidebar.php:50
619
+ msgid "Support"
620
+ msgstr ""
621
+
622
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
623
+ #, php-format
624
+ msgid ""
625
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
626
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
627
+ "the free version (%s+) and try again.</p>"
628
+ msgstr ""
629
+
630
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
631
+ #: includes/be-woocommerce-pdf-invoices.php:137
632
+ msgid "Premium"
633
+ msgstr ""
634
+
635
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
636
+ msgid "Generate global invoice"
637
+ msgstr ""
638
+
639
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
640
+ msgid "Please select more then one order."
641
+ msgstr ""
642
+
643
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
644
+ msgid "Global invoice successfully generated! "
645
+ msgstr ""
646
+
647
+ #: includes/be-woocommerce-pdf-invoices.php:126
648
+ #, php-format
649
+ msgid ""
650
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
651
+ "PDF Invoices</strong></a>."
652
+ msgstr ""
653
+
654
+ #: includes/be-woocommerce-pdf-invoices.php:185
655
+ msgid "Invalid order ID"
656
+ msgstr ""
657
+
658
+ #: includes/be-woocommerce-pdf-invoices.php:191
659
+ msgid "Access denied"
660
+ msgstr ""
661
+
662
+ #: includes/be-woocommerce-pdf-invoices.php:218
663
+ msgid "General"
664
+ msgstr "Général"
665
+
666
+ #: includes/be-woocommerce-pdf-invoices.php:251
667
+ msgid "Invoices"
668
+ msgstr "Factures"
669
+
670
+ #: includes/be-woocommerce-pdf-invoices.php:294
671
+ #, php-format
672
+ msgid ""
673
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
674
+ "%s★★★★★%s rating. A huge thank you in advance!"
675
+ msgstr ""
676
+
677
+ #: includes/be-woocommerce-pdf-invoices.php:295
678
+ #, php-format
679
+ msgid "Version %s"
680
+ msgstr ""
681
+
682
+ #: includes/be-woocommerce-pdf-invoices.php:369
683
+ msgid "PDF Invoice"
684
+ msgstr "Facture PDF"
685
+
686
+ #: includes/be-woocommerce-pdf-invoices.php:395
687
+ msgid "Invoiced on:"
688
+ msgstr "Facturés sur"
689
+
690
+ #: includes/be-woocommerce-pdf-invoices.php:399
691
+ msgid "Invoice number:"
692
+ msgstr "Numéro de facture"
693
+
694
+ #: includes/be-woocommerce-pdf-invoices.php:438
695
+ msgid "View invoice"
696
+ msgstr " Voir la facture"
697
+
698
+ #: includes/be-woocommerce-pdf-invoices.php:438
699
+ msgid "View"
700
+ msgstr "Voir"
701
+
702
+ #: includes/be-woocommerce-pdf-invoices.php:439
703
+ msgid "Cancel invoice"
704
+ msgstr "Annuler la facture"
705
+
706
+ #: includes/be-woocommerce-pdf-invoices.php:439
707
+ msgid "Cancel"
708
+ msgstr "Annuler"
709
+
710
+ #: includes/be-woocommerce-pdf-invoices.php:441
711
+ msgid "Are you sure to delete the invoice?"
712
+ msgstr "Êtes-vous certain de vouloir supprimer la facture? "
713
+
714
+ #: includes/be-woocommerce-pdf-invoices.php:444
715
+ msgid "Create invoice"
716
+ msgstr "Créer une facture"
717
+
718
+ #: includes/be-woocommerce-pdf-invoices.php:444
719
+ msgid "Create"
720
+ msgstr "créer"
721
+
722
+ #: includes/be-woocommerce-pdf-invoices.php:467
723
+ #, php-format
724
+ msgid "Invoice %s (PDF)"
725
+ msgstr ""
726
+
727
+ #: includes/be-woocommerce-pdf-invoices.php:577
728
+ #, php-format
729
+ msgid ""
730
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
731
+ "really need your ★★★★★ rating. It will support future development big-time. "
732
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
733
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
734
+ "done it!</a>"
735
+ msgstr ""
736
+
737
+ #: includes/class-bewpi-invoice.php:50
738
+ msgid ""
739
+ "Whoops, no template found. Please select a template on the Template settings "
740
+ "page first."
741
+ msgstr ""
742
+
743
+ #: includes/partials/customer-generation.php:1
744
+ msgid "Generate Global Invoice"
745
+ msgstr ""
746
+
747
+ #: includes/partials/customer-generation.php:11
748
+ msgid "Select a month"
749
+ msgstr ""
750
+
751
+ #: includes/partials/customer-generation.php:24
752
+ msgid "Select a year"
753
+ msgstr ""
754
+
755
+ #: includes/partials/customer-generation.php:38
756
+ msgid "Generate invoice"
757
+ msgstr ""
758
+
759
+ #: includes/partials/settings-sidebar.php:2
760
+ msgid "WooCommerce PDF Invoices Premium"
761
+ msgstr ""
762
+
763
+ #: includes/partials/settings-sidebar.php:4
764
+ msgid ""
765
+ "This plugin offers a premium version which comes with the following features:"
766
+ msgstr ""
767
+
768
+ #: includes/partials/settings-sidebar.php:5
769
+ msgid "Bill periodically by generating and sending global invoices."
770
+ msgstr ""
771
+
772
+ #: includes/partials/settings-sidebar.php:6
773
+ msgid "Add additional PDF's to customer invoices."
774
+ msgstr ""
775
+
776
+ #: includes/partials/settings-sidebar.php:7
777
+ msgid "Send customer invoices directly to suppliers and others."
778
+ msgstr ""
779
+
780
+ #: includes/partials/settings-sidebar.php:8
781
+ #, php-format
782
+ msgid ""
783
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
784
+ msgstr ""
785
+
786
+ #: includes/partials/settings-sidebar.php:10
787
+ msgid "Learn more"
788
+ msgstr ""
789
+
790
+ #: includes/partials/settings-sidebar.php:13
791
+ msgid "Stay up-to-date"
792
+ msgstr ""
793
+
794
+ #: includes/partials/settings-sidebar.php:17
795
+ msgid ""
796
+ "We're constantly developing new features, stay up-to-date by subscribing to "
797
+ "our newsletter."
798
+ msgstr ""
799
+
800
+ #: includes/partials/settings-sidebar.php:23
801
+ msgid "Your email address"
802
+ msgstr ""
803
+
804
+ #: includes/partials/settings-sidebar.php:29
805
+ msgid "Signup"
806
+ msgstr ""
807
+
808
+ #: includes/partials/settings-sidebar.php:32
809
+ msgid "No spam, ever. Unsubscribe at any time"
810
+ msgstr ""
811
+
812
+ #: includes/partials/settings-sidebar.php:41
813
+ msgid "About"
814
+ msgstr ""
815
+
816
+ #: includes/partials/settings-sidebar.php:43
817
+ msgid ""
818
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
819
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
820
+ msgstr ""
821
+
822
+ #: includes/partials/settings-sidebar.php:45
823
+ msgid "<b>Version</b>: "
824
+ msgstr ""
825
+
826
+ #: includes/partials/settings-sidebar.php:47
827
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
828
+ msgstr ""
829
+
830
+ #: includes/partials/settings-sidebar.php:52
831
+ msgid ""
832
+ "We will never ask for donations, but to garantee future development, we do "
833
+ "need your support. Please show us your appreciation by leaving a <a href="
834
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
835
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
836
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
837
+ msgstr ""
838
+
839
+ #: includes/partials/settings-sidebar.php:72
840
+ msgid ""
841
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
842
+ msgstr ""
843
+
844
+ #: includes/partials/settings-sidebar.php:77
845
+ msgid "Need Help?"
846
+ msgstr ""
847
+
848
+ #: includes/partials/settings-sidebar.php:79
849
+ msgid "Frequently Asked Questions"
850
+ msgstr ""
851
+
852
+ #: includes/partials/settings-sidebar.php:80
853
+ msgid "Support forum"
854
+ msgstr ""
855
+
856
+ #: includes/partials/settings-sidebar.php:81
857
+ msgid "Request a feature"
858
+ msgstr ""
859
+
860
+ #: includes/partials/settings-sidebar.php:82
861
+ msgid "Email us"
862
+ msgstr ""
863
+
864
+ #: includes/templates/invoices/global/micro/body.php:5
865
+ #: includes/templates/invoices/simple/micro/body.php:5
866
+ msgid "Invoice to"
867
+ msgstr "Facture pour"
868
+
869
+ #: includes/templates/invoices/global/micro/body.php:7
870
+ #: includes/templates/invoices/simple/micro/body.php:7
871
+ #, php-format
872
+ msgid "Phone: %s"
873
+ msgstr ""
874
+
875
+ #: includes/templates/invoices/global/micro/body.php:11
876
+ #: includes/templates/invoices/simple/micro/body.php:11
877
+ msgid "Ship to"
878
+ msgstr "Livraison pour"
879
+
880
+ #: includes/templates/invoices/global/micro/body.php:22
881
+ msgid "Global Invoice"
882
+ msgstr ""
883
+
884
+ #: includes/templates/invoices/global/micro/body.php:40
885
+ #: includes/templates/invoices/simple/micro/body.php:44
886
+ msgid "Description"
887
+ msgstr "Description"
888
+
889
+ #: includes/templates/invoices/global/micro/body.php:48
890
+ #: includes/templates/invoices/simple/micro/body.php:52
891
+ msgid "Cost"
892
+ msgstr "Coût"
893
+
894
+ #: includes/templates/invoices/global/micro/body.php:50
895
+ #: includes/templates/invoices/simple/micro/body.php:54
896
+ msgid "Qty"
897
+ msgstr "Qté"
898
+
899
+ #: includes/templates/invoices/global/micro/body.php:56
900
+ #: includes/templates/invoices/simple/micro/body.php:60
901
+ msgid "VAT"
902
+ msgstr "TVA"
903
+
904
+ #: includes/templates/invoices/global/micro/body.php:67
905
+ #: includes/templates/invoices/global/micro/body.php:280
906
+ #: includes/templates/invoices/simple/micro/body.php:71
907
+ #: includes/templates/invoices/simple/micro/body.php:145
908
+ msgid "Total"
909
+ msgstr "Total"
910
+
911
+ #: includes/templates/invoices/global/micro/body.php:75
912
+ #, php-format
913
+ msgid "Order #%d - %s"
914
+ msgstr ""
915
+
916
+ #: includes/templates/invoices/global/micro/body.php:255
917
+ #: includes/templates/invoices/simple/micro/body.php:120
918
+ msgid "Fee"
919
+ msgstr ""
920
+
921
+ #: includes/templates/invoices/global/micro/body.php:287
922
+ #: includes/templates/invoices/simple/micro/body.php:152
923
+ msgid "Refunded"
924
+ msgstr "Remboursement"
925
+
926
+ #: includes/templates/invoices/global/micro/footer.php:15
927
+ #: includes/templates/invoices/simple/micro/footer.php:18
928
+ #, php-format
929
+ msgid "%s of %s"
930
+ msgstr ""
931
+
932
+ #: includes/templates/invoices/simple/micro/body.php:22
933
+ msgid "Invoice"
934
+ msgstr "Facture"
935
+
936
+ #: includes/templates/invoices/simple/micro/body.php:25
937
+ #, php-format
938
+ msgid "Order Number: %s"
939
+ msgstr ""
940
+
941
+ #: includes/templates/invoices/simple/micro/body.php:26
942
+ #, php-format
943
+ msgid "Order Date: %s"
944
+ msgstr ""
945
+
946
+ #: includes/templates/invoices/simple/micro/body.php:289
947
+ #: includes/templates/invoices/simple/micro/body.php:294
948
+ msgid "Customer note"
949
+ msgstr "Note du client"
950
+
951
+ #~ msgid "Feel free to use "
952
+ #~ msgstr "N'hésitez pas à utiliser"
953
+
954
+ #~ msgid "Intro text"
955
+ #~ msgstr "Texte d'introduction"
956
+
957
+ #~ msgid ""
958
+ #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
959
+ #~ "%s Only available with sequential numbering type and you need to check "
960
+ #~ "the checkbox to actually reset the value."
961
+ #~ msgstr ""
962
+ #~ "Réinitialiser le compteur de la facture et commencer avec le prochain "
963
+ #~ "numéro de facture. %s %sNote:%s Uniquement disponible avec le type de "
964
+ #~ "numérotation séquentielle et vous avez besoin de vérifier la case pour "
965
+ #~ "réinitialiser la valeur"
966
+
967
+ #~ msgid "Tax"
968
+ #~ msgstr "TVA"
969
+
970
+ #~ msgid "The footer will be visible on every page. "
971
+ #~ msgstr "Le pied de page sera visible sur toutes les pages"
972
+
973
+ #~ msgid "%sPayment%s via"
974
+ #~ msgstr "%sPaiement%s via"
975
+
976
+ #~ msgid "Order Number %s"
977
+ #~ msgstr "Numéro d'ordre %s"
978
+
979
+ #~ msgid "Order Date %s"
980
+ #~ msgstr "Date de commande %s"
981
+
982
+ #~ msgid "Download invoice (PDF)"
983
+ #~ msgstr "Télécharger la facture (PDF)"
984
+
985
+ #~ msgid ""
986
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
987
+ #~ "required."
988
+ #~ msgstr ""
989
+ #~ "N'hésitez pas à utiliser les espaces réservés %s %s %s %s et %s. %s "
990
+ #~ "%sNote:%s %s estrequis."
991
+
992
+ #~ msgid "VAT %s"
993
+ #~ msgstr "TVA %s"
994
+
995
+ #~ msgid "Feel free to use"
996
+ #~ msgstr "N'hésitez pas à l'utiliser"
997
+
998
+ #~ msgid "Quantity"
999
+ #~ msgstr "Qté"
1000
+
1001
+ #~ msgid "Unit price"
1002
+ #~ msgstr "Prix unitaire"
1003
+
1004
+ #~ msgid "Signup at %s and enter your account beyond."
1005
+ #~ msgstr "Inscription à %s et entrez votre compte."
1006
+
1007
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1008
+ #~ msgstr "%sFormat%s de la date. Exemples: %s of %s"
1009
+
1010
+ #~ msgid "Show invoice"
1011
+ #~ msgstr "voir la facture"
1012
+
1013
+ #~ msgid "%sFormat%s of the date."
1014
+ #~ msgstr "%sFormat%s de la date."
1015
+
1016
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1017
+ #~ msgstr ""
1018
+ #~ "Utilisez [suffixe], [préfixe] et [nombre] dans les espaces réservés."
1019
+
1020
+ #~ msgid "Choose the color witch fits your company."
1021
+ #~ msgstr "Choisissez la couleur qui convient à votre entreprise."
1022
+
1023
+ #~ msgid ""
1024
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1025
+ #~ "[number] as placeholders."
1026
+ #~ msgstr ""
1027
+ #~ "Choisissez le format pour le numéro de la facture. Utilisez [prefixe], "
1028
+ #~ "[suffixe] et [nombre] dans les espaces réservés."
1029
+
1030
+ #~ msgid "Text to greet, congratulate or thank the customer. "
1031
+ #~ msgstr "Texte pour saluer, féliciter ou remercier le client. "
1032
+
1033
+ #~ msgid "Some text"
1034
+ #~ msgstr "Du texte!!!!"
1035
+
1036
+ #~ msgid "Text to greet, congratulate or thank the customer."
1037
+ #~ msgstr "Texte pour saluer, féliciter ou remercier le client."
1038
+
1039
+ #~ msgid "Start all over on the first of January."
1040
+ #~ msgstr "Tout recommencer à zéro à partir du 1er Janvier."
lang/woocommerce-pdf-invoices-lt_LT.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-11-27 15:21+0100\n"
6
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
7
  "Last-Translator: Denisas <setasss@yahoo.com>\n"
8
  "Language: lt\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 &&(n"
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-11-27 15:21+0100\n"
6
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
7
  "Last-Translator: Denisas <setasss@yahoo.com>\n"
8
  "Language: lt\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 &&(n"
lang/woocommerce-pdf-invoices-nb_NO.po CHANGED
@@ -1,1048 +1,1269 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
5
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
6
- "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
- "Language-Team: \n"
8
- "Language: nb\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.3\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: includes/abstracts/abstract-bewpi-document.php:64
23
- msgid "Paid"
24
- msgstr "Betalt"
25
-
26
- #: includes/abstracts/abstract-bewpi-invoice.php:262
27
- #, php-format
28
- msgid ""
29
- "Could not create invoice. In order to reset invoice number with %d, delete "
30
- "all invoices with invoice number %s and greater."
31
- msgstr ""
32
- "Kunne ikke opprette faktira. For å tilbakestille fakturanummer med %d, slett "
33
- "alle fakturaer med fakturanummer %s og høyere."
34
-
35
- #: includes/abstracts/abstract-bewpi-invoice.php:267
36
- #, php-format
37
- msgid ""
38
- "Could not create invoice. Invoice with invoice number %s already exists. "
39
- "First delete invoice and try again."
40
- msgstr ""
41
- "Kunne ikke opprette faktura. Faktura med fakturanummer %s eksisterer "
42
- "allerede. Først må du slette denne fakturaen før du forsøker igjen."
43
-
44
- #: includes/abstracts/abstract-bewpi-invoice.php:310
45
- #, php-format
46
- msgid ""
47
- "Invoice with invoice number %s not found. First create invoice and try again."
48
- msgstr ""
49
- "Faktura med fakturanummer %s finnes ikke. Opprett denne fakturaen og forsøk "
50
- "igjen."
51
-
52
- #: includes/abstracts/abstract-bewpi-invoice.php:372
53
- #, php-format
54
- msgid "VAT Number: %s"
55
- msgstr ""
56
-
57
- #: includes/abstracts/abstract-bewpi-invoice.php:383
58
- #, php-format
59
- msgid "Purchase Order Number: %s"
60
- msgstr ""
61
-
62
- #: includes/abstracts/abstract-bewpi-setting.php:98
63
- msgid "Allowed HTML tags: "
64
- msgstr "Tillatte HTML koder: "
65
-
66
- #: includes/abstracts/abstract-bewpi-setting.php:173
67
- msgid "Remove logo"
68
- msgstr "Fjern logo"
69
-
70
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
71
- msgid "Attach to Email"
72
- msgstr "Legg ved e-post"
73
-
74
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
75
- msgid "Processing order"
76
- msgstr "Behandler ordre"
77
-
78
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
79
- msgid "Completed order"
80
- msgstr "Fullført ordre"
81
-
82
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
83
- msgid "Customer invoice"
84
- msgstr "Kundefaktura"
85
-
86
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
87
- msgid "Do not attach"
88
- msgstr "Ikke legg ved"
89
-
90
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
91
- msgid "Attach to New order Email"
92
- msgstr "Legg til ny bestilling e-post"
93
-
94
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
95
- msgid "View PDF"
96
- msgstr "Vis PDF"
97
-
98
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
99
- msgid "Download"
100
- msgstr "Last ned"
101
-
102
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
103
- msgid "Open in new browser tab/window"
104
- msgstr "Åpne i ny fane/vindu"
105
-
106
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
107
- msgid "Enable download from account"
108
- msgstr ""
109
-
110
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
111
- msgid ""
112
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
113
- "page.</div>"
114
- msgstr ""
115
-
116
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
117
- msgid "Enable Email It In"
118
- msgstr "Aktiver dette epostvarselet"
119
-
120
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
121
- msgid "Email It In account"
122
- msgstr "Email It In konto"
123
-
124
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
125
- #, php-format
126
- msgid "Get your account from your Email It In %suser account%s."
127
- msgstr "Få din konto fra din Email It In %suser account%s."
128
-
129
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
130
- msgid "Enable mPDF debugging"
131
- msgstr ""
132
-
133
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
134
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
135
- msgstr ""
136
-
137
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
138
- msgid "Email Options"
139
- msgstr "E-post alternativer"
140
-
141
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
142
- msgid "Download Options"
143
- msgstr ""
144
-
145
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
146
- msgid "Cloud Storage Options"
147
- msgstr "Skylagringsalternativer"
148
-
149
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
150
- msgid "Debug Options"
151
- msgstr ""
152
-
153
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
154
- #, php-format
155
- msgid ""
156
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
157
- "Egnyte and enter your account below."
158
- msgstr ""
159
- "Registrer deg %s for å sende fakturaene til din DropBox, OneDrive, Google "
160
- "Drive eller Egnyte og skriv inn kontoen din under."
161
-
162
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
163
- #: includes/be-woocommerce-pdf-invoices.php:219
164
- msgid "Template"
165
- msgstr "Mal"
166
-
167
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
168
- msgid "Color theme"
169
- msgstr "Fargetema"
170
-
171
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
172
- msgid "Date format"
173
- msgstr "Datoformat"
174
-
175
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
176
- #, php-format
177
- msgid "%sFormat%s of invoice date and order date."
178
- msgstr "%sFormat%s til fakturadato og ordredato."
179
-
180
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
181
- msgid "Display prices including tax"
182
- msgstr "Vis priser inkludert mva."
183
-
184
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
185
- msgid ""
186
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
187
- "still be excluding tax, so disable it within the visible columns section."
188
- msgstr ""
189
- "Linjen element totaler vil inkludere skatt. <br/><b>Merk</b>: Subtotal vil "
190
- "fortsatt være ekskludert skatt, så deaktiver dette innenfor de synlige "
191
- "konlonnene."
192
-
193
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
194
- msgid "Shipping taxable"
195
- msgstr "Frakt er skattbar"
196
-
197
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
198
- msgid "Enable to display subtotal including shipping."
199
- msgstr "Aktiver for å vise subtotal inkludert frakt."
200
-
201
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
202
- msgid "Mark invoice as paid"
203
- msgstr "Marker faktura som betalt"
204
-
205
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
206
- msgid "Invoice will be watermarked when order has been paid."
207
- msgstr "Fakturaen vil få et vannmerke når ordren har blitt betalt."
208
-
209
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
210
- msgid "Company name"
211
- msgstr "Firmanavn"
212
-
213
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
214
- msgid "Company logo"
215
- msgstr "Firmalogo"
216
-
217
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
218
- msgid "Company address"
219
- msgstr "Firmaadresse"
220
-
221
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
222
- msgid "Displayed in upper-right corner near logo."
223
- msgstr "Vist øverst til høyre, nær logoen."
224
-
225
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
226
- msgid "Company details"
227
- msgstr "Firmadetaljer"
228
-
229
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
230
- msgid "Displayed below company address."
231
- msgstr "Vist under firmaadressen."
232
-
233
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
234
- msgid "Thank you text"
235
- msgstr "Takk skal du ha -tekst"
236
-
237
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
238
- msgid "Displayed in big colored bar directly after invoice total."
239
- msgstr "Vist i en stor farget boks rett etter fakturatotalen."
240
-
241
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
242
- msgid "Thank you for your purchase!"
243
- msgstr "Tusen takk for din bestilling!"
244
-
245
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
246
- msgid "Show customer notes"
247
- msgstr "Vis kundenotat"
248
-
249
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
250
- msgid "Terms & conditions, policies etc."
251
- msgstr "Betingelser, vilkår etc."
252
-
253
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
254
- #, php-format
255
- msgid ""
256
- "Displayed below customer notes and above footer. Want to attach additional "
257
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
258
- msgstr ""
259
- "Vist under kundenotat og over footer. Vil du legge til ytterligere sider til "
260
- "fakturaen? Ta en titt på <a href=\"%s\">Premium</a> versjonen."
261
-
262
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
263
- msgid "Items will be shipped within 2 days."
264
- msgstr "Bestillingen vil bli sendt innen 2 dager."
265
-
266
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
267
- msgid "Left footer column."
268
- msgstr "Venstre footer kolonne."
269
-
270
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
271
- #, php-format
272
- msgid "<b>Payment method</b> %s"
273
- msgstr "<b>Betalingsmåte:</b> %s"
274
-
275
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
276
- msgid "Right footer column."
277
- msgstr "Høyre footer kolonne."
278
-
279
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
280
- msgid "Leave empty to show page numbering."
281
- msgstr "La dette feltet stå tomt for å vise sidenummer."
282
-
283
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
284
- msgid "Type"
285
- msgstr "Type"
286
-
287
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
288
- msgid "WooCommerce order number"
289
- msgstr "WooCommerce bestillingsnummer"
290
-
291
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
292
- msgid "Sequential number"
293
- msgstr "Sekvensielt nummer"
294
-
295
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
296
- msgid "Reset invoice counter"
297
- msgstr "Tilbakestill fakturateller"
298
-
299
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
300
- msgid "Next"
301
- msgstr "Neste"
302
-
303
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
304
- msgid ""
305
- "Reset the invoice counter and start counting from given invoice number.<br/"
306
- "><b>Note:</b> Only available for Sequential numbering and value will be "
307
- "editable by selecting checkbox. Next number needs to be lower then highest "
308
- "existing invoice number or delete invoices first."
309
- msgstr ""
310
- "Tilbakestill fakturatelleren og start nummereringen fra et bestemt "
311
- "fakturanummer.<br><b>Merk:</b> Kun tilgjengelig for sekvensiell nummerering "
312
- "og verdier kan endres ved å markere ut boksen. Neste nummer må være høyere "
313
- "enn det høyeste nummeret som allerede eksisterer på en faktura, eller du må "
314
- "slette gamle fakturaer først."
315
-
316
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
317
- msgid "Digits"
318
- msgstr "Tegn"
319
-
320
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
321
- msgid "[prefix]"
322
- msgstr "[prefix]"
323
-
324
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
325
- msgid "[suffix]"
326
- msgstr "[suffix]"
327
-
328
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
329
- msgid "Format"
330
- msgstr "Format"
331
-
332
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
333
- #, php-format
334
- msgid ""
335
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
336
- "slashes aren't supported."
337
- msgstr ""
338
- "Tillatte plassholdere: %s %s %s %s %s %s.<br/>%sMerk:%s %s er påkrevd og "
339
- "skråstreker er ikke støttet."
340
-
341
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
342
- msgid "Reset on 1st of january"
343
- msgstr "Tilbakestill 1. Januar"
344
-
345
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
346
- #: includes/templates/invoices/global/micro/body.php:44
347
- #: includes/templates/invoices/simple/micro/body.php:48
348
- msgid "SKU"
349
- msgstr "Prod.Nr."
350
-
351
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
352
- #: includes/templates/invoices/global/micro/body.php:236
353
- #: includes/templates/invoices/simple/micro/body.php:101
354
- msgid "Subtotal"
355
- msgstr "Delsum"
356
-
357
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
358
- msgid "Tax (item)"
359
- msgstr "Skatt (element)"
360
-
361
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
362
- msgid "Tax (total)"
363
- msgstr "Skatt (totalt)"
364
-
365
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
366
- #: includes/templates/invoices/global/micro/body.php:220
367
- #: includes/templates/invoices/simple/micro/body.php:85
368
- msgid "Discount"
369
- msgstr "Rabatt"
370
-
371
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
372
- #: includes/templates/invoices/global/micro/body.php:228
373
- #: includes/templates/invoices/global/micro/body.php:244
374
- #: includes/templates/invoices/simple/micro/body.php:93
375
- #: includes/templates/invoices/simple/micro/body.php:109
376
- msgid "Shipping"
377
- msgstr "Frakt"
378
-
379
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
380
- msgid "General Options"
381
- msgstr "Generelle valg"
382
-
383
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
384
- msgid "Invoice Number Options"
385
- msgstr "Alternativer for fakturanummer"
386
-
387
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
388
- msgid "Header Options"
389
- msgstr "Overskriftsvalg"
390
-
391
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
392
- msgid "Body Options"
393
- msgstr "Hovedalternativer"
394
-
395
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
396
- msgid "Footer Options"
397
- msgstr "Footer valg"
398
-
399
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
400
- msgid "Visible Columns"
401
- msgstr "Synlige kolonner"
402
-
403
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
404
- msgid "These are the general template options."
405
- msgstr "Dette er de generelle alternativene for malen."
406
-
407
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
408
- msgid "These are the invoice number options."
409
- msgstr "Dette er alternativene for fakturanummer."
410
-
411
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
412
- msgid "The header will be visible on every page. "
413
- msgstr "Overskriften vil være synlig på alle sider. "
414
-
415
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
416
- msgid "The footer will be visible on every page."
417
- msgstr "Footeren vil vises på hver eneste side."
418
-
419
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
420
- msgid ""
421
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
422
- "order payment method."
423
- msgstr ""
424
- "<b>Hint</b>: Bruk <code>[payment_method]</code> plassholder for å vise "
425
- "bestillingens betalingsmåte."
426
-
427
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
428
- msgid "Enable or disable the columns."
429
- msgstr "Aktiver eller deaktiver kolonnene."
430
-
431
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
432
- msgid "File is invalid and contains either '..' or './'."
433
- msgstr "Filen er ugyldig og inneholder enten '...' eller './'."
434
-
435
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
436
- msgid "File is invalid and contains ':' after the first character."
437
- msgstr "Filen er ugyldig og inneholder ':' etter den første bokstaven."
438
-
439
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
440
- msgid "File should be less then 2MB."
441
- msgstr "Filen bør være under 2 megabyte."
442
-
443
- #: includes/be-woocommerce-pdf-invoices.php:126
444
- #, php-format
445
- msgid ""
446
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
447
- "PDF Invoices</strong></a>."
448
- msgstr ""
449
- "Supert! <a href=\"%s\">La oss starte å konfigurere <strong>WooCommerce PDF "
450
- "Faktura</strong></a>."
451
-
452
- #: includes/be-woocommerce-pdf-invoices.php:136
453
- msgid "Settings"
454
- msgstr "Innstillinger"
455
-
456
- #: includes/be-woocommerce-pdf-invoices.php:137
457
- msgid "Premium"
458
- msgstr "Premium"
459
-
460
- #: includes/be-woocommerce-pdf-invoices.php:182
461
- msgid "Invalid request"
462
- msgstr ""
463
-
464
- #: includes/be-woocommerce-pdf-invoices.php:185
465
- msgid "Invalid order ID"
466
- msgstr ""
467
-
468
- #: includes/be-woocommerce-pdf-invoices.php:191
469
- msgid "Access denied"
470
- msgstr ""
471
-
472
- #: includes/be-woocommerce-pdf-invoices.php:218
473
- msgid "General"
474
- msgstr "Generelt"
475
-
476
- #: includes/be-woocommerce-pdf-invoices.php:242
477
- msgid "Invoices"
478
- msgstr "PDF Faktura"
479
-
480
- #: includes/be-woocommerce-pdf-invoices.php:281
481
- #, php-format
482
- msgid ""
483
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
484
- "%s★★★★★%s rating. A huge thank you in advance!"
485
- msgstr ""
486
- "Om du liker <strong>WooCommerce PDF Faktura</strong>, vennligst gi oss en "
487
- "%s★★★★★%s vurdering. På forhånd tusen takk!"
488
-
489
- #: includes/be-woocommerce-pdf-invoices.php:282
490
- #, php-format
491
- msgid "Version %s"
492
- msgstr "Versjon %s"
493
-
494
- #: includes/be-woocommerce-pdf-invoices.php:356
495
- msgid "PDF Invoice"
496
- msgstr "PDF Faktura"
497
-
498
- #: includes/be-woocommerce-pdf-invoices.php:382
499
- msgid "Invoiced on:"
500
- msgstr "Sendt:"
501
-
502
- #: includes/be-woocommerce-pdf-invoices.php:386
503
- msgid "Invoice number:"
504
- msgstr "Fakturanummer:"
505
-
506
- #: includes/be-woocommerce-pdf-invoices.php:424
507
- msgid "View invoice"
508
- msgstr "Vis faktura"
509
-
510
- #: includes/be-woocommerce-pdf-invoices.php:424
511
- msgid "View"
512
- msgstr "Vis"
513
-
514
- #: includes/be-woocommerce-pdf-invoices.php:425
515
- msgid "Cancel invoice"
516
- msgstr "Slett faktura"
517
-
518
- #: includes/be-woocommerce-pdf-invoices.php:425
519
- msgid "Cancel"
520
- msgstr "Slett"
521
-
522
- #: includes/be-woocommerce-pdf-invoices.php:427
523
- msgid "Are you sure to delete the invoice?"
524
- msgstr "Er du sikker på at du vil slette fakturaen?"
525
-
526
- #: includes/be-woocommerce-pdf-invoices.php:430
527
- msgid "Create invoice"
528
- msgstr "Opprett faktura"
529
-
530
- #: includes/be-woocommerce-pdf-invoices.php:430
531
- msgid "Create"
532
- msgstr "Opprett"
533
-
534
- #: includes/be-woocommerce-pdf-invoices.php:453
535
- #, php-format
536
- msgid "Invoice %s (PDF)"
537
- msgstr "Faktura %s (PDF)"
538
-
539
- #: includes/be-woocommerce-pdf-invoices.php:563
540
- #, php-format
541
- msgid ""
542
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
543
- "really need your ★★★★★ rating. It will support future development big-time. "
544
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
545
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
546
- "done it!</a>"
547
- msgstr ""
548
- "Du har brukt <b>WooCommerce PDF Faktura</b> en stund nå. Vi trenger virkelig "
549
- "din ★★★★★ vurdering. Det vil virkelig støtte fremtidig utvikling. På forhånd "
550
- "tusen takk, og fortsett det fantastiske arbeidet! <br /> <a href='%s' "
551
- "target='_blank'>Ja, jeg skal gjøre det med en gang!</a> - <a href='%s'>Nei, "
552
- "jeg har allerede gjort det!</a>"
553
-
554
- #: includes/class-bewpi-invoice.php:48
555
- msgid ""
556
- "Whoops, no template found. Please select a template on the Template settings "
557
- "page first."
558
- msgstr ""
559
- "Ooops! Ingen mal ble funnet. Vennligt velg en mal under innstillinger først."
560
-
561
- #: includes/partials/settings-sidebar.php:2
562
- msgid "WooCommerce PDF Invoices Premium"
563
- msgstr "WooCommerce PDF Faktura Premium"
564
-
565
- #: includes/partials/settings-sidebar.php:4
566
- msgid ""
567
- "This plugin offers a premium version which comes with the following features:"
568
- msgstr ""
569
- "Denne utvidelsen tilbyr også en premium versjon som kommer med følgende "
570
- "funksjoner:"
571
-
572
- #: includes/partials/settings-sidebar.php:5
573
- msgid "Bill periodically by generating and sending global invoices."
574
- msgstr "Fakturer periodisk ved å generere og sende globale fakturaer."
575
-
576
- #: includes/partials/settings-sidebar.php:6
577
- msgid "Add additional PDF's to customer invoices."
578
- msgstr "Legg til flere PDFer til kundefakturaer."
579
-
580
- #: includes/partials/settings-sidebar.php:7
581
- msgid "Send customer invoices directly to suppliers and others."
582
- msgstr "Send kundefakturaer direkte til leverandører og andre."
583
-
584
- #: includes/partials/settings-sidebar.php:8
585
- #, php-format
586
- msgid ""
587
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
588
- msgstr ""
589
- "Kompatibel med <a href=\"%s\">WooCommerce Subscriptions</a> utvidelses e-"
590
- "poster."
591
-
592
- #: includes/partials/settings-sidebar.php:10
593
- msgid "Learn more"
594
- msgstr "Les mer"
595
-
596
- #: includes/partials/settings-sidebar.php:13
597
- msgid "Stay up-to-date"
598
- msgstr "Hold deg oppdatert"
599
-
600
- #: includes/partials/settings-sidebar.php:17
601
- msgid ""
602
- "We're constantly developing new features, stay up-to-date by subscribing to "
603
- "our newsletter."
604
- msgstr ""
605
- "Vi jobber kontinuerlig med å utvikle nye funksjoner, så hold deg oppdatert "
606
- "ved å melde deg på nyhetsbrevet vårt."
607
-
608
- #: includes/partials/settings-sidebar.php:23
609
- msgid "Your email address"
610
- msgstr "Din e-post adresse"
611
-
612
- #: includes/partials/settings-sidebar.php:29
613
- msgid "Signup"
614
- msgstr "Registrer"
615
-
616
- #: includes/partials/settings-sidebar.php:32
617
- msgid "No spam, ever. Unsubscribe at any time"
618
- msgstr "Ingen spam, aldri. Du kan melde deg av når som helst."
619
-
620
- #: includes/partials/settings-sidebar.php:41
621
- msgid "About"
622
- msgstr "Om"
623
-
624
- #: includes/partials/settings-sidebar.php:43
625
- msgid ""
626
- "This plugin is an open source project wich aims to fill the invoicing gap of "
627
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
628
- msgstr ""
629
- "Denne utvidelsen er i åpen klidekode og har som mål om å legge til "
630
- "funksonaliteten med fakturering som mangler i <a href=\"http://www.woothemes."
631
- "com/woocommerce\">WooCommerce</a>."
632
-
633
- #: includes/partials/settings-sidebar.php:45
634
- msgid "<b>Version</b>: "
635
- msgstr "<b>Versjon</b>: "
636
-
637
- #: includes/partials/settings-sidebar.php:47
638
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
639
- msgstr "<b>Skaper</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
640
-
641
- #: includes/partials/settings-sidebar.php:50
642
- msgid "Support"
643
- msgstr "Hjelp"
644
-
645
- #: includes/partials/settings-sidebar.php:52
646
- msgid ""
647
- "We will never ask for donations, but to garantee future development, we do "
648
- "need your support. Please show us your appreciation by leaving a <a href="
649
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
650
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
651
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
652
- msgstr ""
653
- "Vi vil aldri be om donasjoner, men for å garantere fremtidig utvikler, vi "
654
- "trenger hjelpen din. Vennligst vis oss din takknemlighet ved å legge igjen "
655
- "en <a href=\"https://wordpress.org/support/view/plugin-reviews/woocommerce-"
656
- "pdf-invoices?rate=5#postform\">★★★★★</a> vurdering og stem på <a href="
657
- "\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">arbeidet</a>."
658
-
659
- #: includes/partials/settings-sidebar.php:72
660
- msgid ""
661
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
662
- msgstr ""
663
- "Sjekk ut denne fantastiske og helt gratis utvidelsen WooCommerce PDF Faktura "
664
- "for WordPress!"
665
-
666
- #: includes/partials/settings-sidebar.php:77
667
- msgid "Need Help?"
668
- msgstr "Trenger du hjelp?"
669
-
670
- #: includes/partials/settings-sidebar.php:79
671
- msgid "Frequently Asked Questions"
672
- msgstr "Ofte stilte spørsmål"
673
-
674
- #: includes/partials/settings-sidebar.php:80
675
- msgid "Support forum"
676
- msgstr "Supportforum"
677
-
678
- #: includes/partials/settings-sidebar.php:81
679
- msgid "Request a feature"
680
- msgstr "Foreslå en ny funksjon"
681
-
682
- #: includes/partials/settings-sidebar.php:82
683
- msgid "Email us"
684
- msgstr "Send oss en e-post"
685
-
686
- #: includes/templates/invoices/global/micro/body.php:5
687
- #: includes/templates/invoices/simple/micro/body.php:5
688
- msgid "Invoice to"
689
- msgstr "Kunde"
690
-
691
- #: includes/templates/invoices/global/micro/body.php:7
692
- #: includes/templates/invoices/simple/micro/body.php:7
693
- #, php-format
694
- msgid "Phone: %s"
695
- msgstr "Telefon: %s"
696
-
697
- #: includes/templates/invoices/global/micro/body.php:11
698
- #: includes/templates/invoices/simple/micro/body.php:11
699
- msgid "Ship to"
700
- msgstr "Leveringsadresse"
701
-
702
- #: includes/templates/invoices/global/micro/body.php:22
703
- msgid "Global Invoice"
704
- msgstr "Global faktura"
705
-
706
- #: includes/templates/invoices/global/micro/body.php:40
707
- #: includes/templates/invoices/simple/micro/body.php:44
708
- msgid "Description"
709
- msgstr "Produkt"
710
-
711
- #: includes/templates/invoices/global/micro/body.php:48
712
- #: includes/templates/invoices/simple/micro/body.php:52
713
- msgid "Cost"
714
- msgstr "Pris"
715
-
716
- #: includes/templates/invoices/global/micro/body.php:50
717
- #: includes/templates/invoices/simple/micro/body.php:54
718
- msgid "Qty"
719
- msgstr "Ant"
720
-
721
- #: includes/templates/invoices/global/micro/body.php:56
722
- #: includes/templates/invoices/simple/micro/body.php:60
723
- msgid "VAT"
724
- msgstr "MVA"
725
-
726
- #: includes/templates/invoices/global/micro/body.php:67
727
- #: includes/templates/invoices/global/micro/body.php:280
728
- #: includes/templates/invoices/simple/micro/body.php:71
729
- #: includes/templates/invoices/simple/micro/body.php:145
730
- msgid "Total"
731
- msgstr "Totalt"
732
-
733
- #: includes/templates/invoices/global/micro/body.php:75
734
- #, php-format
735
- msgid "Order #%d - %s"
736
- msgstr "Ordre #%d - %s"
737
-
738
- #: includes/templates/invoices/global/micro/body.php:255
739
- #: includes/templates/invoices/simple/micro/body.php:120
740
- msgid "Fee"
741
- msgstr "Avgift"
742
-
743
- #: includes/templates/invoices/global/micro/body.php:287
744
- #: includes/templates/invoices/simple/micro/body.php:152
745
- msgid "Refunded"
746
- msgstr "Refundert"
747
-
748
- #: includes/templates/invoices/global/micro/footer.php:15
749
- #: includes/templates/invoices/simple/micro/footer.php:18
750
- #, php-format
751
- msgid "%s of %s"
752
- msgstr "%s av %s"
753
-
754
- #: includes/templates/invoices/simple/micro/body.php:22
755
- msgid "Invoice"
756
- msgstr "Faktura"
757
-
758
- #: includes/templates/invoices/simple/micro/body.php:25
759
- #, php-format
760
- msgid "Order Number: %s"
761
- msgstr "Ordrenummer: %s"
762
-
763
- #: includes/templates/invoices/simple/micro/body.php:26
764
- #, php-format
765
- msgid "Order Date: %s"
766
- msgstr "Ordre dato: %s"
767
-
768
- #: includes/templates/invoices/simple/micro/body.php:289
769
- #: includes/templates/invoices/simple/micro/body.php:294
770
- msgid "Customer note"
771
- msgstr "Kundenotat"
772
-
773
- #~ msgid ""
774
- #~ "<b>Note</b>: If your logo doesn't show up, try to enable "
775
- #~ "<code>allow_url_fopen</code>."
776
- #~ msgstr ""
777
- #~ "<b>NB</b>: Om logoen din ikke vises, forsøk å aktivere "
778
- #~ "<code>allow_url_fopen</code>."
779
-
780
- #~ msgid "Feel free to use "
781
- #~ msgstr "Du kan også bruke "
782
-
783
- #~ msgid "Intro text"
784
- #~ msgstr "Introduksjonstekst"
785
-
786
- #~ msgid ""
787
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
788
- #~ "%s Only available with sequential numbering type and you need to check "
789
- #~ "the checkbox to actually reset the value."
790
- #~ msgstr ""
791
- #~ "TIlbakestill fakturatelleren og start med neste fakturanummer. %s %sMerk:"
792
- #~ "%s Kun tilgjengelig med sekvensielle nummer og du må huke av boksen for å "
793
- #~ "faktisk tilbakestille verdien."
794
-
795
- #~ msgid ""
796
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
797
- #~ "is required and slashes aren't supported."
798
- #~ msgstr ""
799
- #~ "Bruk en av disse kortkodene; %s %s %s %s %s og %s. %s %sMerk:%s %s er "
800
- #~ "obligatorisk."
801
-
802
- #~ msgid "Tax"
803
- #~ msgstr "MVA"
804
-
805
- #~ msgid "The footer will be visible on every page. "
806
- #~ msgstr "Footeren vil være synlig alle sider. "
807
-
808
- #~ msgid "%sPayment%s via"
809
- #~ msgstr "%sBetalt%s med"
810
-
811
- #~ msgid ""
812
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
813
- #~ "is required."
814
- #~ msgstr ""
815
- #~ "Bruk en av disse kortkodene; %s %s %s %s %s og %s. %s %sMerk:%s %s er "
816
- #~ "obligatorisk."
817
-
818
- #~ msgid "Generate global invoice"
819
- #~ msgstr "Opprett global faktura"
820
-
821
- #~ msgid "Subtotal will be including tax and excluding discount and shipping."
822
- #~ msgstr "Delsummen vil være inkludert mva, men ekskludert rabatt og frakt."
823
-
824
- #~ msgid ""
825
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
826
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
827
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
828
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
829
- #~ msgstr ""
830
- #~ "Takk for at du har benyttet <b>WooCommerce PDF Invoices</b> en liten "
831
- #~ "stund allerede. Vennligst vis oss din støtte ved å vurdere utvidelsen med "
832
- #~ "★★★★★. Tusen takk for støtten din! <br /> <a href='%s' "
833
- #~ "target='_blank'>Ja, jeg skal gjøre det med en gang!!</a> - <a "
834
- #~ "href='%s'>Jeg har allerede gjort det!</a>"
835
-
836
- #~ msgid "PAID"
837
- #~ msgstr "BETALT"
838
-
839
- #~ msgid "UNPAID"
840
- #~ msgstr "IKKE BETALT"
841
-
842
- #~ msgid "Order Number %s"
843
- #~ msgstr "Bestillingsnummer: %s"
844
-
845
- #~ msgid "Order Date %s"
846
- #~ msgstr "Bestillingsdato: %s"
847
-
848
- #~ msgid "Download invoice (PDF)"
849
- #~ msgstr "Last ned faktura (PDF)"
850
-
851
- #~ msgid ""
852
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
853
- #~ "required."
854
- #~ msgstr ""
855
- #~ "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
856
- #~ "obligatorisk."
857
-
858
- #~ msgid "VAT %s"
859
- #~ msgstr "MVA %s"
860
-
861
- #~ msgid "General Settings"
862
- #~ msgstr "Algemene Opties"
863
-
864
- #~ msgid ""
865
- #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
866
- #~ msgstr "Verzend automatisch naar Google Drive, Egnyte, Dropbox of OneDrive"
867
-
868
- #~ msgid "For bookkeeping purposes."
869
- #~ msgstr "Voor boekhoudkundige doeleinden."
870
-
871
- #~ msgid "Signup at %s and enter your account below."
872
- #~ msgstr "Meld je aan op %s en geef je account onderstaand in."
873
-
874
- #~ msgid "Enter your %s account."
875
- #~ msgstr "Het %s account."
876
-
877
- #~ msgid "Invalid type of Email."
878
- #~ msgstr "Ongeldig type Email."
879
-
880
- #~ msgid "Please don't try to change the values."
881
- #~ msgstr "Probeer de waardes niet te wijzigen a.u.b."
882
-
883
- #~ msgid "Invalid Email address."
884
- #~ msgstr "Ongeldig Emailadres."
885
-
886
- #~ msgid "Allowed tags: "
887
- #~ msgstr "Toegestane tags: "
888
-
889
- #~ msgid "Template Settings"
890
- #~ msgstr "Template Opties"
891
-
892
- #~ msgid "Invoice number type"
893
- #~ msgstr "Type factuurnummer"
894
-
895
- #~ msgid "Next invoice number"
896
- #~ msgstr "Eerstvolgende factuurnummer"
897
-
898
- #~ msgid "Number of digits"
899
- #~ msgstr "Aantal cijfers"
900
-
901
- #~ msgid "Invoice number prefix"
902
- #~ msgstr "Factuurnummer voorvoegsel"
903
-
904
- #~ msgid "Invoice number suffix"
905
- #~ msgstr "Factuurnummer achtervoegsel"
906
-
907
- #~ msgid "Invoice number format"
908
- #~ msgstr "Factuurnummer format"
909
-
910
- #~ msgid "Reset on 1st January"
911
- #~ msgstr "Reset op 1 januari"
912
-
913
- #~ msgid "Invoice date format"
914
- #~ msgstr "Factuur datumnotatie"
915
-
916
- #~ msgid "Order date format"
917
- #~ msgstr "Notatie bestellingsdatum"
918
-
919
- #~ msgid "Show SKU"
920
- #~ msgstr "Toon SKU"
921
-
922
- #~ msgid "Show discount"
923
- #~ msgstr "Toon korting"
924
-
925
- #~ msgid "Show subtotal"
926
- #~ msgstr "Toon subtotaal"
927
-
928
- #~ msgid "Show tax"
929
- #~ msgstr "Toon BTW"
930
-
931
- #~ msgid "Show shipping"
932
- #~ msgstr "Toon verzendkosten"
933
-
934
- #~ msgid "Color theme of the invoice."
935
- #~ msgstr "Kleurthema van de factuur."
936
-
937
- #~ msgid ""
938
- #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
939
- #~ "png."
940
- #~ msgstr ""
941
- #~ "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
942
- #~ "png is."
943
-
944
- #~ msgid "Invoice number to use for next invoice."
945
- #~ msgstr "Factuurnummer te gebruiken voor de volgende factuur."
946
-
947
- #~ msgid "Number of zero digits."
948
- #~ msgstr "Aantal nullen."
949
-
950
- #~ msgid "Prefix text for the invoice number. Not required."
951
- #~ msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
952
-
953
- #~ msgid "Suffix text for the invoice number. Not required."
954
- #~ msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
955
-
956
- #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
957
- #~ msgstr "Beschikbare aanduidingen zijn %s %s %s %s of %s. %s is verplicht."
958
-
959
- #~ msgid "Reset on the first of January."
960
- #~ msgstr "Reset op de eerste van januari."
961
-
962
- #~ msgid "%sFormat%s of the date. Examples: %s or %s."
963
- #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
964
-
965
- #~ msgid "Order date %sformat%s. Examples: %s or %s."
966
- #~ msgstr "Notatie %sbestellingsdatum%s. Voorbeelden: %s of %s."
967
-
968
- #~ msgid "Invalid template."
969
- #~ msgstr "Ongeldige template."
970
-
971
- #~ msgid "Invalid color theme code."
972
- #~ msgstr "Ongeldige kleurcode."
973
-
974
- #~ msgid "Invalid company name."
975
- #~ msgstr "Ongeldige bedsrijfsnaam."
976
-
977
- #~ msgid "Invalid input into one of the textarea's."
978
- #~ msgstr "Ongeldige invoer in een van de textarea's."
979
-
980
- #~ msgid "Invalid type of invoice number."
981
- #~ msgstr "Ongeldig type factuurnummer."
982
-
983
- #~ msgid "Invalid (next) invoice number."
984
- #~ msgstr "Ongeldig (eerstvolgend) factuurnummer."
985
-
986
- #~ msgid "Invalid invoice number digits."
987
- #~ msgstr "Ongeldige factuurnummer cijfers."
988
-
989
- #~ msgid "The [number] placeholder is required as invoice number format."
990
- #~ msgstr "De aanduiding [number] is vereist."
991
-
992
- #~ msgid "Invalid invoice number format."
993
- #~ msgstr "Ongeldig factuurnummer format."
994
-
995
- #~ msgid "Invalid date format."
996
- #~ msgstr "Ongeldige datumnotatie."
997
-
998
- #~ msgid "Please upload image with extension jpg, jpeg or png."
999
- #~ msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
1000
-
1001
- #~ msgid "Quantity"
1002
- #~ msgstr "Aantal"
1003
-
1004
- #~ msgid "Unit price"
1005
- #~ msgstr "Prijs per stuk"
1006
-
1007
- #~ msgid ""
1008
- #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1009
- #~ msgstr ""
1010
- #~ "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
1011
- #~ "verplicht."
1012
-
1013
- #~ msgid "Signup at %s and enter your account beyond."
1014
- #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
1015
-
1016
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1017
- #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
1018
-
1019
- #~ msgid "Show invoice"
1020
- #~ msgstr "Toon factuur"
1021
-
1022
- #~ msgid "%sFormat%s of the date."
1023
- #~ msgstr "%sFormat%s van de datum."
1024
-
1025
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1026
- #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
1027
-
1028
- #~ msgid "Choose the color witch fits your company."
1029
- #~ msgstr "Kies uw bedrijfskleur."
1030
-
1031
- #~ msgid ""
1032
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1033
- #~ "[number] as placeholders."
1034
- #~ msgstr ""
1035
- #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
1036
- #~ "[number] als aanduidingen."
1037
-
1038
- #~ msgid "Text to greet, congratulate or thank the customer. "
1039
- #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
1040
-
1041
- #~ msgid "Some text"
1042
- #~ msgstr "De vertaling werkt!!!!"
1043
-
1044
- #~ msgid "Text to greet, congratulate or thank the customer."
1045
- #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
1046
-
1047
- #~ msgid "Start all over on the first of January."
1048
- #~ msgstr "Opnieuw beginnen op de eerste van januari."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
5
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
6
+ "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
7
+ "Language-Team: \n"
8
+ "Language: nb\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/abstracts/abstract-bewpi-document.php:64
23
+ msgid "Paid"
24
+ msgstr "Betalt"
25
+
26
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
27
+ #, php-format
28
+ msgid ""
29
+ "Could not create invoice. In order to reset invoice number with %d, delete "
30
+ "all invoices with invoice number %s and greater."
31
+ msgstr ""
32
+ "Kunne ikke opprette faktira. For å tilbakestille fakturanummer med %d, slett "
33
+ "alle fakturaer med fakturanummer %s og høyere."
34
+
35
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
36
+ #, php-format
37
+ msgid ""
38
+ "Could not create invoice. Invoice with invoice number %s already exists. "
39
+ "First delete invoice and try again."
40
+ msgstr ""
41
+ "Kunne ikke opprette faktura. Faktura med fakturanummer %s eksisterer "
42
+ "allerede. Først må du slette denne fakturaen før du forsøker igjen."
43
+
44
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
45
+ #, php-format
46
+ msgid ""
47
+ "Invoice with invoice number %s not found. First create invoice and try again."
48
+ msgstr ""
49
+ "Faktura med fakturanummer %s finnes ikke. Opprett denne fakturaen og forsøk "
50
+ "igjen."
51
+
52
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
53
+ #, php-format
54
+ msgid "VAT Number: %s"
55
+ msgstr ""
56
+
57
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
58
+ #, php-format
59
+ msgid "Purchase Order Number: %s"
60
+ msgstr ""
61
+
62
+ #: includes/abstracts/abstract-bewpi-setting.php:98
63
+ msgid "Allowed HTML tags: "
64
+ msgstr "Tillatte HTML koder: "
65
+
66
+ #: includes/abstracts/abstract-bewpi-setting.php:173
67
+ msgid "Remove logo"
68
+ msgstr "Fjern logo"
69
+
70
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
71
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
72
+ msgid "Attach to Email"
73
+ msgstr "Legg ved e-post"
74
+
75
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
76
+ msgid "Processing order"
77
+ msgstr "Behandler ordre"
78
+
79
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
80
+ msgid "Completed order"
81
+ msgstr "Fullført ordre"
82
+
83
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
84
+ msgid "Customer invoice"
85
+ msgstr "Kundefaktura"
86
+
87
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
88
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
89
+ msgid "Do not attach"
90
+ msgstr "Ikke legg ved"
91
+
92
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
93
+ msgid "Attach to New order Email"
94
+ msgstr "Legg til ny bestilling e-post"
95
+
96
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
97
+ msgid "View PDF"
98
+ msgstr "Vis PDF"
99
+
100
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
101
+ msgid "Download"
102
+ msgstr "Last ned"
103
+
104
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
105
+ msgid "Open in new browser tab/window"
106
+ msgstr "Åpne i ny fane/vindu"
107
+
108
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
109
+ msgid "Enable download from account"
110
+ msgstr ""
111
+
112
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
113
+ msgid ""
114
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
115
+ "page.</div>"
116
+ msgstr ""
117
+
118
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
119
+ msgid "Enable Email It In"
120
+ msgstr "Aktiver dette epostvarselet"
121
+
122
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
123
+ msgid "Email It In account"
124
+ msgstr "Email It In konto"
125
+
126
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
127
+ #, php-format
128
+ msgid "Get your account from your Email It In %suser account%s."
129
+ msgstr "Få din konto fra din Email It In %suser account%s."
130
+
131
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
132
+ msgid "Enable mPDF debugging"
133
+ msgstr ""
134
+
135
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
136
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
137
+ msgstr ""
138
+
139
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
140
+ msgid "Email Options"
141
+ msgstr "E-post alternativer"
142
+
143
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
144
+ msgid "Download Options"
145
+ msgstr ""
146
+
147
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
148
+ msgid "Cloud Storage Options"
149
+ msgstr "Skylagringsalternativer"
150
+
151
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
152
+ msgid "Debug Options"
153
+ msgstr ""
154
+
155
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
156
+ #, php-format
157
+ msgid ""
158
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
159
+ "Egnyte and enter your account below."
160
+ msgstr ""
161
+ "Registrer deg på %s for å sende fakturaene til din DropBox, OneDrive, Google "
162
+ "Drive eller Egnyte og skriv inn kontoen din under."
163
+
164
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
165
+ #: includes/be-woocommerce-pdf-invoices.php:219
166
+ msgid "Template"
167
+ msgstr "Mal"
168
+
169
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
170
+ msgid "Color theme"
171
+ msgstr "Fargetema"
172
+
173
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
174
+ msgid "Date format"
175
+ msgstr "Datoformat"
176
+
177
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
178
+ #, php-format
179
+ msgid "%sFormat%s of invoice date and order date."
180
+ msgstr "%sFormat%s til fakturadato og ordredato."
181
+
182
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
183
+ msgid "Display prices including tax"
184
+ msgstr "Vis priser inkludert mva."
185
+
186
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
187
+ msgid ""
188
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
189
+ "still be excluding tax, so disable it within the visible columns section."
190
+ msgstr ""
191
+ "Linjen element totaler vil inkludere skatt. <br/><b>Merk</b>: Subtotal vil "
192
+ "fortsatt være ekskludert skatt, så deaktiver dette innenfor de synlige "
193
+ "konlonnene."
194
+
195
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
196
+ msgid "Shipping taxable"
197
+ msgstr "Frakt er skattbar"
198
+
199
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
200
+ msgid "Enable to display subtotal including shipping."
201
+ msgstr "Aktiver for å vise subtotal inkludert frakt."
202
+
203
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
204
+ msgid "Mark invoice as paid"
205
+ msgstr "Marker faktura som betalt"
206
+
207
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
208
+ msgid "Invoice will be watermarked when order has been paid."
209
+ msgstr "Fakturaen vil få et vannmerke når ordren har blitt betalt."
210
+
211
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
212
+ msgid "Company name"
213
+ msgstr "Firmanavn"
214
+
215
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
216
+ msgid "Company logo"
217
+ msgstr "Firmalogo"
218
+
219
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
220
+ msgid "Company address"
221
+ msgstr "Firmaadresse"
222
+
223
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
224
+ msgid "Displayed in upper-right corner near logo."
225
+ msgstr "Vist øverst til høyre, nær logoen."
226
+
227
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
228
+ msgid "Company details"
229
+ msgstr "Firmadetaljer"
230
+
231
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
232
+ msgid "Displayed below company address."
233
+ msgstr "Vist under firmaadressen."
234
+
235
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
236
+ msgid "Thank you text"
237
+ msgstr "Takk skal du ha -tekst"
238
+
239
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
240
+ msgid "Displayed in big colored bar directly after invoice total."
241
+ msgstr "Vist i en stor farget boks rett etter fakturatotalen."
242
+
243
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
244
+ msgid "Thank you for your purchase!"
245
+ msgstr "Tusen takk for din bestilling!"
246
+
247
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
248
+ msgid "Show customer notes"
249
+ msgstr "Vis kundenotat"
250
+
251
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
252
+ msgid "Terms & conditions, policies etc."
253
+ msgstr "Betingelser, vilkår etc."
254
+
255
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
256
+ #, php-format
257
+ msgid ""
258
+ "Displayed below customer notes and above footer. Want to attach additional "
259
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
260
+ msgstr ""
261
+ "Vist under kundenotat og over footer. Vil du legge til ytterligere sider til "
262
+ "fakturaen? Ta en titt på <a href=\"%s\">Premium</a> versjonen."
263
+
264
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
265
+ msgid "Items will be shipped within 2 days."
266
+ msgstr "Bestillingen vil bli sendt innen 2 dager."
267
+
268
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
269
+ msgid "Left footer column."
270
+ msgstr "Venstre footer kolonne."
271
+
272
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
273
+ #, php-format
274
+ msgid "<b>Payment method</b> %s"
275
+ msgstr "<b>Betalingsmåte:</b> %s"
276
+
277
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
278
+ msgid "Right footer column."
279
+ msgstr "Høyre footer kolonne."
280
+
281
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
282
+ msgid "Leave empty to show page numbering."
283
+ msgstr "La dette feltet stå tomt for å vise sidenummer."
284
+
285
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
286
+ msgid "Type"
287
+ msgstr "Type"
288
+
289
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
290
+ msgid "WooCommerce order number"
291
+ msgstr "WooCommerce bestillingsnummer"
292
+
293
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
294
+ msgid "Sequential number"
295
+ msgstr "Sekvensielt nummer"
296
+
297
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
298
+ msgid "Reset invoice counter"
299
+ msgstr "Tilbakestill fakturateller"
300
+
301
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
302
+ msgid "Next"
303
+ msgstr "Neste"
304
+
305
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
306
+ msgid ""
307
+ "Reset the invoice counter and start counting from given invoice number.<br/"
308
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
309
+ "editable by selecting checkbox. Next number needs to be lower then highest "
310
+ "existing invoice number or delete invoices first."
311
+ msgstr ""
312
+ "Tilbakestill fakturatelleren og start nummereringen fra et bestemt "
313
+ "fakturanummer.<br><b>Merk:</b> Kun tilgjengelig for sekvensiell nummerering "
314
+ "og verdier kan endres ved å markere ut boksen. Neste nummer må være høyere "
315
+ "enn det høyeste nummeret som allerede eksisterer på en faktura, eller du må "
316
+ "slette gamle fakturaer først."
317
+
318
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
319
+ msgid "Digits"
320
+ msgstr "Tegn"
321
+
322
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
323
+ msgid "[prefix]"
324
+ msgstr "[prefix]"
325
+
326
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
327
+ msgid "[suffix]"
328
+ msgstr "[suffix]"
329
+
330
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
331
+ msgid "Format"
332
+ msgstr "Format"
333
+
334
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
335
+ #, php-format
336
+ msgid ""
337
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
338
+ "slashes aren't supported."
339
+ msgstr ""
340
+ "Tillatte plassholdere: %s %s %s %s %s %s.<br/>%sMerk:%s %s er påkrevd og "
341
+ "skråstreker er ikke støttet."
342
+
343
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
344
+ msgid "Reset on 1st of january"
345
+ msgstr "Tilbakestill 1. Januar"
346
+
347
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
348
+ #: includes/templates/invoices/global/micro/body.php:44
349
+ #: includes/templates/invoices/simple/micro/body.php:48
350
+ msgid "SKU"
351
+ msgstr "Prod.Nr."
352
+
353
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
354
+ #: includes/templates/invoices/global/micro/body.php:236
355
+ #: includes/templates/invoices/simple/micro/body.php:101
356
+ msgid "Subtotal"
357
+ msgstr "Delsum"
358
+
359
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
360
+ msgid "Tax (item)"
361
+ msgstr "Skatt (element)"
362
+
363
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
364
+ msgid "Tax (total)"
365
+ msgstr "Skatt (totalt)"
366
+
367
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
368
+ #: includes/templates/invoices/global/micro/body.php:220
369
+ #: includes/templates/invoices/simple/micro/body.php:85
370
+ msgid "Discount"
371
+ msgstr "Rabatt"
372
+
373
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
374
+ #: includes/templates/invoices/global/micro/body.php:228
375
+ #: includes/templates/invoices/global/micro/body.php:244
376
+ #: includes/templates/invoices/simple/micro/body.php:93
377
+ #: includes/templates/invoices/simple/micro/body.php:109
378
+ msgid "Shipping"
379
+ msgstr "Frakt"
380
+
381
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
382
+ msgid "General Options"
383
+ msgstr "Generelle valg"
384
+
385
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
386
+ msgid "Invoice Number Options"
387
+ msgstr "Alternativer for fakturanummer"
388
+
389
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
390
+ msgid "Header Options"
391
+ msgstr "Overskriftsvalg"
392
+
393
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
394
+ msgid "Body Options"
395
+ msgstr "Hovedalternativer"
396
+
397
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
398
+ msgid "Footer Options"
399
+ msgstr "Footer valg"
400
+
401
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
402
+ msgid "Visible Columns"
403
+ msgstr "Synlige kolonner"
404
+
405
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
406
+ msgid "These are the general template options."
407
+ msgstr "Dette er de generelle alternativene for malen."
408
+
409
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
410
+ msgid "These are the invoice number options."
411
+ msgstr "Dette er alternativene for fakturanummer."
412
+
413
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
414
+ msgid "The header will be visible on every page. "
415
+ msgstr "Overskriften vil være synlig på alle sider. "
416
+
417
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
418
+ msgid "The footer will be visible on every page."
419
+ msgstr "Footeren vil vises på hver eneste side."
420
+
421
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
422
+ msgid ""
423
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
424
+ "order payment method."
425
+ msgstr ""
426
+ "<b>Hint</b>: Bruk <code>[payment_method]</code> plassholder for å vise "
427
+ "bestillingens betalingsmåte."
428
+
429
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
430
+ msgid "Enable or disable the columns."
431
+ msgstr "Aktiver eller deaktiver kolonnene."
432
+
433
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
434
+ msgid "File is invalid and contains either '..' or './'."
435
+ msgstr "Filen er ugyldig og inneholder enten '...' eller './'."
436
+
437
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
438
+ msgid "File is invalid and contains ':' after the first character."
439
+ msgstr "Filen er ugyldig og inneholder ':' etter den første bokstaven."
440
+
441
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
442
+ msgid "File should be less then 2MB."
443
+ msgstr "Filen bør være under 2 megabyte."
444
+
445
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
446
+ msgid "Purchase email"
447
+ msgstr ""
448
+
449
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
450
+ msgid ""
451
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
452
+ "\">wcpdfinvoices.com</a>."
453
+ msgstr ""
454
+
455
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
456
+ msgid "License"
457
+ msgstr ""
458
+
459
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
460
+ msgid ""
461
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
462
+ "\">wcpdfinvoices.com</a> to receive updates."
463
+ msgstr ""
464
+
465
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
466
+ msgid "Processing Renewal Order"
467
+ msgstr ""
468
+
469
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
470
+ msgid "Completed Renewal Order"
471
+ msgstr ""
472
+
473
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
474
+ msgid "Customer Renewal Invoice"
475
+ msgstr ""
476
+
477
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
478
+ msgid "Attach to New Renewal Order Email"
479
+ msgstr ""
480
+
481
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
482
+ msgid "PDF attachment"
483
+ msgstr ""
484
+
485
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
486
+ msgid "Add for example a PDF with your terms & conditions."
487
+ msgstr ""
488
+
489
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
490
+ msgid "Suppliers"
491
+ msgstr ""
492
+
493
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
494
+ msgid ""
495
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
496
+ "adding there Email It In email addresses. Email addresses need to be "
497
+ "seperated by comma's."
498
+ msgstr ""
499
+
500
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
501
+ msgid ""
502
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
503
+ "generate a global invoice from there account</div>"
504
+ msgstr ""
505
+
506
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
507
+ msgid "Customer generation period"
508
+ msgstr ""
509
+
510
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
511
+ msgid ""
512
+ "Should your customers have the ability to generate a global invoice by month "
513
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
514
+ msgstr ""
515
+
516
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
517
+ msgid "Month"
518
+ msgstr ""
519
+
520
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
521
+ msgid "Year"
522
+ msgstr ""
523
+
524
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
525
+ msgid "Send to your Cloud Storage"
526
+ msgstr ""
527
+
528
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
529
+ msgid "Email to customer"
530
+ msgstr ""
531
+
532
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
533
+ msgid "Email to supplier(s)"
534
+ msgstr ""
535
+
536
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
537
+ msgid "Email subject"
538
+ msgstr ""
539
+
540
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
541
+ msgid "Subject for the global invoice email."
542
+ msgstr ""
543
+
544
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
545
+ msgid "Email message"
546
+ msgstr ""
547
+
548
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
549
+ msgid "Message for the global invoice email."
550
+ msgstr ""
551
+
552
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
553
+ msgid "Premium Options"
554
+ msgstr ""
555
+
556
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
557
+ msgid "Woocommerce Subscriptions Email Options"
558
+ msgstr ""
559
+
560
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
561
+ msgid "Attachment Options"
562
+ msgstr ""
563
+
564
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
565
+ msgid "Supplier Options"
566
+ msgstr ""
567
+
568
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
569
+ msgid "Global Invoice Options"
570
+ msgstr ""
571
+
572
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
573
+ msgid ""
574
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
575
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
576
+ "should be activated in order to work."
577
+ msgstr ""
578
+
579
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
580
+ msgid "Attach a PDF to the invoice."
581
+ msgstr ""
582
+
583
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
584
+ msgid "Send customer invoice automatically to your supplier(s)."
585
+ msgstr ""
586
+
587
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
588
+ msgid ""
589
+ "Generate global invoices on Orders page by selecting multiple orders and "
590
+ "applying action or let customers generate periodically from My Account page."
591
+ msgstr ""
592
+
593
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
594
+ msgid "File to large."
595
+ msgstr ""
596
+
597
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
598
+ msgid "Only PDF files are allowed."
599
+ msgstr ""
600
+
601
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
602
+ msgid "Remove"
603
+ msgstr ""
604
+
605
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
606
+ msgid "Choose"
607
+ msgstr ""
608
+
609
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
610
+ msgid "Active"
611
+ msgstr ""
612
+
613
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
614
+ msgid "Inactive"
615
+ msgstr ""
616
+
617
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
618
+ #: includes/be-woocommerce-pdf-invoices.php:182
619
+ msgid "Invalid request"
620
+ msgstr ""
621
+
622
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
623
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
624
+ msgid "Something went wrong."
625
+ msgstr ""
626
+
627
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
628
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
629
+ msgid "No orders found."
630
+ msgstr ""
631
+
632
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
633
+ #: includes/be-woocommerce-pdf-invoices.php:136
634
+ msgid "Settings"
635
+ msgstr "Innstillinger"
636
+
637
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
638
+ #: includes/partials/settings-sidebar.php:50
639
+ msgid "Support"
640
+ msgstr "Hjelp"
641
+
642
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
643
+ #, php-format
644
+ msgid ""
645
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
646
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
647
+ "the free version (%s+) and try again.</p>"
648
+ msgstr ""
649
+
650
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
651
+ #: includes/be-woocommerce-pdf-invoices.php:137
652
+ msgid "Premium"
653
+ msgstr "Premium"
654
+
655
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
656
+ msgid "Generate global invoice"
657
+ msgstr "Opprett global faktura"
658
+
659
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
660
+ msgid "Please select more then one order."
661
+ msgstr ""
662
+
663
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
664
+ msgid "Global invoice successfully generated! "
665
+ msgstr ""
666
+
667
+ #: includes/be-woocommerce-pdf-invoices.php:126
668
+ #, php-format
669
+ msgid ""
670
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
671
+ "PDF Invoices</strong></a>."
672
+ msgstr ""
673
+ "Supert! <a href=\"%s\">La oss starte å konfigurere <strong>WooCommerce PDF "
674
+ "Faktura</strong></a>."
675
+
676
+ #: includes/be-woocommerce-pdf-invoices.php:185
677
+ msgid "Invalid order ID"
678
+ msgstr ""
679
+
680
+ #: includes/be-woocommerce-pdf-invoices.php:191
681
+ msgid "Access denied"
682
+ msgstr ""
683
+
684
+ #: includes/be-woocommerce-pdf-invoices.php:218
685
+ msgid "General"
686
+ msgstr "Generelt"
687
+
688
+ #: includes/be-woocommerce-pdf-invoices.php:251
689
+ msgid "Invoices"
690
+ msgstr "PDF Faktura"
691
+
692
+ #: includes/be-woocommerce-pdf-invoices.php:294
693
+ #, php-format
694
+ msgid ""
695
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
696
+ "%s★★★★★%s rating. A huge thank you in advance!"
697
+ msgstr ""
698
+ "Om du liker <strong>WooCommerce PDF Faktura</strong>, vennligst gi oss en "
699
+ "%s★★★★★%s vurdering. På forhånd tusen takk!"
700
+
701
+ #: includes/be-woocommerce-pdf-invoices.php:295
702
+ #, php-format
703
+ msgid "Version %s"
704
+ msgstr "Versjon %s"
705
+
706
+ #: includes/be-woocommerce-pdf-invoices.php:369
707
+ msgid "PDF Invoice"
708
+ msgstr "PDF Faktura"
709
+
710
+ #: includes/be-woocommerce-pdf-invoices.php:395
711
+ msgid "Invoiced on:"
712
+ msgstr "Sendt:"
713
+
714
+ #: includes/be-woocommerce-pdf-invoices.php:399
715
+ msgid "Invoice number:"
716
+ msgstr "Fakturanummer:"
717
+
718
+ #: includes/be-woocommerce-pdf-invoices.php:438
719
+ msgid "View invoice"
720
+ msgstr "Vis faktura"
721
+
722
+ #: includes/be-woocommerce-pdf-invoices.php:438
723
+ msgid "View"
724
+ msgstr "Vis"
725
+
726
+ #: includes/be-woocommerce-pdf-invoices.php:439
727
+ msgid "Cancel invoice"
728
+ msgstr "Slett faktura"
729
+
730
+ #: includes/be-woocommerce-pdf-invoices.php:439
731
+ msgid "Cancel"
732
+ msgstr "Slett"
733
+
734
+ #: includes/be-woocommerce-pdf-invoices.php:441
735
+ msgid "Are you sure to delete the invoice?"
736
+ msgstr "Er du sikker på at du vil slette fakturaen?"
737
+
738
+ #: includes/be-woocommerce-pdf-invoices.php:444
739
+ msgid "Create invoice"
740
+ msgstr "Opprett faktura"
741
+
742
+ #: includes/be-woocommerce-pdf-invoices.php:444
743
+ msgid "Create"
744
+ msgstr "Opprett"
745
+
746
+ #: includes/be-woocommerce-pdf-invoices.php:467
747
+ #, php-format
748
+ msgid "Invoice %s (PDF)"
749
+ msgstr "Faktura %s (PDF)"
750
+
751
+ #: includes/be-woocommerce-pdf-invoices.php:577
752
+ #, php-format
753
+ msgid ""
754
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
755
+ "really need your ★★★★★ rating. It will support future development big-time. "
756
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
757
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
758
+ "done it!</a>"
759
+ msgstr ""
760
+ "Du har brukt <b>WooCommerce PDF Faktura</b> en stund nå. Vi trenger virkelig "
761
+ "din ★★★★★ vurdering. Det vil virkelig støtte fremtidig utvikling. På forhånd "
762
+ "tusen takk, og fortsett det fantastiske arbeidet! <br /> <a href='%s' "
763
+ "target='_blank'>Ja, jeg skal gjøre det med en gang!</a> - <a href='%s'>Nei, "
764
+ "jeg har allerede gjort det!</a>"
765
+
766
+ #: includes/class-bewpi-invoice.php:50
767
+ msgid ""
768
+ "Whoops, no template found. Please select a template on the Template settings "
769
+ "page first."
770
+ msgstr ""
771
+ "Ooops! Ingen mal ble funnet. Vennligt velg en mal under innstillinger først."
772
+
773
+ #: includes/partials/customer-generation.php:1
774
+ msgid "Generate Global Invoice"
775
+ msgstr ""
776
+
777
+ #: includes/partials/customer-generation.php:11
778
+ msgid "Select a month"
779
+ msgstr ""
780
+
781
+ #: includes/partials/customer-generation.php:24
782
+ msgid "Select a year"
783
+ msgstr ""
784
+
785
+ #: includes/partials/customer-generation.php:38
786
+ msgid "Generate invoice"
787
+ msgstr ""
788
+
789
+ #: includes/partials/settings-sidebar.php:2
790
+ msgid "WooCommerce PDF Invoices Premium"
791
+ msgstr "WooCommerce PDF Faktura Premium"
792
+
793
+ #: includes/partials/settings-sidebar.php:4
794
+ msgid ""
795
+ "This plugin offers a premium version which comes with the following features:"
796
+ msgstr ""
797
+ "Denne utvidelsen tilbyr også en premium versjon som kommer med følgende "
798
+ "funksjoner:"
799
+
800
+ #: includes/partials/settings-sidebar.php:5
801
+ msgid "Bill periodically by generating and sending global invoices."
802
+ msgstr "Fakturer periodisk ved å generere og sende globale fakturaer."
803
+
804
+ #: includes/partials/settings-sidebar.php:6
805
+ msgid "Add additional PDF's to customer invoices."
806
+ msgstr "Legg til flere PDFer til kundefakturaer."
807
+
808
+ #: includes/partials/settings-sidebar.php:7
809
+ msgid "Send customer invoices directly to suppliers and others."
810
+ msgstr "Send kundefakturaer direkte til leverandører og andre."
811
+
812
+ #: includes/partials/settings-sidebar.php:8
813
+ #, php-format
814
+ msgid ""
815
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
816
+ msgstr ""
817
+ "Kompatibel med <a href=\"%s\">WooCommerce Subscriptions</a> utvidelses e-"
818
+ "poster."
819
+
820
+ #: includes/partials/settings-sidebar.php:10
821
+ msgid "Learn more"
822
+ msgstr "Les mer"
823
+
824
+ #: includes/partials/settings-sidebar.php:13
825
+ msgid "Stay up-to-date"
826
+ msgstr "Hold deg oppdatert"
827
+
828
+ #: includes/partials/settings-sidebar.php:17
829
+ msgid ""
830
+ "We're constantly developing new features, stay up-to-date by subscribing to "
831
+ "our newsletter."
832
+ msgstr ""
833
+ "Vi jobber kontinuerlig med å utvikle nye funksjoner, hold deg oppdatert "
834
+ "ved å melde deg på nyhetsbrevet vårt."
835
+
836
+ #: includes/partials/settings-sidebar.php:23
837
+ msgid "Your email address"
838
+ msgstr "Din e-post adresse"
839
+
840
+ #: includes/partials/settings-sidebar.php:29
841
+ msgid "Signup"
842
+ msgstr "Registrer"
843
+
844
+ #: includes/partials/settings-sidebar.php:32
845
+ msgid "No spam, ever. Unsubscribe at any time"
846
+ msgstr "Ingen spam, aldri. Du kan melde deg av når som helst."
847
+
848
+ #: includes/partials/settings-sidebar.php:41
849
+ msgid "About"
850
+ msgstr "Om"
851
+
852
+ #: includes/partials/settings-sidebar.php:43
853
+ msgid ""
854
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
855
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
856
+ msgstr ""
857
+ "Denne utvidelsen er i åpen klidekode og har som mål om å legge til "
858
+ "funksonaliteten med fakturering som mangler i <a href=\"http://www.woothemes."
859
+ "com/woocommerce\">WooCommerce</a>."
860
+
861
+ #: includes/partials/settings-sidebar.php:45
862
+ msgid "<b>Version</b>: "
863
+ msgstr "<b>Versjon</b>: "
864
+
865
+ #: includes/partials/settings-sidebar.php:47
866
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
867
+ msgstr "<b>Skaper</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
868
+
869
+ #: includes/partials/settings-sidebar.php:52
870
+ msgid ""
871
+ "We will never ask for donations, but to garantee future development, we do "
872
+ "need your support. Please show us your appreciation by leaving a <a href="
873
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
874
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
875
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
876
+ msgstr ""
877
+ "Vi vil aldri be om donasjoner, men for å garantere fremtidig utvikler, vi "
878
+ "trenger hjelpen din. Vennligst vis oss din takknemlighet ved å legge igjen "
879
+ "en <a href=\"https://wordpress.org/support/view/plugin-reviews/woocommerce-"
880
+ "pdf-invoices?rate=5#postform\">★★★★★</a> vurdering og stem <a href="
881
+ "\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">arbeidet</a>."
882
+
883
+ #: includes/partials/settings-sidebar.php:72
884
+ msgid ""
885
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
886
+ msgstr ""
887
+ "Sjekk ut denne fantastiske og helt gratis utvidelsen WooCommerce PDF Faktura "
888
+ "for WordPress!"
889
+
890
+ #: includes/partials/settings-sidebar.php:77
891
+ msgid "Need Help?"
892
+ msgstr "Trenger du hjelp?"
893
+
894
+ #: includes/partials/settings-sidebar.php:79
895
+ msgid "Frequently Asked Questions"
896
+ msgstr "Ofte stilte spørsmål"
897
+
898
+ #: includes/partials/settings-sidebar.php:80
899
+ msgid "Support forum"
900
+ msgstr "Supportforum"
901
+
902
+ #: includes/partials/settings-sidebar.php:81
903
+ msgid "Request a feature"
904
+ msgstr "Foreslå en ny funksjon"
905
+
906
+ #: includes/partials/settings-sidebar.php:82
907
+ msgid "Email us"
908
+ msgstr "Send oss en e-post"
909
+
910
+ #: includes/templates/invoices/global/micro/body.php:5
911
+ #: includes/templates/invoices/simple/micro/body.php:5
912
+ msgid "Invoice to"
913
+ msgstr "Kunde"
914
+
915
+ #: includes/templates/invoices/global/micro/body.php:7
916
+ #: includes/templates/invoices/simple/micro/body.php:7
917
+ #, php-format
918
+ msgid "Phone: %s"
919
+ msgstr "Telefon: %s"
920
+
921
+ #: includes/templates/invoices/global/micro/body.php:11
922
+ #: includes/templates/invoices/simple/micro/body.php:11
923
+ msgid "Ship to"
924
+ msgstr "Leveringsadresse"
925
+
926
+ #: includes/templates/invoices/global/micro/body.php:22
927
+ msgid "Global Invoice"
928
+ msgstr "Global faktura"
929
+
930
+ #: includes/templates/invoices/global/micro/body.php:40
931
+ #: includes/templates/invoices/simple/micro/body.php:44
932
+ msgid "Description"
933
+ msgstr "Produkt"
934
+
935
+ #: includes/templates/invoices/global/micro/body.php:48
936
+ #: includes/templates/invoices/simple/micro/body.php:52
937
+ msgid "Cost"
938
+ msgstr "Pris"
939
+
940
+ #: includes/templates/invoices/global/micro/body.php:50
941
+ #: includes/templates/invoices/simple/micro/body.php:54
942
+ msgid "Qty"
943
+ msgstr "Ant"
944
+
945
+ #: includes/templates/invoices/global/micro/body.php:56
946
+ #: includes/templates/invoices/simple/micro/body.php:60
947
+ msgid "VAT"
948
+ msgstr "MVA"
949
+
950
+ #: includes/templates/invoices/global/micro/body.php:67
951
+ #: includes/templates/invoices/global/micro/body.php:280
952
+ #: includes/templates/invoices/simple/micro/body.php:71
953
+ #: includes/templates/invoices/simple/micro/body.php:145
954
+ msgid "Total"
955
+ msgstr "Totalt"
956
+
957
+ #: includes/templates/invoices/global/micro/body.php:75
958
+ #, php-format
959
+ msgid "Order #%d - %s"
960
+ msgstr "Ordre #%d - %s"
961
+
962
+ #: includes/templates/invoices/global/micro/body.php:255
963
+ #: includes/templates/invoices/simple/micro/body.php:120
964
+ msgid "Fee"
965
+ msgstr "Avgift"
966
+
967
+ #: includes/templates/invoices/global/micro/body.php:287
968
+ #: includes/templates/invoices/simple/micro/body.php:152
969
+ msgid "Refunded"
970
+ msgstr "Refundert"
971
+
972
+ #: includes/templates/invoices/global/micro/footer.php:15
973
+ #: includes/templates/invoices/simple/micro/footer.php:18
974
+ #, php-format
975
+ msgid "%s of %s"
976
+ msgstr "%s av %s"
977
+
978
+ #: includes/templates/invoices/simple/micro/body.php:22
979
+ msgid "Invoice"
980
+ msgstr "Faktura"
981
+
982
+ #: includes/templates/invoices/simple/micro/body.php:25
983
+ #, php-format
984
+ msgid "Order Number: %s"
985
+ msgstr "Ordrenummer: %s"
986
+
987
+ #: includes/templates/invoices/simple/micro/body.php:26
988
+ #, php-format
989
+ msgid "Order Date: %s"
990
+ msgstr "Ordre dato: %s"
991
+
992
+ #: includes/templates/invoices/simple/micro/body.php:289
993
+ #: includes/templates/invoices/simple/micro/body.php:294
994
+ msgid "Customer note"
995
+ msgstr "Kundenotat"
996
+
997
+ #~ msgid ""
998
+ #~ "<b>Note</b>: If your logo doesn't show up, try to enable "
999
+ #~ "<code>allow_url_fopen</code>."
1000
+ #~ msgstr ""
1001
+ #~ "<b>NB</b>: Om logoen din ikke vises, forsøk å aktivere "
1002
+ #~ "<code>allow_url_fopen</code>."
1003
+
1004
+ #~ msgid "Feel free to use "
1005
+ #~ msgstr "Du kan også bruke "
1006
+
1007
+ #~ msgid "Intro text"
1008
+ #~ msgstr "Introduksjonstekst"
1009
+
1010
+ #~ msgid ""
1011
+ #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
1012
+ #~ "%s Only available with sequential numbering type and you need to check "
1013
+ #~ "the checkbox to actually reset the value."
1014
+ #~ msgstr ""
1015
+ #~ "TIlbakestill fakturatelleren og start med neste fakturanummer. %s %sMerk:"
1016
+ #~ "%s Kun tilgjengelig med sekvensielle nummer og du må huke av boksen for å "
1017
+ #~ "faktisk tilbakestille verdien."
1018
+
1019
+ #~ msgid ""
1020
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1021
+ #~ "is required and slashes aren't supported."
1022
+ #~ msgstr ""
1023
+ #~ "Bruk en av disse kortkodene; %s %s %s %s %s og %s. %s %sMerk:%s %s er "
1024
+ #~ "obligatorisk."
1025
+
1026
+ #~ msgid "Tax"
1027
+ #~ msgstr "MVA"
1028
+
1029
+ #~ msgid "The footer will be visible on every page. "
1030
+ #~ msgstr "Footeren vil være synlig på alle sider. "
1031
+
1032
+ #~ msgid "%sPayment%s via"
1033
+ #~ msgstr "%sBetalt%s med"
1034
+
1035
+ #~ msgid ""
1036
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1037
+ #~ "is required."
1038
+ #~ msgstr ""
1039
+ #~ "Bruk en av disse kortkodene; %s %s %s %s %s og %s. %s %sMerk:%s %s er "
1040
+ #~ "obligatorisk."
1041
+
1042
+ #~ msgid "Subtotal will be including tax and excluding discount and shipping."
1043
+ #~ msgstr "Delsummen vil være inkludert mva, men ekskludert rabatt og frakt."
1044
+
1045
+ #~ msgid ""
1046
+ #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
1047
+ #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
1048
+ #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
1049
+ #~ "away!</a> - <a href='%s'>No, already done it!</a>"
1050
+ #~ msgstr ""
1051
+ #~ "Takk for at du har benyttet <b>WooCommerce PDF Invoices</b> en liten "
1052
+ #~ "stund allerede. Vennligst vis oss din støtte ved å vurdere utvidelsen med "
1053
+ #~ "★★★★★. Tusen takk for støtten din! <br /> <a href='%s' "
1054
+ #~ "target='_blank'>Ja, jeg skal gjøre det med en gang!!</a> - <a "
1055
+ #~ "href='%s'>Jeg har allerede gjort det!</a>"
1056
+
1057
+ #~ msgid "PAID"
1058
+ #~ msgstr "BETALT"
1059
+
1060
+ #~ msgid "UNPAID"
1061
+ #~ msgstr "IKKE BETALT"
1062
+
1063
+ #~ msgid "Order Number %s"
1064
+ #~ msgstr "Bestillingsnummer: %s"
1065
+
1066
+ #~ msgid "Order Date %s"
1067
+ #~ msgstr "Bestillingsdato: %s"
1068
+
1069
+ #~ msgid "Download invoice (PDF)"
1070
+ #~ msgstr "Last ned faktura (PDF)"
1071
+
1072
+ #~ msgid ""
1073
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
1074
+ #~ "required."
1075
+ #~ msgstr ""
1076
+ #~ "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
1077
+ #~ "obligatorisk."
1078
+
1079
+ #~ msgid "VAT %s"
1080
+ #~ msgstr "MVA %s"
1081
+
1082
+ #~ msgid "General Settings"
1083
+ #~ msgstr "Algemene Opties"
1084
+
1085
+ #~ msgid ""
1086
+ #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
1087
+ #~ msgstr "Verzend automatisch naar Google Drive, Egnyte, Dropbox of OneDrive"
1088
+
1089
+ #~ msgid "For bookkeeping purposes."
1090
+ #~ msgstr "Voor boekhoudkundige doeleinden."
1091
+
1092
+ #~ msgid "Signup at %s and enter your account below."
1093
+ #~ msgstr "Meld je aan op %s en geef je account onderstaand in."
1094
+
1095
+ #~ msgid "Enter your %s account."
1096
+ #~ msgstr "Het %s account."
1097
+
1098
+ #~ msgid "Invalid type of Email."
1099
+ #~ msgstr "Ongeldig type Email."
1100
+
1101
+ #~ msgid "Please don't try to change the values."
1102
+ #~ msgstr "Probeer de waardes niet te wijzigen a.u.b."
1103
+
1104
+ #~ msgid "Invalid Email address."
1105
+ #~ msgstr "Ongeldig Emailadres."
1106
+
1107
+ #~ msgid "Allowed tags: "
1108
+ #~ msgstr "Toegestane tags: "
1109
+
1110
+ #~ msgid "Template Settings"
1111
+ #~ msgstr "Template Opties"
1112
+
1113
+ #~ msgid "Invoice number type"
1114
+ #~ msgstr "Type factuurnummer"
1115
+
1116
+ #~ msgid "Next invoice number"
1117
+ #~ msgstr "Eerstvolgende factuurnummer"
1118
+
1119
+ #~ msgid "Number of digits"
1120
+ #~ msgstr "Aantal cijfers"
1121
+
1122
+ #~ msgid "Invoice number prefix"
1123
+ #~ msgstr "Factuurnummer voorvoegsel"
1124
+
1125
+ #~ msgid "Invoice number suffix"
1126
+ #~ msgstr "Factuurnummer achtervoegsel"
1127
+
1128
+ #~ msgid "Invoice number format"
1129
+ #~ msgstr "Factuurnummer format"
1130
+
1131
+ #~ msgid "Reset on 1st January"
1132
+ #~ msgstr "Reset op 1 januari"
1133
+
1134
+ #~ msgid "Invoice date format"
1135
+ #~ msgstr "Factuur datumnotatie"
1136
+
1137
+ #~ msgid "Order date format"
1138
+ #~ msgstr "Notatie bestellingsdatum"
1139
+
1140
+ #~ msgid "Show SKU"
1141
+ #~ msgstr "Toon SKU"
1142
+
1143
+ #~ msgid "Show discount"
1144
+ #~ msgstr "Toon korting"
1145
+
1146
+ #~ msgid "Show subtotal"
1147
+ #~ msgstr "Toon subtotaal"
1148
+
1149
+ #~ msgid "Show tax"
1150
+ #~ msgstr "Toon BTW"
1151
+
1152
+ #~ msgid "Show shipping"
1153
+ #~ msgstr "Toon verzendkosten"
1154
+
1155
+ #~ msgid "Color theme of the invoice."
1156
+ #~ msgstr "Kleurthema van de factuur."
1157
+
1158
+ #~ msgid ""
1159
+ #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
1160
+ #~ "png."
1161
+ #~ msgstr ""
1162
+ #~ "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
1163
+ #~ "png is."
1164
+
1165
+ #~ msgid "Invoice number to use for next invoice."
1166
+ #~ msgstr "Factuurnummer te gebruiken voor de volgende factuur."
1167
+
1168
+ #~ msgid "Number of zero digits."
1169
+ #~ msgstr "Aantal nullen."
1170
+
1171
+ #~ msgid "Prefix text for the invoice number. Not required."
1172
+ #~ msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
1173
+
1174
+ #~ msgid "Suffix text for the invoice number. Not required."
1175
+ #~ msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
1176
+
1177
+ #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
1178
+ #~ msgstr "Beschikbare aanduidingen zijn %s %s %s %s of %s. %s is verplicht."
1179
+
1180
+ #~ msgid "Reset on the first of January."
1181
+ #~ msgstr "Reset op de eerste van januari."
1182
+
1183
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s."
1184
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
1185
+
1186
+ #~ msgid "Order date %sformat%s. Examples: %s or %s."
1187
+ #~ msgstr "Notatie %sbestellingsdatum%s. Voorbeelden: %s of %s."
1188
+
1189
+ #~ msgid "Invalid template."
1190
+ #~ msgstr "Ongeldige template."
1191
+
1192
+ #~ msgid "Invalid color theme code."
1193
+ #~ msgstr "Ongeldige kleurcode."
1194
+
1195
+ #~ msgid "Invalid company name."
1196
+ #~ msgstr "Ongeldige bedsrijfsnaam."
1197
+
1198
+ #~ msgid "Invalid input into one of the textarea's."
1199
+ #~ msgstr "Ongeldige invoer in een van de textarea's."
1200
+
1201
+ #~ msgid "Invalid type of invoice number."
1202
+ #~ msgstr "Ongeldig type factuurnummer."
1203
+
1204
+ #~ msgid "Invalid (next) invoice number."
1205
+ #~ msgstr "Ongeldig (eerstvolgend) factuurnummer."
1206
+
1207
+ #~ msgid "Invalid invoice number digits."
1208
+ #~ msgstr "Ongeldige factuurnummer cijfers."
1209
+
1210
+ #~ msgid "The [number] placeholder is required as invoice number format."
1211
+ #~ msgstr "De aanduiding [number] is vereist."
1212
+
1213
+ #~ msgid "Invalid invoice number format."
1214
+ #~ msgstr "Ongeldig factuurnummer format."
1215
+
1216
+ #~ msgid "Invalid date format."
1217
+ #~ msgstr "Ongeldige datumnotatie."
1218
+
1219
+ #~ msgid "Please upload image with extension jpg, jpeg or png."
1220
+ #~ msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
1221
+
1222
+ #~ msgid "Quantity"
1223
+ #~ msgstr "Aantal"
1224
+
1225
+ #~ msgid "Unit price"
1226
+ #~ msgstr "Prijs per stuk"
1227
+
1228
+ #~ msgid ""
1229
+ #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1230
+ #~ msgstr ""
1231
+ #~ "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
1232
+ #~ "verplicht."
1233
+
1234
+ #~ msgid "Signup at %s and enter your account beyond."
1235
+ #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
1236
+
1237
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1238
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
1239
+
1240
+ #~ msgid "Show invoice"
1241
+ #~ msgstr "Toon factuur"
1242
+
1243
+ #~ msgid "%sFormat%s of the date."
1244
+ #~ msgstr "%sFormat%s van de datum."
1245
+
1246
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1247
+ #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
1248
+
1249
+ #~ msgid "Choose the color witch fits your company."
1250
+ #~ msgstr "Kies uw bedrijfskleur."
1251
+
1252
+ #~ msgid ""
1253
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1254
+ #~ "[number] as placeholders."
1255
+ #~ msgstr ""
1256
+ #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
1257
+ #~ "[number] als aanduidingen."
1258
+
1259
+ #~ msgid "Text to greet, congratulate or thank the customer. "
1260
+ #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
1261
+
1262
+ #~ msgid "Some text"
1263
+ #~ msgstr "De vertaling werkt!!!!"
1264
+
1265
+ #~ msgid "Text to greet, congratulate or thank the customer."
1266
+ #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
1267
+
1268
+ #~ msgid "Start all over on the first of January."
1269
+ #~ msgstr "Opnieuw beginnen op de eerste van januari."
lang/woocommerce-pdf-invoices-nl_NL.mo CHANGED
Binary file
lang/woocommerce-pdf-invoices-nl_NL.po CHANGED
@@ -1,1044 +1,1268 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
5
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: nl_NL\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.3\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: includes/abstracts/abstract-bewpi-document.php:64
23
- msgid "Paid"
24
- msgstr "Betaald"
25
-
26
- #: includes/abstracts/abstract-bewpi-invoice.php:262
27
- #, php-format
28
- msgid ""
29
- "Could not create invoice. In order to reset invoice number with %d, delete "
30
- "all invoices with invoice number %s and greater."
31
- msgstr ""
32
- "Kon de factuur niet maken. Om het factuurnummer met %d te resetten, dienen "
33
- "alle facturen met factuurnummers groter dan %s eerst te worden verwijderd."
34
-
35
- #: includes/abstracts/abstract-bewpi-invoice.php:267
36
- #, php-format
37
- msgid ""
38
- "Could not create invoice. Invoice with invoice number %s already exists. "
39
- "First delete invoice and try again."
40
- msgstr ""
41
- "Kon de factuur niet maken. De factuur met factuurnummer %s bestaat reeds. "
42
- "Verwijder de factuur en probeer opnieuw."
43
-
44
- #: includes/abstracts/abstract-bewpi-invoice.php:310
45
- #, php-format
46
- msgid ""
47
- "Invoice with invoice number %s not found. First create invoice and try again."
48
- msgstr ""
49
- "Factuur met factuurnummer %s niet gevonden. Maak eerst de factuur en probeer "
50
- "opnieuw."
51
-
52
- #: includes/abstracts/abstract-bewpi-invoice.php:372
53
- #, php-format
54
- msgid "VAT Number: %s"
55
- msgstr "BTW nummer: %s"
56
-
57
- #: includes/abstracts/abstract-bewpi-invoice.php:383
58
- #, php-format
59
- msgid "Purchase Order Number: %s"
60
- msgstr "Aankoopnummer: %s"
61
-
62
- #: includes/abstracts/abstract-bewpi-setting.php:98
63
- msgid "Allowed HTML tags: "
64
- msgstr "Toegestane HTML attributen:"
65
-
66
- #: includes/abstracts/abstract-bewpi-setting.php:173
67
- msgid "Remove logo"
68
- msgstr "Verwijder logo"
69
-
70
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
71
- msgid "Attach to Email"
72
- msgstr "Voeg toe aan Email"
73
-
74
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
75
- msgid "Processing order"
76
- msgstr "Bestelling wordt verwerkt"
77
-
78
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
79
- msgid "Completed order"
80
- msgstr "Bestelling voltooid"
81
-
82
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
83
- msgid "Customer invoice"
84
- msgstr "Klant factuur"
85
-
86
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
87
- msgid "Do not attach"
88
- msgstr "Niet bijvoegen"
89
-
90
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
91
- msgid "Attach to New order Email"
92
- msgstr "Voeg toe aan New order Email"
93
-
94
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
95
- msgid "View PDF"
96
- msgstr "Bekijk PDF"
97
-
98
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
99
- msgid "Download"
100
- msgstr "Download"
101
-
102
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
103
- msgid "Open in new browser tab/window"
104
- msgstr "Openen in nieuw browser tabblad/venster"
105
-
106
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
107
- msgid "Enable download from account"
108
- msgstr "Inschakelen download van Mijn Account pagina"
109
-
110
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
111
- msgid ""
112
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
113
- "page.</div>"
114
- msgstr ""
115
- "<br/><div class=\"bewpi-notes\">Laat klanten haar facturen downloaden van "
116
- "Mijn Account pagina.</div>"
117
-
118
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
119
- msgid "Enable Email It In"
120
- msgstr "Inschakelen Email It In"
121
-
122
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
123
- msgid "Email It In account"
124
- msgstr "Email It In account"
125
-
126
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
127
- #, php-format
128
- msgid "Get your account from your Email It In %suser account%s."
129
- msgstr "Verkrijg uw account van uw Email It In %sgebruikersaccount%s."
130
-
131
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
132
- msgid "Enable mPDF debugging"
133
- msgstr ""
134
-
135
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
136
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
137
- msgstr ""
138
-
139
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
140
- msgid "Email Options"
141
- msgstr "Email Opties"
142
-
143
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
144
- msgid "Download Options"
145
- msgstr "Download Opties"
146
-
147
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
148
- msgid "Cloud Storage Options"
149
- msgstr "Online Opslag Opties"
150
-
151
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
152
- msgid "Debug Options"
153
- msgstr ""
154
-
155
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
156
- #, php-format
157
- msgid ""
158
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
159
- "Egnyte and enter your account below."
160
- msgstr ""
161
- "Meld je aan op %s en verzend facturen naar je Dropbox, OneDrive, Google "
162
- "Drive of Egnyte en voer je account onderstaand in."
163
-
164
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
165
- #: includes/be-woocommerce-pdf-invoices.php:219
166
- msgid "Template"
167
- msgstr "Template"
168
-
169
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
170
- msgid "Color theme"
171
- msgstr "Kleur thema"
172
-
173
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
174
- msgid "Date format"
175
- msgstr "Datum format"
176
-
177
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
178
- #, php-format
179
- msgid "%sFormat%s of invoice date and order date."
180
- msgstr "%sNotatie%s van factuurdatum en orderdatum."
181
-
182
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
183
- msgid "Display prices including tax"
184
- msgstr "Toon prijzen inclusief BTW"
185
-
186
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
187
- msgid ""
188
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
189
- "still be excluding tax, so disable it within the visible columns section."
190
- msgstr ""
191
- "Lijn items totalen zijn inclusief BTW. <br/><b>Let wel</ b>: Subtotaal "
192
- "blijft exclusief BTW."
193
-
194
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
195
- msgid "Shipping taxable"
196
- msgstr "Verzendkosten belastbaar"
197
-
198
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
199
- msgid "Enable to display subtotal including shipping."
200
- msgstr "Toon subtotaal inclusief verzendkosten."
201
-
202
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
203
- msgid "Mark invoice as paid"
204
- msgstr "Markeer factuur als betaald"
205
-
206
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
207
- msgid "Invoice will be watermarked when order has been paid."
208
- msgstr "Factuur wordt gewatermerkt wanneer de bestelling is betaald."
209
-
210
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
211
- msgid "Company name"
212
- msgstr "Bedrijfsnaam"
213
-
214
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
215
- msgid "Company logo"
216
- msgstr "Bedrijfslogo"
217
-
218
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
219
- msgid "Company address"
220
- msgstr "Bedrijfsadres"
221
-
222
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
223
- msgid "Displayed in upper-right corner near logo."
224
- msgstr "Wordt naast het logo weergegeven (rechts-boven in de hoek)."
225
-
226
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
227
- msgid "Company details"
228
- msgstr "Algemene bedrijfsgegevens"
229
-
230
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
231
- msgid "Displayed below company address."
232
- msgstr "Wordt onder het bedrijfsadres weergegeven."
233
-
234
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
235
- msgid "Thank you text"
236
- msgstr "Bedankt tekst"
237
-
238
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
239
- msgid "Displayed in big colored bar directly after invoice total."
240
- msgstr "Wordt in de grote gekleurde balk direct na het totaal weergegeven."
241
-
242
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
243
- msgid "Thank you for your purchase!"
244
- msgstr "Bedankt voor uw aankoop!"
245
-
246
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
247
- msgid "Show customer notes"
248
- msgstr "Toon notities klant"
249
-
250
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
251
- msgid "Terms & conditions, policies etc."
252
- msgstr "Algemene voorwaarden"
253
-
254
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
255
- #, php-format
256
- msgid ""
257
- "Displayed below customer notes and above footer. Want to attach additional "
258
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
259
- msgstr ""
260
- "Wordt tussen de klantnotities en de voetnoot weergegeven. Voeg meerdere "
261
- "pagina's aan de factuur toe met de <a href=\"%s\">Premium</a> versie."
262
-
263
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
264
- msgid "Items will be shipped within 2 days."
265
- msgstr "Producten worden binnen twee dagen verzonden."
266
-
267
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
268
- msgid "Left footer column."
269
- msgstr "Linker voetnoot kolom."
270
-
271
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
272
- #, php-format
273
- msgid "<b>Payment method</b> %s"
274
- msgstr "<b>Betaalmethode</b> %s"
275
-
276
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
277
- msgid "Right footer column."
278
- msgstr "Rechter voetboot kolom."
279
-
280
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
281
- msgid "Leave empty to show page numbering."
282
- msgstr "Laat leeg om paginanummering te tonen."
283
-
284
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
285
- msgid "Type"
286
- msgstr "Type"
287
-
288
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
289
- msgid "WooCommerce order number"
290
- msgstr "WooCommerce ordernummer"
291
-
292
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
293
- msgid "Sequential number"
294
- msgstr "Volgnummer"
295
-
296
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
297
- msgid "Reset invoice counter"
298
- msgstr "Reset factuur teller"
299
-
300
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
301
- msgid "Next"
302
- msgstr "Volgende"
303
-
304
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
305
- msgid ""
306
- "Reset the invoice counter and start counting from given invoice number.<br/"
307
- "><b>Note:</b> Only available for Sequential numbering and value will be "
308
- "editable by selecting checkbox. Next number needs to be lower then highest "
309
- "existing invoice number or delete invoices first."
310
- msgstr ""
311
- "Reset het factuurnummer en start opnieuw met tellen<br/><b>Let wel:</b> "
312
- "Selecteer vinkje om de waarde daadwerkelijk te veranderen. Deze functie is "
313
- "alleen mogelijk met sequentiële nummering. Het opvolgende nummer behoort "
314
- "lager te zijn dan het hoogst bestaande nummer of verwijder eerst de factuur."
315
-
316
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
317
- msgid "Digits"
318
- msgstr "Aantal nullen."
319
-
320
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
321
- msgid "[prefix]"
322
- msgstr "[prefix]"
323
-
324
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
325
- msgid "[suffix]"
326
- msgstr "[suffix]"
327
-
328
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
329
- msgid "Format"
330
- msgstr "Notatie"
331
-
332
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
333
- #, php-format
334
- msgid ""
335
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
336
- "slashes aren't supported."
337
- msgstr ""
338
- "Toegestane attributen: %s %s %s %s %s %s.<br/>%sLet wel:%s %s is verplicht "
339
- "en schuine streep is niet toegestaan."
340
-
341
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
342
- msgid "Reset on 1st of january"
343
- msgstr "Reset op 1 januari"
344
-
345
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
346
- #: includes/templates/invoices/global/micro/body.php:44
347
- #: includes/templates/invoices/simple/micro/body.php:48
348
- msgid "SKU"
349
- msgstr "Productcode"
350
-
351
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
352
- #: includes/templates/invoices/global/micro/body.php:236
353
- #: includes/templates/invoices/simple/micro/body.php:101
354
- msgid "Subtotal"
355
- msgstr "Subtotaal"
356
-
357
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
358
- msgid "Tax (item)"
359
- msgstr "BTW (artikel)"
360
-
361
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
362
- msgid "Tax (total)"
363
- msgstr "BTW (totaal)"
364
-
365
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
366
- #: includes/templates/invoices/global/micro/body.php:220
367
- #: includes/templates/invoices/simple/micro/body.php:85
368
- msgid "Discount"
369
- msgstr "Korting"
370
-
371
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
372
- #: includes/templates/invoices/global/micro/body.php:228
373
- #: includes/templates/invoices/global/micro/body.php:244
374
- #: includes/templates/invoices/simple/micro/body.php:93
375
- #: includes/templates/invoices/simple/micro/body.php:109
376
- msgid "Shipping"
377
- msgstr "Verzending"
378
-
379
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
380
- msgid "General Options"
381
- msgstr "Algemene Opties"
382
-
383
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
384
- msgid "Invoice Number Options"
385
- msgstr "Factuurnummer Opties"
386
-
387
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
388
- msgid "Header Options"
389
- msgstr "Kopregel Opties"
390
-
391
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
392
- msgid "Body Options"
393
- msgstr "Body Opties"
394
-
395
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
396
- msgid "Footer Options"
397
- msgstr "Voetregel Opties"
398
-
399
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
400
- msgid "Visible Columns"
401
- msgstr "Zichtbare Kolommen"
402
-
403
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
404
- msgid "These are the general template options."
405
- msgstr "Dit zijn de algemene template opties."
406
-
407
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
408
- msgid "These are the invoice number options."
409
- msgstr "Dit zijn de factuurnummer opties."
410
-
411
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
412
- msgid "The header will be visible on every page. "
413
- msgstr "De kopregel is zichtbaar op iedere pagina."
414
-
415
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
416
- msgid "The footer will be visible on every page."
417
- msgstr "De voetnoot wordt op iedere pagina getoond."
418
-
419
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
420
- msgid ""
421
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
422
- "order payment method."
423
- msgstr ""
424
- "<b>Tip</b>: Gebruik de plaatsvervanger <code>[payment_method]</code> om de "
425
- "betaalmethode weer te geven."
426
-
427
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
428
- msgid "Enable or disable the columns."
429
- msgstr "In- of uitschakelen van de kolommen."
430
-
431
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
432
- msgid "File is invalid and contains either '..' or './'."
433
- msgstr "Bestand is niet valide en bevat ofwel '..' of './'."
434
-
435
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
436
- msgid "File is invalid and contains ':' after the first character."
437
- msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
438
-
439
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
440
- msgid "File should be less then 2MB."
441
- msgstr "Bestand moet minder dan 2MB zijn."
442
-
443
- #: includes/be-woocommerce-pdf-invoices.php:126
444
- #, php-format
445
- msgid ""
446
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
447
- "PDF Invoices</strong></a>."
448
- msgstr ""
449
- "<a href=\"%s\">Configureer uw <strong>WooCommerce PDF Invoices</strong></a>."
450
-
451
- #: includes/be-woocommerce-pdf-invoices.php:136
452
- msgid "Settings"
453
- msgstr "Opties"
454
-
455
- #: includes/be-woocommerce-pdf-invoices.php:137
456
- msgid "Premium"
457
- msgstr "Premium"
458
-
459
- #: includes/be-woocommerce-pdf-invoices.php:182
460
- msgid "Invalid request"
461
- msgstr "Invalide aanroep"
462
-
463
- #: includes/be-woocommerce-pdf-invoices.php:185
464
- msgid "Invalid order ID"
465
- msgstr "Invalid order ID"
466
-
467
- #: includes/be-woocommerce-pdf-invoices.php:191
468
- msgid "Access denied"
469
- msgstr "Toegang geweigerd"
470
-
471
- #: includes/be-woocommerce-pdf-invoices.php:218
472
- msgid "General"
473
- msgstr "Algemeen"
474
-
475
- #: includes/be-woocommerce-pdf-invoices.php:242
476
- msgid "Invoices"
477
- msgstr "Facturen"
478
-
479
- #: includes/be-woocommerce-pdf-invoices.php:281
480
- #, php-format
481
- msgid ""
482
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
483
- "%s★★★★★%s rating. A huge thank you in advance!"
484
- msgstr ""
485
- "Als je tevreden bent met <strong>WooCommerce PDF Invoices</strong> laat dan "
486
- "a.u.b. een %s★★★★★%s beoordeling achter. Alvast bedankt!"
487
-
488
- #: includes/be-woocommerce-pdf-invoices.php:282
489
- #, php-format
490
- msgid "Version %s"
491
- msgstr "Versie %s"
492
-
493
- #: includes/be-woocommerce-pdf-invoices.php:356
494
- msgid "PDF Invoice"
495
- msgstr "PDF Factuur"
496
-
497
- #: includes/be-woocommerce-pdf-invoices.php:382
498
- msgid "Invoiced on:"
499
- msgstr "Gefactureerd op:"
500
-
501
- #: includes/be-woocommerce-pdf-invoices.php:386
502
- msgid "Invoice number:"
503
- msgstr "Factuurnummer:"
504
-
505
- #: includes/be-woocommerce-pdf-invoices.php:424
506
- msgid "View invoice"
507
- msgstr "Toon factuur"
508
-
509
- #: includes/be-woocommerce-pdf-invoices.php:424
510
- msgid "View"
511
- msgstr "Bekijk"
512
-
513
- #: includes/be-woocommerce-pdf-invoices.php:425
514
- msgid "Cancel invoice"
515
- msgstr "Factuur annuleren"
516
-
517
- #: includes/be-woocommerce-pdf-invoices.php:425
518
- msgid "Cancel"
519
- msgstr "Annuleer"
520
-
521
- #: includes/be-woocommerce-pdf-invoices.php:427
522
- msgid "Are you sure to delete the invoice?"
523
- msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
524
-
525
- #: includes/be-woocommerce-pdf-invoices.php:430
526
- msgid "Create invoice"
527
- msgstr "Maak factuur"
528
-
529
- #: includes/be-woocommerce-pdf-invoices.php:430
530
- msgid "Create"
531
- msgstr "Aanmaken"
532
-
533
- #: includes/be-woocommerce-pdf-invoices.php:453
534
- #, php-format
535
- msgid "Invoice %s (PDF)"
536
- msgstr "Factuur %s (PDF)"
537
-
538
- #: includes/be-woocommerce-pdf-invoices.php:563
539
- #, php-format
540
- msgid ""
541
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
542
- "really need your ★★★★★ rating. It will support future development big-time. "
543
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
544
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
545
- "done it!</a>"
546
- msgstr ""
547
- "Je werkt nu al een tijd met <b>WooCommerce PDF Invoices</b>. Om de "
548
- "toekomstige ontwikkeling te bevorderen, vragen wij jouw om ons een ★★★★★ "
549
- "beoordeling te geven. Alvast bedankt! <br /> <a href='%s' "
550
- "target='_blank'>Ja, zal het direct doen!</a> - <a href='%s'>Nee, heb ik al "
551
- "gedaan!</a>"
552
-
553
- #: includes/class-bewpi-invoice.php:48
554
- msgid ""
555
- "Whoops, no template found. Please select a template on the Template settings "
556
- "page first."
557
- msgstr ""
558
- "Oeps, geen template gevonden. Selecteer een template op de Template Opties "
559
- "pagina."
560
-
561
- #: includes/partials/settings-sidebar.php:2
562
- msgid "WooCommerce PDF Invoices Premium"
563
- msgstr "WooCommerce PDF Invoices Premium"
564
-
565
- #: includes/partials/settings-sidebar.php:4
566
- msgid ""
567
- "This plugin offers a premium version which comes with the following features:"
568
- msgstr ""
569
- "Deze plugin heeft ook een betaalde versie beschikbaar en komt met de "
570
- "volgende functies: "
571
-
572
- #: includes/partials/settings-sidebar.php:5
573
- msgid "Bill periodically by generating and sending global invoices."
574
- msgstr ""
575
- "Factureer periodiek door globale facturen te genereren en te verzenden."
576
-
577
- #: includes/partials/settings-sidebar.php:6
578
- msgid "Add additional PDF's to customer invoices."
579
- msgstr "Voeg meerdere PDF's toe aan de factuur."
580
-
581
- #: includes/partials/settings-sidebar.php:7
582
- msgid "Send customer invoices directly to suppliers and others."
583
- msgstr "Verzend klantfacturen direct naar leveranciers en anderen."
584
-
585
- #: includes/partials/settings-sidebar.php:8
586
- #, php-format
587
- msgid ""
588
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
589
- msgstr ""
590
- "Compatibel met de emails van de <a href=\"%s\">WooCommerce Subscriptions</a> "
591
- "plugin"
592
-
593
- #: includes/partials/settings-sidebar.php:10
594
- msgid "Learn more"
595
- msgstr "Leer meer"
596
-
597
- #: includes/partials/settings-sidebar.php:13
598
- msgid "Stay up-to-date"
599
- msgstr "Blijf op de hoogte"
600
-
601
- #: includes/partials/settings-sidebar.php:17
602
- msgid ""
603
- "We're constantly developing new features, stay up-to-date by subscribing to "
604
- "our newsletter."
605
- msgstr ""
606
- "Wij ontwikkelen constant nieuwe functionaliteiten, blijf up-to-date door je "
607
- "in te schrijven op de nieuwsbrief."
608
-
609
- #: includes/partials/settings-sidebar.php:23
610
- msgid "Your email address"
611
- msgstr "Jouw Emailadres"
612
-
613
- #: includes/partials/settings-sidebar.php:29
614
- msgid "Signup"
615
- msgstr "Inschrijven"
616
-
617
- #: includes/partials/settings-sidebar.php:32
618
- msgid "No spam, ever. Unsubscribe at any time"
619
- msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
620
-
621
- #: includes/partials/settings-sidebar.php:41
622
- msgid "About"
623
- msgstr "Over"
624
-
625
- #: includes/partials/settings-sidebar.php:43
626
- msgid ""
627
- "This plugin is an open source project wich aims to fill the invoicing gap of "
628
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
629
- msgstr ""
630
- "Deze plugin is een opensource project met als doel, het facturen gat van "
631
- "WooCommerce op te vullen."
632
-
633
- #: includes/partials/settings-sidebar.php:45
634
- msgid "<b>Version</b>: "
635
- msgstr "<b>Versie</b>:"
636
-
637
- #: includes/partials/settings-sidebar.php:47
638
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
639
- msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
640
-
641
- #: includes/partials/settings-sidebar.php:50
642
- msgid "Support"
643
- msgstr "Ondersteuning"
644
-
645
- #: includes/partials/settings-sidebar.php:52
646
- msgid ""
647
- "We will never ask for donations, but to garantee future development, we do "
648
- "need your support. Please show us your appreciation by leaving a <a href="
649
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
650
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
651
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
652
- msgstr ""
653
- "Wij zullen nooit om donaties vragen, maar om de toekomstige ontwikkeling te "
654
- "kunnen garanderen, hebben wij uw support nodig. Toon ons uw dank door een <a "
655
- "href=\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-"
656
- "invoices?rate=5#postform\">★★★★★</a> beoordeling achter te laten en stem op "
657
- "<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
658
- "a>."
659
-
660
- #: includes/partials/settings-sidebar.php:72
661
- msgid ""
662
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
663
- msgstr ""
664
- "Bekijk nu deze geweldige gratis WooCommerce PDF Invoices plugin voor "
665
- "WordPress!"
666
-
667
- #: includes/partials/settings-sidebar.php:77
668
- msgid "Need Help?"
669
- msgstr "Hulp Nodig?"
670
-
671
- #: includes/partials/settings-sidebar.php:79
672
- msgid "Frequently Asked Questions"
673
- msgstr "Veel gestelde vragen"
674
-
675
- #: includes/partials/settings-sidebar.php:80
676
- msgid "Support forum"
677
- msgstr "Support Forum"
678
-
679
- #: includes/partials/settings-sidebar.php:81
680
- msgid "Request a feature"
681
- msgstr "Verzoek een nieuwe functionaliteit"
682
-
683
- #: includes/partials/settings-sidebar.php:82
684
- msgid "Email us"
685
- msgstr "Email ons"
686
-
687
- #: includes/templates/invoices/global/micro/body.php:5
688
- #: includes/templates/invoices/simple/micro/body.php:5
689
- msgid "Invoice to"
690
- msgstr "Facturatie aan"
691
-
692
- #: includes/templates/invoices/global/micro/body.php:7
693
- #: includes/templates/invoices/simple/micro/body.php:7
694
- #, php-format
695
- msgid "Phone: %s"
696
- msgstr "Tel: %s"
697
-
698
- #: includes/templates/invoices/global/micro/body.php:11
699
- #: includes/templates/invoices/simple/micro/body.php:11
700
- msgid "Ship to"
701
- msgstr "Verzend naar"
702
-
703
- #: includes/templates/invoices/global/micro/body.php:22
704
- msgid "Global Invoice"
705
- msgstr "Globale Factuur"
706
-
707
- #: includes/templates/invoices/global/micro/body.php:40
708
- #: includes/templates/invoices/simple/micro/body.php:44
709
- msgid "Description"
710
- msgstr "Beschrijving"
711
-
712
- #: includes/templates/invoices/global/micro/body.php:48
713
- #: includes/templates/invoices/simple/micro/body.php:52
714
- msgid "Cost"
715
- msgstr "Kosten"
716
-
717
- #: includes/templates/invoices/global/micro/body.php:50
718
- #: includes/templates/invoices/simple/micro/body.php:54
719
- msgid "Qty"
720
- msgstr "Aantal"
721
-
722
- #: includes/templates/invoices/global/micro/body.php:56
723
- #: includes/templates/invoices/simple/micro/body.php:60
724
- msgid "VAT"
725
- msgstr "BTW"
726
-
727
- #: includes/templates/invoices/global/micro/body.php:67
728
- #: includes/templates/invoices/global/micro/body.php:280
729
- #: includes/templates/invoices/simple/micro/body.php:71
730
- #: includes/templates/invoices/simple/micro/body.php:145
731
- msgid "Total"
732
- msgstr "Totaal"
733
-
734
- #: includes/templates/invoices/global/micro/body.php:75
735
- #, php-format
736
- msgid "Order #%d - %s"
737
- msgstr "Bestelling #%d - %s"
738
-
739
- #: includes/templates/invoices/global/micro/body.php:255
740
- #: includes/templates/invoices/simple/micro/body.php:120
741
- msgid "Fee"
742
- msgstr "Handelingskosten"
743
-
744
- #: includes/templates/invoices/global/micro/body.php:287
745
- #: includes/templates/invoices/simple/micro/body.php:152
746
- msgid "Refunded"
747
- msgstr "Terugbetaald"
748
-
749
- #: includes/templates/invoices/global/micro/footer.php:15
750
- #: includes/templates/invoices/simple/micro/footer.php:18
751
- #, php-format
752
- msgid "%s of %s"
753
- msgstr "%s van %s"
754
-
755
- #: includes/templates/invoices/simple/micro/body.php:22
756
- msgid "Invoice"
757
- msgstr "Factuur"
758
-
759
- #: includes/templates/invoices/simple/micro/body.php:25
760
- #, php-format
761
- msgid "Order Number: %s"
762
- msgstr "Bestellingsnummer: %s"
763
-
764
- #: includes/templates/invoices/simple/micro/body.php:26
765
- #, php-format
766
- msgid "Order Date: %s"
767
- msgstr "Datum bestelling: %s"
768
-
769
- #: includes/templates/invoices/simple/micro/body.php:289
770
- #: includes/templates/invoices/simple/micro/body.php:294
771
- msgid "Customer note"
772
- msgstr "Opmerking klant"
773
-
774
- #~ msgid ""
775
- #~ "<b>Note</b>: If your logo doesn't show up, try to enable "
776
- #~ "<code>allow_url_fopen</code>."
777
- #~ msgstr ""
778
- #~ "<b>Let wel</b>: Als het logo niet wordt getoond, probeer dan "
779
- #~ "<code>allow_url_fopen</code> aan te zetten."
780
-
781
- #~ msgid "Feel free to use "
782
- #~ msgstr "Gebruik"
783
-
784
- #~ msgid "Intro text"
785
- #~ msgstr "Introtekst"
786
-
787
- #~ msgid ""
788
- #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
789
- #~ "%s Only available with sequential numbering type and you need to check "
790
- #~ "the checkbox to actually reset the value."
791
- #~ msgstr ""
792
- #~ "Reset de factuurteller en start met het volgende factuurnummer. %s %sLet "
793
- #~ "wel:%s Alleen beschikbaar bij sequentiële nummering type en vergeet niet "
794
- #~ "het selectievak te selecteren om de waarde ook werkelijk te resetten."
795
-
796
- #~ msgid ""
797
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
798
- #~ "is required and slashes aren't supported."
799
- #~ msgstr ""
800
- #~ "Toegestane HTML tags zijn %s %s %s %s %s en %s. %s %sLet wel:%s %s is "
801
- #~ "verplicht en schuine strepen worden niet ondersteund."
802
-
803
- #~ msgid "Tax"
804
- #~ msgstr "BTW"
805
-
806
- #~ msgid "The footer will be visible on every page. "
807
- #~ msgstr "De voetregel is zichtbaar op iedere pagina."
808
-
809
- #~ msgid "Invoicing on Steroids"
810
- #~ msgstr "Facturen op Steroïde"
811
-
812
- #~ msgid ""
813
- #~ "We're working on a more powerful version of this invoicing plugin. Be the "
814
- #~ "first to know when we're ready to launch and receive a unique one-time "
815
- #~ "discount!"
816
- #~ msgstr ""
817
- #~ "Wij werken aan krachtige versie van deze facturen plugin. Wees de eerste "
818
- #~ "die meer te weten krijgt over de lancering en verkrijg een unieke "
819
- #~ "eenmalige korting!"
820
-
821
- #~ msgid "%sPayment%s via"
822
- #~ msgstr "%sBetaling%s via"
823
-
824
- #~ msgid ""
825
- #~ "Setup up your <strong>WooCommerce PDF Invoices</strong> on the <a href="
826
- #~ "\"%s\"><i>SETTINGS PAGE</i></a>."
827
- #~ msgstr ""
828
- #~ "Configureer <strong>WooCommerce PDF Invoices</strong> en ga naar de <a "
829
- #~ "href=\"%s\"><i>OPTIES PAGINA</i></a>."
830
-
831
- #~ msgid ""
832
- #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
833
- #~ "is required."
834
- #~ msgstr ""
835
- #~ "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s %s en %s te "
836
- #~ "gebruiken. %s %s Let wel: %s %s is vereist."
837
-
838
- #~ msgid "Order Number %s"
839
- #~ msgstr "Bestelnummer %s"
840
-
841
- #~ msgid "Order Date %s"
842
- #~ msgstr "Besteldatum: %s"
843
-
844
- #~ msgid "Download invoice (PDF)"
845
- #~ msgstr "Download factuur (PDF)"
846
-
847
- #~ msgid ""
848
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
849
- #~ "required."
850
- #~ msgstr ""
851
- #~ "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s en %s te "
852
- #~ "gebruiken. %s % sLet wel: %s %s is vereist."
853
-
854
- #~ msgid "VAT %s"
855
- #~ msgstr "BTW %s"
856
-
857
- #~ msgid "General Settings"
858
- #~ msgstr "Algemene Opties"
859
-
860
- #~ msgid ""
861
- #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
862
- #~ msgstr "Verzend automatisch naar Google Drive, Egnyte, Dropbox of OneDrive"
863
-
864
- #~ msgid "For bookkeeping purposes."
865
- #~ msgstr "Voor boekhoudkundige doeleinden."
866
-
867
- #~ msgid "Signup at %s and enter your account below."
868
- #~ msgstr "Meld je aan op %s en geef je account onderstaand in."
869
-
870
- #~ msgid "Enter your %s account."
871
- #~ msgstr "Het %s account."
872
-
873
- #~ msgid "Invalid type of Email."
874
- #~ msgstr "Ongeldig type Email."
875
-
876
- #~ msgid "Please don't try to change the values."
877
- #~ msgstr "Probeer de waardes niet te wijzigen a.u.b."
878
-
879
- #~ msgid "Invalid Email address."
880
- #~ msgstr "Ongeldig Emailadres."
881
-
882
- #~ msgid "Allowed tags: "
883
- #~ msgstr "Toegestane tags: "
884
-
885
- #~ msgid "Template Settings"
886
- #~ msgstr "Template Opties"
887
-
888
- #~ msgid "Invoice number type"
889
- #~ msgstr "Type factuurnummer"
890
-
891
- #~ msgid "Next invoice number"
892
- #~ msgstr "Eerstvolgende factuurnummer"
893
-
894
- #~ msgid "Number of digits"
895
- #~ msgstr "Aantal cijfers"
896
-
897
- #~ msgid "Invoice number prefix"
898
- #~ msgstr "Factuurnummer voorvoegsel"
899
-
900
- #~ msgid "Invoice number suffix"
901
- #~ msgstr "Factuurnummer achtervoegsel"
902
-
903
- #~ msgid "Invoice number format"
904
- #~ msgstr "Factuurnummer format"
905
-
906
- #~ msgid "Reset on 1st January"
907
- #~ msgstr "Reset op 1 januari"
908
-
909
- #~ msgid "Invoice date format"
910
- #~ msgstr "Factuur datumnotatie"
911
-
912
- #~ msgid "Order date format"
913
- #~ msgstr "Notatie bestellingsdatum"
914
-
915
- #~ msgid "Show SKU"
916
- #~ msgstr "Toon SKU"
917
-
918
- #~ msgid "Show discount"
919
- #~ msgstr "Toon korting"
920
-
921
- #~ msgid "Show subtotal"
922
- #~ msgstr "Toon subtotaal"
923
-
924
- #~ msgid "Show tax"
925
- #~ msgstr "Toon BTW"
926
-
927
- #~ msgid "Show shipping"
928
- #~ msgstr "Toon verzendkosten"
929
-
930
- #~ msgid "Color theme of the invoice."
931
- #~ msgstr "Kleurthema van de factuur."
932
-
933
- #~ msgid ""
934
- #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
935
- #~ "png."
936
- #~ msgstr ""
937
- #~ "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
938
- #~ "png is."
939
-
940
- #~ msgid "Invoice number to use for next invoice."
941
- #~ msgstr "Factuurnummer te gebruiken voor de volgende factuur."
942
-
943
- #~ msgid "Number of zero digits."
944
- #~ msgstr "Aantal nullen."
945
-
946
- #~ msgid "Prefix text for the invoice number. Not required."
947
- #~ msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
948
-
949
- #~ msgid "Suffix text for the invoice number. Not required."
950
- #~ msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
951
-
952
- #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
953
- #~ msgstr "Beschikbare aanduidingen zijn %s %s %s %s of %s. %s is verplicht."
954
-
955
- #~ msgid "Reset on the first of January."
956
- #~ msgstr "Reset op de eerste van januari."
957
-
958
- #~ msgid "%sFormat%s of the date. Examples: %s or %s."
959
- #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
960
-
961
- #~ msgid "Order date %sformat%s. Examples: %s or %s."
962
- #~ msgstr "Notatie %sbestellingsdatum%s. Voorbeelden: %s of %s."
963
-
964
- #~ msgid "Invalid template."
965
- #~ msgstr "Ongeldige template."
966
-
967
- #~ msgid "Invalid color theme code."
968
- #~ msgstr "Ongeldige kleurcode."
969
-
970
- #~ msgid "Invalid company name."
971
- #~ msgstr "Ongeldige bedsrijfsnaam."
972
-
973
- #~ msgid "Invalid input into one of the textarea's."
974
- #~ msgstr "Ongeldige invoer in een van de textarea's."
975
-
976
- #~ msgid "Invalid type of invoice number."
977
- #~ msgstr "Ongeldig type factuurnummer."
978
-
979
- #~ msgid "Invalid (next) invoice number."
980
- #~ msgstr "Ongeldig (eerstvolgend) factuurnummer."
981
-
982
- #~ msgid "Invalid invoice number digits."
983
- #~ msgstr "Ongeldige factuurnummer cijfers."
984
-
985
- #~ msgid "The [number] placeholder is required as invoice number format."
986
- #~ msgstr "De aanduiding [number] is vereist."
987
-
988
- #~ msgid "Invalid invoice number format."
989
- #~ msgstr "Ongeldig factuurnummer format."
990
-
991
- #~ msgid "Invalid date format."
992
- #~ msgstr "Ongeldige datumnotatie."
993
-
994
- #~ msgid "Please upload image with extension jpg, jpeg or png."
995
- #~ msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
996
-
997
- #~ msgid "Quantity"
998
- #~ msgstr "Aantal"
999
-
1000
- #~ msgid "Unit price"
1001
- #~ msgstr "Prijs per stuk"
1002
-
1003
- #~ msgid ""
1004
- #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1005
- #~ msgstr ""
1006
- #~ "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
1007
- #~ "verplicht."
1008
-
1009
- #~ msgid "Signup at %s and enter your account beyond."
1010
- #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
1011
-
1012
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1013
- #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
1014
-
1015
- #~ msgid "Show invoice"
1016
- #~ msgstr "Toon factuur"
1017
-
1018
- #~ msgid "%sFormat%s of the date."
1019
- #~ msgstr "%sFormat%s van de datum."
1020
-
1021
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1022
- #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
1023
-
1024
- #~ msgid "Choose the color witch fits your company."
1025
- #~ msgstr "Kies uw bedrijfskleur."
1026
-
1027
- #~ msgid ""
1028
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1029
- #~ "[number] as placeholders."
1030
- #~ msgstr ""
1031
- #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
1032
- #~ "[number] als aanduidingen."
1033
-
1034
- #~ msgid "Text to greet, congratulate or thank the customer. "
1035
- #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
1036
-
1037
- #~ msgid "Some text"
1038
- #~ msgstr "De vertaling werkt!!!!"
1039
-
1040
- #~ msgid "Text to greet, congratulate or thank the customer."
1041
- #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
1042
-
1043
- #~ msgid "Start all over on the first of January."
1044
- #~ msgstr "Opnieuw beginnen op de eerste van januari."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
5
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: nl_NL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/abstracts/abstract-bewpi-document.php:64
23
+ msgid "Paid"
24
+ msgstr "Betaald"
25
+
26
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
27
+ #, php-format
28
+ msgid ""
29
+ "Could not create invoice. In order to reset invoice number with %d, delete "
30
+ "all invoices with invoice number %s and greater."
31
+ msgstr ""
32
+ "Kon de factuur niet maken. Om het factuurnummer met %d te resetten, dienen "
33
+ "alle facturen met factuurnummers groter dan %s eerst te worden verwijderd."
34
+
35
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
36
+ #, php-format
37
+ msgid ""
38
+ "Could not create invoice. Invoice with invoice number %s already exists. "
39
+ "First delete invoice and try again."
40
+ msgstr ""
41
+ "Kon de factuur niet maken. De factuur met factuurnummer %s bestaat reeds. "
42
+ "Verwijder de factuur en probeer opnieuw."
43
+
44
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
45
+ #, php-format
46
+ msgid ""
47
+ "Invoice with invoice number %s not found. First create invoice and try again."
48
+ msgstr ""
49
+ "Factuur met factuurnummer %s niet gevonden. Maak eerst de factuur en probeer "
50
+ "opnieuw."
51
+
52
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
53
+ #, php-format
54
+ msgid "VAT Number: %s"
55
+ msgstr "BTW nummer: %s"
56
+
57
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
58
+ #, php-format
59
+ msgid "Purchase Order Number: %s"
60
+ msgstr "Aankoopnummer: %s"
61
+
62
+ #: includes/abstracts/abstract-bewpi-setting.php:98
63
+ msgid "Allowed HTML tags: "
64
+ msgstr "Toegestane HTML attributen:"
65
+
66
+ #: includes/abstracts/abstract-bewpi-setting.php:173
67
+ msgid "Remove logo"
68
+ msgstr "Verwijder logo"
69
+
70
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
71
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
72
+ msgid "Attach to Email"
73
+ msgstr "Voeg toe aan Email"
74
+
75
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
76
+ msgid "Processing order"
77
+ msgstr "Bestelling wordt verwerkt"
78
+
79
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
80
+ msgid "Completed order"
81
+ msgstr "Bestelling voltooid"
82
+
83
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
84
+ msgid "Customer invoice"
85
+ msgstr "Klant factuur"
86
+
87
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
88
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
89
+ msgid "Do not attach"
90
+ msgstr "Niet bijvoegen"
91
+
92
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
93
+ msgid "Attach to New order Email"
94
+ msgstr "Voeg toe aan New order Email"
95
+
96
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
97
+ msgid "View PDF"
98
+ msgstr "Bekijk PDF"
99
+
100
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
101
+ msgid "Download"
102
+ msgstr "Download"
103
+
104
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
105
+ msgid "Open in new browser tab/window"
106
+ msgstr "Openen in nieuw browser tabblad/venster"
107
+
108
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
109
+ msgid "Enable download from account"
110
+ msgstr "Inschakelen download van Mijn Account pagina"
111
+
112
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
113
+ msgid ""
114
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
115
+ "page.</div>"
116
+ msgstr ""
117
+ "<br/><div class=\"bewpi-notes\">Laat klanten haar facturen downloaden van "
118
+ "Mijn Account pagina.</div>"
119
+
120
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
121
+ msgid "Enable Email It In"
122
+ msgstr "Inschakelen Email It In"
123
+
124
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
125
+ msgid "Email It In account"
126
+ msgstr "Email It In account"
127
+
128
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
129
+ #, php-format
130
+ msgid "Get your account from your Email It In %suser account%s."
131
+ msgstr "Verkrijg uw account van uw Email It In %sgebruikersaccount%s."
132
+
133
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
134
+ msgid "Enable mPDF debugging"
135
+ msgstr ""
136
+
137
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
138
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
139
+ msgstr ""
140
+
141
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
142
+ msgid "Email Options"
143
+ msgstr "Email Opties"
144
+
145
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
146
+ msgid "Download Options"
147
+ msgstr "Download Opties"
148
+
149
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
150
+ msgid "Cloud Storage Options"
151
+ msgstr "Online Opslag Opties"
152
+
153
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
154
+ msgid "Debug Options"
155
+ msgstr ""
156
+
157
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
158
+ #, php-format
159
+ msgid ""
160
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
161
+ "Egnyte and enter your account below."
162
+ msgstr ""
163
+ "Meld je aan op %s en verzend facturen naar je Dropbox, OneDrive, Google "
164
+ "Drive of Egnyte en voer je account onderstaand in."
165
+
166
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
167
+ #: includes/be-woocommerce-pdf-invoices.php:219
168
+ msgid "Template"
169
+ msgstr "Template"
170
+
171
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
172
+ msgid "Color theme"
173
+ msgstr "Kleur thema"
174
+
175
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
176
+ msgid "Date format"
177
+ msgstr "Datum format"
178
+
179
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
180
+ #, php-format
181
+ msgid "%sFormat%s of invoice date and order date."
182
+ msgstr "%sNotatie%s van factuurdatum en orderdatum."
183
+
184
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
185
+ msgid "Display prices including tax"
186
+ msgstr "Toon prijzen inclusief BTW"
187
+
188
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
189
+ msgid ""
190
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
191
+ "still be excluding tax, so disable it within the visible columns section."
192
+ msgstr ""
193
+ "Lijn items totalen zijn inclusief BTW. <br/><b>Let wel</ b>: Subtotaal "
194
+ "blijft exclusief BTW."
195
+
196
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
197
+ msgid "Shipping taxable"
198
+ msgstr "Verzendkosten belastbaar"
199
+
200
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
201
+ msgid "Enable to display subtotal including shipping."
202
+ msgstr "Toon subtotaal inclusief verzendkosten."
203
+
204
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
205
+ msgid "Mark invoice as paid"
206
+ msgstr "Markeer factuur als betaald"
207
+
208
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
209
+ msgid "Invoice will be watermarked when order has been paid."
210
+ msgstr "Factuur wordt gewatermerkt wanneer de bestelling is betaald."
211
+
212
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
213
+ msgid "Company name"
214
+ msgstr "Bedrijfsnaam"
215
+
216
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
217
+ msgid "Company logo"
218
+ msgstr "Bedrijfslogo"
219
+
220
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
221
+ msgid "Company address"
222
+ msgstr "Bedrijfsadres"
223
+
224
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
225
+ msgid "Displayed in upper-right corner near logo."
226
+ msgstr "Wordt naast het logo weergegeven (rechts-boven in de hoek)."
227
+
228
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
229
+ msgid "Company details"
230
+ msgstr "Algemene bedrijfsgegevens"
231
+
232
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
233
+ msgid "Displayed below company address."
234
+ msgstr "Wordt onder het bedrijfsadres weergegeven."
235
+
236
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
237
+ msgid "Thank you text"
238
+ msgstr "Bedankt tekst"
239
+
240
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
241
+ msgid "Displayed in big colored bar directly after invoice total."
242
+ msgstr "Wordt in de grote gekleurde balk direct na het totaal weergegeven."
243
+
244
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
245
+ msgid "Thank you for your purchase!"
246
+ msgstr "Bedankt voor uw aankoop!"
247
+
248
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
249
+ msgid "Show customer notes"
250
+ msgstr "Toon notities klant"
251
+
252
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
253
+ msgid "Terms & conditions, policies etc."
254
+ msgstr "Algemene voorwaarden"
255
+
256
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
257
+ #, php-format
258
+ msgid ""
259
+ "Displayed below customer notes and above footer. Want to attach additional "
260
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
261
+ msgstr ""
262
+ "Wordt tussen de klantnotities en de voetnoot weergegeven. Voeg meerdere "
263
+ "pagina's aan de factuur toe met de <a href=\"%s\">Premium</a> versie."
264
+
265
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
266
+ msgid "Items will be shipped within 2 days."
267
+ msgstr "Producten worden binnen twee dagen verzonden."
268
+
269
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
270
+ msgid "Left footer column."
271
+ msgstr "Linker voetnoot kolom."
272
+
273
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
274
+ #, php-format
275
+ msgid "<b>Payment method</b> %s"
276
+ msgstr "<b>Betaalmethode</b> %s"
277
+
278
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
279
+ msgid "Right footer column."
280
+ msgstr "Rechter voetboot kolom."
281
+
282
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
283
+ msgid "Leave empty to show page numbering."
284
+ msgstr "Laat leeg om paginanummering te tonen."
285
+
286
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
287
+ msgid "Type"
288
+ msgstr "Type"
289
+
290
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
291
+ msgid "WooCommerce order number"
292
+ msgstr "WooCommerce ordernummer"
293
+
294
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
295
+ msgid "Sequential number"
296
+ msgstr "Volgnummer"
297
+
298
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
299
+ msgid "Reset invoice counter"
300
+ msgstr "Reset factuur teller"
301
+
302
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
303
+ msgid "Next"
304
+ msgstr "Volgende"
305
+
306
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
307
+ msgid ""
308
+ "Reset the invoice counter and start counting from given invoice number.<br/"
309
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
310
+ "editable by selecting checkbox. Next number needs to be lower then highest "
311
+ "existing invoice number or delete invoices first."
312
+ msgstr ""
313
+ "Reset het factuurnummer en start opnieuw met tellen<br/><b>Let wel:</b> "
314
+ "Selecteer vinkje om de waarde daadwerkelijk te veranderen. Deze functie is "
315
+ "alleen mogelijk met sequentiële nummering. Het opvolgende nummer behoort "
316
+ "lager te zijn dan het hoogst bestaande nummer of verwijder eerst de factuur."
317
+
318
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
319
+ msgid "Digits"
320
+ msgstr "Aantal nullen."
321
+
322
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
323
+ msgid "[prefix]"
324
+ msgstr "[prefix]"
325
+
326
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
327
+ msgid "[suffix]"
328
+ msgstr "[suffix]"
329
+
330
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
331
+ msgid "Format"
332
+ msgstr "Notatie"
333
+
334
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
335
+ #, php-format
336
+ msgid ""
337
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
338
+ "slashes aren't supported."
339
+ msgstr ""
340
+ "Toegestane attributen: %s %s %s %s %s %s.<br/>%sLet wel:%s %s is verplicht "
341
+ "en schuine streep is niet toegestaan."
342
+
343
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
344
+ msgid "Reset on 1st of january"
345
+ msgstr "Reset op 1 januari"
346
+
347
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
348
+ #: includes/templates/invoices/global/micro/body.php:44
349
+ #: includes/templates/invoices/simple/micro/body.php:48
350
+ msgid "SKU"
351
+ msgstr "Productcode"
352
+
353
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
354
+ #: includes/templates/invoices/global/micro/body.php:236
355
+ #: includes/templates/invoices/simple/micro/body.php:101
356
+ msgid "Subtotal"
357
+ msgstr "Subtotaal"
358
+
359
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
360
+ msgid "Tax (item)"
361
+ msgstr "BTW (artikel)"
362
+
363
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
364
+ msgid "Tax (total)"
365
+ msgstr "BTW (totaal)"
366
+
367
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
368
+ #: includes/templates/invoices/global/micro/body.php:220
369
+ #: includes/templates/invoices/simple/micro/body.php:85
370
+ msgid "Discount"
371
+ msgstr "Korting"
372
+
373
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
374
+ #: includes/templates/invoices/global/micro/body.php:228
375
+ #: includes/templates/invoices/global/micro/body.php:244
376
+ #: includes/templates/invoices/simple/micro/body.php:93
377
+ #: includes/templates/invoices/simple/micro/body.php:109
378
+ msgid "Shipping"
379
+ msgstr "Verzending"
380
+
381
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
382
+ msgid "General Options"
383
+ msgstr "Algemene Opties"
384
+
385
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
386
+ msgid "Invoice Number Options"
387
+ msgstr "Factuurnummer Opties"
388
+
389
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
390
+ msgid "Header Options"
391
+ msgstr "Kopregel Opties"
392
+
393
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
394
+ msgid "Body Options"
395
+ msgstr "Body Opties"
396
+
397
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
398
+ msgid "Footer Options"
399
+ msgstr "Voetregel Opties"
400
+
401
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
402
+ msgid "Visible Columns"
403
+ msgstr "Zichtbare Kolommen"
404
+
405
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
406
+ msgid "These are the general template options."
407
+ msgstr "Dit zijn de algemene template opties."
408
+
409
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
410
+ msgid "These are the invoice number options."
411
+ msgstr "Dit zijn de factuurnummer opties."
412
+
413
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
414
+ msgid "The header will be visible on every page. "
415
+ msgstr "De kopregel is zichtbaar op iedere pagina."
416
+
417
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
418
+ msgid "The footer will be visible on every page."
419
+ msgstr "De voetnoot wordt op iedere pagina getoond."
420
+
421
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
422
+ msgid ""
423
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
424
+ "order payment method."
425
+ msgstr ""
426
+ "<b>Tip</b>: Gebruik de plaatsvervanger <code>[payment_method]</code> om de "
427
+ "betaalmethode weer te geven."
428
+
429
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
430
+ msgid "Enable or disable the columns."
431
+ msgstr "In- of uitschakelen van de kolommen."
432
+
433
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
434
+ msgid "File is invalid and contains either '..' or './'."
435
+ msgstr "Bestand is niet valide en bevat ofwel '..' of './'."
436
+
437
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
438
+ msgid "File is invalid and contains ':' after the first character."
439
+ msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
440
+
441
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
442
+ msgid "File should be less then 2MB."
443
+ msgstr "Bestand moet minder dan 2MB zijn."
444
+
445
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
446
+ msgid "Purchase email"
447
+ msgstr ""
448
+
449
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
450
+ msgid ""
451
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
452
+ "\">wcpdfinvoices.com</a>."
453
+ msgstr ""
454
+
455
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
456
+ msgid "License"
457
+ msgstr "Licentie"
458
+
459
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
460
+ msgid ""
461
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
462
+ "\">wcpdfinvoices.com</a> to receive updates."
463
+ msgstr ""
464
+
465
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
466
+ msgid "Processing Renewal Order"
467
+ msgstr ""
468
+
469
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
470
+ msgid "Completed Renewal Order"
471
+ msgstr ""
472
+
473
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
474
+ msgid "Customer Renewal Invoice"
475
+ msgstr ""
476
+
477
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
478
+ msgid "Attach to New Renewal Order Email"
479
+ msgstr ""
480
+
481
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
482
+ msgid "PDF attachment"
483
+ msgstr ""
484
+
485
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
486
+ msgid "Add for example a PDF with your terms & conditions."
487
+ msgstr ""
488
+
489
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
490
+ msgid "Suppliers"
491
+ msgstr ""
492
+
493
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
494
+ msgid ""
495
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
496
+ "adding there Email It In email addresses. Email addresses need to be "
497
+ "seperated by comma's."
498
+ msgstr ""
499
+
500
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
501
+ msgid ""
502
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
503
+ "generate a global invoice from there account</div>"
504
+ msgstr ""
505
+
506
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
507
+ msgid "Customer generation period"
508
+ msgstr ""
509
+
510
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
511
+ msgid ""
512
+ "Should your customers have the ability to generate a global invoice by month "
513
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
514
+ msgstr ""
515
+
516
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
517
+ msgid "Month"
518
+ msgstr ""
519
+
520
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
521
+ msgid "Year"
522
+ msgstr ""
523
+
524
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
525
+ msgid "Send to your Cloud Storage"
526
+ msgstr ""
527
+
528
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
529
+ msgid "Email to customer"
530
+ msgstr ""
531
+
532
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
533
+ msgid "Email to supplier(s)"
534
+ msgstr ""
535
+
536
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
537
+ msgid "Email subject"
538
+ msgstr ""
539
+
540
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
541
+ msgid "Subject for the global invoice email."
542
+ msgstr ""
543
+
544
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
545
+ msgid "Email message"
546
+ msgstr ""
547
+
548
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
549
+ msgid "Message for the global invoice email."
550
+ msgstr ""
551
+
552
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
553
+ msgid "Premium Options"
554
+ msgstr ""
555
+
556
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
557
+ msgid "Woocommerce Subscriptions Email Options"
558
+ msgstr ""
559
+
560
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
561
+ msgid "Attachment Options"
562
+ msgstr ""
563
+
564
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
565
+ msgid "Supplier Options"
566
+ msgstr ""
567
+
568
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
569
+ msgid "Global Invoice Options"
570
+ msgstr ""
571
+
572
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
573
+ msgid ""
574
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
575
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
576
+ "should be activated in order to work."
577
+ msgstr ""
578
+
579
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
580
+ msgid "Attach a PDF to the invoice."
581
+ msgstr ""
582
+
583
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
584
+ msgid "Send customer invoice automatically to your supplier(s)."
585
+ msgstr ""
586
+
587
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
588
+ msgid ""
589
+ "Generate global invoices on Orders page by selecting multiple orders and "
590
+ "applying action or let customers generate periodically from My Account page."
591
+ msgstr ""
592
+
593
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
594
+ msgid "File to large."
595
+ msgstr ""
596
+
597
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
598
+ msgid "Only PDF files are allowed."
599
+ msgstr ""
600
+
601
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
602
+ msgid "Remove"
603
+ msgstr ""
604
+
605
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
606
+ msgid "Choose"
607
+ msgstr ""
608
+
609
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
610
+ msgid "Active"
611
+ msgstr ""
612
+
613
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
614
+ msgid "Inactive"
615
+ msgstr ""
616
+
617
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
618
+ #: includes/be-woocommerce-pdf-invoices.php:182
619
+ msgid "Invalid request"
620
+ msgstr "Invalide aanroep"
621
+
622
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
623
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
624
+ msgid "Something went wrong."
625
+ msgstr ""
626
+
627
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
628
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
629
+ msgid "No orders found."
630
+ msgstr ""
631
+
632
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
633
+ #: includes/be-woocommerce-pdf-invoices.php:136
634
+ msgid "Settings"
635
+ msgstr "Opties"
636
+
637
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
638
+ #: includes/partials/settings-sidebar.php:50
639
+ msgid "Support"
640
+ msgstr "Ondersteuning"
641
+
642
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
643
+ #, php-format
644
+ msgid ""
645
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
646
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
647
+ "the free version (%s+) and try again.</p>"
648
+ msgstr ""
649
+
650
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
651
+ #: includes/be-woocommerce-pdf-invoices.php:137
652
+ msgid "Premium"
653
+ msgstr "Premium"
654
+
655
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
656
+ msgid "Generate global invoice"
657
+ msgstr "Genereer globale factuur"
658
+
659
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
660
+ msgid "Please select more then one order."
661
+ msgstr ""
662
+
663
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
664
+ msgid "Global invoice successfully generated! "
665
+ msgstr ""
666
+
667
+ #: includes/be-woocommerce-pdf-invoices.php:126
668
+ #, php-format
669
+ msgid ""
670
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
671
+ "PDF Invoices</strong></a>."
672
+ msgstr ""
673
+ "<a href=\"%s\">Configureer uw <strong>WooCommerce PDF Invoices</strong></a>."
674
+
675
+ #: includes/be-woocommerce-pdf-invoices.php:185
676
+ msgid "Invalid order ID"
677
+ msgstr "Invalid order ID"
678
+
679
+ #: includes/be-woocommerce-pdf-invoices.php:191
680
+ msgid "Access denied"
681
+ msgstr "Toegang geweigerd"
682
+
683
+ #: includes/be-woocommerce-pdf-invoices.php:218
684
+ msgid "General"
685
+ msgstr "Algemeen"
686
+
687
+ #: includes/be-woocommerce-pdf-invoices.php:251
688
+ msgid "Invoices"
689
+ msgstr "Facturen"
690
+
691
+ #: includes/be-woocommerce-pdf-invoices.php:294
692
+ #, php-format
693
+ msgid ""
694
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
695
+ "%s★★★★★%s rating. A huge thank you in advance!"
696
+ msgstr ""
697
+ "Als je tevreden bent met <strong>WooCommerce PDF Invoices</strong> laat dan "
698
+ "a.u.b. een %s★★★★★%s beoordeling achter. Alvast bedankt!"
699
+
700
+ #: includes/be-woocommerce-pdf-invoices.php:295
701
+ #, php-format
702
+ msgid "Version %s"
703
+ msgstr "Versie %s"
704
+
705
+ #: includes/be-woocommerce-pdf-invoices.php:369
706
+ msgid "PDF Invoice"
707
+ msgstr "PDF Factuur"
708
+
709
+ #: includes/be-woocommerce-pdf-invoices.php:395
710
+ msgid "Invoiced on:"
711
+ msgstr "Gefactureerd op:"
712
+
713
+ #: includes/be-woocommerce-pdf-invoices.php:399
714
+ msgid "Invoice number:"
715
+ msgstr "Factuurnummer:"
716
+
717
+ #: includes/be-woocommerce-pdf-invoices.php:438
718
+ msgid "View invoice"
719
+ msgstr "Toon factuur"
720
+
721
+ #: includes/be-woocommerce-pdf-invoices.php:438
722
+ msgid "View"
723
+ msgstr "Bekijk"
724
+
725
+ #: includes/be-woocommerce-pdf-invoices.php:439
726
+ msgid "Cancel invoice"
727
+ msgstr "Factuur annuleren"
728
+
729
+ #: includes/be-woocommerce-pdf-invoices.php:439
730
+ msgid "Cancel"
731
+ msgstr "Annuleer"
732
+
733
+ #: includes/be-woocommerce-pdf-invoices.php:441
734
+ msgid "Are you sure to delete the invoice?"
735
+ msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
736
+
737
+ #: includes/be-woocommerce-pdf-invoices.php:444
738
+ msgid "Create invoice"
739
+ msgstr "Maak factuur"
740
+
741
+ #: includes/be-woocommerce-pdf-invoices.php:444
742
+ msgid "Create"
743
+ msgstr "Aanmaken"
744
+
745
+ #: includes/be-woocommerce-pdf-invoices.php:467
746
+ #, php-format
747
+ msgid "Invoice %s (PDF)"
748
+ msgstr "Factuur %s (PDF)"
749
+
750
+ #: includes/be-woocommerce-pdf-invoices.php:577
751
+ #, php-format
752
+ msgid ""
753
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
754
+ "really need your ★★★★★ rating. It will support future development big-time. "
755
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
756
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
757
+ "done it!</a>"
758
+ msgstr ""
759
+ "Je werkt nu al een tijd met <b>WooCommerce PDF Invoices</b>. Om de "
760
+ "toekomstige ontwikkeling te bevorderen, vragen wij jouw om ons een ★★★★★ "
761
+ "beoordeling te geven. Alvast bedankt! <br /> <a href='%s' "
762
+ "target='_blank'>Ja, zal het direct doen!</a> - <a href='%s'>Nee, heb ik al "
763
+ "gedaan!</a>"
764
+
765
+ #: includes/class-bewpi-invoice.php:50
766
+ msgid ""
767
+ "Whoops, no template found. Please select a template on the Template settings "
768
+ "page first."
769
+ msgstr ""
770
+ "Oeps, geen template gevonden. Selecteer een template op de Template Opties "
771
+ "pagina."
772
+
773
+ #: includes/partials/customer-generation.php:1
774
+ msgid "Generate Global Invoice"
775
+ msgstr "Genereer Globale Factuur"
776
+
777
+ #: includes/partials/customer-generation.php:11
778
+ msgid "Select a month"
779
+ msgstr ""
780
+
781
+ #: includes/partials/customer-generation.php:24
782
+ msgid "Select a year"
783
+ msgstr ""
784
+
785
+ #: includes/partials/customer-generation.php:38
786
+ msgid "Generate invoice"
787
+ msgstr ""
788
+
789
+ #: includes/partials/settings-sidebar.php:2
790
+ msgid "WooCommerce PDF Invoices Premium"
791
+ msgstr "WooCommerce PDF Invoices Premium"
792
+
793
+ #: includes/partials/settings-sidebar.php:4
794
+ msgid ""
795
+ "This plugin offers a premium version which comes with the following features:"
796
+ msgstr ""
797
+ "Deze plugin heeft ook een betaalde versie beschikbaar en komt met de "
798
+ "volgende functies: "
799
+
800
+ #: includes/partials/settings-sidebar.php:5
801
+ msgid "Bill periodically by generating and sending global invoices."
802
+ msgstr ""
803
+ "Factureer periodiek door globale facturen te genereren en te verzenden."
804
+
805
+ #: includes/partials/settings-sidebar.php:6
806
+ msgid "Add additional PDF's to customer invoices."
807
+ msgstr "Voeg meerdere PDF's toe aan de factuur."
808
+
809
+ #: includes/partials/settings-sidebar.php:7
810
+ msgid "Send customer invoices directly to suppliers and others."
811
+ msgstr "Verzend klantfacturen direct naar leveranciers en anderen."
812
+
813
+ #: includes/partials/settings-sidebar.php:8
814
+ #, php-format
815
+ msgid ""
816
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
817
+ msgstr ""
818
+ "Compatibel met de emails van de <a href=\"%s\">WooCommerce Subscriptions</a> "
819
+ "plugin"
820
+
821
+ #: includes/partials/settings-sidebar.php:10
822
+ msgid "Learn more"
823
+ msgstr "Leer meer"
824
+
825
+ #: includes/partials/settings-sidebar.php:13
826
+ msgid "Stay up-to-date"
827
+ msgstr "Blijf op de hoogte"
828
+
829
+ #: includes/partials/settings-sidebar.php:17
830
+ msgid ""
831
+ "We're constantly developing new features, stay up-to-date by subscribing to "
832
+ "our newsletter."
833
+ msgstr ""
834
+ "Wij ontwikkelen constant nieuwe functionaliteiten, blijf up-to-date door je "
835
+ "in te schrijven op de nieuwsbrief."
836
+
837
+ #: includes/partials/settings-sidebar.php:23
838
+ msgid "Your email address"
839
+ msgstr "Jouw Emailadres"
840
+
841
+ #: includes/partials/settings-sidebar.php:29
842
+ msgid "Signup"
843
+ msgstr "Inschrijven"
844
+
845
+ #: includes/partials/settings-sidebar.php:32
846
+ msgid "No spam, ever. Unsubscribe at any time"
847
+ msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
848
+
849
+ #: includes/partials/settings-sidebar.php:41
850
+ msgid "About"
851
+ msgstr "Over"
852
+
853
+ #: includes/partials/settings-sidebar.php:43
854
+ msgid ""
855
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
856
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
857
+ msgstr ""
858
+ "Deze plugin is een opensource project met als doel, het facturen gat van "
859
+ "WooCommerce op te vullen."
860
+
861
+ #: includes/partials/settings-sidebar.php:45
862
+ msgid "<b>Version</b>: "
863
+ msgstr "<b>Versie</b>:"
864
+
865
+ #: includes/partials/settings-sidebar.php:47
866
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
867
+ msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
868
+
869
+ #: includes/partials/settings-sidebar.php:52
870
+ msgid ""
871
+ "We will never ask for donations, but to garantee future development, we do "
872
+ "need your support. Please show us your appreciation by leaving a <a href="
873
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
874
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
875
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
876
+ msgstr ""
877
+ "Wij zullen nooit om donaties vragen, maar om de toekomstige ontwikkeling te "
878
+ "kunnen garanderen, hebben wij uw support nodig. Toon ons uw dank door een <a "
879
+ "href=\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-"
880
+ "invoices?rate=5#postform\">★★★★★</a> beoordeling achter te laten en stem op "
881
+ "<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
882
+ "a>."
883
+
884
+ #: includes/partials/settings-sidebar.php:72
885
+ msgid ""
886
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
887
+ msgstr ""
888
+ "Bekijk nu deze geweldige gratis WooCommerce PDF Invoices plugin voor "
889
+ "WordPress!"
890
+
891
+ #: includes/partials/settings-sidebar.php:77
892
+ msgid "Need Help?"
893
+ msgstr "Hulp Nodig?"
894
+
895
+ #: includes/partials/settings-sidebar.php:79
896
+ msgid "Frequently Asked Questions"
897
+ msgstr "Veel gestelde vragen"
898
+
899
+ #: includes/partials/settings-sidebar.php:80
900
+ msgid "Support forum"
901
+ msgstr "Support Forum"
902
+
903
+ #: includes/partials/settings-sidebar.php:81
904
+ msgid "Request a feature"
905
+ msgstr "Verzoek een nieuwe functionaliteit"
906
+
907
+ #: includes/partials/settings-sidebar.php:82
908
+ msgid "Email us"
909
+ msgstr "Email ons"
910
+
911
+ #: includes/templates/invoices/global/micro/body.php:5
912
+ #: includes/templates/invoices/simple/micro/body.php:5
913
+ msgid "Invoice to"
914
+ msgstr "Facturatie aan"
915
+
916
+ #: includes/templates/invoices/global/micro/body.php:7
917
+ #: includes/templates/invoices/simple/micro/body.php:7
918
+ #, php-format
919
+ msgid "Phone: %s"
920
+ msgstr "Tel: %s"
921
+
922
+ #: includes/templates/invoices/global/micro/body.php:11
923
+ #: includes/templates/invoices/simple/micro/body.php:11
924
+ msgid "Ship to"
925
+ msgstr "Verzend naar"
926
+
927
+ #: includes/templates/invoices/global/micro/body.php:22
928
+ msgid "Global Invoice"
929
+ msgstr "Globale Factuur"
930
+
931
+ #: includes/templates/invoices/global/micro/body.php:40
932
+ #: includes/templates/invoices/simple/micro/body.php:44
933
+ msgid "Description"
934
+ msgstr "Beschrijving"
935
+
936
+ #: includes/templates/invoices/global/micro/body.php:48
937
+ #: includes/templates/invoices/simple/micro/body.php:52
938
+ msgid "Cost"
939
+ msgstr "Kosten"
940
+
941
+ #: includes/templates/invoices/global/micro/body.php:50
942
+ #: includes/templates/invoices/simple/micro/body.php:54
943
+ msgid "Qty"
944
+ msgstr "Aantal"
945
+
946
+ #: includes/templates/invoices/global/micro/body.php:56
947
+ #: includes/templates/invoices/simple/micro/body.php:60
948
+ msgid "VAT"
949
+ msgstr "BTW"
950
+
951
+ #: includes/templates/invoices/global/micro/body.php:67
952
+ #: includes/templates/invoices/global/micro/body.php:280
953
+ #: includes/templates/invoices/simple/micro/body.php:71
954
+ #: includes/templates/invoices/simple/micro/body.php:145
955
+ msgid "Total"
956
+ msgstr "Totaal"
957
+
958
+ #: includes/templates/invoices/global/micro/body.php:75
959
+ #, php-format
960
+ msgid "Order #%d - %s"
961
+ msgstr "Bestelling #%d - %s"
962
+
963
+ #: includes/templates/invoices/global/micro/body.php:255
964
+ #: includes/templates/invoices/simple/micro/body.php:120
965
+ msgid "Fee"
966
+ msgstr "Handelingskosten"
967
+
968
+ #: includes/templates/invoices/global/micro/body.php:287
969
+ #: includes/templates/invoices/simple/micro/body.php:152
970
+ msgid "Refunded"
971
+ msgstr "Terugbetaald"
972
+
973
+ #: includes/templates/invoices/global/micro/footer.php:15
974
+ #: includes/templates/invoices/simple/micro/footer.php:18
975
+ #, php-format
976
+ msgid "%s of %s"
977
+ msgstr "%s van %s"
978
+
979
+ #: includes/templates/invoices/simple/micro/body.php:22
980
+ msgid "Invoice"
981
+ msgstr "Factuur"
982
+
983
+ #: includes/templates/invoices/simple/micro/body.php:25
984
+ #, php-format
985
+ msgid "Order Number: %s"
986
+ msgstr "Bestellingsnummer: %s"
987
+
988
+ #: includes/templates/invoices/simple/micro/body.php:26
989
+ #, php-format
990
+ msgid "Order Date: %s"
991
+ msgstr "Datum bestelling: %s"
992
+
993
+ #: includes/templates/invoices/simple/micro/body.php:289
994
+ #: includes/templates/invoices/simple/micro/body.php:294
995
+ msgid "Customer note"
996
+ msgstr "Opmerking klant"
997
+
998
+ #~ msgid ""
999
+ #~ "<b>Note</b>: If your logo doesn't show up, try to enable "
1000
+ #~ "<code>allow_url_fopen</code>."
1001
+ #~ msgstr ""
1002
+ #~ "<b>Let wel</b>: Als het logo niet wordt getoond, probeer dan "
1003
+ #~ "<code>allow_url_fopen</code> aan te zetten."
1004
+
1005
+ #~ msgid "Feel free to use "
1006
+ #~ msgstr "Gebruik"
1007
+
1008
+ #~ msgid "Intro text"
1009
+ #~ msgstr "Introtekst"
1010
+
1011
+ #~ msgid ""
1012
+ #~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
1013
+ #~ "%s Only available with sequential numbering type and you need to check "
1014
+ #~ "the checkbox to actually reset the value."
1015
+ #~ msgstr ""
1016
+ #~ "Reset de factuurteller en start met het volgende factuurnummer. %s %sLet "
1017
+ #~ "wel:%s Alleen beschikbaar bij sequentiële nummering type en vergeet niet "
1018
+ #~ "het selectievak te selecteren om de waarde ook werkelijk te resetten."
1019
+
1020
+ #~ msgid ""
1021
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1022
+ #~ "is required and slashes aren't supported."
1023
+ #~ msgstr ""
1024
+ #~ "Toegestane HTML tags zijn %s %s %s %s %s en %s. %s %sLet wel:%s %s is "
1025
+ #~ "verplicht en schuine strepen worden niet ondersteund."
1026
+
1027
+ #~ msgid "Tax"
1028
+ #~ msgstr "BTW"
1029
+
1030
+ #~ msgid "The footer will be visible on every page. "
1031
+ #~ msgstr "De voetregel is zichtbaar op iedere pagina."
1032
+
1033
+ #~ msgid "Invoicing on Steroids"
1034
+ #~ msgstr "Facturen op Steroïde"
1035
+
1036
+ #~ msgid ""
1037
+ #~ "We're working on a more powerful version of this invoicing plugin. Be the "
1038
+ #~ "first to know when we're ready to launch and receive a unique one-time "
1039
+ #~ "discount!"
1040
+ #~ msgstr ""
1041
+ #~ "Wij werken aan krachtige versie van deze facturen plugin. Wees de eerste "
1042
+ #~ "die meer te weten krijgt over de lancering en verkrijg een unieke "
1043
+ #~ "eenmalige korting!"
1044
+
1045
+ #~ msgid "%sPayment%s via"
1046
+ #~ msgstr "%sBetaling%s via"
1047
+
1048
+ #~ msgid ""
1049
+ #~ "Setup up your <strong>WooCommerce PDF Invoices</strong> on the <a href="
1050
+ #~ "\"%s\"><i>SETTINGS PAGE</i></a>."
1051
+ #~ msgstr ""
1052
+ #~ "Configureer <strong>WooCommerce PDF Invoices</strong> en ga naar de <a "
1053
+ #~ "href=\"%s\"><i>OPTIES PAGINA</i></a>."
1054
+
1055
+ #~ msgid ""
1056
+ #~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
1057
+ #~ "is required."
1058
+ #~ msgstr ""
1059
+ #~ "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s %s en %s te "
1060
+ #~ "gebruiken. %s %s Let wel: %s %s is vereist."
1061
+
1062
+ #~ msgid "Order Number %s"
1063
+ #~ msgstr "Bestelnummer %s"
1064
+
1065
+ #~ msgid "Order Date %s"
1066
+ #~ msgstr "Besteldatum: %s"
1067
+
1068
+ #~ msgid "Download invoice (PDF)"
1069
+ #~ msgstr "Download factuur (PDF)"
1070
+
1071
+ #~ msgid ""
1072
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
1073
+ #~ "required."
1074
+ #~ msgstr ""
1075
+ #~ "Voel je vrij om het gebruik van de aanduidingen %s %s %s %s en %s te "
1076
+ #~ "gebruiken. %s % sLet wel: %s %s is vereist."
1077
+
1078
+ #~ msgid "VAT %s"
1079
+ #~ msgstr "BTW %s"
1080
+
1081
+ #~ msgid "General Settings"
1082
+ #~ msgstr "Algemene Opties"
1083
+
1084
+ #~ msgid ""
1085
+ #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
1086
+ #~ msgstr "Verzend automatisch naar Google Drive, Egnyte, Dropbox of OneDrive"
1087
+
1088
+ #~ msgid "For bookkeeping purposes."
1089
+ #~ msgstr "Voor boekhoudkundige doeleinden."
1090
+
1091
+ #~ msgid "Signup at %s and enter your account below."
1092
+ #~ msgstr "Meld je aan op %s en geef je account onderstaand in."
1093
+
1094
+ #~ msgid "Enter your %s account."
1095
+ #~ msgstr "Het %s account."
1096
+
1097
+ #~ msgid "Invalid type of Email."
1098
+ #~ msgstr "Ongeldig type Email."
1099
+
1100
+ #~ msgid "Please don't try to change the values."
1101
+ #~ msgstr "Probeer de waardes niet te wijzigen a.u.b."
1102
+
1103
+ #~ msgid "Invalid Email address."
1104
+ #~ msgstr "Ongeldig Emailadres."
1105
+
1106
+ #~ msgid "Allowed tags: "
1107
+ #~ msgstr "Toegestane tags: "
1108
+
1109
+ #~ msgid "Template Settings"
1110
+ #~ msgstr "Template Opties"
1111
+
1112
+ #~ msgid "Invoice number type"
1113
+ #~ msgstr "Type factuurnummer"
1114
+
1115
+ #~ msgid "Next invoice number"
1116
+ #~ msgstr "Eerstvolgende factuurnummer"
1117
+
1118
+ #~ msgid "Number of digits"
1119
+ #~ msgstr "Aantal cijfers"
1120
+
1121
+ #~ msgid "Invoice number prefix"
1122
+ #~ msgstr "Factuurnummer voorvoegsel"
1123
+
1124
+ #~ msgid "Invoice number suffix"
1125
+ #~ msgstr "Factuurnummer achtervoegsel"
1126
+
1127
+ #~ msgid "Invoice number format"
1128
+ #~ msgstr "Factuurnummer format"
1129
+
1130
+ #~ msgid "Reset on 1st January"
1131
+ #~ msgstr "Reset op 1 januari"
1132
+
1133
+ #~ msgid "Invoice date format"
1134
+ #~ msgstr "Factuur datumnotatie"
1135
+
1136
+ #~ msgid "Order date format"
1137
+ #~ msgstr "Notatie bestellingsdatum"
1138
+
1139
+ #~ msgid "Show SKU"
1140
+ #~ msgstr "Toon SKU"
1141
+
1142
+ #~ msgid "Show discount"
1143
+ #~ msgstr "Toon korting"
1144
+
1145
+ #~ msgid "Show subtotal"
1146
+ #~ msgstr "Toon subtotaal"
1147
+
1148
+ #~ msgid "Show tax"
1149
+ #~ msgstr "Toon BTW"
1150
+
1151
+ #~ msgid "Show shipping"
1152
+ #~ msgstr "Toon verzendkosten"
1153
+
1154
+ #~ msgid "Color theme of the invoice."
1155
+ #~ msgstr "Kleurthema van de factuur."
1156
+
1157
+ #~ msgid ""
1158
+ #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
1159
+ #~ "png."
1160
+ #~ msgstr ""
1161
+ #~ "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
1162
+ #~ "png is."
1163
+
1164
+ #~ msgid "Invoice number to use for next invoice."
1165
+ #~ msgstr "Factuurnummer te gebruiken voor de volgende factuur."
1166
+
1167
+ #~ msgid "Number of zero digits."
1168
+ #~ msgstr "Aantal nullen."
1169
+
1170
+ #~ msgid "Prefix text for the invoice number. Not required."
1171
+ #~ msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
1172
+
1173
+ #~ msgid "Suffix text for the invoice number. Not required."
1174
+ #~ msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
1175
+
1176
+ #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
1177
+ #~ msgstr "Beschikbare aanduidingen zijn %s %s %s %s of %s. %s is verplicht."
1178
+
1179
+ #~ msgid "Reset on the first of January."
1180
+ #~ msgstr "Reset op de eerste van januari."
1181
+
1182
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s."
1183
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
1184
+
1185
+ #~ msgid "Order date %sformat%s. Examples: %s or %s."
1186
+ #~ msgstr "Notatie %sbestellingsdatum%s. Voorbeelden: %s of %s."
1187
+
1188
+ #~ msgid "Invalid template."
1189
+ #~ msgstr "Ongeldige template."
1190
+
1191
+ #~ msgid "Invalid color theme code."
1192
+ #~ msgstr "Ongeldige kleurcode."
1193
+
1194
+ #~ msgid "Invalid company name."
1195
+ #~ msgstr "Ongeldige bedsrijfsnaam."
1196
+
1197
+ #~ msgid "Invalid input into one of the textarea's."
1198
+ #~ msgstr "Ongeldige invoer in een van de textarea's."
1199
+
1200
+ #~ msgid "Invalid type of invoice number."
1201
+ #~ msgstr "Ongeldig type factuurnummer."
1202
+
1203
+ #~ msgid "Invalid (next) invoice number."
1204
+ #~ msgstr "Ongeldig (eerstvolgend) factuurnummer."
1205
+
1206
+ #~ msgid "Invalid invoice number digits."
1207
+ #~ msgstr "Ongeldige factuurnummer cijfers."
1208
+
1209
+ #~ msgid "The [number] placeholder is required as invoice number format."
1210
+ #~ msgstr "De aanduiding [number] is vereist."
1211
+
1212
+ #~ msgid "Invalid invoice number format."
1213
+ #~ msgstr "Ongeldig factuurnummer format."
1214
+
1215
+ #~ msgid "Invalid date format."
1216
+ #~ msgstr "Ongeldige datumnotatie."
1217
+
1218
+ #~ msgid "Please upload image with extension jpg, jpeg or png."
1219
+ #~ msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
1220
+
1221
+ #~ msgid "Quantity"
1222
+ #~ msgstr "Aantal"
1223
+
1224
+ #~ msgid "Unit price"
1225
+ #~ msgstr "Prijs per stuk"
1226
+
1227
+ #~ msgid ""
1228
+ #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1229
+ #~ msgstr ""
1230
+ #~ "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
1231
+ #~ "verplicht."
1232
+
1233
+ #~ msgid "Signup at %s and enter your account beyond."
1234
+ #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
1235
+
1236
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1237
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
1238
+
1239
+ #~ msgid "Show invoice"
1240
+ #~ msgstr "Toon factuur"
1241
+
1242
+ #~ msgid "%sFormat%s of the date."
1243
+ #~ msgstr "%sFormat%s van de datum."
1244
+
1245
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1246
+ #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
1247
+
1248
+ #~ msgid "Choose the color witch fits your company."
1249
+ #~ msgstr "Kies uw bedrijfskleur."
1250
+
1251
+ #~ msgid ""
1252
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1253
+ #~ "[number] as placeholders."
1254
+ #~ msgstr ""
1255
+ #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
1256
+ #~ "[number] als aanduidingen."
1257
+
1258
+ #~ msgid "Text to greet, congratulate or thank the customer. "
1259
+ #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
1260
+
1261
+ #~ msgid "Some text"
1262
+ #~ msgstr "De vertaling werkt!!!!"
1263
+
1264
+ #~ msgid "Text to greet, congratulate or thank the customer."
1265
+ #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
1266
+
1267
+ #~ msgid "Start all over on the first of January."
1268
+ #~ msgstr "Opnieuw beginnen op de eerste van januari."
lang/woocommerce-pdf-invoices-ro_RO.po CHANGED
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: \n"
9
  "Report-Msgid-Bugs-To: \n"
10
  "POT-Creation-Date: 2015-12-25 09:22+0200\n"
11
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
12
  "Language-Team: \n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Project-Id-Version: \n"
9
  "Report-Msgid-Bugs-To: \n"
10
  "POT-Creation-Date: 2015-12-25 09:22+0200\n"
11
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
12
  "Language-Team: \n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
lang/woocommerce-pdf-invoices-ru_RU.po CHANGED
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: \n"
9
  "Report-Msgid-Bugs-To: \n"
10
  "POT-Creation-Date: 2016-01-12 14:18+0300\n"
11
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
12
  "Language-Team: \n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Project-Id-Version: \n"
9
  "Report-Msgid-Bugs-To: \n"
10
  "POT-Creation-Date: 2016-01-12 14:18+0300\n"
11
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
12
  "Language-Team: \n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
lang/woocommerce-pdf-invoices-sk_SK.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-12-12 23:36+0100\n"
6
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
7
  "Last-Translator: Jaroslav Semančík\n"
8
  "Language-Team: \n"
9
  "Language: sk_SK\n"
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-12-12 23:36+0100\n"
6
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
7
  "Last-Translator: Jaroslav Semančík\n"
8
  "Language-Team: \n"
9
  "Language: sk_SK\n"
lang/woocommerce-pdf-invoices-sl_SI.po CHANGED
@@ -1,769 +1,993 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
5
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: nl_NL\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.3\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: includes/abstracts/abstract-bewpi-document.php:64
23
- msgid "Paid"
24
- msgstr ""
25
-
26
- #: includes/abstracts/abstract-bewpi-invoice.php:262
27
- #, php-format
28
- msgid ""
29
- "Could not create invoice. In order to reset invoice number with %d, delete "
30
- "all invoices with invoice number %s and greater."
31
- msgstr ""
32
-
33
- #: includes/abstracts/abstract-bewpi-invoice.php:267
34
- #, php-format
35
- msgid ""
36
- "Could not create invoice. Invoice with invoice number %s already exists. "
37
- "First delete invoice and try again."
38
- msgstr ""
39
-
40
- #: includes/abstracts/abstract-bewpi-invoice.php:310
41
- #, php-format
42
- msgid ""
43
- "Invoice with invoice number %s not found. First create invoice and try again."
44
- msgstr ""
45
-
46
- #: includes/abstracts/abstract-bewpi-invoice.php:372
47
- #, php-format
48
- msgid "VAT Number: %s"
49
- msgstr ""
50
-
51
- #: includes/abstracts/abstract-bewpi-invoice.php:383
52
- #, php-format
53
- msgid "Purchase Order Number: %s"
54
- msgstr ""
55
-
56
- #: includes/abstracts/abstract-bewpi-setting.php:98
57
- msgid "Allowed HTML tags: "
58
- msgstr ""
59
-
60
- #: includes/abstracts/abstract-bewpi-setting.php:173
61
- msgid "Remove logo"
62
- msgstr ""
63
-
64
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
- msgid "Attach to Email"
66
- msgstr ""
67
-
68
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
69
- msgid "Processing order"
70
- msgstr ""
71
-
72
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
73
- msgid "Completed order"
74
- msgstr ""
75
-
76
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
77
- msgid "Customer invoice"
78
- msgstr ""
79
-
80
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
81
- msgid "Do not attach"
82
- msgstr ""
83
-
84
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
85
- msgid "Attach to New order Email"
86
- msgstr ""
87
-
88
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
89
- msgid "View PDF"
90
- msgstr ""
91
-
92
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
93
- msgid "Download"
94
- msgstr ""
95
-
96
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
97
- msgid "Open in new browser tab/window"
98
- msgstr ""
99
-
100
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
101
- msgid "Enable download from account"
102
- msgstr ""
103
-
104
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
105
- msgid ""
106
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
107
- "page.</div>"
108
- msgstr ""
109
-
110
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
111
- msgid "Enable Email It In"
112
- msgstr ""
113
-
114
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
115
- msgid "Email It In account"
116
- msgstr ""
117
-
118
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
119
- #, php-format
120
- msgid "Get your account from your Email It In %suser account%s."
121
- msgstr ""
122
-
123
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
124
- msgid "Enable mPDF debugging"
125
- msgstr ""
126
-
127
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
128
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
129
- msgstr ""
130
-
131
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
132
- msgid "Email Options"
133
- msgstr ""
134
-
135
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
136
- msgid "Download Options"
137
- msgstr ""
138
-
139
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
140
- msgid "Cloud Storage Options"
141
- msgstr ""
142
-
143
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
144
- msgid "Debug Options"
145
- msgstr ""
146
-
147
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
148
- #, php-format
149
- msgid ""
150
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
151
- "Egnyte and enter your account below."
152
- msgstr ""
153
-
154
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
155
- #: includes/be-woocommerce-pdf-invoices.php:219
156
- msgid "Template"
157
- msgstr ""
158
-
159
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
160
- msgid "Color theme"
161
- msgstr ""
162
-
163
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
164
- msgid "Date format"
165
- msgstr ""
166
-
167
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
168
- #, php-format
169
- msgid "%sFormat%s of invoice date and order date."
170
- msgstr ""
171
-
172
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
173
- msgid "Display prices including tax"
174
- msgstr ""
175
-
176
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
177
- msgid ""
178
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
179
- "still be excluding tax, so disable it within the visible columns section."
180
- msgstr ""
181
-
182
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
183
- msgid "Shipping taxable"
184
- msgstr ""
185
-
186
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
187
- msgid "Enable to display subtotal including shipping."
188
- msgstr ""
189
-
190
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
191
- msgid "Mark invoice as paid"
192
- msgstr ""
193
-
194
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
195
- msgid "Invoice will be watermarked when order has been paid."
196
- msgstr ""
197
-
198
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
199
- msgid "Company name"
200
- msgstr ""
201
-
202
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
203
- msgid "Company logo"
204
- msgstr ""
205
-
206
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
207
- msgid "Company address"
208
- msgstr ""
209
-
210
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
211
- msgid "Displayed in upper-right corner near logo."
212
- msgstr ""
213
-
214
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
215
- msgid "Company details"
216
- msgstr ""
217
-
218
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
219
- msgid "Displayed below company address."
220
- msgstr ""
221
-
222
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
223
- msgid "Thank you text"
224
- msgstr ""
225
-
226
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
227
- msgid "Displayed in big colored bar directly after invoice total."
228
- msgstr ""
229
-
230
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
231
- msgid "Thank you for your purchase!"
232
- msgstr ""
233
-
234
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
235
- msgid "Show customer notes"
236
- msgstr ""
237
-
238
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
239
- msgid "Terms & conditions, policies etc."
240
- msgstr ""
241
-
242
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
243
- #, php-format
244
- msgid ""
245
- "Displayed below customer notes and above footer. Want to attach additional "
246
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
247
- msgstr ""
248
-
249
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
250
- msgid "Items will be shipped within 2 days."
251
- msgstr ""
252
-
253
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
254
- msgid "Left footer column."
255
- msgstr ""
256
-
257
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
258
- #, php-format
259
- msgid "<b>Payment method</b> %s"
260
- msgstr ""
261
-
262
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
263
- msgid "Right footer column."
264
- msgstr ""
265
-
266
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
267
- msgid "Leave empty to show page numbering."
268
- msgstr ""
269
-
270
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
271
- msgid "Type"
272
- msgstr ""
273
-
274
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
275
- msgid "WooCommerce order number"
276
- msgstr ""
277
-
278
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
279
- msgid "Sequential number"
280
- msgstr ""
281
-
282
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
283
- msgid "Reset invoice counter"
284
- msgstr ""
285
-
286
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
287
- msgid "Next"
288
- msgstr ""
289
-
290
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
291
- msgid ""
292
- "Reset the invoice counter and start counting from given invoice number.<br/"
293
- "><b>Note:</b> Only available for Sequential numbering and value will be "
294
- "editable by selecting checkbox. Next number needs to be lower then highest "
295
- "existing invoice number or delete invoices first."
296
- msgstr ""
297
-
298
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
299
- msgid "Digits"
300
- msgstr ""
301
-
302
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
303
- msgid "[prefix]"
304
- msgstr ""
305
-
306
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
307
- msgid "[suffix]"
308
- msgstr ""
309
-
310
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
311
- msgid "Format"
312
- msgstr ""
313
-
314
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
315
- #, php-format
316
- msgid ""
317
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
318
- "slashes aren't supported."
319
- msgstr ""
320
-
321
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
322
- msgid "Reset on 1st of january"
323
- msgstr ""
324
-
325
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
326
- #: includes/templates/invoices/global/micro/body.php:44
327
- #: includes/templates/invoices/simple/micro/body.php:48
328
- msgid "SKU"
329
- msgstr "Koda"
330
-
331
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
332
- #: includes/templates/invoices/global/micro/body.php:236
333
- #: includes/templates/invoices/simple/micro/body.php:101
334
- msgid "Subtotal"
335
- msgstr "Skupaj"
336
-
337
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
338
- msgid "Tax (item)"
339
- msgstr ""
340
-
341
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
342
- msgid "Tax (total)"
343
- msgstr ""
344
-
345
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
346
- #: includes/templates/invoices/global/micro/body.php:220
347
- #: includes/templates/invoices/simple/micro/body.php:85
348
- msgid "Discount"
349
- msgstr "Popust"
350
-
351
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
352
- #: includes/templates/invoices/global/micro/body.php:228
353
- #: includes/templates/invoices/global/micro/body.php:244
354
- #: includes/templates/invoices/simple/micro/body.php:93
355
- #: includes/templates/invoices/simple/micro/body.php:109
356
- msgid "Shipping"
357
- msgstr "Poštnina"
358
-
359
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
360
- msgid "General Options"
361
- msgstr ""
362
-
363
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
364
- msgid "Invoice Number Options"
365
- msgstr ""
366
-
367
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
368
- msgid "Header Options"
369
- msgstr ""
370
-
371
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
372
- msgid "Body Options"
373
- msgstr ""
374
-
375
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
376
- msgid "Footer Options"
377
- msgstr ""
378
-
379
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
380
- msgid "Visible Columns"
381
- msgstr ""
382
-
383
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
384
- msgid "These are the general template options."
385
- msgstr ""
386
-
387
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
388
- msgid "These are the invoice number options."
389
- msgstr ""
390
-
391
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
392
- msgid "The header will be visible on every page. "
393
- msgstr ""
394
-
395
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
396
- msgid "The footer will be visible on every page."
397
- msgstr ""
398
-
399
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
400
- msgid ""
401
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
402
- "order payment method."
403
- msgstr ""
404
-
405
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
406
- msgid "Enable or disable the columns."
407
- msgstr ""
408
-
409
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
410
- msgid "File is invalid and contains either '..' or './'."
411
- msgstr ""
412
-
413
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
414
- msgid "File is invalid and contains ':' after the first character."
415
- msgstr ""
416
-
417
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
418
- msgid "File should be less then 2MB."
419
- msgstr ""
420
-
421
- #: includes/be-woocommerce-pdf-invoices.php:126
422
- #, php-format
423
- msgid ""
424
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
425
- "PDF Invoices</strong></a>."
426
- msgstr ""
427
-
428
- #: includes/be-woocommerce-pdf-invoices.php:136
429
- msgid "Settings"
430
- msgstr ""
431
-
432
- #: includes/be-woocommerce-pdf-invoices.php:137
433
- msgid "Premium"
434
- msgstr ""
435
-
436
- #: includes/be-woocommerce-pdf-invoices.php:182
437
- msgid "Invalid request"
438
- msgstr ""
439
-
440
- #: includes/be-woocommerce-pdf-invoices.php:185
441
- msgid "Invalid order ID"
442
- msgstr ""
443
-
444
- #: includes/be-woocommerce-pdf-invoices.php:191
445
- msgid "Access denied"
446
- msgstr ""
447
-
448
- #: includes/be-woocommerce-pdf-invoices.php:218
449
- msgid "General"
450
- msgstr ""
451
-
452
- #: includes/be-woocommerce-pdf-invoices.php:242
453
- msgid "Invoices"
454
- msgstr "Računi"
455
-
456
- #: includes/be-woocommerce-pdf-invoices.php:281
457
- #, php-format
458
- msgid ""
459
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
460
- "%s★★★★★%s rating. A huge thank you in advance!"
461
- msgstr ""
462
-
463
- #: includes/be-woocommerce-pdf-invoices.php:282
464
- #, php-format
465
- msgid "Version %s"
466
- msgstr ""
467
-
468
- #: includes/be-woocommerce-pdf-invoices.php:356
469
- msgid "PDF Invoice"
470
- msgstr ""
471
-
472
- #: includes/be-woocommerce-pdf-invoices.php:382
473
- msgid "Invoiced on:"
474
- msgstr ""
475
-
476
- #: includes/be-woocommerce-pdf-invoices.php:386
477
- msgid "Invoice number:"
478
- msgstr ""
479
-
480
- #: includes/be-woocommerce-pdf-invoices.php:424
481
- msgid "View invoice"
482
- msgstr ""
483
-
484
- #: includes/be-woocommerce-pdf-invoices.php:424
485
- msgid "View"
486
- msgstr ""
487
-
488
- #: includes/be-woocommerce-pdf-invoices.php:425
489
- msgid "Cancel invoice"
490
- msgstr ""
491
-
492
- #: includes/be-woocommerce-pdf-invoices.php:425
493
- msgid "Cancel"
494
- msgstr ""
495
-
496
- #: includes/be-woocommerce-pdf-invoices.php:427
497
- msgid "Are you sure to delete the invoice?"
498
- msgstr ""
499
-
500
- #: includes/be-woocommerce-pdf-invoices.php:430
501
- msgid "Create invoice"
502
- msgstr "Maak factuur"
503
-
504
- #: includes/be-woocommerce-pdf-invoices.php:430
505
- msgid "Create"
506
- msgstr ""
507
-
508
- #: includes/be-woocommerce-pdf-invoices.php:453
509
- #, php-format
510
- msgid "Invoice %s (PDF)"
511
- msgstr ""
512
-
513
- #: includes/be-woocommerce-pdf-invoices.php:563
514
- #, php-format
515
- msgid ""
516
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
517
- "really need your ★★★★★ rating. It will support future development big-time. "
518
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
519
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
520
- "done it!</a>"
521
- msgstr ""
522
-
523
- #: includes/class-bewpi-invoice.php:48
524
- msgid ""
525
- "Whoops, no template found. Please select a template on the Template settings "
526
- "page first."
527
- msgstr ""
528
-
529
- #: includes/partials/settings-sidebar.php:2
530
- msgid "WooCommerce PDF Invoices Premium"
531
- msgstr ""
532
-
533
- #: includes/partials/settings-sidebar.php:4
534
- msgid ""
535
- "This plugin offers a premium version which comes with the following features:"
536
- msgstr ""
537
-
538
- #: includes/partials/settings-sidebar.php:5
539
- msgid "Bill periodically by generating and sending global invoices."
540
- msgstr ""
541
-
542
- #: includes/partials/settings-sidebar.php:6
543
- msgid "Add additional PDF's to customer invoices."
544
- msgstr ""
545
-
546
- #: includes/partials/settings-sidebar.php:7
547
- msgid "Send customer invoices directly to suppliers and others."
548
- msgstr ""
549
-
550
- #: includes/partials/settings-sidebar.php:8
551
- #, php-format
552
- msgid ""
553
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
554
- msgstr ""
555
-
556
- #: includes/partials/settings-sidebar.php:10
557
- msgid "Learn more"
558
- msgstr ""
559
-
560
- #: includes/partials/settings-sidebar.php:13
561
- msgid "Stay up-to-date"
562
- msgstr ""
563
-
564
- #: includes/partials/settings-sidebar.php:17
565
- msgid ""
566
- "We're constantly developing new features, stay up-to-date by subscribing to "
567
- "our newsletter."
568
- msgstr ""
569
-
570
- #: includes/partials/settings-sidebar.php:23
571
- msgid "Your email address"
572
- msgstr ""
573
-
574
- #: includes/partials/settings-sidebar.php:29
575
- msgid "Signup"
576
- msgstr ""
577
-
578
- #: includes/partials/settings-sidebar.php:32
579
- msgid "No spam, ever. Unsubscribe at any time"
580
- msgstr ""
581
-
582
- #: includes/partials/settings-sidebar.php:41
583
- msgid "About"
584
- msgstr ""
585
-
586
- #: includes/partials/settings-sidebar.php:43
587
- msgid ""
588
- "This plugin is an open source project wich aims to fill the invoicing gap of "
589
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
590
- msgstr ""
591
-
592
- #: includes/partials/settings-sidebar.php:45
593
- msgid "<b>Version</b>: "
594
- msgstr ""
595
-
596
- #: includes/partials/settings-sidebar.php:47
597
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
598
- msgstr ""
599
-
600
- #: includes/partials/settings-sidebar.php:50
601
- msgid "Support"
602
- msgstr ""
603
-
604
- #: includes/partials/settings-sidebar.php:52
605
- msgid ""
606
- "We will never ask for donations, but to garantee future development, we do "
607
- "need your support. Please show us your appreciation by leaving a <a href="
608
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
609
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
610
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
611
- msgstr ""
612
-
613
- #: includes/partials/settings-sidebar.php:72
614
- msgid ""
615
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
616
- msgstr ""
617
-
618
- #: includes/partials/settings-sidebar.php:77
619
- msgid "Need Help?"
620
- msgstr ""
621
-
622
- #: includes/partials/settings-sidebar.php:79
623
- msgid "Frequently Asked Questions"
624
- msgstr ""
625
-
626
- #: includes/partials/settings-sidebar.php:80
627
- msgid "Support forum"
628
- msgstr ""
629
-
630
- #: includes/partials/settings-sidebar.php:81
631
- msgid "Request a feature"
632
- msgstr ""
633
-
634
- #: includes/partials/settings-sidebar.php:82
635
- msgid "Email us"
636
- msgstr ""
637
-
638
- #: includes/templates/invoices/global/micro/body.php:5
639
- #: includes/templates/invoices/simple/micro/body.php:5
640
- msgid "Invoice to"
641
- msgstr ""
642
-
643
- #: includes/templates/invoices/global/micro/body.php:7
644
- #: includes/templates/invoices/simple/micro/body.php:7
645
- #, php-format
646
- msgid "Phone: %s"
647
- msgstr ""
648
-
649
- #: includes/templates/invoices/global/micro/body.php:11
650
- #: includes/templates/invoices/simple/micro/body.php:11
651
- msgid "Ship to"
652
- msgstr ""
653
-
654
- #: includes/templates/invoices/global/micro/body.php:22
655
- msgid "Global Invoice"
656
- msgstr ""
657
-
658
- #: includes/templates/invoices/global/micro/body.php:40
659
- #: includes/templates/invoices/simple/micro/body.php:44
660
- msgid "Description"
661
- msgstr "Opis"
662
-
663
- #: includes/templates/invoices/global/micro/body.php:48
664
- #: includes/templates/invoices/simple/micro/body.php:52
665
- msgid "Cost"
666
- msgstr ""
667
-
668
- #: includes/templates/invoices/global/micro/body.php:50
669
- #: includes/templates/invoices/simple/micro/body.php:54
670
- msgid "Qty"
671
- msgstr ""
672
-
673
- #: includes/templates/invoices/global/micro/body.php:56
674
- #: includes/templates/invoices/simple/micro/body.php:60
675
- msgid "VAT"
676
- msgstr ""
677
-
678
- #: includes/templates/invoices/global/micro/body.php:67
679
- #: includes/templates/invoices/global/micro/body.php:280
680
- #: includes/templates/invoices/simple/micro/body.php:71
681
- #: includes/templates/invoices/simple/micro/body.php:145
682
- msgid "Total"
683
- msgstr "Skupaj"
684
-
685
- #: includes/templates/invoices/global/micro/body.php:75
686
- #, php-format
687
- msgid "Order #%d - %s"
688
- msgstr ""
689
-
690
- #: includes/templates/invoices/global/micro/body.php:255
691
- #: includes/templates/invoices/simple/micro/body.php:120
692
- msgid "Fee"
693
- msgstr ""
694
-
695
- #: includes/templates/invoices/global/micro/body.php:287
696
- #: includes/templates/invoices/simple/micro/body.php:152
697
- msgid "Refunded"
698
- msgstr ""
699
-
700
- #: includes/templates/invoices/global/micro/footer.php:15
701
- #: includes/templates/invoices/simple/micro/footer.php:18
702
- #, php-format
703
- msgid "%s of %s"
704
- msgstr ""
705
-
706
- #: includes/templates/invoices/simple/micro/body.php:22
707
- msgid "Invoice"
708
- msgstr "Račun"
709
-
710
- #: includes/templates/invoices/simple/micro/body.php:25
711
- #, php-format
712
- msgid "Order Number: %s"
713
- msgstr ""
714
-
715
- #: includes/templates/invoices/simple/micro/body.php:26
716
- #, php-format
717
- msgid "Order Date: %s"
718
- msgstr ""
719
-
720
- #: includes/templates/invoices/simple/micro/body.php:289
721
- #: includes/templates/invoices/simple/micro/body.php:294
722
- msgid "Customer note"
723
- msgstr "Komentar kupca"
724
-
725
- #~ msgid "Tax"
726
- #~ msgstr "DDV"
727
-
728
- #~ msgid "Quantity"
729
- #~ msgstr "Količina"
730
-
731
- #~ msgid "Unit price"
732
- #~ msgstr "Cena za kos"
733
-
734
- #~ msgid "Signup at %s and enter your account beyond."
735
- #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
736
-
737
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
738
- #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
739
-
740
- #~ msgid "Show invoice"
741
- #~ msgstr "Toon factuur"
742
-
743
- #~ msgid "%sFormat%s of the date."
744
- #~ msgstr "%sFormat%s van de datum."
745
-
746
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
747
- #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
748
-
749
- #~ msgid "Choose the color witch fits your company."
750
- #~ msgstr "Kies uw bedrijfskleur."
751
-
752
- #~ msgid ""
753
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
754
- #~ "[number] as placeholders."
755
- #~ msgstr ""
756
- #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
757
- #~ "[number] als aanduidingen."
758
-
759
- #~ msgid "Text to greet, congratulate or thank the customer. "
760
- #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
761
-
762
- #~ msgid "Some text"
763
- #~ msgstr "De vertaling werkt!!!!"
764
-
765
- #~ msgid "Text to greet, congratulate or thank the customer."
766
- #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
767
-
768
- #~ msgid "Start all over on the first of January."
769
- #~ msgstr "Opnieuw beginnen op de eerste van januari."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
5
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: nl_NL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/abstracts/abstract-bewpi-document.php:64
23
+ msgid "Paid"
24
+ msgstr ""
25
+
26
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
27
+ #, php-format
28
+ msgid ""
29
+ "Could not create invoice. In order to reset invoice number with %d, delete "
30
+ "all invoices with invoice number %s and greater."
31
+ msgstr ""
32
+
33
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
34
+ #, php-format
35
+ msgid ""
36
+ "Could not create invoice. Invoice with invoice number %s already exists. "
37
+ "First delete invoice and try again."
38
+ msgstr ""
39
+
40
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
41
+ #, php-format
42
+ msgid ""
43
+ "Invoice with invoice number %s not found. First create invoice and try again."
44
+ msgstr ""
45
+
46
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
47
+ #, php-format
48
+ msgid "VAT Number: %s"
49
+ msgstr ""
50
+
51
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
52
+ #, php-format
53
+ msgid "Purchase Order Number: %s"
54
+ msgstr ""
55
+
56
+ #: includes/abstracts/abstract-bewpi-setting.php:98
57
+ msgid "Allowed HTML tags: "
58
+ msgstr ""
59
+
60
+ #: includes/abstracts/abstract-bewpi-setting.php:173
61
+ msgid "Remove logo"
62
+ msgstr ""
63
+
64
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
66
+ msgid "Attach to Email"
67
+ msgstr ""
68
+
69
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
70
+ msgid "Processing order"
71
+ msgstr ""
72
+
73
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
74
+ msgid "Completed order"
75
+ msgstr ""
76
+
77
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
78
+ msgid "Customer invoice"
79
+ msgstr ""
80
+
81
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
82
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
83
+ msgid "Do not attach"
84
+ msgstr ""
85
+
86
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
87
+ msgid "Attach to New order Email"
88
+ msgstr ""
89
+
90
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
91
+ msgid "View PDF"
92
+ msgstr ""
93
+
94
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
95
+ msgid "Download"
96
+ msgstr ""
97
+
98
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
99
+ msgid "Open in new browser tab/window"
100
+ msgstr ""
101
+
102
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
103
+ msgid "Enable download from account"
104
+ msgstr ""
105
+
106
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
107
+ msgid ""
108
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
109
+ "page.</div>"
110
+ msgstr ""
111
+
112
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
113
+ msgid "Enable Email It In"
114
+ msgstr ""
115
+
116
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
117
+ msgid "Email It In account"
118
+ msgstr ""
119
+
120
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
121
+ #, php-format
122
+ msgid "Get your account from your Email It In %suser account%s."
123
+ msgstr ""
124
+
125
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
126
+ msgid "Enable mPDF debugging"
127
+ msgstr ""
128
+
129
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
130
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
131
+ msgstr ""
132
+
133
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
134
+ msgid "Email Options"
135
+ msgstr ""
136
+
137
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
138
+ msgid "Download Options"
139
+ msgstr ""
140
+
141
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
142
+ msgid "Cloud Storage Options"
143
+ msgstr ""
144
+
145
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
146
+ msgid "Debug Options"
147
+ msgstr ""
148
+
149
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
150
+ #, php-format
151
+ msgid ""
152
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
153
+ "Egnyte and enter your account below."
154
+ msgstr ""
155
+
156
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
157
+ #: includes/be-woocommerce-pdf-invoices.php:219
158
+ msgid "Template"
159
+ msgstr ""
160
+
161
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
162
+ msgid "Color theme"
163
+ msgstr ""
164
+
165
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
166
+ msgid "Date format"
167
+ msgstr ""
168
+
169
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
170
+ #, php-format
171
+ msgid "%sFormat%s of invoice date and order date."
172
+ msgstr ""
173
+
174
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
175
+ msgid "Display prices including tax"
176
+ msgstr ""
177
+
178
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
179
+ msgid ""
180
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
181
+ "still be excluding tax, so disable it within the visible columns section."
182
+ msgstr ""
183
+
184
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
185
+ msgid "Shipping taxable"
186
+ msgstr ""
187
+
188
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
189
+ msgid "Enable to display subtotal including shipping."
190
+ msgstr ""
191
+
192
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
193
+ msgid "Mark invoice as paid"
194
+ msgstr ""
195
+
196
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
197
+ msgid "Invoice will be watermarked when order has been paid."
198
+ msgstr ""
199
+
200
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
201
+ msgid "Company name"
202
+ msgstr ""
203
+
204
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
205
+ msgid "Company logo"
206
+ msgstr ""
207
+
208
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
209
+ msgid "Company address"
210
+ msgstr ""
211
+
212
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
213
+ msgid "Displayed in upper-right corner near logo."
214
+ msgstr ""
215
+
216
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
217
+ msgid "Company details"
218
+ msgstr ""
219
+
220
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
221
+ msgid "Displayed below company address."
222
+ msgstr ""
223
+
224
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
225
+ msgid "Thank you text"
226
+ msgstr ""
227
+
228
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
229
+ msgid "Displayed in big colored bar directly after invoice total."
230
+ msgstr ""
231
+
232
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
233
+ msgid "Thank you for your purchase!"
234
+ msgstr ""
235
+
236
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
237
+ msgid "Show customer notes"
238
+ msgstr ""
239
+
240
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
241
+ msgid "Terms & conditions, policies etc."
242
+ msgstr ""
243
+
244
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
245
+ #, php-format
246
+ msgid ""
247
+ "Displayed below customer notes and above footer. Want to attach additional "
248
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
249
+ msgstr ""
250
+
251
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
252
+ msgid "Items will be shipped within 2 days."
253
+ msgstr ""
254
+
255
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
256
+ msgid "Left footer column."
257
+ msgstr ""
258
+
259
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
260
+ #, php-format
261
+ msgid "<b>Payment method</b> %s"
262
+ msgstr ""
263
+
264
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
265
+ msgid "Right footer column."
266
+ msgstr ""
267
+
268
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
269
+ msgid "Leave empty to show page numbering."
270
+ msgstr ""
271
+
272
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
273
+ msgid "Type"
274
+ msgstr ""
275
+
276
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
277
+ msgid "WooCommerce order number"
278
+ msgstr ""
279
+
280
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
281
+ msgid "Sequential number"
282
+ msgstr ""
283
+
284
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
285
+ msgid "Reset invoice counter"
286
+ msgstr ""
287
+
288
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
289
+ msgid "Next"
290
+ msgstr ""
291
+
292
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
293
+ msgid ""
294
+ "Reset the invoice counter and start counting from given invoice number.<br/"
295
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
296
+ "editable by selecting checkbox. Next number needs to be lower then highest "
297
+ "existing invoice number or delete invoices first."
298
+ msgstr ""
299
+
300
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
301
+ msgid "Digits"
302
+ msgstr ""
303
+
304
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
305
+ msgid "[prefix]"
306
+ msgstr ""
307
+
308
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
309
+ msgid "[suffix]"
310
+ msgstr ""
311
+
312
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
313
+ msgid "Format"
314
+ msgstr ""
315
+
316
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
317
+ #, php-format
318
+ msgid ""
319
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
320
+ "slashes aren't supported."
321
+ msgstr ""
322
+
323
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
324
+ msgid "Reset on 1st of january"
325
+ msgstr ""
326
+
327
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
328
+ #: includes/templates/invoices/global/micro/body.php:44
329
+ #: includes/templates/invoices/simple/micro/body.php:48
330
+ msgid "SKU"
331
+ msgstr "Koda"
332
+
333
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
334
+ #: includes/templates/invoices/global/micro/body.php:236
335
+ #: includes/templates/invoices/simple/micro/body.php:101
336
+ msgid "Subtotal"
337
+ msgstr "Skupaj"
338
+
339
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
340
+ msgid "Tax (item)"
341
+ msgstr ""
342
+
343
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
344
+ msgid "Tax (total)"
345
+ msgstr ""
346
+
347
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
348
+ #: includes/templates/invoices/global/micro/body.php:220
349
+ #: includes/templates/invoices/simple/micro/body.php:85
350
+ msgid "Discount"
351
+ msgstr "Popust"
352
+
353
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
354
+ #: includes/templates/invoices/global/micro/body.php:228
355
+ #: includes/templates/invoices/global/micro/body.php:244
356
+ #: includes/templates/invoices/simple/micro/body.php:93
357
+ #: includes/templates/invoices/simple/micro/body.php:109
358
+ msgid "Shipping"
359
+ msgstr "Poštnina"
360
+
361
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
362
+ msgid "General Options"
363
+ msgstr ""
364
+
365
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
366
+ msgid "Invoice Number Options"
367
+ msgstr ""
368
+
369
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
370
+ msgid "Header Options"
371
+ msgstr ""
372
+
373
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
374
+ msgid "Body Options"
375
+ msgstr ""
376
+
377
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
378
+ msgid "Footer Options"
379
+ msgstr ""
380
+
381
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
382
+ msgid "Visible Columns"
383
+ msgstr ""
384
+
385
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
386
+ msgid "These are the general template options."
387
+ msgstr ""
388
+
389
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
390
+ msgid "These are the invoice number options."
391
+ msgstr ""
392
+
393
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
394
+ msgid "The header will be visible on every page. "
395
+ msgstr ""
396
+
397
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
398
+ msgid "The footer will be visible on every page."
399
+ msgstr ""
400
+
401
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
402
+ msgid ""
403
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
404
+ "order payment method."
405
+ msgstr ""
406
+
407
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
408
+ msgid "Enable or disable the columns."
409
+ msgstr ""
410
+
411
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
412
+ msgid "File is invalid and contains either '..' or './'."
413
+ msgstr ""
414
+
415
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
416
+ msgid "File is invalid and contains ':' after the first character."
417
+ msgstr ""
418
+
419
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
420
+ msgid "File should be less then 2MB."
421
+ msgstr ""
422
+
423
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
424
+ msgid "Purchase email"
425
+ msgstr ""
426
+
427
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
428
+ msgid ""
429
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
430
+ "\">wcpdfinvoices.com</a>."
431
+ msgstr ""
432
+
433
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
434
+ msgid "License"
435
+ msgstr ""
436
+
437
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
438
+ msgid ""
439
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
440
+ "\">wcpdfinvoices.com</a> to receive updates."
441
+ msgstr ""
442
+
443
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
444
+ msgid "Processing Renewal Order"
445
+ msgstr ""
446
+
447
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
448
+ msgid "Completed Renewal Order"
449
+ msgstr ""
450
+
451
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
452
+ msgid "Customer Renewal Invoice"
453
+ msgstr ""
454
+
455
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
456
+ msgid "Attach to New Renewal Order Email"
457
+ msgstr ""
458
+
459
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
460
+ msgid "PDF attachment"
461
+ msgstr ""
462
+
463
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
464
+ msgid "Add for example a PDF with your terms & conditions."
465
+ msgstr ""
466
+
467
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
468
+ msgid "Suppliers"
469
+ msgstr ""
470
+
471
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
472
+ msgid ""
473
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
474
+ "adding there Email It In email addresses. Email addresses need to be "
475
+ "seperated by comma's."
476
+ msgstr ""
477
+
478
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
479
+ msgid ""
480
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
481
+ "generate a global invoice from there account</div>"
482
+ msgstr ""
483
+
484
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
485
+ msgid "Customer generation period"
486
+ msgstr ""
487
+
488
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
489
+ msgid ""
490
+ "Should your customers have the ability to generate a global invoice by month "
491
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
492
+ msgstr ""
493
+
494
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
495
+ msgid "Month"
496
+ msgstr ""
497
+
498
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
499
+ msgid "Year"
500
+ msgstr ""
501
+
502
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
503
+ msgid "Send to your Cloud Storage"
504
+ msgstr ""
505
+
506
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
507
+ msgid "Email to customer"
508
+ msgstr ""
509
+
510
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
511
+ msgid "Email to supplier(s)"
512
+ msgstr ""
513
+
514
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
515
+ msgid "Email subject"
516
+ msgstr ""
517
+
518
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
519
+ msgid "Subject for the global invoice email."
520
+ msgstr ""
521
+
522
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
523
+ msgid "Email message"
524
+ msgstr ""
525
+
526
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
527
+ msgid "Message for the global invoice email."
528
+ msgstr ""
529
+
530
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
531
+ msgid "Premium Options"
532
+ msgstr ""
533
+
534
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
535
+ msgid "Woocommerce Subscriptions Email Options"
536
+ msgstr ""
537
+
538
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
539
+ msgid "Attachment Options"
540
+ msgstr ""
541
+
542
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
543
+ msgid "Supplier Options"
544
+ msgstr ""
545
+
546
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
547
+ msgid "Global Invoice Options"
548
+ msgstr ""
549
+
550
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
551
+ msgid ""
552
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
553
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
554
+ "should be activated in order to work."
555
+ msgstr ""
556
+
557
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
558
+ msgid "Attach a PDF to the invoice."
559
+ msgstr ""
560
+
561
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
562
+ msgid "Send customer invoice automatically to your supplier(s)."
563
+ msgstr ""
564
+
565
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
566
+ msgid ""
567
+ "Generate global invoices on Orders page by selecting multiple orders and "
568
+ "applying action or let customers generate periodically from My Account page."
569
+ msgstr ""
570
+
571
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
572
+ msgid "File to large."
573
+ msgstr ""
574
+
575
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
576
+ msgid "Only PDF files are allowed."
577
+ msgstr ""
578
+
579
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
580
+ msgid "Remove"
581
+ msgstr ""
582
+
583
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
584
+ msgid "Choose"
585
+ msgstr ""
586
+
587
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
588
+ msgid "Active"
589
+ msgstr ""
590
+
591
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
592
+ msgid "Inactive"
593
+ msgstr ""
594
+
595
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
596
+ #: includes/be-woocommerce-pdf-invoices.php:182
597
+ msgid "Invalid request"
598
+ msgstr ""
599
+
600
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
601
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
602
+ msgid "Something went wrong."
603
+ msgstr ""
604
+
605
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
606
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
607
+ msgid "No orders found."
608
+ msgstr ""
609
+
610
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
611
+ #: includes/be-woocommerce-pdf-invoices.php:136
612
+ msgid "Settings"
613
+ msgstr ""
614
+
615
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
616
+ #: includes/partials/settings-sidebar.php:50
617
+ msgid "Support"
618
+ msgstr ""
619
+
620
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
621
+ #, php-format
622
+ msgid ""
623
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
624
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
625
+ "the free version (%s+) and try again.</p>"
626
+ msgstr ""
627
+
628
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
629
+ #: includes/be-woocommerce-pdf-invoices.php:137
630
+ msgid "Premium"
631
+ msgstr ""
632
+
633
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
634
+ msgid "Generate global invoice"
635
+ msgstr ""
636
+
637
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
638
+ msgid "Please select more then one order."
639
+ msgstr ""
640
+
641
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
642
+ msgid "Global invoice successfully generated! "
643
+ msgstr ""
644
+
645
+ #: includes/be-woocommerce-pdf-invoices.php:126
646
+ #, php-format
647
+ msgid ""
648
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
649
+ "PDF Invoices</strong></a>."
650
+ msgstr ""
651
+
652
+ #: includes/be-woocommerce-pdf-invoices.php:185
653
+ msgid "Invalid order ID"
654
+ msgstr ""
655
+
656
+ #: includes/be-woocommerce-pdf-invoices.php:191
657
+ msgid "Access denied"
658
+ msgstr ""
659
+
660
+ #: includes/be-woocommerce-pdf-invoices.php:218
661
+ msgid "General"
662
+ msgstr ""
663
+
664
+ #: includes/be-woocommerce-pdf-invoices.php:251
665
+ msgid "Invoices"
666
+ msgstr "Računi"
667
+
668
+ #: includes/be-woocommerce-pdf-invoices.php:294
669
+ #, php-format
670
+ msgid ""
671
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
672
+ "%s★★★★★%s rating. A huge thank you in advance!"
673
+ msgstr ""
674
+
675
+ #: includes/be-woocommerce-pdf-invoices.php:295
676
+ #, php-format
677
+ msgid "Version %s"
678
+ msgstr ""
679
+
680
+ #: includes/be-woocommerce-pdf-invoices.php:369
681
+ msgid "PDF Invoice"
682
+ msgstr ""
683
+
684
+ #: includes/be-woocommerce-pdf-invoices.php:395
685
+ msgid "Invoiced on:"
686
+ msgstr ""
687
+
688
+ #: includes/be-woocommerce-pdf-invoices.php:399
689
+ msgid "Invoice number:"
690
+ msgstr ""
691
+
692
+ #: includes/be-woocommerce-pdf-invoices.php:438
693
+ msgid "View invoice"
694
+ msgstr ""
695
+
696
+ #: includes/be-woocommerce-pdf-invoices.php:438
697
+ msgid "View"
698
+ msgstr ""
699
+
700
+ #: includes/be-woocommerce-pdf-invoices.php:439
701
+ msgid "Cancel invoice"
702
+ msgstr ""
703
+
704
+ #: includes/be-woocommerce-pdf-invoices.php:439
705
+ msgid "Cancel"
706
+ msgstr ""
707
+
708
+ #: includes/be-woocommerce-pdf-invoices.php:441
709
+ msgid "Are you sure to delete the invoice?"
710
+ msgstr ""
711
+
712
+ #: includes/be-woocommerce-pdf-invoices.php:444
713
+ msgid "Create invoice"
714
+ msgstr "Maak factuur"
715
+
716
+ #: includes/be-woocommerce-pdf-invoices.php:444
717
+ msgid "Create"
718
+ msgstr ""
719
+
720
+ #: includes/be-woocommerce-pdf-invoices.php:467
721
+ #, php-format
722
+ msgid "Invoice %s (PDF)"
723
+ msgstr ""
724
+
725
+ #: includes/be-woocommerce-pdf-invoices.php:577
726
+ #, php-format
727
+ msgid ""
728
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
729
+ "really need your ★★★★★ rating. It will support future development big-time. "
730
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
731
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
732
+ "done it!</a>"
733
+ msgstr ""
734
+
735
+ #: includes/class-bewpi-invoice.php:50
736
+ msgid ""
737
+ "Whoops, no template found. Please select a template on the Template settings "
738
+ "page first."
739
+ msgstr ""
740
+
741
+ #: includes/partials/customer-generation.php:1
742
+ msgid "Generate Global Invoice"
743
+ msgstr ""
744
+
745
+ #: includes/partials/customer-generation.php:11
746
+ msgid "Select a month"
747
+ msgstr ""
748
+
749
+ #: includes/partials/customer-generation.php:24
750
+ msgid "Select a year"
751
+ msgstr ""
752
+
753
+ #: includes/partials/customer-generation.php:38
754
+ msgid "Generate invoice"
755
+ msgstr ""
756
+
757
+ #: includes/partials/settings-sidebar.php:2
758
+ msgid "WooCommerce PDF Invoices Premium"
759
+ msgstr ""
760
+
761
+ #: includes/partials/settings-sidebar.php:4
762
+ msgid ""
763
+ "This plugin offers a premium version which comes with the following features:"
764
+ msgstr ""
765
+
766
+ #: includes/partials/settings-sidebar.php:5
767
+ msgid "Bill periodically by generating and sending global invoices."
768
+ msgstr ""
769
+
770
+ #: includes/partials/settings-sidebar.php:6
771
+ msgid "Add additional PDF's to customer invoices."
772
+ msgstr ""
773
+
774
+ #: includes/partials/settings-sidebar.php:7
775
+ msgid "Send customer invoices directly to suppliers and others."
776
+ msgstr ""
777
+
778
+ #: includes/partials/settings-sidebar.php:8
779
+ #, php-format
780
+ msgid ""
781
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
782
+ msgstr ""
783
+
784
+ #: includes/partials/settings-sidebar.php:10
785
+ msgid "Learn more"
786
+ msgstr ""
787
+
788
+ #: includes/partials/settings-sidebar.php:13
789
+ msgid "Stay up-to-date"
790
+ msgstr ""
791
+
792
+ #: includes/partials/settings-sidebar.php:17
793
+ msgid ""
794
+ "We're constantly developing new features, stay up-to-date by subscribing to "
795
+ "our newsletter."
796
+ msgstr ""
797
+
798
+ #: includes/partials/settings-sidebar.php:23
799
+ msgid "Your email address"
800
+ msgstr ""
801
+
802
+ #: includes/partials/settings-sidebar.php:29
803
+ msgid "Signup"
804
+ msgstr ""
805
+
806
+ #: includes/partials/settings-sidebar.php:32
807
+ msgid "No spam, ever. Unsubscribe at any time"
808
+ msgstr ""
809
+
810
+ #: includes/partials/settings-sidebar.php:41
811
+ msgid "About"
812
+ msgstr ""
813
+
814
+ #: includes/partials/settings-sidebar.php:43
815
+ msgid ""
816
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
817
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
818
+ msgstr ""
819
+
820
+ #: includes/partials/settings-sidebar.php:45
821
+ msgid "<b>Version</b>: "
822
+ msgstr ""
823
+
824
+ #: includes/partials/settings-sidebar.php:47
825
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
826
+ msgstr ""
827
+
828
+ #: includes/partials/settings-sidebar.php:52
829
+ msgid ""
830
+ "We will never ask for donations, but to garantee future development, we do "
831
+ "need your support. Please show us your appreciation by leaving a <a href="
832
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
833
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
834
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
835
+ msgstr ""
836
+
837
+ #: includes/partials/settings-sidebar.php:72
838
+ msgid ""
839
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
840
+ msgstr ""
841
+
842
+ #: includes/partials/settings-sidebar.php:77
843
+ msgid "Need Help?"
844
+ msgstr ""
845
+
846
+ #: includes/partials/settings-sidebar.php:79
847
+ msgid "Frequently Asked Questions"
848
+ msgstr ""
849
+
850
+ #: includes/partials/settings-sidebar.php:80
851
+ msgid "Support forum"
852
+ msgstr ""
853
+
854
+ #: includes/partials/settings-sidebar.php:81
855
+ msgid "Request a feature"
856
+ msgstr ""
857
+
858
+ #: includes/partials/settings-sidebar.php:82
859
+ msgid "Email us"
860
+ msgstr ""
861
+
862
+ #: includes/templates/invoices/global/micro/body.php:5
863
+ #: includes/templates/invoices/simple/micro/body.php:5
864
+ msgid "Invoice to"
865
+ msgstr ""
866
+
867
+ #: includes/templates/invoices/global/micro/body.php:7
868
+ #: includes/templates/invoices/simple/micro/body.php:7
869
+ #, php-format
870
+ msgid "Phone: %s"
871
+ msgstr ""
872
+
873
+ #: includes/templates/invoices/global/micro/body.php:11
874
+ #: includes/templates/invoices/simple/micro/body.php:11
875
+ msgid "Ship to"
876
+ msgstr ""
877
+
878
+ #: includes/templates/invoices/global/micro/body.php:22
879
+ msgid "Global Invoice"
880
+ msgstr ""
881
+
882
+ #: includes/templates/invoices/global/micro/body.php:40
883
+ #: includes/templates/invoices/simple/micro/body.php:44
884
+ msgid "Description"
885
+ msgstr "Opis"
886
+
887
+ #: includes/templates/invoices/global/micro/body.php:48
888
+ #: includes/templates/invoices/simple/micro/body.php:52
889
+ msgid "Cost"
890
+ msgstr ""
891
+
892
+ #: includes/templates/invoices/global/micro/body.php:50
893
+ #: includes/templates/invoices/simple/micro/body.php:54
894
+ msgid "Qty"
895
+ msgstr ""
896
+
897
+ #: includes/templates/invoices/global/micro/body.php:56
898
+ #: includes/templates/invoices/simple/micro/body.php:60
899
+ msgid "VAT"
900
+ msgstr ""
901
+
902
+ #: includes/templates/invoices/global/micro/body.php:67
903
+ #: includes/templates/invoices/global/micro/body.php:280
904
+ #: includes/templates/invoices/simple/micro/body.php:71
905
+ #: includes/templates/invoices/simple/micro/body.php:145
906
+ msgid "Total"
907
+ msgstr "Skupaj"
908
+
909
+ #: includes/templates/invoices/global/micro/body.php:75
910
+ #, php-format
911
+ msgid "Order #%d - %s"
912
+ msgstr ""
913
+
914
+ #: includes/templates/invoices/global/micro/body.php:255
915
+ #: includes/templates/invoices/simple/micro/body.php:120
916
+ msgid "Fee"
917
+ msgstr ""
918
+
919
+ #: includes/templates/invoices/global/micro/body.php:287
920
+ #: includes/templates/invoices/simple/micro/body.php:152
921
+ msgid "Refunded"
922
+ msgstr ""
923
+
924
+ #: includes/templates/invoices/global/micro/footer.php:15
925
+ #: includes/templates/invoices/simple/micro/footer.php:18
926
+ #, php-format
927
+ msgid "%s of %s"
928
+ msgstr ""
929
+
930
+ #: includes/templates/invoices/simple/micro/body.php:22
931
+ msgid "Invoice"
932
+ msgstr "Račun"
933
+
934
+ #: includes/templates/invoices/simple/micro/body.php:25
935
+ #, php-format
936
+ msgid "Order Number: %s"
937
+ msgstr ""
938
+
939
+ #: includes/templates/invoices/simple/micro/body.php:26
940
+ #, php-format
941
+ msgid "Order Date: %s"
942
+ msgstr ""
943
+
944
+ #: includes/templates/invoices/simple/micro/body.php:289
945
+ #: includes/templates/invoices/simple/micro/body.php:294
946
+ msgid "Customer note"
947
+ msgstr "Komentar kupca"
948
+
949
+ #~ msgid "Tax"
950
+ #~ msgstr "DDV"
951
+
952
+ #~ msgid "Quantity"
953
+ #~ msgstr "Količina"
954
+
955
+ #~ msgid "Unit price"
956
+ #~ msgstr "Cena za kos"
957
+
958
+ #~ msgid "Signup at %s and enter your account beyond."
959
+ #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
960
+
961
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
962
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
963
+
964
+ #~ msgid "Show invoice"
965
+ #~ msgstr "Toon factuur"
966
+
967
+ #~ msgid "%sFormat%s of the date."
968
+ #~ msgstr "%sFormat%s van de datum."
969
+
970
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
971
+ #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
972
+
973
+ #~ msgid "Choose the color witch fits your company."
974
+ #~ msgstr "Kies uw bedrijfskleur."
975
+
976
+ #~ msgid ""
977
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
978
+ #~ "[number] as placeholders."
979
+ #~ msgstr ""
980
+ #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
981
+ #~ "[number] als aanduidingen."
982
+
983
+ #~ msgid "Text to greet, congratulate or thank the customer. "
984
+ #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
985
+
986
+ #~ msgid "Some text"
987
+ #~ msgstr "De vertaling werkt!!!!"
988
+
989
+ #~ msgid "Text to greet, congratulate or thank the customer."
990
+ #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
991
+
992
+ #~ msgid "Start all over on the first of January."
993
+ #~ msgstr "Opnieuw beginnen op de eerste van januari."
lang/woocommerce-pdf-invoices-sv_SE.po CHANGED
@@ -1,958 +1,1182 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2016-02-10 21:03+0100\n"
5
- "PO-Revision-Date: 2016-02-10 21:03+0100\n"
6
- "Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
7
- "Language-Team: \n"
8
- "Language: sv\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.3\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: includes/abstracts/abstract-bewpi-document.php:64
23
- msgid "Paid"
24
- msgstr "Betald"
25
-
26
- #: includes/abstracts/abstract-bewpi-invoice.php:262
27
- #, php-format
28
- msgid ""
29
- "Could not create invoice. In order to reset invoice number with %d, delete "
30
- "all invoices with invoice number %s and greater."
31
- msgstr ""
32
-
33
- #: includes/abstracts/abstract-bewpi-invoice.php:267
34
- #, php-format
35
- msgid ""
36
- "Could not create invoice. Invoice with invoice number %s already exists. "
37
- "First delete invoice and try again."
38
- msgstr ""
39
-
40
- #: includes/abstracts/abstract-bewpi-invoice.php:310
41
- #, php-format
42
- msgid ""
43
- "Invoice with invoice number %s not found. First create invoice and try again."
44
- msgstr ""
45
-
46
- #: includes/abstracts/abstract-bewpi-invoice.php:372
47
- #, php-format
48
- msgid "VAT Number: %s"
49
- msgstr ""
50
-
51
- #: includes/abstracts/abstract-bewpi-invoice.php:383
52
- #, php-format
53
- msgid "Purchase Order Number: %s"
54
- msgstr ""
55
-
56
- #: includes/abstracts/abstract-bewpi-setting.php:98
57
- msgid "Allowed HTML tags: "
58
- msgstr ""
59
-
60
- #: includes/abstracts/abstract-bewpi-setting.php:173
61
- msgid "Remove logo"
62
- msgstr "Ta bort logo"
63
-
64
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
- msgid "Attach to Email"
66
- msgstr "Fäst i e-post"
67
-
68
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
69
- msgid "Processing order"
70
- msgstr "Pågående order"
71
-
72
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
73
- msgid "Completed order"
74
- msgstr "Genomförd beställning"
75
-
76
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
77
- msgid "Customer invoice"
78
- msgstr "Kundfaktura"
79
-
80
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
81
- msgid "Do not attach"
82
- msgstr ""
83
-
84
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
85
- msgid "Attach to New order Email"
86
- msgstr "Fäst på Ny order E-post"
87
-
88
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
89
- msgid "View PDF"
90
- msgstr ""
91
-
92
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
93
- msgid "Download"
94
- msgstr ""
95
-
96
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
97
- msgid "Open in new browser tab/window"
98
- msgstr ""
99
-
100
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
101
- msgid "Enable download from account"
102
- msgstr ""
103
-
104
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
105
- msgid ""
106
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
107
- "page.</div>"
108
- msgstr ""
109
-
110
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
111
- msgid "Enable Email It In"
112
- msgstr ""
113
-
114
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
115
- msgid "Email It In account"
116
- msgstr ""
117
-
118
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
119
- #, php-format
120
- msgid "Get your account from your Email It In %suser account%s."
121
- msgstr ""
122
-
123
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
124
- msgid "Enable mPDF debugging"
125
- msgstr ""
126
-
127
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
128
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
129
- msgstr ""
130
-
131
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
132
- msgid "Email Options"
133
- msgstr "E-post inställningar"
134
-
135
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
136
- msgid "Download Options"
137
- msgstr ""
138
-
139
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
140
- msgid "Cloud Storage Options"
141
- msgstr "Moln lagring inställningar"
142
-
143
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
144
- msgid "Debug Options"
145
- msgstr ""
146
-
147
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
148
- #, php-format
149
- msgid ""
150
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
151
- "Egnyte and enter your account below."
152
- msgstr ""
153
-
154
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
155
- #: includes/be-woocommerce-pdf-invoices.php:219
156
- msgid "Template"
157
- msgstr "Mall"
158
-
159
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
160
- msgid "Color theme"
161
- msgstr "Färg tema"
162
-
163
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
164
- msgid "Date format"
165
- msgstr "Datum format"
166
-
167
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
168
- #, php-format
169
- msgid "%sFormat%s of invoice date and order date."
170
- msgstr "%sFormat%s på fakturadatum och orderdatum."
171
-
172
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
173
- msgid "Display prices including tax"
174
- msgstr "Visa pris inklusive moms"
175
-
176
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
177
- msgid ""
178
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
179
- "still be excluding tax, so disable it within the visible columns section."
180
- msgstr ""
181
-
182
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
183
- msgid "Shipping taxable"
184
- msgstr ""
185
-
186
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
187
- msgid "Enable to display subtotal including shipping."
188
- msgstr ""
189
-
190
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
191
- msgid "Mark invoice as paid"
192
- msgstr "Markera som betald"
193
-
194
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
195
- msgid "Invoice will be watermarked when order has been paid."
196
- msgstr "Faktura kommer att få en vattenstämpel när beställning har betalats."
197
-
198
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
199
- msgid "Company name"
200
- msgstr "Företagsnamn"
201
-
202
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
203
- msgid "Company logo"
204
- msgstr "Företagslogi"
205
-
206
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
207
- msgid "Company address"
208
- msgstr "Företagsadress"
209
-
210
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
211
- msgid "Displayed in upper-right corner near logo."
212
- msgstr ""
213
-
214
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
215
- msgid "Company details"
216
- msgstr "Företags detaljer"
217
-
218
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
219
- msgid "Displayed below company address."
220
- msgstr ""
221
-
222
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
223
- msgid "Thank you text"
224
- msgstr ""
225
-
226
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
227
- msgid "Displayed in big colored bar directly after invoice total."
228
- msgstr ""
229
-
230
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
231
- msgid "Thank you for your purchase!"
232
- msgstr ""
233
-
234
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
235
- msgid "Show customer notes"
236
- msgstr "Visa kund anteckningar"
237
-
238
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
239
- msgid "Terms & conditions, policies etc."
240
- msgstr "Regler och villkor, politik etc."
241
-
242
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
243
- #, php-format
244
- msgid ""
245
- "Displayed below customer notes and above footer. Want to attach additional "
246
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
247
- msgstr ""
248
-
249
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
250
- msgid "Items will be shipped within 2 days."
251
- msgstr ""
252
-
253
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
254
- msgid "Left footer column."
255
- msgstr ""
256
-
257
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
258
- #, php-format
259
- msgid "<b>Payment method</b> %s"
260
- msgstr ""
261
-
262
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
263
- msgid "Right footer column."
264
- msgstr ""
265
-
266
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
267
- msgid "Leave empty to show page numbering."
268
- msgstr ""
269
-
270
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
271
- msgid "Type"
272
- msgstr "Typ"
273
-
274
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
275
- msgid "WooCommerce order number"
276
- msgstr "WooCommerce order nummer"
277
-
278
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
279
- msgid "Sequential number"
280
- msgstr "Löpnummer"
281
-
282
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
283
- msgid "Reset invoice counter"
284
- msgstr "Återställ faktura räknare"
285
-
286
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
287
- msgid "Next"
288
- msgstr "Nästa"
289
-
290
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
291
- msgid ""
292
- "Reset the invoice counter and start counting from given invoice number.<br/"
293
- "><b>Note:</b> Only available for Sequential numbering and value will be "
294
- "editable by selecting checkbox. Next number needs to be lower then highest "
295
- "existing invoice number or delete invoices first."
296
- msgstr ""
297
-
298
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
299
- msgid "Digits"
300
- msgstr "Siffror"
301
-
302
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
303
- msgid "[prefix]"
304
- msgstr ""
305
-
306
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
307
- msgid "[suffix]"
308
- msgstr ""
309
-
310
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
311
- msgid "Format"
312
- msgstr "Format"
313
-
314
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
315
- #, php-format
316
- msgid ""
317
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
318
- "slashes aren't supported."
319
- msgstr ""
320
-
321
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
322
- msgid "Reset on 1st of january"
323
- msgstr "Återställ den första januari"
324
-
325
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
326
- #: includes/templates/invoices/global/micro/body.php:44
327
- #: includes/templates/invoices/simple/micro/body.php:48
328
- msgid "SKU"
329
- msgstr "SKU"
330
-
331
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
332
- #: includes/templates/invoices/global/micro/body.php:236
333
- #: includes/templates/invoices/simple/micro/body.php:101
334
- msgid "Subtotal"
335
- msgstr "Delsumma"
336
-
337
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
338
- msgid "Tax (item)"
339
- msgstr ""
340
-
341
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
342
- msgid "Tax (total)"
343
- msgstr ""
344
-
345
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
346
- #: includes/templates/invoices/global/micro/body.php:220
347
- #: includes/templates/invoices/simple/micro/body.php:85
348
- msgid "Discount"
349
- msgstr "Rabatt"
350
-
351
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
352
- #: includes/templates/invoices/global/micro/body.php:228
353
- #: includes/templates/invoices/global/micro/body.php:244
354
- #: includes/templates/invoices/simple/micro/body.php:93
355
- #: includes/templates/invoices/simple/micro/body.php:109
356
- msgid "Shipping"
357
- msgstr "Frakt"
358
-
359
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
360
- msgid "General Options"
361
- msgstr "Allmänt inställningar"
362
-
363
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
364
- msgid "Invoice Number Options"
365
- msgstr "Fakturanummer inställningar"
366
-
367
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
368
- msgid "Header Options"
369
- msgstr "Heder inställningar"
370
-
371
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
372
- msgid "Body Options"
373
- msgstr ""
374
-
375
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
376
- msgid "Footer Options"
377
- msgstr "Footer inställningar"
378
-
379
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
380
- msgid "Visible Columns"
381
- msgstr "Synliga kolumner "
382
-
383
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
384
- msgid "These are the general template options."
385
- msgstr "Detta är de generella mallalternativ."
386
-
387
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
388
- msgid "These are the invoice number options."
389
- msgstr "Dessa är fakturanummer alternativ."
390
-
391
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
392
- msgid "The header will be visible on every page. "
393
- msgstr "Hedern kommer visas på alla sidor."
394
-
395
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
396
- msgid "The footer will be visible on every page."
397
- msgstr ""
398
-
399
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
400
- msgid ""
401
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
402
- "order payment method."
403
- msgstr ""
404
-
405
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
406
- msgid "Enable or disable the columns."
407
- msgstr "Aktivera eller avaktivera kolumner."
408
-
409
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
410
- msgid "File is invalid and contains either '..' or './'."
411
- msgstr ""
412
-
413
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
414
- msgid "File is invalid and contains ':' after the first character."
415
- msgstr ""
416
-
417
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
418
- msgid "File should be less then 2MB."
419
- msgstr ""
420
-
421
- #: includes/be-woocommerce-pdf-invoices.php:126
422
- #, php-format
423
- msgid ""
424
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
425
- "PDF Invoices</strong></a>."
426
- msgstr ""
427
-
428
- #: includes/be-woocommerce-pdf-invoices.php:136
429
- msgid "Settings"
430
- msgstr ""
431
-
432
- #: includes/be-woocommerce-pdf-invoices.php:137
433
- msgid "Premium"
434
- msgstr ""
435
-
436
- #: includes/be-woocommerce-pdf-invoices.php:182
437
- msgid "Invalid request"
438
- msgstr ""
439
-
440
- #: includes/be-woocommerce-pdf-invoices.php:185
441
- msgid "Invalid order ID"
442
- msgstr ""
443
-
444
- #: includes/be-woocommerce-pdf-invoices.php:191
445
- msgid "Access denied"
446
- msgstr ""
447
-
448
- #: includes/be-woocommerce-pdf-invoices.php:218
449
- msgid "General"
450
- msgstr "Allmänt"
451
-
452
- #: includes/be-woocommerce-pdf-invoices.php:242
453
- msgid "Invoices"
454
- msgstr "Faktura"
455
-
456
- #: includes/be-woocommerce-pdf-invoices.php:281
457
- #, php-format
458
- msgid ""
459
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
460
- "%s★★★★★%s rating. A huge thank you in advance!"
461
- msgstr ""
462
-
463
- #: includes/be-woocommerce-pdf-invoices.php:282
464
- #, php-format
465
- msgid "Version %s"
466
- msgstr ""
467
-
468
- #: includes/be-woocommerce-pdf-invoices.php:356
469
- msgid "PDF Invoice"
470
- msgstr "PDF Faktura"
471
-
472
- #: includes/be-woocommerce-pdf-invoices.php:382
473
- msgid "Invoiced on:"
474
- msgstr "Fakturerad"
475
-
476
- #: includes/be-woocommerce-pdf-invoices.php:386
477
- msgid "Invoice number:"
478
- msgstr "Fakturanummer"
479
-
480
- #: includes/be-woocommerce-pdf-invoices.php:424
481
- msgid "View invoice"
482
- msgstr "Visa Faktura"
483
-
484
- #: includes/be-woocommerce-pdf-invoices.php:424
485
- msgid "View"
486
- msgstr "Visa"
487
-
488
- #: includes/be-woocommerce-pdf-invoices.php:425
489
- msgid "Cancel invoice"
490
- msgstr "Avbryt Faktura"
491
-
492
- #: includes/be-woocommerce-pdf-invoices.php:425
493
- msgid "Cancel"
494
- msgstr "Avbryt"
495
-
496
- #: includes/be-woocommerce-pdf-invoices.php:427
497
- msgid "Are you sure to delete the invoice?"
498
- msgstr "Är du säker på att du vill radera fakturan?"
499
-
500
- #: includes/be-woocommerce-pdf-invoices.php:430
501
- msgid "Create invoice"
502
- msgstr "Skapa faktura"
503
-
504
- #: includes/be-woocommerce-pdf-invoices.php:430
505
- msgid "Create"
506
- msgstr "Skapa"
507
-
508
- #: includes/be-woocommerce-pdf-invoices.php:453
509
- #, php-format
510
- msgid "Invoice %s (PDF)"
511
- msgstr "Faktura %s (PDF)"
512
-
513
- #: includes/be-woocommerce-pdf-invoices.php:563
514
- #, php-format
515
- msgid ""
516
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
517
- "really need your ★★★★★ rating. It will support future development big-time. "
518
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
519
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
520
- "done it!</a>"
521
- msgstr ""
522
-
523
- #: includes/class-bewpi-invoice.php:48
524
- msgid ""
525
- "Whoops, no template found. Please select a template on the Template settings "
526
- "page first."
527
- msgstr ""
528
-
529
- #: includes/partials/settings-sidebar.php:2
530
- msgid "WooCommerce PDF Invoices Premium"
531
- msgstr ""
532
-
533
- #: includes/partials/settings-sidebar.php:4
534
- msgid ""
535
- "This plugin offers a premium version which comes with the following features:"
536
- msgstr ""
537
-
538
- #: includes/partials/settings-sidebar.php:5
539
- msgid "Bill periodically by generating and sending global invoices."
540
- msgstr ""
541
-
542
- #: includes/partials/settings-sidebar.php:6
543
- msgid "Add additional PDF's to customer invoices."
544
- msgstr ""
545
-
546
- #: includes/partials/settings-sidebar.php:7
547
- msgid "Send customer invoices directly to suppliers and others."
548
- msgstr ""
549
-
550
- #: includes/partials/settings-sidebar.php:8
551
- #, php-format
552
- msgid ""
553
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
554
- msgstr ""
555
-
556
- #: includes/partials/settings-sidebar.php:10
557
- msgid "Learn more"
558
- msgstr ""
559
-
560
- #: includes/partials/settings-sidebar.php:13
561
- msgid "Stay up-to-date"
562
- msgstr ""
563
-
564
- #: includes/partials/settings-sidebar.php:17
565
- msgid ""
566
- "We're constantly developing new features, stay up-to-date by subscribing to "
567
- "our newsletter."
568
- msgstr ""
569
-
570
- #: includes/partials/settings-sidebar.php:23
571
- msgid "Your email address"
572
- msgstr ""
573
-
574
- #: includes/partials/settings-sidebar.php:29
575
- msgid "Signup"
576
- msgstr ""
577
-
578
- #: includes/partials/settings-sidebar.php:32
579
- msgid "No spam, ever. Unsubscribe at any time"
580
- msgstr ""
581
-
582
- #: includes/partials/settings-sidebar.php:41
583
- msgid "About"
584
- msgstr ""
585
-
586
- #: includes/partials/settings-sidebar.php:43
587
- msgid ""
588
- "This plugin is an open source project wich aims to fill the invoicing gap of "
589
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
590
- msgstr ""
591
-
592
- #: includes/partials/settings-sidebar.php:45
593
- msgid "<b>Version</b>: "
594
- msgstr ""
595
-
596
- #: includes/partials/settings-sidebar.php:47
597
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
598
- msgstr ""
599
-
600
- #: includes/partials/settings-sidebar.php:50
601
- msgid "Support"
602
- msgstr ""
603
-
604
- #: includes/partials/settings-sidebar.php:52
605
- msgid ""
606
- "We will never ask for donations, but to garantee future development, we do "
607
- "need your support. Please show us your appreciation by leaving a <a href="
608
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
609
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
610
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
611
- msgstr ""
612
-
613
- #: includes/partials/settings-sidebar.php:72
614
- msgid ""
615
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
616
- msgstr ""
617
-
618
- #: includes/partials/settings-sidebar.php:77
619
- msgid "Need Help?"
620
- msgstr ""
621
-
622
- #: includes/partials/settings-sidebar.php:79
623
- msgid "Frequently Asked Questions"
624
- msgstr ""
625
-
626
- #: includes/partials/settings-sidebar.php:80
627
- msgid "Support forum"
628
- msgstr ""
629
-
630
- #: includes/partials/settings-sidebar.php:81
631
- msgid "Request a feature"
632
- msgstr ""
633
-
634
- #: includes/partials/settings-sidebar.php:82
635
- msgid "Email us"
636
- msgstr ""
637
-
638
- #: includes/templates/invoices/global/micro/body.php:5
639
- #: includes/templates/invoices/simple/micro/body.php:5
640
- msgid "Invoice to"
641
- msgstr "Faktureringsinformation"
642
-
643
- #: includes/templates/invoices/global/micro/body.php:7
644
- #: includes/templates/invoices/simple/micro/body.php:7
645
- #, php-format
646
- msgid "Phone: %s"
647
- msgstr ""
648
-
649
- #: includes/templates/invoices/global/micro/body.php:11
650
- #: includes/templates/invoices/simple/micro/body.php:11
651
- msgid "Ship to"
652
- msgstr "Leveransadress"
653
-
654
- #: includes/templates/invoices/global/micro/body.php:22
655
- msgid "Global Invoice"
656
- msgstr ""
657
-
658
- #: includes/templates/invoices/global/micro/body.php:40
659
- #: includes/templates/invoices/simple/micro/body.php:44
660
- msgid "Description"
661
- msgstr "Beskrivning"
662
-
663
- #: includes/templates/invoices/global/micro/body.php:48
664
- #: includes/templates/invoices/simple/micro/body.php:52
665
- msgid "Cost"
666
- msgstr "Pris"
667
-
668
- #: includes/templates/invoices/global/micro/body.php:50
669
- #: includes/templates/invoices/simple/micro/body.php:54
670
- msgid "Qty"
671
- msgstr "Antal"
672
-
673
- #: includes/templates/invoices/global/micro/body.php:56
674
- #: includes/templates/invoices/simple/micro/body.php:60
675
- msgid "VAT"
676
- msgstr "Moms"
677
-
678
- #: includes/templates/invoices/global/micro/body.php:67
679
- #: includes/templates/invoices/global/micro/body.php:280
680
- #: includes/templates/invoices/simple/micro/body.php:71
681
- #: includes/templates/invoices/simple/micro/body.php:145
682
- msgid "Total"
683
- msgstr "Total"
684
-
685
- #: includes/templates/invoices/global/micro/body.php:75
686
- #, php-format
687
- msgid "Order #%d - %s"
688
- msgstr "Order #%d - %s"
689
-
690
- #: includes/templates/invoices/global/micro/body.php:255
691
- #: includes/templates/invoices/simple/micro/body.php:120
692
- msgid "Fee"
693
- msgstr "Avgift"
694
-
695
- #: includes/templates/invoices/global/micro/body.php:287
696
- #: includes/templates/invoices/simple/micro/body.php:152
697
- msgid "Refunded"
698
- msgstr "Betalas"
699
-
700
- #: includes/templates/invoices/global/micro/footer.php:15
701
- #: includes/templates/invoices/simple/micro/footer.php:18
702
- #, php-format
703
- msgid "%s of %s"
704
- msgstr ""
705
-
706
- #: includes/templates/invoices/simple/micro/body.php:22
707
- msgid "Invoice"
708
- msgstr "Faktura"
709
-
710
- #: includes/templates/invoices/simple/micro/body.php:25
711
- #, php-format
712
- msgid "Order Number: %s"
713
- msgstr "Ordernummer: %s"
714
-
715
- #: includes/templates/invoices/simple/micro/body.php:26
716
- #, php-format
717
- msgid "Order Date: %s"
718
- msgstr "Orderdatum: %s"
719
-
720
- #: includes/templates/invoices/simple/micro/body.php:289
721
- #: includes/templates/invoices/simple/micro/body.php:294
722
- msgid "Customer note"
723
- msgstr "Kund anteckning"
724
-
725
- #~ msgid "Feel free to use "
726
- #~ msgstr "Känn dig fri att använda"
727
-
728
- #~ msgid "Intro text"
729
- #~ msgstr "Intro text"
730
-
731
- #~ msgid "Tax"
732
- #~ msgstr "Moms"
733
-
734
- #~ msgid ""
735
- #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
736
- #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
737
- #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
738
- #~ "away!</a> - <a href='%s'>No, already done it!</a>"
739
- #~ msgstr ""
740
- #~ "Tack för att du använder <b> WooCommerce PDF Fakturor </ b>. Vänligen "
741
- #~ "visa oss din uppskattning genom att lämna en ★★★★★ betyg. Ett stort tack "
742
- #~ " förhand! <br /> <a href='%s' target='_blank'> Ja, kommer att göra det "
743
- #~ "direkt </a> -! <a href='%s'> Nej, redan gjort det </a>"
744
-
745
- #~ msgid "%sPayment%s via"
746
- #~ msgstr "%sBetalning%s via"
747
-
748
- #~ msgid "PAID"
749
- #~ msgstr "BETALD"
750
-
751
- #~ msgid "UNPAID"
752
- #~ msgstr "OBETALD"
753
-
754
- #~ msgid "Order Number %s"
755
- #~ msgstr "Ordernummer: %s"
756
-
757
- #~ msgid "Order Date %s"
758
- #~ msgstr "Orderdatum: %s"
759
-
760
- #~ msgid "Download invoice (PDF)"
761
- #~ msgstr "Ladda ner faktura (PDF)"
762
-
763
- #~ msgid ""
764
- #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
765
- #~ "required."
766
- #~ msgstr ""
767
- #~ "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
768
- #~ "obligatorisk."
769
-
770
- #~ msgid "VAT %s"
771
- #~ msgstr "MOMS %s"
772
-
773
- #~ msgid "General Settings"
774
- #~ msgstr "Allmänna inställningar"
775
-
776
- #~ msgid ""
777
- #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
778
- #~ msgstr ""
779
- #~ "Skicka automatiskt faktura till Google Drive, Egnyte, Dropbox eller "
780
- #~ "OneDrive"
781
-
782
- #~ msgid "For bookkeeping purposes."
783
- #~ msgstr "För bokföringsändamål."
784
-
785
- #~ msgid "Signup at %s and enter your account below."
786
- #~ msgstr "Registrera dig på %s och ange ditt konto nedan."
787
-
788
- #~ msgid "Enter your %s account."
789
- #~ msgstr "Ange ditt %s konto."
790
-
791
- #~ msgid "Invalid type of Email."
792
- #~ msgstr "Ogiltig e-postadress"
793
-
794
- #~ msgid "Please don't try to change the values."
795
- #~ msgstr "Vänligen ändra inte dessa värden."
796
-
797
- #~ msgid "Invalid Email address."
798
- #~ msgstr "Ogiltig e-postadress"
799
-
800
- #~ msgid "Allowed tags: "
801
- #~ msgstr "tillåtna taggar: "
802
-
803
- #~ msgid "Template Settings"
804
- #~ msgstr "Mall inställningar"
805
-
806
- #~ msgid "Invoice number type"
807
- #~ msgstr "Fakturanummer typ"
808
-
809
- #~ msgid "Next invoice number"
810
- #~ msgstr "Nästa faktura nummer"
811
-
812
- #~ msgid "Number of digits"
813
- #~ msgstr "Antal siffror"
814
-
815
- #~ msgid "Invoice number prefix"
816
- #~ msgstr "Fakturanummer prefix"
817
-
818
- #~ msgid "Invoice number suffix"
819
- #~ msgstr "Fakturanummer suffixet"
820
-
821
- #~ msgid "Invoice number format"
822
- #~ msgstr "Fakturanummer format"
823
-
824
- #~ msgid "Reset on 1st January"
825
- #~ msgstr "Återställ den 1 januari"
826
-
827
- #~ msgid "Invoice date format"
828
- #~ msgstr "Fakturadatumformat"
829
-
830
- #~ msgid "Order date format"
831
- #~ msgstr "Order datum format"
832
-
833
- #~ msgid "Show SKU"
834
- #~ msgstr "Visa SKU"
835
-
836
- #~ msgid "Show discount"
837
- #~ msgstr "Visa rabatt"
838
-
839
- #~ msgid "Show subtotal"
840
- #~ msgstr "Visa delsumma"
841
-
842
- #~ msgid "Show tax"
843
- #~ msgstr "Visa moms"
844
-
845
- #~ msgid "Show shipping"
846
- #~ msgstr "Visa frakt"
847
-
848
- #~ msgid "Color theme of the invoice."
849
- #~ msgstr "Färgtema på fakturan"
850
-
851
- #~ msgid ""
852
- #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
853
- #~ "png."
854
- #~ msgstr ""
855
- #~ "Vänligen ladda upp en bild mindre än 200KB i formaten jpeg, jpg or png."
856
-
857
- #~ msgid "Invoice number to use for next invoice."
858
- #~ msgstr "Fakturanummer som ska användas för nästa faktura."
859
-
860
- #~ msgid "Number of zero digits."
861
- #~ msgstr "Antal nollor"
862
-
863
- #~ msgid "Prefix text for the invoice number. Not required."
864
- #~ msgstr "Prefix text för fakturanummer. Inte nödvändig."
865
-
866
- #~ msgid "Suffix text for the invoice number. Not required."
867
- #~ msgstr "Suffix text för fakturanummer. Inte nödvändig."
868
-
869
- #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
870
- #~ msgstr "Tillgängliga platshållare är %s %s %s %s och %s. %s krävs."
871
-
872
- #~ msgid "Reset on the first of January."
873
- #~ msgstr "Återställ den första januari."
874
-
875
- #~ msgid "%sFormat%s of the date. Examples: %s or %s."
876
- #~ msgstr "%sFormat%s av datum. Exempel: %s eller %s."
877
-
878
- #~ msgid "Order date %sformat%s. Examples: %s or %s."
879
- #~ msgstr "Orderdatum %sformat%s. Exempel: %s eller %s."
880
-
881
- #~ msgid "Invalid template."
882
- #~ msgstr "Ogiltig mall"
883
-
884
- #~ msgid "Invalid color theme code."
885
- #~ msgstr "Ogiltig färg kod"
886
-
887
- #~ msgid "Invalid company name."
888
- #~ msgstr "Ogiltigt företagsnamn"
889
-
890
- #~ msgid "Invalid input into one of the textarea's."
891
- #~ msgstr "Ogiltig värde i ett utav textområdena."
892
-
893
- #~ msgid "Invalid type of invoice number."
894
- #~ msgstr "Ogiltig typ av fakturanummer."
895
-
896
- #~ msgid "Invalid (next) invoice number."
897
- #~ msgstr "Ogiltigt (nästa) fakturanummer."
898
-
899
- #~ msgid "Invalid invoice number digits."
900
- #~ msgstr "Ogiltiga fakturanummer siffror."
901
-
902
- #~ msgid "Invalid invoice number format."
903
- #~ msgstr "Ogiltigt fakturanummer format."
904
-
905
- #~ msgid "Invalid date format."
906
- #~ msgstr "Ogiltigt datumformat."
907
-
908
- #~ msgid "Please upload image with extension jpg, jpeg or png."
909
- #~ msgstr "Ladda upp bild med förlängning jpg, jpeg eller png."
910
-
911
- #~ msgid "Quantity"
912
- #~ msgstr "Antal"
913
-
914
- #~ msgid "Unit price"
915
- #~ msgstr "Pris per styck"
916
-
917
- #~ msgid ""
918
- #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
919
- #~ msgstr ""
920
- #~ "Använd [prefix], [suffix] och [number] som platshållare. [number] är "
921
- #~ "obiligatoriskt."
922
-
923
- #~ msgid "Signup at %s and enter your account beyond."
924
- #~ msgstr "Registrera på %s och ange ditt konto utanför."
925
-
926
- #~ msgid "%sFormat%s of the date. Examples: %s or %s"
927
- #~ msgstr "%sformat%s av datum. Exempel: %s eller %s"
928
-
929
- #~ msgid "Show invoice"
930
- #~ msgstr "Visa faktura"
931
-
932
- #~ msgid "%sFormat%s of the date."
933
- #~ msgstr "%sFormat%s av datum."
934
-
935
- #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
936
- #~ msgstr "Använd [suffix], [prefix] och [number] som platshållare."
937
-
938
- #~ msgid "Choose the color witch fits your company."
939
- #~ msgstr "Välj den färg som passar ditt företag."
940
-
941
- #~ msgid ""
942
- #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
943
- #~ "[number] as placeholders."
944
- #~ msgstr ""
945
- #~ "Välj format för fakturanummer. Använd [prefix], [suffix] och [nummer] som "
946
- #~ "indikationer."
947
-
948
- #~ msgid "Text to greet, congratulate or thank the customer. "
949
- #~ msgstr "Text att hälsa, gratulera eller tacka kunden."
950
-
951
- #~ msgid "Some text"
952
- #~ msgstr "viss text"
953
-
954
- #~ msgid "Text to greet, congratulate or thank the customer."
955
- #~ msgstr "Text att hälsa, gratulera eller tacka kunden."
956
-
957
- #~ msgid "Start all over on the first of January."
958
- #~ msgstr "Börja om på den första januari."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2016-03-04 14:25+0100\n"
5
+ "PO-Revision-Date: 2016-03-04 14:25+0100\n"
6
+ "Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
7
+ "Language-Team: \n"
8
+ "Language: sv\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/abstracts/abstract-bewpi-document.php:64
23
+ msgid "Paid"
24
+ msgstr "Betald"
25
+
26
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
27
+ #, php-format
28
+ msgid ""
29
+ "Could not create invoice. In order to reset invoice number with %d, delete "
30
+ "all invoices with invoice number %s and greater."
31
+ msgstr ""
32
+
33
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
34
+ #, php-format
35
+ msgid ""
36
+ "Could not create invoice. Invoice with invoice number %s already exists. "
37
+ "First delete invoice and try again."
38
+ msgstr ""
39
+
40
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
41
+ #, php-format
42
+ msgid ""
43
+ "Invoice with invoice number %s not found. First create invoice and try again."
44
+ msgstr ""
45
+
46
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
47
+ #, php-format
48
+ msgid "VAT Number: %s"
49
+ msgstr ""
50
+
51
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
52
+ #, php-format
53
+ msgid "Purchase Order Number: %s"
54
+ msgstr ""
55
+
56
+ #: includes/abstracts/abstract-bewpi-setting.php:98
57
+ msgid "Allowed HTML tags: "
58
+ msgstr ""
59
+
60
+ #: includes/abstracts/abstract-bewpi-setting.php:173
61
+ msgid "Remove logo"
62
+ msgstr "Ta bort logo"
63
+
64
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
65
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
66
+ msgid "Attach to Email"
67
+ msgstr "Fäst i e-post"
68
+
69
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
70
+ msgid "Processing order"
71
+ msgstr "Pågående order"
72
+
73
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
74
+ msgid "Completed order"
75
+ msgstr "Genomförd beställning"
76
+
77
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
78
+ msgid "Customer invoice"
79
+ msgstr "Kundfaktura"
80
+
81
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
82
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
83
+ msgid "Do not attach"
84
+ msgstr ""
85
+
86
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
87
+ msgid "Attach to New order Email"
88
+ msgstr "Fäst på Ny order E-post"
89
+
90
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
91
+ msgid "View PDF"
92
+ msgstr ""
93
+
94
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
95
+ msgid "Download"
96
+ msgstr ""
97
+
98
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
99
+ msgid "Open in new browser tab/window"
100
+ msgstr ""
101
+
102
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
103
+ msgid "Enable download from account"
104
+ msgstr ""
105
+
106
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
107
+ msgid ""
108
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
109
+ "page.</div>"
110
+ msgstr ""
111
+
112
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
113
+ msgid "Enable Email It In"
114
+ msgstr ""
115
+
116
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
117
+ msgid "Email It In account"
118
+ msgstr ""
119
+
120
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
121
+ #, php-format
122
+ msgid "Get your account from your Email It In %suser account%s."
123
+ msgstr ""
124
+
125
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
126
+ msgid "Enable mPDF debugging"
127
+ msgstr ""
128
+
129
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
130
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
131
+ msgstr ""
132
+
133
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
134
+ msgid "Email Options"
135
+ msgstr "E-post inställningar"
136
+
137
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
138
+ msgid "Download Options"
139
+ msgstr ""
140
+
141
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
142
+ msgid "Cloud Storage Options"
143
+ msgstr "Moln lagring inställningar"
144
+
145
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
146
+ msgid "Debug Options"
147
+ msgstr ""
148
+
149
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
150
+ #, php-format
151
+ msgid ""
152
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
153
+ "Egnyte and enter your account below."
154
+ msgstr ""
155
+
156
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
157
+ #: includes/be-woocommerce-pdf-invoices.php:219
158
+ msgid "Template"
159
+ msgstr "Mall"
160
+
161
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
162
+ msgid "Color theme"
163
+ msgstr "Färg tema"
164
+
165
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
166
+ msgid "Date format"
167
+ msgstr "Datum format"
168
+
169
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
170
+ #, php-format
171
+ msgid "%sFormat%s of invoice date and order date."
172
+ msgstr "%sFormat%s på fakturadatum och orderdatum."
173
+
174
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
175
+ msgid "Display prices including tax"
176
+ msgstr "Visa pris inklusive moms"
177
+
178
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
179
+ msgid ""
180
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
181
+ "still be excluding tax, so disable it within the visible columns section."
182
+ msgstr ""
183
+
184
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
185
+ msgid "Shipping taxable"
186
+ msgstr ""
187
+
188
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
189
+ msgid "Enable to display subtotal including shipping."
190
+ msgstr ""
191
+
192
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
193
+ msgid "Mark invoice as paid"
194
+ msgstr "Markera som betald"
195
+
196
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
197
+ msgid "Invoice will be watermarked when order has been paid."
198
+ msgstr "Faktura kommer att få en vattenstämpel när beställning har betalats."
199
+
200
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
201
+ msgid "Company name"
202
+ msgstr "Företagsnamn"
203
+
204
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
205
+ msgid "Company logo"
206
+ msgstr "Företagslogi"
207
+
208
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
209
+ msgid "Company address"
210
+ msgstr "Företagsadress"
211
+
212
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
213
+ msgid "Displayed in upper-right corner near logo."
214
+ msgstr ""
215
+
216
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
217
+ msgid "Company details"
218
+ msgstr "Företags detaljer"
219
+
220
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
221
+ msgid "Displayed below company address."
222
+ msgstr ""
223
+
224
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
225
+ msgid "Thank you text"
226
+ msgstr ""
227
+
228
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
229
+ msgid "Displayed in big colored bar directly after invoice total."
230
+ msgstr ""
231
+
232
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
233
+ msgid "Thank you for your purchase!"
234
+ msgstr ""
235
+
236
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
237
+ msgid "Show customer notes"
238
+ msgstr "Visa kund anteckningar"
239
+
240
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
241
+ msgid "Terms & conditions, policies etc."
242
+ msgstr "Regler och villkor, politik etc."
243
+
244
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
245
+ #, php-format
246
+ msgid ""
247
+ "Displayed below customer notes and above footer. Want to attach additional "
248
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
249
+ msgstr ""
250
+
251
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
252
+ msgid "Items will be shipped within 2 days."
253
+ msgstr ""
254
+
255
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
256
+ msgid "Left footer column."
257
+ msgstr ""
258
+
259
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
260
+ #, php-format
261
+ msgid "<b>Payment method</b> %s"
262
+ msgstr ""
263
+
264
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
265
+ msgid "Right footer column."
266
+ msgstr ""
267
+
268
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
269
+ msgid "Leave empty to show page numbering."
270
+ msgstr ""
271
+
272
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
273
+ msgid "Type"
274
+ msgstr "Typ"
275
+
276
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
277
+ msgid "WooCommerce order number"
278
+ msgstr "WooCommerce order nummer"
279
+
280
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
281
+ msgid "Sequential number"
282
+ msgstr "Löpnummer"
283
+
284
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
285
+ msgid "Reset invoice counter"
286
+ msgstr "Återställ faktura räknare"
287
+
288
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
289
+ msgid "Next"
290
+ msgstr "Nästa"
291
+
292
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
293
+ msgid ""
294
+ "Reset the invoice counter and start counting from given invoice number.<br/"
295
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
296
+ "editable by selecting checkbox. Next number needs to be lower then highest "
297
+ "existing invoice number or delete invoices first."
298
+ msgstr ""
299
+
300
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
301
+ msgid "Digits"
302
+ msgstr "Siffror"
303
+
304
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
305
+ msgid "[prefix]"
306
+ msgstr ""
307
+
308
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
309
+ msgid "[suffix]"
310
+ msgstr ""
311
+
312
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
313
+ msgid "Format"
314
+ msgstr "Format"
315
+
316
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
317
+ #, php-format
318
+ msgid ""
319
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
320
+ "slashes aren't supported."
321
+ msgstr ""
322
+
323
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
324
+ msgid "Reset on 1st of january"
325
+ msgstr "Återställ den första januari"
326
+
327
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
328
+ #: includes/templates/invoices/global/micro/body.php:44
329
+ #: includes/templates/invoices/simple/micro/body.php:48
330
+ msgid "SKU"
331
+ msgstr "SKU"
332
+
333
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
334
+ #: includes/templates/invoices/global/micro/body.php:236
335
+ #: includes/templates/invoices/simple/micro/body.php:101
336
+ msgid "Subtotal"
337
+ msgstr "Delsumma"
338
+
339
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
340
+ msgid "Tax (item)"
341
+ msgstr ""
342
+
343
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
344
+ msgid "Tax (total)"
345
+ msgstr ""
346
+
347
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
348
+ #: includes/templates/invoices/global/micro/body.php:220
349
+ #: includes/templates/invoices/simple/micro/body.php:85
350
+ msgid "Discount"
351
+ msgstr "Rabatt"
352
+
353
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
354
+ #: includes/templates/invoices/global/micro/body.php:228
355
+ #: includes/templates/invoices/global/micro/body.php:244
356
+ #: includes/templates/invoices/simple/micro/body.php:93
357
+ #: includes/templates/invoices/simple/micro/body.php:109
358
+ msgid "Shipping"
359
+ msgstr "Frakt"
360
+
361
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
362
+ msgid "General Options"
363
+ msgstr "Allmänt inställningar"
364
+
365
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
366
+ msgid "Invoice Number Options"
367
+ msgstr "Fakturanummer inställningar"
368
+
369
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
370
+ msgid "Header Options"
371
+ msgstr "Heder inställningar"
372
+
373
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
374
+ msgid "Body Options"
375
+ msgstr ""
376
+
377
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
378
+ msgid "Footer Options"
379
+ msgstr "Footer inställningar"
380
+
381
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
382
+ msgid "Visible Columns"
383
+ msgstr "Synliga kolumner "
384
+
385
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
386
+ msgid "These are the general template options."
387
+ msgstr "Detta är de generella mallalternativ."
388
+
389
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
390
+ msgid "These are the invoice number options."
391
+ msgstr "Dessa är fakturanummer alternativ."
392
+
393
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
394
+ msgid "The header will be visible on every page. "
395
+ msgstr "Hedern kommer visas på alla sidor."
396
+
397
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
398
+ msgid "The footer will be visible on every page."
399
+ msgstr ""
400
+
401
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
402
+ msgid ""
403
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
404
+ "order payment method."
405
+ msgstr ""
406
+
407
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
408
+ msgid "Enable or disable the columns."
409
+ msgstr "Aktivera eller avaktivera kolumner."
410
+
411
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
412
+ msgid "File is invalid and contains either '..' or './'."
413
+ msgstr ""
414
+
415
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
416
+ msgid "File is invalid and contains ':' after the first character."
417
+ msgstr ""
418
+
419
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
420
+ msgid "File should be less then 2MB."
421
+ msgstr ""
422
+
423
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
424
+ msgid "Purchase email"
425
+ msgstr ""
426
+
427
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
428
+ msgid ""
429
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
430
+ "\">wcpdfinvoices.com</a>."
431
+ msgstr ""
432
+
433
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
434
+ msgid "License"
435
+ msgstr ""
436
+
437
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
438
+ msgid ""
439
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
440
+ "\">wcpdfinvoices.com</a> to receive updates."
441
+ msgstr ""
442
+
443
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
444
+ msgid "Processing Renewal Order"
445
+ msgstr ""
446
+
447
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
448
+ msgid "Completed Renewal Order"
449
+ msgstr ""
450
+
451
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
452
+ msgid "Customer Renewal Invoice"
453
+ msgstr ""
454
+
455
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
456
+ msgid "Attach to New Renewal Order Email"
457
+ msgstr ""
458
+
459
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
460
+ msgid "PDF attachment"
461
+ msgstr ""
462
+
463
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
464
+ msgid "Add for example a PDF with your terms & conditions."
465
+ msgstr ""
466
+
467
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
468
+ msgid "Suppliers"
469
+ msgstr ""
470
+
471
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
472
+ msgid ""
473
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
474
+ "adding there Email It In email addresses. Email addresses need to be "
475
+ "seperated by comma's."
476
+ msgstr ""
477
+
478
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
479
+ msgid ""
480
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
481
+ "generate a global invoice from there account</div>"
482
+ msgstr ""
483
+
484
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
485
+ msgid "Customer generation period"
486
+ msgstr ""
487
+
488
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
489
+ msgid ""
490
+ "Should your customers have the ability to generate a global invoice by month "
491
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
492
+ msgstr ""
493
+
494
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
495
+ msgid "Month"
496
+ msgstr ""
497
+
498
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
499
+ msgid "Year"
500
+ msgstr ""
501
+
502
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
503
+ msgid "Send to your Cloud Storage"
504
+ msgstr ""
505
+
506
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
507
+ msgid "Email to customer"
508
+ msgstr ""
509
+
510
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
511
+ msgid "Email to supplier(s)"
512
+ msgstr ""
513
+
514
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
515
+ msgid "Email subject"
516
+ msgstr ""
517
+
518
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
519
+ msgid "Subject for the global invoice email."
520
+ msgstr ""
521
+
522
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
523
+ msgid "Email message"
524
+ msgstr ""
525
+
526
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
527
+ msgid "Message for the global invoice email."
528
+ msgstr ""
529
+
530
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
531
+ msgid "Premium Options"
532
+ msgstr ""
533
+
534
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
535
+ msgid "Woocommerce Subscriptions Email Options"
536
+ msgstr ""
537
+
538
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
539
+ msgid "Attachment Options"
540
+ msgstr ""
541
+
542
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
543
+ msgid "Supplier Options"
544
+ msgstr ""
545
+
546
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
547
+ msgid "Global Invoice Options"
548
+ msgstr ""
549
+
550
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
551
+ msgid ""
552
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
553
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
554
+ "should be activated in order to work."
555
+ msgstr ""
556
+
557
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
558
+ msgid "Attach a PDF to the invoice."
559
+ msgstr ""
560
+
561
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
562
+ msgid "Send customer invoice automatically to your supplier(s)."
563
+ msgstr ""
564
+
565
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
566
+ msgid ""
567
+ "Generate global invoices on Orders page by selecting multiple orders and "
568
+ "applying action or let customers generate periodically from My Account page."
569
+ msgstr ""
570
+
571
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
572
+ msgid "File to large."
573
+ msgstr ""
574
+
575
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
576
+ msgid "Only PDF files are allowed."
577
+ msgstr ""
578
+
579
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
580
+ msgid "Remove"
581
+ msgstr ""
582
+
583
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
584
+ msgid "Choose"
585
+ msgstr ""
586
+
587
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
588
+ msgid "Active"
589
+ msgstr ""
590
+
591
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
592
+ msgid "Inactive"
593
+ msgstr ""
594
+
595
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
596
+ #: includes/be-woocommerce-pdf-invoices.php:182
597
+ msgid "Invalid request"
598
+ msgstr ""
599
+
600
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
601
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
602
+ msgid "Something went wrong."
603
+ msgstr ""
604
+
605
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
606
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
607
+ msgid "No orders found."
608
+ msgstr ""
609
+
610
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
611
+ #: includes/be-woocommerce-pdf-invoices.php:136
612
+ msgid "Settings"
613
+ msgstr ""
614
+
615
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
616
+ #: includes/partials/settings-sidebar.php:50
617
+ msgid "Support"
618
+ msgstr ""
619
+
620
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
621
+ #, php-format
622
+ msgid ""
623
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
624
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
625
+ "the free version (%s+) and try again.</p>"
626
+ msgstr ""
627
+
628
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
629
+ #: includes/be-woocommerce-pdf-invoices.php:137
630
+ msgid "Premium"
631
+ msgstr ""
632
+
633
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
634
+ msgid "Generate global invoice"
635
+ msgstr ""
636
+
637
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
638
+ msgid "Please select more then one order."
639
+ msgstr ""
640
+
641
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
642
+ msgid "Global invoice successfully generated! "
643
+ msgstr ""
644
+
645
+ #: includes/be-woocommerce-pdf-invoices.php:126
646
+ #, php-format
647
+ msgid ""
648
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
649
+ "PDF Invoices</strong></a>."
650
+ msgstr ""
651
+
652
+ #: includes/be-woocommerce-pdf-invoices.php:185
653
+ msgid "Invalid order ID"
654
+ msgstr ""
655
+
656
+ #: includes/be-woocommerce-pdf-invoices.php:191
657
+ msgid "Access denied"
658
+ msgstr ""
659
+
660
+ #: includes/be-woocommerce-pdf-invoices.php:218
661
+ msgid "General"
662
+ msgstr "Allmänt"
663
+
664
+ #: includes/be-woocommerce-pdf-invoices.php:251
665
+ msgid "Invoices"
666
+ msgstr "Faktura"
667
+
668
+ #: includes/be-woocommerce-pdf-invoices.php:294
669
+ #, php-format
670
+ msgid ""
671
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
672
+ "%s★★★★★%s rating. A huge thank you in advance!"
673
+ msgstr ""
674
+
675
+ #: includes/be-woocommerce-pdf-invoices.php:295
676
+ #, php-format
677
+ msgid "Version %s"
678
+ msgstr ""
679
+
680
+ #: includes/be-woocommerce-pdf-invoices.php:369
681
+ msgid "PDF Invoice"
682
+ msgstr "PDF Faktura"
683
+
684
+ #: includes/be-woocommerce-pdf-invoices.php:395
685
+ msgid "Invoiced on:"
686
+ msgstr "Fakturerad"
687
+
688
+ #: includes/be-woocommerce-pdf-invoices.php:399
689
+ msgid "Invoice number:"
690
+ msgstr "Fakturanummer"
691
+
692
+ #: includes/be-woocommerce-pdf-invoices.php:438
693
+ msgid "View invoice"
694
+ msgstr "Visa Faktura"
695
+
696
+ #: includes/be-woocommerce-pdf-invoices.php:438
697
+ msgid "View"
698
+ msgstr "Visa"
699
+
700
+ #: includes/be-woocommerce-pdf-invoices.php:439
701
+ msgid "Cancel invoice"
702
+ msgstr "Avbryt Faktura"
703
+
704
+ #: includes/be-woocommerce-pdf-invoices.php:439
705
+ msgid "Cancel"
706
+ msgstr "Avbryt"
707
+
708
+ #: includes/be-woocommerce-pdf-invoices.php:441
709
+ msgid "Are you sure to delete the invoice?"
710
+ msgstr "Är du säker på att du vill radera fakturan?"
711
+
712
+ #: includes/be-woocommerce-pdf-invoices.php:444
713
+ msgid "Create invoice"
714
+ msgstr "Skapa faktura"
715
+
716
+ #: includes/be-woocommerce-pdf-invoices.php:444
717
+ msgid "Create"
718
+ msgstr "Skapa"
719
+
720
+ #: includes/be-woocommerce-pdf-invoices.php:467
721
+ #, php-format
722
+ msgid "Invoice %s (PDF)"
723
+ msgstr "Faktura %s (PDF)"
724
+
725
+ #: includes/be-woocommerce-pdf-invoices.php:577
726
+ #, php-format
727
+ msgid ""
728
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
729
+ "really need your ★★★★★ rating. It will support future development big-time. "
730
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
731
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
732
+ "done it!</a>"
733
+ msgstr ""
734
+
735
+ #: includes/class-bewpi-invoice.php:50
736
+ msgid ""
737
+ "Whoops, no template found. Please select a template on the Template settings "
738
+ "page first."
739
+ msgstr ""
740
+
741
+ #: includes/partials/customer-generation.php:1
742
+ msgid "Generate Global Invoice"
743
+ msgstr ""
744
+
745
+ #: includes/partials/customer-generation.php:11
746
+ msgid "Select a month"
747
+ msgstr ""
748
+
749
+ #: includes/partials/customer-generation.php:24
750
+ msgid "Select a year"
751
+ msgstr ""
752
+
753
+ #: includes/partials/customer-generation.php:38
754
+ msgid "Generate invoice"
755
+ msgstr ""
756
+
757
+ #: includes/partials/settings-sidebar.php:2
758
+ msgid "WooCommerce PDF Invoices Premium"
759
+ msgstr ""
760
+
761
+ #: includes/partials/settings-sidebar.php:4
762
+ msgid ""
763
+ "This plugin offers a premium version which comes with the following features:"
764
+ msgstr ""
765
+
766
+ #: includes/partials/settings-sidebar.php:5
767
+ msgid "Bill periodically by generating and sending global invoices."
768
+ msgstr ""
769
+
770
+ #: includes/partials/settings-sidebar.php:6
771
+ msgid "Add additional PDF's to customer invoices."
772
+ msgstr ""
773
+
774
+ #: includes/partials/settings-sidebar.php:7
775
+ msgid "Send customer invoices directly to suppliers and others."
776
+ msgstr ""
777
+
778
+ #: includes/partials/settings-sidebar.php:8
779
+ #, php-format
780
+ msgid ""
781
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
782
+ msgstr ""
783
+
784
+ #: includes/partials/settings-sidebar.php:10
785
+ msgid "Learn more"
786
+ msgstr ""
787
+
788
+ #: includes/partials/settings-sidebar.php:13
789
+ msgid "Stay up-to-date"
790
+ msgstr ""
791
+
792
+ #: includes/partials/settings-sidebar.php:17
793
+ msgid ""
794
+ "We're constantly developing new features, stay up-to-date by subscribing to "
795
+ "our newsletter."
796
+ msgstr ""
797
+
798
+ #: includes/partials/settings-sidebar.php:23
799
+ msgid "Your email address"
800
+ msgstr ""
801
+
802
+ #: includes/partials/settings-sidebar.php:29
803
+ msgid "Signup"
804
+ msgstr ""
805
+
806
+ #: includes/partials/settings-sidebar.php:32
807
+ msgid "No spam, ever. Unsubscribe at any time"
808
+ msgstr ""
809
+
810
+ #: includes/partials/settings-sidebar.php:41
811
+ msgid "About"
812
+ msgstr ""
813
+
814
+ #: includes/partials/settings-sidebar.php:43
815
+ msgid ""
816
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
817
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
818
+ msgstr ""
819
+
820
+ #: includes/partials/settings-sidebar.php:45
821
+ msgid "<b>Version</b>: "
822
+ msgstr ""
823
+
824
+ #: includes/partials/settings-sidebar.php:47
825
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
826
+ msgstr ""
827
+
828
+ #: includes/partials/settings-sidebar.php:52
829
+ msgid ""
830
+ "We will never ask for donations, but to garantee future development, we do "
831
+ "need your support. Please show us your appreciation by leaving a <a href="
832
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
833
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
834
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
835
+ msgstr ""
836
+
837
+ #: includes/partials/settings-sidebar.php:72
838
+ msgid ""
839
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
840
+ msgstr ""
841
+
842
+ #: includes/partials/settings-sidebar.php:77
843
+ msgid "Need Help?"
844
+ msgstr ""
845
+
846
+ #: includes/partials/settings-sidebar.php:79
847
+ msgid "Frequently Asked Questions"
848
+ msgstr ""
849
+
850
+ #: includes/partials/settings-sidebar.php:80
851
+ msgid "Support forum"
852
+ msgstr ""
853
+
854
+ #: includes/partials/settings-sidebar.php:81
855
+ msgid "Request a feature"
856
+ msgstr ""
857
+
858
+ #: includes/partials/settings-sidebar.php:82
859
+ msgid "Email us"
860
+ msgstr ""
861
+
862
+ #: includes/templates/invoices/global/micro/body.php:5
863
+ #: includes/templates/invoices/simple/micro/body.php:5
864
+ msgid "Invoice to"
865
+ msgstr "Faktureringsinformation"
866
+
867
+ #: includes/templates/invoices/global/micro/body.php:7
868
+ #: includes/templates/invoices/simple/micro/body.php:7
869
+ #, php-format
870
+ msgid "Phone: %s"
871
+ msgstr ""
872
+
873
+ #: includes/templates/invoices/global/micro/body.php:11
874
+ #: includes/templates/invoices/simple/micro/body.php:11
875
+ msgid "Ship to"
876
+ msgstr "Leveransadress"
877
+
878
+ #: includes/templates/invoices/global/micro/body.php:22
879
+ msgid "Global Invoice"
880
+ msgstr ""
881
+
882
+ #: includes/templates/invoices/global/micro/body.php:40
883
+ #: includes/templates/invoices/simple/micro/body.php:44
884
+ msgid "Description"
885
+ msgstr "Beskrivning"
886
+
887
+ #: includes/templates/invoices/global/micro/body.php:48
888
+ #: includes/templates/invoices/simple/micro/body.php:52
889
+ msgid "Cost"
890
+ msgstr "Pris"
891
+
892
+ #: includes/templates/invoices/global/micro/body.php:50
893
+ #: includes/templates/invoices/simple/micro/body.php:54
894
+ msgid "Qty"
895
+ msgstr "Antal"
896
+
897
+ #: includes/templates/invoices/global/micro/body.php:56
898
+ #: includes/templates/invoices/simple/micro/body.php:60
899
+ msgid "VAT"
900
+ msgstr "Moms"
901
+
902
+ #: includes/templates/invoices/global/micro/body.php:67
903
+ #: includes/templates/invoices/global/micro/body.php:280
904
+ #: includes/templates/invoices/simple/micro/body.php:71
905
+ #: includes/templates/invoices/simple/micro/body.php:145
906
+ msgid "Total"
907
+ msgstr "Total"
908
+
909
+ #: includes/templates/invoices/global/micro/body.php:75
910
+ #, php-format
911
+ msgid "Order #%d - %s"
912
+ msgstr "Order #%d - %s"
913
+
914
+ #: includes/templates/invoices/global/micro/body.php:255
915
+ #: includes/templates/invoices/simple/micro/body.php:120
916
+ msgid "Fee"
917
+ msgstr "Avgift"
918
+
919
+ #: includes/templates/invoices/global/micro/body.php:287
920
+ #: includes/templates/invoices/simple/micro/body.php:152
921
+ msgid "Refunded"
922
+ msgstr "Betalas"
923
+
924
+ #: includes/templates/invoices/global/micro/footer.php:15
925
+ #: includes/templates/invoices/simple/micro/footer.php:18
926
+ #, php-format
927
+ msgid "%s of %s"
928
+ msgstr ""
929
+
930
+ #: includes/templates/invoices/simple/micro/body.php:22
931
+ msgid "Invoice"
932
+ msgstr "Faktura"
933
+
934
+ #: includes/templates/invoices/simple/micro/body.php:25
935
+ #, php-format
936
+ msgid "Order Number: %s"
937
+ msgstr "Ordernummer: %s"
938
+
939
+ #: includes/templates/invoices/simple/micro/body.php:26
940
+ #, php-format
941
+ msgid "Order Date: %s"
942
+ msgstr "Orderdatum: %s"
943
+
944
+ #: includes/templates/invoices/simple/micro/body.php:289
945
+ #: includes/templates/invoices/simple/micro/body.php:294
946
+ msgid "Customer note"
947
+ msgstr "Kund anteckning"
948
+
949
+ #~ msgid "Feel free to use "
950
+ #~ msgstr "Känn dig fri att använda"
951
+
952
+ #~ msgid "Intro text"
953
+ #~ msgstr "Intro text"
954
+
955
+ #~ msgid "Tax"
956
+ #~ msgstr "Moms"
957
+
958
+ #~ msgid ""
959
+ #~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
960
+ #~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
961
+ #~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
962
+ #~ "away!</a> - <a href='%s'>No, already done it!</a>"
963
+ #~ msgstr ""
964
+ #~ "Tack för att du använder <b> WooCommerce PDF Fakturor </ b>. Vänligen "
965
+ #~ "visa oss din uppskattning genom att lämna en ★★★★★ betyg. Ett stort tack "
966
+ #~ "på förhand! <br /> <a href='%s' target='_blank'> Ja, kommer att göra det "
967
+ #~ "direkt </a> -! <a href='%s'> Nej, redan gjort det </a>"
968
+
969
+ #~ msgid "%sPayment%s via"
970
+ #~ msgstr "%sBetalning%s via"
971
+
972
+ #~ msgid "PAID"
973
+ #~ msgstr "BETALD"
974
+
975
+ #~ msgid "UNPAID"
976
+ #~ msgstr "OBETALD"
977
+
978
+ #~ msgid "Order Number %s"
979
+ #~ msgstr "Ordernummer: %s"
980
+
981
+ #~ msgid "Order Date %s"
982
+ #~ msgstr "Orderdatum: %s"
983
+
984
+ #~ msgid "Download invoice (PDF)"
985
+ #~ msgstr "Ladda ner faktura (PDF)"
986
+
987
+ #~ msgid ""
988
+ #~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
989
+ #~ "required."
990
+ #~ msgstr ""
991
+ #~ "Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
992
+ #~ "obligatorisk."
993
+
994
+ #~ msgid "VAT %s"
995
+ #~ msgstr "MOMS %s"
996
+
997
+ #~ msgid "General Settings"
998
+ #~ msgstr "Allmänna inställningar"
999
+
1000
+ #~ msgid ""
1001
+ #~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
1002
+ #~ msgstr ""
1003
+ #~ "Skicka automatiskt faktura till Google Drive, Egnyte, Dropbox eller "
1004
+ #~ "OneDrive"
1005
+
1006
+ #~ msgid "For bookkeeping purposes."
1007
+ #~ msgstr "För bokföringsändamål."
1008
+
1009
+ #~ msgid "Signup at %s and enter your account below."
1010
+ #~ msgstr "Registrera dig på %s och ange ditt konto nedan."
1011
+
1012
+ #~ msgid "Enter your %s account."
1013
+ #~ msgstr "Ange ditt %s konto."
1014
+
1015
+ #~ msgid "Invalid type of Email."
1016
+ #~ msgstr "Ogiltig e-postadress"
1017
+
1018
+ #~ msgid "Please don't try to change the values."
1019
+ #~ msgstr "Vänligen ändra inte dessa värden."
1020
+
1021
+ #~ msgid "Invalid Email address."
1022
+ #~ msgstr "Ogiltig e-postadress"
1023
+
1024
+ #~ msgid "Allowed tags: "
1025
+ #~ msgstr "tillåtna taggar: "
1026
+
1027
+ #~ msgid "Template Settings"
1028
+ #~ msgstr "Mall inställningar"
1029
+
1030
+ #~ msgid "Invoice number type"
1031
+ #~ msgstr "Fakturanummer typ"
1032
+
1033
+ #~ msgid "Next invoice number"
1034
+ #~ msgstr "Nästa faktura nummer"
1035
+
1036
+ #~ msgid "Number of digits"
1037
+ #~ msgstr "Antal siffror"
1038
+
1039
+ #~ msgid "Invoice number prefix"
1040
+ #~ msgstr "Fakturanummer prefix"
1041
+
1042
+ #~ msgid "Invoice number suffix"
1043
+ #~ msgstr "Fakturanummer suffixet"
1044
+
1045
+ #~ msgid "Invoice number format"
1046
+ #~ msgstr "Fakturanummer format"
1047
+
1048
+ #~ msgid "Reset on 1st January"
1049
+ #~ msgstr "Återställ den 1 januari"
1050
+
1051
+ #~ msgid "Invoice date format"
1052
+ #~ msgstr "Fakturadatumformat"
1053
+
1054
+ #~ msgid "Order date format"
1055
+ #~ msgstr "Order datum format"
1056
+
1057
+ #~ msgid "Show SKU"
1058
+ #~ msgstr "Visa SKU"
1059
+
1060
+ #~ msgid "Show discount"
1061
+ #~ msgstr "Visa rabatt"
1062
+
1063
+ #~ msgid "Show subtotal"
1064
+ #~ msgstr "Visa delsumma"
1065
+
1066
+ #~ msgid "Show tax"
1067
+ #~ msgstr "Visa moms"
1068
+
1069
+ #~ msgid "Show shipping"
1070
+ #~ msgstr "Visa frakt"
1071
+
1072
+ #~ msgid "Color theme of the invoice."
1073
+ #~ msgstr "Färgtema på fakturan"
1074
+
1075
+ #~ msgid ""
1076
+ #~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
1077
+ #~ "png."
1078
+ #~ msgstr ""
1079
+ #~ "Vänligen ladda upp en bild mindre än 200KB i formaten jpeg, jpg or png."
1080
+
1081
+ #~ msgid "Invoice number to use for next invoice."
1082
+ #~ msgstr "Fakturanummer som ska användas för nästa faktura."
1083
+
1084
+ #~ msgid "Number of zero digits."
1085
+ #~ msgstr "Antal nollor"
1086
+
1087
+ #~ msgid "Prefix text for the invoice number. Not required."
1088
+ #~ msgstr "Prefix text för fakturanummer. Inte nödvändig."
1089
+
1090
+ #~ msgid "Suffix text for the invoice number. Not required."
1091
+ #~ msgstr "Suffix text för fakturanummer. Inte nödvändig."
1092
+
1093
+ #~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
1094
+ #~ msgstr "Tillgängliga platshållare är %s %s %s %s och %s. %s krävs."
1095
+
1096
+ #~ msgid "Reset on the first of January."
1097
+ #~ msgstr "Återställ den första januari."
1098
+
1099
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s."
1100
+ #~ msgstr "%sFormat%s av datum. Exempel: %s eller %s."
1101
+
1102
+ #~ msgid "Order date %sformat%s. Examples: %s or %s."
1103
+ #~ msgstr "Orderdatum %sformat%s. Exempel: %s eller %s."
1104
+
1105
+ #~ msgid "Invalid template."
1106
+ #~ msgstr "Ogiltig mall"
1107
+
1108
+ #~ msgid "Invalid color theme code."
1109
+ #~ msgstr "Ogiltig färg kod"
1110
+
1111
+ #~ msgid "Invalid company name."
1112
+ #~ msgstr "Ogiltigt företagsnamn"
1113
+
1114
+ #~ msgid "Invalid input into one of the textarea's."
1115
+ #~ msgstr "Ogiltig värde i ett utav textområdena."
1116
+
1117
+ #~ msgid "Invalid type of invoice number."
1118
+ #~ msgstr "Ogiltig typ av fakturanummer."
1119
+
1120
+ #~ msgid "Invalid (next) invoice number."
1121
+ #~ msgstr "Ogiltigt (nästa) fakturanummer."
1122
+
1123
+ #~ msgid "Invalid invoice number digits."
1124
+ #~ msgstr "Ogiltiga fakturanummer siffror."
1125
+
1126
+ #~ msgid "Invalid invoice number format."
1127
+ #~ msgstr "Ogiltigt fakturanummer format."
1128
+
1129
+ #~ msgid "Invalid date format."
1130
+ #~ msgstr "Ogiltigt datumformat."
1131
+
1132
+ #~ msgid "Please upload image with extension jpg, jpeg or png."
1133
+ #~ msgstr "Ladda upp bild med förlängning jpg, jpeg eller png."
1134
+
1135
+ #~ msgid "Quantity"
1136
+ #~ msgstr "Antal"
1137
+
1138
+ #~ msgid "Unit price"
1139
+ #~ msgstr "Pris per styck"
1140
+
1141
+ #~ msgid ""
1142
+ #~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
1143
+ #~ msgstr ""
1144
+ #~ "Använd [prefix], [suffix] och [number] som platshållare. [number] är "
1145
+ #~ "obiligatoriskt."
1146
+
1147
+ #~ msgid "Signup at %s and enter your account beyond."
1148
+ #~ msgstr "Registrera på %s och ange ditt konto utanför."
1149
+
1150
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
1151
+ #~ msgstr "%sformat%s av datum. Exempel: %s eller %s"
1152
+
1153
+ #~ msgid "Show invoice"
1154
+ #~ msgstr "Visa faktura"
1155
+
1156
+ #~ msgid "%sFormat%s of the date."
1157
+ #~ msgstr "%sFormat%s av datum."
1158
+
1159
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
1160
+ #~ msgstr "Använd [suffix], [prefix] och [number] som platshållare."
1161
+
1162
+ #~ msgid "Choose the color witch fits your company."
1163
+ #~ msgstr "Välj den färg som passar ditt företag."
1164
+
1165
+ #~ msgid ""
1166
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
1167
+ #~ "[number] as placeholders."
1168
+ #~ msgstr ""
1169
+ #~ "Välj format för fakturanummer. Använd [prefix], [suffix] och [nummer] som "
1170
+ #~ "indikationer."
1171
+
1172
+ #~ msgid "Text to greet, congratulate or thank the customer. "
1173
+ #~ msgstr "Text att hälsa, gratulera eller tacka kunden."
1174
+
1175
+ #~ msgid "Some text"
1176
+ #~ msgstr "viss text"
1177
+
1178
+ #~ msgid "Text to greet, congratulate or thank the customer."
1179
+ #~ msgstr "Text att hälsa, gratulera eller tacka kunden."
1180
+
1181
+ #~ msgid "Start all over on the first of January."
1182
+ #~ msgstr "Börja om på den första januari."
lang/woocommerce-pdf-invoices.pot CHANGED
@@ -1,721 +1,945 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- #, fuzzy
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
10
- "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2016-02-10 21:35+0100\n"
12
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "Language: \n"
16
- "MIME-Version: 1.0\n"
17
- "Content-Type: text/plain; charset=UTF-8\n"
18
- "Content-Transfer-Encoding: 8bit\n"
19
-
20
- #: includes/be-woocommerce-pdf-invoices.php:126
21
- #, php-format
22
- msgid ""
23
- "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
24
- "PDF Invoices</strong></a>."
25
- msgstr ""
26
-
27
- #: includes/be-woocommerce-pdf-invoices.php:136
28
- msgid "Settings"
29
- msgstr ""
30
-
31
- #: includes/be-woocommerce-pdf-invoices.php:137
32
- msgid "Premium"
33
- msgstr ""
34
-
35
- #: includes/be-woocommerce-pdf-invoices.php:182
36
- msgid "Invalid request"
37
- msgstr ""
38
-
39
- #: includes/be-woocommerce-pdf-invoices.php:185
40
- msgid "Invalid order ID"
41
- msgstr ""
42
-
43
- #: includes/be-woocommerce-pdf-invoices.php:191
44
- msgid "Access denied"
45
- msgstr ""
46
-
47
- #: includes/be-woocommerce-pdf-invoices.php:218
48
- msgid "General"
49
- msgstr ""
50
-
51
- #: includes/be-woocommerce-pdf-invoices.php:219
52
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
53
- msgid "Template"
54
- msgstr ""
55
-
56
- #: includes/be-woocommerce-pdf-invoices.php:251
57
- msgid "Invoices"
58
- msgstr ""
59
-
60
- #: includes/be-woocommerce-pdf-invoices.php:290
61
- #, php-format
62
- msgid ""
63
- "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
64
- "%s★★★★★%s rating. A huge thank you in advance!"
65
- msgstr ""
66
-
67
- #: includes/be-woocommerce-pdf-invoices.php:291
68
- #, php-format
69
- msgid "Version %s"
70
- msgstr ""
71
-
72
- #: includes/be-woocommerce-pdf-invoices.php:365
73
- msgid "PDF Invoice"
74
- msgstr ""
75
-
76
- #: includes/be-woocommerce-pdf-invoices.php:391
77
- msgid "Invoiced on:"
78
- msgstr ""
79
-
80
- #: includes/be-woocommerce-pdf-invoices.php:395
81
- msgid "Invoice number:"
82
- msgstr ""
83
-
84
- #: includes/be-woocommerce-pdf-invoices.php:433
85
- msgid "View invoice"
86
- msgstr ""
87
-
88
- #: includes/be-woocommerce-pdf-invoices.php:433
89
- msgid "View"
90
- msgstr ""
91
-
92
- #: includes/be-woocommerce-pdf-invoices.php:434
93
- msgid "Cancel invoice"
94
- msgstr ""
95
-
96
- #: includes/be-woocommerce-pdf-invoices.php:434
97
- msgid "Cancel"
98
- msgstr ""
99
-
100
- #: includes/be-woocommerce-pdf-invoices.php:436
101
- msgid "Are you sure to delete the invoice?"
102
- msgstr ""
103
-
104
- #: includes/be-woocommerce-pdf-invoices.php:439
105
- msgid "Create invoice"
106
- msgstr ""
107
-
108
- #: includes/be-woocommerce-pdf-invoices.php:439
109
- msgid "Create"
110
- msgstr ""
111
-
112
- #: includes/be-woocommerce-pdf-invoices.php:462
113
- #, php-format
114
- msgid "Invoice %s (PDF)"
115
- msgstr ""
116
-
117
- #: includes/be-woocommerce-pdf-invoices.php:572
118
- #, php-format
119
- msgid ""
120
- "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
121
- "really need your ★★★★★ rating. It will support future development big-time. "
122
- "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
123
- "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
124
- "done it!</a>"
125
- msgstr ""
126
-
127
- #: includes/class-bewpi-invoice.php:48
128
- msgid ""
129
- "Whoops, no template found. Please select a template on the Template settings "
130
- "page first."
131
- msgstr ""
132
-
133
- #: includes/abstracts/abstract-bewpi-document.php:64
134
- msgid "Paid"
135
- msgstr ""
136
-
137
- #: includes/abstracts/abstract-bewpi-invoice.php:262
138
- #, php-format
139
- msgid ""
140
- "Could not create invoice. In order to reset invoice number with %d, delete "
141
- "all invoices with invoice number %s and greater."
142
- msgstr ""
143
-
144
- #: includes/abstracts/abstract-bewpi-invoice.php:267
145
- #, php-format
146
- msgid ""
147
- "Could not create invoice. Invoice with invoice number %s already exists. "
148
- "First delete invoice and try again."
149
- msgstr ""
150
-
151
- #: includes/abstracts/abstract-bewpi-invoice.php:310
152
- #, php-format
153
- msgid ""
154
- "Invoice with invoice number %s not found. First create invoice and try again."
155
- msgstr ""
156
-
157
- #: includes/abstracts/abstract-bewpi-invoice.php:372
158
- #, php-format
159
- msgid "VAT Number: %s"
160
- msgstr ""
161
-
162
- #: includes/abstracts/abstract-bewpi-invoice.php:383
163
- #, php-format
164
- msgid "Purchase Order Number: %s"
165
- msgstr ""
166
-
167
- #: includes/abstracts/abstract-bewpi-setting.php:98
168
- msgid "Allowed HTML tags: "
169
- msgstr ""
170
-
171
- #: includes/abstracts/abstract-bewpi-setting.php:173
172
- msgid "Remove logo"
173
- msgstr ""
174
-
175
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
176
- msgid "Attach to Email"
177
- msgstr ""
178
-
179
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
180
- msgid "Processing order"
181
- msgstr ""
182
-
183
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
184
- msgid "Completed order"
185
- msgstr ""
186
-
187
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
188
- msgid "Customer invoice"
189
- msgstr ""
190
-
191
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
192
- msgid "Do not attach"
193
- msgstr ""
194
-
195
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
196
- msgid "Attach to New order Email"
197
- msgstr ""
198
-
199
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
200
- msgid "View PDF"
201
- msgstr ""
202
-
203
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
204
- msgid "Download"
205
- msgstr ""
206
-
207
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
208
- msgid "Open in new browser tab/window"
209
- msgstr ""
210
-
211
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
212
- msgid "Enable download from account"
213
- msgstr ""
214
-
215
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
216
- msgid ""
217
- "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
218
- "page.</div>"
219
- msgstr ""
220
-
221
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
222
- msgid "Enable Email It In"
223
- msgstr ""
224
-
225
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
226
- msgid "Email It In account"
227
- msgstr ""
228
-
229
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
230
- #, php-format
231
- msgid "Get your account from your Email It In %suser account%s."
232
- msgstr ""
233
-
234
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
235
- msgid "Enable mPDF debugging"
236
- msgstr ""
237
-
238
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
239
- msgid "Enable mPDF debugging if you aren't able to create an invoice."
240
- msgstr ""
241
-
242
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
243
- msgid "Email Options"
244
- msgstr ""
245
-
246
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
247
- msgid "Download Options"
248
- msgstr ""
249
-
250
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
251
- msgid "Cloud Storage Options"
252
- msgstr ""
253
-
254
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
255
- msgid "Debug Options"
256
- msgstr ""
257
-
258
- #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
259
- #, php-format
260
- msgid ""
261
- "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
262
- "Egnyte and enter your account below."
263
- msgstr ""
264
-
265
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
266
- msgid "Color theme"
267
- msgstr ""
268
-
269
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
270
- msgid "Date format"
271
- msgstr ""
272
-
273
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
274
- #, php-format
275
- msgid "%sFormat%s of invoice date and order date."
276
- msgstr ""
277
-
278
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
279
- msgid "Display prices including tax"
280
- msgstr ""
281
-
282
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
283
- msgid ""
284
- "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
285
- "still be excluding tax, so disable it within the visible columns section."
286
- msgstr ""
287
-
288
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
289
- msgid "Shipping taxable"
290
- msgstr ""
291
-
292
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
293
- msgid "Enable to display subtotal including shipping."
294
- msgstr ""
295
-
296
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
297
- msgid "Mark invoice as paid"
298
- msgstr ""
299
-
300
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
301
- msgid "Invoice will be watermarked when order has been paid."
302
- msgstr ""
303
-
304
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
305
- msgid "Company name"
306
- msgstr ""
307
-
308
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
309
- msgid "Company logo"
310
- msgstr ""
311
-
312
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
313
- msgid "Company address"
314
- msgstr ""
315
-
316
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
317
- msgid "Displayed in upper-right corner near logo."
318
- msgstr ""
319
-
320
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
321
- msgid "Company details"
322
- msgstr ""
323
-
324
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
325
- msgid "Displayed below company address."
326
- msgstr ""
327
-
328
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
329
- msgid "Thank you text"
330
- msgstr ""
331
-
332
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
333
- msgid "Displayed in big colored bar directly after invoice total."
334
- msgstr ""
335
-
336
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
337
- msgid "Thank you for your purchase!"
338
- msgstr ""
339
-
340
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
341
- msgid "Show customer notes"
342
- msgstr ""
343
-
344
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
345
- msgid "Terms & conditions, policies etc."
346
- msgstr ""
347
-
348
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
349
- #, php-format
350
- msgid ""
351
- "Displayed below customer notes and above footer. Want to attach additional "
352
- "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
353
- msgstr ""
354
-
355
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
356
- msgid "Items will be shipped within 2 days."
357
- msgstr ""
358
-
359
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
360
- msgid "Left footer column."
361
- msgstr ""
362
-
363
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
364
- #, php-format
365
- msgid "<b>Payment method</b> %s"
366
- msgstr ""
367
-
368
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
369
- msgid "Right footer column."
370
- msgstr ""
371
-
372
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
373
- msgid "Leave empty to show page numbering."
374
- msgstr ""
375
-
376
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
377
- msgid "Type"
378
- msgstr ""
379
-
380
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
381
- msgid "WooCommerce order number"
382
- msgstr ""
383
-
384
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
385
- msgid "Sequential number"
386
- msgstr ""
387
-
388
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
389
- msgid "Reset invoice counter"
390
- msgstr ""
391
-
392
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
393
- msgid "Next"
394
- msgstr ""
395
-
396
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
397
- msgid ""
398
- "Reset the invoice counter and start counting from given invoice number.<br/"
399
- "><b>Note:</b> Only available for Sequential numbering and value will be "
400
- "editable by selecting checkbox. Next number needs to be lower then highest "
401
- "existing invoice number or delete invoices first."
402
- msgstr ""
403
-
404
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
405
- msgid "Digits"
406
- msgstr ""
407
-
408
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
409
- msgid "[prefix]"
410
- msgstr ""
411
-
412
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
413
- msgid "[suffix]"
414
- msgstr ""
415
-
416
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
417
- msgid "Format"
418
- msgstr ""
419
-
420
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
421
- #, php-format
422
- msgid ""
423
- "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
424
- "slashes aren't supported."
425
- msgstr ""
426
-
427
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
428
- msgid "Reset on 1st of january"
429
- msgstr ""
430
-
431
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
432
- #: includes/templates/invoices/global/micro/body.php:44
433
- #: includes/templates/invoices/simple/micro/body.php:48
434
- msgid "SKU"
435
- msgstr ""
436
-
437
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
438
- #: includes/templates/invoices/global/micro/body.php:236
439
- #: includes/templates/invoices/simple/micro/body.php:101
440
- msgid "Subtotal"
441
- msgstr ""
442
-
443
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
444
- msgid "Tax (item)"
445
- msgstr ""
446
-
447
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
448
- msgid "Tax (total)"
449
- msgstr ""
450
-
451
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
452
- #: includes/templates/invoices/global/micro/body.php:220
453
- #: includes/templates/invoices/simple/micro/body.php:85
454
- msgid "Discount"
455
- msgstr ""
456
-
457
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
458
- #: includes/templates/invoices/global/micro/body.php:228
459
- #: includes/templates/invoices/global/micro/body.php:244
460
- #: includes/templates/invoices/simple/micro/body.php:93
461
- #: includes/templates/invoices/simple/micro/body.php:109
462
- msgid "Shipping"
463
- msgstr ""
464
-
465
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
466
- msgid "General Options"
467
- msgstr ""
468
-
469
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
470
- msgid "Invoice Number Options"
471
- msgstr ""
472
-
473
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
474
- msgid "Header Options"
475
- msgstr ""
476
-
477
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
478
- msgid "Body Options"
479
- msgstr ""
480
-
481
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
482
- msgid "Footer Options"
483
- msgstr ""
484
-
485
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
486
- msgid "Visible Columns"
487
- msgstr ""
488
-
489
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
490
- msgid "These are the general template options."
491
- msgstr ""
492
-
493
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
494
- msgid "These are the invoice number options."
495
- msgstr ""
496
-
497
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
498
- msgid "The header will be visible on every page. "
499
- msgstr ""
500
-
501
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
502
- msgid "The footer will be visible on every page."
503
- msgstr ""
504
-
505
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
506
- msgid ""
507
- "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
508
- "order payment method."
509
- msgstr ""
510
-
511
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
512
- msgid "Enable or disable the columns."
513
- msgstr ""
514
-
515
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
516
- msgid "File is invalid and contains either '..' or './'."
517
- msgstr ""
518
-
519
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
520
- msgid "File is invalid and contains ':' after the first character."
521
- msgstr ""
522
-
523
- #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
524
- msgid "File should be less then 2MB."
525
- msgstr ""
526
-
527
- #: includes/partials/settings-sidebar.php:2
528
- msgid "WooCommerce PDF Invoices Premium"
529
- msgstr ""
530
-
531
- #: includes/partials/settings-sidebar.php:4
532
- msgid ""
533
- "This plugin offers a premium version which comes with the following features:"
534
- msgstr ""
535
-
536
- #: includes/partials/settings-sidebar.php:5
537
- msgid "Bill periodically by generating and sending global invoices."
538
- msgstr ""
539
-
540
- #: includes/partials/settings-sidebar.php:6
541
- msgid "Add additional PDF's to customer invoices."
542
- msgstr ""
543
-
544
- #: includes/partials/settings-sidebar.php:7
545
- msgid "Send customer invoices directly to suppliers and others."
546
- msgstr ""
547
-
548
- #: includes/partials/settings-sidebar.php:8
549
- #, php-format
550
- msgid ""
551
- "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
552
- msgstr ""
553
-
554
- #: includes/partials/settings-sidebar.php:10
555
- msgid "Learn more"
556
- msgstr ""
557
-
558
- #: includes/partials/settings-sidebar.php:13
559
- msgid "Stay up-to-date"
560
- msgstr ""
561
-
562
- #: includes/partials/settings-sidebar.php:17
563
- msgid ""
564
- "We're constantly developing new features, stay up-to-date by subscribing to "
565
- "our newsletter."
566
- msgstr ""
567
-
568
- #: includes/partials/settings-sidebar.php:23
569
- msgid "Your email address"
570
- msgstr ""
571
-
572
- #: includes/partials/settings-sidebar.php:29
573
- msgid "Signup"
574
- msgstr ""
575
-
576
- #: includes/partials/settings-sidebar.php:32
577
- msgid "No spam, ever. Unsubscribe at any time"
578
- msgstr ""
579
-
580
- #: includes/partials/settings-sidebar.php:41
581
- msgid "About"
582
- msgstr ""
583
-
584
- #: includes/partials/settings-sidebar.php:43
585
- msgid ""
586
- "This plugin is an open source project wich aims to fill the invoicing gap of "
587
- "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
588
- msgstr ""
589
-
590
- #: includes/partials/settings-sidebar.php:45
591
- msgid "<b>Version</b>: "
592
- msgstr ""
593
-
594
- #: includes/partials/settings-sidebar.php:47
595
- msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
596
- msgstr ""
597
-
598
- #: includes/partials/settings-sidebar.php:50
599
- msgid "Support"
600
- msgstr ""
601
-
602
- #: includes/partials/settings-sidebar.php:52
603
- msgid ""
604
- "We will never ask for donations, but to garantee future development, we do "
605
- "need your support. Please show us your appreciation by leaving a <a href="
606
- "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
607
- "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
608
- "org/plugins/woocommerce-pdf-invoices/\">works</a>."
609
- msgstr ""
610
-
611
- #: includes/partials/settings-sidebar.php:72
612
- msgid ""
613
- "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
614
- msgstr ""
615
-
616
- #: includes/partials/settings-sidebar.php:77
617
- msgid "Need Help?"
618
- msgstr ""
619
-
620
- #: includes/partials/settings-sidebar.php:79
621
- msgid "Frequently Asked Questions"
622
- msgstr ""
623
-
624
- #: includes/partials/settings-sidebar.php:80
625
- msgid "Support forum"
626
- msgstr ""
627
-
628
- #: includes/partials/settings-sidebar.php:81
629
- msgid "Request a feature"
630
- msgstr ""
631
-
632
- #: includes/partials/settings-sidebar.php:82
633
- msgid "Email us"
634
- msgstr ""
635
-
636
- #: includes/templates/invoices/global/micro/body.php:5
637
- #: includes/templates/invoices/simple/micro/body.php:5
638
- msgid "Invoice to"
639
- msgstr ""
640
-
641
- #: includes/templates/invoices/global/micro/body.php:7
642
- #: includes/templates/invoices/simple/micro/body.php:7
643
- #, php-format
644
- msgid "Phone: %s"
645
- msgstr ""
646
-
647
- #: includes/templates/invoices/global/micro/body.php:11
648
- #: includes/templates/invoices/simple/micro/body.php:11
649
- msgid "Ship to"
650
- msgstr ""
651
-
652
- #: includes/templates/invoices/global/micro/body.php:22
653
- msgid "Global Invoice"
654
- msgstr ""
655
-
656
- #: includes/templates/invoices/global/micro/body.php:40
657
- #: includes/templates/invoices/simple/micro/body.php:44
658
- msgid "Description"
659
- msgstr ""
660
-
661
- #: includes/templates/invoices/global/micro/body.php:48
662
- #: includes/templates/invoices/simple/micro/body.php:52
663
- msgid "Cost"
664
- msgstr ""
665
-
666
- #: includes/templates/invoices/global/micro/body.php:50
667
- #: includes/templates/invoices/simple/micro/body.php:54
668
- msgid "Qty"
669
- msgstr ""
670
-
671
- #: includes/templates/invoices/global/micro/body.php:56
672
- #: includes/templates/invoices/simple/micro/body.php:60
673
- msgid "VAT"
674
- msgstr ""
675
-
676
- #: includes/templates/invoices/global/micro/body.php:67
677
- #: includes/templates/invoices/global/micro/body.php:280
678
- #: includes/templates/invoices/simple/micro/body.php:71
679
- #: includes/templates/invoices/simple/micro/body.php:145
680
- msgid "Total"
681
- msgstr ""
682
-
683
- #: includes/templates/invoices/global/micro/body.php:75
684
- #, php-format
685
- msgid "Order #%d - %s"
686
- msgstr ""
687
-
688
- #: includes/templates/invoices/global/micro/body.php:255
689
- #: includes/templates/invoices/simple/micro/body.php:120
690
- msgid "Fee"
691
- msgstr ""
692
-
693
- #: includes/templates/invoices/global/micro/body.php:287
694
- #: includes/templates/invoices/simple/micro/body.php:152
695
- msgid "Refunded"
696
- msgstr ""
697
-
698
- #: includes/templates/invoices/global/micro/footer.php:15
699
- #: includes/templates/invoices/simple/micro/footer.php:18
700
- #, php-format
701
- msgid "%s of %s"
702
- msgstr ""
703
-
704
- #: includes/templates/invoices/simple/micro/body.php:22
705
- msgid "Invoice"
706
- msgstr ""
707
-
708
- #: includes/templates/invoices/simple/micro/body.php:25
709
- #, php-format
710
- msgid "Order Number: %s"
711
- msgstr ""
712
-
713
- #: includes/templates/invoices/simple/micro/body.php:26
714
- #, php-format
715
- msgid "Order Date: %s"
716
- msgstr ""
717
-
718
- #: includes/templates/invoices/simple/micro/body.php:289
719
- #: includes/templates/invoices/simple/micro/body.php:294
720
- msgid "Customer note"
721
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: PACKAGE VERSION\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2016-03-03 21:18+0100\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: includes/be-woocommerce-pdf-invoices-premium.php:89
21
+ #: includes/be-woocommerce-pdf-invoices.php:182
22
+ msgid "Invalid request"
23
+ msgstr ""
24
+
25
+ #: includes/be-woocommerce-pdf-invoices-premium.php:98
26
+ #: includes/be-woocommerce-pdf-invoices-premium.php:121
27
+ msgid "Something went wrong."
28
+ msgstr ""
29
+
30
+ #: includes/be-woocommerce-pdf-invoices-premium.php:109
31
+ #: includes/be-woocommerce-pdf-invoices-premium.php:132
32
+ msgid "No orders found."
33
+ msgstr ""
34
+
35
+ #: includes/be-woocommerce-pdf-invoices-premium.php:169
36
+ #: includes/be-woocommerce-pdf-invoices.php:136
37
+ msgid "Settings"
38
+ msgstr ""
39
+
40
+ #: includes/be-woocommerce-pdf-invoices-premium.php:170
41
+ #: includes/partials/settings-sidebar.php:50
42
+ msgid "Support"
43
+ msgstr ""
44
+
45
+ #: includes/be-woocommerce-pdf-invoices-premium.php:189
46
+ #, php-format
47
+ msgid ""
48
+ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
49
+ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. Get "
50
+ "the free version (%s+) and try again.</p>"
51
+ msgstr ""
52
+
53
+ #: includes/be-woocommerce-pdf-invoices-premium.php:195
54
+ #: includes/be-woocommerce-pdf-invoices.php:137
55
+ msgid "Premium"
56
+ msgstr ""
57
+
58
+ #: includes/be-woocommerce-pdf-invoices-premium.php:210
59
+ msgid "Generate global invoice"
60
+ msgstr ""
61
+
62
+ #: includes/be-woocommerce-pdf-invoices-premium.php:264
63
+ msgid "Please select more then one order."
64
+ msgstr ""
65
+
66
+ #: includes/be-woocommerce-pdf-invoices-premium.php:360
67
+ msgid "Global invoice successfully generated! "
68
+ msgstr ""
69
+
70
+ #: includes/be-woocommerce-pdf-invoices.php:126
71
+ #, php-format
72
+ msgid ""
73
+ "Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
74
+ "PDF Invoices</strong></a>."
75
+ msgstr ""
76
+
77
+ #: includes/be-woocommerce-pdf-invoices.php:185
78
+ msgid "Invalid order ID"
79
+ msgstr ""
80
+
81
+ #: includes/be-woocommerce-pdf-invoices.php:191
82
+ msgid "Access denied"
83
+ msgstr ""
84
+
85
+ #: includes/be-woocommerce-pdf-invoices.php:218
86
+ msgid "General"
87
+ msgstr ""
88
+
89
+ #: includes/be-woocommerce-pdf-invoices.php:219
90
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:88
91
+ msgid "Template"
92
+ msgstr ""
93
+
94
+ #: includes/be-woocommerce-pdf-invoices.php:251
95
+ msgid "Invoices"
96
+ msgstr ""
97
+
98
+ #: includes/be-woocommerce-pdf-invoices.php:294
99
+ #, php-format
100
+ msgid ""
101
+ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
102
+ "%s★★★★★%s rating. A huge thank you in advance!"
103
+ msgstr ""
104
+
105
+ #: includes/be-woocommerce-pdf-invoices.php:295
106
+ #, php-format
107
+ msgid "Version %s"
108
+ msgstr ""
109
+
110
+ #: includes/be-woocommerce-pdf-invoices.php:369
111
+ msgid "PDF Invoice"
112
+ msgstr ""
113
+
114
+ #: includes/be-woocommerce-pdf-invoices.php:395
115
+ msgid "Invoiced on:"
116
+ msgstr ""
117
+
118
+ #: includes/be-woocommerce-pdf-invoices.php:399
119
+ msgid "Invoice number:"
120
+ msgstr ""
121
+
122
+ #: includes/be-woocommerce-pdf-invoices.php:438
123
+ msgid "View invoice"
124
+ msgstr ""
125
+
126
+ #: includes/be-woocommerce-pdf-invoices.php:438
127
+ msgid "View"
128
+ msgstr ""
129
+
130
+ #: includes/be-woocommerce-pdf-invoices.php:439
131
+ msgid "Cancel invoice"
132
+ msgstr ""
133
+
134
+ #: includes/be-woocommerce-pdf-invoices.php:439
135
+ msgid "Cancel"
136
+ msgstr ""
137
+
138
+ #: includes/be-woocommerce-pdf-invoices.php:441
139
+ msgid "Are you sure to delete the invoice?"
140
+ msgstr ""
141
+
142
+ #: includes/be-woocommerce-pdf-invoices.php:444
143
+ msgid "Create invoice"
144
+ msgstr ""
145
+
146
+ #: includes/be-woocommerce-pdf-invoices.php:444
147
+ msgid "Create"
148
+ msgstr ""
149
+
150
+ #: includes/be-woocommerce-pdf-invoices.php:467
151
+ #, php-format
152
+ msgid "Invoice %s (PDF)"
153
+ msgstr ""
154
+
155
+ #: includes/be-woocommerce-pdf-invoices.php:577
156
+ #, php-format
157
+ msgid ""
158
+ "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
159
+ "really need your ★★★★★ rating. It will support future development big-time. "
160
+ "A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
161
+ "target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
162
+ "done it!</a>"
163
+ msgstr ""
164
+
165
+ #: includes/class-bewpi-invoice.php:50
166
+ msgid ""
167
+ "Whoops, no template found. Please select a template on the Template settings "
168
+ "page first."
169
+ msgstr ""
170
+
171
+ #: includes/abstracts/abstract-bewpi-document.php:64
172
+ msgid "Paid"
173
+ msgstr ""
174
+
175
+ #: includes/abstracts/abstract-bewpi-invoice.php:262
176
+ #, php-format
177
+ msgid ""
178
+ "Could not create invoice. In order to reset invoice number with %d, delete "
179
+ "all invoices with invoice number %s and greater."
180
+ msgstr ""
181
+
182
+ #: includes/abstracts/abstract-bewpi-invoice.php:267
183
+ #, php-format
184
+ msgid ""
185
+ "Could not create invoice. Invoice with invoice number %s already exists. "
186
+ "First delete invoice and try again."
187
+ msgstr ""
188
+
189
+ #: includes/abstracts/abstract-bewpi-invoice.php:310
190
+ #, php-format
191
+ msgid ""
192
+ "Invoice with invoice number %s not found. First create invoice and try again."
193
+ msgstr ""
194
+
195
+ #: includes/abstracts/abstract-bewpi-invoice.php:372
196
+ #, php-format
197
+ msgid "VAT Number: %s"
198
+ msgstr ""
199
+
200
+ #: includes/abstracts/abstract-bewpi-invoice.php:383
201
+ #, php-format
202
+ msgid "Purchase Order Number: %s"
203
+ msgstr ""
204
+
205
+ #: includes/abstracts/abstract-bewpi-setting.php:98
206
+ msgid "Allowed HTML tags: "
207
+ msgstr ""
208
+
209
+ #: includes/abstracts/abstract-bewpi-setting.php:173
210
+ msgid "Remove logo"
211
+ msgstr ""
212
+
213
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:86
214
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:115
215
+ msgid "Attach to Email"
216
+ msgstr ""
217
+
218
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:94
219
+ msgid "Processing order"
220
+ msgstr ""
221
+
222
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:98
223
+ msgid "Completed order"
224
+ msgstr ""
225
+
226
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:102
227
+ msgid "Customer invoice"
228
+ msgstr ""
229
+
230
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:106
231
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:135
232
+ msgid "Do not attach"
233
+ msgstr ""
234
+
235
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:120
236
+ msgid "Attach to New order Email"
237
+ msgstr ""
238
+
239
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:127
240
+ msgid "View PDF"
241
+ msgstr ""
242
+
243
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:135
244
+ msgid "Download"
245
+ msgstr ""
246
+
247
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:139
248
+ msgid "Open in new browser tab/window"
249
+ msgstr ""
250
+
251
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:153
252
+ msgid "Enable download from account"
253
+ msgstr ""
254
+
255
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:154
256
+ msgid ""
257
+ "<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
258
+ "page.</div>"
259
+ msgstr ""
260
+
261
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:166
262
+ msgid "Enable Email It In"
263
+ msgstr ""
264
+
265
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:174
266
+ msgid "Email It In account"
267
+ msgstr ""
268
+
269
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:179
270
+ #, php-format
271
+ msgid "Get your account from your Email It In %suser account%s."
272
+ msgstr ""
273
+
274
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:190
275
+ msgid "Enable mPDF debugging"
276
+ msgstr ""
277
+
278
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:191
279
+ msgid "Enable mPDF debugging if you aren't able to create an invoice."
280
+ msgstr ""
281
+
282
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:206
283
+ msgid "Email Options"
284
+ msgstr ""
285
+
286
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:212
287
+ msgid "Download Options"
288
+ msgstr ""
289
+
290
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:218
291
+ msgid "Cloud Storage Options"
292
+ msgstr ""
293
+
294
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:224
295
+ msgid "Debug Options"
296
+ msgstr ""
297
+
298
+ #: includes/admin/settings/class-bewpi-admin-settings-general.php:232
299
+ #, php-format
300
+ msgid ""
301
+ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
302
+ "Egnyte and enter your account below."
303
+ msgstr ""
304
+
305
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:100
306
+ msgid "Color theme"
307
+ msgstr ""
308
+
309
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:111
310
+ msgid "Date format"
311
+ msgstr ""
312
+
313
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:116
314
+ #, php-format
315
+ msgid "%sFormat%s of invoice date and order date."
316
+ msgstr ""
317
+
318
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:131
319
+ msgid "Display prices including tax"
320
+ msgstr ""
321
+
322
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:132
323
+ msgid ""
324
+ "Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
325
+ "still be excluding tax, so disable it within the visible columns section."
326
+ msgstr ""
327
+
328
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:144
329
+ msgid "Shipping taxable"
330
+ msgstr ""
331
+
332
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:145
333
+ msgid "Enable to display subtotal including shipping."
334
+ msgstr ""
335
+
336
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:157
337
+ msgid "Mark invoice as paid"
338
+ msgstr ""
339
+
340
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:158
341
+ msgid "Invoice will be watermarked when order has been paid."
342
+ msgstr ""
343
+
344
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:166
345
+ msgid "Company name"
346
+ msgstr ""
347
+
348
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:177
349
+ msgid "Company logo"
350
+ msgstr ""
351
+
352
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:188
353
+ msgid "Company address"
354
+ msgstr ""
355
+
356
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:193
357
+ msgid "Displayed in upper-right corner near logo."
358
+ msgstr ""
359
+
360
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:199
361
+ msgid "Company details"
362
+ msgstr ""
363
+
364
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:204
365
+ msgid "Displayed below company address."
366
+ msgstr ""
367
+
368
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:211
369
+ msgid "Thank you text"
370
+ msgstr ""
371
+
372
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:216
373
+ msgid "Displayed in big colored bar directly after invoice total."
374
+ msgstr ""
375
+
376
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:217
377
+ msgid "Thank you for your purchase!"
378
+ msgstr ""
379
+
380
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:227
381
+ msgid "Show customer notes"
382
+ msgstr ""
383
+
384
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:234
385
+ msgid "Terms & conditions, policies etc."
386
+ msgstr ""
387
+
388
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:239
389
+ #, php-format
390
+ msgid ""
391
+ "Displayed below customer notes and above footer. Want to attach additional "
392
+ "pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
393
+ msgstr ""
394
+
395
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:240
396
+ msgid "Items will be shipped within 2 days."
397
+ msgstr ""
398
+
399
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:246
400
+ msgid "Left footer column."
401
+ msgstr ""
402
+
403
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:252
404
+ #, php-format
405
+ msgid "<b>Payment method</b> %s"
406
+ msgstr ""
407
+
408
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:257
409
+ msgid "Right footer column."
410
+ msgstr ""
411
+
412
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:262
413
+ msgid "Leave empty to show page numbering."
414
+ msgstr ""
415
+
416
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:269
417
+ msgid "Type"
418
+ msgstr ""
419
+
420
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:277
421
+ msgid "WooCommerce order number"
422
+ msgstr ""
423
+
424
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:281
425
+ msgid "Sequential number"
426
+ msgstr ""
427
+
428
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:295
429
+ msgid "Reset invoice counter"
430
+ msgstr ""
431
+
432
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:305
433
+ msgid "Next"
434
+ msgstr ""
435
+
436
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:310
437
+ msgid ""
438
+ "Reset the invoice counter and start counting from given invoice number.<br/"
439
+ "><b>Note:</b> Only available for Sequential numbering and value will be "
440
+ "editable by selecting checkbox. Next number needs to be lower then highest "
441
+ "existing invoice number or delete invoices first."
442
+ msgstr ""
443
+
444
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:320
445
+ msgid "Digits"
446
+ msgstr ""
447
+
448
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:336
449
+ msgid "[prefix]"
450
+ msgstr ""
451
+
452
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:347
453
+ msgid "[suffix]"
454
+ msgstr ""
455
+
456
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:358
457
+ msgid "Format"
458
+ msgstr ""
459
+
460
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:363
461
+ #, php-format
462
+ msgid ""
463
+ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
464
+ "slashes aren't supported."
465
+ msgstr ""
466
+
467
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:377
468
+ msgid "Reset on 1st of january"
469
+ msgstr ""
470
+
471
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:390
472
+ #: includes/templates/invoices/global/micro/body.php:44
473
+ #: includes/templates/invoices/simple/micro/body.php:48
474
+ msgid "SKU"
475
+ msgstr ""
476
+
477
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:402
478
+ #: includes/templates/invoices/global/micro/body.php:236
479
+ #: includes/templates/invoices/simple/micro/body.php:101
480
+ msgid "Subtotal"
481
+ msgstr ""
482
+
483
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:414
484
+ msgid "Tax (item)"
485
+ msgstr ""
486
+
487
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:426
488
+ msgid "Tax (total)"
489
+ msgstr ""
490
+
491
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:438
492
+ #: includes/templates/invoices/global/micro/body.php:220
493
+ #: includes/templates/invoices/simple/micro/body.php:85
494
+ msgid "Discount"
495
+ msgstr ""
496
+
497
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:450
498
+ #: includes/templates/invoices/global/micro/body.php:228
499
+ #: includes/templates/invoices/global/micro/body.php:244
500
+ #: includes/templates/invoices/simple/micro/body.php:93
501
+ #: includes/templates/invoices/simple/micro/body.php:109
502
+ msgid "Shipping"
503
+ msgstr ""
504
+
505
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:464
506
+ msgid "General Options"
507
+ msgstr ""
508
+
509
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:470
510
+ msgid "Invoice Number Options"
511
+ msgstr ""
512
+
513
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:476
514
+ msgid "Header Options"
515
+ msgstr ""
516
+
517
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:482
518
+ msgid "Body Options"
519
+ msgstr ""
520
+
521
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:488
522
+ msgid "Footer Options"
523
+ msgstr ""
524
+
525
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:494
526
+ msgid "Visible Columns"
527
+ msgstr ""
528
+
529
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:500
530
+ msgid "These are the general template options."
531
+ msgstr ""
532
+
533
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:501
534
+ msgid "These are the invoice number options."
535
+ msgstr ""
536
+
537
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:502
538
+ msgid "The header will be visible on every page. "
539
+ msgstr ""
540
+
541
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
542
+ msgid "The footer will be visible on every page."
543
+ msgstr ""
544
+
545
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:506
546
+ msgid ""
547
+ "<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
548
+ "order payment method."
549
+ msgstr ""
550
+
551
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:509
552
+ msgid "Enable or disable the columns."
553
+ msgstr ""
554
+
555
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:579
556
+ msgid "File is invalid and contains either '..' or './'."
557
+ msgstr ""
558
+
559
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:586
560
+ msgid "File is invalid and contains ':' after the first character."
561
+ msgstr ""
562
+
563
+ #: includes/admin/settings/class-bewpi-admin-settings-template.php:595
564
+ msgid "File should be less then 2MB."
565
+ msgstr ""
566
+
567
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:92
568
+ msgid "Purchase email"
569
+ msgstr ""
570
+
571
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:97
572
+ msgid ""
573
+ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
574
+ "\">wcpdfinvoices.com</a>."
575
+ msgstr ""
576
+
577
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:103
578
+ msgid "License"
579
+ msgstr ""
580
+
581
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:108
582
+ msgid ""
583
+ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
584
+ "\">wcpdfinvoices.com</a> to receive updates."
585
+ msgstr ""
586
+
587
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:123
588
+ msgid "Processing Renewal Order"
589
+ msgstr ""
590
+
591
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:127
592
+ msgid "Completed Renewal Order"
593
+ msgstr ""
594
+
595
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:131
596
+ msgid "Customer Renewal Invoice"
597
+ msgstr ""
598
+
599
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:149
600
+ msgid "Attach to New Renewal Order Email"
601
+ msgstr ""
602
+
603
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:157
604
+ msgid "PDF attachment"
605
+ msgstr ""
606
+
607
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:162
608
+ msgid "Add for example a PDF with your terms & conditions."
609
+ msgstr ""
610
+
611
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:168
612
+ msgid "Suppliers"
613
+ msgstr ""
614
+
615
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:173
616
+ msgid ""
617
+ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by simply "
618
+ "adding there Email It In email addresses. Email addresses need to be "
619
+ "seperated by comma's."
620
+ msgstr ""
621
+
622
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:184
623
+ msgid ""
624
+ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
625
+ "generate a global invoice from there account</div>"
626
+ msgstr ""
627
+
628
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:191
629
+ msgid "Customer generation period"
630
+ msgstr ""
631
+
632
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:196
633
+ msgid ""
634
+ "Should your customers have the ability to generate a global invoice by month "
635
+ "or by year?<br/><strong>Note:</strong> Customer generation should be enabled."
636
+ msgstr ""
637
+
638
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:199
639
+ msgid "Month"
640
+ msgstr ""
641
+
642
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:203
643
+ msgid "Year"
644
+ msgstr ""
645
+
646
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:217
647
+ msgid "Send to your Cloud Storage"
648
+ msgstr ""
649
+
650
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:229
651
+ msgid "Email to customer"
652
+ msgstr ""
653
+
654
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:241
655
+ msgid "Email to supplier(s)"
656
+ msgstr ""
657
+
658
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:248
659
+ msgid "Email subject"
660
+ msgstr ""
661
+
662
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:253
663
+ msgid "Subject for the global invoice email."
664
+ msgstr ""
665
+
666
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:260
667
+ msgid "Email message"
668
+ msgstr ""
669
+
670
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:265
671
+ msgid "Message for the global invoice email."
672
+ msgstr ""
673
+
674
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:279
675
+ msgid "Premium Options"
676
+ msgstr ""
677
+
678
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:285
679
+ msgid "Woocommerce Subscriptions Email Options"
680
+ msgstr ""
681
+
682
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:291
683
+ msgid "Attachment Options"
684
+ msgstr ""
685
+
686
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:297
687
+ msgid "Supplier Options"
688
+ msgstr ""
689
+
690
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:303
691
+ msgid "Global Invoice Options"
692
+ msgstr ""
693
+
694
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:310
695
+ msgid ""
696
+ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
697
+ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
698
+ "should be activated in order to work."
699
+ msgstr ""
700
+
701
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:311
702
+ msgid "Attach a PDF to the invoice."
703
+ msgstr ""
704
+
705
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:312
706
+ msgid "Send customer invoice automatically to your supplier(s)."
707
+ msgstr ""
708
+
709
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:313
710
+ msgid ""
711
+ "Generate global invoices on Orders page by selecting multiple orders and "
712
+ "applying action or let customers generate periodically from My Account page."
713
+ msgstr ""
714
+
715
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:407
716
+ msgid "File to large."
717
+ msgstr ""
718
+
719
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:410
720
+ msgid "Only PDF files are allowed."
721
+ msgstr ""
722
+
723
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:422
724
+ msgid "Remove"
725
+ msgstr ""
726
+
727
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:424
728
+ msgid "Choose"
729
+ msgstr ""
730
+
731
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:447
732
+ msgid "Active"
733
+ msgstr ""
734
+
735
+ #: includes/admin/settings/class-bewpipremium-admin-settings.php:449
736
+ msgid "Inactive"
737
+ msgstr ""
738
+
739
+ #: includes/partials/customer-generation.php:1
740
+ msgid "Generate Global Invoice"
741
+ msgstr ""
742
+
743
+ #: includes/partials/customer-generation.php:11
744
+ msgid "Select a month"
745
+ msgstr ""
746
+
747
+ #: includes/partials/customer-generation.php:24
748
+ msgid "Select a year"
749
+ msgstr ""
750
+
751
+ #: includes/partials/customer-generation.php:38
752
+ msgid "Generate invoice"
753
+ msgstr ""
754
+
755
+ #: includes/partials/settings-sidebar.php:2
756
+ msgid "WooCommerce PDF Invoices Premium"
757
+ msgstr ""
758
+
759
+ #: includes/partials/settings-sidebar.php:4
760
+ msgid ""
761
+ "This plugin offers a premium version which comes with the following features:"
762
+ msgstr ""
763
+
764
+ #: includes/partials/settings-sidebar.php:5
765
+ msgid "Bill periodically by generating and sending global invoices."
766
+ msgstr ""
767
+
768
+ #: includes/partials/settings-sidebar.php:6
769
+ msgid "Add additional PDF's to customer invoices."
770
+ msgstr ""
771
+
772
+ #: includes/partials/settings-sidebar.php:7
773
+ msgid "Send customer invoices directly to suppliers and others."
774
+ msgstr ""
775
+
776
+ #: includes/partials/settings-sidebar.php:8
777
+ #, php-format
778
+ msgid ""
779
+ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
780
+ msgstr ""
781
+
782
+ #: includes/partials/settings-sidebar.php:10
783
+ msgid "Learn more"
784
+ msgstr ""
785
+
786
+ #: includes/partials/settings-sidebar.php:13
787
+ msgid "Stay up-to-date"
788
+ msgstr ""
789
+
790
+ #: includes/partials/settings-sidebar.php:17
791
+ msgid ""
792
+ "We're constantly developing new features, stay up-to-date by subscribing to "
793
+ "our newsletter."
794
+ msgstr ""
795
+
796
+ #: includes/partials/settings-sidebar.php:23
797
+ msgid "Your email address"
798
+ msgstr ""
799
+
800
+ #: includes/partials/settings-sidebar.php:29
801
+ msgid "Signup"
802
+ msgstr ""
803
+
804
+ #: includes/partials/settings-sidebar.php:32
805
+ msgid "No spam, ever. Unsubscribe at any time"
806
+ msgstr ""
807
+
808
+ #: includes/partials/settings-sidebar.php:41
809
+ msgid "About"
810
+ msgstr ""
811
+
812
+ #: includes/partials/settings-sidebar.php:43
813
+ msgid ""
814
+ "This plugin is an open source project wich aims to fill the invoicing gap of "
815
+ "<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
816
+ msgstr ""
817
+
818
+ #: includes/partials/settings-sidebar.php:45
819
+ msgid "<b>Version</b>: "
820
+ msgstr ""
821
+
822
+ #: includes/partials/settings-sidebar.php:47
823
+ msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
824
+ msgstr ""
825
+
826
+ #: includes/partials/settings-sidebar.php:52
827
+ msgid ""
828
+ "We will never ask for donations, but to garantee future development, we do "
829
+ "need your support. Please show us your appreciation by leaving a <a href="
830
+ "\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
831
+ "rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
832
+ "org/plugins/woocommerce-pdf-invoices/\">works</a>."
833
+ msgstr ""
834
+
835
+ #: includes/partials/settings-sidebar.php:72
836
+ msgid ""
837
+ "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
838
+ msgstr ""
839
+
840
+ #: includes/partials/settings-sidebar.php:77
841
+ msgid "Need Help?"
842
+ msgstr ""
843
+
844
+ #: includes/partials/settings-sidebar.php:79
845
+ msgid "Frequently Asked Questions"
846
+ msgstr ""
847
+
848
+ #: includes/partials/settings-sidebar.php:80
849
+ msgid "Support forum"
850
+ msgstr ""
851
+
852
+ #: includes/partials/settings-sidebar.php:81
853
+ msgid "Request a feature"
854
+ msgstr ""
855
+
856
+ #: includes/partials/settings-sidebar.php:82
857
+ msgid "Email us"
858
+ msgstr ""
859
+
860
+ #: includes/templates/invoices/global/micro/body.php:5
861
+ #: includes/templates/invoices/simple/micro/body.php:5
862
+ msgid "Invoice to"
863
+ msgstr ""
864
+
865
+ #: includes/templates/invoices/global/micro/body.php:7
866
+ #: includes/templates/invoices/simple/micro/body.php:7
867
+ #, php-format
868
+ msgid "Phone: %s"
869
+ msgstr ""
870
+
871
+ #: includes/templates/invoices/global/micro/body.php:11
872
+ #: includes/templates/invoices/simple/micro/body.php:11
873
+ msgid "Ship to"
874
+ msgstr ""
875
+
876
+ #: includes/templates/invoices/global/micro/body.php:22
877
+ msgid "Global Invoice"
878
+ msgstr ""
879
+
880
+ #: includes/templates/invoices/global/micro/body.php:40
881
+ #: includes/templates/invoices/simple/micro/body.php:44
882
+ msgid "Description"
883
+ msgstr ""
884
+
885
+ #: includes/templates/invoices/global/micro/body.php:48
886
+ #: includes/templates/invoices/simple/micro/body.php:52
887
+ msgid "Cost"
888
+ msgstr ""
889
+
890
+ #: includes/templates/invoices/global/micro/body.php:50
891
+ #: includes/templates/invoices/simple/micro/body.php:54
892
+ msgid "Qty"
893
+ msgstr ""
894
+
895
+ #: includes/templates/invoices/global/micro/body.php:56
896
+ #: includes/templates/invoices/simple/micro/body.php:60
897
+ msgid "VAT"
898
+ msgstr ""
899
+
900
+ #: includes/templates/invoices/global/micro/body.php:67
901
+ #: includes/templates/invoices/global/micro/body.php:280
902
+ #: includes/templates/invoices/simple/micro/body.php:71
903
+ #: includes/templates/invoices/simple/micro/body.php:145
904
+ msgid "Total"
905
+ msgstr ""
906
+
907
+ #: includes/templates/invoices/global/micro/body.php:75
908
+ #, php-format
909
+ msgid "Order #%d - %s"
910
+ msgstr ""
911
+
912
+ #: includes/templates/invoices/global/micro/body.php:255
913
+ #: includes/templates/invoices/simple/micro/body.php:120
914
+ msgid "Fee"
915
+ msgstr ""
916
+
917
+ #: includes/templates/invoices/global/micro/body.php:287
918
+ #: includes/templates/invoices/simple/micro/body.php:152
919
+ msgid "Refunded"
920
+ msgstr ""
921
+
922
+ #: includes/templates/invoices/global/micro/footer.php:15
923
+ #: includes/templates/invoices/simple/micro/footer.php:18
924
+ #, php-format
925
+ msgid "%s of %s"
926
+ msgstr ""
927
+
928
+ #: includes/templates/invoices/simple/micro/body.php:22
929
+ msgid "Invoice"
930
+ msgstr ""
931
+
932
+ #: includes/templates/invoices/simple/micro/body.php:25
933
+ #, php-format
934
+ msgid "Order Number: %s"
935
+ msgstr ""
936
+
937
+ #: includes/templates/invoices/simple/micro/body.php:26
938
+ #, php-format
939
+ msgid "Order Date: %s"
940
+ msgstr ""
941
+
942
+ #: includes/templates/invoices/simple/micro/body.php:289
943
+ #: includes/templates/invoices/simple/micro/body.php:294
944
+ msgid "Customer note"
945
+ msgstr ""
lib/mpdf/ttfontdata/opensansB.cw127.php CHANGED
@@ -1,148 +1,148 @@
1
- <?php
2
- $rangeid=114;
3
- $prevcid=126;
4
- $prevwidth=571;
5
- $interval=false;
6
- $range=array (
7
- 32 =>
8
- array (
9
- 0 => 260,
10
- 1 => 286,
11
- 2 => 472,
12
- 3 => 646,
13
- 4 => 571,
14
- 5 => 901,
15
- 6 => 750,
16
- 7 => 266,
17
- ),
18
- 40 =>
19
- array (
20
- 0 => 339,
21
- 1 => 339,
22
- 'interval' => true,
23
- ),
24
- 42 =>
25
- array (
26
- 0 => 545,
27
- 1 => 571,
28
- 2 => 290,
29
- 3 => 322,
30
- 4 => 285,
31
- 5 => 413,
32
- ),
33
- 48 =>
34
- array (
35
- 0 => 571,
36
- 1 => 571,
37
- 'interval' => true,
38
- 2 => 571,
39
- 3 => 571,
40
- 4 => 571,
41
- 5 => 571,
42
- 6 => 571,
43
- 7 => 571,
44
- 8 => 571,
45
- 9 => 571,
46
- ),
47
- 58 =>
48
- array (
49
- 0 => 285,
50
- 1 => 290,
51
- ),
52
- 60 =>
53
- array (
54
- 0 => 571,
55
- 1 => 571,
56
- 'interval' => true,
57
- 2 => 571,
58
- ),
59
- 63 =>
60
- array (
61
- 0 => 477,
62
- 1 => 897,
63
- 2 => 690,
64
- 3 => 672,
65
- 4 => 637,
66
- 5 => 740,
67
- 6 => 560,
68
- 7 => 549,
69
- 8 => 724,
70
- 9 => 765,
71
- ),
72
- 73 =>
73
- array (
74
- 0 => 331,
75
- 1 => 331,
76
- 'interval' => true,
77
- ),
78
- 75 =>
79
- array (
80
- 0 => 664,
81
- 1 => 565,
82
- 2 => 943,
83
- 3 => 813,
84
- 4 => 796,
85
- 5 => 628,
86
- 6 => 796,
87
- 7 => 660,
88
- 8 => 551,
89
- 9 => 579,
90
- 10 => 756,
91
- 11 => 650,
92
- 12 => 967,
93
- 13 => 667,
94
- 14 => 624,
95
- 15 => 579,
96
- 16 => 331,
97
- 17 => 413,
98
- 18 => 331,
99
- 19 => 532,
100
- 20 => 411,
101
- 21 => 607,
102
- 22 => 604,
103
- 23 => 633,
104
- 24 => 514,
105
- 25 => 633,
106
- 26 => 591,
107
- 27 => 387,
108
- 28 => 565,
109
- 29 => 657,
110
- ),
111
- 105 =>
112
- array (
113
- 0 => 305,
114
- 1 => 305,
115
- 'interval' => true,
116
- ),
117
- 107 =>
118
- array (
119
- 0 => 620,
120
- 1 => 305,
121
- 2 => 982,
122
- 3 => 657,
123
- 4 => 619,
124
- ),
125
- 112 =>
126
- array (
127
- 0 => 633,
128
- 1 => 633,
129
- 'interval' => true,
130
- ),
131
- 114 =>
132
- array (
133
- 0 => 454,
134
- 1 => 497,
135
- 2 => 434,
136
- 3 => 657,
137
- 4 => 569,
138
- 5 => 856,
139
- 6 => 578,
140
- 7 => 569,
141
- 8 => 488,
142
- 9 => 394,
143
- 10 => 551,
144
- 11 => 394,
145
- 12 => 571,
146
- ),
147
- );
148
  ?>
1
+ <?php
2
+ $rangeid=114;
3
+ $prevcid=126;
4
+ $prevwidth=571;
5
+ $interval=false;
6
+ $range=array (
7
+ 32 =>
8
+ array (
9
+ 0 => 260,
10
+ 1 => 286,
11
+ 2 => 472,
12
+ 3 => 646,
13
+ 4 => 571,
14
+ 5 => 901,
15
+ 6 => 750,
16
+ 7 => 266,
17
+ ),
18
+ 40 =>
19
+ array (
20
+ 0 => 339,
21
+ 1 => 339,
22
+ 'interval' => true,
23
+ ),
24
+ 42 =>
25
+ array (
26
+ 0 => 545,
27
+ 1 => 571,
28
+ 2 => 290,
29
+ 3 => 322,
30
+ 4 => 285,
31
+ 5 => 413,
32
+ ),
33
+ 48 =>
34
+ array (
35
+ 0 => 571,
36
+ 1 => 571,
37
+ 'interval' => true,
38
+ 2 => 571,
39
+ 3 => 571,
40
+ 4 => 571,
41
+ 5 => 571,
42
+ 6 => 571,
43
+ 7 => 571,
44
+ 8 => 571,
45
+ 9 => 571,
46
+ ),
47
+ 58 =>
48
+ array (
49
+ 0 => 285,
50
+ 1 => 290,
51
+ ),
52
+ 60 =>
53
+ array (
54
+ 0 => 571,
55
+ 1 => 571,
56
+ 'interval' => true,
57
+ 2 => 571,
58
+ ),
59
+ 63 =>
60
+ array (
61
+ 0 => 477,
62
+ 1 => 897,
63
+ 2 => 690,
64
+ 3 => 672,
65
+ 4 => 637,
66
+ 5 => 740,
67
+ 6 => 560,
68
+ 7 => 549,
69
+ 8 => 724,
70
+ 9 => 765,
71
+ ),
72
+ 73 =>
73
+ array (
74
+ 0 => 331,
75
+ 1 => 331,
76
+ 'interval' => true,
77
+ ),
78
+ 75 =>
79
+ array (
80
+ 0 => 664,
81
+ 1 => 565,
82
+ 2 => 943,
83
+ 3 => 813,
84
+ 4 => 796,
85
+ 5 => 628,
86
+ 6 => 796,
87
+ 7 => 660,
88
+ 8 => 551,
89
+ 9 => 579,
90
+ 10 => 756,
91
+ 11 => 650,
92
+ 12 => 967,
93
+ 13 => 667,
94
+ 14 => 624,
95
+ 15 => 579,
96
+ 16 => 331,
97
+ 17 => 413,
98
+ 18 => 331,
99
+ 19 => 532,
100
+ 20 => 411,
101
+ 21 => 607,
102
+ 22 => 604,
103
+ 23 => 633,
104
+ 24 => 514,
105
+ 25 => 633,
106
+ 26 => 591,
107
+ 27 => 387,
108
+ 28 => 565,
109
+ 29 => 657,
110
+ ),
111
+ 105 =>
112
+ array (
113
+ 0 => 305,
114
+ 1 => 305,
115
+ 'interval' => true,
116
+ ),
117
+ 107 =>
118
+ array (
119
+ 0 => 620,
120
+ 1 => 305,
121
+ 2 => 982,
122
+ 3 => 657,
123
+ 4 => 619,
124
+ ),
125
+ 112 =>
126
+ array (
127
+ 0 => 633,
128
+ 1 => 633,
129
+ 'interval' => true,
130
+ ),
131
+ 114 =>
132
+ array (
133
+ 0 => 454,
134
+ 1 => 497,
135
+ 2 => 434,
136
+ 3 => 657,
137
+ 4 => 569,
138
+ 5 => 856,
139
+ 6 => 578,
140
+ 7 => 569,
141
+ 8 => 488,
142
+ 9 => 394,
143
+ 10 => 551,
144
+ 11 => 394,
145
+ 12 => 571,
146
+ ),
147
+ );
148
  ?>
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.8
6
  Tested up to: 4.4
7
- Stable tag: 2.4.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -140,11 +140,34 @@ To change the options of the PDF, use below example.
140
  }
141
  add_filter( 'bewpi_mpdf', 'bewpi_mpdf' );`
142
 
143
- = Images doesn't display on invoice? =
144
- Enable mPDF debugging on General Settings tab in order to output errors. Not recommended on live site!
 
 
 
 
 
 
 
 
 
145
 
146
  == Changelog ==
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  = 2.4.1 - February 10, 2016 =
149
 
150
  - Added: Lithuanian language files
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.8
6
  Tested up to: 4.4
7
+ Stable tag: 2.4.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
140
  }
141
  add_filter( 'bewpi_mpdf', 'bewpi_mpdf' );`
142
 
143
+ = Logo image shows a red cross? =
144
+ Add below filter to themes functions.php to base64 the image. By default the relative path is used. Also read the sticky topic on the support forum for more solutions!
145
+
146
+ `function convert_company_logo_to_base64( $company_logo_path ) {
147
+ $company_logo_url = str_replace( '..', get_site_url(), $company_logo_path );
148
+ $type = pathinfo( $company_logo_url, PATHINFO_EXTENSION );
149
+ $data = wp_remote_fopen( $company_logo_url );
150
+ $base64 = 'data:image/' . $type . ';base64,' . base64_encode( $data );
151
+ return $base64;
152
+ }
153
+ add_filter( 'bewpi_company_logo_url', 'convert_company_logo_to_base64' );`
154
 
155
  == Changelog ==
156
 
157
+ = 2.4.3 - March 06, 2016 =
158
+
159
+ - Removed: Borders on template due to testing layout.
160
+
161
+ = 2.4.2 - March 06, 2016 =
162
+
163
+ - Added: '[shipping_method]' placeholder and filter to add more placeholders.
164
+ - Added: Filters to FAQ page in order to fix the company logo showing red cross. (Read sticky topic on support forum first)
165
+ - Fixed: Paid watermark not showing
166
+ - Fixed: Sequential invoice number reset
167
+ - Fixed: 'SyntaxError: Unexpected token C' error
168
+ - Improved: Language files
169
+ - Removed: Unused global invoice template and dir
170
+
171
  = 2.4.1 - February 10, 2016 =
172
 
173
  - Added: Lithuanian language files