Version Description
- Feature: Optional Invoice Number column for the orders listing
- Feature: Better support for international characters
- Feature: Added Russian & Ukrainian translation (thanks Oleg!)
- Tweak: Updated Spanish (Thanks Manuel!) and Dutch translations
- Tweak: Updated POT file
- Tweak: Memory limit notice
- Tweak: Filename name now includes invoice number (when configured in the settings)
Download this release
Release Info
Developer | pomegranate |
Plugin | WooCommerce PDF Invoices & Packing Slips |
Version | 1.2.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.4 to 1.2.5
- css/style-wc21.css +4 -0
- css/style.css +4 -0
- includes/class-wcpdf-export.php +46 -39
- includes/class-wcpdf-settings.php +21 -0
- includes/class-wcpdf-writepanels.php +48 -7
- languages/wpo_wcpdf-es_ES.mo +0 -0
- languages/wpo_wcpdf-es_ES.po +240 -127
- languages/wpo_wcpdf-nl_NL.mo +0 -0
- languages/wpo_wcpdf-nl_NL.po +215 -105
- languages/wpo_wcpdf-ru_RU.mo +0 -0
- languages/wpo_wcpdf-ru_RU.po +403 -0
- languages/wpo_wcpdf-uk.mo +0 -0
- languages/wpo_wcpdf-uk.po +403 -0
- languages/wpo_wcpdf.pot +185 -92
- lib/dompdf/dompdf_config.inc.php +1 -1
- lib/dompdf/lib/fonts/dompdf_font_family_cache.dist.php +0 -39
- lib/dompdf/lib/fonts/dompdf_font_family_cache.php +0 -39
- readme.txt +16 -7
- templates/pdf/Simple/html-document-wrapper.php +0 -1
- templates/pdf/Simple/style.css +26 -1
- woocommerce-pdf-invoices-packingslips.php +2 -2
css/style-wc21.css
CHANGED
@@ -50,6 +50,10 @@
|
|
50 |
width: 16px;
|
51 |
}
|
52 |
|
|
|
|
|
|
|
|
|
53 |
/* Settings page styles */
|
54 |
#img-header_logo {
|
55 |
max-height: 200px;
|
50 |
width: 16px;
|
51 |
}
|
52 |
|
53 |
+
.widefat .column-pdf_invoice_number {
|
54 |
+
width: 110px;
|
55 |
+
}
|
56 |
+
|
57 |
/* Settings page styles */
|
58 |
#img-header_logo {
|
59 |
max-height: 200px;
|
css/style.css
CHANGED
@@ -47,6 +47,10 @@
|
|
47 |
width: 16px;
|
48 |
}
|
49 |
|
|
|
|
|
|
|
|
|
50 |
/* Settings page styles */
|
51 |
#img-header_logo {
|
52 |
max-height: 200px;
|
47 |
width: 16px;
|
48 |
}
|
49 |
|
50 |
+
.widefat .column-pdf_invoice_number {
|
51 |
+
width: 110px;
|
52 |
+
}
|
53 |
+
|
54 |
/* Settings page styles */
|
55 |
#img-header_logo {
|
56 |
max-height: 200px;
|
includes/class-wcpdf-export.php
CHANGED
@@ -14,7 +14,6 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
14 |
|
15 |
public $order;
|
16 |
public $template_type;
|
17 |
-
public $invoice_number;
|
18 |
public $order_id;
|
19 |
public $output_body;
|
20 |
|
@@ -174,8 +173,21 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
174 |
|
175 |
// if we got here, we're safe to go!
|
176 |
}
|
177 |
-
|
|
|
178 |
$template_type = $_GET['template_type'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
if ($template_type == 'invoice' ) {
|
180 |
$template_name = _n( 'invoice', 'invoices', count($order_ids), 'wpo_wcpdf' );
|
181 |
} else {
|
@@ -186,26 +198,12 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
186 |
if ( count($order_ids) > 1 ) {
|
187 |
$filename = $template_name . '-' . date('Y-m-d') . '.pdf'; // 'invoices-2020-11-11.pdf'
|
188 |
} else {
|
189 |
-
$
|
190 |
-
$
|
191 |
-
$filename = $template_name . '-' . $order_number . '.pdf'; // 'packing-slip-123456.pdf'
|
192 |
}
|
193 |
-
$filename = apply_filters( 'wpo_wcpdf_bulk_filename', $filename, $order_ids, $template_name );
|
194 |
-
|
195 |
-
// Generate the output
|
196 |
-
// $this->stream_pdf( $template_type, $order_ids, $filename );
|
197 |
-
|
198 |
-
// die($this->process_template( $template_type, $order_ids )); // or use the filter switch below!
|
199 |
-
|
200 |
-
if (apply_filters('wpo_wcpdf_output_html', false, $template_type)) {
|
201 |
-
// Output html to browser for debug
|
202 |
-
// NOTE! images will be loaded with the server path by default
|
203 |
-
// use the wpo_wcpdf_use_path filter (return false) to change this to http urls
|
204 |
-
die($this->process_template( $template_type, $order_ids ));
|
205 |
-
}
|
206 |
-
|
207 |
-
$invoice = $this->get_pdf( $template_type, $order_ids );
|
208 |
|
|
|
|
|
209 |
// Get output setting
|
210 |
$output_mode = isset($this->general_settings['download_display'])?$this->general_settings['download_display']:'';
|
211 |
|
@@ -258,13 +256,14 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
258 |
}
|
259 |
|
260 |
if( isset( $status ) && in_array ( $status, $allowed_statuses ) ) {
|
261 |
-
|
|
|
|
|
|
|
262 |
$pdf_filename_prefix = __( 'invoice', 'wpo_wcpdf' );
|
263 |
-
$pdf_filename = $pdf_filename_prefix . '-' . $
|
264 |
-
$pdf_filename = apply_filters( 'wpo_wcpdf_attachment_filename', $pdf_filename, $
|
265 |
$pdf_path = $tmp_path . $pdf_filename;
|
266 |
-
|
267 |
-
$invoice = $this->get_pdf( 'invoice', (array) $order->id );
|
268 |
file_put_contents ( $pdf_path, $invoice );
|
269 |
$attachments[] = $pdf_path;
|
270 |
}
|
@@ -276,11 +275,6 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
276 |
// get invoice number from post meta
|
277 |
$invoice_number = get_post_meta( $order_id, '_wcpdf_invoice_number', true );
|
278 |
|
279 |
-
// double check with local variable
|
280 |
-
if (!empty($this->invoice_number) ) {
|
281 |
-
$invoice_number = $this->invoice_number;
|
282 |
-
}
|
283 |
-
|
284 |
// add invoice number if it doesn't exist
|
285 |
if ( empty($invoice_number) || !isset($invoice_number) ) {
|
286 |
$next_invoice_number = $this->template_settings['next_invoice_number'];
|
@@ -292,21 +286,34 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
292 |
} else {
|
293 |
$invoice_number = $next_invoice_number;
|
294 |
}
|
|
|
|
|
|
|
295 |
|
296 |
-
//
|
297 |
-
$
|
|
|
|
|
298 |
}
|
299 |
|
300 |
-
|
|
|
301 |
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
309 |
-
return $
|
310 |
}
|
311 |
|
312 |
/**
|
14 |
|
15 |
public $order;
|
16 |
public $template_type;
|
|
|
17 |
public $order_id;
|
18 |
public $output_body;
|
19 |
|
173 |
|
174 |
// if we got here, we're safe to go!
|
175 |
}
|
176 |
+
|
177 |
+
// Generate the output
|
178 |
$template_type = $_GET['template_type'];
|
179 |
+
// die($this->process_template( $template_type, $order_ids )); // or use the filter switch below!
|
180 |
+
|
181 |
+
if (apply_filters('wpo_wcpdf_output_html', false, $template_type)) {
|
182 |
+
// Output html to browser for debug
|
183 |
+
// NOTE! images will be loaded with the server path by default
|
184 |
+
// use the wpo_wcpdf_use_path filter (return false) to change this to http urls
|
185 |
+
die($this->process_template( $template_type, $order_ids ));
|
186 |
+
}
|
187 |
+
|
188 |
+
$invoice = $this->get_pdf( $template_type, $order_ids );
|
189 |
+
|
190 |
+
// get template name
|
191 |
if ($template_type == 'invoice' ) {
|
192 |
$template_name = _n( 'invoice', 'invoices', count($order_ids), 'wpo_wcpdf' );
|
193 |
} else {
|
198 |
if ( count($order_ids) > 1 ) {
|
199 |
$filename = $template_name . '-' . date('Y-m-d') . '.pdf'; // 'invoices-2020-11-11.pdf'
|
200 |
} else {
|
201 |
+
$display_number = $this->get_display_number( $order_ids[0] );
|
202 |
+
$filename = $template_name . '-' . $display_number . '.pdf'; // 'packing-slip-123456.pdf'
|
|
|
203 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
|
205 |
+
$filename = apply_filters( 'wpo_wcpdf_bulk_filename', $filename, $order_ids, $template_name, $template_type );
|
206 |
+
|
207 |
// Get output setting
|
208 |
$output_mode = isset($this->general_settings['download_display'])?$this->general_settings['download_display']:'';
|
209 |
|
256 |
}
|
257 |
|
258 |
if( isset( $status ) && in_array ( $status, $allowed_statuses ) ) {
|
259 |
+
// create pdf data
|
260 |
+
$invoice = $this->get_pdf( 'invoice', (array) $order->id );
|
261 |
+
|
262 |
+
$display_number = $this->get_display_number( $order->id );
|
263 |
$pdf_filename_prefix = __( 'invoice', 'wpo_wcpdf' );
|
264 |
+
$pdf_filename = $pdf_filename_prefix . '-' . $display_number . '.pdf';
|
265 |
+
$pdf_filename = apply_filters( 'wpo_wcpdf_attachment_filename', $pdf_filename, $display_number, $order->id );
|
266 |
$pdf_path = $tmp_path . $pdf_filename;
|
|
|
|
|
267 |
file_put_contents ( $pdf_path, $invoice );
|
268 |
$attachments[] = $pdf_path;
|
269 |
}
|
275 |
// get invoice number from post meta
|
276 |
$invoice_number = get_post_meta( $order_id, '_wcpdf_invoice_number', true );
|
277 |
|
|
|
|
|
|
|
|
|
|
|
278 |
// add invoice number if it doesn't exist
|
279 |
if ( empty($invoice_number) || !isset($invoice_number) ) {
|
280 |
$next_invoice_number = $this->template_settings['next_invoice_number'];
|
286 |
} else {
|
287 |
$invoice_number = $next_invoice_number;
|
288 |
}
|
289 |
+
// die($invoice_number);
|
290 |
+
|
291 |
+
update_post_meta($order_id, '_wcpdf_invoice_number', $invoice_number);
|
292 |
|
293 |
+
// increase next_order_number
|
294 |
+
$template_settings = get_option('wpo_wcpdf_template_settings');
|
295 |
+
$template_settings['next_invoice_number'] = $this->template_settings['next_invoice_number'] = $invoice_number+1;
|
296 |
+
update_option( 'wpo_wcpdf_template_settings', $template_settings );
|
297 |
}
|
298 |
|
299 |
+
return apply_filters( 'wpo_wcpdf_invoice_number', $invoice_number, $this->order->get_order_number(), $this->order->id, date_i18n( get_option( 'date_format' ), strtotime( $this->order->order_date ) ) );
|
300 |
+
}
|
301 |
|
302 |
+
public function get_display_number( $order_id ) {
|
303 |
+
if ( !isset($this->order) ) {
|
304 |
+
$this->order = new WC_Order ( $order_id );
|
305 |
+
}
|
306 |
|
307 |
+
if ( isset($this->template_settings['display_number']) && $this->template_settings['display_number'] == 'invoice_number' ) {
|
308 |
+
// use invoice number
|
309 |
+
$display_number = $this->get_invoice_number( $order_id );
|
310 |
+
// die($display_number);
|
311 |
+
} else {
|
312 |
+
// use order number
|
313 |
+
$display_number = ltrim($this->order->get_order_number(), '#');
|
314 |
+
}
|
315 |
|
316 |
+
return $display_number;
|
317 |
}
|
318 |
|
319 |
/**
|
includes/class-wcpdf-settings.php
CHANGED
@@ -89,6 +89,14 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
89 |
<a href="?page=wpo_wcpdf_options_page&tab=template" class="nav-tab <?php echo $active_tab == 'template' ? 'nav-tab-active' : ''; ?>"><?php _e('Template','wpo_wcpdf') ?></a>
|
90 |
</h2>
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
<?php if (!class_exists('WooCommerce_PDF_IPS_Templates')) {
|
93 |
$template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
|
94 |
$email_link = '<a href="mailto:support@wpovernight.com">support@wpovernight.com</a>'
|
@@ -192,6 +200,19 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
192 |
'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>':'',
|
193 |
)
|
194 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
|
196 |
// Register settings.
|
197 |
register_setting( $option, $option, array( &$this, 'validate_options' ) );
|
89 |
<a href="?page=wpo_wcpdf_options_page&tab=template" class="nav-tab <?php echo $active_tab == 'template' ? 'nav-tab-active' : ''; ?>"><?php _e('Template','wpo_wcpdf') ?></a>
|
90 |
</h2>
|
91 |
|
92 |
+
<?php
|
93 |
+
$memory = function_exists('wc_let_to_num')?wc_let_to_num( WP_MEMORY_LIMIT ):woocommerce_let_to_num( WP_MEMORY_LIMIT );
|
94 |
+
|
95 |
+
if ( $memory < 67108864 ) {
|
96 |
+
echo '<div style="border: 1px solid #ccc; border-radius: 5px; padding: 10px; margin-top: 15px; background-color: #eee;">' . sprintf( __( 'Your WP Memory Limit is currently set to %s - We recommend setting it to at least 64MB (128MB for optimal performance). See: <a href="%s">Increasing memory allocated to PHP</a>', 'wpo_wcpdf' ), size_format( $memory ), 'http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP' ) . '</div>';
|
97 |
+
}
|
98 |
+
?>
|
99 |
+
|
100 |
<?php if (!class_exists('WooCommerce_PDF_IPS_Templates')) {
|
101 |
$template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
|
102 |
$email_link = '<a href="mailto:support@wpovernight.com">support@wpovernight.com</a>'
|
200 |
'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>':'',
|
201 |
)
|
202 |
);
|
203 |
+
|
204 |
+
add_settings_field(
|
205 |
+
'invoice_number_column',
|
206 |
+
__( 'Enable invoice number column in the orders list', 'wpo_wcpdf' ),
|
207 |
+
array( &$this, 'checkbox_element_callback' ),
|
208 |
+
$option,
|
209 |
+
'general_settings',
|
210 |
+
array(
|
211 |
+
'menu' => $option,
|
212 |
+
'id' => 'invoice_number_column',
|
213 |
+
)
|
214 |
+
);
|
215 |
+
|
216 |
|
217 |
// Register settings.
|
218 |
register_setting( $option, $option, array( &$this, 'validate_options' ) );
|
includes/class-wcpdf-writepanels.php
CHANGED
@@ -12,6 +12,8 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
|
|
12 |
*/
|
13 |
public function __construct() {
|
14 |
add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
|
|
|
|
|
15 |
add_action( 'add_meta_boxes_shop_order', array( $this, 'add_box' ) );
|
16 |
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'my_account_pdf_link' ), 10, 2 );
|
17 |
add_action( 'admin_print_scripts', array( $this, 'add_scripts' ) );
|
@@ -49,12 +51,12 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
|
|
49 |
if( $this->is_order_edit_page() ) {
|
50 |
wp_enqueue_script( 'wpo-wcpdf', WooCommerce_PDF_Invoices::$plugin_url . 'js/script.js', array( 'jquery' ) );
|
51 |
wp_localize_script(
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
);
|
59 |
}
|
60 |
}
|
@@ -85,6 +87,45 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
|
|
85 |
<?php
|
86 |
}
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
/**
|
89 |
* Add the meta box on the single order page
|
90 |
*/
|
@@ -142,7 +183,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
|
|
142 |
* Add actions to menu
|
143 |
*/
|
144 |
public function edit_invoice_number($order) {
|
145 |
-
woocommerce_wp_text_input( array( 'id' => '_wcpdf_invoice_number', 'label' => __( 'PDF Invoice Number', 'wpo_wcpdf' ) ) );
|
146 |
}
|
147 |
|
148 |
/**
|
12 |
*/
|
13 |
public function __construct() {
|
14 |
add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
|
15 |
+
add_filter( 'manage_edit-shop_order_columns', array( $this, 'add_invoice_number_column' ), 999 );
|
16 |
+
add_action( 'manage_shop_order_posts_custom_column', array( $this, 'invoice_number_column_data' ), 2 );
|
17 |
add_action( 'add_meta_boxes_shop_order', array( $this, 'add_box' ) );
|
18 |
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'my_account_pdf_link' ), 10, 2 );
|
19 |
add_action( 'admin_print_scripts', array( $this, 'add_scripts' ) );
|
51 |
if( $this->is_order_edit_page() ) {
|
52 |
wp_enqueue_script( 'wpo-wcpdf', WooCommerce_PDF_Invoices::$plugin_url . 'js/script.js', array( 'jquery' ) );
|
53 |
wp_localize_script(
|
54 |
+
'wpo-wcpdf',
|
55 |
+
'wpo_wcpdf_ajax',
|
56 |
+
array(
|
57 |
+
'ajaxurl' => admin_url( 'admin-ajax.php' ), // URL to WordPress ajax handling page
|
58 |
+
'nonce' => wp_create_nonce('generate_wpo_wcpdf')
|
59 |
+
)
|
60 |
);
|
61 |
}
|
62 |
}
|
87 |
<?php
|
88 |
}
|
89 |
|
90 |
+
/**
|
91 |
+
* Create additional Shop Order column for Invoice Numbers
|
92 |
+
* @param array $columns shop order columns
|
93 |
+
*/
|
94 |
+
public function add_invoice_number_column( $columns ) {
|
95 |
+
// Check user setting
|
96 |
+
if ( !isset($this->general_settings['invoice_number_column'] ) ) {
|
97 |
+
return $columns;
|
98 |
+
}
|
99 |
+
|
100 |
+
// put the column after the Status column
|
101 |
+
$new_columns = array_slice($columns, 0, 2, true) +
|
102 |
+
array( 'pdf_invoice_number' => __( 'Invoice Number', 'wpo_wcpdf' ) ) +
|
103 |
+
array_slice($columns, 2, count($columns) - 1, true) ;
|
104 |
+
return $new_columns;
|
105 |
+
}
|
106 |
+
|
107 |
+
/**
|
108 |
+
* Display Invoice Number in Shop Order column (if available)
|
109 |
+
* @param string $column column slug
|
110 |
+
*/
|
111 |
+
public function invoice_number_column_data( $column ) {
|
112 |
+
global $post, $the_order;
|
113 |
+
|
114 |
+
if ( $column == 'pdf_invoice_number' && get_post_meta($the_order->id,'_wcpdf_invoice_number',true) ) {
|
115 |
+
if ( empty( $the_order ) || $the_order->id != $post->ID ) {
|
116 |
+
$the_order = new WC_Order( $post->ID );
|
117 |
+
}
|
118 |
+
|
119 |
+
// collect data for invoice number filter
|
120 |
+
$invoice_number = get_post_meta($the_order->id,'_wcpdf_invoice_number',true);
|
121 |
+
$order_number = $the_order->get_order_number();
|
122 |
+
$order_id = $the_order->id;
|
123 |
+
$order_date = $the_order->order_date;
|
124 |
+
|
125 |
+
echo apply_filters( 'wpo_wcpdf_invoice_number', $invoice_number, $order_number, $order_id, $order_date );
|
126 |
+
}
|
127 |
+
}
|
128 |
+
|
129 |
/**
|
130 |
* Add the meta box on the single order page
|
131 |
*/
|
183 |
* Add actions to menu
|
184 |
*/
|
185 |
public function edit_invoice_number($order) {
|
186 |
+
woocommerce_wp_text_input( array( 'id' => '_wcpdf_invoice_number', 'label' => __( 'PDF Invoice Number (unformatted!)', 'wpo_wcpdf' ) ) );
|
187 |
}
|
188 |
|
189 |
/**
|
languages/wpo_wcpdf-es_ES.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-es_ES.po
CHANGED
@@ -1,87 +1,52 @@
|
|
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: \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.
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
16 |
-
"Language: es_ES\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#:
|
20 |
-
|
21 |
-
|
22 |
-
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
23 |
-
"installed & activated!"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: woocommerce-pdf-invoices-packingslips.php:183
|
27 |
-
#: woocommerce-pdf-invoices-packingslips.php:219
|
28 |
-
msgid "N/A"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: woocommerce-pdf-invoices-packingslips.php:320
|
32 |
-
msgid "Subtotal"
|
33 |
-
msgstr "Subtotal"
|
34 |
-
|
35 |
-
#: woocommerce-pdf-invoices-packingslips.php:338
|
36 |
-
msgid "Shipping"
|
37 |
-
msgstr "Envío"
|
38 |
-
|
39 |
-
#: woocommerce-pdf-invoices-packingslips.php:353
|
40 |
-
msgid "Discount"
|
41 |
-
msgstr "Descuento"
|
42 |
-
|
43 |
-
#: woocommerce-pdf-invoices-packingslips.php:418
|
44 |
-
msgid "Total ex. VAT"
|
45 |
-
msgstr "Total (IVA no incluído)"
|
46 |
-
|
47 |
-
#: woocommerce-pdf-invoices-packingslips.php:421
|
48 |
-
msgid "Total"
|
49 |
-
msgstr "Total"
|
50 |
-
|
51 |
-
#: includes/class-wcpdf-export.php:98 includes/class-wcpdf-export.php:103
|
52 |
-
#: includes/class-wcpdf-export.php:108
|
53 |
msgid "You do not have sufficient permissions to access this page."
|
54 |
-
msgstr ""
|
55 |
|
56 |
-
#: includes/class-wcpdf-export.php:
|
57 |
msgid "invoice"
|
58 |
msgid_plural "invoices"
|
59 |
msgstr[0] "factura"
|
60 |
msgstr[1] "facturas"
|
61 |
|
62 |
-
#: includes/class-wcpdf-export.php:
|
63 |
msgid "packing-slip"
|
64 |
msgid_plural "packing-slips"
|
65 |
-
msgstr[0] "
|
66 |
-
msgstr[1] "
|
67 |
|
68 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
69 |
-
#: includes/class-wcpdf-writepanels.php:
|
70 |
-
#: includes/class-wcpdf-writepanels.php:
|
71 |
msgid "PDF Invoices"
|
72 |
-
msgstr "PDF
|
73 |
|
74 |
#: includes/class-wcpdf-settings.php:60
|
75 |
msgid "Settings"
|
76 |
msgstr "Ajustes"
|
77 |
|
78 |
-
#: includes/class-wcpdf-settings.php:75
|
79 |
-
msgid "..."
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
#: includes/class-wcpdf-settings.php:86
|
83 |
msgid "WooCommerce PDF Invoices"
|
84 |
-
msgstr "WooCommerce PDF
|
85 |
|
86 |
#: includes/class-wcpdf-settings.php:88
|
87 |
msgid "General"
|
@@ -91,204 +56,352 @@ msgstr "General"
|
|
91 |
msgid "Template"
|
92 |
msgstr "Plantilla"
|
93 |
|
94 |
-
#: includes/class-wcpdf-settings.php:
|
95 |
#, php-format
|
96 |
msgid ""
|
97 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
98 |
"Packing Slips templates at %s."
|
99 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
-
#: includes/class-wcpdf-settings.php:
|
102 |
msgid "General settings"
|
103 |
msgstr "Ajustes generales"
|
104 |
|
105 |
-
#: includes/class-wcpdf-settings.php:
|
106 |
msgid "How do you want to view the PDF?"
|
107 |
-
msgstr ""
|
108 |
|
109 |
-
#: includes/class-wcpdf-settings.php:
|
110 |
msgid "Download the PDF"
|
111 |
-
msgstr ""
|
112 |
|
113 |
-
#: includes/class-wcpdf-settings.php:
|
114 |
msgid "Open the PDF in a new browser tab/window"
|
115 |
-
msgstr ""
|
116 |
|
117 |
-
#: includes/class-wcpdf-settings.php:
|
118 |
-
msgid "
|
119 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
|
121 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
125 |
"permissions for this folder! Without having write access to this folder, the "
|
126 |
"plugin will not be able to email invoices."
|
127 |
msgstr ""
|
|
|
|
|
|
|
128 |
|
129 |
-
#: includes/class-wcpdf-settings.php:
|
130 |
msgid "PDF Template settings"
|
131 |
-
msgstr ""
|
132 |
|
133 |
-
#: includes/class-wcpdf-settings.php:
|
134 |
msgid "Choose a template"
|
135 |
-
msgstr ""
|
136 |
|
137 |
-
#: includes/class-wcpdf-settings.php:
|
138 |
msgid ""
|
139 |
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
140 |
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
141 |
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
142 |
msgstr ""
|
|
|
|
|
|
|
143 |
|
144 |
-
#: includes/class-wcpdf-settings.php:
|
145 |
msgid "Paper size"
|
146 |
-
msgstr ""
|
147 |
|
148 |
-
#: includes/class-wcpdf-settings.php:
|
149 |
msgid "A4"
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#: includes/class-wcpdf-settings.php:
|
153 |
msgid "Letter"
|
154 |
-
msgstr ""
|
155 |
|
156 |
-
#: includes/class-wcpdf-settings.php:
|
157 |
msgid "Shop header/logo"
|
158 |
-
msgstr ""
|
159 |
|
160 |
-
#: includes/class-wcpdf-settings.php:
|
161 |
msgid "Select or upload your invoice header/logo"
|
162 |
-
msgstr ""
|
163 |
|
164 |
-
#: includes/class-wcpdf-settings.php:
|
165 |
msgid "Set image"
|
166 |
-
msgstr ""
|
167 |
|
168 |
-
#: includes/class-wcpdf-settings.php:
|
169 |
msgid "Remove image"
|
170 |
-
msgstr ""
|
171 |
|
172 |
-
#: includes/class-wcpdf-settings.php:
|
173 |
msgid "Shop Name"
|
174 |
-
msgstr ""
|
175 |
|
176 |
-
#: includes/class-wcpdf-settings.php:
|
177 |
msgid "Shop Address"
|
178 |
-
msgstr ""
|
179 |
|
180 |
-
#: includes/class-wcpdf-settings.php:
|
181 |
msgid "Footer: terms & conditions, policies, etc."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
msgid "Extra template fields"
|
186 |
-
msgstr ""
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
189 |
msgid "Extra field 1"
|
190 |
-
msgstr ""
|
191 |
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
193 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
194 |
msgstr ""
|
|
|
|
|
195 |
|
196 |
-
#: includes/class-wcpdf-settings.php:
|
197 |
msgid "Extra field 2"
|
198 |
-
msgstr ""
|
199 |
|
200 |
-
#: includes/class-wcpdf-settings.php:
|
201 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
202 |
msgstr ""
|
|
|
|
|
203 |
|
204 |
-
#: includes/class-wcpdf-settings.php:
|
205 |
msgid "Extra field 3"
|
206 |
-
msgstr ""
|
207 |
|
208 |
-
#: includes/class-wcpdf-settings.php:
|
209 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
210 |
msgstr ""
|
|
|
|
|
211 |
|
212 |
-
#: includes/class-wcpdf-settings.php:
|
213 |
msgid "Image resolution"
|
214 |
-
msgstr ""
|
215 |
|
216 |
-
#: includes/class-wcpdf-settings.php:
|
217 |
msgid ""
|
218 |
"These are used for the (optional) footer columns in the <em>Modern "
|
219 |
"(Premium)</em> template, but can also be used for other elements in your "
|
220 |
"custom template"
|
221 |
msgstr ""
|
|
|
|
|
|
|
222 |
|
223 |
-
#: includes/class-wcpdf-writepanels.php:
|
224 |
msgid "Create PDF"
|
225 |
msgstr "Crear PDF"
|
226 |
|
227 |
-
#: includes/class-wcpdf-writepanels.php:
|
228 |
msgid "Download invoice (PDF)"
|
229 |
msgstr "Descargar factura (PDF)"
|
230 |
|
231 |
-
#: includes/class-wcpdf-writepanels.php:
|
232 |
msgid "PDF invoice"
|
233 |
-
msgstr "PDF
|
234 |
|
235 |
-
#: includes/class-wcpdf-writepanels.php:
|
236 |
msgid "PDF Packing Slip"
|
237 |
-
msgstr "
|
238 |
|
239 |
-
#: includes/class-wcpdf-writepanels.php:
|
240 |
-
#: includes/class-wcpdf-writepanels.php:
|
241 |
msgid "PDF Packing Slips"
|
242 |
-
msgstr "
|
|
|
|
|
|
|
|
|
243 |
|
|
|
244 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
245 |
msgid "Invoice"
|
246 |
msgstr "Factura"
|
247 |
|
248 |
-
#: templates/pdf/Simple/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#: templates/pdf/Simple/packing-slip.php:30
|
250 |
msgid "Order Date:"
|
251 |
-
msgstr "Fecha
|
|
|
|
|
|
|
|
|
252 |
|
253 |
-
#: templates/pdf/Simple/invoice.php:
|
254 |
#: templates/pdf/Simple/packing-slip.php:32
|
255 |
msgid "Order Number:"
|
256 |
msgstr "Orden número:"
|
257 |
|
258 |
-
#: templates/pdf/Simple/invoice.php:
|
259 |
msgid "Payment Method:"
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: templates/pdf/Simple/invoice.php:
|
263 |
#: templates/pdf/Simple/packing-slip.php:45
|
264 |
msgid "Product"
|
265 |
msgstr "Producto"
|
266 |
|
267 |
-
#: templates/pdf/Simple/invoice.php:
|
268 |
#: templates/pdf/Simple/packing-slip.php:46
|
269 |
msgid "Quantity"
|
270 |
msgstr "Cantidad"
|
271 |
|
272 |
-
#: templates/pdf/Simple/invoice.php:
|
273 |
msgid "Price"
|
274 |
msgstr "Precio"
|
275 |
|
276 |
-
#: templates/pdf/Simple/invoice.php:
|
277 |
#: templates/pdf/Simple/packing-slip.php:54
|
278 |
msgid "SKU:"
|
279 |
-
msgstr "
|
280 |
|
281 |
-
#: templates/pdf/Simple/invoice.php:
|
282 |
#: templates/pdf/Simple/packing-slip.php:55
|
283 |
msgid "Weight:"
|
284 |
msgstr "Peso:"
|
285 |
|
286 |
-
#: templates/pdf/Simple/invoice.php:
|
287 |
#: templates/pdf/Simple/packing-slip.php:69
|
288 |
msgid "Customer Notes"
|
289 |
-
msgstr "Notas del
|
290 |
|
291 |
-
#:
|
292 |
-
|
293 |
-
msgid "
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-02-17 22:02+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-19 09:11+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"Language: es_ES\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.6.4\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:138 includes/class-wcpdf-export.php:143
|
20 |
+
#: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
|
21 |
+
#: includes/class-wcpdf-export.php:172
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
+
msgstr "No tiene suficientes permitos para acceder a esta página."
|
24 |
|
25 |
+
#: includes/class-wcpdf-export.php:180 includes/class-wcpdf-export.php:262
|
26 |
msgid "invoice"
|
27 |
msgid_plural "invoices"
|
28 |
msgstr[0] "factura"
|
29 |
msgstr[1] "facturas"
|
30 |
|
31 |
+
#: includes/class-wcpdf-export.php:182
|
32 |
msgid "packing-slip"
|
33 |
msgid_plural "packing-slips"
|
34 |
+
msgstr[0] "albarán de entrega"
|
35 |
+
msgstr[1] "albaranes de entrega"
|
36 |
|
37 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
38 |
+
#: includes/class-wcpdf-writepanels.php:131
|
39 |
+
#: includes/class-wcpdf-writepanels.php:132
|
40 |
msgid "PDF Invoices"
|
41 |
+
msgstr "Facturas PDF"
|
42 |
|
43 |
#: includes/class-wcpdf-settings.php:60
|
44 |
msgid "Settings"
|
45 |
msgstr "Ajustes"
|
46 |
|
|
|
|
|
|
|
|
|
47 |
#: includes/class-wcpdf-settings.php:86
|
48 |
msgid "WooCommerce PDF Invoices"
|
49 |
+
msgstr "WooCommerce Facturas PDF"
|
50 |
|
51 |
#: includes/class-wcpdf-settings.php:88
|
52 |
msgid "General"
|
56 |
msgid "Template"
|
57 |
msgstr "Plantilla"
|
58 |
|
59 |
+
#: includes/class-wcpdf-settings.php:98
|
60 |
#, php-format
|
61 |
msgid ""
|
62 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
63 |
"Packing Slips templates at %s."
|
64 |
msgstr ""
|
65 |
+
"¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas premium "
|
66 |
+
"de PDF Invoice & Packing Slips en %s."
|
67 |
+
|
68 |
+
#: includes/class-wcpdf-settings.php:99
|
69 |
+
#, php-format
|
70 |
+
msgid "For custom templates, contact us at %s."
|
71 |
+
msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
|
72 |
|
73 |
+
#: includes/class-wcpdf-settings.php:153
|
74 |
msgid "General settings"
|
75 |
msgstr "Ajustes generales"
|
76 |
|
77 |
+
#: includes/class-wcpdf-settings.php:160
|
78 |
msgid "How do you want to view the PDF?"
|
79 |
+
msgstr "¿Cómo desea visualizar el PDF?"
|
80 |
|
81 |
+
#: includes/class-wcpdf-settings.php:168
|
82 |
msgid "Download the PDF"
|
83 |
+
msgstr "Descargándolo."
|
84 |
|
85 |
+
#: includes/class-wcpdf-settings.php:169
|
86 |
msgid "Open the PDF in a new browser tab/window"
|
87 |
+
msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
|
88 |
|
89 |
+
#: includes/class-wcpdf-settings.php:179
|
90 |
+
msgid "Attach invoice to:"
|
91 |
+
msgstr "Adjuntar factura a:"
|
92 |
+
|
93 |
+
#: includes/class-wcpdf-settings.php:187
|
94 |
+
msgid "Admin New Order email"
|
95 |
+
msgstr "Correo electrónico del administrador al crear un nuevo pedido."
|
96 |
+
|
97 |
+
#: includes/class-wcpdf-settings.php:188
|
98 |
+
msgid "Customer Processing Order email"
|
99 |
+
msgstr "Correo electrónico del cliente al procesar el pedido."
|
100 |
|
101 |
+
#: includes/class-wcpdf-settings.php:189
|
102 |
+
msgid "Customer Completed Order email"
|
103 |
+
msgstr "Correo electrónico del cliente al completar el pedido."
|
104 |
+
|
105 |
+
#: includes/class-wcpdf-settings.php:190
|
106 |
+
msgid "Customer Invoice email"
|
107 |
+
msgstr "Correo electrónico de la factura del cliente."
|
108 |
+
|
109 |
+
#: includes/class-wcpdf-settings.php:192
|
110 |
#, php-format
|
111 |
msgid ""
|
112 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
113 |
"permissions for this folder! Without having write access to this folder, the "
|
114 |
"plugin will not be able to email invoices."
|
115 |
msgstr ""
|
116 |
+
"Parece que la carpeta temporal (<code>% s </ code>) no es modificable, "
|
117 |
+
"¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
|
118 |
+
"carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
|
119 |
|
120 |
+
#: includes/class-wcpdf-settings.php:224
|
121 |
msgid "PDF Template settings"
|
122 |
+
msgstr "Ajustes de la plantilla PDF"
|
123 |
|
124 |
+
#: includes/class-wcpdf-settings.php:231
|
125 |
msgid "Choose a template"
|
126 |
+
msgstr "Elige una plantilla"
|
127 |
|
128 |
+
#: includes/class-wcpdf-settings.php:239
|
129 |
msgid ""
|
130 |
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
131 |
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
132 |
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
133 |
msgstr ""
|
134 |
+
"¿Desea usar su propia plantilla? Copie todo los archivos de "
|
135 |
+
"<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> a "
|
136 |
+
"<code>yourtheme/woocommerce/pdf/yourtemplate/</code> y personalícela."
|
137 |
|
138 |
+
#: includes/class-wcpdf-settings.php:245
|
139 |
msgid "Paper size"
|
140 |
+
msgstr "Tamaño del papel"
|
141 |
|
142 |
+
#: includes/class-wcpdf-settings.php:253
|
143 |
msgid "A4"
|
144 |
+
msgstr "A4"
|
145 |
|
146 |
+
#: includes/class-wcpdf-settings.php:254
|
147 |
msgid "Letter"
|
148 |
+
msgstr "Carta"
|
149 |
|
150 |
+
#: includes/class-wcpdf-settings.php:261
|
151 |
msgid "Shop header/logo"
|
152 |
+
msgstr "Logotipo de la tienda"
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:268
|
155 |
msgid "Select or upload your invoice header/logo"
|
156 |
+
msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:269
|
159 |
msgid "Set image"
|
160 |
+
msgstr "Añadir imagen"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:270
|
163 |
msgid "Remove image"
|
164 |
+
msgstr "Eliminar la imagen"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:277
|
167 |
msgid "Shop Name"
|
168 |
+
msgstr "Nombre de la tienda"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:290
|
171 |
msgid "Shop Address"
|
172 |
+
msgstr "Dirección de la tienda"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:322
|
175 |
msgid "Footer: terms & conditions, policies, etc."
|
176 |
+
msgstr "Pie de página: Términos y condiciones, políticas, etc."
|
177 |
+
|
178 |
+
#: includes/class-wcpdf-settings.php:337
|
179 |
+
msgid "Number to display on invoice"
|
180 |
+
msgstr "Número a mostrar en la factura"
|
181 |
+
|
182 |
+
#: includes/class-wcpdf-settings.php:345
|
183 |
+
msgid "WooCommerce order number"
|
184 |
+
msgstr "Número de pedido de WooCommerce "
|
185 |
+
|
186 |
+
#: includes/class-wcpdf-settings.php:346
|
187 |
+
msgid "Built-in sequential invoice number"
|
188 |
+
msgstr "Crear numeración secuencial de factura"
|
189 |
+
|
190 |
+
#: includes/class-wcpdf-settings.php:348
|
191 |
+
msgid ""
|
192 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
193 |
+
"WooCommerce order number"
|
194 |
msgstr ""
|
195 |
+
"Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
|
196 |
+
"seleccione el número de pedido de WooCommerce."
|
197 |
+
|
198 |
+
#: includes/class-wcpdf-settings.php:354
|
199 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
200 |
+
msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:362
|
203 |
+
msgid ""
|
204 |
+
"This is the number that will be used on the next invoice that is created. By "
|
205 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
206 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
207 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
208 |
+
"this could create double invoice numbers!<br/>Check the <a href=\"http://"
|
209 |
+
"wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
|
210 |
+
"\"_blank\">FAQ</a> for instructions on how to format the invoice number."
|
211 |
+
msgstr ""
|
212 |
+
"Este número se utilizará al crear la siguiente factura. Por defecto, la "
|
213 |
+
"numeración comienza desde la WooCommerce Order Number de la primera factura "
|
214 |
+
"y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
|
215 |
+
"ajusta a uno inferior podría crear facturas con números duplicados. <br/"
|
216 |
+
">Compruebe el <a href=\"http://wordpress.org/plugins/woocommerce-pdf-"
|
217 |
+
"invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> para obtener "
|
218 |
+
"instrucciones sobre cómo formatear el número de la factura."
|
219 |
+
|
220 |
+
#: includes/class-wcpdf-settings.php:369
|
221 |
+
msgid "Date to display on invoice"
|
222 |
+
msgstr "Fecha a mostrar en la factura"
|
223 |
+
|
224 |
+
#: includes/class-wcpdf-settings.php:377
|
225 |
+
msgid "Order date"
|
226 |
+
msgstr "Fecha del pedido"
|
227 |
+
|
228 |
+
#: includes/class-wcpdf-settings.php:378
|
229 |
+
msgid "Invoice date"
|
230 |
+
msgstr "Fecha de la factura"
|
231 |
+
|
232 |
+
#: includes/class-wcpdf-settings.php:386
|
233 |
msgid "Extra template fields"
|
234 |
+
msgstr "Campos extra de la plantilla"
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:393
|
237 |
msgid "Extra field 1"
|
238 |
+
msgstr "Campo extra 1"
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:402
|
241 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
242 |
msgstr ""
|
243 |
+
"Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
|
244 |
+
"i>."
|
245 |
|
246 |
+
#: includes/class-wcpdf-settings.php:408
|
247 |
msgid "Extra field 2"
|
248 |
+
msgstr "Campo extra 2"
|
249 |
|
250 |
+
#: includes/class-wcpdf-settings.php:417
|
251 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
252 |
msgstr ""
|
253 |
+
"Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
|
254 |
+
"i>."
|
255 |
|
256 |
+
#: includes/class-wcpdf-settings.php:423
|
257 |
msgid "Extra field 3"
|
258 |
+
msgstr "Campo extra 3"
|
259 |
|
260 |
+
#: includes/class-wcpdf-settings.php:432
|
261 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
262 |
msgstr ""
|
263 |
+
"Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
|
264 |
+
"i>."
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:689
|
267 |
msgid "Image resolution"
|
268 |
+
msgstr "Resolución de la imagen"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:719
|
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 |
+
"Estos son usados para las columnas del pie de página (opcional) en la "
|
277 |
+
"plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
|
278 |
+
"plantilla personalizada:"
|
279 |
|
280 |
+
#: includes/class-wcpdf-writepanels.php:92
|
281 |
msgid "Create PDF"
|
282 |
msgstr "Crear PDF"
|
283 |
|
284 |
+
#: includes/class-wcpdf-writepanels.php:101
|
285 |
msgid "Download invoice (PDF)"
|
286 |
msgstr "Descargar factura (PDF)"
|
287 |
|
288 |
+
#: includes/class-wcpdf-writepanels.php:115
|
289 |
msgid "PDF invoice"
|
290 |
+
msgstr "Factura PDF "
|
291 |
|
292 |
+
#: includes/class-wcpdf-writepanels.php:116
|
293 |
msgid "PDF Packing Slip"
|
294 |
+
msgstr "Albarán de entrega PDF"
|
295 |
|
296 |
+
#: includes/class-wcpdf-writepanels.php:133
|
297 |
+
#: includes/class-wcpdf-writepanels.php:134
|
298 |
msgid "PDF Packing Slips"
|
299 |
+
msgstr "Albaranes de entrega PDF"
|
300 |
+
|
301 |
+
#: includes/class-wcpdf-writepanels.php:145
|
302 |
+
msgid "PDF Invoice Number"
|
303 |
+
msgstr "Nº de la factura PDF"
|
304 |
|
305 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
306 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
307 |
msgid "Invoice"
|
308 |
msgstr "Factura"
|
309 |
|
310 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
311 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
312 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
313 |
+
msgid "Packing Slip"
|
314 |
+
msgstr "Albarán de entrega"
|
315 |
+
|
316 |
+
#: templates/pdf/Simple/invoice.php:37
|
317 |
+
msgid "Invoice Date:"
|
318 |
+
msgstr "Fecha de la factura:"
|
319 |
+
|
320 |
+
#: templates/pdf/Simple/invoice.php:40
|
321 |
#: templates/pdf/Simple/packing-slip.php:30
|
322 |
msgid "Order Date:"
|
323 |
+
msgstr "Fecha del pedido:"
|
324 |
+
|
325 |
+
#: templates/pdf/Simple/invoice.php:46
|
326 |
+
msgid "Invoice Number:"
|
327 |
+
msgstr "Nº de la factura:"
|
328 |
|
329 |
+
#: templates/pdf/Simple/invoice.php:49
|
330 |
#: templates/pdf/Simple/packing-slip.php:32
|
331 |
msgid "Order Number:"
|
332 |
msgstr "Orden número:"
|
333 |
|
334 |
+
#: templates/pdf/Simple/invoice.php:56
|
335 |
msgid "Payment Method:"
|
336 |
+
msgstr "Forma de pago:"
|
337 |
|
338 |
+
#: templates/pdf/Simple/invoice.php:69
|
339 |
#: templates/pdf/Simple/packing-slip.php:45
|
340 |
msgid "Product"
|
341 |
msgstr "Producto"
|
342 |
|
343 |
+
#: templates/pdf/Simple/invoice.php:70
|
344 |
#: templates/pdf/Simple/packing-slip.php:46
|
345 |
msgid "Quantity"
|
346 |
msgstr "Cantidad"
|
347 |
|
348 |
+
#: templates/pdf/Simple/invoice.php:71
|
349 |
msgid "Price"
|
350 |
msgstr "Precio"
|
351 |
|
352 |
+
#: templates/pdf/Simple/invoice.php:79
|
353 |
#: templates/pdf/Simple/packing-slip.php:54
|
354 |
msgid "SKU:"
|
355 |
+
msgstr "Nº Referencia:"
|
356 |
|
357 |
+
#: templates/pdf/Simple/invoice.php:80
|
358 |
#: templates/pdf/Simple/packing-slip.php:55
|
359 |
msgid "Weight:"
|
360 |
msgstr "Peso:"
|
361 |
|
362 |
+
#: templates/pdf/Simple/invoice.php:113
|
363 |
#: templates/pdf/Simple/packing-slip.php:69
|
364 |
msgid "Customer Notes"
|
365 |
+
msgstr "Notas del cliente"
|
366 |
|
367 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
368 |
+
#, php-format
|
369 |
+
msgid ""
|
370 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
371 |
+
"installed & activated!"
|
372 |
+
msgstr ""
|
373 |
+
"¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
|
374 |
+
"instalado y activado!"
|
375 |
+
|
376 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
377 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
378 |
+
msgid "N/A"
|
379 |
+
msgstr "No disponible"
|
380 |
+
|
381 |
+
#: woocommerce-pdf-invoices-packingslips.php:359
|
382 |
+
msgid "Subtotal"
|
383 |
+
msgstr "Subtotal"
|
384 |
+
|
385 |
+
#: woocommerce-pdf-invoices-packingslips.php:381
|
386 |
+
msgid "Shipping"
|
387 |
+
msgstr "Envío"
|
388 |
+
|
389 |
+
#: woocommerce-pdf-invoices-packingslips.php:400
|
390 |
+
msgid "Discount"
|
391 |
+
msgstr "Descuento"
|
392 |
+
|
393 |
+
#: woocommerce-pdf-invoices-packingslips.php:469
|
394 |
+
msgid "Total ex. VAT"
|
395 |
+
msgstr "Total (Sin IVA)"
|
396 |
+
|
397 |
+
#: woocommerce-pdf-invoices-packingslips.php:472
|
398 |
+
msgid "Total"
|
399 |
+
msgstr "Total"
|
400 |
+
|
401 |
+
#~ msgid "..."
|
402 |
+
#~ msgstr "..."
|
403 |
+
|
404 |
+
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
405 |
+
#~ msgstr ""
|
406 |
+
#~ "Factura por correo electrónico (adjuntar confirmación del pedido o "
|
407 |
+
#~ "factura)"
|
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-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -16,63 +16,30 @@ msgstr ""
|
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Generator: Poedit 1.6.
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#:
|
23 |
-
|
24 |
-
|
25 |
-
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
26 |
-
"installed & activated!"
|
27 |
-
msgstr ""
|
28 |
-
"WooCommerce PDF Invoices & Packing Slips vereist dat %sWooCommerce%s is "
|
29 |
-
"geïnstalleerd & geactiveerd!"
|
30 |
-
|
31 |
-
#: woocommerce-pdf-invoices-packingslips.php:183
|
32 |
-
#: woocommerce-pdf-invoices-packingslips.php:219
|
33 |
-
msgid "N/A"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: woocommerce-pdf-invoices-packingslips.php:320
|
37 |
-
msgid "Subtotal"
|
38 |
-
msgstr "Subtotaal"
|
39 |
-
|
40 |
-
#: woocommerce-pdf-invoices-packingslips.php:338
|
41 |
-
msgid "Shipping"
|
42 |
-
msgstr "Verzendkosten"
|
43 |
-
|
44 |
-
#: woocommerce-pdf-invoices-packingslips.php:353
|
45 |
-
msgid "Discount"
|
46 |
-
msgstr "Korting"
|
47 |
-
|
48 |
-
#: woocommerce-pdf-invoices-packingslips.php:418
|
49 |
-
msgid "Total ex. VAT"
|
50 |
-
msgstr "Totaal excl. BTW"
|
51 |
-
|
52 |
-
#: woocommerce-pdf-invoices-packingslips.php:421
|
53 |
-
msgid "Total"
|
54 |
-
msgstr "Totaal"
|
55 |
-
|
56 |
-
#: includes/class-wcpdf-export.php:98 includes/class-wcpdf-export.php:103
|
57 |
-
#: includes/class-wcpdf-export.php:108
|
58 |
msgid "You do not have sufficient permissions to access this page."
|
59 |
-
msgstr ""
|
60 |
|
61 |
-
#: includes/class-wcpdf-export.php:
|
62 |
msgid "invoice"
|
63 |
msgid_plural "invoices"
|
64 |
msgstr[0] "factuur"
|
65 |
msgstr[1] "facturen"
|
66 |
|
67 |
-
#: includes/class-wcpdf-export.php:
|
68 |
msgid "packing-slip"
|
69 |
msgid_plural "packing-slips"
|
70 |
msgstr[0] "pakbon"
|
71 |
msgstr[1] "pakbonnen"
|
72 |
|
73 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
74 |
-
#: includes/class-wcpdf-writepanels.php:
|
75 |
-
#: includes/class-wcpdf-writepanels.php:
|
76 |
msgid "PDF Invoices"
|
77 |
msgstr "PDF facturen"
|
78 |
|
@@ -80,10 +47,6 @@ msgstr "PDF facturen"
|
|
80 |
msgid "Settings"
|
81 |
msgstr "Instellingen"
|
82 |
|
83 |
-
#: includes/class-wcpdf-settings.php:75
|
84 |
-
msgid "..."
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
#: includes/class-wcpdf-settings.php:86
|
88 |
msgid "WooCommerce PDF Invoices"
|
89 |
msgstr "WooCommerce PDF Facturen"
|
@@ -94,9 +57,20 @@ msgstr "Algemeen"
|
|
94 |
|
95 |
#: includes/class-wcpdf-settings.php:89
|
96 |
msgid "Template"
|
97 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
|
99 |
-
#: includes/class-wcpdf-settings.php:
|
100 |
#, php-format
|
101 |
msgid ""
|
102 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
@@ -105,27 +79,48 @@ msgstr ""
|
|
105 |
"Op zoek naar geavanceerdere sjablonen? Bekijk de Premium PDF Invoice & "
|
106 |
"Packing Slips sjablonen op %s."
|
107 |
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "General settings"
|
110 |
msgstr "Algemene instellingen"
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "How do you want to view the PDF?"
|
114 |
msgstr "Hoe wil je de PDF bekijken?"
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Download the PDF"
|
118 |
msgstr "Download de PDF"
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Open the PDF in a new browser tab/window"
|
122 |
msgstr "Open de PDF in een nieuwe browser tab/venster"
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
125 |
-
msgid "
|
126 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#, php-format
|
130 |
msgid ""
|
131 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -137,178 +132,293 @@ msgstr ""
|
|
137 |
"geen facturen emailen."
|
138 |
|
139 |
#: includes/class-wcpdf-settings.php:206
|
|
|
|
|
|
|
|
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "PDF Template instellingen"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
-
msgstr "Kies een
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
148 |
msgid ""
|
149 |
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
150 |
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
151 |
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
152 |
msgstr ""
|
153 |
-
"Wil je je eigen
|
154 |
"<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> "
|
155 |
"naar <code>jouwtheme/woocommerce/pdf/jouwtemplate/</code> en pas ze aan naar "
|
156 |
"je wensen."
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Paper size"
|
160 |
msgstr "Papier formaat"
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "A4"
|
164 |
msgstr "A4"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Letter"
|
168 |
msgstr "Letter (US)"
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Shop header/logo"
|
172 |
msgstr "Shop header/logo"
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
msgstr "Selecteer of upload je factuur header/logo"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Set image"
|
180 |
msgstr "Stel afbeelding in"
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Remove image"
|
184 |
msgstr "Verwijder afbeelding"
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Name"
|
188 |
msgstr "Shop Naam"
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Shop Address"
|
192 |
msgstr "Shop Adres"
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Footer: terms & conditions, policies, etc."
|
196 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
msgid "Extra template fields"
|
200 |
-
msgstr "Extra
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "Extra field 1"
|
204 |
msgstr "Extra veld 1"
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
208 |
-
msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i>
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid "Extra field 2"
|
212 |
msgstr "Extra veld 2"
|
213 |
|
214 |
-
#: includes/class-wcpdf-settings.php:
|
215 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
216 |
-
msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i>
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid "Extra field 3"
|
220 |
msgstr "Extra veld 3"
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
224 |
-
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i>
|
225 |
|
226 |
-
#: includes/class-wcpdf-settings.php:
|
227 |
msgid "Image resolution"
|
228 |
msgstr "Afbeeldings resolutie"
|
229 |
|
230 |
-
#: includes/class-wcpdf-settings.php:
|
231 |
msgid ""
|
232 |
"These are used for the (optional) footer columns in the <em>Modern "
|
233 |
"(Premium)</em> template, but can also be used for other elements in your "
|
234 |
"custom template"
|
235 |
msgstr ""
|
236 |
"Deze velden worden gebruikt voor de (optionele) voettekst kolommen in het "
|
237 |
-
"<em>Modern (Premium)</em>
|
238 |
"andere elementen in je eigen custom sjabloon."
|
239 |
|
240 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
241 |
msgid "Create PDF"
|
242 |
msgstr "Maak PDF"
|
243 |
|
244 |
-
#: includes/class-wcpdf-writepanels.php:
|
245 |
msgid "Download invoice (PDF)"
|
246 |
msgstr "Download factuur (PDF)"
|
247 |
|
248 |
-
#: includes/class-wcpdf-writepanels.php:
|
249 |
msgid "PDF invoice"
|
250 |
msgstr "PDF factuur"
|
251 |
|
252 |
-
#: includes/class-wcpdf-writepanels.php:
|
253 |
msgid "PDF Packing Slip"
|
254 |
msgstr "PDF Pakbon"
|
255 |
|
256 |
-
#: includes/class-wcpdf-writepanels.php:
|
257 |
-
#: includes/class-wcpdf-writepanels.php:
|
258 |
msgid "PDF Packing Slips"
|
259 |
msgstr "PDF Pakbonnen"
|
260 |
|
|
|
|
|
|
|
|
|
|
|
261 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
262 |
msgid "Invoice"
|
263 |
msgstr "Factuur"
|
264 |
|
265 |
-
#: templates/pdf/Simple/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
#: templates/pdf/Simple/packing-slip.php:30
|
267 |
msgid "Order Date:"
|
268 |
msgstr "Orderdatum:"
|
269 |
|
270 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
271 |
#: templates/pdf/Simple/packing-slip.php:32
|
272 |
msgid "Order Number:"
|
273 |
msgstr "Ordernummer:"
|
274 |
|
275 |
-
#: templates/pdf/Simple/invoice.php:
|
276 |
msgid "Payment Method:"
|
277 |
msgstr "Betaalmethode:"
|
278 |
|
279 |
-
#: templates/pdf/Simple/invoice.php:
|
280 |
#: templates/pdf/Simple/packing-slip.php:45
|
281 |
msgid "Product"
|
282 |
msgstr "Product"
|
283 |
|
284 |
-
#: templates/pdf/Simple/invoice.php:
|
285 |
#: templates/pdf/Simple/packing-slip.php:46
|
286 |
msgid "Quantity"
|
287 |
msgstr "Hoeveelheid"
|
288 |
|
289 |
-
#: templates/pdf/Simple/invoice.php:
|
290 |
msgid "Price"
|
291 |
msgstr "Prijs"
|
292 |
|
293 |
-
#: templates/pdf/Simple/invoice.php:
|
294 |
#: templates/pdf/Simple/packing-slip.php:54
|
295 |
msgid "SKU:"
|
296 |
msgstr "SKU:"
|
297 |
|
298 |
-
#: templates/pdf/Simple/invoice.php:
|
299 |
#: templates/pdf/Simple/packing-slip.php:55
|
300 |
msgid "Weight:"
|
301 |
msgstr "Gewicht:"
|
302 |
|
303 |
-
#: templates/pdf/Simple/invoice.php:
|
304 |
#: templates/pdf/Simple/packing-slip.php:69
|
305 |
msgid "Customer Notes"
|
306 |
msgstr "Opmerking klant:"
|
307 |
|
308 |
-
#:
|
309 |
-
|
310 |
-
msgid "
|
311 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
|
313 |
#~ msgid "SKU"
|
314 |
#~ msgstr "Artikelnummer"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-02-19 15:35+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-02-19 15:40+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"
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Generator: Poedit 1.6.4\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: includes/class-wcpdf-export.php:138 includes/class-wcpdf-export.php:143
|
23 |
+
#: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
|
24 |
+
#: includes/class-wcpdf-export.php:172
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:180 includes/class-wcpdf-export.php:262
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "factuur"
|
32 |
msgstr[1] "facturen"
|
33 |
|
34 |
+
#: includes/class-wcpdf-export.php:182
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "pakbon"
|
38 |
msgstr[1] "pakbonnen"
|
39 |
|
40 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
41 |
+
#: includes/class-wcpdf-writepanels.php:172
|
42 |
+
#: includes/class-wcpdf-writepanels.php:173
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr "PDF facturen"
|
45 |
|
47 |
msgid "Settings"
|
48 |
msgstr "Instellingen"
|
49 |
|
|
|
|
|
|
|
|
|
50 |
#: includes/class-wcpdf-settings.php:86
|
51 |
msgid "WooCommerce PDF Invoices"
|
52 |
msgstr "WooCommerce PDF Facturen"
|
57 |
|
58 |
#: includes/class-wcpdf-settings.php:89
|
59 |
msgid "Template"
|
60 |
+
msgstr "Template"
|
61 |
+
|
62 |
+
#: includes/class-wcpdf-settings.php:96
|
63 |
+
#, php-format
|
64 |
+
msgid ""
|
65 |
+
"Your WP Memory Limit is currently set to %s - We recommend setting it to at "
|
66 |
+
"least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
|
67 |
+
"memory allocated to PHP</a>"
|
68 |
+
msgstr ""
|
69 |
+
"Uw WordPress geheugenlimiet is momenteel ingesteld op %s - We adviseren om "
|
70 |
+
"deze in te stellen op tenminste 64MB (128MB voor de beste performance). Zie: "
|
71 |
+
"<a href=\"%s\">Increasing memory allocated to PHP</a>"
|
72 |
|
73 |
+
#: includes/class-wcpdf-settings.php:106
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
79 |
"Op zoek naar geavanceerdere sjablonen? Bekijk de Premium PDF Invoice & "
|
80 |
"Packing Slips sjablonen op %s."
|
81 |
|
82 |
+
#: includes/class-wcpdf-settings.php:107
|
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:161
|
88 |
msgid "General settings"
|
89 |
msgstr "Algemene instellingen"
|
90 |
|
91 |
+
#: includes/class-wcpdf-settings.php:168
|
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:176
|
96 |
msgid "Download the PDF"
|
97 |
msgstr "Download de PDF"
|
98 |
|
99 |
+
#: includes/class-wcpdf-settings.php:177
|
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:187
|
104 |
+
msgid "Attach invoice to:"
|
105 |
+
msgstr "Factuur als bijlage toevoegen aan:"
|
106 |
+
|
107 |
+
#: includes/class-wcpdf-settings.php:195
|
108 |
+
msgid "Admin New Order email"
|
109 |
+
msgstr "Nieuwe bestelling admin email"
|
110 |
+
|
111 |
+
#: includes/class-wcpdf-settings.php:196
|
112 |
+
msgid "Customer Processing Order email"
|
113 |
+
msgstr "Bestelling in verwerking klant email"
|
114 |
|
115 |
+
#: includes/class-wcpdf-settings.php:197
|
116 |
+
msgid "Customer Completed Order email"
|
117 |
+
msgstr "Bestelling voltooid klant email"
|
118 |
+
|
119 |
+
#: includes/class-wcpdf-settings.php:198
|
120 |
+
msgid "Customer Invoice email"
|
121 |
+
msgstr "Klant factuur email"
|
122 |
+
|
123 |
+
#: includes/class-wcpdf-settings.php:200
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
132 |
"geen facturen emailen."
|
133 |
|
134 |
#: includes/class-wcpdf-settings.php:206
|
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:245
|
139 |
msgid "PDF Template settings"
|
140 |
msgstr "PDF Template instellingen"
|
141 |
|
142 |
+
#: includes/class-wcpdf-settings.php:252
|
143 |
msgid "Choose a template"
|
144 |
+
msgstr "Kies een template"
|
145 |
|
146 |
+
#: includes/class-wcpdf-settings.php:260
|
147 |
msgid ""
|
148 |
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
149 |
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
150 |
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
151 |
msgstr ""
|
152 |
+
"Wil je je eigen template gebruiken? Kopieer alle bestanden van "
|
153 |
"<code>woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/</code> "
|
154 |
"naar <code>jouwtheme/woocommerce/pdf/jouwtemplate/</code> en pas ze aan naar "
|
155 |
"je wensen."
|
156 |
|
157 |
+
#: includes/class-wcpdf-settings.php:266
|
158 |
msgid "Paper size"
|
159 |
msgstr "Papier formaat"
|
160 |
|
161 |
+
#: includes/class-wcpdf-settings.php:274
|
162 |
msgid "A4"
|
163 |
msgstr "A4"
|
164 |
|
165 |
+
#: includes/class-wcpdf-settings.php:275
|
166 |
msgid "Letter"
|
167 |
msgstr "Letter (US)"
|
168 |
|
169 |
+
#: includes/class-wcpdf-settings.php:282
|
170 |
msgid "Shop header/logo"
|
171 |
msgstr "Shop header/logo"
|
172 |
|
173 |
+
#: includes/class-wcpdf-settings.php:289
|
174 |
msgid "Select or upload your invoice header/logo"
|
175 |
msgstr "Selecteer of upload je factuur header/logo"
|
176 |
|
177 |
+
#: includes/class-wcpdf-settings.php:290
|
178 |
msgid "Set image"
|
179 |
msgstr "Stel afbeelding in"
|
180 |
|
181 |
+
#: includes/class-wcpdf-settings.php:291
|
182 |
msgid "Remove image"
|
183 |
msgstr "Verwijder afbeelding"
|
184 |
|
185 |
+
#: includes/class-wcpdf-settings.php:298
|
186 |
msgid "Shop Name"
|
187 |
msgstr "Shop Naam"
|
188 |
|
189 |
+
#: includes/class-wcpdf-settings.php:311
|
190 |
msgid "Shop Address"
|
191 |
msgstr "Shop Adres"
|
192 |
|
193 |
+
#: includes/class-wcpdf-settings.php:343
|
194 |
msgid "Footer: terms & conditions, policies, etc."
|
195 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
196 |
|
197 |
+
#: includes/class-wcpdf-settings.php:358
|
198 |
+
msgid "Number to display on invoice"
|
199 |
+
msgstr "Nummer op de factuur"
|
200 |
+
|
201 |
+
#: includes/class-wcpdf-settings.php:366
|
202 |
+
msgid "WooCommerce order number"
|
203 |
+
msgstr "WooCommerce ordernummer"
|
204 |
+
|
205 |
+
#: includes/class-wcpdf-settings.php:367
|
206 |
+
msgid "Built-in sequential invoice number"
|
207 |
+
msgstr "Ingebouwde sequentiële factuurnummers"
|
208 |
+
|
209 |
+
#: includes/class-wcpdf-settings.php:369
|
210 |
+
msgid ""
|
211 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
212 |
+
"WooCommerce order number"
|
213 |
+
msgstr ""
|
214 |
+
"Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
215 |
+
"dan WooCommerce ordernummer"
|
216 |
+
|
217 |
+
#: includes/class-wcpdf-settings.php:375
|
218 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
219 |
+
msgstr "Volgende factuurnummer (zonder voorvoegsel/achtervoegsel etc.)"
|
220 |
+
|
221 |
+
#: includes/class-wcpdf-settings.php:383
|
222 |
+
msgid ""
|
223 |
+
"This is the number that will be used on the next invoice that is created. By "
|
224 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
225 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
226 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
227 |
+
"this could create double invoice numbers!<br/>Check the <a href=\"http://"
|
228 |
+
"wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
|
229 |
+
"\"_blank\">FAQ</a> for instructions on how to format the invoice number."
|
230 |
+
msgstr ""
|
231 |
+
"Dit is het nummer dat gebruikt zal worden op de eerstvolgende factuur. "
|
232 |
+
"Standaard begint het nummeren vanaf het WooCommerce ordernummer van de "
|
233 |
+
"eerste factuur die wordt aangemaakt, en wordt opgehoogd voor iedere nieuwe "
|
234 |
+
"factuur. Let op, als je dit nummer aanpast en op een lager nummer dan het "
|
235 |
+
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
236 |
+
"gevolg hebben!. <br/>Bekijk de <a href=\"http://wordpress.org/plugins/"
|
237 |
+
"woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank\">FAQ</a> voor "
|
238 |
+
"instructies om de weergave van het factuurnummer aan te passen."
|
239 |
+
|
240 |
+
#: includes/class-wcpdf-settings.php:390
|
241 |
+
msgid "Date to display on invoice"
|
242 |
+
msgstr "Datum op de factuur"
|
243 |
+
|
244 |
+
#: includes/class-wcpdf-settings.php:398
|
245 |
+
msgid "Order date"
|
246 |
+
msgstr "Orderdatum"
|
247 |
+
|
248 |
+
#: includes/class-wcpdf-settings.php:399
|
249 |
+
msgid "Invoice date"
|
250 |
+
msgstr "Factuurdatum"
|
251 |
+
|
252 |
+
#: includes/class-wcpdf-settings.php:407
|
253 |
msgid "Extra template fields"
|
254 |
+
msgstr "Extra templatevelden"
|
255 |
|
256 |
+
#: includes/class-wcpdf-settings.php:414
|
257 |
msgid "Extra field 1"
|
258 |
msgstr "Extra veld 1"
|
259 |
|
260 |
+
#: includes/class-wcpdf-settings.php:423
|
261 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
262 |
+
msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
|
263 |
|
264 |
+
#: includes/class-wcpdf-settings.php:429
|
265 |
msgid "Extra field 2"
|
266 |
msgstr "Extra veld 2"
|
267 |
|
268 |
+
#: includes/class-wcpdf-settings.php:438
|
269 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
270 |
+
msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
|
271 |
|
272 |
+
#: includes/class-wcpdf-settings.php:444
|
273 |
msgid "Extra field 3"
|
274 |
msgstr "Extra veld 3"
|
275 |
|
276 |
+
#: includes/class-wcpdf-settings.php:453
|
277 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
278 |
+
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
|
279 |
|
280 |
+
#: includes/class-wcpdf-settings.php:710
|
281 |
msgid "Image resolution"
|
282 |
msgstr "Afbeeldings resolutie"
|
283 |
|
284 |
+
#: includes/class-wcpdf-settings.php:740
|
285 |
msgid ""
|
286 |
"These are used for the (optional) footer columns in the <em>Modern "
|
287 |
"(Premium)</em> template, but can also be used for other elements in your "
|
288 |
"custom template"
|
289 |
msgstr ""
|
290 |
"Deze velden worden gebruikt voor de (optionele) voettekst kolommen in het "
|
291 |
+
"<em>Modern (Premium)</em> template, maar kunnen ook gebruikt worden voor "
|
292 |
"andere elementen in je eigen custom sjabloon."
|
293 |
|
294 |
+
#: includes/class-wcpdf-writepanels.php:102
|
295 |
+
msgid "Invoice Number"
|
296 |
+
msgstr "Factuurnummer"
|
297 |
+
|
298 |
+
#: includes/class-wcpdf-writepanels.php:133
|
299 |
msgid "Create PDF"
|
300 |
msgstr "Maak PDF"
|
301 |
|
302 |
+
#: includes/class-wcpdf-writepanels.php:142
|
303 |
msgid "Download invoice (PDF)"
|
304 |
msgstr "Download factuur (PDF)"
|
305 |
|
306 |
+
#: includes/class-wcpdf-writepanels.php:156
|
307 |
msgid "PDF invoice"
|
308 |
msgstr "PDF factuur"
|
309 |
|
310 |
+
#: includes/class-wcpdf-writepanels.php:157
|
311 |
msgid "PDF Packing Slip"
|
312 |
msgstr "PDF Pakbon"
|
313 |
|
314 |
+
#: includes/class-wcpdf-writepanels.php:174
|
315 |
+
#: includes/class-wcpdf-writepanels.php:175
|
316 |
msgid "PDF Packing Slips"
|
317 |
msgstr "PDF Pakbonnen"
|
318 |
|
319 |
+
#: includes/class-wcpdf-writepanels.php:186
|
320 |
+
msgid "PDF Invoice Number"
|
321 |
+
msgstr "PDF Factuurnummer"
|
322 |
+
|
323 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
324 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
325 |
msgid "Invoice"
|
326 |
msgstr "Factuur"
|
327 |
|
328 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
329 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
330 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
331 |
+
msgid "Packing Slip"
|
332 |
+
msgstr "Pakbon"
|
333 |
+
|
334 |
+
#: templates/pdf/Simple/invoice.php:37
|
335 |
+
msgid "Invoice Date:"
|
336 |
+
msgstr "Factuurdatum:"
|
337 |
+
|
338 |
+
#: templates/pdf/Simple/invoice.php:40
|
339 |
#: templates/pdf/Simple/packing-slip.php:30
|
340 |
msgid "Order Date:"
|
341 |
msgstr "Orderdatum:"
|
342 |
|
343 |
+
#: templates/pdf/Simple/invoice.php:46
|
344 |
+
msgid "Invoice Number:"
|
345 |
+
msgstr "Factuurnummer:"
|
346 |
+
|
347 |
+
#: templates/pdf/Simple/invoice.php:49
|
348 |
#: templates/pdf/Simple/packing-slip.php:32
|
349 |
msgid "Order Number:"
|
350 |
msgstr "Ordernummer:"
|
351 |
|
352 |
+
#: templates/pdf/Simple/invoice.php:56
|
353 |
msgid "Payment Method:"
|
354 |
msgstr "Betaalmethode:"
|
355 |
|
356 |
+
#: templates/pdf/Simple/invoice.php:69
|
357 |
#: templates/pdf/Simple/packing-slip.php:45
|
358 |
msgid "Product"
|
359 |
msgstr "Product"
|
360 |
|
361 |
+
#: templates/pdf/Simple/invoice.php:70
|
362 |
#: templates/pdf/Simple/packing-slip.php:46
|
363 |
msgid "Quantity"
|
364 |
msgstr "Hoeveelheid"
|
365 |
|
366 |
+
#: templates/pdf/Simple/invoice.php:71
|
367 |
msgid "Price"
|
368 |
msgstr "Prijs"
|
369 |
|
370 |
+
#: templates/pdf/Simple/invoice.php:79
|
371 |
#: templates/pdf/Simple/packing-slip.php:54
|
372 |
msgid "SKU:"
|
373 |
msgstr "SKU:"
|
374 |
|
375 |
+
#: templates/pdf/Simple/invoice.php:80
|
376 |
#: templates/pdf/Simple/packing-slip.php:55
|
377 |
msgid "Weight:"
|
378 |
msgstr "Gewicht:"
|
379 |
|
380 |
+
#: templates/pdf/Simple/invoice.php:113
|
381 |
#: templates/pdf/Simple/packing-slip.php:69
|
382 |
msgid "Customer Notes"
|
383 |
msgstr "Opmerking klant:"
|
384 |
|
385 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
386 |
+
#, php-format
|
387 |
+
msgid ""
|
388 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
389 |
+
"installed & activated!"
|
390 |
+
msgstr ""
|
391 |
+
"WooCommerce PDF Invoices & Packing Slips vereist dat %sWooCommerce%s is "
|
392 |
+
"geïnstalleerd & geactiveerd!"
|
393 |
+
|
394 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
395 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
396 |
+
msgid "N/A"
|
397 |
+
msgstr "N/A"
|
398 |
+
|
399 |
+
#: woocommerce-pdf-invoices-packingslips.php:359
|
400 |
+
msgid "Subtotal"
|
401 |
+
msgstr "Subtotaal"
|
402 |
+
|
403 |
+
#: woocommerce-pdf-invoices-packingslips.php:381
|
404 |
+
msgid "Shipping"
|
405 |
+
msgstr "Verzendkosten"
|
406 |
+
|
407 |
+
#: woocommerce-pdf-invoices-packingslips.php:400
|
408 |
+
msgid "Discount"
|
409 |
+
msgstr "Korting"
|
410 |
+
|
411 |
+
#: woocommerce-pdf-invoices-packingslips.php:469
|
412 |
+
msgid "Total ex. VAT"
|
413 |
+
msgstr "Totaal excl. BTW"
|
414 |
+
|
415 |
+
#: woocommerce-pdf-invoices-packingslips.php:472
|
416 |
+
msgid "Total"
|
417 |
+
msgstr "Totaal"
|
418 |
+
|
419 |
+
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
420 |
+
#~ msgstr ""
|
421 |
+
#~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
|
422 |
|
423 |
#~ msgid "SKU"
|
424 |
#~ msgstr "Artikelnummer"
|
languages/wpo_wcpdf-ru_RU.mo
ADDED
Binary file
|
languages/wpo_wcpdf-ru_RU.po
ADDED
@@ -0,0 +1,403 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-02-17 22:02+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-19 02:07+0200\n"
|
6 |
+
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
7 |
+
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"Language: de_DE\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\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:138 includes/class-wcpdf-export.php:143
|
20 |
+
#: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
|
21 |
+
#: includes/class-wcpdf-export.php:172
|
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:180 includes/class-wcpdf-export.php:262
|
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:182
|
34 |
+
msgid "packing-slip"
|
35 |
+
msgid_plural "packing-slips"
|
36 |
+
msgstr[0] "Счет-Фактура"
|
37 |
+
msgstr[1] "Счета-Фактуры"
|
38 |
+
|
39 |
+
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:131
|
41 |
+
#: includes/class-wcpdf-writepanels.php:132
|
42 |
+
msgid "PDF Invoices"
|
43 |
+
msgstr "PDF Накладные"
|
44 |
+
|
45 |
+
#: includes/class-wcpdf-settings.php:60
|
46 |
+
msgid "Settings"
|
47 |
+
msgstr "Настройки"
|
48 |
+
|
49 |
+
#: includes/class-wcpdf-settings.php:86
|
50 |
+
msgid "WooCommerce PDF Invoices"
|
51 |
+
msgstr "WooCommerce PDF Накладные"
|
52 |
+
|
53 |
+
#: includes/class-wcpdf-settings.php:88
|
54 |
+
msgid "General"
|
55 |
+
msgstr "Основное"
|
56 |
+
|
57 |
+
#: includes/class-wcpdf-settings.php:89
|
58 |
+
msgid "Template"
|
59 |
+
msgstr "Шаблон"
|
60 |
+
|
61 |
+
#: includes/class-wcpdf-settings.php:98
|
62 |
+
#, php-format
|
63 |
+
msgid ""
|
64 |
+
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
65 |
+
"Packing Slips templates at %s."
|
66 |
+
msgstr ""
|
67 |
+
"Ищите дополнительные шаблоны? Посмотрите премиум шаблоны от PDF Накладные и "
|
68 |
+
"Счет-Фактуры на %s."
|
69 |
+
|
70 |
+
#: includes/class-wcpdf-settings.php:99
|
71 |
+
#, php-format
|
72 |
+
msgid "For custom templates, contact us at %s."
|
73 |
+
msgstr "По поводу индивидуальных шаблонов, свяжитесь с нами %s."
|
74 |
+
|
75 |
+
#: includes/class-wcpdf-settings.php:153
|
76 |
+
msgid "General settings"
|
77 |
+
msgstr "Основные настройки"
|
78 |
+
|
79 |
+
#: includes/class-wcpdf-settings.php:160
|
80 |
+
msgid "How do you want to view the PDF?"
|
81 |
+
msgstr "Как вы хотите просмотреть PDF?"
|
82 |
+
|
83 |
+
#: includes/class-wcpdf-settings.php:168
|
84 |
+
msgid "Download the PDF"
|
85 |
+
msgstr "Скачать PDF"
|
86 |
+
|
87 |
+
#: includes/class-wcpdf-settings.php:169
|
88 |
+
msgid "Open the PDF in a new browser tab/window"
|
89 |
+
msgstr "Открыть PDF в новой вкладке/окне браузера"
|
90 |
+
|
91 |
+
#: includes/class-wcpdf-settings.php:179
|
92 |
+
msgid "Attach invoice to:"
|
93 |
+
msgstr "Прикрепить накладную к:"
|
94 |
+
|
95 |
+
#: includes/class-wcpdf-settings.php:187
|
96 |
+
msgid "Admin New Order email"
|
97 |
+
msgstr "Email-у нового заказа админа"
|
98 |
+
|
99 |
+
#: includes/class-wcpdf-settings.php:188
|
100 |
+
msgid "Customer Processing Order email"
|
101 |
+
msgstr "Email-у заказа клиента в обработке"
|
102 |
+
|
103 |
+
#: includes/class-wcpdf-settings.php:189
|
104 |
+
msgid "Customer Completed Order email"
|
105 |
+
msgstr "Email-у завершенного заказа клиента"
|
106 |
+
|
107 |
+
#: includes/class-wcpdf-settings.php:190
|
108 |
+
msgid "Customer Invoice email"
|
109 |
+
msgstr "Email-у накладной клиента"
|
110 |
+
|
111 |
+
#: includes/class-wcpdf-settings.php:192
|
112 |
+
#, php-format
|
113 |
+
msgid ""
|
114 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
115 |
+
"permissions for this folder! Without having write access to this folder, the "
|
116 |
+
"plugin will not be able to email invoices."
|
117 |
+
msgstr ""
|
118 |
+
"Похоже временная папка (<code>%s</code>) запрещена для записи, проверьте "
|
119 |
+
"доступ к папке. Без доступа записи к данной папки, плагин не сможет отсылать "
|
120 |
+
"накладные по Email."
|
121 |
+
|
122 |
+
#: includes/class-wcpdf-settings.php:224
|
123 |
+
msgid "PDF Template settings"
|
124 |
+
msgstr "PDF Настройки шаблона"
|
125 |
+
|
126 |
+
#: includes/class-wcpdf-settings.php:231
|
127 |
+
msgid "Choose a template"
|
128 |
+
msgstr "Выберите шаблон"
|
129 |
+
|
130 |
+
#: includes/class-wcpdf-settings.php:239
|
131 |
+
msgid ""
|
132 |
+
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
133 |
+
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
134 |
+
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
135 |
+
msgstr ""
|
136 |
+
"Хотите свой собственный шаблон? Скопируйте файлы с папки <code>woocommerce-"
|
137 |
+
"pdf-invoices-packing-slips/templates/pdf/Simple/</code> в <code>ваша_тема/"
|
138 |
+
"woocommerce/pdf/название_шаблона/</code> и настройте по своему усмотрению."
|
139 |
+
|
140 |
+
#: includes/class-wcpdf-settings.php:245
|
141 |
+
msgid "Paper size"
|
142 |
+
msgstr "Размер бумаги"
|
143 |
+
|
144 |
+
#: includes/class-wcpdf-settings.php:253
|
145 |
+
msgid "A4"
|
146 |
+
msgstr "A4"
|
147 |
+
|
148 |
+
#: includes/class-wcpdf-settings.php:254
|
149 |
+
msgid "Letter"
|
150 |
+
msgstr "Письмо"
|
151 |
+
|
152 |
+
#: includes/class-wcpdf-settings.php:261
|
153 |
+
msgid "Shop header/logo"
|
154 |
+
msgstr "Логотип в шапке документа"
|
155 |
+
|
156 |
+
#: includes/class-wcpdf-settings.php:268
|
157 |
+
msgid "Select or upload your invoice header/logo"
|
158 |
+
msgstr "Выберите чтобы загрузить шапку/логотип для накладной"
|
159 |
+
|
160 |
+
#: includes/class-wcpdf-settings.php:269
|
161 |
+
msgid "Set image"
|
162 |
+
msgstr "Установить изображение"
|
163 |
+
|
164 |
+
#: includes/class-wcpdf-settings.php:270
|
165 |
+
msgid "Remove image"
|
166 |
+
msgstr "Удалить изображение"
|
167 |
+
|
168 |
+
#: includes/class-wcpdf-settings.php:277
|
169 |
+
msgid "Shop Name"
|
170 |
+
msgstr "Название магазина"
|
171 |
+
|
172 |
+
#: includes/class-wcpdf-settings.php:290
|
173 |
+
msgid "Shop Address"
|
174 |
+
msgstr "Адрес магазина"
|
175 |
+
|
176 |
+
#: includes/class-wcpdf-settings.php:322
|
177 |
+
msgid "Footer: terms & conditions, policies, etc."
|
178 |
+
msgstr "Подвал: термины, условия, политика и тд."
|
179 |
+
|
180 |
+
#: includes/class-wcpdf-settings.php:337
|
181 |
+
msgid "Number to display on invoice"
|
182 |
+
msgstr "Номер для отображения в накладной"
|
183 |
+
|
184 |
+
#: includes/class-wcpdf-settings.php:345
|
185 |
+
msgid "WooCommerce order number"
|
186 |
+
msgstr "WooCommerce номер заказа"
|
187 |
+
|
188 |
+
#: includes/class-wcpdf-settings.php:346
|
189 |
+
msgid "Built-in sequential invoice number"
|
190 |
+
msgstr "Встроенный секвенсор номеров накладной"
|
191 |
+
|
192 |
+
#: includes/class-wcpdf-settings.php:348
|
193 |
+
msgid ""
|
194 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
195 |
+
"WooCommerce order number"
|
196 |
+
msgstr ""
|
197 |
+
"Если вы используете WooCommerce Sequential Order Numbers плагин, выберите "
|
198 |
+
"WooCommerce номер заказа"
|
199 |
+
|
200 |
+
#: includes/class-wcpdf-settings.php:354
|
201 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
202 |
+
msgstr "Следующий номер накладной (без префикса/суффикса и тд.)"
|
203 |
+
|
204 |
+
#: includes/class-wcpdf-settings.php:362
|
205 |
+
msgid ""
|
206 |
+
"This is the number that will be used on the next invoice that is created. By "
|
207 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
208 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
209 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
210 |
+
"this could create double invoice numbers!<br/>Check the <a href=\"http://"
|
211 |
+
"wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
|
212 |
+
"\"_blank\">FAQ</a> for instructions on how to format the invoice number."
|
213 |
+
msgstr ""
|
214 |
+
"Это номер, который будет использоваться для следующей созданной накладной. "
|
215 |
+
"По умолчанию, нумерация начинается с первой созданной накладной основываясь "
|
216 |
+
"на WooCommerce номере заказа, дальше число увеличивается с каждой новой "
|
217 |
+
"накладной. Заметьте, если вы перезаписываете это поле и устанавливаете "
|
218 |
+
"значение ниже чем самый большой номер (PDF) накладной, это может привести к "
|
219 |
+
"созданию дублированной накладной!<br/>Смотрите <a href=\"http://wordpress."
|
220 |
+
"org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target=\"_blank"
|
221 |
+
"\">FAQ</a>, чтобы узнать как форматировать номер накладной."
|
222 |
+
|
223 |
+
#: includes/class-wcpdf-settings.php:369
|
224 |
+
msgid "Date to display on invoice"
|
225 |
+
msgstr "Дата для отображения в накладной"
|
226 |
+
|
227 |
+
#: includes/class-wcpdf-settings.php:377
|
228 |
+
msgid "Order date"
|
229 |
+
msgstr "Дата заказа"
|
230 |
+
|
231 |
+
#: includes/class-wcpdf-settings.php:378
|
232 |
+
msgid "Invoice date"
|
233 |
+
msgstr "Дата накладной"
|
234 |
+
|
235 |
+
#: includes/class-wcpdf-settings.php:386
|
236 |
+
msgid "Extra template fields"
|
237 |
+
msgstr "Дополнительные поля шаблона"
|
238 |
+
|
239 |
+
#: includes/class-wcpdf-settings.php:393
|
240 |
+
msgid "Extra field 1"
|
241 |
+
msgstr "Дополнительное поле 1"
|
242 |
+
|
243 |
+
#: includes/class-wcpdf-settings.php:402
|
244 |
+
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
245 |
+
msgstr "Это колонка 1 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
246 |
+
|
247 |
+
#: includes/class-wcpdf-settings.php:408
|
248 |
+
msgid "Extra field 2"
|
249 |
+
msgstr "Дополнительное поле 2"
|
250 |
+
|
251 |
+
#: includes/class-wcpdf-settings.php:417
|
252 |
+
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
253 |
+
msgstr "Это колонка 2 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
254 |
+
|
255 |
+
#: includes/class-wcpdf-settings.php:423
|
256 |
+
msgid "Extra field 3"
|
257 |
+
msgstr "Дополнительное поле 3"
|
258 |
+
|
259 |
+
#: includes/class-wcpdf-settings.php:432
|
260 |
+
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
261 |
+
msgstr "Это колонка 3 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
262 |
+
|
263 |
+
#: includes/class-wcpdf-settings.php:689
|
264 |
+
msgid "Image resolution"
|
265 |
+
msgstr "Разрешение изображения"
|
266 |
+
|
267 |
+
#: includes/class-wcpdf-settings.php:719
|
268 |
+
msgid ""
|
269 |
+
"These are used for the (optional) footer columns in the <em>Modern "
|
270 |
+
"(Premium)</em> template, but can also be used for other elements in your "
|
271 |
+
"custom template"
|
272 |
+
msgstr ""
|
273 |
+
"Этот блок используется (опционально) в колонках подвала документа для "
|
274 |
+
"<em>Modern (Premium)</em> шаблонов, но вы также можете использовать этот "
|
275 |
+
"блок для вывода в индивидуальном шаблоне."
|
276 |
+
|
277 |
+
#: includes/class-wcpdf-writepanels.php:92
|
278 |
+
msgid "Create PDF"
|
279 |
+
msgstr "Создать PDF"
|
280 |
+
|
281 |
+
#: includes/class-wcpdf-writepanels.php:101
|
282 |
+
msgid "Download invoice (PDF)"
|
283 |
+
msgstr "Скачать накладную (PDF)"
|
284 |
+
|
285 |
+
#: includes/class-wcpdf-writepanels.php:115
|
286 |
+
msgid "PDF invoice"
|
287 |
+
msgstr "PDF Накладная"
|
288 |
+
|
289 |
+
#: includes/class-wcpdf-writepanels.php:116
|
290 |
+
msgid "PDF Packing Slip"
|
291 |
+
msgstr "PDF Счет-Фактура"
|
292 |
+
|
293 |
+
#: includes/class-wcpdf-writepanels.php:133
|
294 |
+
#: includes/class-wcpdf-writepanels.php:134
|
295 |
+
msgid "PDF Packing Slips"
|
296 |
+
msgstr "PDF Счета-Фактуры"
|
297 |
+
|
298 |
+
#: includes/class-wcpdf-writepanels.php:145
|
299 |
+
msgid "PDF Invoice Number"
|
300 |
+
msgstr "PDF Номер накладной"
|
301 |
+
|
302 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
303 |
+
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
304 |
+
msgid "Invoice"
|
305 |
+
msgstr "Накладная"
|
306 |
+
|
307 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
308 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
309 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
310 |
+
msgid "Packing Slip"
|
311 |
+
msgstr "Счет-Фактура"
|
312 |
+
|
313 |
+
#: templates/pdf/Simple/invoice.php:37
|
314 |
+
msgid "Invoice Date:"
|
315 |
+
msgstr "Дата накладной"
|
316 |
+
|
317 |
+
#: templates/pdf/Simple/invoice.php:40
|
318 |
+
#: templates/pdf/Simple/packing-slip.php:30
|
319 |
+
msgid "Order Date:"
|
320 |
+
msgstr "Дата заказа:"
|
321 |
+
|
322 |
+
#: templates/pdf/Simple/invoice.php:46
|
323 |
+
msgid "Invoice Number:"
|
324 |
+
msgstr "Номер накладной:"
|
325 |
+
|
326 |
+
#: templates/pdf/Simple/invoice.php:49
|
327 |
+
#: templates/pdf/Simple/packing-slip.php:32
|
328 |
+
msgid "Order Number:"
|
329 |
+
msgstr "Номер заказа:"
|
330 |
+
|
331 |
+
#: templates/pdf/Simple/invoice.php:56
|
332 |
+
msgid "Payment Method:"
|
333 |
+
msgstr "Метод оплаты:"
|
334 |
+
|
335 |
+
#: templates/pdf/Simple/invoice.php:69
|
336 |
+
#: templates/pdf/Simple/packing-slip.php:45
|
337 |
+
msgid "Product"
|
338 |
+
msgstr "Товар"
|
339 |
+
|
340 |
+
#: templates/pdf/Simple/invoice.php:70
|
341 |
+
#: templates/pdf/Simple/packing-slip.php:46
|
342 |
+
msgid "Quantity"
|
343 |
+
msgstr "Количество"
|
344 |
+
|
345 |
+
#: templates/pdf/Simple/invoice.php:71
|
346 |
+
msgid "Price"
|
347 |
+
msgstr "Цена"
|
348 |
+
|
349 |
+
#: templates/pdf/Simple/invoice.php:79
|
350 |
+
#: templates/pdf/Simple/packing-slip.php:54
|
351 |
+
msgid "SKU:"
|
352 |
+
msgstr "ИТП:"
|
353 |
+
|
354 |
+
#: templates/pdf/Simple/invoice.php:80
|
355 |
+
#: templates/pdf/Simple/packing-slip.php:55
|
356 |
+
msgid "Weight:"
|
357 |
+
msgstr "Вес:"
|
358 |
+
|
359 |
+
#: templates/pdf/Simple/invoice.php:113
|
360 |
+
#: templates/pdf/Simple/packing-slip.php:69
|
361 |
+
msgid "Customer Notes"
|
362 |
+
msgstr "Примечания клиента"
|
363 |
+
|
364 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
365 |
+
#, php-format
|
366 |
+
msgid ""
|
367 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
368 |
+
"installed & activated!"
|
369 |
+
msgstr ""
|
370 |
+
"Чтобы установить и активировать WooCommerce PDF Накладные и Счет-Фактуры "
|
371 |
+
"нужно наличие плагина %sWooCommerce%s!"
|
372 |
+
|
373 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
374 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
375 |
+
msgid "N/A"
|
376 |
+
msgstr "N/A"
|
377 |
+
|
378 |
+
#: woocommerce-pdf-invoices-packingslips.php:359
|
379 |
+
msgid "Subtotal"
|
380 |
+
msgstr "Промежуточный итог"
|
381 |
+
|
382 |
+
#: woocommerce-pdf-invoices-packingslips.php:381
|
383 |
+
msgid "Shipping"
|
384 |
+
msgstr "Доставка"
|
385 |
+
|
386 |
+
#: woocommerce-pdf-invoices-packingslips.php:400
|
387 |
+
msgid "Discount"
|
388 |
+
msgstr "Скидка"
|
389 |
+
|
390 |
+
#: woocommerce-pdf-invoices-packingslips.php:469
|
391 |
+
msgid "Total ex. VAT"
|
392 |
+
msgstr "Всего отл. НДС"
|
393 |
+
|
394 |
+
#: woocommerce-pdf-invoices-packingslips.php:472
|
395 |
+
msgid "Total"
|
396 |
+
msgstr "Итого"
|
397 |
+
|
398 |
+
#~ msgid "..."
|
399 |
+
#~ msgstr "..."
|
400 |
+
|
401 |
+
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
402 |
+
#~ msgstr ""
|
403 |
+
#~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
|
languages/wpo_wcpdf-uk.mo
ADDED
Binary file
|
languages/wpo_wcpdf-uk.po
ADDED
@@ -0,0 +1,403 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-02-17 22:02+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-19 02:04+0200\n"
|
6 |
+
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
7 |
+
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"Language: de_DE\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\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:138 includes/class-wcpdf-export.php:143
|
20 |
+
#: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
|
21 |
+
#: includes/class-wcpdf-export.php:172
|
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:180 includes/class-wcpdf-export.php:262
|
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:182
|
34 |
+
msgid "packing-slip"
|
35 |
+
msgid_plural "packing-slips"
|
36 |
+
msgstr[0] "Рахунок-Фактура"
|
37 |
+
msgstr[1] "Рахунки-Фактури"
|
38 |
+
|
39 |
+
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:131
|
41 |
+
#: includes/class-wcpdf-writepanels.php:132
|
42 |
+
msgid "PDF Invoices"
|
43 |
+
msgstr "PDF Накладні"
|
44 |
+
|
45 |
+
#: includes/class-wcpdf-settings.php:60
|
46 |
+
msgid "Settings"
|
47 |
+
msgstr "Налаштування"
|
48 |
+
|
49 |
+
#: includes/class-wcpdf-settings.php:86
|
50 |
+
msgid "WooCommerce PDF Invoices"
|
51 |
+
msgstr "WooCommerce PDF Накладні"
|
52 |
+
|
53 |
+
#: includes/class-wcpdf-settings.php:88
|
54 |
+
msgid "General"
|
55 |
+
msgstr "Основне"
|
56 |
+
|
57 |
+
#: includes/class-wcpdf-settings.php:89
|
58 |
+
msgid "Template"
|
59 |
+
msgstr "Шаблон"
|
60 |
+
|
61 |
+
#: includes/class-wcpdf-settings.php:98
|
62 |
+
#, php-format
|
63 |
+
msgid ""
|
64 |
+
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
65 |
+
"Packing Slips templates at %s."
|
66 |
+
msgstr ""
|
67 |
+
"Шукайте додаткові шаблони? Подивіться преміум шаблони від PDF Накладні і "
|
68 |
+
"Рахунки-Фактур на %s."
|
69 |
+
|
70 |
+
#: includes/class-wcpdf-settings.php:99
|
71 |
+
#, php-format
|
72 |
+
msgid "For custom templates, contact us at %s."
|
73 |
+
msgstr "З приводу індивідуальних шаблонів, зв'яжіться з нами %s."
|
74 |
+
|
75 |
+
#: includes/class-wcpdf-settings.php:153
|
76 |
+
msgid "General settings"
|
77 |
+
msgstr "Основні налаштування"
|
78 |
+
|
79 |
+
#: includes/class-wcpdf-settings.php:160
|
80 |
+
msgid "How do you want to view the PDF?"
|
81 |
+
msgstr "Як ви хочете переглянути PDF?"
|
82 |
+
|
83 |
+
#: includes/class-wcpdf-settings.php:168
|
84 |
+
msgid "Download the PDF"
|
85 |
+
msgstr "Завантажити PDF"
|
86 |
+
|
87 |
+
#: includes/class-wcpdf-settings.php:169
|
88 |
+
msgid "Open the PDF in a new browser tab/window"
|
89 |
+
msgstr "Відкрити PDF в новій вкладці/вікні браузера"
|
90 |
+
|
91 |
+
#: includes/class-wcpdf-settings.php:179
|
92 |
+
msgid "Attach invoice to:"
|
93 |
+
msgstr "Прикріпити накладну до:"
|
94 |
+
|
95 |
+
#: includes/class-wcpdf-settings.php:187
|
96 |
+
msgid "Admin New Order email"
|
97 |
+
msgstr "Email-у нового замовлення адміна"
|
98 |
+
|
99 |
+
#: includes/class-wcpdf-settings.php:188
|
100 |
+
msgid "Customer Processing Order email"
|
101 |
+
msgstr "Email-у замовлення клієнта в обробці"
|
102 |
+
|
103 |
+
#: includes/class-wcpdf-settings.php:189
|
104 |
+
msgid "Customer Completed Order email"
|
105 |
+
msgstr "Email-у завершеного замовлення клієнта"
|
106 |
+
|
107 |
+
#: includes/class-wcpdf-settings.php:190
|
108 |
+
msgid "Customer Invoice email"
|
109 |
+
msgstr "Email-у накладній клієнта"
|
110 |
+
|
111 |
+
#: includes/class-wcpdf-settings.php:192
|
112 |
+
#, php-format
|
113 |
+
msgid ""
|
114 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
115 |
+
"permissions for this folder! Without having write access to this folder, the "
|
116 |
+
"plugin will not be able to email invoices."
|
117 |
+
msgstr ""
|
118 |
+
"Схоже тимчасова папка (<code>%s</code>) заборонена для запису, перевірте "
|
119 |
+
"доступ до папки. Без доступу запису до даної папки, плагін не зможе "
|
120 |
+
"відсилати накладні по Email."
|
121 |
+
|
122 |
+
#: includes/class-wcpdf-settings.php:224
|
123 |
+
msgid "PDF Template settings"
|
124 |
+
msgstr "PDF Налаштування шаблону"
|
125 |
+
|
126 |
+
#: includes/class-wcpdf-settings.php:231
|
127 |
+
msgid "Choose a template"
|
128 |
+
msgstr "Виберіть шаблон"
|
129 |
+
|
130 |
+
#: includes/class-wcpdf-settings.php:239
|
131 |
+
msgid ""
|
132 |
+
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
133 |
+
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
134 |
+
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
135 |
+
msgstr ""
|
136 |
+
"Хочете свій власний шаблон? Скопіюйте файли з папки <code>woocommerce-pdf-"
|
137 |
+
"invoices-packing-slips/templates/pdf/Simple /</code> в <code>ваша_тема/"
|
138 |
+
"woocommerce/pdf/назва_шаблону/</code> і налаштуйте на свій розсуд."
|
139 |
+
|
140 |
+
#: includes/class-wcpdf-settings.php:245
|
141 |
+
msgid "Paper size"
|
142 |
+
msgstr "Розмір паперу"
|
143 |
+
|
144 |
+
#: includes/class-wcpdf-settings.php:253
|
145 |
+
msgid "A4"
|
146 |
+
msgstr "А4"
|
147 |
+
|
148 |
+
#: includes/class-wcpdf-settings.php:254
|
149 |
+
msgid "Letter"
|
150 |
+
msgstr "Лист"
|
151 |
+
|
152 |
+
#: includes/class-wcpdf-settings.php:261
|
153 |
+
msgid "Shop header/logo"
|
154 |
+
msgstr "Логотип в шапці документа"
|
155 |
+
|
156 |
+
#: includes/class-wcpdf-settings.php:268
|
157 |
+
msgid "Select or upload your invoice header/logo"
|
158 |
+
msgstr "Виберіть, щоб завантажити шапку/логотип для накладної"
|
159 |
+
|
160 |
+
#: includes/class-wcpdf-settings.php:269
|
161 |
+
msgid "Set image"
|
162 |
+
msgstr "Встановити зображення"
|
163 |
+
|
164 |
+
#: includes/class-wcpdf-settings.php:270
|
165 |
+
msgid "Remove image"
|
166 |
+
msgstr "Видалити зображення"
|
167 |
+
|
168 |
+
#: includes/class-wcpdf-settings.php:277
|
169 |
+
msgid "Shop Name"
|
170 |
+
msgstr "Назва магазину"
|
171 |
+
|
172 |
+
#: includes/class-wcpdf-settings.php:290
|
173 |
+
msgid "Shop Address"
|
174 |
+
msgstr "Адреса магазину"
|
175 |
+
|
176 |
+
#: includes/class-wcpdf-settings.php:322
|
177 |
+
msgid "Footer: terms & conditions, policies, etc."
|
178 |
+
msgstr "Підвал: терміни, умови, політика і тд."
|
179 |
+
|
180 |
+
#: includes/class-wcpdf-settings.php:337
|
181 |
+
msgid "Number to display on invoice"
|
182 |
+
msgstr "Номер для відображення в накладній"
|
183 |
+
|
184 |
+
#: includes/class-wcpdf-settings.php:345
|
185 |
+
msgid "WooCommerce order number"
|
186 |
+
msgstr "WooCommerce номер замовлення"
|
187 |
+
|
188 |
+
#: includes/class-wcpdf-settings.php:346
|
189 |
+
msgid "Built-in sequential invoice number"
|
190 |
+
msgstr "Вбудований секвенсор номерів накладної"
|
191 |
+
|
192 |
+
#: includes/class-wcpdf-settings.php:348
|
193 |
+
msgid ""
|
194 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
195 |
+
"WooCommerce order number"
|
196 |
+
msgstr ""
|
197 |
+
"Якщо ви використовуєте WooCommerce Sequential Order Numbers плагін, виберіть "
|
198 |
+
"WooCommerce номер замовлення"
|
199 |
+
|
200 |
+
#: includes/class-wcpdf-settings.php:354
|
201 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
202 |
+
msgstr "Наступний номер накладної (без префікса/суфікса і тд.)"
|
203 |
+
|
204 |
+
#: includes/class-wcpdf-settings.php:362
|
205 |
+
msgid ""
|
206 |
+
"This is the number that will be used on the next invoice that is created. By "
|
207 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
208 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
209 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
210 |
+
"this could create double invoice numbers!<br/>Check the <a href=\"http://"
|
211 |
+
"wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
|
212 |
+
"\"_blank\">FAQ</a> for instructions on how to format the invoice number."
|
213 |
+
msgstr ""
|
214 |
+
"Це номер, який буде використовуватися для наступної створеної накладної. За "
|
215 |
+
"замовчуванням, нумерація починається з першої створеної накладної "
|
216 |
+
"грунтуючись на WooCommerce номері замовлення, далі число збільшується з "
|
217 |
+
"кожною новою накладною. Зауважте, якщо ви перезаписуєте це поле і "
|
218 |
+
"встановлюєте значення нижче ніж найбільший номер (PDF) накладної, це може "
|
219 |
+
"привести до створення дубльованої накладної! <br/> Дивіться <a href=\"http://"
|
220 |
+
"wordpress.org/plugins/woocommerce -pdf-invoices-packing-slips/faq /\"target ="
|
221 |
+
"\"_blank\">FAQ</a>, щоб дізнатися як форматувати номер накладної."
|
222 |
+
|
223 |
+
#: includes/class-wcpdf-settings.php:369
|
224 |
+
msgid "Date to display on invoice"
|
225 |
+
msgstr "Дата для відображення в накладній"
|
226 |
+
|
227 |
+
#: includes/class-wcpdf-settings.php:377
|
228 |
+
msgid "Order date"
|
229 |
+
msgstr "Дата замовлення"
|
230 |
+
|
231 |
+
#: includes/class-wcpdf-settings.php:378
|
232 |
+
msgid "Invoice date"
|
233 |
+
msgstr "Дата накладної"
|
234 |
+
|
235 |
+
#: includes/class-wcpdf-settings.php:386
|
236 |
+
msgid "Extra template fields"
|
237 |
+
msgstr "Додаткові поля шаблону"
|
238 |
+
|
239 |
+
#: includes/class-wcpdf-settings.php:393
|
240 |
+
msgid "Extra field 1"
|
241 |
+
msgstr "Додаткове поле 1"
|
242 |
+
|
243 |
+
#: includes/class-wcpdf-settings.php:402
|
244 |
+
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
245 |
+
msgstr "Це колонка 1 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
246 |
+
|
247 |
+
#: includes/class-wcpdf-settings.php:408
|
248 |
+
msgid "Extra field 2"
|
249 |
+
msgstr "Додаткове поле 2"
|
250 |
+
|
251 |
+
#: includes/class-wcpdf-settings.php:417
|
252 |
+
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
253 |
+
msgstr "Це колонка 2 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
254 |
+
|
255 |
+
#: includes/class-wcpdf-settings.php:423
|
256 |
+
msgid "Extra field 3"
|
257 |
+
msgstr "Додаткове поле 3"
|
258 |
+
|
259 |
+
#: includes/class-wcpdf-settings.php:432
|
260 |
+
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
261 |
+
msgstr "Це колонка 3 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
262 |
+
|
263 |
+
#: includes/class-wcpdf-settings.php:689
|
264 |
+
msgid "Image resolution"
|
265 |
+
msgstr "Дозвіл зображення"
|
266 |
+
|
267 |
+
#: includes/class-wcpdf-settings.php:719
|
268 |
+
msgid ""
|
269 |
+
"These are used for the (optional) footer columns in the <em>Modern "
|
270 |
+
"(Premium)</em> template, but can also be used for other elements in your "
|
271 |
+
"custom template"
|
272 |
+
msgstr ""
|
273 |
+
"Цей блок використовується (опціонально) в колонках підвалу документа для "
|
274 |
+
"<em>Modern (Premium)</em> шаблонів, але ви також можете використовувати цей "
|
275 |
+
"блок для виведення в індивідуальному шаблоні."
|
276 |
+
|
277 |
+
#: includes/class-wcpdf-writepanels.php:92
|
278 |
+
msgid "Create PDF"
|
279 |
+
msgstr "Створити PDF"
|
280 |
+
|
281 |
+
#: includes/class-wcpdf-writepanels.php:101
|
282 |
+
msgid "Download invoice (PDF)"
|
283 |
+
msgstr "Завантажити накладну (PDF)"
|
284 |
+
|
285 |
+
#: includes/class-wcpdf-writepanels.php:115
|
286 |
+
msgid "PDF invoice"
|
287 |
+
msgstr "PDF Накладна"
|
288 |
+
|
289 |
+
#: includes/class-wcpdf-writepanels.php:116
|
290 |
+
msgid "PDF Packing Slip"
|
291 |
+
msgstr "PDF Рахунок-Фактура"
|
292 |
+
|
293 |
+
#: includes/class-wcpdf-writepanels.php:133
|
294 |
+
#: includes/class-wcpdf-writepanels.php:134
|
295 |
+
msgid "PDF Packing Slips"
|
296 |
+
msgstr "PDF Рахунки-Фактур"
|
297 |
+
|
298 |
+
#: includes/class-wcpdf-writepanels.php:145
|
299 |
+
msgid "PDF Invoice Number"
|
300 |
+
msgstr "PDF Номер накладної"
|
301 |
+
|
302 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
303 |
+
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
304 |
+
msgid "Invoice"
|
305 |
+
msgstr "Накладна"
|
306 |
+
|
307 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
308 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
309 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
310 |
+
msgid "Packing Slip"
|
311 |
+
msgstr "Рахунок-Фактура"
|
312 |
+
|
313 |
+
#: templates/pdf/Simple/invoice.php:37
|
314 |
+
msgid "Invoice Date:"
|
315 |
+
msgstr "Дата накладної"
|
316 |
+
|
317 |
+
#: templates/pdf/Simple/invoice.php:40
|
318 |
+
#: templates/pdf/Simple/packing-slip.php:30
|
319 |
+
msgid "Order Date:"
|
320 |
+
msgstr "Дата замовлення:"
|
321 |
+
|
322 |
+
#: templates/pdf/Simple/invoice.php:46
|
323 |
+
msgid "Invoice Number:"
|
324 |
+
msgstr "Номер накладної:"
|
325 |
+
|
326 |
+
#: templates/pdf/Simple/invoice.php:49
|
327 |
+
#: templates/pdf/Simple/packing-slip.php:32
|
328 |
+
msgid "Order Number:"
|
329 |
+
msgstr "Номер замовлення:"
|
330 |
+
|
331 |
+
#: templates/pdf/Simple/invoice.php:56
|
332 |
+
msgid "Payment Method:"
|
333 |
+
msgstr "Метод оплати:"
|
334 |
+
|
335 |
+
#: templates/pdf/Simple/invoice.php:69
|
336 |
+
#: templates/pdf/Simple/packing-slip.php:45
|
337 |
+
msgid "Product"
|
338 |
+
msgstr "Товар"
|
339 |
+
|
340 |
+
#: templates/pdf/Simple/invoice.php:70
|
341 |
+
#: templates/pdf/Simple/packing-slip.php:46
|
342 |
+
msgid "Quantity"
|
343 |
+
msgstr "Кількість"
|
344 |
+
|
345 |
+
#: templates/pdf/Simple/invoice.php:71
|
346 |
+
msgid "Price"
|
347 |
+
msgstr "Ціна"
|
348 |
+
|
349 |
+
#: templates/pdf/Simple/invoice.php:79
|
350 |
+
#: templates/pdf/Simple/packing-slip.php:54
|
351 |
+
msgid "SKU:"
|
352 |
+
msgstr "ІТП:"
|
353 |
+
|
354 |
+
#: templates/pdf/Simple/invoice.php:80
|
355 |
+
#: templates/pdf/Simple/packing-slip.php:55
|
356 |
+
msgid "Weight:"
|
357 |
+
msgstr "Вага:"
|
358 |
+
|
359 |
+
#: templates/pdf/Simple/invoice.php:113
|
360 |
+
#: templates/pdf/Simple/packing-slip.php:69
|
361 |
+
msgid "Customer Notes"
|
362 |
+
msgstr "Примітки клієнта"
|
363 |
+
|
364 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
365 |
+
#, php-format
|
366 |
+
msgid ""
|
367 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
368 |
+
"installed & activated!"
|
369 |
+
msgstr ""
|
370 |
+
"Щоб встановити і активувати WooCommerce PDF Накладні і Рахунки-Фактур, "
|
371 |
+
"потрібна наявність плагіна %sWooCommerce%s!"
|
372 |
+
|
373 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
374 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
375 |
+
msgid "N/A"
|
376 |
+
msgstr "N/A"
|
377 |
+
|
378 |
+
#: woocommerce-pdf-invoices-packingslips.php:359
|
379 |
+
msgid "Subtotal"
|
380 |
+
msgstr "Проміжний підсумок"
|
381 |
+
|
382 |
+
#: woocommerce-pdf-invoices-packingslips.php:381
|
383 |
+
msgid "Shipping"
|
384 |
+
msgstr "Доставка"
|
385 |
+
|
386 |
+
#: woocommerce-pdf-invoices-packingslips.php:400
|
387 |
+
msgid "Discount"
|
388 |
+
msgstr "Знижка"
|
389 |
+
|
390 |
+
#: woocommerce-pdf-invoices-packingslips.php:469
|
391 |
+
msgid "Total ex. VAT"
|
392 |
+
msgstr "Всього отл. ПДВ"
|
393 |
+
|
394 |
+
#: woocommerce-pdf-invoices-packingslips.php:472
|
395 |
+
msgid "Total"
|
396 |
+
msgstr "Разом"
|
397 |
+
|
398 |
+
#~ msgid "..."
|
399 |
+
#~ msgstr "..."
|
400 |
+
|
401 |
+
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
402 |
+
#~ msgstr ""
|
403 |
+
#~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
|
languages/wpo_wcpdf.pot
CHANGED
@@ -1,75 +1,44 @@
|
|
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: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\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.6.
|
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 |
-
#:
|
20 |
-
|
21 |
-
|
22 |
-
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
23 |
-
"installed & activated!"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: woocommerce-pdf-invoices-packingslips.php:183
|
27 |
-
#: woocommerce-pdf-invoices-packingslips.php:219
|
28 |
-
msgid "N/A"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: woocommerce-pdf-invoices-packingslips.php:320
|
32 |
-
msgid "Subtotal"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: woocommerce-pdf-invoices-packingslips.php:338
|
36 |
-
msgid "Shipping"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: woocommerce-pdf-invoices-packingslips.php:353
|
40 |
-
msgid "Discount"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: woocommerce-pdf-invoices-packingslips.php:418
|
44 |
-
msgid "Total ex. VAT"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: woocommerce-pdf-invoices-packingslips.php:421
|
48 |
-
msgid "Total"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: includes/class-wcpdf-export.php:98 includes/class-wcpdf-export.php:103
|
52 |
-
#: includes/class-wcpdf-export.php:108
|
53 |
msgid "You do not have sufficient permissions to access this page."
|
54 |
msgstr ""
|
55 |
|
56 |
# This is a filename (prefix). do not use spaces or special characters!
|
57 |
-
#: includes/class-wcpdf-export.php:
|
58 |
msgid "invoice"
|
59 |
msgid_plural "invoices"
|
60 |
msgstr[0] ""
|
61 |
msgstr[1] ""
|
62 |
|
63 |
# This is a filename (prefix). do not use spaces or special characters!
|
64 |
-
#: includes/class-wcpdf-export.php:
|
65 |
msgid "packing-slip"
|
66 |
msgid_plural "packing-slips"
|
67 |
msgstr[0] ""
|
68 |
msgstr[1] ""
|
69 |
|
70 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
71 |
-
#: includes/class-wcpdf-writepanels.php:
|
72 |
-
#: includes/class-wcpdf-writepanels.php:
|
73 |
msgid "PDF Invoices"
|
74 |
msgstr ""
|
75 |
|
@@ -77,10 +46,6 @@ msgstr ""
|
|
77 |
msgid "Settings"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/class-wcpdf-settings.php:75
|
81 |
-
msgid "..."
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
#: includes/class-wcpdf-settings.php:86
|
85 |
msgid "WooCommerce PDF Invoices"
|
86 |
msgstr ""
|
@@ -93,34 +58,63 @@ msgstr ""
|
|
93 |
msgid "Template"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
#, php-format
|
98 |
msgid ""
|
99 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
100 |
"Packing Slips templates at %s."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
104 |
msgid "General settings"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/class-wcpdf-settings.php:
|
108 |
msgid "How do you want to view the PDF?"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-wcpdf-settings.php:
|
112 |
msgid "Download the PDF"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/class-wcpdf-settings.php:
|
116 |
msgid "Open the PDF in a new browser tab/window"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/class-wcpdf-settings.php:
|
120 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
msgstr ""
|
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 "
|
@@ -129,168 +123,267 @@ msgid ""
|
|
129 |
msgstr ""
|
130 |
|
131 |
#: includes/class-wcpdf-settings.php:206
|
|
|
|
|
|
|
|
|
132 |
msgid "PDF Template settings"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
136 |
msgid "Choose a template"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
msgid ""
|
141 |
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
142 |
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
143 |
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/class-wcpdf-settings.php:
|
147 |
msgid "Paper size"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: includes/class-wcpdf-settings.php:
|
151 |
msgid "A4"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: includes/class-wcpdf-settings.php:
|
155 |
msgid "Letter"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Shop header/logo"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "Select or upload your invoice header/logo"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Set image"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Remove image"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Shop Name"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Shop Address"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Footer: terms & conditions, policies, etc."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Extra template fields"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Extra field 1"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
199 |
msgid "Extra field 2"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Extra field 3"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-wcpdf-settings.php:
|
215 |
msgid "Image resolution"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid ""
|
220 |
"These are used for the (optional) footer columns in the <em>Modern "
|
221 |
"(Premium)</em> template, but can also be used for other elements in your "
|
222 |
"custom template"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
226 |
msgid "Create PDF"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/class-wcpdf-writepanels.php:
|
230 |
msgid "Download invoice (PDF)"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/class-wcpdf-writepanels.php:
|
234 |
msgid "PDF invoice"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: includes/class-wcpdf-writepanels.php:
|
238 |
msgid "PDF Packing Slip"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: includes/class-wcpdf-writepanels.php:
|
242 |
-
#: includes/class-wcpdf-writepanels.php:
|
243 |
msgid "PDF Packing Slips"
|
244 |
msgstr ""
|
245 |
|
|
|
|
|
|
|
|
|
|
|
246 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
247 |
msgid "Invoice"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: templates/pdf/Simple/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
#: templates/pdf/Simple/packing-slip.php:30
|
252 |
msgid "Order Date:"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
256 |
#: templates/pdf/Simple/packing-slip.php:32
|
257 |
msgid "Order Number:"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: templates/pdf/Simple/invoice.php:
|
261 |
msgid "Payment Method:"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: templates/pdf/Simple/invoice.php:
|
265 |
#: templates/pdf/Simple/packing-slip.php:45
|
266 |
msgid "Product"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: templates/pdf/Simple/invoice.php:
|
270 |
#: templates/pdf/Simple/packing-slip.php:46
|
271 |
msgid "Quantity"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: templates/pdf/Simple/invoice.php:
|
275 |
msgid "Price"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: templates/pdf/Simple/invoice.php:
|
279 |
#: templates/pdf/Simple/packing-slip.php:54
|
280 |
msgid "SKU:"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: templates/pdf/Simple/invoice.php:
|
284 |
#: templates/pdf/Simple/packing-slip.php:55
|
285 |
msgid "Weight:"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: templates/pdf/Simple/invoice.php:
|
289 |
#: templates/pdf/Simple/packing-slip.php:69
|
290 |
msgid "Customer Notes"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
-
|
295 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-02-19 15:39+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-19 15:39+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\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.6.4\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:138 includes/class-wcpdf-export.php:143
|
20 |
+
#: includes/class-wcpdf-export.php:148 includes/class-wcpdf-export.php:159
|
21 |
+
#: includes/class-wcpdf-export.php:172
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:180 includes/class-wcpdf-export.php:262
|
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:182
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] ""
|
37 |
msgstr[1] ""
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:172
|
41 |
+
#: includes/class-wcpdf-writepanels.php:173
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr ""
|
44 |
|
46 |
msgid "Settings"
|
47 |
msgstr ""
|
48 |
|
|
|
|
|
|
|
|
|
49 |
#: includes/class-wcpdf-settings.php:86
|
50 |
msgid "WooCommerce PDF Invoices"
|
51 |
msgstr ""
|
58 |
msgid "Template"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/class-wcpdf-settings.php:96
|
62 |
+
#, php-format
|
63 |
+
msgid ""
|
64 |
+
"Your WP Memory Limit is currently set to %s - We recommend setting it to at "
|
65 |
+
"least 64MB (128MB for optimal performance). See: <a href=\"%s\">Increasing "
|
66 |
+
"memory allocated to PHP</a>"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-wcpdf-settings.php:106
|
70 |
#, php-format
|
71 |
msgid ""
|
72 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
73 |
"Packing Slips templates at %s."
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/class-wcpdf-settings.php:107
|
77 |
+
#, php-format
|
78 |
+
msgid "For custom templates, contact us at %s."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-wcpdf-settings.php:161
|
82 |
msgid "General settings"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: includes/class-wcpdf-settings.php:168
|
86 |
msgid "How do you want to view the PDF?"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/class-wcpdf-settings.php:176
|
90 |
msgid "Download the PDF"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/class-wcpdf-settings.php:177
|
94 |
msgid "Open the PDF in a new browser tab/window"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/class-wcpdf-settings.php:187
|
98 |
+
msgid "Attach invoice to:"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/class-wcpdf-settings.php:195
|
102 |
+
msgid "Admin New Order email"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/class-wcpdf-settings.php:196
|
106 |
+
msgid "Customer Processing Order email"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: includes/class-wcpdf-settings.php:197
|
110 |
+
msgid "Customer Completed Order email"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: includes/class-wcpdf-settings.php:198
|
114 |
+
msgid "Customer Invoice email"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/class-wcpdf-settings.php:200
|
118 |
#, php-format
|
119 |
msgid ""
|
120 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
123 |
msgstr ""
|
124 |
|
125 |
#: includes/class-wcpdf-settings.php:206
|
126 |
+
msgid "Enable invoice number column in the orders list"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/class-wcpdf-settings.php:245
|
130 |
msgid "PDF Template settings"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/class-wcpdf-settings.php:252
|
134 |
msgid "Choose a template"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/class-wcpdf-settings.php:260
|
138 |
msgid ""
|
139 |
"Want to use your own template? Copy all the files from <code>woocommerce-pdf-"
|
140 |
"invoices-packing-slips/templates/pdf/Simple/</code> to <code>yourtheme/"
|
141 |
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/class-wcpdf-settings.php:266
|
145 |
msgid "Paper size"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/class-wcpdf-settings.php:274
|
149 |
msgid "A4"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/class-wcpdf-settings.php:275
|
153 |
msgid "Letter"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:282
|
157 |
msgid "Shop header/logo"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/class-wcpdf-settings.php:289
|
161 |
msgid "Select or upload your invoice header/logo"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:290
|
165 |
msgid "Set image"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:291
|
169 |
msgid "Remove image"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:298
|
173 |
msgid "Shop Name"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/class-wcpdf-settings.php:311
|
177 |
msgid "Shop Address"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:343
|
181 |
msgid "Footer: terms & conditions, policies, etc."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:358
|
185 |
+
msgid "Number to display on invoice"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/class-wcpdf-settings.php:366
|
189 |
+
msgid "WooCommerce order number"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/class-wcpdf-settings.php:367
|
193 |
+
msgid "Built-in sequential invoice number"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/class-wcpdf-settings.php:369
|
197 |
+
msgid ""
|
198 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
199 |
+
"WooCommerce order number"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/class-wcpdf-settings.php:375
|
203 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/class-wcpdf-settings.php:383
|
207 |
+
msgid ""
|
208 |
+
"This is the number that will be used on the next invoice that is created. By "
|
209 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
210 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
211 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
212 |
+
"this could create double invoice numbers!<br/>Check the <a href=\"http://"
|
213 |
+
"wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/\" target="
|
214 |
+
"\"_blank\">FAQ</a> for instructions on how to format the invoice number."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/class-wcpdf-settings.php:390
|
218 |
+
msgid "Date to display on invoice"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/class-wcpdf-settings.php:398
|
222 |
+
msgid "Order date"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/class-wcpdf-settings.php:399
|
226 |
+
msgid "Invoice date"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/class-wcpdf-settings.php:407
|
230 |
msgid "Extra template fields"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:414
|
234 |
msgid "Extra field 1"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/class-wcpdf-settings.php:423
|
238 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/class-wcpdf-settings.php:429
|
242 |
msgid "Extra field 2"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/class-wcpdf-settings.php:438
|
246 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/class-wcpdf-settings.php:444
|
250 |
msgid "Extra field 3"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/class-wcpdf-settings.php:453
|
254 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/class-wcpdf-settings.php:710
|
258 |
msgid "Image resolution"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/class-wcpdf-settings.php:740
|
262 |
msgid ""
|
263 |
"These are used for the (optional) footer columns in the <em>Modern "
|
264 |
"(Premium)</em> template, but can also be used for other elements in your "
|
265 |
"custom template"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/class-wcpdf-writepanels.php:102
|
269 |
+
msgid "Invoice Number"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: includes/class-wcpdf-writepanels.php:133
|
273 |
msgid "Create PDF"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/class-wcpdf-writepanels.php:142
|
277 |
msgid "Download invoice (PDF)"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/class-wcpdf-writepanels.php:156
|
281 |
msgid "PDF invoice"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/class-wcpdf-writepanels.php:157
|
285 |
msgid "PDF Packing Slip"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/class-wcpdf-writepanels.php:174
|
289 |
+
#: includes/class-wcpdf-writepanels.php:175
|
290 |
msgid "PDF Packing Slips"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-wcpdf-writepanels.php:186
|
294 |
+
msgid "PDF Invoice Number"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
298 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
299 |
msgid "Invoice"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
303 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
304 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
305 |
+
msgid "Packing Slip"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: templates/pdf/Simple/invoice.php:37
|
309 |
+
msgid "Invoice Date:"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: templates/pdf/Simple/invoice.php:40
|
313 |
#: templates/pdf/Simple/packing-slip.php:30
|
314 |
msgid "Order Date:"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: templates/pdf/Simple/invoice.php:46
|
318 |
+
msgid "Invoice Number:"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: templates/pdf/Simple/invoice.php:49
|
322 |
#: templates/pdf/Simple/packing-slip.php:32
|
323 |
msgid "Order Number:"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: templates/pdf/Simple/invoice.php:56
|
327 |
msgid "Payment Method:"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: templates/pdf/Simple/invoice.php:69
|
331 |
#: templates/pdf/Simple/packing-slip.php:45
|
332 |
msgid "Product"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: templates/pdf/Simple/invoice.php:70
|
336 |
#: templates/pdf/Simple/packing-slip.php:46
|
337 |
msgid "Quantity"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: templates/pdf/Simple/invoice.php:71
|
341 |
msgid "Price"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: templates/pdf/Simple/invoice.php:79
|
345 |
#: templates/pdf/Simple/packing-slip.php:54
|
346 |
msgid "SKU:"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: templates/pdf/Simple/invoice.php:80
|
350 |
#: templates/pdf/Simple/packing-slip.php:55
|
351 |
msgid "Weight:"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: templates/pdf/Simple/invoice.php:113
|
355 |
#: templates/pdf/Simple/packing-slip.php:69
|
356 |
msgid "Customer Notes"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
360 |
+
#, php-format
|
361 |
+
msgid ""
|
362 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
363 |
+
"installed & activated!"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
367 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
368 |
+
msgid "N/A"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: woocommerce-pdf-invoices-packingslips.php:359
|
372 |
+
msgid "Subtotal"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: woocommerce-pdf-invoices-packingslips.php:381
|
376 |
+
msgid "Shipping"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: woocommerce-pdf-invoices-packingslips.php:400
|
380 |
+
msgid "Discount"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: woocommerce-pdf-invoices-packingslips.php:469
|
384 |
+
msgid "Total ex. VAT"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: woocommerce-pdf-invoices-packingslips.php:472
|
388 |
+
msgid "Total"
|
389 |
msgstr ""
|
lib/dompdf/dompdf_config.inc.php
CHANGED
@@ -281,7 +281,7 @@ def("DOMPDF_ENABLE_JAVASCRIPT", true);
|
|
281 |
*
|
282 |
* @var bool
|
283 |
*/
|
284 |
-
def("DOMPDF_ENABLE_REMOTE",
|
285 |
|
286 |
/**
|
287 |
* The debug output log
|
281 |
*
|
282 |
* @var bool
|
283 |
*/
|
284 |
+
def("DOMPDF_ENABLE_REMOTE", true);
|
285 |
|
286 |
/**
|
287 |
* The debug output log
|
lib/dompdf/lib/fonts/dompdf_font_family_cache.dist.php
CHANGED
@@ -69,43 +69,4 @@
|
|
69 |
'italic' => DOMPDF_DIR . '/lib/fonts/Courier-Oblique',
|
70 |
'bold_italic' => DOMPDF_DIR . '/lib/fonts/Courier-BoldOblique',
|
71 |
),
|
72 |
-
'dejavu sans' =>
|
73 |
-
array (
|
74 |
-
'bold' => DOMPDF_DIR . '/lib/fonts/DejaVuSans-Bold',
|
75 |
-
'bold_italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSans-BoldOblique',
|
76 |
-
'italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSans-Oblique',
|
77 |
-
'normal' => DOMPDF_DIR . '/lib/fonts/DejaVuSans',
|
78 |
-
),
|
79 |
-
'dejavu sans light' =>
|
80 |
-
array (
|
81 |
-
'normal' => DOMPDF_DIR . '/lib/fonts/DejaVuSans-ExtraLight',
|
82 |
-
),
|
83 |
-
'dejavu sans condensed' =>
|
84 |
-
array (
|
85 |
-
'bold' => DOMPDF_DIR . '/lib/fonts/DejaVuSansCondensed-Bold',
|
86 |
-
'bold_italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSansCondensed-BoldOblique',
|
87 |
-
'italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSansCondensed-Oblique',
|
88 |
-
'normal' => DOMPDF_DIR . '/lib/fonts/DejaVuSansCondensed',
|
89 |
-
),
|
90 |
-
'dejavu sans mono' =>
|
91 |
-
array (
|
92 |
-
'bold' => DOMPDF_DIR . '/lib/fonts/DejaVuSansMono-Bold',
|
93 |
-
'bold_italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSansMono-BoldOblique',
|
94 |
-
'italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSansMono-Oblique',
|
95 |
-
'normal' => DOMPDF_DIR . '/lib/fonts/DejaVuSansMono',
|
96 |
-
),
|
97 |
-
'dejavu serif' =>
|
98 |
-
array (
|
99 |
-
'bold' => DOMPDF_DIR . '/lib/fonts/DejaVuSerif-Bold',
|
100 |
-
'bold_italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSerif-BoldItalic',
|
101 |
-
'italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSerif-Italic',
|
102 |
-
'normal' => DOMPDF_DIR . '/lib/fonts/DejaVuSerif',
|
103 |
-
),
|
104 |
-
'dejavu serif condensed' =>
|
105 |
-
array (
|
106 |
-
'bold' => DOMPDF_DIR . '/lib/fonts/DejaVuSerifCondensed-Bold',
|
107 |
-
'bold_italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSerifCondensed-BoldItalic',
|
108 |
-
'italic' => DOMPDF_DIR . '/lib/fonts/DejaVuSerifCondensed-Italic',
|
109 |
-
'normal' => DOMPDF_DIR . '/lib/fonts/DejaVuSerifCondensed',
|
110 |
-
),
|
111 |
) ?>
|
69 |
'italic' => DOMPDF_DIR . '/lib/fonts/Courier-Oblique',
|
70 |
'bold_italic' => DOMPDF_DIR . '/lib/fonts/Courier-BoldOblique',
|
71 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
) ?>
|
lib/dompdf/lib/fonts/dompdf_font_family_cache.php
CHANGED
@@ -69,45 +69,6 @@
|
|
69 |
'italic' => DOMPDF_FONT_DIR . 'Courier-Oblique',
|
70 |
'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
|
71 |
),
|
72 |
-
'dejavu sans' =>
|
73 |
-
array (
|
74 |
-
'bold' => DOMPDF_FONT_DIR . 'DejaVuSans-Bold',
|
75 |
-
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSans-BoldOblique',
|
76 |
-
'italic' => DOMPDF_FONT_DIR . 'DejaVuSans-Oblique',
|
77 |
-
'normal' => DOMPDF_FONT_DIR . 'DejaVuSans',
|
78 |
-
),
|
79 |
-
'dejavu sans light' =>
|
80 |
-
array (
|
81 |
-
'normal' => DOMPDF_FONT_DIR . 'DejaVuSans-ExtraLight',
|
82 |
-
),
|
83 |
-
'dejavu sans condensed' =>
|
84 |
-
array (
|
85 |
-
'bold' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed-Bold',
|
86 |
-
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed-BoldOblique',
|
87 |
-
'italic' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed-Oblique',
|
88 |
-
'normal' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed',
|
89 |
-
),
|
90 |
-
'dejavu sans mono' =>
|
91 |
-
array (
|
92 |
-
'bold' => DOMPDF_FONT_DIR . 'DejaVuSansMono-Bold',
|
93 |
-
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSansMono-BoldOblique',
|
94 |
-
'italic' => DOMPDF_FONT_DIR . 'DejaVuSansMono-Oblique',
|
95 |
-
'normal' => DOMPDF_FONT_DIR . 'DejaVuSansMono',
|
96 |
-
),
|
97 |
-
'dejavu serif' =>
|
98 |
-
array (
|
99 |
-
'bold' => DOMPDF_FONT_DIR . 'DejaVuSerif-Bold',
|
100 |
-
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSerif-BoldItalic',
|
101 |
-
'italic' => DOMPDF_FONT_DIR . 'DejaVuSerif-Italic',
|
102 |
-
'normal' => DOMPDF_FONT_DIR . 'DejaVuSerif',
|
103 |
-
),
|
104 |
-
'dejavu serif condensed' =>
|
105 |
-
array (
|
106 |
-
'bold' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed-Bold',
|
107 |
-
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed-BoldItalic',
|
108 |
-
'italic' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed-Italic',
|
109 |
-
'normal' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed',
|
110 |
-
),
|
111 |
'segoe' =>
|
112 |
array (
|
113 |
'normal' => DOMPDF_FONT_DIR . 'ca62b8dbf47b24df65c291a7b33ced62',
|
69 |
'italic' => DOMPDF_FONT_DIR . 'Courier-Oblique',
|
70 |
'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
|
71 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
'segoe' =>
|
73 |
array (
|
74 |
'normal' => DOMPDF_FONT_DIR . 'ca62b8dbf47b24df65c291a7b33ced62',
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: pomegranate
|
3 |
Tags: woocommerce, print, pdf, bulk, packing slips, invoices, delivery notes, invoice, packing slip, export, email
|
4 |
Requires at least: 3.5 and WooCommerce 2.0
|
5 |
-
Tested up to: 3.8 and WooCommerce 2.1
|
6 |
-
Stable tag: 1.2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -18,7 +18,7 @@ This WooCommerce extension automatically adds a PDF invoice to the order confirm
|
|
18 |
* Automatically attach invoice PDF to order confirmation email
|
19 |
* Users can download their invoices from the My Account page
|
20 |
* Sequential invoice numbers (fully customizable with filters, see the [FAQ](http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/))
|
21 |
-
* **Available in: Dutch, English, French, German, Hungarian, Italian &
|
22 |
|
23 |
= Fully customizable =
|
24 |
In addition to a number of default settings (including a custom header/logo) and several layout fields that you can use out of the box, the plugin contains HTML/CSS based templates that allow for customization & full control over the PDF output.
|
@@ -99,6 +99,15 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
= 1.2.4 =
|
103 |
* Feature: Set which type of emails you want to attach the invoice to
|
104 |
|
@@ -109,10 +118,10 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
109 |
* Fix: php strict warnings
|
110 |
|
111 |
= 1.2.2 =
|
112 |
-
*
|
113 |
-
*
|
114 |
-
*
|
115 |
-
* Download PDF link on the my account page is now only shown when an invoice is already created by the admin or automatically, to prevent unwanted invoice created (creating problems with european laws).
|
116 |
|
117 |
= 1.2.1 =
|
118 |
* Fix: shipping & fees functions didn't output correctly with the tax set to 'incl'
|
2 |
Contributors: pomegranate
|
3 |
Tags: woocommerce, print, pdf, bulk, packing slips, invoices, delivery notes, invoice, packing slip, export, email
|
4 |
Requires at least: 3.5 and WooCommerce 2.0
|
5 |
+
Tested up to: 3.8.1 and WooCommerce 2.1
|
6 |
+
Stable tag: 1.2.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
18 |
* Automatically attach invoice PDF to order confirmation email
|
19 |
* Users can download their invoices from the My Account page
|
20 |
* Sequential invoice numbers (fully customizable with filters, see the [FAQ](http://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/faq/))
|
21 |
+
* **Available in: Dutch, English, French, German, Hungarian, Italian, Russian, Spanish & Ukrainian**
|
22 |
|
23 |
= Fully customizable =
|
24 |
In addition to a number of default settings (including a custom header/logo) and several layout fields that you can use out of the box, the plugin contains HTML/CSS based templates that allow for customization & full control over the PDF output.
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 1.2.5 =
|
103 |
+
* Feature: Optional Invoice Number column for the orders listing
|
104 |
+
* Feature: Better support for international characters
|
105 |
+
* Feature: Added Russian & Ukrainian translation (thanks Oleg!)
|
106 |
+
* Tweak: Updated Spanish (Thanks Manuel!) and Dutch translations
|
107 |
+
* Tweak: Updated POT file
|
108 |
+
* Tweak: Memory limit notice
|
109 |
+
* Tweak: Filename name now includes invoice number (when configured in the settings)
|
110 |
+
|
111 |
= 1.2.4 =
|
112 |
* Feature: Set which type of emails you want to attach the invoice to
|
113 |
|
118 |
* Fix: php strict warnings
|
119 |
|
120 |
= 1.2.2 =
|
121 |
+
* Feature: Simple template now uses Open Sans to include more international special characters
|
122 |
+
* Feature: Implemented filters for paper size & orientation ([read here](http://wordpress.org/support/topic/select-a5-paper-size-for-packing-slips?replies=5#post-5211129))
|
123 |
+
* Tweak: PDF engine updated (dompdf 0.6.0)
|
124 |
+
* Tweak: Download PDF link on the my account page is now only shown when an invoice is already created by the admin or automatically, to prevent unwanted invoice created (creating problems with european laws).
|
125 |
|
126 |
= 1.2.1 =
|
127 |
* Fix: shipping & fees functions didn't output correctly with the tax set to 'incl'
|
templates/pdf/Simple/html-document-wrapper.php
CHANGED
@@ -3,7 +3,6 @@
|
|
3 |
<html>
|
4 |
<head>
|
5 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
6 |
-
<link href='http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,latin-ext,cyrillic,cyrillic-ext' rel='stylesheet' type='text/css'>
|
7 |
<title><?php echo ($wpo_wcpdf->export->template_type == 'invoice')?__( 'Invoice', 'wpo_wcpdf' ):__( 'Packing Slip', 'wpo_wcpdf' ) ?></title>
|
8 |
<style><?php $wpo_wcpdf->template_styles(); ?></style>
|
9 |
</head>
|
3 |
<html>
|
4 |
<head>
|
5 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
6 |
<title><?php echo ($wpo_wcpdf->export->template_type == 'invoice')?__( 'Invoice', 'wpo_wcpdf' ):__( 'Packing Slip', 'wpo_wcpdf' ) ?></title>
|
7 |
<style><?php $wpo_wcpdf->template_styles(); ?></style>
|
8 |
</head>
|
templates/pdf/Simple/style.css
CHANGED
@@ -1,4 +1,29 @@
|
|
1 |
/* Main Body */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
@page {
|
3 |
margin-top: 1cm;
|
4 |
margin-bottom: 0.5cm;
|
@@ -156,7 +181,7 @@ dl {
|
|
156 |
margin: 4px 0;
|
157 |
}
|
158 |
|
159 |
-
dt, dd {
|
160 |
display: inline;
|
161 |
font-size: 7pt;
|
162 |
}
|
1 |
/* Main Body */
|
2 |
+
@font-face {
|
3 |
+
font-family: 'Open Sans';
|
4 |
+
font-style: normal;
|
5 |
+
font-weight: normal;
|
6 |
+
src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/yYRnAC2KygoXnEC8IdU0gQLUuEpTyoUstqEm5AMlJo4.ttf) format('truetype');
|
7 |
+
}
|
8 |
+
@font-face {
|
9 |
+
font-family: 'Open Sans';
|
10 |
+
font-style: normal;
|
11 |
+
font-weight: bold;
|
12 |
+
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/k3k702ZOKiLJc3WVjuplzMDdSZkkecOE1hvV7ZHvhyU.ttf) format('truetype');
|
13 |
+
}
|
14 |
+
@font-face {
|
15 |
+
font-family: 'Open Sans';
|
16 |
+
font-style: italic;
|
17 |
+
font-weight: normal;
|
18 |
+
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/O4NhV7_qs9r9seTo7fnsVCZ2oysoEQEeKwjgmXLRnTc.ttf) format('truetype');
|
19 |
+
}
|
20 |
+
@font-face {
|
21 |
+
font-family: 'Open Sans';
|
22 |
+
font-style: italic;
|
23 |
+
font-weight: bold;
|
24 |
+
src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/PRmiXeptR36kaC0GEAetxrQhS7CD3GIaelOwHPAPh9w.ttf) format('truetype');
|
25 |
+
}
|
26 |
+
|
27 |
@page {
|
28 |
margin-top: 1cm;
|
29 |
margin-bottom: 0.5cm;
|
181 |
margin: 4px 0;
|
182 |
}
|
183 |
|
184 |
+
dt, dd, dd p {
|
185 |
display: inline;
|
186 |
font-size: 7pt;
|
187 |
}
|
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.2.
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
@@ -281,7 +281,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
281 |
*/
|
282 |
public function get_invoice_number() {
|
283 |
$invoice_number = $this->export->get_invoice_number( $this->export->order->id );
|
284 |
-
return
|
285 |
}
|
286 |
public function invoice_number() {
|
287 |
echo $this->get_invoice_number();
|
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.2.5
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
281 |
*/
|
282 |
public function get_invoice_number() {
|
283 |
$invoice_number = $this->export->get_invoice_number( $this->export->order->id );
|
284 |
+
return $invoice_number;
|
285 |
}
|
286 |
public function invoice_number() {
|
287 |
echo $this->get_invoice_number();
|