Version Description
- Fix the hidden loading indicator on order edit screen
- Other small visual optimizations
- Later plugin load hook for better compatibility
Download this release
Release Info
Developer | chabis |
Plugin | WooCommerce Print Invoice & Delivery Note |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.6 to 3.1.1
- css/admin.css +16 -1
- includes/class-wcdn-print.php +25 -4
- includes/class-wcdn-settings.php +87 -8
- includes/class-wcdn-writepanel.php +14 -3
- includes/wcdn-template-functions.php +34 -13
- js/admin.js +6 -0
- languages/woocommerce-delivery-notes-de_DE.mo +0 -0
- languages/woocommerce-delivery-notes-de_DE.po +89 -19
- languages/woocommerce-delivery-notes-fa_IR.mo +39 -0
- languages/woocommerce-delivery-notes-fa_IR.po +363 -0
- languages/woocommerce-delivery-notes-nl_NL.mo +0 -0
- languages/woocommerce-delivery-notes-nl_NL.po +315 -182
- languages/woocommerce-delivery-notes.pot +80 -22
- readme.md +5 -1
- readme.txt +49 -6
- screenshot-1.png +0 -0
- templates/print-order/print-content.php +7 -3
- templates/print-order/style.css +15 -12
- woocommerce-delivery-notes.php +6 -6
css/admin.css
CHANGED
@@ -13,6 +13,11 @@
|
|
13 |
|
14 |
/* Edit order */
|
15 |
|
|
|
|
|
|
|
|
|
|
|
16 |
#woocommerce-delivery-notes-box .button {
|
17 |
overflow: hidden;
|
18 |
max-width: 100%;
|
@@ -24,7 +29,7 @@
|
|
24 |
#woocommerce-delivery-notes-box span.print-preview-loading {
|
25 |
position: absolute;
|
26 |
right: 2.5em;
|
27 |
-
top: -2.
|
28 |
}
|
29 |
|
30 |
#woocommerce-delivery-notes-box span.print-preview-loading,
|
@@ -33,6 +38,16 @@
|
|
33 |
vertical-align: middle;
|
34 |
}
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
/* All orders */
|
37 |
.type-shop_order .column-order_actions .print-preview-button {
|
38 |
display: block;
|
13 |
|
14 |
/* Edit order */
|
15 |
|
16 |
+
#woocommerce-delivery-notes-box .inside {
|
17 |
+
margin: 0;
|
18 |
+
padding: 0;
|
19 |
+
}
|
20 |
+
|
21 |
#woocommerce-delivery-notes-box .button {
|
22 |
overflow: hidden;
|
23 |
max-width: 100%;
|
29 |
#woocommerce-delivery-notes-box span.print-preview-loading {
|
30 |
position: absolute;
|
31 |
right: 2.5em;
|
32 |
+
top: -2.35em;
|
33 |
}
|
34 |
|
35 |
#woocommerce-delivery-notes-box span.print-preview-loading,
|
38 |
vertical-align: middle;
|
39 |
}
|
40 |
|
41 |
+
#woocommerce-delivery-notes-box .print-actions {
|
42 |
+
padding: 10px 12px;
|
43 |
+
}
|
44 |
+
|
45 |
+
#woocommerce-delivery-notes-box .print-info {
|
46 |
+
margin-top: 0.3em;
|
47 |
+
border-top: 1px solid #eee;
|
48 |
+
padding: 10px 12px;
|
49 |
+
}
|
50 |
+
|
51 |
/* All orders */
|
52 |
.type-shop_order .column-order_actions .print-preview-button {
|
53 |
display: block;
|
includes/class-wcdn-print.php
CHANGED
@@ -83,7 +83,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
83 |
}
|
84 |
|
85 |
/**
|
86 |
-
* Add the query vars
|
87 |
*/
|
88 |
public function add_query_vars( $vars ) {
|
89 |
foreach( $this->query_vars as $var ) {
|
@@ -96,7 +96,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
96 |
* Parse the query variables
|
97 |
*/
|
98 |
public function parse_request( $wp ) {
|
99 |
-
// Map endpoint keys to their query var keys,
|
100 |
foreach( $this->api_endpoints as $key => $var ) {
|
101 |
if( isset( $_GET[$var] ) ) {
|
102 |
$wp->query_vars[$key] = $_GET[$var];
|
@@ -198,9 +198,8 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
198 |
// Create another url depending on where the user prints. This
|
199 |
// prevents some issues with ssl when the my-account page is
|
200 |
// secured with ssl but the admin isn't.
|
201 |
-
// wp_nonce_url( admin_url( 'admin-ajax.php?action=print_order_admin&template_type=invoice&order_id=' . $post_id ), 'generate_print_content' );
|
202 |
if( is_admin() ) {
|
203 |
-
// For the admin
|
204 |
$args = wp_parse_args( array( 'action' => 'print_order' ), $args );
|
205 |
$base_url = admin_url( 'admin-ajax.php' );
|
206 |
$endpoint = 'print-order';
|
@@ -303,6 +302,28 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
303 |
return;
|
304 |
}
|
305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
}
|
307 |
|
308 |
}
|
83 |
}
|
84 |
|
85 |
/**
|
86 |
+
* Add the query vars to the url
|
87 |
*/
|
88 |
public function add_query_vars( $vars ) {
|
89 |
foreach( $this->query_vars as $var ) {
|
96 |
* Parse the query variables
|
97 |
*/
|
98 |
public function parse_request( $wp ) {
|
99 |
+
// Map endpoint keys to their query var keys, when another endpoint name was set.
|
100 |
foreach( $this->api_endpoints as $key => $var ) {
|
101 |
if( isset( $_GET[$var] ) ) {
|
102 |
$wp->query_vars[$key] = $_GET[$var];
|
198 |
// Create another url depending on where the user prints. This
|
199 |
// prevents some issues with ssl when the my-account page is
|
200 |
// secured with ssl but the admin isn't.
|
|
|
201 |
if( is_admin() ) {
|
202 |
+
// For the admin we use the ajax.php for better security
|
203 |
$args = wp_parse_args( array( 'action' => 'print_order' ), $args );
|
204 |
$base_url = admin_url( 'admin-ajax.php' );
|
205 |
$endpoint = 'print-order';
|
302 |
return;
|
303 |
}
|
304 |
|
305 |
+
/**
|
306 |
+
* Get the order invoice number
|
307 |
+
*/
|
308 |
+
public function get_order_invoice_number( $order_id ) {
|
309 |
+
$invoice_start = intval( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_start', 1 ) );
|
310 |
+
$invoice_counter = intval( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_counter', 0 ) );
|
311 |
+
$invoice_prefix = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_prefix' );
|
312 |
+
$invoice_suffix = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_suffix' );
|
313 |
+
|
314 |
+
// Add the invoice number to the order when it doesn't yet exist
|
315 |
+
$meta_key = '_' . WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number';
|
316 |
+
$meta_added = add_post_meta( $order_id, $meta_key, $invoice_prefix . ( $invoice_start + $invoice_counter ) . $invoice_suffix, true );
|
317 |
+
|
318 |
+
// Update the total count
|
319 |
+
if( $meta_added ) {
|
320 |
+
update_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_counter', $invoice_counter + 1 );
|
321 |
+
}
|
322 |
+
|
323 |
+
// Get the invoice number
|
324 |
+
return apply_filters( 'wcdn_order_invoice_number', get_post_meta( $order_id, $meta_key, true ) );
|
325 |
+
}
|
326 |
+
|
327 |
}
|
328 |
|
329 |
}
|
includes/class-wcdn-settings.php
CHANGED
@@ -201,7 +201,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
201 |
</tr>
|
202 |
<tr>
|
203 |
<th>
|
204 |
-
<label><?php _e( 'Complimentary
|
205 |
</th>
|
206 |
<td>
|
207 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>personal_notes" rows="5" class="large-text"><?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'personal_notes' ) ) ); ?></textarea>
|
@@ -241,7 +241,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
241 |
</tbody>
|
242 |
</table>
|
243 |
|
244 |
-
<h3><?php _e( 'Options', 'woocommerce-delivery-notes' ); ?></h3>
|
245 |
<table class="form-table">
|
246 |
<tbody>
|
247 |
<tr>
|
@@ -259,7 +259,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
259 |
</tr>
|
260 |
<tr>
|
261 |
<th>
|
262 |
-
<?php _e( '
|
263 |
</th>
|
264 |
<td>
|
265 |
<fieldset>
|
@@ -283,10 +283,73 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
283 |
|
284 |
<h3><?php _e( 'Order Numbering', 'woocommerce-delivery-notes' ); ?></h3>
|
285 |
<table class="form-table">
|
286 |
-
<tbody>
|
287 |
<tr>
|
288 |
<th>
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
</th>
|
291 |
<td>
|
292 |
<?php if( $this->is_woocommerce_sequential_order_numbers_activated() ) : ?>
|
@@ -312,19 +375,35 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
312 |
// Save settings
|
313 |
foreach ( $_POST as $key => $value ) {
|
314 |
if ( $key != $this->hidden_submit && strpos( $key, WooCommerce_Delivery_Notes::$plugin_prefix ) !== false ) {
|
315 |
-
//
|
316 |
if ( empty( $value ) ) {
|
317 |
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'print_order_page_endpoint' ) {
|
318 |
$value = 'print-order';
|
319 |
}
|
|
|
|
|
|
|
|
|
320 |
}
|
321 |
|
322 |
-
//
|
323 |
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'print_order_page_endpoint' ) {
|
324 |
$value = sanitize_title( $value );
|
325 |
}
|
326 |
|
327 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
if ( empty( $value ) ) {
|
329 |
delete_option( $key );
|
330 |
} else {
|
201 |
</tr>
|
202 |
<tr>
|
203 |
<th>
|
204 |
+
<label><?php _e( 'Complimentary Close', 'woocommerce-delivery-notes' ); ?></label>
|
205 |
</th>
|
206 |
<td>
|
207 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>personal_notes" rows="5" class="large-text"><?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'personal_notes' ) ) ); ?></textarea>
|
241 |
</tbody>
|
242 |
</table>
|
243 |
|
244 |
+
<h3><?php _e( 'Front-end Options', 'woocommerce-delivery-notes' ); ?></h3>
|
245 |
<table class="form-table">
|
246 |
<tbody>
|
247 |
<tr>
|
259 |
</tr>
|
260 |
<tr>
|
261 |
<th>
|
262 |
+
<?php _e( 'Print Buttons', 'woocommerce-delivery-notes' ); ?>
|
263 |
</th>
|
264 |
<td>
|
265 |
<fieldset>
|
283 |
|
284 |
<h3><?php _e( 'Order Numbering', 'woocommerce-delivery-notes' ); ?></h3>
|
285 |
<table class="form-table">
|
286 |
+
<tbody>
|
287 |
<tr>
|
288 |
<th>
|
289 |
+
<?php _e( 'Invoice Number', 'woocommerce-delivery-notes' ); ?>
|
290 |
+
</th>
|
291 |
+
<td>
|
292 |
+
<p>
|
293 |
+
<label>
|
294 |
+
<?php $create_invoice_number = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'create_invoice_number' ); ?>
|
295 |
+
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>create_invoice_number" type="hidden" value="" />
|
296 |
+
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>create_invoice_number" id="create-invoice-number" type="checkbox" value="1" <?php checked( $create_invoice_number, 1 ); ?> />
|
297 |
+
<?php _e( 'Create invoice numbers', 'woocommerce-delivery-notes' ); ?>
|
298 |
+
</label>
|
299 |
+
</p>
|
300 |
+
</td>
|
301 |
+
</tr>
|
302 |
+
<tr class="invoice-number-row" <?php if( empty( $create_invoice_number ) ) : ?> style="display: none;"<?php endif; ?>>
|
303 |
+
<th>
|
304 |
+
<label><?php _e( 'Invoice Number Start', 'woocommerce-delivery-notes' ); ?></label>
|
305 |
+
</th>
|
306 |
+
<td>
|
307 |
+
<p>
|
308 |
+
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>invoice_number_start" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_start', 1 ) ) ); ?>" />
|
309 |
+
</p>
|
310 |
+
<span class="description">
|
311 |
+
<?php _e( 'Start the numbering at the specified number.', 'woocommerce-delivery-notes' ); ?>
|
312 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
313 |
+
<?php _e( 'Use only integers.', 'woocommerce-delivery-notes' ); ?>
|
314 |
+
<?php _e( 'Already created invoice numbers are not affected by changes.', 'woocommerce-delivery-notes' ); ?>
|
315 |
+
</span>
|
316 |
+
</td>
|
317 |
+
</tr>
|
318 |
+
<tr class="invoice-number-row" <?php if( empty( $create_invoice_number ) ) : ?> style="display: none;"<?php endif; ?>>
|
319 |
+
<th>
|
320 |
+
<label><?php _e( 'Invoice Number Prefix', 'woocommerce-delivery-notes' ); ?></label>
|
321 |
+
</th>
|
322 |
+
<td>
|
323 |
+
<p>
|
324 |
+
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>invoice_number_prefix" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_prefix' ) ) ); ?>" />
|
325 |
+
</p>
|
326 |
+
<span class="description">
|
327 |
+
<?php _e( 'This text will be prepended to the invoice number.', 'woocommerce-delivery-notes' ); ?>
|
328 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
329 |
+
<?php _e( 'Leave blank to not add a prefix.', 'woocommerce-delivery-notes' ); ?>
|
330 |
+
<?php _e( 'Already created invoice numbers are not affected by changes.', 'woocommerce-delivery-notes' ); ?>
|
331 |
+
</span>
|
332 |
+
</td>
|
333 |
+
</tr>
|
334 |
+
<tr class="invoice-number-row" <?php if( empty( $create_invoice_number ) ) : ?> style="display: none;"<?php endif; ?>>
|
335 |
+
<th>
|
336 |
+
<label><?php _e( 'Invoice Number Suffix', 'woocommerce-delivery-notes' ); ?></label>
|
337 |
+
</th>
|
338 |
+
<td>
|
339 |
+
<p>
|
340 |
+
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>invoice_number_suffix" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_suffix' ) ) ); ?>" />
|
341 |
+
</p>
|
342 |
+
<span class="description">
|
343 |
+
<?php _e( 'This text will be appended to the invoice number.', 'woocommerce-delivery-notes' ); ?>
|
344 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
345 |
+
<?php _e( 'Leave blank to not add a suffix.', 'woocommerce-delivery-notes' ); ?>
|
346 |
+
<?php _e( 'Already created invoice numbers are not affected by changes.', 'woocommerce-delivery-notes' ); ?>
|
347 |
+
</span>
|
348 |
+
</td>
|
349 |
+
</tr>
|
350 |
+
<tr>
|
351 |
+
<th>
|
352 |
+
<label><?php _e( 'Sequential Order Number', 'woocommerce-delivery-notes' ); ?></label>
|
353 |
</th>
|
354 |
<td>
|
355 |
<?php if( $this->is_woocommerce_sequential_order_numbers_activated() ) : ?>
|
375 |
// Save settings
|
376 |
foreach ( $_POST as $key => $value ) {
|
377 |
if ( $key != $this->hidden_submit && strpos( $key, WooCommerce_Delivery_Notes::$plugin_prefix ) !== false ) {
|
378 |
+
// Set a default values
|
379 |
if ( empty( $value ) ) {
|
380 |
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'print_order_page_endpoint' ) {
|
381 |
$value = 'print-order';
|
382 |
}
|
383 |
+
|
384 |
+
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_start' ) {
|
385 |
+
$value = 1;
|
386 |
+
}
|
387 |
}
|
388 |
|
389 |
+
// Sanitize values
|
390 |
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'print_order_page_endpoint' ) {
|
391 |
$value = sanitize_title( $value );
|
392 |
}
|
393 |
|
394 |
+
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_start' ) {
|
395 |
+
if ( !ctype_digit( $value ) ) {
|
396 |
+
$value = 1;
|
397 |
+
}
|
398 |
+
|
399 |
+
// Check if the counter should be reset
|
400 |
+
if( get_option( $key ) != $value ) {
|
401 |
+
update_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_counter', 0 );
|
402 |
+
}
|
403 |
+
|
404 |
+
}
|
405 |
+
|
406 |
+
// Update the value
|
407 |
if ( empty( $value ) ) {
|
408 |
delete_option( $key );
|
409 |
} else {
|
includes/class-wcdn-writepanel.php
CHANGED
@@ -186,10 +186,21 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
186 |
*/
|
187 |
public function create_box_content() {
|
188 |
global $post_id;
|
|
|
189 |
?>
|
190 |
-
<
|
191 |
-
|
192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
<?php
|
194 |
}
|
195 |
|
186 |
*/
|
187 |
public function create_box_content() {
|
188 |
global $post_id;
|
189 |
+
$create_invoice_number = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'create_invoice_number' );
|
190 |
?>
|
191 |
+
<div class="print-actions">
|
192 |
+
<a href="<?php echo wcdn_get_print_link( $post_id, 'invoice' ); ?>" class="button print-preview-button" target="_blank" alt="<?php esc_attr_e( 'Print Invoice', 'woocommerce-delivery-notes' ); ?>"><?php _e( 'Print Invoice', 'woocommerce-delivery-notes' ); ?></a>
|
193 |
+
<a href="<?php echo wcdn_get_print_link( $post_id, 'delivery-note' ); ?>" class="button print-preview-button" target="_blank" alt="<?php esc_attr_e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?>"><?php _e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?></a>
|
194 |
+
<span class="print-preview-loading spinner"></span>
|
195 |
+
</div>
|
196 |
+
<?php
|
197 |
+
if( !empty( $create_invoice_number ) ) :
|
198 |
+
$invoice_number = wcdn_get_order_invoice_number( $post_id );
|
199 |
+
?>
|
200 |
+
<div class="print-info">
|
201 |
+
<strong><?php _e( 'Invoice number: ', 'woocommerce-delivery-notes' ); ?></strong> <?php echo $invoice_number; ?>
|
202 |
+
</div>
|
203 |
+
<?php endif; ?>
|
204 |
<?php
|
205 |
}
|
206 |
|
includes/wcdn-template-functions.php
CHANGED
@@ -190,6 +190,7 @@ function wcdn_get_orders() {
|
|
190 |
* Get an order
|
191 |
*/
|
192 |
function wcdn_get_order( $order_id ) {
|
|
|
193 |
return $wcdn->print->get_order( $order_id );
|
194 |
}
|
195 |
|
@@ -197,19 +198,30 @@ function wcdn_get_order( $order_id ) {
|
|
197 |
* Get the order info fields
|
198 |
*/
|
199 |
function wcdn_get_order_info( $order ) {
|
200 |
-
$
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
'
|
206 |
-
'label' => __( '
|
207 |
-
'value' =>
|
208 |
-
)
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
);
|
214 |
|
215 |
if( $order->billing_email ) {
|
@@ -229,6 +241,15 @@ function wcdn_get_order_info( $order ) {
|
|
229 |
return $fields;
|
230 |
}
|
231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
/**
|
233 |
* Additional fields for the product
|
234 |
*/
|
190 |
* Get an order
|
191 |
*/
|
192 |
function wcdn_get_order( $order_id ) {
|
193 |
+
global $wcdn;
|
194 |
return $wcdn->print->get_order( $order_id );
|
195 |
}
|
196 |
|
198 |
* Get the order info fields
|
199 |
*/
|
200 |
function wcdn_get_order_info( $order ) {
|
201 |
+
global $wcdn;
|
202 |
+
$fields = array();
|
203 |
+
$create_invoice_number = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'create_invoice_number' );
|
204 |
+
|
205 |
+
if( wcdn_get_template_type() == 'invoice' && !empty( $create_invoice_number ) ) {
|
206 |
+
$fields['invoice_number'] = array(
|
207 |
+
'label' => __( 'Invoice Number', 'woocommerce-delivery-notes' ),
|
208 |
+
'value' => wcdn_get_order_invoice_number( $order->id )
|
209 |
+
);
|
210 |
+
}
|
211 |
+
|
212 |
+
$fields['order_number'] = array(
|
213 |
+
'label' => __( 'Order Number', 'woocommerce-delivery-notes' ),
|
214 |
+
'value' => $order->get_order_number()
|
215 |
+
);
|
216 |
+
|
217 |
+
$fields['order_date'] = array(
|
218 |
+
'label' => __( 'Order Date', 'woocommerce-delivery-notes' ),
|
219 |
+
'value' => date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) )
|
220 |
+
);
|
221 |
+
|
222 |
+
$fields['payment_method'] = array(
|
223 |
+
'label' => __( 'Payment Method', 'woocommerce-delivery-notes' ),
|
224 |
+
'value' => __( $order->payment_method_title, 'woocommerce' )
|
225 |
);
|
226 |
|
227 |
if( $order->billing_email ) {
|
241 |
return $fields;
|
242 |
}
|
243 |
|
244 |
+
/**
|
245 |
+
* Get the invoice number of an order
|
246 |
+
*/
|
247 |
+
function wcdn_get_order_invoice_number( $order_id ) {
|
248 |
+
global $wcdn;
|
249 |
+
return $wcdn->print->get_order_invoice_number( $order_id );
|
250 |
+
}
|
251 |
+
|
252 |
+
|
253 |
/**
|
254 |
* Additional fields for the product
|
255 |
*/
|
js/admin.js
CHANGED
@@ -104,5 +104,11 @@ jQuery(document).ready(function($) {
|
|
104 |
$('#company-logo-remove-button').hide();
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
});
|
108 |
|
104 |
$('#company-logo-remove-button').hide();
|
105 |
}
|
106 |
|
107 |
+
// Toggle invoice number fields
|
108 |
+
$('#create-invoice-number').on('change', function(event) {
|
109 |
+
$('.invoice-number-row').toggle();
|
110 |
+
event.preventDefault();
|
111 |
+
});
|
112 |
+
|
113 |
});
|
114 |
|
languages/woocommerce-delivery-notes-de_DE.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-de_DE.po
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
-
"POT-Creation-Date: 2014-04-
|
13 |
-
"PO-Revision-Date: 2014-04-
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: de_DE\n"
|
@@ -85,6 +85,9 @@ msgstr "Ein Firmen-/ Shop-Logo, welches Ihr Geschäft repräsentiert."
|
|
85 |
#: ../includes/class-wcdn-settings.php:210
|
86 |
#: ../includes/class-wcdn-settings.php:223
|
87 |
#: ../includes/class-wcdn-settings.php:236
|
|
|
|
|
|
|
88 |
msgid "Note:"
|
89 |
msgstr "Hinweis:"
|
90 |
|
@@ -143,7 +146,8 @@ msgid "Leave blank to not print an address."
|
|
143 |
msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
|
144 |
|
145 |
#: ../includes/class-wcdn-settings.php:204
|
146 |
-
|
|
|
147 |
msgstr "Schlussformel"
|
148 |
|
149 |
# @ woocommerce-delivery-notes
|
@@ -204,8 +208,8 @@ msgstr ""
|
|
204 |
"Leer lassen, um keine Impressumangaben in der Fußzeile mit auszudrucken."
|
205 |
|
206 |
#: ../includes/class-wcdn-settings.php:244
|
207 |
-
msgid "Options"
|
208 |
-
msgstr "Optionen"
|
209 |
|
210 |
#: ../includes/class-wcdn-settings.php:249
|
211 |
msgid "Print Page Endpoint"
|
@@ -220,7 +224,7 @@ msgstr ""
|
|
220 |
"sollte eindeutig sein."
|
221 |
|
222 |
#: ../includes/class-wcdn-settings.php:262
|
223 |
-
msgid "
|
224 |
msgstr "Drucken im Theme"
|
225 |
|
226 |
#: ../includes/class-wcdn-settings.php:269
|
@@ -238,16 +242,73 @@ msgstr "Bestellnummer"
|
|
238 |
|
239 |
# @ woocommerce-delivery-notes
|
240 |
#: ../includes/class-wcdn-settings.php:289
|
241 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgstr "Fortlaufende Bestellnummer"
|
243 |
|
244 |
# @ woocommerce-delivery-notes
|
245 |
-
#: ../includes/class-wcdn-settings.php:
|
246 |
msgid "Sequential numbering is enabled."
|
247 |
msgstr "Fortlaufende Nummerierung ist aktiviert."
|
248 |
|
249 |
# @ woocommerce-delivery-notes
|
250 |
-
#: ../includes/class-wcdn-settings.php:
|
251 |
#, php-format
|
252 |
msgid ""
|
253 |
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
@@ -261,7 +322,7 @@ msgstr ""
|
|
261 |
#: ../includes/class-wcdn-writepanel.php:84
|
262 |
#: ../includes/class-wcdn-writepanel.php:105
|
263 |
#: ../includes/class-wcdn-writepanel.php:106
|
264 |
-
#: ../includes/class-wcdn-writepanel.php:
|
265 |
msgid "Print Invoice"
|
266 |
msgstr "Rechnung drucken"
|
267 |
|
@@ -270,7 +331,7 @@ msgstr "Rechnung drucken"
|
|
270 |
#: ../includes/class-wcdn-writepanel.php:87
|
271 |
#: ../includes/class-wcdn-writepanel.php:108
|
272 |
#: ../includes/class-wcdn-writepanel.php:109
|
273 |
-
#: ../includes/class-wcdn-writepanel.php:
|
274 |
msgid "Print Delivery Note"
|
275 |
msgstr "Lieferschein drucken"
|
276 |
|
@@ -300,6 +361,11 @@ msgstr "Jetzt drucken"
|
|
300 |
msgid "Order Printing"
|
301 |
msgstr "Bestellung drucken"
|
302 |
|
|
|
|
|
|
|
|
|
|
|
303 |
# @ woocommerce-delivery-notes
|
304 |
#: ../includes/wcdn-template-functions.php:32
|
305 |
msgid "Invoice"
|
@@ -316,30 +382,30 @@ msgid "Order"
|
|
316 |
msgstr "Bestellung"
|
317 |
|
318 |
# @ woocommerce-delivery-notes
|
319 |
-
#: ../includes/wcdn-template-functions.php:
|
320 |
msgid "Order Number"
|
321 |
msgstr "Bestellnummer"
|
322 |
|
323 |
# @ woocommerce-delivery-notes
|
324 |
-
#: ../includes/wcdn-template-functions.php:
|
325 |
msgid "Order Date"
|
326 |
msgstr "Bestelldatum"
|
327 |
|
328 |
# @ woocommerce-delivery-notes
|
329 |
-
#: ../includes/wcdn-template-functions.php:
|
330 |
msgid "Payment Method"
|
331 |
msgstr "Zahlungsart"
|
332 |
|
333 |
# @ woocommerce-delivery-notes
|
334 |
-
#: ../includes/wcdn-template-functions.php:
|
335 |
msgid "Email"
|
336 |
msgstr "E-Mail"
|
337 |
|
338 |
-
#: ../includes/wcdn-template-functions.php:
|
339 |
msgid "Telephone"
|
340 |
msgstr "Telefon"
|
341 |
|
342 |
-
#: ../includes/wcdn-template-functions.php:
|
343 |
msgid "SKU:"
|
344 |
msgstr "Art.-Nr.:"
|
345 |
|
@@ -363,8 +429,12 @@ msgstr "Lieferadresse"
|
|
363 |
msgid "Product"
|
364 |
msgstr "Produkt"
|
365 |
|
366 |
-
# @ woocommerce-delivery-notes
|
367 |
#: ../templates/print-order/print-content.php:75
|
|
|
|
|
|
|
|
|
|
|
368 |
msgid "Total"
|
369 |
msgstr "Summe"
|
370 |
|
@@ -378,7 +448,7 @@ msgid "%s Files"
|
|
378 |
msgstr "%s Dateien"
|
379 |
|
380 |
# @ woocommerce-delivery-notes
|
381 |
-
#: ../templates/print-order/print-content.php:
|
382 |
msgid "Customer Note"
|
383 |
msgstr "Kundennotizen"
|
384 |
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2014-04-17 20:03+0100\n"
|
13 |
+
"PO-Revision-Date: 2014-04-17 20:03+0100\n"
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: de_DE\n"
|
85 |
#: ../includes/class-wcdn-settings.php:210
|
86 |
#: ../includes/class-wcdn-settings.php:223
|
87 |
#: ../includes/class-wcdn-settings.php:236
|
88 |
+
#: ../includes/class-wcdn-settings.php:312
|
89 |
+
#: ../includes/class-wcdn-settings.php:328
|
90 |
+
#: ../includes/class-wcdn-settings.php:344
|
91 |
msgid "Note:"
|
92 |
msgstr "Hinweis:"
|
93 |
|
146 |
msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
|
147 |
|
148 |
#: ../includes/class-wcdn-settings.php:204
|
149 |
+
#, fuzzy
|
150 |
+
msgid "Complimentary Close"
|
151 |
msgstr "Schlussformel"
|
152 |
|
153 |
# @ woocommerce-delivery-notes
|
208 |
"Leer lassen, um keine Impressumangaben in der Fußzeile mit auszudrucken."
|
209 |
|
210 |
#: ../includes/class-wcdn-settings.php:244
|
211 |
+
msgid "Front-end Options"
|
212 |
+
msgstr "Theme Optionen"
|
213 |
|
214 |
#: ../includes/class-wcdn-settings.php:249
|
215 |
msgid "Print Page Endpoint"
|
224 |
"sollte eindeutig sein."
|
225 |
|
226 |
#: ../includes/class-wcdn-settings.php:262
|
227 |
+
msgid "Print Buttons"
|
228 |
msgstr "Drucken im Theme"
|
229 |
|
230 |
#: ../includes/class-wcdn-settings.php:269
|
242 |
|
243 |
# @ woocommerce-delivery-notes
|
244 |
#: ../includes/class-wcdn-settings.php:289
|
245 |
+
#: ../includes/wcdn-template-functions.php:208
|
246 |
+
msgid "Invoice Number"
|
247 |
+
msgstr "Rechnungsnummer"
|
248 |
+
|
249 |
+
#: ../includes/class-wcdn-settings.php:297
|
250 |
+
msgid "Create invoice numbers"
|
251 |
+
msgstr "Erzeuge Rechnungsnummern"
|
252 |
+
|
253 |
+
# @ woocommerce-delivery-notes
|
254 |
+
#: ../includes/class-wcdn-settings.php:304
|
255 |
+
msgid "Invoice Number Start"
|
256 |
+
msgstr "Rechnungsnummer Start"
|
257 |
+
|
258 |
+
#: ../includes/class-wcdn-settings.php:311
|
259 |
+
msgid "Start the numbering at the specified number."
|
260 |
+
msgstr "Die Nummerierung beginnt bei der eingegebenen Zahl."
|
261 |
+
|
262 |
+
#: ../includes/class-wcdn-settings.php:313
|
263 |
+
msgid "Use only integers."
|
264 |
+
msgstr "Nur Ganzzahlen verwenden."
|
265 |
+
|
266 |
+
#: ../includes/class-wcdn-settings.php:314
|
267 |
+
#: ../includes/class-wcdn-settings.php:330
|
268 |
+
#: ../includes/class-wcdn-settings.php:346
|
269 |
+
msgid "Already created invoice numbers are not affected by changes."
|
270 |
+
msgstr "Bereits erzeugte Rechnungsnummern sind von Änderungen nicht betroffen."
|
271 |
+
|
272 |
+
# @ woocommerce-delivery-notes
|
273 |
+
#: ../includes/class-wcdn-settings.php:320
|
274 |
+
msgid "Invoice Number Prefix"
|
275 |
+
msgstr "Rechnungsnummer Präfix"
|
276 |
+
|
277 |
+
#: ../includes/class-wcdn-settings.php:327
|
278 |
+
msgid "This text will be prepended to the invoice number."
|
279 |
+
msgstr "Dieser Text wird vor der Rechnungsnummer angefügt."
|
280 |
+
|
281 |
+
# @ woocommerce-delivery-notes
|
282 |
+
#: ../includes/class-wcdn-settings.php:329
|
283 |
+
msgid "Leave blank to not add a prefix."
|
284 |
+
msgstr "Leer lassen, um kein Präfix zu verwenden."
|
285 |
+
|
286 |
+
# @ woocommerce-delivery-notes
|
287 |
+
#: ../includes/class-wcdn-settings.php:336
|
288 |
+
msgid "Invoice Number Suffix"
|
289 |
+
msgstr "Rechnungsnummer Suffix"
|
290 |
+
|
291 |
+
#: ../includes/class-wcdn-settings.php:343
|
292 |
+
msgid "This text will be appended to the invoice number."
|
293 |
+
msgstr "Dieser Text wird nach der Rechnungsnummer angefügt."
|
294 |
+
|
295 |
+
# @ woocommerce-delivery-notes
|
296 |
+
#: ../includes/class-wcdn-settings.php:345
|
297 |
+
msgid "Leave blank to not add a suffix."
|
298 |
+
msgstr "Leer lassen, um kein Suffix zu verwenden."
|
299 |
+
|
300 |
+
# @ woocommerce-delivery-notes
|
301 |
+
#: ../includes/class-wcdn-settings.php:352
|
302 |
+
msgid "Sequential Order Number"
|
303 |
msgstr "Fortlaufende Bestellnummer"
|
304 |
|
305 |
# @ woocommerce-delivery-notes
|
306 |
+
#: ../includes/class-wcdn-settings.php:356
|
307 |
msgid "Sequential numbering is enabled."
|
308 |
msgstr "Fortlaufende Nummerierung ist aktiviert."
|
309 |
|
310 |
# @ woocommerce-delivery-notes
|
311 |
+
#: ../includes/class-wcdn-settings.php:358
|
312 |
#, php-format
|
313 |
msgid ""
|
314 |
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
322 |
#: ../includes/class-wcdn-writepanel.php:84
|
323 |
#: ../includes/class-wcdn-writepanel.php:105
|
324 |
#: ../includes/class-wcdn-writepanel.php:106
|
325 |
+
#: ../includes/class-wcdn-writepanel.php:192
|
326 |
msgid "Print Invoice"
|
327 |
msgstr "Rechnung drucken"
|
328 |
|
331 |
#: ../includes/class-wcdn-writepanel.php:87
|
332 |
#: ../includes/class-wcdn-writepanel.php:108
|
333 |
#: ../includes/class-wcdn-writepanel.php:109
|
334 |
+
#: ../includes/class-wcdn-writepanel.php:193
|
335 |
msgid "Print Delivery Note"
|
336 |
msgstr "Lieferschein drucken"
|
337 |
|
361 |
msgid "Order Printing"
|
362 |
msgstr "Bestellung drucken"
|
363 |
|
364 |
+
# @ woocommerce-delivery-notes
|
365 |
+
#: ../includes/class-wcdn-writepanel.php:197
|
366 |
+
msgid "Invoice number: "
|
367 |
+
msgstr "Rechnungsnummer:"
|
368 |
+
|
369 |
# @ woocommerce-delivery-notes
|
370 |
#: ../includes/wcdn-template-functions.php:32
|
371 |
msgid "Invoice"
|
382 |
msgstr "Bestellung"
|
383 |
|
384 |
# @ woocommerce-delivery-notes
|
385 |
+
#: ../includes/wcdn-template-functions.php:214
|
386 |
msgid "Order Number"
|
387 |
msgstr "Bestellnummer"
|
388 |
|
389 |
# @ woocommerce-delivery-notes
|
390 |
+
#: ../includes/wcdn-template-functions.php:219
|
391 |
msgid "Order Date"
|
392 |
msgstr "Bestelldatum"
|
393 |
|
394 |
# @ woocommerce-delivery-notes
|
395 |
+
#: ../includes/wcdn-template-functions.php:224
|
396 |
msgid "Payment Method"
|
397 |
msgstr "Zahlungsart"
|
398 |
|
399 |
# @ woocommerce-delivery-notes
|
400 |
+
#: ../includes/wcdn-template-functions.php:230
|
401 |
msgid "Email"
|
402 |
msgstr "E-Mail"
|
403 |
|
404 |
+
#: ../includes/wcdn-template-functions.php:237
|
405 |
msgid "Telephone"
|
406 |
msgstr "Telefon"
|
407 |
|
408 |
+
#: ../includes/wcdn-template-functions.php:263
|
409 |
msgid "SKU:"
|
410 |
msgstr "Art.-Nr.:"
|
411 |
|
429 |
msgid "Product"
|
430 |
msgstr "Produkt"
|
431 |
|
|
|
432 |
#: ../templates/print-order/print-content.php:75
|
433 |
+
msgid "Quantity"
|
434 |
+
msgstr "Menge"
|
435 |
+
|
436 |
+
# @ woocommerce-delivery-notes
|
437 |
+
#: ../templates/print-order/print-content.php:76
|
438 |
msgid "Total"
|
439 |
msgstr "Summe"
|
440 |
|
448 |
msgstr "%s Dateien"
|
449 |
|
450 |
# @ woocommerce-delivery-notes
|
451 |
+
#: ../templates/print-order/print-content.php:148
|
452 |
msgid "Customer Note"
|
453 |
msgstr "Kundennotizen"
|
454 |
|
languages/woocommerce-delivery-notes-fa_IR.mo
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ق• A $ Y , گ / ‘ ء q ز r D · ؤ ظ ë
|
2 |
+
$ ( 7 ص ë 4 [ O « ³ د " ذ
|
3 |
+
$ َ
|
4 |
+
, 4 E Q z ج ذ ض م û 3 % Y _
|
5 |
+
s • پ
|
6 |
+
|
7 |
+
1
|
8 |
+
J
|
9 |
+
S
|
10 |
+
]
|
11 |
+
! i
|
12 |
+
‹
|
13 |
+
گ
|
14 |
+
±
|
15 |
+
ة
|
16 |
+
ز
|
17 |
+
|
18 |
+
غ
|
19 |
+
, é
|
20 |
+
t â “ v } 4 … + ؛ ں و ; † - آ د ً U ہ ش 0 £ © إ " و ( H
|
21 |
+
Z h } ® ‘ # @ d - پ ' ¯ ـ × ¢ ´ W ! d " † J © F ô ^ ; m ڑ ” ¦ ° 1 ئ ّ
|
22 |
+
J 6 پ ˆ ، , µ â ë ! * 7 ? O ڈ 7 › س ô
|
23 |
+
! ! ^ 3! ’! r £! » "
|
24 |
+
ز$ ف$ ط ه$ < ¾& û& U ©' 9 ے' ! & / + : $ - 7 < ? > " ( # 1 ' 0
|
25 |
+
@ % 5 * 3 8 9 4 ) A ; 6 = . ,
|
26 |
+
2 A company/shop logo representing your business. About the Plugin Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs. Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.). Billing Date Company/Shop Address Company/Shop Logo Company/Shop Name Customer Notes Delivery Note Download: FAQ Footer Imprint For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>. For more information: Frequently Asked Questions Get Community Support Go to the settings page Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations. Install and activate the free <a href="%s">WooCommerce Sequential Order Numbers</a> Plugin. Invoice Invoices and Delivery Notes Just look under <a href="%1$s">WooCommerce > Orders</a> and there go to a single order view. On the right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or delivery note printing page. Yes, it is that easy :-). Leave blank to not print a footer. Leave blank to not print an address. Leave blank to not print any personal notes. Leave blank to not print any policies or conditions. Leave blank to use the default Website/ Blog title defined in WordPress settings. N/A Note: Order Number Order Numbering Options Order Print Payment Method Personal Notes Plugin: WooCommerce Print Invoices & Delivery Notes Print Print Delivery Note Print Invoice Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages. Product Project on GitHub Project on WordPress.org Quantity Recipient Remove Logo Returns Policy, Conditions, etc.: SKU: Sequential numbering is enabled. Sequential order number Set Logo Settings Shipping Date Steve Clark, Triggvy Gunderson, David Decker Support The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings. This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or other policies and a footer note/branding. This helps speed up your daily shop and order management. In some countries (e.g. in the European Union) it is also required to advice the customer with proper refund policies so this little plugin might help you a bit with that too. Totals Weight: When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch. WooCommerce Print Invoices & Delivery Notes You can <a href="%1$s" target="%3$s" class="%4$s">preview the invoice template</a> or <a href="%2$s" target="%3$s" class="%4$s">the delivery note template</a>. You do not have sufficient permissions to access this page. Your company/shop name for the Delivery Note. Project-Id-Version: ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ظپط±ظˆط´ع¯ط§ظ‡
|
27 |
+
POT-Creation-Date:
|
28 |
+
PO-Revision-Date: 2014-04-22 14:23+0330
|
29 |
+
Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>
|
30 |
+
Language-Team: www.qooqnos.com <khalil.delavaran@gmail.com>
|
31 |
+
Language: fa
|
32 |
+
MIME-Version: 1.0
|
33 |
+
Content-Type: text/plain; charset=UTF-8
|
34 |
+
Content-Transfer-Encoding: 8bit
|
35 |
+
X-Generator: Poedit 1.6.3
|
36 |
+
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
|
37 |
+
X-Poedit-Basepath: .
|
38 |
+
X-Poedit-SearchPath-0: .
|
39 |
+
ظ„ظˆع¯ظˆغŒ ط´ط±ع©طھ/ظپط±ظˆط´ع¯ط§ظ‡ ط¨ظ‡ ظ†ظ…ط§غŒظ†ط¯ع¯غŒ ط§ط² ع©ط³ط¨ ظˆ ع©ط§ط± ط´ظ…ط§ ط¯ط±ط¨ط§ط±ظ‡ ط§ظپط²ظˆظ†ظ‡ ط§ظپط²ظˆط¯ظ† ط¨ط±ط®غŒ ط§ط² غŒط§ط¯ط¯ط§ط´طھ ظ‡ط§ ط¯ط± ظ¾ط§ظˆط±ظ‚غŒطŒ ظ‡ظ…ط§ظ†ظ†ط¯ ظ…ظ‡ط±طŒ غŒط§ط¯ط¯ط§ط´طھ ع©ظ¾غŒ ط±ط§غŒطھطŒ ط¯ط±غŒط§ظپطھ ط¨ط±ع¯ظ‡ ظ‡ط§غŒ ع†ط§ظ¾ ط´ط¯ظ‡ ظˆ غŒط§ ط§ظپط²ظˆط¯ظ† ظ„ظˆع¯ظˆظ‡ط§غŒ طھط¬ط§ط±غŒ. ط§ط¶ط§ظپظ‡ ع©ط±ط¯ظ† ط¨غŒط´طھط± غŒط§ط¯ط¯ط§ط´طھ ظ‡ط§غŒ ط´ط®طµغŒطŒ ظ‡ظ…ط§ظ†ظ†ط¯ طھط´ع©ط± ط§ط² ط®ط±غŒط¯ ط´ظ…ط§ غŒط§ طھط¨ط±غŒع© ظ…ظ†ط§ط³ط¨طھ ظ‡ط§ ظˆ ظ…ظˆط§ط±ط¯ ط¯غŒع¯ط± طھط§ط±غŒط® طµظˆط±طھطط³ط§ط¨ ط¢ط¯ط±ط³ ط´ط±ع©طھ/ظپط±ظˆط´ع¯ط§ظ‡ ظ„ظˆع¯ظˆغŒ ط´ط±ع©طھ/ظپط±ظˆط´ع¯ط§ظ‡ ظ†ط§ظ… ط´ط±ع©طھ/ظپط±ظˆط´ع¯ط§ظ‡ غŒط§ط¯ط¯ط§ط´طھظ‡ط§غŒ ظ…ط´طھط±غŒ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ط¯ط§ظ†ظ„ظˆط¯: ظ¾ط±ط³ط´ ظˆ ظ¾ط§ط³ط® ظ…ظ‡ط± ظ¾ط§ظˆط±ظ‚غŒ ط¨ط±ط§غŒ ع©ظ†طھط±ظ„ ظ¾غŒط´ط±ظپطھظ‡ ع©ظ¾غŒ ع©ظ† <code>your-theme-name/woocommerce/print/style.css</code> ط¨ظ‡ <code>woocommerce-delivery-notes/templates/print/style.css</code> ط¨ط±ط§غŒ ط§ط·ظ„ط§ط¹ط§طھ ط¨غŒط´طھط±: ظ¾ط±ط³ط´ ظ‡ط§غŒ ظ…طھط¯ط§ظˆظ„ ط¯ط±ط®ظˆط§ط³طھ ظ¾ط´طھغŒط¨ط§ظ†غŒ ط§ط² ظپط±ظˆظ… ط±ظپطھظ† ط¨ظ‡ ط¨ط±ع¯ظ‡ ظ¾غŒع©ط±ط¨ظ†ط¯غŒ ط¯ط± ط§غŒظ†ط¬ط§ ظ…غŒ طھظˆط§ظ†غŒط¯ ظ‚ظˆط§ظ†غŒظ† ط¨غŒط´طھط±غŒ ط±ط§ ط¨ظ‡ ط§ط¬ط±ط§ ط¨ع¯ط°ط§ط±غŒط¯ . ظ‡ظ…ط§ظ†ظ†ط¯ ظ‚ط§ظ†ظˆظ† ط¨ط±ع¯ط´طھ ط§ط² ظپط±ظˆط´طŒ ظˆ غŒط§ ظ‡ط± ظ‚ط§ظ†ظˆظ† ظˆ ظ…ظ‚ط±ط±ط§طھ ط¯ظˆظ„طھغŒ ظˆ ظ…ظˆط§ط±ط¯ ط¯غŒع¯ط± ط®ظˆط§ظ‡ط´ظ…ظ†ط¯ ط§ط³طھ ط§ظپط²ظˆظ†ظ‡ <a href="%s">WooCommerce Sequential Order Numbers</a>ط±ط§ ط¨ط±ظ¾ط§ط³ط§ط²غŒ ع©ط±ط¯ظ‡ ظˆ ط¨ظ‡ ظˆ ط±ط§غŒع¯ط§ظ† ظ¾ظˆغŒط§ ع©ظ†غŒط¯ ظپط§ع©طھظˆط± ظپط§ع©طھظˆط± ظˆ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ط¯ط±ط³ظ…طھ ط±ط§ط³طھ ع†ط§ظ¾ ط³ظپط§ط±ط´ ط±ط§ ظ…غŒ ط¨غŒظ†غŒط¯. ظˆ ط¨ط§ ع©ظ„غŒع© ط¨ط± غŒع©غŒ ط§ط² ط¯ع©ظ…ظ‡ ظ‡ط§غŒ ط²غŒط± ظ…غŒ طھظˆط§ظ†غŒط¯ ظپط§ع©طھظˆط± غŒط§ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ط±ط§ ع†ط§ظ¾ ع©ظ†غŒط¯. ظ…ط´ط®طµط§طھ ط³ظپط§ط±ط´ ظˆط¬ظˆط¯ ط¯ط§ط±ط¯<a href="%1$s">WooCommerce > Orders</a> ط¯ط± ظ¾ط§غŒغŒظ† ع†ظ†ط§ظ†ع†ظ‡ ظ†ط§ظ†ظˆط´طھظ‡ ط¨ظ…ط§ظ†ط¯طŒ ظ¾ط§ظˆط±ظ‚غŒ ع†ط§ظ¾ ظ†ظ…غŒ ط´ظˆط¯ ع†ظ†ط§ظ†ع†ظ‡ ظ†ط§ظ†ظˆط´طھظ‡ ط¨ظ…ط§ظ†ط¯طŒ ط¢ط¯ط±ط³ ع†ط§ظ¾ ظ†ظ…غŒ ط´ظˆط¯ ع†ظ†ط§ظ†ع†ظ‡ ظ†ط§ظ†ظˆط´طھظ‡ ط¨ظ…ط§ظ†ط¯طŒ غŒط§ط¯ط¯ط§ط´طھ ظ‡ط§غŒ ط´ط®طµغŒ ع†ط§ظ¾ ظ†ظ…غŒ ط´ظˆظ†ط¯ ع†ظ†ط§ظ†ع†ظ‡ ظ†ط§ظ†ظˆط´طھظ‡ ط¨ظ…ط§ظ†ط¯طŒ ظ‡غŒع† ع©ط¯ط§ظ… ط§ط² ظ‚ظˆط§ظ†غŒظ† ظˆ ط´ط±ط§غŒط· ع†ط§ظ¾ ظ†ظ…غŒ ط´ظˆط¯ ع†ظ†ط§ظ†ع†ظ‡ ظ†ط§ظ†ظˆط´طھظ‡ ط¨ظ…ط§ظ†ط¯طŒ ط§ط² ط¹ظ†ظˆط§ظ† طھط¹ط±غŒظپ ط´ط¯ظ‡ ظˆط¨ ط³ط§غŒطھ ط¯ط± طھظ†ط¸غŒظ…ط§طھ ظˆط±ط¯ظ¾ط±ط³ ط§ط³طھظپط§ط¯ظ‡ ظ…غŒ ط´ظˆط¯ ط®ط§ظ„غŒ ظ†ع©طھظ‡: ط´ظ…ط§ط±ظ‡ ط³ظپط§ط±ط´ ظ¾غŒع©ط±ط¨ظ†ط¯غŒ ط´ظ…ط§ط±ظ‡ ع¯ط°ط§ط±غŒ ط³ظپط§ط±ط´ ع†ط§ظ¾ ط³ظپط§ط±ط´ ط±ظˆط´ ظ¾ط±ط¯ط§ط®طھ غŒط§ط¯ط¯ط§ط´طھ ط´ط®طµغŒ ظ¾ظ„ط§ع¯غŒظ†: ع†ط§ظ¾ ظپط§ع©طھظˆط± ظˆ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ط¯ط± ظˆظˆع©ط§ظ…ط±ط³ ع†ط§ظ¾ ع†ط§ظ¾ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ع†ط§ظ¾ ظپط§ع©طھظˆط± ع†ط§ظ¾ ظپط§ع©طھظˆط±ظ‡ط§ ظˆ ط¨ط±ع¯ظ‡ ظ‡ط§غŒ ط±ط³غŒط¯ ط³ظپط§ط±ط´ ظ‡ط§ ط¨ط±ط§غŒ ط§ظپط²ظˆظ†ظ‡ ظپط±ظˆط´ع¯ط§ظ‡غŒ ظˆظˆع©ط§ظ…ط±ط³. ط´ظ…ط§ ظ…غŒ طھظˆط§ظ†غŒط¯ ط§ط·ظ„ط§ط¹ط§طھ ط´ط±ع©طھ / ظپط±ظˆط´ع¯ط§ظ‡ ظˆ ظ‡ظ…ع†ظ†غŒظ† غŒط§ط¯ط¯ط§ط´طھ ظ‡ط§غŒ ط´ط®طµغŒ ظˆ ط³غŒط§ط³طھ ظ‡ط§ ط¨ظ‡ ع†ط§ظ¾ ط¨ط±ع¯ظ‡ ظ‡ط§ ط¨غŒط§ظپط²ط§غŒغŒط¯. ع©ط§ظ„ط§ GitHub ظ¾ط±ظˆعکظ‡ ط¯ط± WordPress.org ظ¾ط±ظˆعکظ‡ ط¯ط± ع©ظ…غŒطھ ع¯غŒط±ظ†ط¯ظ‡ ط¨ط±ط¯ط§ط´طھظ† ظ„ظˆع¯ظˆ ط§ظپط²ظˆط¯ظ† ظ‚ظˆط§ظ†غŒظ†طŒ ط´ط±ط§غŒط·طŒ ظˆ ظ…ظˆط§ط±ط¯ ط¯غŒع¯ط± ط¨ط§ط±ع©ط¯: ط´ظ…ط§ط±ظ‡ ع¯ط°ط§ط±غŒ ظ¾غŒط§ظ¾غŒ ظ¾ظˆغŒط§ ط´ط¯ظ‡ ط§ط³طھ ط´ظ…ط§ط±ظ‡ ط³ظپط§ط±ط´ ظ¾غŒط§ظ¾غŒ ع¯ط°ط§ط´طھظ† ظ„ظˆع¯ظˆ ظ¾غŒع©ط±ط¨ظ†ط¯غŒ طھط§ط±غŒط® ط¨ط§ط±ط¨ط±غŒ Steve Clark, Triggvy Gunderson, David Decker ط¨ط±ع¯ط±ط¯ط§ظ† ظ¾ط§ط±ط³غŒ ط®ظ„غŒظ„ ط¯ظ„ط§ظˆط±ط§ظ† ظ¾ط´طھغŒط¨ط§ظ†غŒ ط¢ط¯ط±ط³ ظ¾ط³طھغŒ ط§ط² ط´ط±ع©طھ/ظپط±ظˆط´ع¯ط§ظ‡طŒ ع©ظ‡ ط¯ط± ط¨ط§ظ„ط§غŒ ظ„غŒط³طھ ط³ظپط§ط±ط´ط§طھطŒ ع†ط§ظ¾ ظ…غŒ ط´ظˆط¯ ط§غŒظ† ط§ظپط²ظˆظ†ظ‡ ط´ظ…ط§ ط±ط§ ظ‚ط§ط¯ط± ط¨ظ‡ ط§ظپط²ظˆط¯ظ† غŒع© ظپط§ع©طھظˆط± ظˆ غŒط§ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ط¨ط±ط§غŒ ع†ط§ظ¾ ط³ظپط§ط±ط´ط§طھ ط¯ط± ط§ظپط²ظˆظ†ظ‡ ظپط±ظˆط´ع¯ط§ظ‡غŒ ظˆظˆع©ط§ظ…ط±ط³ ظ…غŒ ع©ظ†ط¯. ط´ظ…ط§ ظ‚ط§ط¯ط± ط¨ظ‡ ط§ظپط²ظˆط¯ظ† ط¢ط¯ط±ط³ ظ¾ط³طھغŒ ط´ط±ع©طھ طŒ ظ‚ط¨ط¶ ظ‡ط§غŒ ط±ط³غŒط¯طŒ ط¨ط§ط²ظ¾ط±ط¯ط§ط®طھ ظˆ غŒط§ ط³غŒط§ط³طھ ظ‡ط§غŒ ط¯غŒع¯ط± ظˆ ظ†ط§ظ… طھط¬ط§ط±غŒ ط´ط±ع©طھ ط¯ط± ط¨ط§ظ„ط§ ظˆ ظ¾ط§غŒغŒظ† ط¨ط±ع¯ظ‡ ظ…غŒ ط¨ط§ط´غŒط¯. ط§غŒظ† ط§ظپط²ظˆظ†ظ‡ ط¨ظ‡ ط´ظ…ط§ ع©ظ…ع© ظ…غŒ ع©ظ†ط¯ طھط§ ط³ط±غŒط¹طھط± ع©ط§ط±ظ‡ط§غŒ ط±ظˆط²ط§ظ†ظ‡ ظˆ ظ…ط¯غŒط±غŒطھ ط³ظپط§ط±ط´ ظپط±ظˆط´ع¯ط§ظ‡ ط±ط§ ط§ظ†ط¬ط§ظ… ط¯ظ‡غŒط¯ . ظ‡ظ…ع†ظ†غŒظ† طھظˆطµغŒظ‡ ظ‡ط§ ظˆ ظ‚ظˆط§ظ†غŒظ† ط¨ط§ط²ظ¾ط±ط¯ط§ط®طھ ط±ط§ ط¨ظ‡ ظ…ط´طھط±غŒط§ظ† ط§ط¹ظ„ط§ظ… ع©ظ†غŒط¯. ظ…ط¬ظ…ظˆط¹ ظˆط²ظ†: ط²ظ…ط§ظ†غŒ ع©ظ‡ طھطµظˆغŒط± ع†ط§ظ¾ ظ…غŒ ط´ظˆط¯طŒ طھط±ط§ع©ظ… ظ¾غŒع©ط³ظ„ ط¢ظ† ط¨ظ‡ ط·ظˆط± ط®ظˆط¯ع©ط§ط± ظ‡ط´طھ ط¨ط±ط§ط¨ط± ط¨غŒط´طھط± ط§ط² ط§طµظ„ ظ…غŒ ط´ظˆط¯. ط§غŒظ† ط¨ظ‡ ط§غŒظ† ظ…ط¹ظ†غŒ ط§ط³طھ ع©ظ‡طŒع†ط§ظ¾ 1 ط§غŒظ†ع† ط¨ظ‡ طط¯ظˆط¯ 288 ظ¾غŒع©ط³ظ„ ط¨ط± ط±ظˆغŒ طµظپطظ‡ ظ†ظ…ط§غŒط´ ظ…ط·ط§ط¨ظ‚طھ ط¯ط§ط±ط¯. ط¨ظ‡ ط¹ظ†ظˆط§ظ† ظ…ط«ط§ظ„: غŒع© طھطµظˆغŒط± ط¨ط§ ط¹ط±ط¶ 576 ظ¾غŒع©ط³ظ„ ظˆ ط§ط±طھظپط§ط¹ 288 ظ¾غŒع©ط³ظ„طŒ ط§ظ†ط¯ط§ط²ظ‡ ع†ط§ظ¾ ط¯ط± طط¯ظˆط¯ 1 ط§غŒظ†ع† طھط§ 2 ط§غŒظ†ع† ظ…غŒ ط´ظˆط¯ ع†ط§ظ¾ ظپط§ع©طھظˆط± ظˆ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯ ط¯ط± ظˆظˆع©ط§ظ…ط±ط³ <a href="%1$s" target="%3$s" class="%4$s">ظ¾غŒط´ ظ†ظ…ط§غŒط´ ظ‚ط§ظ„ط¨ ظپط§ع©طھظˆط±</a> غŒط§ <a href="%2$s" target="%3$s" class="%4$s">ظ¾غŒط´ ظ†ظ…ط§غŒط´ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯</a>. ط´ظ…ط§ ظ…ط¬ظˆط² ع©ط§ظپغŒ ط¨ط±ط§غŒ ط¯ط³طھط±ط³غŒ ط¨ظ‡ ط§غŒظ† طµظپطظ‡ ط±ط§ ظ†ط¯ط§ط±غŒط¯ ظ†ط§ظ… ط´ط±ع©طھ/ظپط±ظˆط´ع¯ط§ظ‡ ط¨ط±ط§غŒ ط¨ط±ع¯ظ‡ ط±ط³غŒط¯
|
languages/woocommerce-delivery-notes-fa_IR.po
ADDED
@@ -0,0 +1,363 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: برگه رسید فروشگاه\n"
|
4 |
+
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2014-04-22 14:17+0330\n"
|
6 |
+
"Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
|
7 |
+
"Language-Team: www.qooqnos.com <khalil.delavaran@gmail.com>\n"
|
8 |
+
"Language: fa\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.3\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
+
|
17 |
+
#: classes/class-wcdn-settings.php:301
|
18 |
+
msgid ""
|
19 |
+
"You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice "
|
20 |
+
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery "
|
21 |
+
"note template</a>."
|
22 |
+
msgstr ""
|
23 |
+
"<a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">پیش نمایش قالب فاکتور</a> یا "
|
24 |
+
"<a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">پیش نمایش برگه رسید</a>."
|
25 |
+
|
26 |
+
#: classes/class-wcdn-settings.php:302
|
27 |
+
msgid ""
|
28 |
+
"For more advanced control copy <code>woocommerce-delivery-notes/templates/"
|
29 |
+
"print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</"
|
30 |
+
"code>."
|
31 |
+
msgstr ""
|
32 |
+
"برای کنترل پیشرفته کپی کن <code>your-theme-name/woocommerce/print/style.css</"
|
33 |
+
"code> به <code>woocommerce-delivery-notes/templates/print/style.css</code>"
|
34 |
+
|
35 |
+
#: templates/print/print-delivery-note.php:38
|
36 |
+
msgid "Billing Date"
|
37 |
+
msgstr "تاریخ صورتحساب"
|
38 |
+
|
39 |
+
#: templates/print/print-delivery-note.php:40
|
40 |
+
msgid "Shipping Date"
|
41 |
+
msgstr "تاریخ باربری"
|
42 |
+
|
43 |
+
#: templates/print/print-delivery-note.php:45
|
44 |
+
msgid "Order Number"
|
45 |
+
msgstr "شماره سفارش"
|
46 |
+
|
47 |
+
#: templates/print/print-delivery-note.php:49
|
48 |
+
msgid "Payment Method"
|
49 |
+
msgstr "روش پرداخت"
|
50 |
+
|
51 |
+
#: woocommerce-delivery-notes.php:0
|
52 |
+
msgid "2.0"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: classes/class-wcdn-settings.php:144
|
56 |
+
msgid "Get Community Support"
|
57 |
+
msgstr "درخواست پشتیبانی از فروم"
|
58 |
+
|
59 |
+
#: classes/class-wcdn-settings.php:212
|
60 |
+
msgid ""
|
61 |
+
"When the image is printed, its pixel density will automatically be eight "
|
62 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
63 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
64 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
65 |
+
"to 1 inch."
|
66 |
+
msgstr ""
|
67 |
+
"زمانی که تصویر چاپ می شود، تراکم پیکسل آن به طور خودکار هشت برابر بیشتر از "
|
68 |
+
"اصل می شود. این به این معنی است که،چاپ 1 اینچ به حدود 288 پیکسل بر روی صفحه "
|
69 |
+
"نمایش مطابقت دارد. به عنوان مثال: یک تصویر با عرض 576 پیکسل و ارتفاع 288 "
|
70 |
+
"پیکسل، اندازه چاپ در حدود 1 اینچ تا 2 اینچ می شود"
|
71 |
+
|
72 |
+
#: templates/print/print-delivery-note.php:58
|
73 |
+
msgid "Product"
|
74 |
+
msgstr "کالا"
|
75 |
+
|
76 |
+
#: templates/print/print-delivery-note.php:60
|
77 |
+
msgid "Totals"
|
78 |
+
msgstr "مجموع"
|
79 |
+
|
80 |
+
#: templates/print/print-delivery-note.php:70
|
81 |
+
msgid "Download:"
|
82 |
+
msgstr "دانلود:"
|
83 |
+
|
84 |
+
#: woocommerce-delivery-notes.php:291 woocommerce-delivery-notes.php:305
|
85 |
+
msgid "N/A"
|
86 |
+
msgstr "خالی"
|
87 |
+
|
88 |
+
#: classes/class-wcdn-settings.php:202
|
89 |
+
msgid "Company/Shop Logo"
|
90 |
+
msgstr "لوگوی شرکت/فروشگاه"
|
91 |
+
|
92 |
+
#: classes/class-wcdn-settings.php:207
|
93 |
+
msgid "Remove Logo"
|
94 |
+
msgstr "برداشتن لوگو"
|
95 |
+
|
96 |
+
#: classes/class-wcdn-settings.php:208
|
97 |
+
msgid "Set Logo"
|
98 |
+
msgstr "گذاشتن لوگو"
|
99 |
+
|
100 |
+
#: classes/class-wcdn-settings.php:210
|
101 |
+
msgid "A company/shop logo representing your business."
|
102 |
+
msgstr "لوگوی شرکت/فروشگاه به نمایندگی از کسب و کار شما"
|
103 |
+
|
104 |
+
#: classes/class-wcdn-settings.php:223
|
105 |
+
msgid "Your company/shop name for the Delivery Note."
|
106 |
+
msgstr "نام شرکت/فروشگاه برای برگه رسید"
|
107 |
+
|
108 |
+
#: classes/class-wcdn-settings.php:314
|
109 |
+
msgid "Sequential order number"
|
110 |
+
msgstr "شماره سفارش پیاپی"
|
111 |
+
|
112 |
+
#: classes/class-wcdn-settings.php:318
|
113 |
+
msgid "Sequential numbering is enabled."
|
114 |
+
msgstr "شماره گذاری پیاپی پویا شده است"
|
115 |
+
|
116 |
+
#: classes/class-wcdn-settings.php:320
|
117 |
+
msgid ""
|
118 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
119 |
+
"Numbers</a> Plugin."
|
120 |
+
msgstr ""
|
121 |
+
"خواهشمند است افزونه <a href=\"%s\">WooCommerce Sequential Order Numbers</"
|
122 |
+
"a>را برپاسازی کرده و به و رایگان پویا کنید"
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:0
|
125 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:203
|
129 |
+
msgid "Delivery Note"
|
130 |
+
msgstr "برگه رسید"
|
131 |
+
|
132 |
+
#: templates/print/print-delivery-note.php:59
|
133 |
+
msgid "Quantity"
|
134 |
+
msgstr "کمیت"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-print.php:63 classes/class-wcdn-print.php:68
|
137 |
+
#: classes/class-wcdn-print.php:73 classes/class-wcdn-print.php:78
|
138 |
+
msgid "You do not have sufficient permissions to access this page."
|
139 |
+
msgstr "شما مجوز کافی برای دسترسی به این صفحه را ندارید"
|
140 |
+
|
141 |
+
#: woocommerce-delivery-notes.php:134
|
142 |
+
msgid "Go to the settings page"
|
143 |
+
msgstr "رفتن به برگه پیکربندی"
|
144 |
+
|
145 |
+
#: woocommerce-delivery-notes.php:134
|
146 |
+
msgid "Settings"
|
147 |
+
msgstr "پیکربندی"
|
148 |
+
|
149 |
+
#: woocommerce-delivery-notes.php:124
|
150 |
+
msgid "FAQ"
|
151 |
+
msgstr "پرسش و پاسخ"
|
152 |
+
|
153 |
+
#: woocommerce-delivery-notes.php:125
|
154 |
+
msgid "Support"
|
155 |
+
msgstr "پشتیبانی"
|
156 |
+
|
157 |
+
#: classes/class-wcdn-settings.php:257
|
158 |
+
msgid "Returns Policy, Conditions, etc.:"
|
159 |
+
msgstr "افزودن قوانین، شرایط، و موارد دیگر"
|
160 |
+
|
161 |
+
#: templates/print/print-delivery-note.php:68
|
162 |
+
msgid "SKU:"
|
163 |
+
msgstr "بارکد:"
|
164 |
+
|
165 |
+
#: templates/print/print-delivery-note.php:69
|
166 |
+
msgid "Weight:"
|
167 |
+
msgstr "وزن:"
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:134
|
170 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
171 |
+
msgstr "پلاگین: چاپ فاکتور و برگه رسید در ووکامرس"
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:211 classes/class-wcdn-settings.php:224
|
174 |
+
#: classes/class-wcdn-settings.php:237 classes/class-wcdn-settings.php:250
|
175 |
+
#: classes/class-wcdn-settings.php:263 classes/class-wcdn-settings.php:276
|
176 |
+
msgid "Note:"
|
177 |
+
msgstr "نکته:"
|
178 |
+
|
179 |
+
#: classes/class-wcdn-settings.php:236
|
180 |
+
msgid ""
|
181 |
+
"The postal address of the company/shop, which gets printed right of the "
|
182 |
+
"company/shop name, above the order listings."
|
183 |
+
msgstr "آدرس پستی از شرکت/فروشگاه، که در بالای لیست سفارشات، چاپ می شود"
|
184 |
+
|
185 |
+
#: classes/class-wcdn-settings.php:249
|
186 |
+
msgid ""
|
187 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
188 |
+
"Your Order!, Merry Christmas!, etc.)."
|
189 |
+
msgstr ""
|
190 |
+
"اضافه کردن بیشتر یادداشت های شخصی، همانند تشکر از خرید شما یا تبریک مناسبت "
|
191 |
+
"ها و موارد دیگر"
|
192 |
+
|
193 |
+
#: classes/class-wcdn-settings.php:275
|
194 |
+
msgid ""
|
195 |
+
"Add some further footer imprint, copyright notes etc. to get the printed "
|
196 |
+
"sheets a bit more branded to your needs."
|
197 |
+
msgstr ""
|
198 |
+
"افزودن برخی از یادداشت ها در پاورقی، همانند مهر، یادداشت کپی رایت، دریافت "
|
199 |
+
"برگه های چاپ شده و یا افزودن لوگوهای تجاری."
|
200 |
+
|
201 |
+
#: classes/class-wcdn-settings.php:132 classes/class-wcdn-settings.php:135
|
202 |
+
msgid "About the Plugin"
|
203 |
+
msgstr "درباره افزونه"
|
204 |
+
|
205 |
+
#: classes/class-wcdn-settings.php:142
|
206 |
+
msgid "For more information:"
|
207 |
+
msgstr "برای اطلاعات بیشتر:"
|
208 |
+
|
209 |
+
#: classes/class-wcdn-settings.php:143
|
210 |
+
msgid "Frequently Asked Questions"
|
211 |
+
msgstr "پرسش های متداول"
|
212 |
+
|
213 |
+
#: classes/class-wcdn-settings.php:145
|
214 |
+
msgid "Project on WordPress.org"
|
215 |
+
msgstr " WordPress.org پروژه در"
|
216 |
+
|
217 |
+
#: classes/class-wcdn-settings.php:146
|
218 |
+
msgid "Project on GitHub"
|
219 |
+
msgstr "GitHub پروژه در"
|
220 |
+
|
221 |
+
#: classes/class-wcdn-settings.php:154
|
222 |
+
msgid "Print"
|
223 |
+
msgstr "چاپ"
|
224 |
+
|
225 |
+
#: classes/class-wcdn-settings.php:194
|
226 |
+
msgid "Invoices and Delivery Notes"
|
227 |
+
msgstr "فاکتور و برگه رسید"
|
228 |
+
|
229 |
+
#: classes/class-wcdn-settings.php:218
|
230 |
+
msgid "Company/Shop Name"
|
231 |
+
msgstr "نام شرکت/فروشگاه"
|
232 |
+
|
233 |
+
#: classes/class-wcdn-settings.php:225
|
234 |
+
msgid ""
|
235 |
+
"Leave blank to use the default Website/ Blog title defined in WordPress "
|
236 |
+
"settings."
|
237 |
+
msgstr ""
|
238 |
+
"چنانچه نانوشته بماند، از عنوان تعریف شده وب سایت در تنظیمات وردپرس استفاده "
|
239 |
+
"می شود"
|
240 |
+
|
241 |
+
#: classes/class-wcdn-settings.php:231
|
242 |
+
msgid "Company/Shop Address"
|
243 |
+
msgstr "آدرس شرکت/فروشگاه"
|
244 |
+
|
245 |
+
#: classes/class-wcdn-settings.php:238
|
246 |
+
msgid "Leave blank to not print an address."
|
247 |
+
msgstr "چنانچه نانوشته بماند، آدرس چاپ نمی شود"
|
248 |
+
|
249 |
+
#: classes/class-wcdn-settings.php:244
|
250 |
+
msgid "Personal Notes"
|
251 |
+
msgstr "یادداشت شخصی"
|
252 |
+
|
253 |
+
#: classes/class-wcdn-settings.php:251
|
254 |
+
msgid "Leave blank to not print any personal notes."
|
255 |
+
msgstr "چنانچه نانوشته بماند، یادداشت های شخصی چاپ نمی شوند"
|
256 |
+
|
257 |
+
#: classes/class-wcdn-settings.php:262
|
258 |
+
msgid ""
|
259 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
260 |
+
"returns policy in case the client would like to send back some goods. In "
|
261 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
262 |
+
"any required info in accordance with the statutory regulations."
|
263 |
+
msgstr ""
|
264 |
+
"در اینجا می توانید قوانین بیشتری را به اجرا بگذارید . همانند قانون برگشت از "
|
265 |
+
"فروش، و یا هر قانون و مقررات دولتی و موارد دیگر"
|
266 |
+
|
267 |
+
#: classes/class-wcdn-settings.php:264
|
268 |
+
msgid "Leave blank to not print any policies or conditions."
|
269 |
+
msgstr "چنانچه نانوشته بماند، هیچ کدام از قوانین و شرایط چاپ نمی شود"
|
270 |
+
|
271 |
+
#: classes/class-wcdn-settings.php:270
|
272 |
+
msgid "Footer Imprint"
|
273 |
+
msgstr "مهر پاورقی"
|
274 |
+
|
275 |
+
#: classes/class-wcdn-settings.php:277
|
276 |
+
msgid "Leave blank to not print a footer."
|
277 |
+
msgstr "چنانچه نانوشته بماند، پاورقی چاپ نمی شود"
|
278 |
+
|
279 |
+
#: classes/class-wcdn-settings.php:309
|
280 |
+
msgid "Order Numbering Options"
|
281 |
+
msgstr "پیکربندی شماره گذاری سفارش"
|
282 |
+
|
283 |
+
#: classes/class-wcdn-writepanel.php:92
|
284 |
+
msgid "Order Print"
|
285 |
+
msgstr "چاپ سفارش"
|
286 |
+
|
287 |
+
#: classes/class-wcdn-writepanel.php:76 classes/class-wcdn-writepanel.php:77
|
288 |
+
#: classes/class-wcdn-writepanel.php:102
|
289 |
+
msgid "Print Invoice"
|
290 |
+
msgstr "چاپ فاکتور"
|
291 |
+
|
292 |
+
#: classes/class-wcdn-writepanel.php:78 classes/class-wcdn-writepanel.php:80
|
293 |
+
#: classes/class-wcdn-writepanel.php:81 classes/class-wcdn-writepanel.php:82
|
294 |
+
#: classes/class-wcdn-writepanel.php:103
|
295 |
+
msgid "Print Delivery Note"
|
296 |
+
msgstr "چاپ برگه رسید"
|
297 |
+
|
298 |
+
#: woocommerce-delivery-notes.php:201
|
299 |
+
msgid "Invoice"
|
300 |
+
msgstr "فاکتور"
|
301 |
+
|
302 |
+
#: templates/print/print-delivery-note.php:20
|
303 |
+
msgid "Recipient"
|
304 |
+
msgstr "گیرنده"
|
305 |
+
|
306 |
+
#: templates/print/print-delivery-note.php:96
|
307 |
+
msgid "Customer Notes"
|
308 |
+
msgstr "یادداشتهای مشتری"
|
309 |
+
|
310 |
+
#: woocommerce-delivery-notes.php:0
|
311 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
312 |
+
msgstr "چاپ فاکتور و برگه رسید در ووکامرس"
|
313 |
+
|
314 |
+
#: woocommerce-delivery-notes.php:0
|
315 |
+
msgid ""
|
316 |
+
"Print order invoices & delivery notes for WooCommerce shop plugin. You can "
|
317 |
+
"add company/shop info as well as personal notes & policies to print pages."
|
318 |
+
msgstr ""
|
319 |
+
"چاپ فاکتورها و برگه های رسید سفارش ها برای افزونه فروشگاهی ووکامرس. شما می "
|
320 |
+
"توانید اطلاعات شرکت / فروشگاه و همچنین یادداشت های شخصی و سیاست ها به چاپ "
|
321 |
+
"برگه ها بیافزایید."
|
322 |
+
|
323 |
+
#: woocommerce-delivery-notes.php:0
|
324 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
325 |
+
msgstr ""
|
326 |
+
"Steve Clark, Triggvy Gunderson, David Decker برگردان پارسی خلیل دلاوران"
|
327 |
+
|
328 |
+
#: classes/class-wcdn-settings.php:136
|
329 |
+
msgid ""
|
330 |
+
"This plugin enables you to add a Invoice or simple Delivery Note page for "
|
331 |
+
"printing for your orders in WooCommerce shop plugin. You can add your "
|
332 |
+
"company postal address, further add personal notes, refund or other policies "
|
333 |
+
"and a footer note/branding. This helps speed up your daily shop and order "
|
334 |
+
"management. In some countries (e.g. in the European Union) it is also "
|
335 |
+
"required to advice the customer with proper refund policies so this little "
|
336 |
+
"plugin might help you a bit with that too."
|
337 |
+
msgstr ""
|
338 |
+
"این افزونه شما را قادر به افزودن یک فاکتور و یا برگه رسید برای چاپ سفارشات "
|
339 |
+
"در افزونه فروشگاهی ووکامرس می کند. شما قادر به افزودن آدرس پستی شرکت ، قبض "
|
340 |
+
"های رسید، بازپرداخت و یا سیاست های دیگر و نام تجاری شرکت در بالا و پایین "
|
341 |
+
"برگه می باشید. این افزونه به شما کمک می کند تا سریعتر کارهای روزانه و مدیریت "
|
342 |
+
"سفارش فروشگاه را انجام دهید . همچنین توصیه ها و قوانین بازپرداخت را به "
|
343 |
+
"مشتریان اعلام کنید."
|
344 |
+
|
345 |
+
#: classes/class-wcdn-settings.php:137
|
346 |
+
msgid ""
|
347 |
+
"Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a "
|
348 |
+
"single order view. On the right side you will see the Order Print meta box. "
|
349 |
+
"Click one of the buttons and you get the invoice or delivery note printing "
|
350 |
+
"page. Yes, it is that easy :-)."
|
351 |
+
msgstr ""
|
352 |
+
" درسمت راست چاپ سفارش را می بینید. و با کلیک بر یکی از دکمه های زیر می "
|
353 |
+
"توانید فاکتور یا برگه رسید را چاپ کنید. مشخصات سفارش وجود دارد<a href=\"%1$s"
|
354 |
+
"\">WooCommerce > Orders</a> در پایین"
|
355 |
+
|
356 |
+
#~ msgid "Order Date"
|
357 |
+
#~ msgstr "تاریخ سفارش"
|
358 |
+
|
359 |
+
#~ msgid "Email"
|
360 |
+
#~ msgstr "ایمیل"
|
361 |
+
|
362 |
+
#~ msgid "Phone"
|
363 |
+
#~ msgstr "تلفن"
|
languages/woocommerce-delivery-notes-nl_NL.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-nl_NL.po
CHANGED
@@ -2,294 +2,427 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
15 |
|
16 |
-
#:
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgstr ""
|
19 |
|
20 |
-
|
21 |
-
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
msgid "
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
msgid "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
|
|
|
|
|
|
59 |
|
60 |
-
#:
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
|
65 |
-
#:
|
66 |
-
msgid "
|
|
|
|
|
67 |
msgstr ""
|
68 |
|
69 |
-
#:
|
70 |
-
msgid "
|
71 |
msgstr ""
|
72 |
|
73 |
-
|
74 |
-
|
|
|
75 |
msgstr ""
|
76 |
|
77 |
-
#:
|
78 |
-
msgid "
|
|
|
|
|
79 |
msgstr ""
|
80 |
|
81 |
-
#:
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#:
|
86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
|
94 |
-
|
|
|
95 |
msgstr ""
|
96 |
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
-
#:
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
|
|
112 |
|
113 |
-
|
114 |
-
#:
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
msgstr "
|
119 |
|
120 |
-
#:
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
127 |
|
128 |
-
|
129 |
-
|
130 |
-
|
|
|
131 |
|
132 |
-
#:
|
133 |
-
|
134 |
-
|
|
|
135 |
|
136 |
-
#:
|
137 |
-
|
138 |
-
|
|
|
|
|
139 |
|
140 |
-
#:
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#:
|
153 |
-
|
154 |
-
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Opmerking:"
|
160 |
|
161 |
-
#:
|
162 |
-
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
msgstr ""
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
msgstr ""
|
172 |
|
173 |
-
#:
|
174 |
-
|
175 |
-
msgid "About the Plugin"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
msgid "
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
-
msgid "
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
msgstr ""
|
189 |
|
190 |
-
#:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
|
194 |
-
#:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#:
|
199 |
-
|
|
|
|
|
|
|
200 |
msgstr ""
|
201 |
|
202 |
-
#:
|
203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
msgstr ""
|
205 |
|
206 |
-
#:
|
207 |
-
|
|
|
|
|
|
|
|
|
|
|
208 |
msgstr ""
|
209 |
|
210 |
-
|
211 |
-
|
|
|
212 |
msgstr ""
|
213 |
|
214 |
-
|
215 |
-
|
|
|
216 |
msgstr ""
|
217 |
|
218 |
-
#:
|
219 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
223 |
-
|
|
|
224 |
msgstr ""
|
225 |
|
226 |
-
|
227 |
-
|
|
|
228 |
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
msgstr ""
|
233 |
|
234 |
-
#:
|
235 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgstr ""
|
237 |
|
238 |
-
|
239 |
-
|
|
|
|
|
240 |
msgstr ""
|
241 |
|
242 |
-
|
243 |
-
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#:
|
251 |
-
|
252 |
-
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr "Print Factuur"
|
255 |
|
256 |
-
|
257 |
-
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Print Bestelbon"
|
263 |
|
264 |
-
|
265 |
-
|
266 |
-
msgstr "Factuur"
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
msgstr "Ontvanger"
|
271 |
|
272 |
-
|
273 |
-
|
274 |
-
msgstr ""
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
msgstr "WooCommerce Print Invoices & Delivery Notes"
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
msgstr ""
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
msgstr ""
|
291 |
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
|
|
295 |
|
|
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
7 |
+
"POT-Creation-Date: 2014-04-11 22:19+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-04-16 20:27+0100\n"
|
9 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: nl_NL\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.6.4\n"
|
17 |
+
|
18 |
+
#: ../includes/class-wcdn-settings.php:90 ../includes/class-wcdn-theme.php:52
|
19 |
+
#: ../includes/class-wcdn-theme.php:71
|
20 |
+
#: ../includes/wcdn-template-functions.php:118
|
21 |
+
msgid "Print"
|
22 |
+
msgstr "Print"
|
23 |
|
24 |
+
#: ../includes/class-wcdn-settings.php:128
|
25 |
+
#, fuzzy
|
26 |
+
msgid "Print Order"
|
27 |
+
msgstr "Print"
|
28 |
+
|
29 |
+
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-settings.php:147
|
31 |
+
#, php-format
|
32 |
+
msgid ""
|
33 |
+
"You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">invoice "
|
34 |
+
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery "
|
35 |
+
"note template</a>."
|
36 |
msgstr ""
|
37 |
|
38 |
+
# @ woocommerce-delivery-notes
|
39 |
+
#: ../includes/class-wcdn-settings.php:148
|
40 |
+
msgid ""
|
41 |
+
"With the FAQ in the readme file you can learn how to customize the template."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../includes/class-wcdn-settings.php:159
|
45 |
+
msgid "Company/Shop Logo"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../includes/class-wcdn-settings.php:165
|
49 |
+
msgid "Remove Logo"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../includes/class-wcdn-settings.php:166
|
53 |
+
msgid "Set Logo"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../includes/class-wcdn-settings.php:170
|
57 |
+
msgid "A company/shop logo representing your business."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: ../includes/class-wcdn-settings.php:171
|
61 |
+
#: ../includes/class-wcdn-settings.php:184
|
62 |
+
#: ../includes/class-wcdn-settings.php:197
|
63 |
+
#: ../includes/class-wcdn-settings.php:210
|
64 |
+
#: ../includes/class-wcdn-settings.php:223
|
65 |
+
#: ../includes/class-wcdn-settings.php:236
|
66 |
+
#: ../includes/class-wcdn-settings.php:312
|
67 |
+
#: ../includes/class-wcdn-settings.php:328
|
68 |
+
#: ../includes/class-wcdn-settings.php:344
|
69 |
+
msgid "Note:"
|
70 |
+
msgstr "Opmerking:"
|
71 |
|
72 |
+
#: ../includes/class-wcdn-settings.php:172
|
73 |
+
msgid ""
|
74 |
+
"When the image is printed, its pixel density will automatically be eight "
|
75 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
76 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
77 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
78 |
+
"to 1 inch."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../includes/class-wcdn-settings.php:178
|
82 |
+
msgid "Company/Shop Name"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class-wcdn-settings.php:183
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
msgstr ""
|
88 |
|
89 |
+
# @ woocommerce-delivery-notes
|
90 |
+
#: ../includes/class-wcdn-settings.php:185
|
91 |
+
msgid ""
|
92 |
+
"Leave blank to use the default Website/Blog title defined in WordPress "
|
93 |
+
"settings. The name will be ignored when a Logo is set."
|
94 |
+
msgstr ""
|
95 |
|
96 |
+
#: ../includes/class-wcdn-settings.php:191
|
97 |
+
msgid "Company/Shop Address"
|
98 |
msgstr ""
|
99 |
|
100 |
+
# @ woocommerce-delivery-notes
|
101 |
+
#: ../includes/class-wcdn-settings.php:196
|
102 |
+
msgid ""
|
103 |
+
"The postal address of the company/shop or even e-mail or telephone, which "
|
104 |
+
"gets printed right after the company/shop name."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../includes/class-wcdn-settings.php:198
|
108 |
+
msgid "Leave blank to not print an address."
|
109 |
msgstr ""
|
110 |
|
111 |
+
# @ woocommerce-delivery-notes
|
112 |
+
#: ../includes/class-wcdn-settings.php:204
|
113 |
+
msgid "Complimentary close"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../includes/class-wcdn-settings.php:209
|
117 |
+
msgid ""
|
118 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
119 |
+
"Your Order!, Merry Christmas!, etc.)."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: ../includes/class-wcdn-settings.php:211
|
123 |
+
msgid "Leave blank to not print any personal notes."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../includes/class-wcdn-settings.php:217
|
127 |
+
#, fuzzy
|
128 |
+
msgid "Returns Policy, Conditions, etc"
|
129 |
+
msgstr "Algemene Voorwaarden:"
|
130 |
+
|
131 |
+
#: ../includes/class-wcdn-settings.php:222
|
132 |
+
msgid ""
|
133 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
134 |
+
"returns policy in case the client would like to send back some goods. In "
|
135 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
136 |
+
"any required info in accordance with the statutory regulations."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../includes/class-wcdn-settings.php:224
|
140 |
+
msgid "Leave blank to not print any policies or conditions."
|
141 |
msgstr ""
|
142 |
|
143 |
+
# @ woocommerce-delivery-notes
|
144 |
+
#: ../includes/class-wcdn-settings.php:230
|
145 |
+
msgid "Footer"
|
146 |
msgstr ""
|
147 |
|
148 |
+
# @ woocommerce-delivery-notes
|
149 |
+
#: ../includes/class-wcdn-settings.php:235
|
150 |
+
msgid ""
|
151 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
152 |
+
"This makes the printed sheets a bit more branded."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../includes/class-wcdn-settings.php:237
|
156 |
+
msgid "Leave blank to not print a footer."
|
157 |
+
msgstr ""
|
158 |
|
159 |
+
#: ../includes/class-wcdn-settings.php:244
|
160 |
+
msgid "Front-end Options"
|
161 |
+
msgstr ""
|
162 |
|
163 |
+
# @ woocommerce-delivery-notes
|
164 |
+
#: ../includes/class-wcdn-settings.php:249
|
165 |
+
msgid "Print Page Endpoint"
|
166 |
+
msgstr ""
|
167 |
|
168 |
+
# @ woocommerce-delivery-notes
|
169 |
+
#: ../includes/class-wcdn-settings.php:256
|
170 |
+
msgid ""
|
171 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
172 |
+
"should be unique."
|
173 |
+
msgstr ""
|
174 |
|
175 |
+
#: ../includes/class-wcdn-settings.php:262
|
176 |
+
msgid "Print Buttons"
|
177 |
+
msgstr ""
|
178 |
|
179 |
+
# @ woocommerce-delivery-notes
|
180 |
+
#: ../includes/class-wcdn-settings.php:269
|
181 |
+
msgid "Show print button on the \"View Order\" page"
|
182 |
+
msgstr ""
|
183 |
|
184 |
+
# @ woocommerce-delivery-notes
|
185 |
+
#: ../includes/class-wcdn-settings.php:276
|
186 |
+
msgid "Show print buttons on the \"My Account\" page"
|
187 |
+
msgstr ""
|
188 |
|
189 |
+
#: ../includes/class-wcdn-settings.php:284
|
190 |
+
#, fuzzy
|
191 |
+
msgid "Order Numbering"
|
192 |
+
msgstr "Print Bestelling"
|
193 |
|
194 |
+
#: ../includes/class-wcdn-settings.php:289
|
195 |
+
#: ../includes/wcdn-template-functions.php:206
|
196 |
+
#, fuzzy
|
197 |
+
msgid "Invoice Number"
|
198 |
+
msgstr "Factuur"
|
199 |
|
200 |
+
#: ../includes/class-wcdn-settings.php:297
|
201 |
+
msgid "Create invoice numbers"
|
202 |
+
msgstr ""
|
203 |
|
204 |
+
#: ../includes/class-wcdn-settings.php:304
|
205 |
+
msgid "Invoice Number Start"
|
206 |
+
msgstr ""
|
207 |
|
208 |
+
#: ../includes/class-wcdn-settings.php:311
|
209 |
+
msgid "Start the numbering at the specified number."
|
210 |
+
msgstr ""
|
211 |
|
212 |
+
#: ../includes/class-wcdn-settings.php:313
|
213 |
+
msgid "Use only integers."
|
214 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
215 |
|
216 |
+
#: ../includes/class-wcdn-settings.php:314
|
217 |
+
#: ../includes/class-wcdn-settings.php:330
|
218 |
+
#: ../includes/class-wcdn-settings.php:346
|
219 |
+
msgid "Already created invoice numbers are not affected by changes."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-wcdn-settings.php:320
|
223 |
+
msgid "Invoice Number Prefix"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../includes/class-wcdn-settings.php:327
|
227 |
+
msgid "This text will be prepended to the invoice number."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-wcdn-settings.php:329
|
231 |
+
msgid "Leave blank to not add a prefix."
|
|
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../includes/class-wcdn-settings.php:336
|
235 |
+
msgid "Invoice Number Suffix"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../includes/class-wcdn-settings.php:343
|
239 |
+
msgid "This text will be appended to the invoice number."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-wcdn-settings.php:345
|
243 |
+
msgid "Leave blank to not add a suffix."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-wcdn-settings.php:352
|
247 |
+
msgid "Sequential Order Number"
|
248 |
+
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-wcdn-settings.php:356
|
251 |
+
msgid "Sequential numbering is enabled."
|
252 |
+
msgstr ""
|
253 |
|
254 |
+
#: ../includes/class-wcdn-settings.php:358
|
255 |
+
#, php-format
|
256 |
+
msgid ""
|
257 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
258 |
+
"Numbers</a> Plugin."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../includes/class-wcdn-writepanel.php:83
|
262 |
+
#: ../includes/class-wcdn-writepanel.php:84
|
263 |
+
#: ../includes/class-wcdn-writepanel.php:105
|
264 |
+
#: ../includes/class-wcdn-writepanel.php:106
|
265 |
+
#: ../includes/class-wcdn-writepanel.php:192
|
266 |
+
msgid "Print Invoice"
|
267 |
+
msgstr "Print Factuur"
|
268 |
+
|
269 |
+
#: ../includes/class-wcdn-writepanel.php:86
|
270 |
+
#: ../includes/class-wcdn-writepanel.php:87
|
271 |
+
#: ../includes/class-wcdn-writepanel.php:108
|
272 |
+
#: ../includes/class-wcdn-writepanel.php:109
|
273 |
+
#: ../includes/class-wcdn-writepanel.php:193
|
274 |
+
msgid "Print Delivery Note"
|
275 |
+
msgstr "Print Bestelbon"
|
276 |
+
|
277 |
+
#: ../includes/class-wcdn-writepanel.php:164
|
278 |
+
#, fuzzy, php-format
|
279 |
+
msgid "Invoice created."
|
280 |
+
msgid_plural "%s invoices created."
|
281 |
+
msgstr[0] "Factuur"
|
282 |
+
msgstr[1] "Factuur"
|
283 |
+
|
284 |
+
#: ../includes/class-wcdn-writepanel.php:166
|
285 |
+
#, fuzzy, php-format
|
286 |
+
msgid "Delivery note created."
|
287 |
+
msgid_plural "%s delivery notes created."
|
288 |
+
msgstr[0] "Pakbon"
|
289 |
+
msgstr[1] "Pakbon"
|
290 |
+
|
291 |
+
#: ../includes/class-wcdn-writepanel.php:170
|
292 |
+
#, fuzzy
|
293 |
+
msgid "Print now"
|
294 |
+
msgstr "Print Factuur"
|
295 |
+
|
296 |
+
#: ../includes/class-wcdn-writepanel.php:181
|
297 |
+
#, fuzzy
|
298 |
+
msgid "Order Printing"
|
299 |
+
msgstr "Print Bestelling"
|
300 |
+
|
301 |
+
#: ../includes/class-wcdn-writepanel.php:197
|
302 |
+
#, fuzzy
|
303 |
+
msgid "Invoice number: "
|
304 |
+
msgstr "Factuur"
|
305 |
+
|
306 |
+
#: ../includes/wcdn-template-functions.php:32
|
307 |
+
msgid "Invoice"
|
308 |
+
msgstr "Factuur"
|
309 |
+
|
310 |
+
#: ../includes/wcdn-template-functions.php:34
|
311 |
+
msgid "Delivery Note"
|
312 |
+
msgstr "Pakbon"
|
313 |
+
|
314 |
+
#: ../includes/wcdn-template-functions.php:36
|
315 |
+
#, fuzzy
|
316 |
+
msgid "Order"
|
317 |
+
msgstr "Print Bestelling"
|
318 |
+
|
319 |
+
#: ../includes/wcdn-template-functions.php:212
|
320 |
+
msgid "Order Number"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../includes/wcdn-template-functions.php:217
|
324 |
+
#, fuzzy
|
325 |
+
msgid "Order Date"
|
326 |
+
msgstr "Print Bestelling"
|
327 |
+
|
328 |
+
#: ../includes/wcdn-template-functions.php:222
|
329 |
+
msgid "Payment Method"
|
330 |
msgstr ""
|
331 |
|
332 |
+
# @ woocommerce-delivery-notes
|
333 |
+
#: ../includes/wcdn-template-functions.php:228
|
334 |
+
msgid "Email"
|
335 |
msgstr ""
|
336 |
|
337 |
+
# @ woocommerce-delivery-notes
|
338 |
+
#: ../includes/wcdn-template-functions.php:235
|
339 |
+
msgid "Telephone"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ../includes/wcdn-template-functions.php:261
|
343 |
+
msgid "SKU:"
|
344 |
+
msgstr "Art.Nr."
|
345 |
+
|
346 |
+
# @ woocommerce-delivery-notes
|
347 |
+
#: ../templates/print-order/print-content.php:28
|
348 |
+
msgid "Billing Address"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../templates/print-order/print-content.php:31
|
352 |
+
#: ../templates/print-order/print-content.php:42
|
353 |
+
msgid "N/A"
|
354 |
msgstr ""
|
355 |
|
356 |
+
# @ woocommerce-delivery-notes
|
357 |
+
#: ../templates/print-order/print-content.php:39
|
358 |
+
msgid "Shipping Address"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../templates/print-order/print-content.php:74
|
362 |
+
msgid "Product"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../templates/print-order/print-content.php:75
|
366 |
+
msgid "Quantity"
|
367 |
+
msgstr "Hoeveelheid"
|
368 |
+
|
369 |
+
#: ../templates/print-order/print-content.php:76
|
370 |
+
#, fuzzy
|
371 |
+
msgid "Total"
|
372 |
+
msgstr "Totaal"
|
373 |
+
|
374 |
+
#: ../templates/print-order/print-content.php:100
|
375 |
+
msgid "Download:"
|
376 |
msgstr ""
|
377 |
|
378 |
+
# @ woocommerce-delivery-notes
|
379 |
+
#: ../templates/print-order/print-content.php:101
|
380 |
+
#, php-format
|
381 |
+
msgid "%s Files"
|
382 |
msgstr ""
|
383 |
|
384 |
+
# @ woocommerce-delivery-notes
|
385 |
+
#: ../templates/print-order/print-content.php:148
|
386 |
+
msgid "Customer Note"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../woocommerce-delivery-notes.php:144
|
390 |
+
msgid "Go to the settings page"
|
391 |
+
msgstr "Ga naar de instellingen"
|
392 |
|
393 |
+
#: ../woocommerce-delivery-notes.php:144
|
394 |
+
msgid "Settings"
|
395 |
+
msgstr "Instellingen"
|
|
|
|
|
396 |
|
397 |
+
#~ msgid "2.0"
|
398 |
+
#~ msgstr "2.0"
|
|
|
|
|
|
|
|
|
|
|
399 |
|
400 |
+
#~ msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
401 |
+
#~ msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
|
|
402 |
|
403 |
+
#~ msgid "You do not have sufficient permissions to access this page."
|
404 |
+
#~ msgstr "U heeft niet voldoende rechten om deze pagina te bekijken."
|
|
|
405 |
|
406 |
+
#~ msgid "FAQ"
|
407 |
+
#~ msgstr "FAQ"
|
|
|
408 |
|
409 |
+
#~ msgid "Support"
|
410 |
+
#~ msgstr "Ondersteuning"
|
|
|
411 |
|
412 |
+
#~ msgid "Weight:"
|
413 |
+
#~ msgstr "Gewicht:"
|
|
|
414 |
|
415 |
+
#~ msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
416 |
+
#~ msgstr "Plugin: WooCommerce Print Invoices & Delivery Notes "
|
|
|
417 |
|
418 |
+
#~ msgid "Project on GitHub"
|
419 |
+
#~ msgstr "Project op GitHub "
|
|
|
420 |
|
421 |
+
#~ msgid "Recipient"
|
422 |
+
#~ msgstr "Ontvanger"
|
423 |
+
|
424 |
+
#~ msgid "WooCommerce Print Invoices & Delivery Notes"
|
425 |
+
#~ msgstr "WooCommerce Print Invoices & Delivery Notes"
|
426 |
|
427 |
+
#~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
428 |
+
#~ msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
languages/woocommerce-delivery-notes.pot
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
-
"POT-Creation-Date: 2014-04-
|
13 |
-
"PO-Revision-Date: 2014-04-
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: en\n"
|
@@ -81,6 +81,9 @@ msgstr ""
|
|
81 |
#: ../includes/class-wcdn-settings.php:210
|
82 |
#: ../includes/class-wcdn-settings.php:223
|
83 |
#: ../includes/class-wcdn-settings.php:236
|
|
|
|
|
|
|
84 |
msgid "Note:"
|
85 |
msgstr ""
|
86 |
|
@@ -128,9 +131,8 @@ msgstr ""
|
|
128 |
msgid "Leave blank to not print an address."
|
129 |
msgstr ""
|
130 |
|
131 |
-
# @ woocommerce-delivery-notes
|
132 |
#: ../includes/class-wcdn-settings.php:204
|
133 |
-
msgid "Complimentary
|
134 |
msgstr ""
|
135 |
|
136 |
# @ woocommerce-delivery-notes
|
@@ -181,9 +183,8 @@ msgstr ""
|
|
181 |
msgid "Leave blank to not print a footer."
|
182 |
msgstr ""
|
183 |
|
184 |
-
# @ woocommerce-delivery-notes
|
185 |
#: ../includes/class-wcdn-settings.php:244
|
186 |
-
msgid "Options"
|
187 |
msgstr ""
|
188 |
|
189 |
# @ woocommerce-delivery-notes
|
@@ -198,9 +199,8 @@ msgid ""
|
|
198 |
"should be unique."
|
199 |
msgstr ""
|
200 |
|
201 |
-
# @ woocommerce-delivery-notes
|
202 |
#: ../includes/class-wcdn-settings.php:262
|
203 |
-
msgid "
|
204 |
msgstr ""
|
205 |
|
206 |
# @ woocommerce-delivery-notes
|
@@ -218,18 +218,68 @@ msgstr ""
|
|
218 |
msgid "Order Numbering"
|
219 |
msgstr ""
|
220 |
|
221 |
-
# @ woocommerce-delivery-notes
|
222 |
#: ../includes/class-wcdn-settings.php:289
|
223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgstr ""
|
225 |
|
226 |
# @ woocommerce-delivery-notes
|
227 |
-
#: ../includes/class-wcdn-settings.php:
|
228 |
msgid "Sequential numbering is enabled."
|
229 |
msgstr ""
|
230 |
|
231 |
# @ woocommerce-delivery-notes
|
232 |
-
#: ../includes/class-wcdn-settings.php:
|
233 |
#, php-format
|
234 |
msgid ""
|
235 |
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
@@ -241,7 +291,7 @@ msgstr ""
|
|
241 |
#: ../includes/class-wcdn-writepanel.php:84
|
242 |
#: ../includes/class-wcdn-writepanel.php:105
|
243 |
#: ../includes/class-wcdn-writepanel.php:106
|
244 |
-
#: ../includes/class-wcdn-writepanel.php:
|
245 |
msgid "Print Invoice"
|
246 |
msgstr ""
|
247 |
|
@@ -250,7 +300,7 @@ msgstr ""
|
|
250 |
#: ../includes/class-wcdn-writepanel.php:87
|
251 |
#: ../includes/class-wcdn-writepanel.php:108
|
252 |
#: ../includes/class-wcdn-writepanel.php:109
|
253 |
-
#: ../includes/class-wcdn-writepanel.php:
|
254 |
msgid "Print Delivery Note"
|
255 |
msgstr ""
|
256 |
|
@@ -280,6 +330,10 @@ msgstr ""
|
|
280 |
msgid "Order Printing"
|
281 |
msgstr ""
|
282 |
|
|
|
|
|
|
|
|
|
283 |
# @ woocommerce-delivery-notes
|
284 |
#: ../includes/wcdn-template-functions.php:32
|
285 |
msgid "Invoice"
|
@@ -296,31 +350,31 @@ msgid "Order"
|
|
296 |
msgstr ""
|
297 |
|
298 |
# @ woocommerce-delivery-notes
|
299 |
-
#: ../includes/wcdn-template-functions.php:
|
300 |
msgid "Order Number"
|
301 |
msgstr ""
|
302 |
|
303 |
# @ woocommerce-delivery-notes
|
304 |
-
#: ../includes/wcdn-template-functions.php:
|
305 |
msgid "Order Date"
|
306 |
msgstr ""
|
307 |
|
308 |
# @ woocommerce-delivery-notes
|
309 |
-
#: ../includes/wcdn-template-functions.php:
|
310 |
msgid "Payment Method"
|
311 |
msgstr ""
|
312 |
|
313 |
# @ woocommerce-delivery-notes
|
314 |
-
#: ../includes/wcdn-template-functions.php:
|
315 |
msgid "Email"
|
316 |
msgstr ""
|
317 |
|
318 |
# @ woocommerce-delivery-notes
|
319 |
-
#: ../includes/wcdn-template-functions.php:
|
320 |
msgid "Telephone"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../includes/wcdn-template-functions.php:
|
324 |
msgid "SKU:"
|
325 |
msgstr ""
|
326 |
|
@@ -345,8 +399,12 @@ msgstr ""
|
|
345 |
msgid "Product"
|
346 |
msgstr ""
|
347 |
|
348 |
-
# @ woocommerce-delivery-notes
|
349 |
#: ../templates/print-order/print-content.php:75
|
|
|
|
|
|
|
|
|
|
|
350 |
msgid "Total"
|
351 |
msgstr ""
|
352 |
|
@@ -362,7 +420,7 @@ msgid "%s Files"
|
|
362 |
msgstr ""
|
363 |
|
364 |
# @ woocommerce-delivery-notes
|
365 |
-
#: ../templates/print-order/print-content.php:
|
366 |
msgid "Customer Note"
|
367 |
msgstr ""
|
368 |
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2014-04-17 20:02+0100\n"
|
13 |
+
"PO-Revision-Date: 2014-04-17 20:03+0100\n"
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: en\n"
|
81 |
#: ../includes/class-wcdn-settings.php:210
|
82 |
#: ../includes/class-wcdn-settings.php:223
|
83 |
#: ../includes/class-wcdn-settings.php:236
|
84 |
+
#: ../includes/class-wcdn-settings.php:312
|
85 |
+
#: ../includes/class-wcdn-settings.php:328
|
86 |
+
#: ../includes/class-wcdn-settings.php:344
|
87 |
msgid "Note:"
|
88 |
msgstr ""
|
89 |
|
131 |
msgid "Leave blank to not print an address."
|
132 |
msgstr ""
|
133 |
|
|
|
134 |
#: ../includes/class-wcdn-settings.php:204
|
135 |
+
msgid "Complimentary Close"
|
136 |
msgstr ""
|
137 |
|
138 |
# @ woocommerce-delivery-notes
|
183 |
msgid "Leave blank to not print a footer."
|
184 |
msgstr ""
|
185 |
|
|
|
186 |
#: ../includes/class-wcdn-settings.php:244
|
187 |
+
msgid "Front-end Options"
|
188 |
msgstr ""
|
189 |
|
190 |
# @ woocommerce-delivery-notes
|
199 |
"should be unique."
|
200 |
msgstr ""
|
201 |
|
|
|
202 |
#: ../includes/class-wcdn-settings.php:262
|
203 |
+
msgid "Print Buttons"
|
204 |
msgstr ""
|
205 |
|
206 |
# @ woocommerce-delivery-notes
|
218 |
msgid "Order Numbering"
|
219 |
msgstr ""
|
220 |
|
|
|
221 |
#: ../includes/class-wcdn-settings.php:289
|
222 |
+
#: ../includes/wcdn-template-functions.php:208
|
223 |
+
msgid "Invoice Number"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: ../includes/class-wcdn-settings.php:297
|
227 |
+
msgid "Create invoice numbers"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: ../includes/class-wcdn-settings.php:304
|
231 |
+
msgid "Invoice Number Start"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../includes/class-wcdn-settings.php:311
|
235 |
+
msgid "Start the numbering at the specified number."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: ../includes/class-wcdn-settings.php:313
|
239 |
+
msgid "Use only integers."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: ../includes/class-wcdn-settings.php:314
|
243 |
+
#: ../includes/class-wcdn-settings.php:330
|
244 |
+
#: ../includes/class-wcdn-settings.php:346
|
245 |
+
msgid "Already created invoice numbers are not affected by changes."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../includes/class-wcdn-settings.php:320
|
249 |
+
msgid "Invoice Number Prefix"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../includes/class-wcdn-settings.php:327
|
253 |
+
msgid "This text will be prepended to the invoice number."
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../includes/class-wcdn-settings.php:329
|
257 |
+
msgid "Leave blank to not add a prefix."
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: ../includes/class-wcdn-settings.php:336
|
261 |
+
msgid "Invoice Number Suffix"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: ../includes/class-wcdn-settings.php:343
|
265 |
+
msgid "This text will be appended to the invoice number."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: ../includes/class-wcdn-settings.php:345
|
269 |
+
msgid "Leave blank to not add a suffix."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: ../includes/class-wcdn-settings.php:352
|
273 |
+
msgid "Sequential Order Number"
|
274 |
msgstr ""
|
275 |
|
276 |
# @ woocommerce-delivery-notes
|
277 |
+
#: ../includes/class-wcdn-settings.php:356
|
278 |
msgid "Sequential numbering is enabled."
|
279 |
msgstr ""
|
280 |
|
281 |
# @ woocommerce-delivery-notes
|
282 |
+
#: ../includes/class-wcdn-settings.php:358
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
291 |
#: ../includes/class-wcdn-writepanel.php:84
|
292 |
#: ../includes/class-wcdn-writepanel.php:105
|
293 |
#: ../includes/class-wcdn-writepanel.php:106
|
294 |
+
#: ../includes/class-wcdn-writepanel.php:192
|
295 |
msgid "Print Invoice"
|
296 |
msgstr ""
|
297 |
|
300 |
#: ../includes/class-wcdn-writepanel.php:87
|
301 |
#: ../includes/class-wcdn-writepanel.php:108
|
302 |
#: ../includes/class-wcdn-writepanel.php:109
|
303 |
+
#: ../includes/class-wcdn-writepanel.php:193
|
304 |
msgid "Print Delivery Note"
|
305 |
msgstr ""
|
306 |
|
330 |
msgid "Order Printing"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../includes/class-wcdn-writepanel.php:197
|
334 |
+
msgid "Invoice number: "
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
# @ woocommerce-delivery-notes
|
338 |
#: ../includes/wcdn-template-functions.php:32
|
339 |
msgid "Invoice"
|
350 |
msgstr ""
|
351 |
|
352 |
# @ woocommerce-delivery-notes
|
353 |
+
#: ../includes/wcdn-template-functions.php:214
|
354 |
msgid "Order Number"
|
355 |
msgstr ""
|
356 |
|
357 |
# @ woocommerce-delivery-notes
|
358 |
+
#: ../includes/wcdn-template-functions.php:219
|
359 |
msgid "Order Date"
|
360 |
msgstr ""
|
361 |
|
362 |
# @ woocommerce-delivery-notes
|
363 |
+
#: ../includes/wcdn-template-functions.php:224
|
364 |
msgid "Payment Method"
|
365 |
msgstr ""
|
366 |
|
367 |
# @ woocommerce-delivery-notes
|
368 |
+
#: ../includes/wcdn-template-functions.php:230
|
369 |
msgid "Email"
|
370 |
msgstr ""
|
371 |
|
372 |
# @ woocommerce-delivery-notes
|
373 |
+
#: ../includes/wcdn-template-functions.php:237
|
374 |
msgid "Telephone"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../includes/wcdn-template-functions.php:263
|
378 |
msgid "SKU:"
|
379 |
msgstr ""
|
380 |
|
399 |
msgid "Product"
|
400 |
msgstr ""
|
401 |
|
|
|
402 |
#: ../templates/print-order/print-content.php:75
|
403 |
+
msgid "Quantity"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
# @ woocommerce-delivery-notes
|
407 |
+
#: ../templates/print-order/print-content.php:76
|
408 |
msgid "Total"
|
409 |
msgstr ""
|
410 |
|
420 |
msgstr ""
|
421 |
|
422 |
# @ woocommerce-delivery-notes
|
423 |
+
#: ../templates/print-order/print-content.php:148
|
424 |
msgid "Customer Note"
|
425 |
msgstr ""
|
426 |
|
readme.md
CHANGED
@@ -14,4 +14,8 @@ To correct the issue by your own, you can fork the repository and send a pull re
|
|
14 |
|
15 |
## Translating
|
16 |
|
17 |
-
Contribute and update your translations with
|
|
|
|
|
|
|
|
14 |
|
15 |
## Translating
|
16 |
|
17 |
+
Contribute and update your translations with GitHub. Make sure you have a [GitHub](https://github.com/signup/free) account. Then [fork](https://github.com/piffpaffpuff/woocommerce-delivery-notes/fork) the code, add your translation and send a pull request.
|
18 |
+
|
19 |
+
Alternatively use the [GlotPress repository](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes). Make sure you have [registred an account](http://translate.wpautobahn.com/home/). Translations will be included when a new plugin release is imminent.
|
20 |
+
|
21 |
+
Read the [WordPress Codex](http://codex.wordpress.org/Translating_WordPress) to learn how to translate a plugin.
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: piffpaffpuff
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=K2JKYEASQBBSQ&lc=US&item_name=WooCommerce%20Print%20Invoice%20%26%20Delivery%20Note&item_number=WCDN&amount=20%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest
|
5 |
Tags: delivery note, packing slip, invoice, delivery, shipping, print, order, woocommerce, woothemes, shop
|
6 |
Requires at least: 3.8 and WooCommerce 2.1
|
7 |
-
Tested up to: WordPress
|
8 |
Stable tag: trunk
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
@@ -17,17 +17,29 @@ You can print out invoices and delivery notes for the [WooCommerce](http://wordp
|
|
17 |
|
18 |
The plugin adds a new side panel on the order page to allow shop administrators to print out the invoice or delivery note. Registered customers can also can also print their order with a button that is added to the order screen.
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
= Support =
|
21 |
|
22 |
Support can take place in the [public support forums](http://wordpress.org/support/plugin/woocommerce-delivery-notes), where the community can help each other out.
|
23 |
|
24 |
= Contributing =
|
25 |
|
26 |
-
If you have a patch, or stumbled upon an issue with the source code that isn't a [WooCommerce issue](https://github.com/woothemes/woocommerce/issues?labels=Bug&milestone=22&state=open), you can contribute this
|
27 |
|
28 |
= Translating =
|
29 |
|
30 |
-
When your language is missing you can contribute a translation to the [GlotPress repository](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes).
|
31 |
|
32 |
== Installation ==
|
33 |
|
@@ -85,16 +97,20 @@ add_action( 'wcdn_head', 'my_serif_font_and_large_address', 20 );
|
|
85 |
|
86 |
Sure, the easiest way is to hide them with some CSS that is hooked in with `wcdn_head`.
|
87 |
|
88 |
-
An example that hides the whole price column. Paste the code in the `functions.php` file of your theme:
|
89 |
|
90 |
`
|
91 |
function my_price_free_delivery_note() {
|
92 |
?>
|
93 |
<style>
|
94 |
-
.delivery-note .
|
95 |
-
.delivery-note .product-price span
|
|
|
96 |
display: none;
|
97 |
}
|
|
|
|
|
|
|
98 |
</style>
|
99 |
<?php
|
100 |
}
|
@@ -159,6 +175,20 @@ function my_product_image( $product ) {
|
|
159 |
add_action( 'wcdn_order_item_before', 'my_product_image' );
|
160 |
`
|
161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
= How do I customize the look of the invoice and delivery note? =
|
163 |
|
164 |
You can use the techniques from the questions above. Or you consider the `wcdn_head` hook to enqueue your own stylesheet. Or for full control, copy the file `style.css` from `woocommerce-delivery-notes/templates/print-order` to `yourtheme/woocommerce/print-order` and start editing it.
|
@@ -204,6 +234,19 @@ Please [contribute your translation](http://translate.wpautobahn.com/projects/wo
|
|
204 |
|
205 |
== Changelog ==
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
= 3.0.6 =
|
208 |
|
209 |
* Fixed the known issue where the print button stopped working becuse of SSL
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=K2JKYEASQBBSQ&lc=US&item_name=WooCommerce%20Print%20Invoice%20%26%20Delivery%20Note&item_number=WCDN&amount=20%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest
|
5 |
Tags: delivery note, packing slip, invoice, delivery, shipping, print, order, woocommerce, woothemes, shop
|
6 |
Requires at least: 3.8 and WooCommerce 2.1
|
7 |
+
Tested up to: WordPress 4.0 Alpha and WooCommerce 2.1.7
|
8 |
Stable tag: trunk
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
17 |
|
18 |
The plugin adds a new side panel on the order page to allow shop administrators to print out the invoice or delivery note. Registered customers can also can also print their order with a button that is added to the order screen.
|
19 |
|
20 |
+
= Features =
|
21 |
+
|
22 |
+
* Print invoices and delivery notes via the side panel on the "Order Edit" page
|
23 |
+
* Quickly print invoices and delivery notes on the "Orders" page
|
24 |
+
* Bulk print invoices and delivery notes
|
25 |
+
* Customers can print an invoice on the "My Account" and "Order Details" page
|
26 |
+
* Add a company address, a logo and many other information to the invoice and delivery note
|
27 |
+
* Intelligent invoice and delivery note template system with hooks and functions.php support
|
28 |
+
* Completely customize the invoice and delivery note template
|
29 |
+
* Simple invoice numbering
|
30 |
+
* Supports sequential order numbers
|
31 |
+
|
32 |
= Support =
|
33 |
|
34 |
Support can take place in the [public support forums](http://wordpress.org/support/plugin/woocommerce-delivery-notes), where the community can help each other out.
|
35 |
|
36 |
= Contributing =
|
37 |
|
38 |
+
If you have a patch, or stumbled upon an issue with the source code that isn't a [WooCommerce issue](https://github.com/woothemes/woocommerce/issues?labels=Bug&milestone=22&state=open), you can contribute this back [on GitHub](https://github.com/piffpaffpuff/woocommerce-delivery-notes).
|
39 |
|
40 |
= Translating =
|
41 |
|
42 |
+
When your language is missing you can contribute a translation to the [GitHub repository](https://github.com/piffpaffpuff/woocommerce-delivery-notes) or [GlotPress repository](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes).
|
43 |
|
44 |
== Installation ==
|
45 |
|
97 |
|
98 |
Sure, the easiest way is to hide them with some CSS that is hooked in with `wcdn_head`.
|
99 |
|
100 |
+
An example that hides the whole price column and the totals. Paste the code in the `functions.php` file of your theme:
|
101 |
|
102 |
`
|
103 |
function my_price_free_delivery_note() {
|
104 |
?>
|
105 |
<style>
|
106 |
+
.delivery-note .head-price span,
|
107 |
+
.delivery-note .product-price span,
|
108 |
+
.delivery-note .order-items tfoot {
|
109 |
display: none;
|
110 |
}
|
111 |
+
.delivery-note .order-items tbody tr:last-child {
|
112 |
+
border-bottom: 0.24em solid black;
|
113 |
+
}
|
114 |
</style>
|
115 |
<?php
|
116 |
}
|
175 |
add_action( 'wcdn_order_item_before', 'my_product_image' );
|
176 |
`
|
177 |
|
178 |
+
= How can I differentiate between invoice and delivery note through CSS? =
|
179 |
+
|
180 |
+
The `body` tag contains a class that specifies the template type. The class can be `invoice` or `delivery-note`. You can prefix your style rules to only target one template. For example you could rise the font size for the addresses on the right side:
|
181 |
+
|
182 |
+
`
|
183 |
+
.invoice .billing-address {
|
184 |
+
font-size: 2em;
|
185 |
+
}
|
186 |
+
|
187 |
+
.delivery-note .shipping-address {
|
188 |
+
font-size: 2em;
|
189 |
+
}
|
190 |
+
`
|
191 |
+
|
192 |
= How do I customize the look of the invoice and delivery note? =
|
193 |
|
194 |
You can use the techniques from the questions above. Or you consider the `wcdn_head` hook to enqueue your own stylesheet. Or for full control, copy the file `style.css` from `woocommerce-delivery-notes/templates/print-order` to `yourtheme/woocommerce/print-order` and start editing it.
|
234 |
|
235 |
== Changelog ==
|
236 |
|
237 |
+
= 3.1.1 =
|
238 |
+
|
239 |
+
* Fix the hidden loading indicator on order edit screen
|
240 |
+
* Other small visual optimizations
|
241 |
+
* Later plugin load hook for better compatibility
|
242 |
+
|
243 |
+
= 3.1 =
|
244 |
+
|
245 |
+
**Note: Template changes had to be made. Please control your template after the update in case you applied some custom styling.**
|
246 |
+
|
247 |
+
* By popular demand the 'Quantity' column is back in the template.
|
248 |
+
* Basic invoice numbering.
|
249 |
+
|
250 |
= 3.0.6 =
|
251 |
|
252 |
* Fixed the known issue where the print button stopped working becuse of SSL
|
screenshot-1.png
CHANGED
Binary file
|
templates/print-order/print-content.php
CHANGED
@@ -71,8 +71,9 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
71 |
<table>
|
72 |
<thead>
|
73 |
<tr>
|
74 |
-
<th class="
|
75 |
-
<th class="
|
|
|
76 |
</tr>
|
77 |
</thead>
|
78 |
|
@@ -90,7 +91,6 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
90 |
<?php do_action( 'wcdn_order_item_before', $product, $order ); ?>
|
91 |
|
92 |
<span class="name"><?php echo apply_filters( 'wcdn_order_item_name', $item['name'], $item ); ?></span>
|
93 |
-
<span class="quantity"><?php echo apply_filters( 'wcdn_order_item_quantity', sprintf( '× %s', $item['qty'] ), $item ); ?></span>
|
94 |
|
95 |
<?php $item_meta->display(); ?>
|
96 |
|
@@ -113,6 +113,9 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
113 |
<?php endforeach; ?>
|
114 |
</dl>
|
115 |
</td>
|
|
|
|
|
|
|
116 |
<td class="product-price">
|
117 |
<span><?php echo $order->get_formatted_line_subtotal( $item ); ?></span>
|
118 |
</td>
|
@@ -127,6 +130,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
127 |
|
128 |
<tr>
|
129 |
<td class="total-name"><?php echo $total['label']; ?></td>
|
|
|
130 |
<td class="total-price"><?php echo $total['value']; ?></td>
|
131 |
</tr>
|
132 |
|
71 |
<table>
|
72 |
<thead>
|
73 |
<tr>
|
74 |
+
<th class="head-name"><span><?php _e('Product', 'woocommerce-delivery-notes'); ?></span></th>
|
75 |
+
<th class="head-quantity"><span><?php _e('Quantity', 'woocommerce-delivery-notes'); ?></span></th>
|
76 |
+
<th class="head-price"><span><?php _e('Total', 'woocommerce-delivery-notes'); ?></span></th>
|
77 |
</tr>
|
78 |
</thead>
|
79 |
|
91 |
<?php do_action( 'wcdn_order_item_before', $product, $order ); ?>
|
92 |
|
93 |
<span class="name"><?php echo apply_filters( 'wcdn_order_item_name', $item['name'], $item ); ?></span>
|
|
|
94 |
|
95 |
<?php $item_meta->display(); ?>
|
96 |
|
113 |
<?php endforeach; ?>
|
114 |
</dl>
|
115 |
</td>
|
116 |
+
<td class="product-quantity">
|
117 |
+
<span><?php echo apply_filters( 'wcdn_order_item_quantity', $item['qty'], $item ); ?></span>
|
118 |
+
</td>
|
119 |
<td class="product-price">
|
120 |
<span><?php echo $order->get_formatted_line_subtotal( $item ); ?></span>
|
121 |
</td>
|
130 |
|
131 |
<tr>
|
132 |
<td class="total-name"><?php echo $total['label']; ?></td>
|
133 |
+
<td class="total-quantity"></td>
|
134 |
<td class="total-price"><?php echo $total['value']; ?></td>
|
135 |
</tr>
|
136 |
|
templates/print-order/style.css
CHANGED
@@ -83,12 +83,12 @@ tr {
|
|
83 |
td,
|
84 |
th {
|
85 |
padding: 0.375em 0;
|
86 |
-
vertical-align:
|
87 |
}
|
88 |
|
89 |
td img,
|
90 |
th img {
|
91 |
-
vertical-align:
|
92 |
}
|
93 |
|
94 |
th {
|
@@ -177,8 +177,7 @@ h2 {
|
|
177 |
}
|
178 |
|
179 |
.order-info li strong {
|
180 |
-
|
181 |
-
width: 25%;
|
182 |
display: inline-block;
|
183 |
white-space: nowrap;
|
184 |
text-overflow: ellipsis;
|
@@ -191,18 +190,23 @@ h2 {
|
|
191 |
margin-bottom: 1em;
|
192 |
}
|
193 |
|
194 |
-
.order-items
|
195 |
-
.order-items
|
|
|
196 |
width: 50%;
|
197 |
}
|
198 |
|
199 |
-
.order-items
|
200 |
-
.order-items
|
201 |
-
|
|
|
|
|
|
|
|
|
202 |
}
|
203 |
|
204 |
-
.order-items .
|
205 |
-
|
206 |
}
|
207 |
|
208 |
.order-items p {
|
@@ -215,7 +219,6 @@ h2 {
|
|
215 |
font-size: 0.785em;
|
216 |
font-weight: normal;
|
217 |
line-height: 150%;
|
218 |
-
display: inline;
|
219 |
padding: 0;
|
220 |
margin: 0;
|
221 |
}
|
83 |
td,
|
84 |
th {
|
85 |
padding: 0.375em 0;
|
86 |
+
vertical-align: top;
|
87 |
}
|
88 |
|
89 |
td img,
|
90 |
th img {
|
91 |
+
vertical-align: top;
|
92 |
}
|
93 |
|
94 |
th {
|
177 |
}
|
178 |
|
179 |
.order-info li strong {
|
180 |
+
min-width: 18%;
|
|
|
181 |
display: inline-block;
|
182 |
white-space: nowrap;
|
183 |
text-overflow: ellipsis;
|
190 |
margin-bottom: 1em;
|
191 |
}
|
192 |
|
193 |
+
.order-items .head-name,
|
194 |
+
.order-items .product-name,
|
195 |
+
.order-items .total-name {
|
196 |
width: 50%;
|
197 |
}
|
198 |
|
199 |
+
.order-items .head-quantity,
|
200 |
+
.order-items .product-quantity,
|
201 |
+
.order-items .total-quantity,
|
202 |
+
.order-items .head-price,
|
203 |
+
.order-items .product-price,
|
204 |
+
.order-items .total-price {
|
205 |
+
width: 25%;
|
206 |
}
|
207 |
|
208 |
+
.order-items tbody .name {
|
209 |
+
font-weight: bold;
|
210 |
}
|
211 |
|
212 |
.order-items p {
|
219 |
font-size: 0.785em;
|
220 |
font-weight: normal;
|
221 |
line-height: 150%;
|
|
|
222 |
padding: 0;
|
223 |
margin: 0;
|
224 |
}
|
woocommerce-delivery-notes.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin Name: WooCommerce Print Invoice & Delivery Note
|
6 |
* Plugin URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
8 |
-
* Version: 3.
|
9 |
* Author: Triggvy Gunderson
|
10 |
* Author URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
11 |
* License: GPLv3 or later
|
@@ -60,15 +60,12 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
60 |
self::$plugin_basefile_path = __FILE__;
|
61 |
self::$plugin_basefile = plugin_basename( self::$plugin_basefile_path );
|
62 |
self::$plugin_url = plugin_dir_url( self::$plugin_basefile );
|
63 |
-
self::$plugin_path = trailingslashit( dirname( self::$plugin_basefile_path ) );
|
64 |
-
|
65 |
-
// Include the classes
|
66 |
-
$this->include_classes();
|
67 |
|
68 |
// Set hooks and wait for WooCommerce to load
|
69 |
register_activation_hook( self::$plugin_basefile_path, array( $this, 'install' ) );
|
70 |
add_action( 'plugins_loaded', array( $this, 'localise' ) );
|
71 |
-
add_action( '
|
72 |
}
|
73 |
|
74 |
/**
|
@@ -117,6 +114,9 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
117 |
public function load() {
|
118 |
// WooCommerce activation required
|
119 |
if ( $this->is_woocommerce_activated() ) {
|
|
|
|
|
|
|
120 |
// Create the instances
|
121 |
$this->print = new WooCommerce_Delivery_Notes_Print();
|
122 |
$this->settings = new WooCommerce_Delivery_Notes_Settings();
|
5 |
* Plugin Name: WooCommerce Print Invoice & Delivery Note
|
6 |
* Plugin URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
8 |
+
* Version: 3.1.1
|
9 |
* Author: Triggvy Gunderson
|
10 |
* Author URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
11 |
* License: GPLv3 or later
|
60 |
self::$plugin_basefile_path = __FILE__;
|
61 |
self::$plugin_basefile = plugin_basename( self::$plugin_basefile_path );
|
62 |
self::$plugin_url = plugin_dir_url( self::$plugin_basefile );
|
63 |
+
self::$plugin_path = trailingslashit( dirname( self::$plugin_basefile_path ) );
|
|
|
|
|
|
|
64 |
|
65 |
// Set hooks and wait for WooCommerce to load
|
66 |
register_activation_hook( self::$plugin_basefile_path, array( $this, 'install' ) );
|
67 |
add_action( 'plugins_loaded', array( $this, 'localise' ) );
|
68 |
+
add_action( 'woocommerce_init', array( $this, 'load' ) );
|
69 |
}
|
70 |
|
71 |
/**
|
114 |
public function load() {
|
115 |
// WooCommerce activation required
|
116 |
if ( $this->is_woocommerce_activated() ) {
|
117 |
+
// Include the classes
|
118 |
+
$this->include_classes();
|
119 |
+
|
120 |
// Create the instances
|
121 |
$this->print = new WooCommerce_Delivery_Notes_Print();
|
122 |
$this->settings = new WooCommerce_Delivery_Notes_Settings();
|