Version Description
- Feature: use separate file for all your template specific functions (template-functions.php)
- Translations: Added Slovenian (thanks gregy1403!)
- Translations: Updated Norwegian & Dutch.
- Translations: Added Japanese - needs custom font!
- FAQ: instructions on how to use custom fonts
Download this release
Release Info
Developer | pomegranate |
Plugin | WooCommerce PDF Invoices & Packing Slips |
Version | 1.4.13 |
Comparing to | |
See all releases |
Code changes from version 1.4.12 to 1.4.13
- css/style.css +5 -0
- images/cloud-print.png +0 -0
- includes/class-wcpdf-export.php +24 -16
- includes/class-wcpdf-settings.php +10 -7
- includes/wcpdf-extensions.php +21 -2
- languages/wpo_wcpdf-ja.mo +0 -0
- languages/wpo_wcpdf-ja.po +453 -0
- languages/wpo_wcpdf-nb_NO.mo +0 -0
- languages/wpo_wcpdf-nb_NO.po +265 -178
- languages/wpo_wcpdf-nl_NL.mo +0 -0
- languages/wpo_wcpdf-nl_NL.po +187 -95
- languages/wpo_wcpdf-sl_SI.mo +0 -0
- languages/wpo_wcpdf-sl_SI.po +528 -0
- languages/wpo_wcpdf.pot +75 -59
- readme.txt +58 -3
- templates/pdf/Simple/style.css +1 -1
- templates/pdf/Simple/template-functions.php +7 -0
- tmp/.gitignore +0 -4
- tmp/.htaccess +1 -0
- woocommerce-pdf-invoices-packingslips.php +33 -22
css/style.css
CHANGED
@@ -132,4 +132,9 @@ img.wpo-helper {
|
|
132 |
.dropbox-logo {
|
133 |
margin-bottom: -10px;
|
134 |
margin-right: 10px;
|
|
|
|
|
|
|
|
|
|
|
135 |
}
|
132 |
.dropbox-logo {
|
133 |
margin-bottom: -10px;
|
134 |
margin-right: 10px;
|
135 |
+
}
|
136 |
+
.cloud-logo {
|
137 |
+
margin-bottom: -10px;
|
138 |
+
margin-top: -5px;
|
139 |
+
margin-right: 10px;
|
140 |
}
|
images/cloud-print.png
ADDED
Binary file
|
includes/class-wcpdf-export.php
CHANGED
@@ -41,6 +41,10 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
41 |
}
|
42 |
}
|
43 |
|
|
|
|
|
|
|
|
|
44 |
add_action( 'wp_ajax_generate_wpo_wcpdf', array($this, 'generate_pdf_ajax' ));
|
45 |
add_filter( 'woocommerce_email_attachments', array( $this, 'attach_pdf_to_email' ), 99, 3);
|
46 |
|
@@ -62,8 +66,9 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
62 |
|
63 |
$output_html = array();
|
64 |
foreach ($order_ids as $order_id) {
|
65 |
-
do_action( 'wpo_wcpdf_process_template_order', $template_type, $order_id );
|
66 |
$this->order = new WC_Order( $order_id );
|
|
|
|
|
67 |
$template = $this->template_path . '/' . $template_type . '.php';
|
68 |
$template = apply_filters( 'wpo_wcpdf_template_file', $template, $template_type );
|
69 |
|
@@ -83,6 +88,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
83 |
update_post_meta( $order_id, '_wcpdf_invoice_exists', 1 );
|
84 |
}
|
85 |
|
|
|
86 |
// Wipe post from cache
|
87 |
wp_cache_delete( $order_id, 'posts' );
|
88 |
wp_cache_delete( $order_id, 'post_meta' );
|
@@ -115,6 +121,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
115 |
// clean up special characters
|
116 |
$complete_document = utf8_decode(mb_convert_encoding($complete_document, 'HTML-ENTITIES', 'UTF-8'));
|
117 |
|
|
|
118 |
return $complete_document;
|
119 |
}
|
120 |
|
@@ -125,6 +132,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
125 |
$paper_size = apply_filters( 'wpo_wcpdf_paper_format', $this->template_settings['paper_size'], $template_type );
|
126 |
$paper_orientation = apply_filters( 'wpo_wcpdf_paper_orientation', 'portrait', $template_type);
|
127 |
|
|
|
128 |
if ( !class_exists('DOMPDF') ) {
|
129 |
// extra check to avoid clashes with other plugins using DOMPDF
|
130 |
// This could have unwanted side-effects when the version that's already
|
@@ -137,6 +145,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
137 |
$dompdf->load_html($this->process_template( $template_type, $order_ids ));
|
138 |
$dompdf->set_paper( $paper_size, $paper_orientation );
|
139 |
$dompdf->render();
|
|
|
140 |
|
141 |
// Try to clean up a bit of memory
|
142 |
unset($complete_pdf);
|
@@ -211,8 +220,6 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
211 |
$template_type = $_GET['template_type'];
|
212 |
// die($this->process_template( $template_type, $order_ids )); // or use the filter switch below!
|
213 |
|
214 |
-
do_action( 'wpo_wcpdf_before_pdf', $template_type );
|
215 |
-
|
216 |
if (apply_filters('wpo_wcpdf_output_html', false, $template_type)) {
|
217 |
// Output html to browser for debug
|
218 |
// NOTE! images will be loaded with the server path by default
|
@@ -224,8 +231,6 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
224 |
exit;
|
225 |
}
|
226 |
|
227 |
-
do_action( 'wpo_wcpdf_after_pdf', $template_type );
|
228 |
-
|
229 |
$filename = $this->build_filename( $template_type, $order_ids, 'download' );
|
230 |
|
231 |
// Get output setting
|
@@ -304,23 +309,23 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
304 |
}
|
305 |
$this->order = $order;
|
306 |
|
307 |
-
if (
|
308 |
return;
|
309 |
}
|
310 |
|
311 |
-
// clear temp folder (from http://stackoverflow.com/a/13468943/1446634)
|
312 |
$tmp_path = apply_filters( 'wpo_wcpdf_tmp_path', WooCommerce_PDF_Invoices::$plugin_path . 'tmp/' );
|
313 |
-
array_map('unlink', ( glob( $tmp_path.'*' ) ? glob( $tmp_path.'*' ) : array() ) );
|
314 |
|
|
|
|
|
|
|
|
|
|
|
315 |
$documents = array(
|
316 |
-
'invoice' => apply_filters( 'wpo_wcpdf_email_allowed_statuses',
|
317 |
);
|
318 |
-
|
319 |
$documents = apply_filters('wpo_wcpdf_attach_documents', $documents );
|
320 |
|
321 |
-
|
322 |
foreach ($documents as $template_type => $allowed_statuses ) {
|
323 |
-
|
324 |
// convert 'lazy' status name
|
325 |
foreach ($allowed_statuses as $key => $order_status) {
|
326 |
if ($order_status == 'completed' || $order_status == 'processing') {
|
@@ -330,17 +335,20 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
330 |
|
331 |
// legacy filter, use wpo_wcpdf_custom_attachment_condition instead!
|
332 |
$attach_invoice = apply_filters('wpo_wcpdf_custom_email_condition', true, $order, $status );
|
|
|
|
|
|
|
|
|
333 |
|
334 |
// use this filter to add an extra condition - return false to disable the PDF attachment
|
335 |
$attach_document = apply_filters('wpo_wcpdf_custom_attachment_condition', true, $order, $status, $template_type );
|
336 |
-
|
337 |
-
if( in_array( $status, $allowed_statuses ) && !( ( $template_type == 'invoice' ) && !$attach_invoice ) && $attach_document ) {
|
338 |
// create pdf data
|
339 |
$pdf_data = $this->get_pdf( $template_type, (array) $order->id );
|
340 |
|
341 |
if ( !$pdf_data ) {
|
342 |
-
// something went wrong
|
343 |
-
|
344 |
}
|
345 |
|
346 |
// compose filename
|
41 |
}
|
42 |
}
|
43 |
|
44 |
+
if ( file_exists( $this->template_path . '/template-functions.php' ) ) {
|
45 |
+
require_once( $this->template_path . '/template-functions.php' );
|
46 |
+
}
|
47 |
+
|
48 |
add_action( 'wp_ajax_generate_wpo_wcpdf', array($this, 'generate_pdf_ajax' ));
|
49 |
add_filter( 'woocommerce_email_attachments', array( $this, 'attach_pdf_to_email' ), 99, 3);
|
50 |
|
66 |
|
67 |
$output_html = array();
|
68 |
foreach ($order_ids as $order_id) {
|
|
|
69 |
$this->order = new WC_Order( $order_id );
|
70 |
+
do_action( 'wpo_wcpdf_process_template_order', $template_type, $order_id );
|
71 |
+
|
72 |
$template = $this->template_path . '/' . $template_type . '.php';
|
73 |
$template = apply_filters( 'wpo_wcpdf_template_file', $template, $template_type );
|
74 |
|
88 |
update_post_meta( $order_id, '_wcpdf_invoice_exists', 1 );
|
89 |
}
|
90 |
|
91 |
+
|
92 |
// Wipe post from cache
|
93 |
wp_cache_delete( $order_id, 'posts' );
|
94 |
wp_cache_delete( $order_id, 'post_meta' );
|
121 |
// clean up special characters
|
122 |
$complete_document = utf8_decode(mb_convert_encoding($complete_document, 'HTML-ENTITIES', 'UTF-8'));
|
123 |
|
124 |
+
|
125 |
return $complete_document;
|
126 |
}
|
127 |
|
132 |
$paper_size = apply_filters( 'wpo_wcpdf_paper_format', $this->template_settings['paper_size'], $template_type );
|
133 |
$paper_orientation = apply_filters( 'wpo_wcpdf_paper_orientation', 'portrait', $template_type);
|
134 |
|
135 |
+
do_action( 'wpo_wcpdf_before_pdf', $template_type );
|
136 |
if ( !class_exists('DOMPDF') ) {
|
137 |
// extra check to avoid clashes with other plugins using DOMPDF
|
138 |
// This could have unwanted side-effects when the version that's already
|
145 |
$dompdf->load_html($this->process_template( $template_type, $order_ids ));
|
146 |
$dompdf->set_paper( $paper_size, $paper_orientation );
|
147 |
$dompdf->render();
|
148 |
+
do_action( 'wpo_wcpdf_after_pdf', $template_type );
|
149 |
|
150 |
// Try to clean up a bit of memory
|
151 |
unset($complete_pdf);
|
220 |
$template_type = $_GET['template_type'];
|
221 |
// die($this->process_template( $template_type, $order_ids )); // or use the filter switch below!
|
222 |
|
|
|
|
|
223 |
if (apply_filters('wpo_wcpdf_output_html', false, $template_type)) {
|
224 |
// Output html to browser for debug
|
225 |
// NOTE! images will be loaded with the server path by default
|
231 |
exit;
|
232 |
}
|
233 |
|
|
|
|
|
234 |
$filename = $this->build_filename( $template_type, $order_ids, 'download' );
|
235 |
|
236 |
// Get output setting
|
309 |
}
|
310 |
$this->order = $order;
|
311 |
|
312 |
+
if ( !isset( $status ) ) {
|
313 |
return;
|
314 |
}
|
315 |
|
|
|
316 |
$tmp_path = apply_filters( 'wpo_wcpdf_tmp_path', WooCommerce_PDF_Invoices::$plugin_path . 'tmp/' );
|
|
|
317 |
|
318 |
+
// clear pdf files from temp folder (from http://stackoverflow.com/a/13468943/1446634)
|
319 |
+
array_map('unlink', ( glob( $tmp_path.'*.pdf' ) ? glob( $tmp_path.'*.pdf' ) : array() ) );
|
320 |
+
|
321 |
+
// set allowed statuses for invoices
|
322 |
+
$invoice_allowed = isset($this->general_settings['email_pdf']) ? array_keys( $this->general_settings['email_pdf'] ) : array();
|
323 |
$documents = array(
|
324 |
+
'invoice' => apply_filters( 'wpo_wcpdf_email_allowed_statuses', $invoice_allowed ), // Relevant (default) statuses: new_order, customer_invoice, customer_processing_order, customer_completed_order
|
325 |
);
|
|
|
326 |
$documents = apply_filters('wpo_wcpdf_attach_documents', $documents );
|
327 |
|
|
|
328 |
foreach ($documents as $template_type => $allowed_statuses ) {
|
|
|
329 |
// convert 'lazy' status name
|
330 |
foreach ($allowed_statuses as $key => $order_status) {
|
331 |
if ($order_status == 'completed' || $order_status == 'processing') {
|
335 |
|
336 |
// legacy filter, use wpo_wcpdf_custom_attachment_condition instead!
|
337 |
$attach_invoice = apply_filters('wpo_wcpdf_custom_email_condition', true, $order, $status );
|
338 |
+
if ( $template_type == 'invoice' && !$attach_invoice ) {
|
339 |
+
// don't attach invoice, continue with other documents
|
340 |
+
continue;
|
341 |
+
}
|
342 |
|
343 |
// use this filter to add an extra condition - return false to disable the PDF attachment
|
344 |
$attach_document = apply_filters('wpo_wcpdf_custom_attachment_condition', true, $order, $status, $template_type );
|
345 |
+
if( in_array( $status, $allowed_statuses ) && $attach_document ) {
|
|
|
346 |
// create pdf data
|
347 |
$pdf_data = $this->get_pdf( $template_type, (array) $order->id );
|
348 |
|
349 |
if ( !$pdf_data ) {
|
350 |
+
// something went wrong, continue trying with other documents
|
351 |
+
continue;
|
352 |
}
|
353 |
|
354 |
// compose filename
|
includes/class-wcpdf-settings.php
CHANGED
@@ -129,6 +129,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
129 |
</form>
|
130 |
<?php
|
131 |
}
|
|
|
132 |
do_action( 'wpo_wcpdf_after_settings_page', $active_tab ); ?>
|
133 |
|
134 |
</div>
|
@@ -188,6 +189,13 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
188 |
$tmp_path = WooCommerce_PDF_Invoices::$plugin_path . 'tmp/';
|
189 |
$tmp_path_check = !is_writable( $tmp_path );
|
190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
add_settings_field(
|
192 |
'email_pdf',
|
193 |
__( 'Attach invoice to:', 'wpo_wcpdf' ),
|
@@ -197,12 +205,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
197 |
array(
|
198 |
'menu' => $option,
|
199 |
'id' => 'email_pdf',
|
200 |
-
'options' =>
|
201 |
-
'new_order' => __( 'Admin New Order email' , 'wpo_wcpdf' ),
|
202 |
-
'processing' => __( 'Customer Processing Order email' , 'wpo_wcpdf' ),
|
203 |
-
'completed' => __( 'Customer Completed Order email' , 'wpo_wcpdf' ),
|
204 |
-
'customer_invoice' => __( 'Customer Invoice email' , 'wpo_wcpdf' ),
|
205 |
-
),
|
206 |
'description' => $tmp_path_check ? '<span class="wpo-warning">' . sprintf( __( 'It looks like the temp folder (<code>%s</code>) is not writable, check the permissions for this folder! Without having write access to this folder, the plugin will not be able to email invoices.', 'wpo_wcpdf' ), $tmp_path ).'</span>':'',
|
207 |
)
|
208 |
);
|
@@ -929,7 +932,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
929 |
|
930 |
return apply_filters( 'wpo_wcpdf_templates', $installed_templates );
|
931 |
}
|
932 |
-
|
933 |
} // end class WooCommerce_PDF_Invoices_Settings
|
934 |
|
935 |
} // end class_exists
|
129 |
</form>
|
130 |
<?php
|
131 |
}
|
132 |
+
|
133 |
do_action( 'wpo_wcpdf_after_settings_page', $active_tab ); ?>
|
134 |
|
135 |
</div>
|
189 |
$tmp_path = WooCommerce_PDF_Invoices::$plugin_path . 'tmp/';
|
190 |
$tmp_path_check = !is_writable( $tmp_path );
|
191 |
|
192 |
+
$wc_emails = array(
|
193 |
+
'new_order' => __( 'Admin New Order email' , 'wpo_wcpdf' ),
|
194 |
+
'processing' => __( 'Customer Processing Order email' , 'wpo_wcpdf' ),
|
195 |
+
'completed' => __( 'Customer Completed Order email' , 'wpo_wcpdf' ),
|
196 |
+
'customer_invoice' => __( 'Customer Invoice email' , 'wpo_wcpdf' ),
|
197 |
+
);
|
198 |
+
|
199 |
add_settings_field(
|
200 |
'email_pdf',
|
201 |
__( 'Attach invoice to:', 'wpo_wcpdf' ),
|
205 |
array(
|
206 |
'menu' => $option,
|
207 |
'id' => 'email_pdf',
|
208 |
+
'options' => apply_filters( 'wpo_wcpdf_wc_emails', $wc_emails ),
|
|
|
|
|
|
|
|
|
|
|
209 |
'description' => $tmp_path_check ? '<span class="wpo-warning">' . sprintf( __( 'It looks like the temp folder (<code>%s</code>) is not writable, check the permissions for this folder! Without having write access to this folder, the plugin will not be able to email invoices.', 'wpo_wcpdf' ), $tmp_path ).'</span>':'',
|
210 |
)
|
211 |
);
|
932 |
|
933 |
return apply_filters( 'wpo_wcpdf_templates', $installed_templates );
|
934 |
}
|
935 |
+
|
936 |
} // end class WooCommerce_PDF_Invoices_Settings
|
937 |
|
938 |
} // end class_exists
|
includes/wcpdf-extensions.php
CHANGED
@@ -20,7 +20,7 @@ jQuery(document).ready(function() {
|
|
20 |
if (!class_exists('WooCommerce_PDF_IPS_Pro')) {
|
21 |
?>
|
22 |
<li>
|
23 |
-
<?php _e('Go Pro: Proforma invoices, credit notes & more!', 'wpo_wcpdf')?>
|
24 |
<div class="more" style="display:none;">
|
25 |
<?php _e( 'Supercharge WooCommerce PDF Invoices & Packing Slips with the following features:', 'wpo_wcpdf' ); ?>
|
26 |
<ul>
|
@@ -53,6 +53,25 @@ jQuery(document).ready(function() {
|
|
53 |
</li>
|
54 |
<?php } ?>
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
<?php
|
57 |
if (!class_exists('WooCommerce_PDF_IPS_Templates')) {
|
58 |
$template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
|
@@ -69,6 +88,6 @@ jQuery(document).ready(function() {
|
|
69 |
</ul>
|
70 |
</div>
|
71 |
</li>
|
72 |
-
<?php } ?>
|
73 |
</ul>
|
74 |
</div>
|
20 |
if (!class_exists('WooCommerce_PDF_IPS_Pro')) {
|
21 |
?>
|
22 |
<li>
|
23 |
+
<?php _e('Go Pro: Proforma invoices, credit notes (=refunds) & more!', 'wpo_wcpdf')?>
|
24 |
<div class="more" style="display:none;">
|
25 |
<?php _e( 'Supercharge WooCommerce PDF Invoices & Packing Slips with the following features:', 'wpo_wcpdf' ); ?>
|
26 |
<ul>
|
53 |
</li>
|
54 |
<?php } ?>
|
55 |
|
56 |
+
<?php
|
57 |
+
if (!class_exists('WooCommerce_Ext_PrintOrders')) {
|
58 |
+
?>
|
59 |
+
<li>
|
60 |
+
<?php _e('Automatically send new orders or packing slips to your printer, as soon as the customer orders!', 'wpo_wcpdf')?>
|
61 |
+
<div class="more" style="display:none;">
|
62 |
+
<table>
|
63 |
+
<tr>
|
64 |
+
<td><img src="<?php echo WooCommerce_PDF_Invoices::$plugin_url . 'images/cloud-print.png'; ?>" class="cloud-logo"></td>
|
65 |
+
<td>
|
66 |
+
<?php _e( 'Check out the WooCommerce Automatic Order Printing extension from our partners at Simba Hosting', 'wpo_wcpdf' ); ?><br/>
|
67 |
+
<a href="https://www.simbahosting.co.uk/s3/product/woocommerce-automatic-order-printing/?affiliates=2" target="_blank"><?php _e("WooCommerce Automatic Order Printing", 'wpo_wcpdf'); ?></a>
|
68 |
+
</td>
|
69 |
+
</tr>
|
70 |
+
</table>
|
71 |
+
</div>
|
72 |
+
</li>
|
73 |
+
<?php } ?>
|
74 |
+
|
75 |
<?php
|
76 |
if (!class_exists('WooCommerce_PDF_IPS_Templates')) {
|
77 |
$template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
|
88 |
</ul>
|
89 |
</div>
|
90 |
</li>
|
91 |
+
<?php } ?>
|
92 |
</ul>
|
93 |
</div>
|
languages/wpo_wcpdf-ja.mo
ADDED
Binary file
|
languages/wpo_wcpdf-ja.po
ADDED
@@ -0,0 +1,453 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-10-27 09:23+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-05 14:08+0900\n"
|
6 |
+
"Last-Translator: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
|
7 |
+
"Language-Team: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
|
8 |
+
"Language: Japanese\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.5.7\n"
|
13 |
+
"X-Poedit-Basepath: ../\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
20 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
21 |
+
#: includes/class-wcpdf-export.php:204
|
22 |
+
msgid "You do not have sufficient permissions to access this page."
|
23 |
+
msgstr "このページにアクセスするための十分な権限がありません。"
|
24 |
+
|
25 |
+
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:263
|
27 |
+
msgid "invoice"
|
28 |
+
msgid_plural "invoices"
|
29 |
+
msgstr[0] "請求書"
|
30 |
+
msgstr[1] "請求書"
|
31 |
+
|
32 |
+
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:267
|
34 |
+
msgid "packing-slip"
|
35 |
+
msgid_plural "packing-slips"
|
36 |
+
msgstr[0] "納品明細書"
|
37 |
+
msgstr[1] "納品明細書"
|
38 |
+
|
39 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
40 |
+
#: includes/class-wcpdf-writepanels.php:31
|
41 |
+
msgid "PDF Invoices"
|
42 |
+
msgstr "PDF請求書"
|
43 |
+
|
44 |
+
#: includes/class-wcpdf-settings.php:69
|
45 |
+
msgid "Settings"
|
46 |
+
msgstr "設定"
|
47 |
+
|
48 |
+
#: includes/class-wcpdf-settings.php:91
|
49 |
+
msgid "General"
|
50 |
+
msgstr "一般設定"
|
51 |
+
|
52 |
+
#: includes/class-wcpdf-settings.php:92
|
53 |
+
msgid "Template"
|
54 |
+
msgstr "テンプレート"
|
55 |
+
|
56 |
+
#: includes/class-wcpdf-settings.php:101
|
57 |
+
msgid "WooCommerce PDF Invoices"
|
58 |
+
msgstr "WooCommerce PDF請求書"
|
59 |
+
|
60 |
+
#: includes/class-wcpdf-settings.php:107
|
61 |
+
msgid "Status"
|
62 |
+
msgstr "状況"
|
63 |
+
|
64 |
+
#: includes/class-wcpdf-settings.php:118
|
65 |
+
#, php-format
|
66 |
+
msgid ""
|
67 |
+
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
68 |
+
"extension."
|
69 |
+
msgstr ""
|
70 |
+
"自動的に指定したDropBoxに請求書をアップロードします。<br/>%sの拡張プラグイン"
|
71 |
+
"をチェックしてみてください。"
|
72 |
+
|
73 |
+
#: includes/class-wcpdf-settings.php:128
|
74 |
+
#, php-format
|
75 |
+
msgid ""
|
76 |
+
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
77 |
+
"Packing Slips templates at %s."
|
78 |
+
msgstr ""
|
79 |
+
"もっとテンプレートが見たいですか?Premium PDF Invoice & Packing Slips "
|
80 |
+
"templatesを%sでチェックしてください。"
|
81 |
+
|
82 |
+
#: includes/class-wcpdf-settings.php:129
|
83 |
+
#, php-format
|
84 |
+
msgid "For custom templates, contact us at %s."
|
85 |
+
msgstr ""
|
86 |
+
"テンプレートのカスタマイズが必要でしたら、%sに英語でお問い合わせください。"
|
87 |
+
|
88 |
+
#: includes/class-wcpdf-settings.php:184
|
89 |
+
msgid "General settings"
|
90 |
+
msgstr "一般設定"
|
91 |
+
|
92 |
+
#: includes/class-wcpdf-settings.php:191
|
93 |
+
msgid "How do you want to view the PDF?"
|
94 |
+
msgstr "PDFファイルをどのようにして見ますか?"
|
95 |
+
|
96 |
+
#: includes/class-wcpdf-settings.php:199
|
97 |
+
msgid "Download the PDF"
|
98 |
+
msgstr " PDFをダウンロード"
|
99 |
+
|
100 |
+
#: includes/class-wcpdf-settings.php:200
|
101 |
+
msgid "Open the PDF in a new browser tab/window"
|
102 |
+
msgstr "ブラウザーの新しいタブかウインドウを開く"
|
103 |
+
|
104 |
+
#: includes/class-wcpdf-settings.php:210
|
105 |
+
msgid "Attach invoice to:"
|
106 |
+
msgstr "チェックのメールに請求書を付ける"
|
107 |
+
|
108 |
+
#: includes/class-wcpdf-settings.php:218
|
109 |
+
msgid "Admin New Order email"
|
110 |
+
msgstr "管理者の新しい注文メール"
|
111 |
+
|
112 |
+
#: includes/class-wcpdf-settings.php:219
|
113 |
+
msgid "Customer Processing Order email"
|
114 |
+
msgstr "お客様の進行中の注文メール"
|
115 |
+
|
116 |
+
#: includes/class-wcpdf-settings.php:220
|
117 |
+
msgid "Customer Completed Order email"
|
118 |
+
msgstr "お客様の注文完了メール"
|
119 |
+
|
120 |
+
#: includes/class-wcpdf-settings.php:221
|
121 |
+
msgid "Customer Invoice email"
|
122 |
+
msgstr "お客様の請求メール"
|
123 |
+
|
124 |
+
#: includes/class-wcpdf-settings.php:223
|
125 |
+
#, php-format
|
126 |
+
msgid ""
|
127 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
128 |
+
"permissions for this folder! Without having write access to this folder, the "
|
129 |
+
"plugin will not be able to email invoices."
|
130 |
+
msgstr ""
|
131 |
+
" (<code>%s</code>) のフォルダが書き込み不可になっているようです。フォルダーの"
|
132 |
+
"パーミッションを確認して下さい。このフォルダに書き込みが出来ないと、このプラ"
|
133 |
+
"グインは請求書をメールで送ることが出来ません。"
|
134 |
+
|
135 |
+
#: includes/class-wcpdf-settings.php:229
|
136 |
+
msgid "Enable invoice number column in the orders list"
|
137 |
+
msgstr "請求書番号を注文一覧の項目に表示する"
|
138 |
+
|
139 |
+
#: includes/class-wcpdf-settings.php:268
|
140 |
+
msgid "PDF Template settings"
|
141 |
+
msgstr "PDF テンプレート設定"
|
142 |
+
|
143 |
+
#: includes/class-wcpdf-settings.php:280
|
144 |
+
msgid "Choose a template"
|
145 |
+
msgstr "テンプレートを選ぶ"
|
146 |
+
|
147 |
+
#: includes/class-wcpdf-settings.php:288
|
148 |
+
#, php-format
|
149 |
+
msgid ""
|
150 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
151 |
+
"<code>%s</code> to customize them"
|
152 |
+
msgstr ""
|
153 |
+
"もし、ご自身でテンプレートをカスタマイズしたいのなら、<code>%s</code> から "
|
154 |
+
"<code>%s</code>へ全てのファイルをコピーしてカスタマイズしてください。"
|
155 |
+
|
156 |
+
#: includes/class-wcpdf-settings.php:294
|
157 |
+
msgid "Paper size"
|
158 |
+
msgstr "印刷用紙サイズ"
|
159 |
+
|
160 |
+
#: includes/class-wcpdf-settings.php:302
|
161 |
+
msgid "A4"
|
162 |
+
msgstr "A4"
|
163 |
+
|
164 |
+
#: includes/class-wcpdf-settings.php:303
|
165 |
+
msgid "Letter"
|
166 |
+
msgstr "レターサイズ"
|
167 |
+
|
168 |
+
#: includes/class-wcpdf-settings.php:310
|
169 |
+
msgid "Shop header/logo"
|
170 |
+
msgstr "店舗ヘッダー/ロゴ"
|
171 |
+
|
172 |
+
#: includes/class-wcpdf-settings.php:317
|
173 |
+
msgid "Select or upload your invoice header/logo"
|
174 |
+
msgstr ""
|
175 |
+
"請求書のヘッダー/ロゴに使用するイメージを選ぶかアップロードしてください"
|
176 |
+
|
177 |
+
#: includes/class-wcpdf-settings.php:318
|
178 |
+
msgid "Set image"
|
179 |
+
msgstr "イメージ設定"
|
180 |
+
|
181 |
+
#: includes/class-wcpdf-settings.php:319
|
182 |
+
msgid "Remove image"
|
183 |
+
msgstr "イメージ削除"
|
184 |
+
|
185 |
+
#: includes/class-wcpdf-settings.php:326
|
186 |
+
msgid "Shop Name"
|
187 |
+
msgstr "店舗名"
|
188 |
+
|
189 |
+
#: includes/class-wcpdf-settings.php:339
|
190 |
+
msgid "Shop Address"
|
191 |
+
msgstr "店舗住所"
|
192 |
+
|
193 |
+
#: includes/class-wcpdf-settings.php:371
|
194 |
+
msgid "Footer: terms & conditions, policies, etc."
|
195 |
+
msgstr "フッター : 規約、方針など"
|
196 |
+
|
197 |
+
#: includes/class-wcpdf-settings.php:386
|
198 |
+
msgid "Display invoice date"
|
199 |
+
msgstr "請求日を表示"
|
200 |
+
|
201 |
+
#: includes/class-wcpdf-settings.php:399
|
202 |
+
msgid "Display built-in sequential invoice number"
|
203 |
+
msgstr "請求書番号の連番を表示"
|
204 |
+
|
205 |
+
#: includes/class-wcpdf-settings.php:412
|
206 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
207 |
+
msgstr "次の請求書番号(接頭辞や接尾辞など無し)"
|
208 |
+
|
209 |
+
#: includes/class-wcpdf-settings.php:420
|
210 |
+
msgid ""
|
211 |
+
"This is the number that will be used on the next invoice that is created. By "
|
212 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
213 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
214 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
215 |
+
"this could create double invoice numbers!"
|
216 |
+
msgstr ""
|
217 |
+
"これは、次の請求書が発行される際に使われる請求書番号です。デフォルトでは、最"
|
218 |
+
"初に請求書を作ったWooCommerceの注文番号から始まります。この番号の指定の注意点"
|
219 |
+
"ですが、現時点の番号より小さくすると請求書番号が重複しますので、注意してくだ"
|
220 |
+
"さい。"
|
221 |
+
|
222 |
+
#: includes/class-wcpdf-settings.php:426
|
223 |
+
msgid "Invoice number format"
|
224 |
+
msgstr "請求書番号の形式"
|
225 |
+
|
226 |
+
#: includes/class-wcpdf-settings.php:435
|
227 |
+
msgid "Prefix"
|
228 |
+
msgstr "接頭辞"
|
229 |
+
|
230 |
+
#: includes/class-wcpdf-settings.php:437
|
231 |
+
msgid ""
|
232 |
+
"to use the order year and/or month, use [order_year] or [order_month] "
|
233 |
+
"respectively"
|
234 |
+
msgstr ""
|
235 |
+
"年や月を使いたい場合は[order_year]と[order_month]をそれぞれ使ってください。"
|
236 |
+
|
237 |
+
#: includes/class-wcpdf-settings.php:440
|
238 |
+
msgid "Suffix"
|
239 |
+
msgstr "接尾辞"
|
240 |
+
|
241 |
+
#: includes/class-wcpdf-settings.php:445
|
242 |
+
msgid "Padding"
|
243 |
+
msgstr "桁数"
|
244 |
+
|
245 |
+
#: includes/class-wcpdf-settings.php:447
|
246 |
+
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
247 |
+
msgstr "ここには桁数を入れてください。42の場合は000042と表示されます。"
|
248 |
+
|
249 |
+
#: includes/class-wcpdf-settings.php:450
|
250 |
+
msgid ""
|
251 |
+
"note: if you have already created a custom invoice number format with a "
|
252 |
+
"filter, the above settings will be ignored"
|
253 |
+
msgstr ""
|
254 |
+
"注意 : すでにフィルターを使用してカスタム請求書番号の書式を作成している場合、"
|
255 |
+
"上記の設定は無視されます。"
|
256 |
+
|
257 |
+
#: includes/class-wcpdf-settings.php:457
|
258 |
+
msgid "Extra template fields"
|
259 |
+
msgstr "追加項目"
|
260 |
+
|
261 |
+
#: includes/class-wcpdf-settings.php:464
|
262 |
+
msgid "Extra field 1"
|
263 |
+
msgstr "追加項目1"
|
264 |
+
|
265 |
+
#: includes/class-wcpdf-settings.php:473
|
266 |
+
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
267 |
+
msgstr ""
|
268 |
+
"これはフッターカラム1の<i>Modern (Premium)</i> テンプレートで使います。"
|
269 |
+
|
270 |
+
#: includes/class-wcpdf-settings.php:479
|
271 |
+
msgid "Extra field 2"
|
272 |
+
msgstr "追加項目2"
|
273 |
+
|
274 |
+
#: includes/class-wcpdf-settings.php:488
|
275 |
+
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
276 |
+
msgstr ""
|
277 |
+
"これはフッターカラム2の<i>Modern (Premium)</i> テンプレートで使います。"
|
278 |
+
|
279 |
+
#: includes/class-wcpdf-settings.php:494
|
280 |
+
msgid "Extra field 3"
|
281 |
+
msgstr "追加項目3"
|
282 |
+
|
283 |
+
#: includes/class-wcpdf-settings.php:503
|
284 |
+
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
285 |
+
msgstr ""
|
286 |
+
"これはフッターカラム3の<i>Modern (Premium)</i> テンプレートで使います。"
|
287 |
+
|
288 |
+
#: includes/class-wcpdf-settings.php:761
|
289 |
+
msgid "Image resolution"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: includes/class-wcpdf-settings.php:872
|
293 |
+
msgid ""
|
294 |
+
"These are used for the (optional) footer columns in the <em>Modern (Premium)"
|
295 |
+
"</em> template, but can also be used for other elements in your custom "
|
296 |
+
"template"
|
297 |
+
msgstr ""
|
298 |
+
"これらは、フッター項目(オプション)の<em>Modern (Premium)</em>テンプレート "
|
299 |
+
"で使いますが、カスタムテンプレート内の他の要素のために使用することができま"
|
300 |
+
"す。"
|
301 |
+
|
302 |
+
#: includes/class-wcpdf-writepanels.php:32
|
303 |
+
msgid "PDF Packing Slips"
|
304 |
+
msgstr "PDF納品明細書"
|
305 |
+
|
306 |
+
#: includes/class-wcpdf-writepanels.php:123
|
307 |
+
msgid "Invoice Number"
|
308 |
+
msgstr "請求書番号"
|
309 |
+
|
310 |
+
#: includes/class-wcpdf-writepanels.php:160
|
311 |
+
msgid "Download invoice (PDF)"
|
312 |
+
msgstr "ダウンロード請求書(PDF)"
|
313 |
+
|
314 |
+
#: includes/class-wcpdf-writepanels.php:171
|
315 |
+
msgid "Create PDF"
|
316 |
+
msgstr "PDF書類の作成"
|
317 |
+
|
318 |
+
#: includes/class-wcpdf-writepanels.php:184
|
319 |
+
msgid "PDF Invoice"
|
320 |
+
msgstr "PDF請求書"
|
321 |
+
|
322 |
+
#: includes/class-wcpdf-writepanels.php:189
|
323 |
+
msgid "PDF Packing Slip"
|
324 |
+
msgstr "PDF 納品明細票"
|
325 |
+
|
326 |
+
#: includes/class-wcpdf-writepanels.php:232
|
327 |
+
msgid "PDF Invoice Number (unformatted!)"
|
328 |
+
msgstr "PDF 請求書番号(フォーマットされていません)"
|
329 |
+
|
330 |
+
#: includes/class-wcpdf-writepanels.php:235
|
331 |
+
#: templates/pdf/Simple/invoice.php:36
|
332 |
+
msgid "Invoice Date:"
|
333 |
+
msgstr "請求日:"
|
334 |
+
|
335 |
+
#: includes/class-wcpdf-writepanels.php:236
|
336 |
+
msgid "h"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: includes/class-wcpdf-writepanels.php:236
|
340 |
+
msgid "m"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
344 |
+
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
345 |
+
msgid "Invoice"
|
346 |
+
msgstr "請求書"
|
347 |
+
|
348 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
349 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
350 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
351 |
+
msgid "Packing Slip"
|
352 |
+
msgstr "納品明細書"
|
353 |
+
|
354 |
+
#: templates/pdf/Simple/invoice.php:32
|
355 |
+
msgid "Invoice Number:"
|
356 |
+
msgstr "請求書番号:"
|
357 |
+
|
358 |
+
#: templates/pdf/Simple/invoice.php:39
|
359 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
360 |
+
msgid "Order Number:"
|
361 |
+
msgstr "注文番号:"
|
362 |
+
|
363 |
+
#: templates/pdf/Simple/invoice.php:41
|
364 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
365 |
+
msgid "Order Date:"
|
366 |
+
msgstr "注文日:"
|
367 |
+
|
368 |
+
#: templates/pdf/Simple/invoice.php:43
|
369 |
+
msgid "Payment Method:"
|
370 |
+
msgstr "支払い方法:"
|
371 |
+
|
372 |
+
#: templates/pdf/Simple/invoice.php:56
|
373 |
+
#: templates/pdf/Simple/packing-slip.php:46
|
374 |
+
msgid "Product"
|
375 |
+
msgstr "商品"
|
376 |
+
|
377 |
+
#: templates/pdf/Simple/invoice.php:57
|
378 |
+
#: templates/pdf/Simple/packing-slip.php:47
|
379 |
+
msgid "Quantity"
|
380 |
+
msgstr "数"
|
381 |
+
|
382 |
+
#: templates/pdf/Simple/invoice.php:58
|
383 |
+
msgid "Price"
|
384 |
+
msgstr "価格"
|
385 |
+
|
386 |
+
#: templates/pdf/Simple/invoice.php:64
|
387 |
+
msgid "Description"
|
388 |
+
msgstr "説明"
|
389 |
+
|
390 |
+
#: templates/pdf/Simple/invoice.php:67
|
391 |
+
msgid "SKU"
|
392 |
+
msgstr "SKU"
|
393 |
+
|
394 |
+
#: templates/pdf/Simple/invoice.php:68
|
395 |
+
#: templates/pdf/Simple/packing-slip.php:55
|
396 |
+
msgid "SKU:"
|
397 |
+
msgstr "SKU:"
|
398 |
+
|
399 |
+
#: templates/pdf/Simple/invoice.php:69
|
400 |
+
#: templates/pdf/Simple/packing-slip.php:56
|
401 |
+
msgid "Weight:"
|
402 |
+
msgstr "重さ:"
|
403 |
+
|
404 |
+
#: templates/pdf/Simple/invoice.php:101
|
405 |
+
#: templates/pdf/Simple/packing-slip.php:70
|
406 |
+
msgid "Customer Notes"
|
407 |
+
msgstr "お客様からの注意事項"
|
408 |
+
|
409 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
410 |
+
#, php-format
|
411 |
+
msgid ""
|
412 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
413 |
+
"installed & activated!"
|
414 |
+
msgstr ""
|
415 |
+
"WooCommerce PDF Invoices & Packing Slips は%sWooCommerce%sがインストールされ"
|
416 |
+
"てアクティブになっていないといけません。"
|
417 |
+
|
418 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
419 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
420 |
+
msgid "N/A"
|
421 |
+
msgstr "N/A"
|
422 |
+
|
423 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
424 |
+
msgid "Payment method"
|
425 |
+
msgstr "支払い方法"
|
426 |
+
|
427 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
428 |
+
msgid "Shipping method"
|
429 |
+
msgstr "発送方法"
|
430 |
+
|
431 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
432 |
+
msgid "Subtotal"
|
433 |
+
msgstr "小計"
|
434 |
+
|
435 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
436 |
+
msgid "Shipping"
|
437 |
+
msgstr "配送"
|
438 |
+
|
439 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
440 |
+
msgid "Discount"
|
441 |
+
msgstr "値引き"
|
442 |
+
|
443 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
444 |
+
msgid "VAT"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
448 |
+
msgid "Total ex. VAT"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
452 |
+
msgid "Total"
|
453 |
+
msgstr "合計"
|
languages/wpo_wcpdf-nb_NO.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-nb_NO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Eirik Opsanger <eirik.opsanger@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: nb\n"
|
@@ -16,112 +16,88 @@ msgstr ""
|
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: includes/class-wcpdf-export.php:
|
20 |
-
#: includes/class-wcpdf-export.php:
|
21 |
-
#: includes/class-wcpdf-export.php:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Du har ikke nok rettigheter til denne siden"
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
-
#: includes/class-wcpdf-export.php:
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "Faktura"
|
30 |
msgstr[1] "Fakturaer"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
-
#: includes/class-wcpdf-export.php:
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Pakkseddel"
|
37 |
msgstr[1] "Pakksedler"
|
38 |
|
39 |
-
#: includes/class-wcpdf-settings.php:
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF-faktura"
|
44 |
|
45 |
-
#: includes/class-wcpdf-settings.php:
|
46 |
msgid "Settings"
|
47 |
msgstr "Innstillinger"
|
48 |
|
49 |
-
#: includes/class-wcpdf-settings.php:
|
50 |
msgid "General"
|
51 |
msgstr "Generelt"
|
52 |
|
53 |
-
#: includes/class-wcpdf-settings.php:
|
54 |
msgid "Template"
|
55 |
msgstr "Template"
|
56 |
|
57 |
-
#: includes/class-wcpdf-settings.php:
|
58 |
msgid "WooCommerce PDF Invoices"
|
59 |
msgstr "WooCommerce PDF Faktura"
|
60 |
|
61 |
-
#: includes/class-wcpdf-settings.php:
|
62 |
msgid "Status"
|
63 |
msgstr "Status"
|
64 |
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
66 |
-
#, php-format
|
67 |
-
msgid ""
|
68 |
-
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
-
"extension."
|
70 |
-
msgstr ""
|
71 |
-
"Last opp alle fakturaer automatisk til din dropbox! <br/>Sjekk ut %s "
|
72 |
-
"utvidelsen."
|
73 |
-
|
74 |
-
#: includes/class-wcpdf-settings.php:119
|
75 |
-
#, php-format
|
76 |
-
msgid ""
|
77 |
-
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
78 |
-
"Packing Slips templates at %s."
|
79 |
-
msgstr ""
|
80 |
-
"Ser du etter en mer avansert template? Sjekk ut Premium PDF Invoice & "
|
81 |
-
"Packing Slips templates hos %s."
|
82 |
-
|
83 |
-
#: includes/class-wcpdf-settings.php:120
|
84 |
-
#, php-format
|
85 |
-
msgid "For custom templates, contact us at %s."
|
86 |
-
msgstr "For egendefinerte templates, kontakt oss på %s"
|
87 |
-
|
88 |
-
#: includes/class-wcpdf-settings.php:175
|
89 |
msgid "General settings"
|
90 |
msgstr "Generelle innstillinger"
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "How do you want to view the PDF?"
|
94 |
msgstr "Hvordan vil du se PDF`en?"
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Download the PDF"
|
98 |
msgstr "Last ned PDF`en"
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
101 |
msgid "Open the PDF in a new browser tab/window"
|
102 |
msgstr "Åpne PDF`en i ett nytt vindu"
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
-
msgid "Attach invoice to:"
|
106 |
-
msgstr "Legg ved faktura til:"
|
107 |
-
|
108 |
-
#: includes/class-wcpdf-settings.php:209
|
109 |
msgid "Admin New Order email"
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Customer Processing Order email"
|
114 |
msgstr "Kundens Behandler Ordre epost"
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Customer Completed Order email"
|
118 |
msgstr "Kundens Fullført Ordre epost"
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Customer Invoice email"
|
122 |
msgstr "Kundens Faktura epost"
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -132,92 +108,80 @@ msgstr ""
|
|
132 |
"skrivbar, sjekk rettighetene på denne mappen! Uten skrivetilgang til denne "
|
133 |
"mappen vil ikke denne plugin kunne sende pdf-faktura."
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
136 |
msgid "Enable invoice number column in the orders list"
|
137 |
msgstr "Aktiver kolonne for fakturanummer i ordrelisten"
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "PDF Template-innstillinger"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Velg din template"
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
148 |
#, php-format
|
149 |
msgid ""
|
150 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
151 |
-
"<code>%s</code> to customize them"
|
152 |
msgstr ""
|
153 |
"Vil du bruke din egen template? Kopier alle filer fra <code>%s</code> til "
|
154 |
"<code>%s</code>for å endre de."
|
155 |
|
156 |
-
#: includes/class-wcpdf-settings.php:
|
157 |
msgid "Paper size"
|
158 |
msgstr "Papirstørrelse"
|
159 |
|
160 |
-
#: includes/class-wcpdf-settings.php:
|
161 |
msgid "A4"
|
162 |
msgstr "A4"
|
163 |
|
164 |
-
#: includes/class-wcpdf-settings.php:
|
165 |
msgid "Letter"
|
166 |
msgstr "Letter"
|
167 |
|
168 |
-
#: includes/class-wcpdf-settings.php:
|
169 |
msgid "Shop header/logo"
|
170 |
msgstr "Butikkens header/logo"
|
171 |
|
172 |
-
#: includes/class-wcpdf-settings.php:
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
msgstr "Velg eller last opp din faktura header/logo"
|
175 |
|
176 |
-
#: includes/class-wcpdf-settings.php:
|
177 |
msgid "Set image"
|
178 |
msgstr "Velg bilde"
|
179 |
|
180 |
-
#: includes/class-wcpdf-settings.php:
|
181 |
msgid "Remove image"
|
182 |
msgstr "Fjern bilde"
|
183 |
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Butikkens navn"
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Butikkens adresse"
|
191 |
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
194 |
msgstr "Footer: Betingelser og Vilkår"
|
195 |
|
196 |
-
#: includes/class-wcpdf-settings.php:
|
197 |
-
msgid "
|
198 |
-
msgstr "
|
199 |
|
200 |
#: includes/class-wcpdf-settings.php:385
|
201 |
-
msgid "
|
202 |
-
msgstr "
|
203 |
-
|
204 |
-
#: includes/class-wcpdf-settings.php:386
|
205 |
-
msgid "Built-in sequential invoice number"
|
206 |
-
msgstr "Sekvensielt fakturanummer"
|
207 |
|
208 |
-
#: includes/class-wcpdf-settings.php:
|
209 |
-
msgid ""
|
210 |
-
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
211 |
-
"WooCommerce order number"
|
212 |
-
msgstr ""
|
213 |
-
"Hvis du bruker \"WooCommerce Sequential Order Numbers plugin\", velg "
|
214 |
-
"WooCommerce ordrenummer"
|
215 |
-
|
216 |
-
#: includes/class-wcpdf-settings.php:394
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
msgstr "Neste fakturanummer (uten prefix/suffix etc.)"
|
219 |
|
220 |
-
#: includes/class-wcpdf-settings.php:
|
221 |
msgid ""
|
222 |
"This is the number that will be used on the next invoice that is created. By "
|
223 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -231,15 +195,15 @@ msgstr ""
|
|
231 |
"dersom du endrer denne og setter et lavere tall enn høyeste (PDF) "
|
232 |
"fakturanummer, vil du få flere fakturaer med samme nummer!"
|
233 |
|
234 |
-
#: includes/class-wcpdf-settings.php:
|
235 |
msgid "Invoice number format"
|
236 |
msgstr "Format på fakturanummer"
|
237 |
|
238 |
-
#: includes/class-wcpdf-settings.php:
|
239 |
msgid "Prefix"
|
240 |
msgstr "Prefix"
|
241 |
|
242 |
-
#: includes/class-wcpdf-settings.php:
|
243 |
msgid ""
|
244 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
245 |
"respectively"
|
@@ -247,19 +211,19 @@ msgstr ""
|
|
247 |
"for å bruke år og/eller måned, kan du bruker [order_year] og/eller "
|
248 |
"[order_month]"
|
249 |
|
250 |
-
#: includes/class-wcpdf-settings.php:
|
251 |
msgid "Suffix"
|
252 |
msgstr "Suffix"
|
253 |
|
254 |
-
#: includes/class-wcpdf-settings.php:
|
255 |
msgid "Padding"
|
256 |
msgstr "Siffer"
|
257 |
|
258 |
-
#: includes/class-wcpdf-settings.php:
|
259 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
260 |
msgstr "skriv antall siffer her - skriv \"6\" for å vise 42 som 000042"
|
261 |
|
262 |
-
#: includes/class-wcpdf-settings.php:
|
263 |
msgid ""
|
264 |
"note: if you have already created a custom invoice number format with a "
|
265 |
"filter, the above settings will be ignored"
|
@@ -267,101 +231,208 @@ msgstr ""
|
|
267 |
"merk: hvis du allerede har laget et eget nummerformat for fakuranummer med "
|
268 |
"et filter, vil innstillingene over bli ignorert"
|
269 |
|
270 |
-
#: includes/class-wcpdf-settings.php:
|
271 |
-
msgid "Date to display on invoice"
|
272 |
-
msgstr "Dato som vises på faktura"
|
273 |
-
|
274 |
-
#: includes/class-wcpdf-settings.php:448
|
275 |
-
msgid "Order date"
|
276 |
-
msgstr "Bestillingsdato"
|
277 |
-
|
278 |
-
#: includes/class-wcpdf-settings.php:449
|
279 |
-
msgid "Invoice date"
|
280 |
-
msgstr "Fakturadato"
|
281 |
-
|
282 |
-
#: includes/class-wcpdf-settings.php:457
|
283 |
msgid "Extra template fields"
|
284 |
msgstr "Ekstrafelt"
|
285 |
|
286 |
-
#: includes/class-wcpdf-settings.php:
|
287 |
msgid "Extra field 1"
|
288 |
msgstr "Ekstrafelt 1"
|
289 |
|
290 |
-
#: includes/class-wcpdf-settings.php:
|
291 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
292 |
-
msgstr "Dette er
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
295 |
msgid "Extra field 2"
|
296 |
msgstr "Ekstrafelt 2"
|
297 |
|
298 |
-
#: includes/class-wcpdf-settings.php:
|
299 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
300 |
-
msgstr "Dette er
|
301 |
|
302 |
-
#: includes/class-wcpdf-settings.php:
|
303 |
msgid "Extra field 3"
|
304 |
msgstr "Ekstrafelt 3"
|
305 |
|
306 |
-
#: includes/class-wcpdf-settings.php:
|
307 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
308 |
-
msgstr "Dette er
|
309 |
|
310 |
-
#: includes/class-wcpdf-settings.php:
|
311 |
msgid "Image resolution"
|
312 |
msgstr "Bildeoppløsning"
|
313 |
|
314 |
-
#: includes/class-wcpdf-settings.php:
|
315 |
msgid ""
|
316 |
"These are used for the (optional) footer columns in the <em>Modern "
|
317 |
"(Premium)</em> template, but can also be used for other elements in your "
|
318 |
"custom template"
|
319 |
msgstr ""
|
320 |
-
"Disse brukes for (
|
321 |
"template, men kan også brukes for andre elementer i din template"
|
322 |
|
323 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
msgid "Invoice Number"
|
325 |
-
msgstr "
|
326 |
|
327 |
-
#: includes/class-wcpdf-writepanels.php:
|
328 |
msgid "Download invoice (PDF)"
|
329 |
msgstr "Last ned faktura (PDF)"
|
330 |
|
331 |
-
#: includes/class-wcpdf-writepanels.php:
|
332 |
msgid "Create PDF"
|
333 |
msgstr "Opprett PDF"
|
334 |
|
335 |
-
#: includes/class-wcpdf-writepanels.php:
|
336 |
-
msgid "PDF invoice"
|
337 |
-
msgstr "PDF Faktura"
|
338 |
-
|
339 |
-
#: includes/class-wcpdf-writepanels.php:161
|
340 |
-
msgid "PDF Packing Slip"
|
341 |
-
msgstr "PDF Pakkseddel"
|
342 |
-
|
343 |
-
#: includes/class-wcpdf-writepanels.php:178
|
344 |
-
#: includes/class-wcpdf-writepanels.php:179
|
345 |
-
msgid "PDF Packing Slips"
|
346 |
-
msgstr "PDF Pakksedler"
|
347 |
-
|
348 |
-
#: includes/class-wcpdf-writepanels.php:192
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
msgstr "PDF fakturanummer (uformatert)"
|
351 |
|
352 |
-
#: includes/class-wcpdf-writepanels.php:
|
353 |
-
#: templates/pdf/Simple/invoice.php:
|
354 |
msgid "Invoice Date:"
|
355 |
msgstr "Fakturadato:"
|
356 |
|
357 |
-
#: includes/class-wcpdf-writepanels.php:
|
358 |
msgid "h"
|
359 |
msgstr "h"
|
360 |
|
361 |
-
#: includes/class-wcpdf-writepanels.php:
|
362 |
msgid "m"
|
363 |
msgstr "m"
|
364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
366 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
367 |
msgid "Invoice"
|
@@ -373,62 +444,62 @@ msgstr "Faktura"
|
|
373 |
msgid "Packing Slip"
|
374 |
msgstr "Pakkseddel"
|
375 |
|
376 |
-
#: templates/pdf/Simple/invoice.php:
|
377 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
378 |
-
msgid "Order Date:"
|
379 |
-
msgstr "Ordredato:"
|
380 |
-
|
381 |
-
#: templates/pdf/Simple/invoice.php:46
|
382 |
msgid "Invoice Number:"
|
383 |
-
msgstr "
|
384 |
|
385 |
-
#: templates/pdf/Simple/invoice.php:
|
386 |
-
#: templates/pdf/Simple/packing-slip.php:
|
387 |
msgid "Order Number:"
|
388 |
msgstr "Ordrenummer:"
|
389 |
|
390 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
391 |
msgid "Payment Method:"
|
392 |
msgstr "Betlingsmåte:"
|
393 |
|
394 |
-
#: templates/pdf/Simple/invoice.php:
|
395 |
-
#: templates/pdf/Simple/packing-slip.php:
|
396 |
msgid "Product"
|
397 |
msgstr "Produkt:"
|
398 |
|
399 |
-
#: templates/pdf/Simple/invoice.php:
|
400 |
-
#: templates/pdf/Simple/packing-slip.php:
|
401 |
msgid "Quantity"
|
402 |
msgstr "Antall"
|
403 |
|
404 |
-
#: templates/pdf/Simple/invoice.php:
|
405 |
msgid "Price"
|
406 |
msgstr "Pris"
|
407 |
|
408 |
-
#: templates/pdf/Simple/invoice.php:
|
409 |
msgid "Description"
|
410 |
msgstr "Beskrivelse"
|
411 |
|
412 |
-
#: templates/pdf/Simple/invoice.php:
|
413 |
msgid "SKU"
|
414 |
msgstr "Art.nr"
|
415 |
|
416 |
-
#: templates/pdf/Simple/invoice.php:
|
417 |
-
#: templates/pdf/Simple/packing-slip.php:
|
418 |
msgid "SKU:"
|
419 |
-
msgstr "Art.nr"
|
420 |
|
421 |
-
#: templates/pdf/Simple/invoice.php:
|
422 |
-
#: templates/pdf/Simple/packing-slip.php:
|
423 |
msgid "Weight:"
|
424 |
-
msgstr "Vekt"
|
425 |
|
426 |
-
#: templates/pdf/Simple/invoice.php:
|
427 |
-
#: templates/pdf/Simple/packing-slip.php:
|
428 |
msgid "Customer Notes"
|
429 |
msgstr "Kundenotat"
|
430 |
|
431 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
432 |
#, php-format
|
433 |
msgid ""
|
434 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -437,39 +508,55 @@ msgstr ""
|
|
437 |
"WooCommerce PDF Invoices & Packing Slips krever %sWooCommerce%s for å bli "
|
438 |
"installert og aktivert!"
|
439 |
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
442 |
msgid "N/A"
|
443 |
msgstr "N/A"
|
444 |
|
445 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
446 |
msgid "Payment method"
|
447 |
msgstr "Betalingsmåte"
|
448 |
|
449 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
450 |
msgid "Shipping method"
|
451 |
msgstr "Leveringsmåte"
|
452 |
|
453 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
454 |
msgid "Subtotal"
|
455 |
msgstr "Total"
|
456 |
|
457 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
458 |
msgid "Shipping"
|
459 |
msgstr "Frakt"
|
460 |
|
461 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
462 |
msgid "Discount"
|
463 |
msgstr "Avslag"
|
464 |
|
465 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
466 |
msgid "VAT"
|
467 |
msgstr "MVA"
|
468 |
|
469 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
470 |
msgid "Total ex. VAT"
|
471 |
-
msgstr "Totalt
|
472 |
|
473 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
474 |
msgid "Total"
|
475 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-19 10:36+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-24 11:40+0100\n"
|
6 |
"Last-Translator: Eirik Opsanger <eirik.opsanger@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: nb\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
20 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
21 |
+
#: includes/class-wcpdf-export.php:204
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Du har ikke nok rettigheter til denne siden"
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:263
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "Faktura"
|
30 |
msgstr[1] "Fakturaer"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:267
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Pakkseddel"
|
37 |
msgstr[1] "Pakksedler"
|
38 |
|
39 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
40 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
41 |
msgid "PDF Invoices"
|
42 |
msgstr "PDF-faktura"
|
43 |
|
44 |
+
#: includes/class-wcpdf-settings.php:69
|
45 |
msgid "Settings"
|
46 |
msgstr "Innstillinger"
|
47 |
|
48 |
+
#: includes/class-wcpdf-settings.php:91
|
49 |
msgid "General"
|
50 |
msgstr "Generelt"
|
51 |
|
52 |
+
#: includes/class-wcpdf-settings.php:92
|
53 |
msgid "Template"
|
54 |
msgstr "Template"
|
55 |
|
56 |
+
#: includes/class-wcpdf-settings.php:101
|
57 |
msgid "WooCommerce PDF Invoices"
|
58 |
msgstr "WooCommerce PDF Faktura"
|
59 |
|
60 |
+
#: includes/class-wcpdf-settings.php:107
|
61 |
msgid "Status"
|
62 |
msgstr "Status"
|
63 |
|
64 |
+
#: includes/class-wcpdf-settings.php:168
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "General settings"
|
66 |
msgstr "Generelle innstillinger"
|
67 |
|
68 |
+
#: includes/class-wcpdf-settings.php:175
|
69 |
msgid "How do you want to view the PDF?"
|
70 |
msgstr "Hvordan vil du se PDF`en?"
|
71 |
|
72 |
+
#: includes/class-wcpdf-settings.php:183
|
73 |
msgid "Download the PDF"
|
74 |
msgstr "Last ned PDF`en"
|
75 |
|
76 |
+
#: includes/class-wcpdf-settings.php:184
|
77 |
msgid "Open the PDF in a new browser tab/window"
|
78 |
msgstr "Åpne PDF`en i ett nytt vindu"
|
79 |
|
80 |
+
#: includes/class-wcpdf-settings.php:193
|
|
|
|
|
|
|
|
|
81 |
msgid "Admin New Order email"
|
82 |
+
msgstr "Admins Ny Ordre epost"
|
83 |
|
84 |
+
#: includes/class-wcpdf-settings.php:194
|
85 |
msgid "Customer Processing Order email"
|
86 |
msgstr "Kundens Behandler Ordre epost"
|
87 |
|
88 |
+
#: includes/class-wcpdf-settings.php:195
|
89 |
msgid "Customer Completed Order email"
|
90 |
msgstr "Kundens Fullført Ordre epost"
|
91 |
|
92 |
+
#: includes/class-wcpdf-settings.php:196
|
93 |
msgid "Customer Invoice email"
|
94 |
msgstr "Kundens Faktura epost"
|
95 |
|
96 |
+
#: includes/class-wcpdf-settings.php:201
|
97 |
+
msgid "Attach invoice to:"
|
98 |
+
msgstr "Legg ved faktura til:"
|
99 |
+
|
100 |
+
#: includes/class-wcpdf-settings.php:209
|
101 |
#, php-format
|
102 |
msgid ""
|
103 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
108 |
"skrivbar, sjekk rettighetene på denne mappen! Uten skrivetilgang til denne "
|
109 |
"mappen vil ikke denne plugin kunne sende pdf-faktura."
|
110 |
|
111 |
+
#: includes/class-wcpdf-settings.php:215
|
112 |
msgid "Enable invoice number column in the orders list"
|
113 |
msgstr "Aktiver kolonne for fakturanummer i ordrelisten"
|
114 |
|
115 |
+
#: includes/class-wcpdf-settings.php:254
|
116 |
msgid "PDF Template settings"
|
117 |
msgstr "PDF Template-innstillinger"
|
118 |
|
119 |
+
#: includes/class-wcpdf-settings.php:266
|
120 |
msgid "Choose a template"
|
121 |
msgstr "Velg din template"
|
122 |
|
123 |
+
#: includes/class-wcpdf-settings.php:274
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
127 |
+
"your (child) theme in <code>%s</code> to customize them"
|
128 |
msgstr ""
|
129 |
"Vil du bruke din egen template? Kopier alle filer fra <code>%s</code> til "
|
130 |
"<code>%s</code>for å endre de."
|
131 |
|
132 |
+
#: includes/class-wcpdf-settings.php:280
|
133 |
msgid "Paper size"
|
134 |
msgstr "Papirstørrelse"
|
135 |
|
136 |
+
#: includes/class-wcpdf-settings.php:288
|
137 |
msgid "A4"
|
138 |
msgstr "A4"
|
139 |
|
140 |
+
#: includes/class-wcpdf-settings.php:289
|
141 |
msgid "Letter"
|
142 |
msgstr "Letter"
|
143 |
|
144 |
+
#: includes/class-wcpdf-settings.php:296
|
145 |
msgid "Shop header/logo"
|
146 |
msgstr "Butikkens header/logo"
|
147 |
|
148 |
+
#: includes/class-wcpdf-settings.php:303
|
149 |
msgid "Select or upload your invoice header/logo"
|
150 |
msgstr "Velg eller last opp din faktura header/logo"
|
151 |
|
152 |
+
#: includes/class-wcpdf-settings.php:304
|
153 |
msgid "Set image"
|
154 |
msgstr "Velg bilde"
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:305
|
157 |
msgid "Remove image"
|
158 |
msgstr "Fjern bilde"
|
159 |
|
160 |
+
#: includes/class-wcpdf-settings.php:312
|
161 |
msgid "Shop Name"
|
162 |
msgstr "Butikkens navn"
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:325
|
165 |
msgid "Shop Address"
|
166 |
msgstr "Butikkens adresse"
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:357
|
169 |
msgid "Footer: terms & conditions, policies, etc."
|
170 |
msgstr "Footer: Betingelser og Vilkår"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:372
|
173 |
+
msgid "Display invoice date"
|
174 |
+
msgstr "Vis fakturadato"
|
175 |
|
176 |
#: includes/class-wcpdf-settings.php:385
|
177 |
+
msgid "Display built-in sequential invoice number"
|
178 |
+
msgstr "Vis sekvensielt fakturanummer"
|
|
|
|
|
|
|
|
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:398
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
182 |
msgstr "Neste fakturanummer (uten prefix/suffix etc.)"
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:406
|
185 |
msgid ""
|
186 |
"This is the number that will be used on the next invoice that is created. By "
|
187 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
195 |
"dersom du endrer denne og setter et lavere tall enn høyeste (PDF) "
|
196 |
"fakturanummer, vil du få flere fakturaer med samme nummer!"
|
197 |
|
198 |
+
#: includes/class-wcpdf-settings.php:412
|
199 |
msgid "Invoice number format"
|
200 |
msgstr "Format på fakturanummer"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:421
|
203 |
msgid "Prefix"
|
204 |
msgstr "Prefix"
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:423
|
207 |
msgid ""
|
208 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
209 |
"respectively"
|
211 |
"for å bruke år og/eller måned, kan du bruker [order_year] og/eller "
|
212 |
"[order_month]"
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:426
|
215 |
msgid "Suffix"
|
216 |
msgstr "Suffix"
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:431
|
219 |
msgid "Padding"
|
220 |
msgstr "Siffer"
|
221 |
|
222 |
+
#: includes/class-wcpdf-settings.php:433
|
223 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
224 |
msgstr "skriv antall siffer her - skriv \"6\" for å vise 42 som 000042"
|
225 |
|
226 |
+
#: includes/class-wcpdf-settings.php:436
|
227 |
msgid ""
|
228 |
"note: if you have already created a custom invoice number format with a "
|
229 |
"filter, the above settings will be ignored"
|
231 |
"merk: hvis du allerede har laget et eget nummerformat for fakuranummer med "
|
232 |
"et filter, vil innstillingene over bli ignorert"
|
233 |
|
234 |
+
#: includes/class-wcpdf-settings.php:443
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
msgid "Extra template fields"
|
236 |
msgstr "Ekstrafelt"
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:450
|
239 |
msgid "Extra field 1"
|
240 |
msgstr "Ekstrafelt 1"
|
241 |
|
242 |
+
#: includes/class-wcpdf-settings.php:459
|
243 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
244 |
+
msgstr "Dette er fotnote-kolonne 1 i <i>Modern (Premium)</i> template"
|
245 |
|
246 |
+
#: includes/class-wcpdf-settings.php:465
|
247 |
msgid "Extra field 2"
|
248 |
msgstr "Ekstrafelt 2"
|
249 |
|
250 |
+
#: includes/class-wcpdf-settings.php:474
|
251 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
252 |
+
msgstr "Dette er fotnote-kolonne 2 i <i>Modern (Premium)</i> template"
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:480
|
255 |
msgid "Extra field 3"
|
256 |
msgstr "Ekstrafelt 3"
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:489
|
259 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
260 |
+
msgstr "Dette er fotnote-kolonne 3 i <i>Modern (Premium)</i> template"
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:747
|
263 |
msgid "Image resolution"
|
264 |
msgstr "Bildeoppløsning"
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:863
|
267 |
msgid ""
|
268 |
"These are used for the (optional) footer columns in the <em>Modern "
|
269 |
"(Premium)</em> template, but can also be used for other elements in your "
|
270 |
"custom template"
|
271 |
msgstr ""
|
272 |
+
"Disse brukes for (valgfrie) fotnote-kolonner i <em>Modern (Premium)</em> "
|
273 |
"template, men kan også brukes for andre elementer i din template"
|
274 |
|
275 |
+
#: includes/class-wcpdf-writepanels.php:32
|
276 |
+
msgid "PDF Packing Slips"
|
277 |
+
msgstr "PDF Pakksedler"
|
278 |
+
|
279 |
+
#: includes/class-wcpdf-writepanels.php:91
|
280 |
+
#: includes/class-wcpdf-writepanels.php:184
|
281 |
+
msgid "PDF Invoice"
|
282 |
+
msgstr "PDF-faktura"
|
283 |
+
|
284 |
+
#: includes/class-wcpdf-writepanels.php:96
|
285 |
+
#: includes/class-wcpdf-writepanels.php:189
|
286 |
+
msgid "PDF Packing Slip"
|
287 |
+
msgstr "PDF Pakkseddel"
|
288 |
+
|
289 |
+
#: includes/class-wcpdf-writepanels.php:123
|
290 |
msgid "Invoice Number"
|
291 |
+
msgstr "Fakturanummer"
|
292 |
|
293 |
+
#: includes/class-wcpdf-writepanels.php:160
|
294 |
msgid "Download invoice (PDF)"
|
295 |
msgstr "Last ned faktura (PDF)"
|
296 |
|
297 |
+
#: includes/class-wcpdf-writepanels.php:171
|
298 |
msgid "Create PDF"
|
299 |
msgstr "Opprett PDF"
|
300 |
|
301 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "PDF Invoice Number (unformatted!)"
|
303 |
msgstr "PDF fakturanummer (uformatert)"
|
304 |
|
305 |
+
#: includes/class-wcpdf-writepanels.php:235
|
306 |
+
#: templates/pdf/Simple/invoice.php:36
|
307 |
msgid "Invoice Date:"
|
308 |
msgstr "Fakturadato:"
|
309 |
|
310 |
+
#: includes/class-wcpdf-writepanels.php:236
|
311 |
msgid "h"
|
312 |
msgstr "h"
|
313 |
|
314 |
+
#: includes/class-wcpdf-writepanels.php:236
|
315 |
msgid "m"
|
316 |
msgstr "m"
|
317 |
|
318 |
+
#: includes/wcpdf-extensions.php:15
|
319 |
+
msgid "Check out these premium extensions!"
|
320 |
+
msgstr "Sjekk ut premium-utvidelsene!"
|
321 |
+
|
322 |
+
#: includes/wcpdf-extensions.php:16
|
323 |
+
msgid "click items to read more"
|
324 |
+
msgstr "klikk for å lese mer"
|
325 |
+
|
326 |
+
#: includes/wcpdf-extensions.php:23
|
327 |
+
msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
|
328 |
+
msgstr "Go Pro: Proforma faktura, kreditnota (=tilbakebetaling) & mer!"
|
329 |
+
|
330 |
+
#: includes/wcpdf-extensions.php:25
|
331 |
+
msgid ""
|
332 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
333 |
+
"features:"
|
334 |
+
msgstr "Få WooCommerce PDF Invoices & Packing Slips med følgende funksjoner:"
|
335 |
+
|
336 |
+
#: includes/wcpdf-extensions.php:27
|
337 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
338 |
+
msgstr "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
339 |
+
|
340 |
+
#: includes/wcpdf-extensions.php:28
|
341 |
+
msgid ""
|
342 |
+
"Attach a <b>static file</b> (for example a terms & conditions document) to "
|
343 |
+
"the WooCommerce emails of your choice."
|
344 |
+
msgstr ""
|
345 |
+
"Legg ved en <b>statisk file</b> (f.eks. vilkår) til WooCommerce-epostene du "
|
346 |
+
"ønsker."
|
347 |
+
|
348 |
+
#: includes/wcpdf-extensions.php:29
|
349 |
+
msgid ""
|
350 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
351 |
+
"and credit notes or utilize the main invoice numbering system"
|
352 |
+
msgstr ""
|
353 |
+
"Bruk <b>separate nummersystem</b> og/eller format på proforma faktura og "
|
354 |
+
"kreditnota, eller utnytt hovedsystemet for fakturanummerering"
|
355 |
+
|
356 |
+
#: includes/wcpdf-extensions.php:30
|
357 |
+
msgid ""
|
358 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
359 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
360 |
+
"custom template."
|
361 |
+
msgstr ""
|
362 |
+
"<b>Skreddersy faktura- og leveringsadresse</b> for å inkludere valgfrie "
|
363 |
+
"felter, skriftstørrelse osv. uten å måtte lage en egen template."
|
364 |
+
|
365 |
+
#: includes/wcpdf-extensions.php:31
|
366 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
367 |
+
msgstr "Bruk pluginen i multilingual <b>WPML</b> oppsett"
|
368 |
+
|
369 |
+
#: includes/wcpdf-extensions.php:33
|
370 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
371 |
+
msgstr "Få WooCommerce PDF Invoices & Packing Slips Professional!"
|
372 |
+
|
373 |
+
#: includes/wcpdf-extensions.php:41
|
374 |
+
msgid "Upload all invoices automatically to your dropbox"
|
375 |
+
msgstr ""
|
376 |
+
"Last opp alle fakturaer automatisk til din dropbox! <br/>Sjekk ut %s "
|
377 |
+
"utvidelsen."
|
378 |
+
|
379 |
+
#: includes/wcpdf-extensions.php:47
|
380 |
+
msgid ""
|
381 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
382 |
+
"documents from the professional extension) that are emailed to your "
|
383 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
384 |
+
"date!"
|
385 |
+
msgstr ""
|
386 |
+
"Denne utvidelsen laster opp alle fakturaer (og andre pdf-dokumenter fra pro-"
|
387 |
+
"versjonen) som blir sendt på epost til deg rett til Dropbox. Dette er den "
|
388 |
+
"beste måten å holde adminstreringen ajour!"
|
389 |
+
|
390 |
+
#: includes/wcpdf-extensions.php:48
|
391 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
392 |
+
msgstr "Fp WooCommerce PDF Invoices & Packing Slips rett til Dropbox!"
|
393 |
+
|
394 |
+
#: includes/wcpdf-extensions.php:60
|
395 |
+
msgid ""
|
396 |
+
"Automatically send new orders or packing slips to your printer, as soon as "
|
397 |
+
"the customer orders!"
|
398 |
+
msgstr "Send pakkelapper automatisk til printeren når det kommer ny ordre!"
|
399 |
+
|
400 |
+
#: includes/wcpdf-extensions.php:66
|
401 |
+
msgid ""
|
402 |
+
"Check out the WooCommerce Automatic Order Printing extension from our "
|
403 |
+
"partners at Simba Hosting"
|
404 |
+
msgstr ""
|
405 |
+
"Sjekk ut WooCommerce Automatic Order Printing utvidelse fra vår partner "
|
406 |
+
"Simba Hosting"
|
407 |
+
|
408 |
+
#: includes/wcpdf-extensions.php:67
|
409 |
+
msgid "WooCommerce Automatic Order Printing"
|
410 |
+
msgstr "Automatisk ordreutskrift"
|
411 |
+
|
412 |
+
#: includes/wcpdf-extensions.php:81
|
413 |
+
msgid "More advanced templates"
|
414 |
+
msgstr "Mer avanserte stiler"
|
415 |
+
|
416 |
+
#: includes/wcpdf-extensions.php:84
|
417 |
+
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
418 |
+
msgstr "Stilfylle, moderne faktura og pakkelapper med produktbilder!"
|
419 |
+
|
420 |
+
#: includes/wcpdf-extensions.php:85
|
421 |
+
msgid "More tax details on the invoices!"
|
422 |
+
msgstr "Flere detaljer for skatter og avgifter på faktura!"
|
423 |
+
|
424 |
+
#: includes/wcpdf-extensions.php:86
|
425 |
+
#, php-format
|
426 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
427 |
+
msgstr ""
|
428 |
+
"Ser du etter en mer avansert template? Sjekk ut Premium PDF Invoice & "
|
429 |
+
"Packing Slips templates hos %s."
|
430 |
+
|
431 |
+
#: includes/wcpdf-extensions.php:87
|
432 |
+
#, php-format
|
433 |
+
msgid "For custom templates, contact us at %s."
|
434 |
+
msgstr "For egendefinerte templates, kontakt oss på %s"
|
435 |
+
|
436 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
437 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
438 |
msgid "Invoice"
|
444 |
msgid "Packing Slip"
|
445 |
msgstr "Pakkseddel"
|
446 |
|
447 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "Invoice Number:"
|
449 |
+
msgstr "Fakturanummer:"
|
450 |
|
451 |
+
#: templates/pdf/Simple/invoice.php:39
|
452 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
453 |
msgid "Order Number:"
|
454 |
msgstr "Ordrenummer:"
|
455 |
|
456 |
+
#: templates/pdf/Simple/invoice.php:41
|
457 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
458 |
+
msgid "Order Date:"
|
459 |
+
msgstr "Ordredato:"
|
460 |
+
|
461 |
+
#: templates/pdf/Simple/invoice.php:43
|
462 |
msgid "Payment Method:"
|
463 |
msgstr "Betlingsmåte:"
|
464 |
|
465 |
+
#: templates/pdf/Simple/invoice.php:58
|
466 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
467 |
msgid "Product"
|
468 |
msgstr "Produkt:"
|
469 |
|
470 |
+
#: templates/pdf/Simple/invoice.php:59
|
471 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
472 |
msgid "Quantity"
|
473 |
msgstr "Antall"
|
474 |
|
475 |
+
#: templates/pdf/Simple/invoice.php:60
|
476 |
msgid "Price"
|
477 |
msgstr "Pris"
|
478 |
|
479 |
+
#: templates/pdf/Simple/invoice.php:66
|
480 |
msgid "Description"
|
481 |
msgstr "Beskrivelse"
|
482 |
|
483 |
+
#: templates/pdf/Simple/invoice.php:69
|
484 |
msgid "SKU"
|
485 |
msgstr "Art.nr"
|
486 |
|
487 |
+
#: templates/pdf/Simple/invoice.php:70
|
488 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
489 |
msgid "SKU:"
|
490 |
+
msgstr "Art.nr:"
|
491 |
|
492 |
+
#: templates/pdf/Simple/invoice.php:71
|
493 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
494 |
msgid "Weight:"
|
495 |
+
msgstr "Vekt:"
|
496 |
|
497 |
+
#: templates/pdf/Simple/invoice.php:105
|
498 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
499 |
msgid "Customer Notes"
|
500 |
msgstr "Kundenotat"
|
501 |
|
502 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
503 |
#, php-format
|
504 |
msgid ""
|
505 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
508 |
"WooCommerce PDF Invoices & Packing Slips krever %sWooCommerce%s for å bli "
|
509 |
"installert og aktivert!"
|
510 |
|
511 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
512 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
513 |
msgid "N/A"
|
514 |
msgstr "N/A"
|
515 |
|
516 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
517 |
msgid "Payment method"
|
518 |
msgstr "Betalingsmåte"
|
519 |
|
520 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
521 |
msgid "Shipping method"
|
522 |
msgstr "Leveringsmåte"
|
523 |
|
524 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
525 |
msgid "Subtotal"
|
526 |
msgstr "Total"
|
527 |
|
528 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
529 |
msgid "Shipping"
|
530 |
msgstr "Frakt"
|
531 |
|
532 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
533 |
msgid "Discount"
|
534 |
msgstr "Avslag"
|
535 |
|
536 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
537 |
msgid "VAT"
|
538 |
msgstr "MVA"
|
539 |
|
540 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
541 |
msgid "Total ex. VAT"
|
542 |
+
msgstr "Totalt eksl. MVA"
|
543 |
|
544 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
545 |
msgid "Total"
|
546 |
+
msgstr "Subtotal"
|
547 |
+
|
548 |
+
#~ msgid "Number to display on invoice"
|
549 |
+
#~ msgstr "Nummer som skal vise på faktura"
|
550 |
+
|
551 |
+
#~ msgid ""
|
552 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
553 |
+
#~ "the WooCommerce order number"
|
554 |
+
#~ msgstr ""
|
555 |
+
#~ "Hvis du bruker \"WooCommerce Sequential Order Numbers plugin\", velg "
|
556 |
+
#~ "WooCommerce ordrenummer"
|
557 |
+
|
558 |
+
#~ msgid "Order date"
|
559 |
+
#~ msgstr "Bestillingsdato"
|
560 |
+
|
561 |
+
#~ msgid "PDF invoice"
|
562 |
+
#~ msgstr "PDF Faktura"
|
languages/wpo_wcpdf-nl_NL.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-11-
|
6 |
-
"PO-Revision-Date: 2014-11-
|
7 |
"Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -19,19 +19,19 @@ msgstr ""
|
|
19 |
"X-Generator: Poedit 1.6.10\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: includes/class-wcpdf-export.php:
|
23 |
-
#: includes/class-wcpdf-export.php:
|
24 |
-
#: includes/class-wcpdf-export.php:
|
25 |
msgid "You do not have sufficient permissions to access this page."
|
26 |
msgstr "Je hebt onvoldoende rechten voor deze pagina."
|
27 |
|
28 |
-
#: includes/class-wcpdf-export.php:
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "factuur"
|
32 |
msgstr[1] "facturen"
|
33 |
|
34 |
-
#: includes/class-wcpdf-export.php:
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "pakbon"
|
@@ -62,65 +62,43 @@ msgstr "WooCommerce PDF Facturen"
|
|
62 |
msgid "Status"
|
63 |
msgstr "Status"
|
64 |
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
66 |
-
#, php-format
|
67 |
-
msgid ""
|
68 |
-
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
-
"extension."
|
70 |
-
msgstr ""
|
71 |
-
"Upload alle facturen automatisch naar je Dropbox!<br/>Bekijk de %s extensie."
|
72 |
-
|
73 |
-
#: includes/class-wcpdf-settings.php:128
|
74 |
-
#, php-format
|
75 |
-
msgid ""
|
76 |
-
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
77 |
-
"Packing Slips templates at %s."
|
78 |
-
msgstr ""
|
79 |
-
"Op zoek naar geavanceerdere templates? Bekijk de Premium PDF Invoice & "
|
80 |
-
"Packing Slips templates op %s."
|
81 |
-
|
82 |
-
#: includes/class-wcpdf-settings.php:129
|
83 |
-
#, php-format
|
84 |
-
msgid "For custom templates, contact us at %s."
|
85 |
-
msgstr "Neem voor custom templates contact met ons op via %s"
|
86 |
-
|
87 |
-
#: includes/class-wcpdf-settings.php:184
|
88 |
msgid "General settings"
|
89 |
msgstr "Algemene instellingen"
|
90 |
|
91 |
-
#: includes/class-wcpdf-settings.php:
|
92 |
msgid "How do you want to view the PDF?"
|
93 |
msgstr "Hoe wil je de PDF bekijken?"
|
94 |
|
95 |
-
#: includes/class-wcpdf-settings.php:
|
96 |
msgid "Download the PDF"
|
97 |
msgstr "Download de PDF"
|
98 |
|
99 |
-
#: includes/class-wcpdf-settings.php:
|
100 |
msgid "Open the PDF in a new browser tab/window"
|
101 |
msgstr "Open de PDF in een nieuwe browser tab/venster"
|
102 |
|
103 |
-
#: includes/class-wcpdf-settings.php:
|
104 |
-
msgid "Attach invoice to:"
|
105 |
-
msgstr "Factuur als bijlage toevoegen aan:"
|
106 |
-
|
107 |
-
#: includes/class-wcpdf-settings.php:218
|
108 |
msgid "Admin New Order email"
|
109 |
msgstr "Nieuwe bestelling (admin email)"
|
110 |
|
111 |
-
#: includes/class-wcpdf-settings.php:
|
112 |
msgid "Customer Processing Order email"
|
113 |
msgstr "Bestelling in behandeling (klant email)"
|
114 |
|
115 |
-
#: includes/class-wcpdf-settings.php:
|
116 |
msgid "Customer Completed Order email"
|
117 |
msgstr "Bestelling afgerond (klant email)"
|
118 |
|
119 |
-
#: includes/class-wcpdf-settings.php:
|
120 |
msgid "Customer Invoice email"
|
121 |
msgstr "Factuur (klant email)"
|
122 |
|
123 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -131,19 +109,19 @@ msgstr ""
|
|
131 |
"controleer de rechten op deze folder! Zonder schrijfrechten kan de plugin "
|
132 |
"geen facturen emailen."
|
133 |
|
134 |
-
#: includes/class-wcpdf-settings.php:
|
135 |
msgid "Enable invoice number column in the orders list"
|
136 |
msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
|
137 |
|
138 |
-
#: includes/class-wcpdf-settings.php:
|
139 |
msgid "PDF Template settings"
|
140 |
msgstr "PDF Template instellingen"
|
141 |
|
142 |
-
#: includes/class-wcpdf-settings.php:
|
143 |
msgid "Choose a template"
|
144 |
msgstr "Kies een template"
|
145 |
|
146 |
-
#: includes/class-wcpdf-settings.php:
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
@@ -152,59 +130,59 @@ msgstr ""
|
|
152 |
"Wil je je eigen template gebruiken? Kopieer alle bestanden van <code>%s</"
|
153 |
"code> naar je (child-) theme in <code>%s</code> en pas ze aan naar je wensen."
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Paper size"
|
157 |
msgstr "Papierformaat"
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Letter"
|
165 |
msgstr "Letter (US)"
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Shop header/logo"
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Selecteer of upload je factuur header/logo"
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Set image"
|
177 |
msgstr "Stel afbeelding in"
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Remove image"
|
181 |
msgstr "Verwijder afbeelding"
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Shop Naam"
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Shop Adres"
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Display invoice date"
|
197 |
msgstr "Geef factuurdatum weer"
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "Display built-in sequential invoice number"
|
201 |
msgstr "Geef ingebouwde doorlopende factuurnummers weer"
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
205 |
msgstr "Volgend factuurnummer (zonder voor- of achtervoegsel etc.)"
|
206 |
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid ""
|
209 |
"This is the number that will be used on the next invoice that is created. By "
|
210 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -219,15 +197,15 @@ msgstr ""
|
|
219 |
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
220 |
"gevolg hebben!"
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid "Invoice number format"
|
224 |
msgstr "Factuurnummer format"
|
225 |
|
226 |
-
#: includes/class-wcpdf-settings.php:
|
227 |
msgid "Prefix"
|
228 |
msgstr "Voorvoegsel"
|
229 |
|
230 |
-
#: includes/class-wcpdf-settings.php:
|
231 |
msgid ""
|
232 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
233 |
"respectively"
|
@@ -235,21 +213,21 @@ msgstr ""
|
|
235 |
"gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
|
236 |
"te geven"
|
237 |
|
238 |
-
#: includes/class-wcpdf-settings.php:
|
239 |
msgid "Suffix"
|
240 |
msgstr "Achtervoegsel"
|
241 |
|
242 |
-
#: includes/class-wcpdf-settings.php:
|
243 |
msgid "Padding"
|
244 |
msgstr "Vulling"
|
245 |
|
246 |
-
#: includes/class-wcpdf-settings.php:
|
247 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
248 |
msgstr ""
|
249 |
"voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
|
250 |
"geven"
|
251 |
|
252 |
-
#: includes/class-wcpdf-settings.php:
|
253 |
msgid ""
|
254 |
"note: if you have already created a custom invoice number format with a "
|
255 |
"filter, the above settings will be ignored"
|
@@ -257,39 +235,39 @@ msgstr ""
|
|
257 |
"let op: als je al een format voor een factuurnummer hebt gemaakt met een "
|
258 |
"filter, worden de bovenstaande instellingen genegeerd"
|
259 |
|
260 |
-
#: includes/class-wcpdf-settings.php:
|
261 |
msgid "Extra template fields"
|
262 |
msgstr "Extra templatevelden"
|
263 |
|
264 |
-
#: includes/class-wcpdf-settings.php:
|
265 |
msgid "Extra field 1"
|
266 |
msgstr "Extra veld 1"
|
267 |
|
268 |
-
#: includes/class-wcpdf-settings.php:
|
269 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
270 |
msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
|
271 |
|
272 |
-
#: includes/class-wcpdf-settings.php:
|
273 |
msgid "Extra field 2"
|
274 |
msgstr "Extra veld 2"
|
275 |
|
276 |
-
#: includes/class-wcpdf-settings.php:
|
277 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
278 |
msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
|
279 |
|
280 |
-
#: includes/class-wcpdf-settings.php:
|
281 |
msgid "Extra field 3"
|
282 |
msgstr "Extra veld 3"
|
283 |
|
284 |
-
#: includes/class-wcpdf-settings.php:
|
285 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
286 |
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
|
287 |
|
288 |
-
#: includes/class-wcpdf-settings.php:
|
289 |
msgid "Image resolution"
|
290 |
msgstr "Afbeeldings resolutie"
|
291 |
|
292 |
-
#: includes/class-wcpdf-settings.php:
|
293 |
msgid ""
|
294 |
"These are used for the (optional) footer columns in the <em>Modern "
|
295 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -303,6 +281,16 @@ msgstr ""
|
|
303 |
msgid "PDF Packing Slips"
|
304 |
msgstr "PDF Pakbonnen"
|
305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
#: includes/class-wcpdf-writepanels.php:123
|
307 |
msgid "Invoice Number"
|
308 |
msgstr "Factuurnummer"
|
@@ -315,14 +303,6 @@ msgstr "Download factuur (PDF)"
|
|
315 |
msgid "Create PDF"
|
316 |
msgstr "Maak PDF"
|
317 |
|
318 |
-
#: includes/class-wcpdf-writepanels.php:184
|
319 |
-
msgid "PDF Invoice"
|
320 |
-
msgstr "PDF factuur"
|
321 |
-
|
322 |
-
#: includes/class-wcpdf-writepanels.php:189
|
323 |
-
msgid "PDF Packing Slip"
|
324 |
-
msgstr "PDF Pakbon"
|
325 |
-
|
326 |
#: includes/class-wcpdf-writepanels.php:232
|
327 |
msgid "PDF Invoice Number (unformatted!)"
|
328 |
msgstr "PDF Factuurnummer (zonder formatting!)"
|
@@ -334,11 +314,129 @@ msgstr "Factuurdatum:"
|
|
334 |
|
335 |
#: includes/class-wcpdf-writepanels.php:236
|
336 |
msgid "h"
|
337 |
-
msgstr ""
|
338 |
|
339 |
#: includes/class-wcpdf-writepanels.php:236
|
340 |
msgid "m"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
344 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
@@ -436,28 +534,25 @@ msgstr "Subtotaal"
|
|
436 |
msgid "Shipping"
|
437 |
msgstr "Verzendkosten"
|
438 |
|
439 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
440 |
msgid "Discount"
|
441 |
msgstr "Korting"
|
442 |
|
443 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
444 |
msgid "VAT"
|
445 |
msgstr "BTW"
|
446 |
|
447 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
448 |
msgid "Total ex. VAT"
|
449 |
msgstr "Totaal excl. BTW"
|
450 |
|
451 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
452 |
msgid "Total"
|
453 |
msgstr "Totaal"
|
454 |
|
455 |
#~ msgid "Number to display on invoice"
|
456 |
#~ msgstr "Nummer op de factuur"
|
457 |
|
458 |
-
#~ msgid "WooCommerce order number"
|
459 |
-
#~ msgstr "WooCommerce ordernummer"
|
460 |
-
|
461 |
#~ msgid ""
|
462 |
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
463 |
#~ "the WooCommerce order number"
|
@@ -465,9 +560,6 @@ msgstr "Totaal"
|
|
465 |
#~ "Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
466 |
#~ "dan WooCommerce ordernummer"
|
467 |
|
468 |
-
#~ msgid "Date to display on invoice"
|
469 |
-
#~ msgstr "Datum op de factuur"
|
470 |
-
|
471 |
#~ msgid "Order date"
|
472 |
#~ msgstr "Orderdatum"
|
473 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-11-24 11:52+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-11-24 12:05+0100\n"
|
7 |
"Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
19 |
"X-Generator: Poedit 1.6.10\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: includes/class-wcpdf-export.php:184 includes/class-wcpdf-export.php:189
|
23 |
+
#: includes/class-wcpdf-export.php:194 includes/class-wcpdf-export.php:205
|
24 |
+
#: includes/class-wcpdf-export.php:213
|
25 |
msgid "You do not have sufficient permissions to access this page."
|
26 |
msgstr "Je hebt onvoldoende rechten voor deze pagina."
|
27 |
|
28 |
+
#: includes/class-wcpdf-export.php:268
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "factuur"
|
32 |
msgstr[1] "facturen"
|
33 |
|
34 |
+
#: includes/class-wcpdf-export.php:272
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "pakbon"
|
62 |
msgid "Status"
|
63 |
msgstr "Status"
|
64 |
|
65 |
+
#: includes/class-wcpdf-settings.php:168
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
msgid "General settings"
|
67 |
msgstr "Algemene instellingen"
|
68 |
|
69 |
+
#: includes/class-wcpdf-settings.php:175
|
70 |
msgid "How do you want to view the PDF?"
|
71 |
msgstr "Hoe wil je de PDF bekijken?"
|
72 |
|
73 |
+
#: includes/class-wcpdf-settings.php:183
|
74 |
msgid "Download the PDF"
|
75 |
msgstr "Download de PDF"
|
76 |
|
77 |
+
#: includes/class-wcpdf-settings.php:184
|
78 |
msgid "Open the PDF in a new browser tab/window"
|
79 |
msgstr "Open de PDF in een nieuwe browser tab/venster"
|
80 |
|
81 |
+
#: includes/class-wcpdf-settings.php:193
|
|
|
|
|
|
|
|
|
82 |
msgid "Admin New Order email"
|
83 |
msgstr "Nieuwe bestelling (admin email)"
|
84 |
|
85 |
+
#: includes/class-wcpdf-settings.php:194
|
86 |
msgid "Customer Processing Order email"
|
87 |
msgstr "Bestelling in behandeling (klant email)"
|
88 |
|
89 |
+
#: includes/class-wcpdf-settings.php:195
|
90 |
msgid "Customer Completed Order email"
|
91 |
msgstr "Bestelling afgerond (klant email)"
|
92 |
|
93 |
+
#: includes/class-wcpdf-settings.php:196
|
94 |
msgid "Customer Invoice email"
|
95 |
msgstr "Factuur (klant email)"
|
96 |
|
97 |
+
#: includes/class-wcpdf-settings.php:201
|
98 |
+
msgid "Attach invoice to:"
|
99 |
+
msgstr "Factuur als bijlage toevoegen aan:"
|
100 |
+
|
101 |
+
#: includes/class-wcpdf-settings.php:209
|
102 |
#, php-format
|
103 |
msgid ""
|
104 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
109 |
"controleer de rechten op deze folder! Zonder schrijfrechten kan de plugin "
|
110 |
"geen facturen emailen."
|
111 |
|
112 |
+
#: includes/class-wcpdf-settings.php:215
|
113 |
msgid "Enable invoice number column in the orders list"
|
114 |
msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
|
115 |
|
116 |
+
#: includes/class-wcpdf-settings.php:254
|
117 |
msgid "PDF Template settings"
|
118 |
msgstr "PDF Template instellingen"
|
119 |
|
120 |
+
#: includes/class-wcpdf-settings.php:266
|
121 |
msgid "Choose a template"
|
122 |
msgstr "Kies een template"
|
123 |
|
124 |
+
#: includes/class-wcpdf-settings.php:274
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
130 |
"Wil je je eigen template gebruiken? Kopieer alle bestanden van <code>%s</"
|
131 |
"code> naar je (child-) theme in <code>%s</code> en pas ze aan naar je wensen."
|
132 |
|
133 |
+
#: includes/class-wcpdf-settings.php:280
|
134 |
msgid "Paper size"
|
135 |
msgstr "Papierformaat"
|
136 |
|
137 |
+
#: includes/class-wcpdf-settings.php:288
|
138 |
msgid "A4"
|
139 |
msgstr "A4"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:289
|
142 |
msgid "Letter"
|
143 |
msgstr "Letter (US)"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:296
|
146 |
msgid "Shop header/logo"
|
147 |
msgstr "Shop header/logo"
|
148 |
|
149 |
+
#: includes/class-wcpdf-settings.php:303
|
150 |
msgid "Select or upload your invoice header/logo"
|
151 |
msgstr "Selecteer of upload je factuur header/logo"
|
152 |
|
153 |
+
#: includes/class-wcpdf-settings.php:304
|
154 |
msgid "Set image"
|
155 |
msgstr "Stel afbeelding in"
|
156 |
|
157 |
+
#: includes/class-wcpdf-settings.php:305
|
158 |
msgid "Remove image"
|
159 |
msgstr "Verwijder afbeelding"
|
160 |
|
161 |
+
#: includes/class-wcpdf-settings.php:312
|
162 |
msgid "Shop Name"
|
163 |
msgstr "Shop Naam"
|
164 |
|
165 |
+
#: includes/class-wcpdf-settings.php:325
|
166 |
msgid "Shop Address"
|
167 |
msgstr "Shop Adres"
|
168 |
|
169 |
+
#: includes/class-wcpdf-settings.php:357
|
170 |
msgid "Footer: terms & conditions, policies, etc."
|
171 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
172 |
|
173 |
+
#: includes/class-wcpdf-settings.php:372
|
174 |
msgid "Display invoice date"
|
175 |
msgstr "Geef factuurdatum weer"
|
176 |
|
177 |
+
#: includes/class-wcpdf-settings.php:385
|
178 |
msgid "Display built-in sequential invoice number"
|
179 |
msgstr "Geef ingebouwde doorlopende factuurnummers weer"
|
180 |
|
181 |
+
#: includes/class-wcpdf-settings.php:398
|
182 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
183 |
msgstr "Volgend factuurnummer (zonder voor- of achtervoegsel etc.)"
|
184 |
|
185 |
+
#: includes/class-wcpdf-settings.php:406
|
186 |
msgid ""
|
187 |
"This is the number that will be used on the next invoice that is created. By "
|
188 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
197 |
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
198 |
"gevolg hebben!"
|
199 |
|
200 |
+
#: includes/class-wcpdf-settings.php:412
|
201 |
msgid "Invoice number format"
|
202 |
msgstr "Factuurnummer format"
|
203 |
|
204 |
+
#: includes/class-wcpdf-settings.php:421
|
205 |
msgid "Prefix"
|
206 |
msgstr "Voorvoegsel"
|
207 |
|
208 |
+
#: includes/class-wcpdf-settings.php:423
|
209 |
msgid ""
|
210 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
211 |
"respectively"
|
213 |
"gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
|
214 |
"te geven"
|
215 |
|
216 |
+
#: includes/class-wcpdf-settings.php:426
|
217 |
msgid "Suffix"
|
218 |
msgstr "Achtervoegsel"
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:431
|
221 |
msgid "Padding"
|
222 |
msgstr "Vulling"
|
223 |
|
224 |
+
#: includes/class-wcpdf-settings.php:433
|
225 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
226 |
msgstr ""
|
227 |
"voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
|
228 |
"geven"
|
229 |
|
230 |
+
#: includes/class-wcpdf-settings.php:436
|
231 |
msgid ""
|
232 |
"note: if you have already created a custom invoice number format with a "
|
233 |
"filter, the above settings will be ignored"
|
235 |
"let op: als je al een format voor een factuurnummer hebt gemaakt met een "
|
236 |
"filter, worden de bovenstaande instellingen genegeerd"
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:443
|
239 |
msgid "Extra template fields"
|
240 |
msgstr "Extra templatevelden"
|
241 |
|
242 |
+
#: includes/class-wcpdf-settings.php:450
|
243 |
msgid "Extra field 1"
|
244 |
msgstr "Extra veld 1"
|
245 |
|
246 |
+
#: includes/class-wcpdf-settings.php:459
|
247 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
248 |
msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
|
249 |
|
250 |
+
#: includes/class-wcpdf-settings.php:465
|
251 |
msgid "Extra field 2"
|
252 |
msgstr "Extra veld 2"
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:474
|
255 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
256 |
msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:480
|
259 |
msgid "Extra field 3"
|
260 |
msgstr "Extra veld 3"
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:489
|
263 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
264 |
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:747
|
267 |
msgid "Image resolution"
|
268 |
msgstr "Afbeeldings resolutie"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:863
|
271 |
msgid ""
|
272 |
"These are used for the (optional) footer columns in the <em>Modern "
|
273 |
"(Premium)</em> template, but can also be used for other elements in your "
|
281 |
msgid "PDF Packing Slips"
|
282 |
msgstr "PDF Pakbonnen"
|
283 |
|
284 |
+
#: includes/class-wcpdf-writepanels.php:91
|
285 |
+
#: includes/class-wcpdf-writepanels.php:184
|
286 |
+
msgid "PDF Invoice"
|
287 |
+
msgstr "PDF factuur"
|
288 |
+
|
289 |
+
#: includes/class-wcpdf-writepanels.php:96
|
290 |
+
#: includes/class-wcpdf-writepanels.php:189
|
291 |
+
msgid "PDF Packing Slip"
|
292 |
+
msgstr "PDF Pakbon"
|
293 |
+
|
294 |
#: includes/class-wcpdf-writepanels.php:123
|
295 |
msgid "Invoice Number"
|
296 |
msgstr "Factuurnummer"
|
303 |
msgid "Create PDF"
|
304 |
msgstr "Maak PDF"
|
305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
#: includes/class-wcpdf-writepanels.php:232
|
307 |
msgid "PDF Invoice Number (unformatted!)"
|
308 |
msgstr "PDF Factuurnummer (zonder formatting!)"
|
314 |
|
315 |
#: includes/class-wcpdf-writepanels.php:236
|
316 |
msgid "h"
|
317 |
+
msgstr "u"
|
318 |
|
319 |
#: includes/class-wcpdf-writepanels.php:236
|
320 |
msgid "m"
|
321 |
+
msgstr "m"
|
322 |
+
|
323 |
+
#: includes/wcpdf-extensions.php:15
|
324 |
+
msgid "Check out these premium extensions!"
|
325 |
+
msgstr "Bekijk deze premium uitbreidingen!"
|
326 |
+
|
327 |
+
#: includes/wcpdf-extensions.php:16
|
328 |
+
msgid "click items to read more"
|
329 |
+
msgstr "Klik op de items om meer te lezen"
|
330 |
+
|
331 |
+
#: includes/wcpdf-extensions.php:23
|
332 |
+
msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
|
333 |
+
msgstr "Go Pro: Pro-forma facturen, credit nota's (=refunds) & meer!"
|
334 |
+
|
335 |
+
#: includes/wcpdf-extensions.php:25
|
336 |
+
msgid ""
|
337 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
338 |
+
"features:"
|
339 |
+
msgstr ""
|
340 |
+
"Geef WooCommerce PDF Invoices & Packing Slips een boost met de volgende "
|
341 |
+
"functies:"
|
342 |
+
|
343 |
+
#: includes/wcpdf-extensions.php:27
|
344 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
345 |
+
msgstr "Email/print/download <b>PDF Credit Nota's & Pro-forma facturen</b>"
|
346 |
+
|
347 |
+
#: includes/wcpdf-extensions.php:28
|
348 |
+
msgid ""
|
349 |
+
"Attach a <b>static file</b> (for example a terms & conditions document) to "
|
350 |
+
"the WooCommerce emails of your choice."
|
351 |
+
msgstr ""
|
352 |
+
"Voeg een <b>statisch bestand</b> (bijvoorbeeld een document met algemene "
|
353 |
+
"voorwaarden) toe aan WooCommerce emails naar keuze."
|
354 |
+
|
355 |
+
#: includes/wcpdf-extensions.php:29
|
356 |
+
msgid ""
|
357 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
358 |
+
"and credit notes or utilize the main invoice numbering system"
|
359 |
+
msgstr ""
|
360 |
+
"Gebruik <b>losse nummersystemen</b> en/of formats voor pro-forma facturen en "
|
361 |
+
"credit notes, of gebruik het hoofd factuurnummersysteem."
|
362 |
+
|
363 |
+
#: includes/wcpdf-extensions.php:30
|
364 |
+
msgid ""
|
365 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
366 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
367 |
+
"custom template."
|
368 |
+
msgstr ""
|
369 |
+
"<b>Pas het verzend- en factuuradres aan</b> met custom velden, verschillende "
|
370 |
+
"fontgroottes etc, zonder daarvoor een custom template aan te maken."
|
371 |
+
|
372 |
+
#: includes/wcpdf-extensions.php:31
|
373 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
374 |
+
msgstr "Gebruik de plugin in meertalige <b>WPML</b> setups"
|
375 |
+
|
376 |
+
#: includes/wcpdf-extensions.php:33
|
377 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
378 |
+
msgstr "Neem WooCommerce PDF Invoices & Packing Slips Professional!"
|
379 |
+
|
380 |
+
#: includes/wcpdf-extensions.php:41
|
381 |
+
msgid "Upload all invoices automatically to your dropbox"
|
382 |
+
msgstr "Upload alle facturen automatisch naar je Dropbox"
|
383 |
+
|
384 |
+
#: includes/wcpdf-extensions.php:47
|
385 |
+
msgid ""
|
386 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
387 |
+
"documents from the professional extension) that are emailed to your "
|
388 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
389 |
+
"date!"
|
390 |
msgstr ""
|
391 |
+
"Deze extensie upload alle facturen (en andere pdf documenten van de "
|
392 |
+
"professional extensie) die worden ge-emaild naar je klanten naar Dropbox. De "
|
393 |
+
"beste manier om je factuur administratie up te date te houden!"
|
394 |
+
|
395 |
+
#: includes/wcpdf-extensions.php:48
|
396 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
397 |
+
msgstr "Neem WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
398 |
+
|
399 |
+
#: includes/wcpdf-extensions.php:60
|
400 |
+
msgid ""
|
401 |
+
"Automatically send new orders or packing slips to your printer, as soon as "
|
402 |
+
"the customer orders!"
|
403 |
+
msgstr ""
|
404 |
+
"Verstuur nieuwe orders of pakbonnen automatisch naar je printer, zodra een "
|
405 |
+
"klant een bestelling plaatst."
|
406 |
+
|
407 |
+
#: includes/wcpdf-extensions.php:66
|
408 |
+
msgid ""
|
409 |
+
"Check out the WooCommerce Automatic Order Printing extension from our "
|
410 |
+
"partners at Simba Hosting"
|
411 |
+
msgstr ""
|
412 |
+
"Bekijk de WooCommerce Automatic Order Printing extensie van onze parters van "
|
413 |
+
"Simba Hosting"
|
414 |
+
|
415 |
+
#: includes/wcpdf-extensions.php:67
|
416 |
+
msgid "WooCommerce Automatic Order Printing"
|
417 |
+
msgstr "WooCommerce Automatic Order Printing"
|
418 |
+
|
419 |
+
#: includes/wcpdf-extensions.php:81
|
420 |
+
msgid "More advanced templates"
|
421 |
+
msgstr "Geavanceerde templates"
|
422 |
+
|
423 |
+
#: includes/wcpdf-extensions.php:84
|
424 |
+
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
425 |
+
msgstr "Stijlvolle moderne facturen en pakbonnen met productafbeeldingen"
|
426 |
+
|
427 |
+
#: includes/wcpdf-extensions.php:85
|
428 |
+
msgid "More tax details on the invoices!"
|
429 |
+
msgstr "Meer BTW details op de factuur!"
|
430 |
+
|
431 |
+
#: includes/wcpdf-extensions.php:86
|
432 |
+
#, php-format
|
433 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
434 |
+
msgstr "Bekijk de Premium PDF Invoice & Packing Slips templates op %s."
|
435 |
+
|
436 |
+
#: includes/wcpdf-extensions.php:87
|
437 |
+
#, php-format
|
438 |
+
msgid "For custom templates, contact us at %s."
|
439 |
+
msgstr "Neem voor custom templates contact met ons op via %s"
|
440 |
|
441 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
442 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
534 |
msgid "Shipping"
|
535 |
msgstr "Verzendkosten"
|
536 |
|
537 |
+
#: woocommerce-pdf-invoices-packingslips.php:551
|
538 |
msgid "Discount"
|
539 |
msgstr "Korting"
|
540 |
|
541 |
+
#: woocommerce-pdf-invoices-packingslips.php:590
|
542 |
msgid "VAT"
|
543 |
msgstr "BTW"
|
544 |
|
545 |
+
#: woocommerce-pdf-invoices-packingslips.php:627
|
546 |
msgid "Total ex. VAT"
|
547 |
msgstr "Totaal excl. BTW"
|
548 |
|
549 |
+
#: woocommerce-pdf-invoices-packingslips.php:630
|
550 |
msgid "Total"
|
551 |
msgstr "Totaal"
|
552 |
|
553 |
#~ msgid "Number to display on invoice"
|
554 |
#~ msgstr "Nummer op de factuur"
|
555 |
|
|
|
|
|
|
|
556 |
#~ msgid ""
|
557 |
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
558 |
#~ "the WooCommerce order number"
|
560 |
#~ "Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
561 |
#~ "dan WooCommerce ordernummer"
|
562 |
|
|
|
|
|
|
|
563 |
#~ msgid "Order date"
|
564 |
#~ msgstr "Orderdatum"
|
565 |
|
languages/wpo_wcpdf-sl_SI.mo
ADDED
Binary file
|
languages/wpo_wcpdf-sl_SI.po
ADDED
@@ -0,0 +1,528 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-06 14:51+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-12 22:54+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.6.10\n"
|
12 |
+
"X-Poedit-Basepath: ../\n"
|
13 |
+
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
14 |
+
"%100==4 ? 2 : 3);\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
+
"Language: sl_SI\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
21 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
22 |
+
#: includes/class-wcpdf-export.php:204
|
23 |
+
msgid "You do not have sufficient permissions to access this page."
|
24 |
+
msgstr "Nimate dovolj pristojnosti za dostop do te strani"
|
25 |
+
|
26 |
+
# This is a filename (prefix). do not use spaces or special characters!
|
27 |
+
#: includes/class-wcpdf-export.php:263
|
28 |
+
msgid "invoice"
|
29 |
+
msgid_plural "invoices"
|
30 |
+
msgstr[0] "račun"
|
31 |
+
msgstr[1] "računa"
|
32 |
+
msgstr[2] "računi"
|
33 |
+
msgstr[3] "računov"
|
34 |
+
|
35 |
+
# This is a filename (prefix). do not use spaces or special characters!
|
36 |
+
#: includes/class-wcpdf-export.php:267
|
37 |
+
msgid "packing-slip"
|
38 |
+
msgid_plural "packing-slips"
|
39 |
+
msgstr[0] "spremnica"
|
40 |
+
msgstr[1] "spremnici"
|
41 |
+
msgstr[2] "spremnice"
|
42 |
+
msgstr[3] "spremnic"
|
43 |
+
|
44 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
45 |
+
#: includes/class-wcpdf-writepanels.php:31
|
46 |
+
msgid "PDF Invoices"
|
47 |
+
msgstr "PDF računi"
|
48 |
+
|
49 |
+
#: includes/class-wcpdf-settings.php:69
|
50 |
+
msgid "Settings"
|
51 |
+
msgstr "Nastavitve"
|
52 |
+
|
53 |
+
#: includes/class-wcpdf-settings.php:91
|
54 |
+
msgid "General"
|
55 |
+
msgstr "Splošno"
|
56 |
+
|
57 |
+
#: includes/class-wcpdf-settings.php:92
|
58 |
+
msgid "Template"
|
59 |
+
msgstr "Predloga"
|
60 |
+
|
61 |
+
#: includes/class-wcpdf-settings.php:101
|
62 |
+
msgid "WooCommerce PDF Invoices"
|
63 |
+
msgstr "WooCommerce PDF računi"
|
64 |
+
|
65 |
+
#: includes/class-wcpdf-settings.php:107
|
66 |
+
msgid "Status"
|
67 |
+
msgstr "Status"
|
68 |
+
|
69 |
+
#: includes/class-wcpdf-settings.php:167
|
70 |
+
msgid "General settings"
|
71 |
+
msgstr "Splošne nastavitve"
|
72 |
+
|
73 |
+
#: includes/class-wcpdf-settings.php:174
|
74 |
+
msgid "How do you want to view the PDF?"
|
75 |
+
msgstr "Kako si želite ogledati PDF?"
|
76 |
+
|
77 |
+
#: includes/class-wcpdf-settings.php:182
|
78 |
+
msgid "Download the PDF"
|
79 |
+
msgstr "Prenesi PDF"
|
80 |
+
|
81 |
+
#: includes/class-wcpdf-settings.php:183
|
82 |
+
msgid "Open the PDF in a new browser tab/window"
|
83 |
+
msgstr "Odpri PDF v novem zavihku/oknu"
|
84 |
+
|
85 |
+
#: includes/class-wcpdf-settings.php:193
|
86 |
+
msgid "Attach invoice to:"
|
87 |
+
msgstr "Priloži račun:"
|
88 |
+
|
89 |
+
#: includes/class-wcpdf-settings.php:201
|
90 |
+
msgid "Admin New Order email"
|
91 |
+
msgstr "Skrbnik - obvestilo o novem naročilu"
|
92 |
+
|
93 |
+
#: includes/class-wcpdf-settings.php:202
|
94 |
+
msgid "Customer Processing Order email"
|
95 |
+
msgstr "Kupec - obvestilo o obdelavi"
|
96 |
+
|
97 |
+
#: includes/class-wcpdf-settings.php:203
|
98 |
+
msgid "Customer Completed Order email"
|
99 |
+
msgstr "Kupec - obvestilo o zaključenem nakupu"
|
100 |
+
|
101 |
+
#: includes/class-wcpdf-settings.php:204
|
102 |
+
msgid "Customer Invoice email"
|
103 |
+
msgstr "Kupec - email z računom"
|
104 |
+
|
105 |
+
#: includes/class-wcpdf-settings.php:206
|
106 |
+
#, php-format
|
107 |
+
msgid ""
|
108 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
109 |
+
"permissions for this folder! Without having write access to this folder, the "
|
110 |
+
"plugin will not be able to email invoices."
|
111 |
+
msgstr ""
|
112 |
+
"Izgleda, da v temp direktorij (<code>%s</code>) ni možno zapisovati, "
|
113 |
+
"preverite dovoljenja za ta direktorij. Brez možnosti zapisovanja v ta "
|
114 |
+
"direktorij, razširitev ne more pošiljati računov na email."
|
115 |
+
|
116 |
+
#: includes/class-wcpdf-settings.php:212
|
117 |
+
msgid "Enable invoice number column in the orders list"
|
118 |
+
msgstr "Omogoči prikaz št. računa na seznamu naročil"
|
119 |
+
|
120 |
+
#: includes/class-wcpdf-settings.php:251
|
121 |
+
msgid "PDF Template settings"
|
122 |
+
msgstr "Nastavitve PDF predloge"
|
123 |
+
|
124 |
+
#: includes/class-wcpdf-settings.php:263
|
125 |
+
msgid "Choose a template"
|
126 |
+
msgstr "Izberite predlogo"
|
127 |
+
|
128 |
+
#: includes/class-wcpdf-settings.php:271
|
129 |
+
#, php-format
|
130 |
+
msgid ""
|
131 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
132 |
+
"your (child) theme in <code>%s</code> to customize them"
|
133 |
+
msgstr ""
|
134 |
+
"Želite uporabiti svojo predlogo? Kopirajte vse datoteke iz <code>%s</code> v "
|
135 |
+
"vašo (otroško) temo v <code>%s</code> in jo spremenite po želji"
|
136 |
+
|
137 |
+
#: includes/class-wcpdf-settings.php:277
|
138 |
+
msgid "Paper size"
|
139 |
+
msgstr "Velikost papirja"
|
140 |
+
|
141 |
+
#: includes/class-wcpdf-settings.php:285
|
142 |
+
msgid "A4"
|
143 |
+
msgstr "A4"
|
144 |
+
|
145 |
+
#: includes/class-wcpdf-settings.php:286
|
146 |
+
msgid "Letter"
|
147 |
+
msgstr "Pismo"
|
148 |
+
|
149 |
+
#: includes/class-wcpdf-settings.php:293
|
150 |
+
msgid "Shop header/logo"
|
151 |
+
msgstr "Glava trgovine/logo"
|
152 |
+
|
153 |
+
#: includes/class-wcpdf-settings.php:300
|
154 |
+
msgid "Select or upload your invoice header/logo"
|
155 |
+
msgstr "Izberite ali naložite svojo glavo/logo"
|
156 |
+
|
157 |
+
#: includes/class-wcpdf-settings.php:301
|
158 |
+
msgid "Set image"
|
159 |
+
msgstr "Nastavi sliko"
|
160 |
+
|
161 |
+
#: includes/class-wcpdf-settings.php:302
|
162 |
+
msgid "Remove image"
|
163 |
+
msgstr "Odstrani sliko"
|
164 |
+
|
165 |
+
#: includes/class-wcpdf-settings.php:309
|
166 |
+
msgid "Shop Name"
|
167 |
+
msgstr "Ime trgovine"
|
168 |
+
|
169 |
+
#: includes/class-wcpdf-settings.php:322
|
170 |
+
msgid "Shop Address"
|
171 |
+
msgstr "Naslov trgovine"
|
172 |
+
|
173 |
+
#: includes/class-wcpdf-settings.php:354
|
174 |
+
msgid "Footer: terms & conditions, policies, etc."
|
175 |
+
msgstr "Noga: splošni pogoji, zasebnost, pravice ipd."
|
176 |
+
|
177 |
+
#: includes/class-wcpdf-settings.php:369
|
178 |
+
msgid "Display invoice date"
|
179 |
+
msgstr "Prikaži datum naročila"
|
180 |
+
|
181 |
+
#: includes/class-wcpdf-settings.php:382
|
182 |
+
msgid "Display built-in sequential invoice number"
|
183 |
+
msgstr "Prikaži vdelano sekvenčno številko računa"
|
184 |
+
|
185 |
+
#: includes/class-wcpdf-settings.php:395
|
186 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
187 |
+
msgstr "Naslednja številka računa (brez predpone/zapone ipd.)"
|
188 |
+
|
189 |
+
#: includes/class-wcpdf-settings.php:403
|
190 |
+
msgid ""
|
191 |
+
"This is the number that will be used on the next invoice that is created. By "
|
192 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
193 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
194 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
195 |
+
"this could create double invoice numbers!"
|
196 |
+
msgstr ""
|
197 |
+
"To je število, ki bo uporabljeno pri naslednjem računu, ki bo ustvarjen. "
|
198 |
+
"Privzeti je nastavljeno, da WooCommerce prične številčiti pri prvem računu "
|
199 |
+
"in le-to povečuje za vsak nov račun. Pazite, če ste to prepisali in jo "
|
200 |
+
"nastavili nižjo, kot pa je že izdan račun, lahko pride do podvajanja številk!"
|
201 |
+
|
202 |
+
#: includes/class-wcpdf-settings.php:409
|
203 |
+
msgid "Invoice number format"
|
204 |
+
msgstr "Format številke računa"
|
205 |
+
|
206 |
+
#: includes/class-wcpdf-settings.php:418
|
207 |
+
msgid "Prefix"
|
208 |
+
msgstr "Predpona"
|
209 |
+
|
210 |
+
#: includes/class-wcpdf-settings.php:420
|
211 |
+
msgid ""
|
212 |
+
"to use the order year and/or month, use [order_year] or [order_month] "
|
213 |
+
"respectively"
|
214 |
+
msgstr ""
|
215 |
+
"za uporabo letnice ali meseca, uporabite [order_year] ali [order_month] "
|
216 |
+
"posebej."
|
217 |
+
|
218 |
+
#: includes/class-wcpdf-settings.php:423
|
219 |
+
msgid "Suffix"
|
220 |
+
msgstr "Pripona"
|
221 |
+
|
222 |
+
#: includes/class-wcpdf-settings.php:428
|
223 |
+
msgid "Padding"
|
224 |
+
msgstr "Predštevilo"
|
225 |
+
|
226 |
+
#: includes/class-wcpdf-settings.php:430
|
227 |
+
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
228 |
+
msgstr "vnesite število številk - vnesite \"6\" za prikaz 42 kot 000042"
|
229 |
+
|
230 |
+
#: includes/class-wcpdf-settings.php:433
|
231 |
+
msgid ""
|
232 |
+
"note: if you have already created a custom invoice number format with a "
|
233 |
+
"filter, the above settings will be ignored"
|
234 |
+
msgstr ""
|
235 |
+
"pozor: če ste že ustvarili format številke računa po svoji želji z "
|
236 |
+
"morebitnim filtrom, bodo zgornje nastavitve ignorirane"
|
237 |
+
|
238 |
+
#: includes/class-wcpdf-settings.php:440
|
239 |
+
msgid "Extra template fields"
|
240 |
+
msgstr "Dodatna polja predloge"
|
241 |
+
|
242 |
+
#: includes/class-wcpdf-settings.php:447
|
243 |
+
msgid "Extra field 1"
|
244 |
+
msgstr "Extra polje 1"
|
245 |
+
|
246 |
+
#: includes/class-wcpdf-settings.php:456
|
247 |
+
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
248 |
+
msgstr "To je 1. kolona noge v Moderni predlogi (premium)"
|
249 |
+
|
250 |
+
#: includes/class-wcpdf-settings.php:462
|
251 |
+
msgid "Extra field 2"
|
252 |
+
msgstr "Extra polje 2"
|
253 |
+
|
254 |
+
#: includes/class-wcpdf-settings.php:471
|
255 |
+
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
256 |
+
msgstr "To je 2. kolona noge v Moderni predlogi (premium)"
|
257 |
+
|
258 |
+
#: includes/class-wcpdf-settings.php:477
|
259 |
+
msgid "Extra field 3"
|
260 |
+
msgstr "Extra polje 3"
|
261 |
+
|
262 |
+
#: includes/class-wcpdf-settings.php:486
|
263 |
+
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
264 |
+
msgstr "To je 3. kolona noge v Moderni predlogi (premium)"
|
265 |
+
|
266 |
+
#: includes/class-wcpdf-settings.php:744
|
267 |
+
msgid "Image resolution"
|
268 |
+
msgstr "Resolucija slike"
|
269 |
+
|
270 |
+
#: includes/class-wcpdf-settings.php:860
|
271 |
+
msgid ""
|
272 |
+
"These are used for the (optional) footer columns in the <em>Modern "
|
273 |
+
"(Premium)</em> template, but can also be used for other elements in your "
|
274 |
+
"custom template"
|
275 |
+
msgstr ""
|
276 |
+
"Ta polja se uporabijo na željo v Moderni predlogi (premium), lahko pa jih "
|
277 |
+
"uporabite tudi za druge elemente Vaše predloge po želji."
|
278 |
+
|
279 |
+
#: includes/class-wcpdf-writepanels.php:32
|
280 |
+
msgid "PDF Packing Slips"
|
281 |
+
msgstr "PDF spremnice"
|
282 |
+
|
283 |
+
#: includes/class-wcpdf-writepanels.php:91
|
284 |
+
#: includes/class-wcpdf-writepanels.php:184
|
285 |
+
msgid "PDF Invoice"
|
286 |
+
msgstr "PDF račun"
|
287 |
+
|
288 |
+
#: includes/class-wcpdf-writepanels.php:96
|
289 |
+
#: includes/class-wcpdf-writepanels.php:189
|
290 |
+
msgid "PDF Packing Slip"
|
291 |
+
msgstr "PDF spremnica"
|
292 |
+
|
293 |
+
#: includes/class-wcpdf-writepanels.php:123
|
294 |
+
msgid "Invoice Number"
|
295 |
+
msgstr "Številka računa"
|
296 |
+
|
297 |
+
#: includes/class-wcpdf-writepanels.php:160
|
298 |
+
msgid "Download invoice (PDF)"
|
299 |
+
msgstr "Račun"
|
300 |
+
|
301 |
+
#: includes/class-wcpdf-writepanels.php:171
|
302 |
+
msgid "Create PDF"
|
303 |
+
msgstr "Ustvari PDF"
|
304 |
+
|
305 |
+
#: includes/class-wcpdf-writepanels.php:232
|
306 |
+
msgid "PDF Invoice Number (unformatted!)"
|
307 |
+
msgstr "PDF številka računa (neformatirana)"
|
308 |
+
|
309 |
+
#: includes/class-wcpdf-writepanels.php:235
|
310 |
+
#: templates/pdf/Simple/invoice.php:36
|
311 |
+
msgid "Invoice Date:"
|
312 |
+
msgstr "Datum računa:"
|
313 |
+
|
314 |
+
#: includes/class-wcpdf-writepanels.php:236
|
315 |
+
msgid "h"
|
316 |
+
msgstr "u"
|
317 |
+
|
318 |
+
#: includes/class-wcpdf-writepanels.php:236
|
319 |
+
msgid "m"
|
320 |
+
msgstr "m"
|
321 |
+
|
322 |
+
#: includes/wcpdf-extensions.php:15
|
323 |
+
msgid "Check out these premium extensions!"
|
324 |
+
msgstr "Preverite premium razširitve"
|
325 |
+
|
326 |
+
#: includes/wcpdf-extensions.php:16
|
327 |
+
msgid "click items to read more"
|
328 |
+
msgstr "klikni predmet za več vsebine"
|
329 |
+
|
330 |
+
#: includes/wcpdf-extensions.php:23
|
331 |
+
msgid "Go Pro: Proforma invoices, credit notes & more!"
|
332 |
+
msgstr "Pro verzija: Predračuni, obvestila in še več!"
|
333 |
+
|
334 |
+
#: includes/wcpdf-extensions.php:25
|
335 |
+
msgid ""
|
336 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
337 |
+
"features:"
|
338 |
+
msgstr "Dopolnite WooCommerce PDF Račune in Spremnice s sledečimi funkcijami:"
|
339 |
+
|
340 |
+
#: includes/wcpdf-extensions.php:27
|
341 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
342 |
+
msgstr "Email/natisni/prenesi <b>PDF Zapiske / Račune</b>"
|
343 |
+
|
344 |
+
#: includes/wcpdf-extensions.php:28
|
345 |
+
msgid ""
|
346 |
+
"Attach a <b>static file</b> (for example a terms & conditions document) to "
|
347 |
+
"the WooCommerce emails of your choice."
|
348 |
+
msgstr ""
|
349 |
+
"Priložite <b>datoteko</b> (npr. pogoje nakupa) v elektornsko sporočilo po "
|
350 |
+
"vaši želji."
|
351 |
+
|
352 |
+
#: includes/wcpdf-extensions.php:29
|
353 |
+
msgid ""
|
354 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
355 |
+
"and credit notes or utilize the main invoice numbering system"
|
356 |
+
msgstr ""
|
357 |
+
"Uporabite <b>ločen sistem za številčenje</b> za predračune in opomnike, ali "
|
358 |
+
"pa vklopite glavni sistem za številčenje."
|
359 |
+
|
360 |
+
#: includes/wcpdf-extensions.php:30
|
361 |
+
msgid ""
|
362 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
363 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
364 |
+
"custom template."
|
365 |
+
msgstr ""
|
366 |
+
"<b>Uredite naslov za dostavo in račun</b> tako, da vključite dodatna polja, "
|
367 |
+
"velikost pisave ipd. brez, da ustvarite svojo predlogo."
|
368 |
+
|
369 |
+
#: includes/wcpdf-extensions.php:31
|
370 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
371 |
+
msgstr "Uporabite ta plugin v večjezični <b>WPML</b> nastavitvi"
|
372 |
+
|
373 |
+
#: includes/wcpdf-extensions.php:33
|
374 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
375 |
+
msgstr "WooCommerce PDF Računi in Spremnice profesional!"
|
376 |
+
|
377 |
+
#: includes/wcpdf-extensions.php:41
|
378 |
+
msgid "Upload all invoices automatically to your dropbox"
|
379 |
+
msgstr "Avtomatsko naložite vse račune na Dropbox"
|
380 |
+
|
381 |
+
#: includes/wcpdf-extensions.php:47
|
382 |
+
msgid ""
|
383 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
384 |
+
"documents from the professional extension) that are emailed to your "
|
385 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
386 |
+
"date!"
|
387 |
+
msgstr ""
|
388 |
+
"Razširitev omogoča da naložite vse račune (ali druge dokumente iz "
|
389 |
+
"profesionalne razširitve), ki so poslane vašim strankam, na Dropbox. "
|
390 |
+
"Najboljši način za vedno osveženo administracijo!"
|
391 |
+
|
392 |
+
#: includes/wcpdf-extensions.php:48
|
393 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
394 |
+
msgstr "WooCommerce PDF Računi in Spremnice na dropbox"
|
395 |
+
|
396 |
+
#: includes/wcpdf-extensions.php:62
|
397 |
+
msgid "More advanced templates"
|
398 |
+
msgstr "Napredne predloge"
|
399 |
+
|
400 |
+
#: includes/wcpdf-extensions.php:65
|
401 |
+
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
402 |
+
msgstr "Stilsko moderni računi in spremnice z slikami produktov"
|
403 |
+
|
404 |
+
#: includes/wcpdf-extensions.php:66
|
405 |
+
msgid "More tax details on the invoices!"
|
406 |
+
msgstr "DDV podrobnosti na računu!"
|
407 |
+
|
408 |
+
#: includes/wcpdf-extensions.php:67
|
409 |
+
#, php-format
|
410 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
411 |
+
msgstr "Preverite premium PDF Računi in Spremnice predloge pri %s."
|
412 |
+
|
413 |
+
#: includes/wcpdf-extensions.php:68
|
414 |
+
#, php-format
|
415 |
+
msgid "For custom templates, contact us at %s."
|
416 |
+
msgstr "Za prirejene predloge nas kontaktirajte na %s"
|
417 |
+
|
418 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
419 |
+
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
420 |
+
msgid "Invoice"
|
421 |
+
msgstr "Račun"
|
422 |
+
|
423 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
424 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
425 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
426 |
+
msgid "Packing Slip"
|
427 |
+
msgstr "Spremnica"
|
428 |
+
|
429 |
+
#: templates/pdf/Simple/invoice.php:32
|
430 |
+
msgid "Invoice Number:"
|
431 |
+
msgstr "Številka računa:"
|
432 |
+
|
433 |
+
#: templates/pdf/Simple/invoice.php:39
|
434 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
435 |
+
msgid "Order Number:"
|
436 |
+
msgstr "Naročilo:"
|
437 |
+
|
438 |
+
#: templates/pdf/Simple/invoice.php:41
|
439 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
440 |
+
msgid "Order Date:"
|
441 |
+
msgstr "Datum naročila:"
|
442 |
+
|
443 |
+
#: templates/pdf/Simple/invoice.php:43
|
444 |
+
msgid "Payment Method:"
|
445 |
+
msgstr "Način plačila:"
|
446 |
+
|
447 |
+
#: templates/pdf/Simple/invoice.php:58
|
448 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
449 |
+
msgid "Product"
|
450 |
+
msgstr "Aranžma"
|
451 |
+
|
452 |
+
#: templates/pdf/Simple/invoice.php:59
|
453 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
454 |
+
msgid "Quantity"
|
455 |
+
msgstr "Količina"
|
456 |
+
|
457 |
+
#: templates/pdf/Simple/invoice.php:60
|
458 |
+
msgid "Price"
|
459 |
+
msgstr "Cena"
|
460 |
+
|
461 |
+
#: templates/pdf/Simple/invoice.php:66
|
462 |
+
msgid "Description"
|
463 |
+
msgstr "Opis"
|
464 |
+
|
465 |
+
#: templates/pdf/Simple/invoice.php:69
|
466 |
+
msgid "SKU"
|
467 |
+
msgstr "SKU:"
|
468 |
+
|
469 |
+
#: templates/pdf/Simple/invoice.php:70
|
470 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
471 |
+
msgid "SKU:"
|
472 |
+
msgstr "SKU:"
|
473 |
+
|
474 |
+
#: templates/pdf/Simple/invoice.php:71
|
475 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
476 |
+
msgid "Weight:"
|
477 |
+
msgstr "Teža:"
|
478 |
+
|
479 |
+
#: templates/pdf/Simple/invoice.php:105
|
480 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
481 |
+
msgid "Customer Notes"
|
482 |
+
msgstr "Sporočilo kupca"
|
483 |
+
|
484 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
485 |
+
#, php-format
|
486 |
+
msgid ""
|
487 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
488 |
+
"installed & activated!"
|
489 |
+
msgstr ""
|
490 |
+
"WooCommerce PDF Računi in Spremnice potrebujejo inštaliran ter aktiviran "
|
491 |
+
"%sWooCommerce%s!"
|
492 |
+
|
493 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
494 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
495 |
+
msgid "N/A"
|
496 |
+
msgstr "Ni na voljo"
|
497 |
+
|
498 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
499 |
+
msgid "Payment method"
|
500 |
+
msgstr "Način plačila"
|
501 |
+
|
502 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
503 |
+
msgid "Shipping method"
|
504 |
+
msgstr "Način dostave"
|
505 |
+
|
506 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
507 |
+
msgid "Subtotal"
|
508 |
+
msgstr "Skupaj"
|
509 |
+
|
510 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
511 |
+
msgid "Shipping"
|
512 |
+
msgstr "Dostava"
|
513 |
+
|
514 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
515 |
+
msgid "Discount"
|
516 |
+
msgstr "Popust"
|
517 |
+
|
518 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
519 |
+
msgid "VAT"
|
520 |
+
msgstr "DDV"
|
521 |
+
|
522 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
523 |
+
msgid "Total ex. VAT"
|
524 |
+
msgstr "Skupaj brez DDV"
|
525 |
+
|
526 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
527 |
+
msgid "Total"
|
528 |
+
msgstr "Za plačilo"
|
languages/wpo_wcpdf.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-11-
|
5 |
-
"PO-Revision-Date: 2014-11-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\n"
|
@@ -16,21 +16,21 @@ msgstr ""
|
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: includes/class-wcpdf-export.php:
|
20 |
-
#: includes/class-wcpdf-export.php:
|
21 |
-
#: includes/class-wcpdf-export.php:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
-
#: includes/class-wcpdf-export.php:
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] ""
|
30 |
msgstr[1] ""
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
-
#: includes/class-wcpdf-export.php:
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] ""
|
@@ -61,43 +61,43 @@ msgstr ""
|
|
61 |
msgid "Status"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/class-wcpdf-settings.php:
|
65 |
msgid "General settings"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/class-wcpdf-settings.php:
|
69 |
msgid "How do you want to view the PDF?"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/class-wcpdf-settings.php:
|
73 |
msgid "Download the PDF"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/class-wcpdf-settings.php:
|
77 |
msgid "Open the PDF in a new browser tab/window"
|
78 |
msgstr ""
|
79 |
|
80 |
#: includes/class-wcpdf-settings.php:193
|
81 |
-
msgid "Attach invoice to:"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: includes/class-wcpdf-settings.php:201
|
85 |
msgid "Admin New Order email"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/class-wcpdf-settings.php:
|
89 |
msgid "Customer Processing Order email"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "Customer Completed Order email"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Customer Invoice email"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
101 |
#, php-format
|
102 |
msgid ""
|
103 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -105,78 +105,78 @@ msgid ""
|
|
105 |
"plugin will not be able to email invoices."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
109 |
msgid "Enable invoice number column in the orders list"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "PDF Template settings"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Choose a template"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
124 |
"your (child) theme in <code>%s</code> to customize them"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-wcpdf-settings.php:
|
128 |
msgid "Paper size"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-wcpdf-settings.php:
|
132 |
msgid "A4"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
136 |
msgid "Letter"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
msgid "Shop header/logo"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Select or upload your invoice header/logo"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
148 |
msgid "Set image"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-wcpdf-settings.php:
|
152 |
msgid "Remove image"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Shop Name"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "Shop Address"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Footer: terms & conditions, policies, etc."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Display invoice date"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Display built-in sequential invoice number"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid ""
|
181 |
"This is the number that will be used on the next invoice that is created. By "
|
182 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -185,71 +185,71 @@ msgid ""
|
|
185 |
"this could create double invoice numbers!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
189 |
msgid "Invoice number format"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
193 |
msgid "Prefix"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/class-wcpdf-settings.php:
|
197 |
msgid ""
|
198 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
199 |
"respectively"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "Suffix"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Padding"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-wcpdf-settings.php:
|
215 |
msgid ""
|
216 |
"note: if you have already created a custom invoice number format with a "
|
217 |
"filter, the above settings will be ignored"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/class-wcpdf-settings.php:
|
221 |
msgid "Extra template fields"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/class-wcpdf-settings.php:
|
225 |
msgid "Extra field 1"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/class-wcpdf-settings.php:
|
229 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-wcpdf-settings.php:
|
233 |
msgid "Extra field 2"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-wcpdf-settings.php:
|
241 |
msgid "Extra field 3"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: includes/class-wcpdf-settings.php:
|
245 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/class-wcpdf-settings.php:
|
249 |
msgid "Image resolution"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/class-wcpdf-settings.php:
|
253 |
msgid ""
|
254 |
"These are used for the (optional) footer columns in the <em>Modern "
|
255 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -308,7 +308,7 @@ msgid "click items to read more"
|
|
308 |
msgstr ""
|
309 |
|
310 |
#: includes/wcpdf-extensions.php:23
|
311 |
-
msgid "Go Pro: Proforma invoices, credit notes & more!"
|
312 |
msgstr ""
|
313 |
|
314 |
#: includes/wcpdf-extensions.php:25
|
@@ -364,24 +364,40 @@ msgstr ""
|
|
364 |
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: includes/wcpdf-extensions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
368 |
msgid "More advanced templates"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: includes/wcpdf-extensions.php:
|
372 |
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: includes/wcpdf-extensions.php:
|
376 |
msgid "More tax details on the invoices!"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: includes/wcpdf-extensions.php:
|
380 |
#, php-format
|
381 |
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: includes/wcpdf-extensions.php:
|
385 |
#, php-format
|
386 |
msgid "For custom templates, contact us at %s."
|
387 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-19 12:22+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-19 12:23+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: includes/class-wcpdf-export.php:179 includes/class-wcpdf-export.php:184
|
20 |
+
#: includes/class-wcpdf-export.php:189 includes/class-wcpdf-export.php:200
|
21 |
+
#: includes/class-wcpdf-export.php:208
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:267
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] ""
|
30 |
msgstr[1] ""
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:271
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] ""
|
61 |
msgid "Status"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/class-wcpdf-settings.php:168
|
65 |
msgid "General settings"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/class-wcpdf-settings.php:175
|
69 |
msgid "How do you want to view the PDF?"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/class-wcpdf-settings.php:183
|
73 |
msgid "Download the PDF"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/class-wcpdf-settings.php:184
|
77 |
msgid "Open the PDF in a new browser tab/window"
|
78 |
msgstr ""
|
79 |
|
80 |
#: includes/class-wcpdf-settings.php:193
|
|
|
|
|
|
|
|
|
81 |
msgid "Admin New Order email"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/class-wcpdf-settings.php:194
|
85 |
msgid "Customer Processing Order email"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: includes/class-wcpdf-settings.php:195
|
89 |
msgid "Customer Completed Order email"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/class-wcpdf-settings.php:196
|
93 |
msgid "Customer Invoice email"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/class-wcpdf-settings.php:201
|
97 |
+
msgid "Attach invoice to:"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: includes/class-wcpdf-settings.php:209
|
101 |
#, php-format
|
102 |
msgid ""
|
103 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
105 |
"plugin will not be able to email invoices."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: includes/class-wcpdf-settings.php:215
|
109 |
msgid "Enable invoice number column in the orders list"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/class-wcpdf-settings.php:254
|
113 |
msgid "PDF Template settings"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/class-wcpdf-settings.php:266
|
117 |
msgid "Choose a template"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/class-wcpdf-settings.php:274
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
124 |
"your (child) theme in <code>%s</code> to customize them"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/class-wcpdf-settings.php:280
|
128 |
msgid "Paper size"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/class-wcpdf-settings.php:288
|
132 |
msgid "A4"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/class-wcpdf-settings.php:289
|
136 |
msgid "Letter"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/class-wcpdf-settings.php:296
|
140 |
msgid "Shop header/logo"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:303
|
144 |
msgid "Select or upload your invoice header/logo"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:304
|
148 |
msgid "Set image"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-wcpdf-settings.php:305
|
152 |
msgid "Remove image"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:312
|
156 |
msgid "Shop Name"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:325
|
160 |
msgid "Shop Address"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:357
|
164 |
msgid "Footer: terms & conditions, policies, etc."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:372
|
168 |
msgid "Display invoice date"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:385
|
172 |
msgid "Display built-in sequential invoice number"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:398
|
176 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:406
|
180 |
msgid ""
|
181 |
"This is the number that will be used on the next invoice that is created. By "
|
182 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
185 |
"this could create double invoice numbers!"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:412
|
189 |
msgid "Invoice number format"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:421
|
193 |
msgid "Prefix"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:423
|
197 |
msgid ""
|
198 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
199 |
"respectively"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:426
|
203 |
msgid "Suffix"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:431
|
207 |
msgid "Padding"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-wcpdf-settings.php:433
|
211 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:436
|
215 |
msgid ""
|
216 |
"note: if you have already created a custom invoice number format with a "
|
217 |
"filter, the above settings will be ignored"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:443
|
221 |
msgid "Extra template fields"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/class-wcpdf-settings.php:467
|
225 |
msgid "Extra field 1"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/class-wcpdf-settings.php:476
|
229 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-wcpdf-settings.php:482
|
233 |
msgid "Extra field 2"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:491
|
237 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:497
|
241 |
msgid "Extra field 3"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:506
|
245 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:764
|
249 |
msgid "Image resolution"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:880
|
253 |
msgid ""
|
254 |
"These are used for the (optional) footer columns in the <em>Modern "
|
255 |
"(Premium)</em> template, but can also be used for other elements in your "
|
308 |
msgstr ""
|
309 |
|
310 |
#: includes/wcpdf-extensions.php:23
|
311 |
+
msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
|
312 |
msgstr ""
|
313 |
|
314 |
#: includes/wcpdf-extensions.php:25
|
364 |
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/wcpdf-extensions.php:60
|
368 |
+
msgid ""
|
369 |
+
"Automatically send new orders or packing slips to your printer, as soon as "
|
370 |
+
"the customer orders!"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/wcpdf-extensions.php:66
|
374 |
+
msgid ""
|
375 |
+
"Check out the WooCommerce Automatic Order Printing extension from our "
|
376 |
+
"partners at Simba Hosting"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: includes/wcpdf-extensions.php:67
|
380 |
+
msgid "WooCommerce Automatic Order Printing"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: includes/wcpdf-extensions.php:81
|
384 |
msgid "More advanced templates"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: includes/wcpdf-extensions.php:84
|
388 |
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: includes/wcpdf-extensions.php:85
|
392 |
msgid "More tax details on the invoices!"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: includes/wcpdf-extensions.php:86
|
396 |
#, php-format
|
397 |
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/wcpdf-extensions.php:87
|
401 |
#, php-format
|
402 |
msgid "For custom templates, contact us at %s."
|
403 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: pomegranate
|
|
3 |
Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.0
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -20,12 +20,13 @@ This WooCommerce extension automatically adds a PDF invoice to the order confirm
|
|
20 |
* **Fully customizable** HTML/CSS invoice templates
|
21 |
* Download invoices from the My Account page
|
22 |
* Sequential invoice numbers - with custom formatting
|
23 |
-
* **Available in: Czech, Dutch, English, Finnish, French, German, Hungarian, Italian, Norwegian, Polish, Romanian, Russian, Slovak, Spanish, Swedish & Ukrainian**
|
24 |
|
25 |
In addition to this, we offer several premium extensions:
|
26 |
|
27 |
-
* Create/email PDF Proforma Invoices, Credit Notes, email Packing Slips & more with [WooCommerce PDF Invoices & Packing Slips Professional](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-professional/)
|
28 |
* Upload all invoices automatically to Dropbox with [WooCommerce PDF Invoices & Packing Slips to Dropbox](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-dropbox/)
|
|
|
29 |
* More advanced & stylish templates with [WooCommerce PDF Invoices & Packing Slips Premium Templates](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/)
|
30 |
|
31 |
= Fully customizable =
|
@@ -90,6 +91,53 @@ This plugin is translation ready, which means that you can translate it using st
|
|
90 |
7. Enter the translations. invoice and packing-slip now have two translation fields, single & plural. Note that this is a filename, so replace spaces with a - just to be sure!
|
91 |
8. Save as `wpo_wcpdf-xx_XX.po`, where you replace xx_XX with your language code & country code suffix (da_DK, pl_PL, de_DE etc.)
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
= How can I display the HTML/CSS source for debugging/developing templates? =
|
95 |
Add the following code to your theme's `functions.php`
|
@@ -188,6 +236,13 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
188 |
|
189 |
== Changelog ==
|
190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
= 1.4.12 =
|
192 |
* Fix: issues with post parent objects (WC2.1 and older)
|
193 |
|
3 |
Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.0
|
6 |
+
Stable tag: 1.4.13
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
20 |
* **Fully customizable** HTML/CSS invoice templates
|
21 |
* Download invoices from the My Account page
|
22 |
* Sequential invoice numbers - with custom formatting
|
23 |
+
* **Available in: Czech, Dutch, English, Finnish, French, German, Hungarian, Italian, Japanese (see FAQ for adding custom fonts!), Norwegian, Polish, Romanian, Russian, Slovak, Slovenian, Spanish, Swedish & Ukrainian**
|
24 |
|
25 |
In addition to this, we offer several premium extensions:
|
26 |
|
27 |
+
* Create/email PDF Proforma Invoices, Credit Notes (for Refunds), email Packing Slips & more with [WooCommerce PDF Invoices & Packing Slips Professional](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-professional/)
|
28 |
* Upload all invoices automatically to Dropbox with [WooCommerce PDF Invoices & Packing Slips to Dropbox](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-dropbox/)
|
29 |
+
* Automatically send new orders or packing slips to your printer, as soon as the customer orders! [WooCommerce Automatic Order Printing](https://www.simbahosting.co.uk/s3/product/woocommerce-automatic-order-printing/?affiliates=2) (from our partners at Simba Hosting)
|
30 |
* More advanced & stylish templates with [WooCommerce PDF Invoices & Packing Slips Premium Templates](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/)
|
31 |
|
32 |
= Fully customizable =
|
91 |
7. Enter the translations. invoice and packing-slip now have two translation fields, single & plural. Note that this is a filename, so replace spaces with a - just to be sure!
|
92 |
8. Save as `wpo_wcpdf-xx_XX.po`, where you replace xx_XX with your language code & country code suffix (da_DK, pl_PL, de_DE etc.)
|
93 |
|
94 |
+
= How can I use my own font? =
|
95 |
+
Although the plugin supports webfonts, this is somewhat limited and has a lot of caveats, read [this thread](https://wordpress.org/support/topic/webfonts-within-a-custom-template-not-rendering-in-pdf?replies=4#post-5395442) on the forum.
|
96 |
+
Some languages (Japanese, Chinese, etc.) are not supported by the default font included with the plugin, in this case a custom font is required.
|
97 |
+
The best method is to create a custom template first (see above), then add a `fonts/` folder to that template and use the following code (replace the font names/filenames) to load the font in the style.css from the pdf template:
|
98 |
+
`
|
99 |
+
<?php global $wpo_wcpdf;?>
|
100 |
+
/* Load font */
|
101 |
+
@font-face {
|
102 |
+
font-family: 'MyFont';
|
103 |
+
font-style: normal;
|
104 |
+
font-weight: normal;
|
105 |
+
src: local('MyFont'), local('MyFont'), url(<?php echo $wpo_wcpdf->export->template_path; ?>/fonts/myfont.ttf) format('truetype');
|
106 |
+
}
|
107 |
+
@font-face {
|
108 |
+
font-family: 'MyFont';
|
109 |
+
font-style: normal;
|
110 |
+
font-weight: bold;
|
111 |
+
src: local('MyFont Bold'), local('MyFont-Bold'), url(<?php echo $wpo_wcpdf->export->template_path; ?>/fonts/myfont-bold.ttf) format('truetype');
|
112 |
+
}
|
113 |
+
@font-face {
|
114 |
+
font-family: 'MyFont';
|
115 |
+
font-style: italic;
|
116 |
+
font-weight: normal;
|
117 |
+
src: local('MyFont Italic'), local('MyFont-Italic'), url(<?php echo $wpo_wcpdf->export->template_path; ?>/fonts/myfont-italic.ttf) format('truetype');
|
118 |
+
}
|
119 |
+
@font-face {
|
120 |
+
font-family: 'MyFont';
|
121 |
+
font-style: italic;
|
122 |
+
font-weight: bold;
|
123 |
+
src: local('MyFont Bold Italic'), local('MyFont-BoldItalic'), url(<?php echo $wpo_wcpdf->export->template_path; ?>/fonts/myfont-bolditalic.ttf) format('truetype');
|
124 |
+
}
|
125 |
+
`
|
126 |
+
then make sure you assign that font family to the body or other elements of the template:
|
127 |
+
`
|
128 |
+
font-family: 'MyFont';
|
129 |
+
`
|
130 |
+
|
131 |
+
Some notes:
|
132 |
+
|
133 |
+
* Only TTF fonts are supported.
|
134 |
+
* You can't use numeric font weights (like 700 instead of bold)!
|
135 |
+
* Avoid spaces or special characters in the font filenames.
|
136 |
+
* I have found that not all servers cope well with the font paths. If this is the case with your font, try to put the font in the root of your site and put that in the font url (i.e. `url(http://yoursite.com/fonts/myfont-italic.ttf)` )
|
137 |
+
|
138 |
+
Some font links:
|
139 |
+
Japanese - http://ipafont.ipa.go.jp/index.html
|
140 |
+
Chinese - http://www.study-area.org/apt/firefly-font/
|
141 |
|
142 |
= How can I display the HTML/CSS source for debugging/developing templates? =
|
143 |
Add the following code to your theme's `functions.php`
|
236 |
|
237 |
== Changelog ==
|
238 |
|
239 |
+
= 1.4.13 =
|
240 |
+
* Feature: use separate file for all your template specific functions (template-functions.php)
|
241 |
+
* Translations: Added Slovenian (thanks gregy1403!)
|
242 |
+
* Translations: Updated Norwegian & Dutch.
|
243 |
+
* Translations: Added Japanese - needs custom font!
|
244 |
+
* FAQ: instructions on how to use custom fonts
|
245 |
+
|
246 |
= 1.4.12 =
|
247 |
* Fix: issues with post parent objects (WC2.1 and older)
|
248 |
|
templates/pdf/Simple/style.css
CHANGED
@@ -234,7 +234,7 @@ table.totals td.price span:first-child {
|
|
234 |
bottom: -2cm;
|
235 |
left: 0;
|
236 |
right: 0;
|
237 |
-
height: 2cm;
|
238 |
text-align: center;
|
239 |
border-top: 0.1mm solid gray;
|
240 |
margin-bottom: 0;
|
234 |
bottom: -2cm;
|
235 |
left: 0;
|
236 |
right: 0;
|
237 |
+
height: 2cm; /* if you change the footer height, don't forget to change the bottom (=negative height) and the @page margin-bottom as well! */
|
238 |
text-align: center;
|
239 |
border-top: 0.1mm solid gray;
|
240 |
margin-bottom: 0;
|
templates/pdf/Simple/template-functions.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Use this file for all your template filters and actions.
|
4 |
+
* Requires WooCommerce PDF Invoices & Packing Slips 1.4.13 or higher
|
5 |
+
*/
|
6 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
7 |
+
|
tmp/.gitignore
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
# Ignore everything in this directory
|
2 |
-
*
|
3 |
-
# Except this file
|
4 |
-
!.gitignore
|
|
|
|
|
|
|
|
tmp/.htaccess
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
deny from all
|
woocommerce-pdf-invoices-packingslips.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce PDF Invoices & Packing Slips
|
4 |
* Plugin URI: http://www.wpovernight.com
|
5 |
* Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
|
6 |
-
* Version: 1.4.
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
@@ -33,7 +33,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
33 |
self::$plugin_basename = plugin_basename(__FILE__);
|
34 |
self::$plugin_url = plugin_dir_url(self::$plugin_basename);
|
35 |
self::$plugin_path = trailingslashit(dirname(__FILE__));
|
36 |
-
self::$version = '1.4.
|
37 |
|
38 |
// load the localisation & classes
|
39 |
add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
|
@@ -516,24 +516,35 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
516 |
/**
|
517 |
* Return/show the total discount
|
518 |
*/
|
519 |
-
public function get_order_discount( $type = 'total' ) {
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
}
|
538 |
|
539 |
$discount = array (
|
@@ -545,8 +556,8 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
545 |
return apply_filters( 'wpo_wcpdf_order_discount', $discount );
|
546 |
}
|
547 |
}
|
548 |
-
public function order_discount( $type = 'total' ) {
|
549 |
-
$discount = $this->get_order_discount( $type );
|
550 |
echo $discount['value'];
|
551 |
}
|
552 |
|
3 |
* Plugin Name: WooCommerce PDF Invoices & Packing Slips
|
4 |
* Plugin URI: http://www.wpovernight.com
|
5 |
* Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
|
6 |
+
* Version: 1.4.13
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
33 |
self::$plugin_basename = plugin_basename(__FILE__);
|
34 |
self::$plugin_url = plugin_dir_url(self::$plugin_basename);
|
35 |
self::$plugin_path = trailingslashit(dirname(__FILE__));
|
36 |
+
self::$version = '1.4.13';
|
37 |
|
38 |
// load the localisation & classes
|
39 |
add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
|
516 |
/**
|
517 |
* Return/show the total discount
|
518 |
*/
|
519 |
+
public function get_order_discount( $type = 'total', $tax = 'incl' ) {
|
520 |
+
if ( $tax == 'incl' ) {
|
521 |
+
switch ($type) {
|
522 |
+
case 'cart':
|
523 |
+
// Cart Discount - pre-tax discounts.
|
524 |
+
$discount_value = $this->export->order->get_cart_discount();
|
525 |
+
break;
|
526 |
+
case 'order':
|
527 |
+
// Order Discount - post-tax discounts.
|
528 |
+
$discount_value = $this->export->order->get_order_discount();
|
529 |
+
break;
|
530 |
+
case 'total':
|
531 |
+
// Total Discount - Cart & Order Discounts combined
|
532 |
+
$discount_value = $this->export->order->get_total_discount();
|
533 |
+
break;
|
534 |
+
default:
|
535 |
+
// Total Discount - Cart & Order Discounts combined
|
536 |
+
$discount_value = $this->export->order->get_total_discount();
|
537 |
+
break;
|
538 |
+
}
|
539 |
+
} else { // calculate discount excluding tax
|
540 |
+
$discount_value = 0;
|
541 |
+
|
542 |
+
$items = $this->export->order->get_items();;
|
543 |
+
if( sizeof( $items ) > 0 ) {
|
544 |
+
foreach( $items as $item ) {
|
545 |
+
$discount_value += ($item['line_subtotal'] - $item['line_total']);
|
546 |
+
}
|
547 |
+
}
|
548 |
}
|
549 |
|
550 |
$discount = array (
|
556 |
return apply_filters( 'wpo_wcpdf_order_discount', $discount );
|
557 |
}
|
558 |
}
|
559 |
+
public function order_discount( $type = 'total', $tax = 'incl' ) {
|
560 |
+
$discount = $this->get_order_discount( $type, $tax );
|
561 |
echo $discount['value'];
|
562 |
}
|
563 |
|