Version Description
March 06, 2016 =
Removed: Borders on template due to testing layout.
Download this release
Release Info
Developer | baaaaas |
Plugin | 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 +17 -1
- bootstrap.php +3 -5
- includes/abstracts/abstract-bewpi-document.php +7 -5
- includes/abstracts/abstract-bewpi-invoice.php +456 -354
- includes/admin/settings/class-bewpi-admin-settings-template.php +2 -2
- includes/be-woocommerce-pdf-invoices.php +16 -1
- includes/class-bewpi-invoice.php +3 -3
- includes/templates/invoices/global/micro/body.php +0 -300
- includes/templates/invoices/global/micro/footer.php +0 -22
- includes/templates/invoices/global/micro/header.php +0 -13
- includes/templates/invoices/global/micro/style.css +0 -136
- includes/templates/invoices/simple/micro/footer.php +2 -16
- includes/templates/invoices/simple/micro/header.php +4 -4
- includes/templates/invoices/simple/micro/style.css +16 -18
- lang/woocommerce-pdf-invoices-de_DE.mo +0 -0
- lang/woocommerce-pdf-invoices-de_DE.po +1239 -1177
- lang/woocommerce-pdf-invoices-es_ES.po +999 -775
- lang/woocommerce-pdf-invoices-fr_FR.po +1040 -816
- lang/woocommerce-pdf-invoices-lt_LT.po +1 -1
- lang/woocommerce-pdf-invoices-nb_NO.po +1269 -1048
- lang/woocommerce-pdf-invoices-nl_NL.mo +0 -0
- lang/woocommerce-pdf-invoices-nl_NL.po +1268 -1044
- lang/woocommerce-pdf-invoices-ro_RO.po +1 -1
- lang/woocommerce-pdf-invoices-ru_RU.po +1 -1
- lang/woocommerce-pdf-invoices-sk_SK.po +1 -1
- lang/woocommerce-pdf-invoices-sl_SI.po +993 -769
- lang/woocommerce-pdf-invoices-sv_SE.po +1182 -958
- lang/woocommerce-pdf-invoices.pot +945 -721
- lib/mpdf/ttfontdata/opensansB.cw127.php +147 -147
- readme.txt +26 -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.
|
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.
|
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',
|
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 |
-
|
|
|
84 |
|
85 |
-
if ( ! empty( $html_sections['footer'] ) )
|
86 |
-
|
|
|
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
|
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 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
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 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
|
90 |
/**
|
91 |
* Initialize invoice with WooCommerce order
|
92 |
* @param string $order
|
93 |
*/
|
94 |
-
public function __construct(
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
|
|
105 |
}
|
106 |
|
107 |
/**
|
108 |
* Gets all the existing invoice data from database or creates new invoice number.
|
109 |
*/
|
110 |
-
private function init()
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
|
|
116 |
}
|
117 |
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
|
|
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(
|
127 |
-
$year = date_i18n(
|
128 |
-
$y = date_i18n(
|
129 |
-
$m = date_i18n(
|
130 |
|
131 |
// Format invoice number
|
132 |
$formatted_invoice_number = str_replace(
|
133 |
-
array(
|
134 |
-
array(
|
135 |
-
$invoice_number_format
|
136 |
|
137 |
-
|
138 |
-
|
139 |
|
140 |
/**
|
141 |
* Format date
|
142 |
* @param bool $insert
|
143 |
* @return bool|datetime|string
|
144 |
*/
|
145 |
-
public function get_formatted_invoice_date()
|
146 |
-
|
147 |
-
|
|
|
148 |
}
|
149 |
|
150 |
/*
|
151 |
* Format the order date and return
|
152 |
*/
|
153 |
-
public function get_formatted_order_date(
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
$
|
166 |
-
|
|
|
167 |
} else {
|
168 |
-
$formatted_date = $order_date->format(
|
169 |
-
return date_i18n(
|
170 |
}
|
171 |
}
|
172 |
|
173 |
/**
|
174 |
* Get all html from html files and store as vars
|
175 |
*/
|
176 |
-
private function output_template_files_to_buffer(
|
177 |
-
|
178 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
|
|
|
|
|
|
184 |
|
185 |
-
|
|
|
|
|
186 |
|
187 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
}
|
189 |
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
-
|
196 |
-
|
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 |
-
|
203 |
-
|
|
|
204 |
|
205 |
-
|
206 |
-
|
207 |
-
}
|
208 |
|
209 |
-
|
210 |
-
|
|
|
211 |
|
212 |
-
|
213 |
-
|
214 |
-
|
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 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
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 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
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 |
-
|
352 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
|
354 |
-
|
355 |
-
|
|
|
|
|
|
|
356 |
|
357 |
-
|
358 |
-
|
|
|
|
|
359 |
|
360 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
} else {
|
362 |
-
|
363 |
}
|
364 |
}
|
365 |
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
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
|
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 . '
|
|
|
|
|
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 |
-
|
|
|
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 '–';
|
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 |
-
|
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 |
-
|
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 |
-
|
6 |
-
|
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-
|
5 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
"
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
"
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
"
|
297 |
-
"
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
#: includes/
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
#: includes/
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
#: includes/
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
#: includes/
|
356 |
-
#: includes/templates/invoices/
|
357 |
-
#: includes/templates/invoices/
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
"
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
"
|
519 |
-
"
|
520 |
-
|
521 |
-
|
522 |
-
"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: includes/class-
|
526 |
-
msgid ""
|
527 |
-
"
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
msgid ""
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
"
|
569 |
-
"
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
#: includes/partials/settings-sidebar.php:
|
633 |
-
msgid "
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
#: includes/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
655 |
-
|
656 |
-
#: includes/
|
657 |
-
msgid "
|
658 |
-
msgstr "
|
659 |
-
|
660 |
-
#: includes/
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
#: includes/
|
672 |
-
msgid "
|
673 |
-
msgstr "
|
674 |
-
|
675 |
-
#: includes/
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
#: includes/
|
684 |
-
msgid "
|
685 |
-
msgstr "
|
686 |
-
|
687 |
-
#: includes/
|
688 |
-
#, php-format
|
689 |
-
msgid "
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
#: includes/
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
#: includes/
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
#~ msgid "
|
969 |
-
#~
|
970 |
-
|
971 |
-
#~
|
972 |
-
#~
|
973 |
-
|
974 |
-
|
975 |
-
#~
|
976 |
-
|
977 |
-
|
978 |
-
#~ "Feel free to use
|
979 |
-
#~ "
|
980 |
-
|
981 |
-
#~ "
|
982 |
-
#~ "
|
983 |
-
|
984 |
-
|
985 |
-
#~
|
986 |
-
|
987 |
-
|
988 |
-
#~
|
989 |
-
|
990 |
-
#~
|
991 |
-
#~ "
|
992 |
-
#~ msgstr ""
|
993 |
-
#~ "
|
994 |
-
|
995 |
-
#~
|
996 |
-
|
997 |
-
|
998 |
-
#~
|
999 |
-
#~
|
1000 |
-
|
1001 |
-
#~
|
1002 |
-
#~
|
1003 |
-
|
1004 |
-
#~ msgid "
|
1005 |
-
#~ msgstr "
|
1006 |
-
|
1007 |
-
#~ msgid "
|
1008 |
-
#~ msgstr "
|
1009 |
-
|
1010 |
-
#~ msgid "
|
1011 |
-
#~
|
1012 |
-
|
1013 |
-
#~
|
1014 |
-
#~
|
1015 |
-
|
1016 |
-
#~
|
1017 |
-
#~
|
1018 |
-
|
1019 |
-
#~
|
1020 |
-
|
1021 |
-
|
1022 |
-
#~
|
1023 |
-
|
1024 |
-
|
1025 |
-
#~
|
1026 |
-
|
1027 |
-
|
1028 |
-
#~
|
1029 |
-
|
1030 |
-
|
1031 |
-
#~
|
1032 |
-
|
1033 |
-
|
1034 |
-
#~
|
1035 |
-
|
1036 |
-
|
1037 |
-
#~
|
1038 |
-
|
1039 |
-
|
1040 |
-
#~
|
1041 |
-
#~
|
1042 |
-
|
1043 |
-
#~
|
1044 |
-
#~
|
1045 |
-
|
1046 |
-
#~ msgid "
|
1047 |
-
#~ msgstr "
|
1048 |
-
|
1049 |
-
#~ msgid "
|
1050 |
-
#~ msgstr "
|
1051 |
-
|
1052 |
-
#~ msgid "
|
1053 |
-
#~
|
1054 |
-
|
1055 |
-
#~
|
1056 |
-
|
1057 |
-
|
1058 |
-
#~
|
1059 |
-
|
1060 |
-
|
1061 |
-
#~
|
1062 |
-
|
1063 |
-
|
1064 |
-
#~
|
1065 |
-
|
1066 |
-
#~ "
|
1067 |
-
#~ msgstr ""
|
1068 |
-
|
1069 |
-
#~ "
|
1070 |
-
|
1071 |
-
|
1072 |
-
#~
|
1073 |
-
|
1074 |
-
|
1075 |
-
#~
|
1076 |
-
|
1077 |
-
|
1078 |
-
#~
|
1079 |
-
|
1080 |
-
|
1081 |
-
#~
|
1082 |
-
|
1083 |
-
|
1084 |
-
#~
|
1085 |
-
#~ "
|
1086 |
-
|
1087 |
-
#~ msgid "
|
1088 |
-
#~ msgstr "
|
1089 |
-
|
1090 |
-
#~ msgid "
|
1091 |
-
#~ msgstr "
|
1092 |
-
|
1093 |
-
#~ msgid "
|
1094 |
-
#~ msgstr "
|
1095 |
-
|
1096 |
-
#~ msgid "
|
1097 |
-
#~ msgstr "
|
1098 |
-
|
1099 |
-
#~ msgid "
|
1100 |
-
#~ msgstr "
|
1101 |
-
|
1102 |
-
#~ msgid "
|
1103 |
-
#~ msgstr "
|
1104 |
-
|
1105 |
-
#~ msgid "
|
1106 |
-
#~ msgstr "
|
1107 |
-
|
1108 |
-
#~ msgid "
|
1109 |
-
#~ msgstr "
|
1110 |
-
|
1111 |
-
#~ msgid "
|
1112 |
-
#~ msgstr "
|
1113 |
-
|
1114 |
-
#~ msgid "
|
1115 |
-
#~ msgstr "
|
1116 |
-
|
1117 |
-
#~ msgid "
|
1118 |
-
#~ msgstr ""
|
1119 |
-
|
1120 |
-
|
1121 |
-
#~
|
1122 |
-
|
1123 |
-
|
1124 |
-
#~
|
1125 |
-
|
1126 |
-
|
1127 |
-
#~
|
1128 |
-
#~
|
1129 |
-
|
1130 |
-
#~
|
1131 |
-
#~
|
1132 |
-
|
1133 |
-
#~ msgid "
|
1134 |
-
#~ msgstr "
|
1135 |
-
|
1136 |
-
#~ msgid ""
|
1137 |
-
#~ "
|
1138 |
-
|
1139 |
-
#~ "
|
1140 |
-
#~ "
|
1141 |
-
|
1142 |
-
#~ msgid "
|
1143 |
-
#~ msgstr "
|
1144 |
-
|
1145 |
-
#~ msgid "%
|
1146 |
-
#~ msgstr "
|
1147 |
-
|
1148 |
-
|
1149 |
-
#~
|
1150 |
-
|
1151 |
-
|
1152 |
-
#~
|
1153 |
-
|
1154 |
-
|
1155 |
-
#~
|
1156 |
-
|
1157 |
-
|
1158 |
-
#~
|
1159 |
-
|
1160 |
-
|
1161 |
-
#~ "
|
1162 |
-
#~ "
|
1163 |
-
|
1164 |
-
#~ "
|
1165 |
-
#~ "
|
1166 |
-
|
1167 |
-
#~ msgid "
|
1168 |
-
#~ msgstr "
|
1169 |
-
|
1170 |
-
#~ msgid "
|
1171 |
-
#~ msgstr "
|
1172 |
-
|
1173 |
-
#~ msgid "
|
1174 |
-
#~ msgstr "
|
1175 |
-
|
1176 |
-
#~ msgid "
|
1177 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
6 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
"
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
"
|
298 |
-
"
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
#: ../includes/
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
#: ../includes/
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
#: ../includes/
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
#: ../includes/
|
357 |
-
#: ../includes/templates/invoices/
|
358 |
-
#: ../includes/templates/invoices/
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: ../includes/
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
msgstr "
|
486 |
-
|
487 |
-
#: ../includes/
|
488 |
-
msgid "
|
489 |
-
msgstr "
|
490 |
-
|
491 |
-
#: ../includes/
|
492 |
-
msgid "
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
msgid ""
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
"
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../includes/
|
542 |
-
msgid "
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../includes/
|
546 |
-
msgid "
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../includes/
|
550 |
-
msgid "
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: ../includes/
|
554 |
-
|
555 |
-
|
556 |
-
"
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
"
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
#: ../includes/
|
600 |
-
msgid "
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../includes/
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
"
|
611 |
-
"
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
#: ../includes/
|
668 |
-
msgid "
|
669 |
-
msgstr "
|
670 |
-
|
671 |
-
#: ../includes/
|
672 |
-
|
673 |
-
msgid "
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
#: ../includes/
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
#: ../includes/
|
700 |
-
msgid "
|
701 |
-
msgstr "
|
702 |
-
|
703 |
-
#: ../includes/
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
msgid "
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: ../includes/
|
724 |
-
|
725 |
-
msgid "
|
726 |
-
msgstr "
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
5 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
"
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
"
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
"
|
297 |
-
"
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
#: includes/
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
#: includes/
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
#: includes/
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
#: includes/
|
356 |
-
#: includes/templates/invoices/
|
357 |
-
#: includes/templates/invoices/
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
msgstr "
|
485 |
-
|
486 |
-
#: includes/
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
-
|
490 |
-
#: includes/
|
491 |
-
msgid "
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
msgid ""
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
"
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: includes/
|
541 |
-
msgid "
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: includes/
|
545 |
-
msgid "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: includes/
|
549 |
-
msgid "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: includes/
|
553 |
-
|
554 |
-
|
555 |
-
"
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
"
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
#: includes/
|
599 |
-
msgid "
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: includes/
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
"
|
610 |
-
"
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
#: includes/
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
-
|
670 |
-
#: includes/
|
671 |
-
|
672 |
-
msgid "
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
#: includes/
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
#: includes/
|
699 |
-
msgid "
|
700 |
-
msgstr "
|
701 |
-
|
702 |
-
#: includes/
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
msgid "
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: includes/
|
723 |
-
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
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-
|
5 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
"
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
"
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
"
|
190 |
-
|
191 |
-
"
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
"
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
"
|
308 |
-
"
|
309 |
-
|
310 |
-
"
|
311 |
-
|
312 |
-
"
|
313 |
-
"
|
314 |
-
"
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
"
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
#: includes/
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
#: includes/
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
#: includes/
|
374 |
-
#: includes/templates/invoices/
|
375 |
-
#: includes/templates/invoices/
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
"
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
"
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
msgid ""
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
"
|
487 |
-
|
488 |
-
|
489 |
-
#: includes/
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
msgstr "
|
505 |
-
|
506 |
-
#: includes/
|
507 |
-
msgid "
|
508 |
-
msgstr "
|
509 |
-
|
510 |
-
#: includes/
|
511 |
-
msgid "
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
msgid ""
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
"
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
"
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
"
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
"
|
570 |
-
"
|
571 |
-
|
572 |
-
#: includes/
|
573 |
-
msgid "
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
"
|
590 |
-
"
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
"
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
#: includes/
|
634 |
-
msgid "
|
635 |
-
msgstr "
|
636 |
-
|
637 |
-
#: includes/
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
"
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
"
|
657 |
-
"
|
658 |
-
|
659 |
-
#: includes/
|
660 |
-
msgid ""
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
"
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
msgstr "
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
#: includes/
|
693 |
-
#, php-format
|
694 |
-
msgid "
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
msgid "
|
704 |
-
msgstr "
|
705 |
-
|
706 |
-
#: includes/
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
#: includes/
|
723 |
-
msgid "
|
724 |
-
msgstr "
|
725 |
-
|
726 |
-
#: includes/
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
msgid "
|
736 |
-
msgstr "
|
737 |
-
|
738 |
-
#: includes/
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
#~
|
999 |
-
#~
|
1000 |
-
|
1001 |
-
#~
|
1002 |
-
#~
|
1003 |
-
|
1004 |
-
#~ msgid "
|
1005 |
-
#~ msgstr "
|
1006 |
-
|
1007 |
-
#~ msgid ""
|
1008 |
-
#~
|
1009 |
-
|
1010 |
-
#~
|
1011 |
-
#~ "
|
1012 |
-
|
1013 |
-
#~
|
1014 |
-
#~ msgstr "
|
1015 |
-
|
1016 |
-
#~
|
1017 |
-
#~
|
1018 |
-
|
1019 |
-
#~ msgid "
|
1020 |
-
#~
|
1021 |
-
|
1022 |
-
#~
|
1023 |
-
#~
|
1024 |
-
|
1025 |
-
|
1026 |
-
#~
|
1027 |
-
|
1028 |
-
|
1029 |
-
#~
|
1030 |
-
|
1031 |
-
|
1032 |
-
#~ "
|
1033 |
-
#~ "
|
1034 |
-
|
1035 |
-
#~
|
1036 |
-
#~ "
|
1037 |
-
|
1038 |
-
#~
|
1039 |
-
#~
|
1040 |
-
|
1041 |
-
|
1042 |
-
#~
|
1043 |
-
|
1044 |
-
|
1045 |
-
#~
|
1046 |
-
|
1047 |
-
#~
|
1048 |
-
#~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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, så 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 på <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-
|
5 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
"
|
114 |
-
|
115 |
-
"
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
"
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
"
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
"
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
"
|
309 |
-
"
|
310 |
-
|
311 |
-
"
|
312 |
-
|
313 |
-
"
|
314 |
-
"
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
"
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
#: includes/
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
#: includes/
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
#: includes/
|
374 |
-
#: includes/templates/invoices/
|
375 |
-
#: includes/templates/invoices/
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
"
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
msgstr "
|
454 |
-
|
455 |
-
#: includes/
|
456 |
-
msgid "
|
457 |
-
msgstr "
|
458 |
-
|
459 |
-
#: includes/
|
460 |
-
msgid "
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
"
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
"a
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
msgid "
|
491 |
-
msgstr "
|
492 |
-
|
493 |
-
#: includes/
|
494 |
-
msgid "
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
"
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
"
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
|
549 |
-
"
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
"
|
570 |
-
|
571 |
-
|
572 |
-
#: includes/
|
573 |
-
msgid "
|
574 |
-
|
575 |
-
"
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
"
|
591 |
-
"
|
592 |
-
|
593 |
-
#: includes/
|
594 |
-
msgid "
|
595 |
-
msgstr "
|
596 |
-
|
597 |
-
#: includes/
|
598 |
-
msgid "
|
599 |
-
msgstr "
|
600 |
-
|
601 |
-
#: includes/
|
602 |
-
msgid ""
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
#: includes/
|
610 |
-
msgid "
|
611 |
-
msgstr "
|
612 |
-
|
613 |
-
#: includes/
|
614 |
-
msgid "
|
615 |
-
msgstr "
|
616 |
-
|
617 |
-
#: includes/
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
#: includes/
|
634 |
-
msgid "
|
635 |
-
msgstr "
|
636 |
-
|
637 |
-
#: includes/
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
"
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
"
|
657 |
-
"
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
"
|
665 |
-
"
|
666 |
-
|
667 |
-
#: includes/
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
#: includes/
|
676 |
-
msgid "
|
677 |
-
msgstr "
|
678 |
-
|
679 |
-
#: includes/
|
680 |
-
msgid "
|
681 |
-
msgstr "
|
682 |
-
|
683 |
-
#: includes/
|
684 |
-
msgid "
|
685 |
-
msgstr "
|
686 |
-
|
687 |
-
#: includes/
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
msgstr "
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
#: includes/
|
714 |
-
msgid "
|
715 |
-
msgstr "
|
716 |
-
|
717 |
-
#: includes/
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
#: includes/
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
#: includes/
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
#: includes/
|
751 |
-
#, php-format
|
752 |
-
msgid "
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
msgid "
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
#~
|
999 |
-
|
1000 |
-
#~
|
1001 |
-
#~ msgstr "
|
1002 |
-
|
1003 |
-
#~
|
1004 |
-
|
1005 |
-
#~
|
1006 |
-
#~ "Gebruik
|
1007 |
-
|
1008 |
-
|
1009 |
-
#~
|
1010 |
-
|
1011 |
-
|
1012 |
-
#~
|
1013 |
-
#~
|
1014 |
-
|
1015 |
-
#~
|
1016 |
-
#~
|
1017 |
-
|
1018 |
-
#~
|
1019 |
-
|
1020 |
-
|
1021 |
-
#~
|
1022 |
-
#~
|
1023 |
-
|
1024 |
-
#~
|
1025 |
-
#~
|
1026 |
-
|
1027 |
-
#~ msgid ""
|
1028 |
-
#~
|
1029 |
-
|
1030 |
-
#~
|
1031 |
-
#~ "
|
1032 |
-
|
1033 |
-
|
1034 |
-
#~
|
1035 |
-
|
1036 |
-
|
1037 |
-
#~
|
1038 |
-
#~
|
1039 |
-
|
1040 |
-
#~
|
1041 |
-
#~
|
1042 |
-
|
1043 |
-
#~
|
1044 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
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-
|
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-
|
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-
|
5 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
"
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
"
|
295 |
-
"
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
#: includes/
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
#: includes/
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
#: includes/
|
354 |
-
#: includes/templates/invoices/
|
355 |
-
#: includes/templates/invoices/
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: includes/
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: includes/
|
485 |
-
msgid "
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: includes/
|
489 |
-
msgid "
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgid ""
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
"
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/
|
539 |
-
msgid "
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/
|
543 |
-
msgid "
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/
|
547 |
-
msgid "
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: includes/
|
551 |
-
|
552 |
-
|
553 |
-
"
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
"
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
#: includes/
|
597 |
-
msgid "
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: includes/
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
"
|
608 |
-
"
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
#: includes/
|
665 |
-
msgid "
|
666 |
-
msgstr ""
|
667 |
-
|
668 |
-
#: includes/
|
669 |
-
|
670 |
-
msgid "
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
#: includes/
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
#: includes/
|
697 |
-
msgid "
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: includes/
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
msgid "
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: includes/
|
721 |
-
|
722 |
-
msgid "
|
723 |
-
msgstr "
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
5 |
-
"PO-Revision-Date: 2016-
|
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 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
"
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
"
|
295 |
-
"
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
#: includes/
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
#: includes/
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
#: includes/
|
354 |
-
#: includes/templates/invoices/
|
355 |
-
#: includes/templates/invoices/
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: includes/
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
msgstr "
|
483 |
-
|
484 |
-
#: includes/
|
485 |
-
msgid "
|
486 |
-
msgstr "
|
487 |
-
|
488 |
-
#: includes/
|
489 |
-
msgid "
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgid ""
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
"
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/
|
539 |
-
msgid "
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/
|
543 |
-
msgid "
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/
|
547 |
-
msgid "
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: includes/
|
551 |
-
|
552 |
-
|
553 |
-
"
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
"
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
#: includes/
|
597 |
-
msgid "
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: includes/
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
"
|
608 |
-
"
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
#: includes/
|
665 |
-
msgid "
|
666 |
-
msgstr "
|
667 |
-
|
668 |
-
#: includes/
|
669 |
-
|
670 |
-
msgid "
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
#: includes/
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
#: includes/
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
-
|
700 |
-
#: includes/
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
msgid "
|
718 |
-
msgstr "
|
719 |
-
|
720 |
-
#: includes/
|
721 |
-
|
722 |
-
msgid "
|
723 |
-
msgstr "
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
#~
|
950 |
-
|
951 |
-
|
952 |
-
#~
|
953 |
-
|
954 |
-
|
955 |
-
#~
|
956 |
-
|
957 |
-
|
958 |
-
#~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
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:
|
21 |
-
|
22 |
-
msgid ""
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
32 |
-
msgid "
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
"
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
msgid ""
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
"
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
msgid ""
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: includes/abstracts/abstract-bewpi-
|
172 |
-
msgid "
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: includes/
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
msgid "
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: includes/
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/admin/settings/class-bewpi-admin-settings-
|
266 |
-
msgid "
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: includes/admin/settings/class-bewpi-admin-settings-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
msgid "
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/admin/settings/class-bewpi-admin-settings-
|
279 |
-
msgid "
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin/settings/class-bewpi-admin-settings-
|
283 |
-
msgid ""
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
329 |
-
msgid "
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
333 |
-
msgid "
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
337 |
-
msgid "
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
341 |
-
msgid "
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
345 |
-
msgid "
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
msgid "
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
369 |
-
msgid "
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
373 |
-
msgid "
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
377 |
-
msgid "
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
381 |
-
msgid "
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
385 |
-
msgid "
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
"
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
msgid "
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
409 |
-
msgid "
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
413 |
-
msgid "
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
417 |
-
msgid "
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
#: includes/
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
#: includes/
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
#: includes/
|
461 |
-
|
462 |
-
msgid "
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
#: includes/
|
474 |
-
msgid "
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
#: includes/
|
494 |
-
msgid "
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
#: includes/
|
502 |
-
msgid "
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:
|
506 |
-
msgid ""
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
"
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
"
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: includes/
|
612 |
-
msgid ""
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: includes/
|
629 |
-
msgid "
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: includes/
|
633 |
-
msgid "
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
#: includes/
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
#: includes/
|
663 |
-
msgid "
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: includes/
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
#: includes/
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
#: includes/
|
695 |
-
msgid "
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
msgid "
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
#: includes/
|
720 |
-
msgid "
|
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.
|
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 |
-
=
|
144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|