Version Description
- FIX: The print data is now generated with the order metadata. This solves a problem where the items weren't displayed when the product was deleted. (thanks MDesigner0)
- UPDATE: Added some missing translations to the pot.
- NEW: Added the telephone and email to the template.
- DELETE: Removed the possibility to show the download links because the urls are always so long that most probably no one will ever use them.
Download this release
Release Info
Developer | chabis |
Plugin | WooCommerce Print Invoice & Delivery Note |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 2.0.2
- classes/class-wcdn-print.php +123 -129
- classes/class-wcdn-settings.php +88 -148
- classes/class-wcdn-writepanel.php +53 -39
- css/style.css +28 -13
- images/print-delivery-note.png +0 -0
- images/print-invoice.png +0 -0
- js/script-media-uploader.js +0 -11
- js/script.js +61 -14
- languages/woocommerce-delivery-notes-da_DK.mo +0 -0
- languages/woocommerce-delivery-notes-da_DK.po +297 -0
- languages/woocommerce-delivery-notes-de_DE.mo +0 -0
- languages/woocommerce-delivery-notes-de_DE.po +321 -321
- languages/woocommerce-delivery-notes-es_ES.mo +0 -0
- languages/woocommerce-delivery-notes-es_ES.po +173 -180
- languages/woocommerce-delivery-notes-fi.mo +0 -0
- languages/woocommerce-delivery-notes-fi.po +295 -0
- languages/woocommerce-delivery-notes-fr_FR.mo +0 -0
- languages/woocommerce-delivery-notes-fr_FR.po +143 -152
- languages/woocommerce-delivery-notes-it_IT.mo +0 -0
- languages/woocommerce-delivery-notes-it_IT.po +364 -0
- languages/woocommerce-delivery-notes-nl_NL.mo +0 -0
- languages/woocommerce-delivery-notes-nl_NL.po +151 -160
- languages/woocommerce-delivery-notes-pl_PL.mo +0 -0
- languages/woocommerce-delivery-notes-pl_PL.po +295 -0
- languages/woocommerce-delivery-notes-pt_BR.mo +0 -0
- languages/woocommerce-delivery-notes-pt_BR.po +295 -0
- languages/woocommerce-delivery-notes-ru_RU.mo +0 -0
- languages/woocommerce-delivery-notes-ru_RU.po +295 -0
- languages/woocommerce-delivery-notes-sk_SK.mo +0 -0
- languages/woocommerce-delivery-notes-sk_SK.po +295 -0
- languages/woocommerce-delivery-notes-sv_SE.mo +0 -0
- languages/woocommerce-delivery-notes-sv_SE.po +153 -162
- languages/woocommerce-delivery-notes-tr_TR.mo +0 -0
- languages/woocommerce-delivery-notes-tr_TR.po +295 -0
- languages/woocommerce-delivery-notes.mo +0 -0
- languages/woocommerce-delivery-notes.po +100 -138
- languages/woocommerce-delivery-notes.pot +188 -188
- readme.txt +130 -58
- templates/delivery-notes/css/style.css +0 -309
- templates/delivery-notes/print.php +0 -136
- templates/print/print-delivery-note.php +119 -0
- templates/print/print-invoice.php +1 -0
- templates/print/style.css +257 -0
- woocommerce-delivery-notes-print.php +0 -557
- woocommerce-delivery-notes.php +484 -32
classes/class-wcdn-print.php
CHANGED
@@ -2,129 +2,119 @@
|
|
2 |
|
3 |
/**
|
4 |
* Print class
|
5 |
-
*
|
6 |
-
* @since 1.0
|
7 |
*/
|
8 |
if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
9 |
|
10 |
class WooCommerce_Delivery_Notes_Print {
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
public $theme_base;
|
17 |
-
public $theme_path;
|
18 |
-
public $order_id;
|
19 |
|
20 |
private $order;
|
|
|
|
|
|
|
21 |
|
22 |
/**
|
23 |
* Constructor
|
24 |
-
*
|
25 |
-
* @since 1.0
|
26 |
*/
|
27 |
public function __construct() {
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
29 |
|
30 |
/**
|
31 |
* Load the class
|
32 |
-
*
|
33 |
-
* @since 1.0
|
34 |
*/
|
35 |
-
public function load(
|
36 |
-
|
37 |
-
|
38 |
-
$this->order_id = $order_id;
|
39 |
-
$this->template_name = 'delivery-note';
|
40 |
-
$this->template_base = 'templates/';
|
41 |
-
$this->theme_base = $woocommerce->template_url;
|
42 |
-
$this->template_dir = 'delivery-notes/';
|
43 |
-
$this->theme_path = trailingslashit( get_stylesheet_directory() );
|
44 |
-
|
45 |
-
if ( $this->order_id > 0 ) {
|
46 |
-
$this->order = new WC_Order( $this->order_id );
|
47 |
-
}
|
48 |
}
|
49 |
|
50 |
/**
|
51 |
* Load the admin hooks
|
52 |
-
*
|
53 |
-
* @since 1.0
|
54 |
*/
|
55 |
-
public function load_hooks() {
|
|
|
56 |
}
|
57 |
|
58 |
/**
|
59 |
-
*
|
60 |
-
*
|
61 |
-
* @since 1.0
|
62 |
*/
|
63 |
-
public function
|
64 |
-
$this->
|
65 |
-
|
|
|
|
|
|
|
66 |
}
|
67 |
-
|
68 |
/**
|
69 |
-
*
|
70 |
-
*
|
71 |
-
* @since 1.0
|
72 |
*/
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
// Look in yourtheme/woocommerce/delivery-notes/
|
78 |
-
$template_file = $this->theme_path . $this->theme_base . $this->template_dir . $slug.'-'.$name.'.php';
|
79 |
-
if ( !$template && $name && file_exists( $template_file) ) {
|
80 |
-
$template = $template_file;
|
81 |
-
$this->template_url = trailingslashit( get_stylesheet_directory_uri() ) . $this->theme_base . $this->template_dir;
|
82 |
-
}
|
83 |
-
|
84 |
-
// Fall back to slug.php in yourtheme/woocommerce/delivery-notes/
|
85 |
-
$template_file = $this->theme_path . $this->theme_base . $this->template_dir . $slug.'.php';
|
86 |
-
if ( !$template && file_exists( $template_file ) ) {
|
87 |
-
$template = $template_file;
|
88 |
-
$this->template_url = trailingslashit( get_stylesheet_directory_uri() ) . $this->theme_base . $this->template_dir;
|
89 |
}
|
90 |
|
91 |
-
//
|
92 |
-
|
93 |
-
|
94 |
-
$template = $template_file;
|
95 |
-
$this->template_url = trailingslashit( get_stylesheet_directory_uri() ) . 'delivery-note-template/';
|
96 |
}
|
97 |
|
98 |
-
//
|
99 |
-
|
100 |
-
|
101 |
-
$template = $template_file;
|
102 |
-
$this->template_url = WooCommerce_Delivery_Notes::$plugin_url . $this->template_base . $this->template_dir;
|
103 |
}
|
104 |
-
|
105 |
-
//
|
106 |
-
|
107 |
-
|
108 |
-
$template = $template_file;
|
109 |
-
$this->template_url = WooCommerce_Delivery_Notes::$plugin_url . $this->template_base . $this->template_dir;
|
110 |
}
|
111 |
|
112 |
-
//
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
}
|
119 |
|
120 |
-
|
121 |
-
return;
|
122 |
}
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
/**
|
125 |
* Get the current order
|
126 |
-
*
|
127 |
-
* @since 1.0
|
128 |
*/
|
129 |
public function get_order() {
|
130 |
return $this->order;
|
@@ -132,85 +122,89 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
132 |
|
133 |
/**
|
134 |
* Get the current order items
|
135 |
-
*
|
136 |
-
* @since 1.0
|
137 |
-
* @version 1.1
|
138 |
*/
|
139 |
public function get_order_items() {
|
140 |
global $woocommerce;
|
141 |
global $_product;
|
142 |
|
143 |
-
if(!$this->order) {
|
144 |
-
return;
|
145 |
-
}
|
146 |
-
|
147 |
$items = $this->order->get_items();
|
148 |
$data_list = array();
|
149 |
|
150 |
-
if
|
151 |
foreach ( $items as $item ) {
|
152 |
// Array with data for the printing template
|
153 |
$data = array();
|
154 |
|
155 |
-
//
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
} else {
|
160 |
-
$product = new WC_Product( $item['id'] );
|
161 |
-
$data['variation'] = null;
|
162 |
-
}
|
163 |
-
|
164 |
// Set item name
|
165 |
$data['name'] = $item['name'];
|
166 |
|
167 |
// Set item quantity
|
168 |
$data['quantity'] = $item['qty'];
|
|
|
|
|
|
|
|
|
169 |
|
170 |
-
// Set
|
171 |
-
$
|
172 |
-
$data['
|
|
|
|
|
173 |
|
174 |
-
// Set item
|
175 |
-
$
|
176 |
-
|
177 |
-
$data['download_url'] = $this->order->get_downloadable_file_url( $item['id'], $item['variation_id'] );
|
178 |
-
}
|
179 |
|
180 |
-
//
|
181 |
-
|
182 |
|
183 |
-
//
|
184 |
-
$data['
|
185 |
-
|
186 |
-
// Set item SKU
|
187 |
-
$data['sku'] = $product->get_sku();
|
188 |
-
|
189 |
-
// Set item weight
|
190 |
-
$data['weight'] = $product->get_weight();
|
191 |
|
192 |
-
|
193 |
-
$data['dimensions'] = $product->get_dimensions();
|
194 |
|
195 |
-
|
196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
|
|
|
|
|
|
|
|
|
|
|
199 |
}
|
200 |
}
|
201 |
|
202 |
-
return $data_list;
|
203 |
}
|
204 |
-
|
205 |
/**
|
206 |
-
* Get
|
207 |
-
*
|
208 |
-
* @since 1.0
|
209 |
*/
|
210 |
-
public function
|
211 |
-
|
|
|
|
|
|
|
212 |
}
|
213 |
-
|
214 |
}
|
215 |
|
216 |
}
|
|
|
|
2 |
|
3 |
/**
|
4 |
* Print class
|
|
|
|
|
5 |
*/
|
6 |
if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
7 |
|
8 |
class WooCommerce_Delivery_Notes_Print {
|
9 |
|
10 |
+
private $template_directory_name;
|
11 |
+
private $template_path;
|
12 |
+
private $template_default_path;
|
13 |
+
private $template_default_uri;
|
|
|
|
|
|
|
14 |
|
15 |
private $order;
|
16 |
+
|
17 |
+
public $template_type;
|
18 |
+
public $order_id;
|
19 |
|
20 |
/**
|
21 |
* Constructor
|
|
|
|
|
22 |
*/
|
23 |
public function __construct() {
|
24 |
+
global $woocommerce;
|
25 |
+
$this->order = new WC_Order();
|
26 |
+
$this->template_directory_name = 'print';
|
27 |
+
$this->template_path = $woocommerce->template_url . $this->template_directory_name . '/';
|
28 |
+
$this->template_default_path = WooCommerce_Delivery_Notes::$plugin_path . 'templates/' . $this->template_directory_name . '/';
|
29 |
+
$this->template_default_uri = WooCommerce_Delivery_Notes::$plugin_url . 'templates/' . $this->template_directory_name . '/';
|
30 |
}
|
31 |
|
32 |
/**
|
33 |
* Load the class
|
|
|
|
|
34 |
*/
|
35 |
+
public function load() {
|
36 |
+
add_action( 'admin_init', array( $this, 'load_hooks' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
38 |
|
39 |
/**
|
40 |
* Load the admin hooks
|
|
|
|
|
41 |
*/
|
42 |
+
public function load_hooks() {
|
43 |
+
add_action('wp_ajax_generate_print_content', array($this, 'generate_print_content_ajax'));
|
44 |
}
|
45 |
|
46 |
/**
|
47 |
+
* Generate the template output
|
|
|
|
|
48 |
*/
|
49 |
+
public function generate_print_content( $template_type, $order_id ) {
|
50 |
+
$this->template_type = $template_type;
|
51 |
+
$this->order_id = $order_id;
|
52 |
+
$this->order->get_order( $this->order_id );
|
53 |
+
$this->get_template( apply_filters( 'wcdn_template_file_name', 'print-' . $this->template_type . '.php', $template_type, $order_id, $this ) );
|
54 |
+
do_action( 'wcdn_generate_print_content' );
|
55 |
}
|
56 |
+
|
57 |
/**
|
58 |
+
* Load and generate the template output with ajax
|
|
|
|
|
59 |
*/
|
60 |
+
public function generate_print_content_ajax() {
|
61 |
+
// Let the backend only access the page
|
62 |
+
if( !is_admin() ) {
|
63 |
+
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
}
|
65 |
|
66 |
+
// Check the user privileges
|
67 |
+
if( !current_user_can( 'manage_woocommerce_orders' ) && !current_user_can( 'edit_shop_orders' ) ) {
|
68 |
+
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
|
|
|
|
|
69 |
}
|
70 |
|
71 |
+
// Check the nonce
|
72 |
+
if( empty( $_GET['action'] ) || !check_admin_referer( $_GET['action'] ) ) {
|
73 |
+
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
|
|
|
|
|
74 |
}
|
75 |
+
|
76 |
+
// Check if all parameters are set
|
77 |
+
if( empty( $_GET['template_type'] ) || empty( $_GET['order_id'] ) ) {
|
78 |
+
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
|
|
|
|
|
79 |
}
|
80 |
|
81 |
+
// Generate the output
|
82 |
+
$this->generate_print_content( $_GET['template_type'], $_GET['order_id'] );
|
83 |
+
|
84 |
+
exit;
|
85 |
+
}
|
86 |
+
|
87 |
+
/**
|
88 |
+
* Get the template url for a file. locate by file existience
|
89 |
+
* and then return the corresponding url.
|
90 |
+
*/
|
91 |
+
public function get_template_url( $name ) {
|
92 |
+
global $woocommerce;
|
93 |
+
|
94 |
+
$uri = $this->template_default_uri . $name;
|
95 |
+
$child_theme_path = get_stylesheet_directory() . '/' . $this->template_path;
|
96 |
+
$child_theme_uri = get_stylesheet_directory_uri() . '/' . $this->template_path;
|
97 |
+
$theme_path = get_template_directory() . '/' . $this->template_path;
|
98 |
+
$theme_uri = get_template_directory_uri() . '/' . $this->template_path;
|
99 |
+
|
100 |
+
if( file_exists( $child_theme_path . $name ) ) {
|
101 |
+
$uri = $child_theme_uri . $name;
|
102 |
+
} elseif( file_exists( $theme_path . $name ) ) {
|
103 |
+
$uri = $theme_uri . $name;
|
104 |
}
|
105 |
|
106 |
+
return $uri;
|
|
|
107 |
}
|
108 |
|
109 |
+
/**
|
110 |
+
* Load the template file content
|
111 |
+
*/
|
112 |
+
public function get_template( $name ) {
|
113 |
+
woocommerce_get_template( $name, null, $this->template_path, $this->template_default_path );
|
114 |
+
}
|
115 |
+
|
116 |
/**
|
117 |
* Get the current order
|
|
|
|
|
118 |
*/
|
119 |
public function get_order() {
|
120 |
return $this->order;
|
122 |
|
123 |
/**
|
124 |
* Get the current order items
|
|
|
|
|
|
|
125 |
*/
|
126 |
public function get_order_items() {
|
127 |
global $woocommerce;
|
128 |
global $_product;
|
129 |
|
|
|
|
|
|
|
|
|
130 |
$items = $this->order->get_items();
|
131 |
$data_list = array();
|
132 |
|
133 |
+
if( sizeof( $items ) > 0 ) {
|
134 |
foreach ( $items as $item ) {
|
135 |
// Array with data for the printing template
|
136 |
$data = array();
|
137 |
|
138 |
+
// Set the id
|
139 |
+
$data['product_id'] = $item['product_id'];
|
140 |
+
$data['variation_id'] = $item['variation_id'];
|
141 |
+
|
|
|
|
|
|
|
|
|
|
|
142 |
// Set item name
|
143 |
$data['name'] = $item['name'];
|
144 |
|
145 |
// Set item quantity
|
146 |
$data['quantity'] = $item['qty'];
|
147 |
+
|
148 |
+
// Set the subtotal for the number of products
|
149 |
+
$data['line_total'] = $item['line_total'];
|
150 |
+
$data['line_tax'] = $item['line_tax'];
|
151 |
|
152 |
+
// Set the final subtotal for all products
|
153 |
+
$data['line_subtotal'] = $item['line_subtotal'];
|
154 |
+
$data['line_subtotal_tax'] = $item['line_subtotal_tax'];
|
155 |
+
$data['formatted_line_subtotal'] = $this->order->get_formatted_line_subtotal( $item );
|
156 |
+
$data['price'] = $data['formatted_line_subtotal'];
|
157 |
|
158 |
+
// Set item meta and replace it when it is empty
|
159 |
+
$meta = new WC_Order_Item_Meta( $item['item_meta'] );
|
160 |
+
$data['meta'] = $meta->display( false, true );
|
|
|
|
|
161 |
|
162 |
+
// Pass complete item array
|
163 |
+
$data['item'] = $item;
|
164 |
|
165 |
+
// Create the product to display more info
|
166 |
+
$data['product'] = null;
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
|
168 |
+
$product = $this->order->get_product_from_item( $item );
|
|
|
169 |
|
170 |
+
// Checking fo existance, thanks to MDesigner0
|
171 |
+
if(!empty($product)) {
|
172 |
+
// Set the single price
|
173 |
+
$data['single_price'] = $product->get_price();
|
174 |
+
|
175 |
+
// Set item SKU
|
176 |
+
$data['sku'] = $product->get_sku();
|
177 |
+
|
178 |
+
// Set item weight
|
179 |
+
$data['weight'] = $product->get_weight();
|
180 |
+
|
181 |
+
|
182 |
+
// Set item dimensions
|
183 |
+
$data['dimensions'] = $product->get_dimensions();
|
184 |
|
185 |
+
// Pass complete product object
|
186 |
+
$data['product'] = $product;
|
187 |
+
|
188 |
+
}
|
189 |
+
|
190 |
+
$data_list[] = apply_filters( 'wcdn_order_item_data', $data );
|
191 |
}
|
192 |
}
|
193 |
|
194 |
+
return apply_filters( 'wcdn_order_items_data', $data_list );
|
195 |
}
|
196 |
+
|
197 |
/**
|
198 |
+
* Get order custom field
|
|
|
|
|
199 |
*/
|
200 |
+
public function get_order_field( $field ) {
|
201 |
+
if( isset( $this->get_order()->order_custom_fields[$field] ) ) {
|
202 |
+
return $this->get_order()->order_custom_fields[$field][0];
|
203 |
+
}
|
204 |
+
return;
|
205 |
}
|
|
|
206 |
}
|
207 |
|
208 |
}
|
209 |
+
|
210 |
+
?>
|
classes/class-wcdn-settings.php
CHANGED
@@ -2,20 +2,16 @@
|
|
2 |
|
3 |
/**
|
4 |
* Settings class
|
5 |
-
*
|
6 |
-
* @since 1.0
|
7 |
*/
|
8 |
if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
9 |
|
10 |
class WooCommerce_Delivery_Notes_Settings {
|
11 |
|
12 |
-
|
13 |
-
|
14 |
|
15 |
/**
|
16 |
* Constructor
|
17 |
-
*
|
18 |
-
* @since 1.0
|
19 |
*/
|
20 |
public function __construct() {
|
21 |
$this->tab_name = 'woocommerce-delivery-notes';
|
@@ -24,8 +20,6 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
24 |
|
25 |
/**
|
26 |
* Load the class
|
27 |
-
*
|
28 |
-
* @since 1.0
|
29 |
*/
|
30 |
public function load() {
|
31 |
add_action( 'admin_init', array( $this, 'load_hooks' ) );
|
@@ -33,59 +27,70 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
33 |
|
34 |
/**
|
35 |
* Load the admin hooks
|
36 |
-
*
|
37 |
-
* @since 1.0
|
38 |
*/
|
39 |
public function load_hooks() {
|
40 |
-
add_filter( 'plugin_action_links_' . WooCommerce_Delivery_Notes::$plugin_basefile, array( $this, 'add_settings_link') );
|
41 |
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_tab' ) );
|
42 |
add_action( 'woocommerce_settings_tabs_' . $this->tab_name, array( $this, 'create_settings_page' ) );
|
43 |
add_action( 'woocommerce_update_options_' . $this->tab_name, array( $this, 'save_settings_page' ) );
|
44 |
-
add_action( '
|
45 |
-
add_action( 'admin_print_styles', array( $this, 'add_styles' ) );
|
46 |
-
add_action( 'admin_print_scripts', array( $this, 'add_scripts' ) );
|
47 |
-
add_action( 'admin_print_scripts-media-upload-popup', array( $this, 'add_media_scripts_and_styles' ) );
|
48 |
-
add_filter( 'media_upload_tabs', array( $this, 'remove_media_tabs' ) );
|
49 |
add_action( 'wp_ajax_load_thumbnail', array( $this, 'load_thumbnail_ajax' ) );
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
/**
|
54 |
* Add the styles
|
55 |
*/
|
56 |
public function add_styles() {
|
57 |
-
|
58 |
-
|
59 |
-
wp_enqueue_style( 'woocommerce-delivery-notes-styles', WooCommerce_Delivery_Notes::$plugin_url . 'css/style.css' );
|
60 |
-
}
|
61 |
}
|
62 |
|
63 |
/**
|
64 |
* Add the scripts
|
65 |
*/
|
66 |
public function add_scripts() {
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
73 |
|
74 |
/**
|
75 |
-
*
|
76 |
*/
|
77 |
-
public function
|
78 |
-
|
79 |
-
|
|
|
|
|
|
|
80 |
}
|
81 |
|
82 |
/**
|
83 |
-
* Check if we are on
|
84 |
-
*
|
85 |
-
* @since 1.0
|
86 |
*/
|
87 |
-
public function
|
88 |
-
if
|
89 |
return true;
|
90 |
} else {
|
91 |
return false;
|
@@ -94,8 +99,6 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
94 |
|
95 |
/**
|
96 |
* Check if sequential order plugin is activated
|
97 |
-
*
|
98 |
-
* @since 1.0
|
99 |
*/
|
100 |
public function is_woocommerce_sequential_order_numbers_activated() {
|
101 |
if ( in_array( 'woocommerce-sequential-order-numbers/woocommerce-sequential-order-numbers.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
|
@@ -109,84 +112,23 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
109 |
* Remove the media uploader tabs
|
110 |
*/
|
111 |
public function remove_media_tabs( $tabs ) {
|
112 |
-
|
113 |
-
unset( $tabs['type_url'] );
|
114 |
-
}
|
115 |
return $tabs;
|
116 |
}
|
117 |
|
118 |
-
/**
|
119 |
-
* Modfy the media uploader input fields
|
120 |
-
*/
|
121 |
-
public function edit_media_options( $fields, $post ) {
|
122 |
-
if ( isset( $_GET['post_id'] ) ) {
|
123 |
-
$calling_post_id = absint( $_GET['post_id'] );
|
124 |
-
} elseif ( isset( $_POST ) && count( $_POST ) ) {
|
125 |
-
$calling_post_id = $post->post_parent;
|
126 |
-
}
|
127 |
-
|
128 |
-
// only add the thickbox media managment page (media.php)
|
129 |
-
if( empty( $calling_post_id ) ) {
|
130 |
-
if ( isset( $fields['image-size'] ) && isset( $post->ID ) ) {
|
131 |
-
if( substr($post->post_mime_type, 0, 5) == 'image' && !isset( $_GET['attachment_id'] ) ) {
|
132 |
-
$attachment_id = $post->ID;
|
133 |
-
$fields['additional_buttons']['label'] = '';
|
134 |
-
$fields['additional_buttons']['input'] = 'html';
|
135 |
-
$fields['additional_buttons']['html'] = get_submit_button( __( 'Use as Company Logo', 'woocommerce-delivery-notes' ), 'button use-image-button', 'use-image-button-' . $attachment_id, false );
|
136 |
-
}
|
137 |
-
}
|
138 |
-
}
|
139 |
-
|
140 |
-
return $fields;
|
141 |
-
}
|
142 |
-
|
143 |
-
/**
|
144 |
-
* Add "Settings" link to plugin page
|
145 |
-
*
|
146 |
-
* @since 1.0
|
147 |
-
*/
|
148 |
-
public function add_settings_link( $links ) {
|
149 |
-
$settings = sprintf( '<a href="%s" title="%s">%s</a>' , admin_url( 'admin.php?page=woocommerce&tab=' . $this->tab_name ) , __( 'Go to the settings page', 'woocommerce-delivery-notes' ) , __( 'Settings', 'woocommerce-delivery-notes' ) );
|
150 |
-
array_unshift( $links, $settings );
|
151 |
-
|
152 |
-
return $links;
|
153 |
-
}
|
154 |
-
|
155 |
-
/**
|
156 |
-
* Load the help system
|
157 |
-
*
|
158 |
-
* @since 1.0
|
159 |
-
*/
|
160 |
-
public function load_help() {
|
161 |
-
// Get the hookname and load the help tabs
|
162 |
-
if ( $this->is_settings_page() ) {
|
163 |
-
$menu_slug = plugin_basename( $_GET['page'] );
|
164 |
-
$hookname = get_plugin_page_hookname( $menu_slug, '' );
|
165 |
-
|
166 |
-
add_action( 'load-' . $hookname, array( $this, 'add_help_tabs' ) );
|
167 |
-
}
|
168 |
-
}
|
169 |
-
|
170 |
/**
|
171 |
* Add the help tabs
|
172 |
-
*
|
173 |
-
* @since 1.0
|
174 |
*/
|
175 |
public function add_help_tabs() {
|
176 |
// Check current admin screen
|
177 |
$screen = get_current_screen();
|
178 |
-
|
179 |
-
// Don't load help tab system prior WordPress 3.3
|
180 |
-
if ( ! class_exists( 'WP_Screen' ) || ! $screen ) {
|
181 |
-
return;
|
182 |
-
}
|
183 |
-
|
184 |
// Remove all existing tabs
|
185 |
$screen->remove_help_tabs();
|
186 |
|
187 |
// Create arrays with help tab titles
|
188 |
$screen->add_help_tab(array(
|
189 |
-
'id' => '
|
190 |
'title' => __( 'About the Plugin', 'woocommerce-delivery-notes' ),
|
191 |
'content' =>
|
192 |
'<h3>' . __( 'Plugin: WooCommerce Print Invoices & Delivery Notes', 'woocommerce-delivery-notes' ) . '</h3>' .
|
@@ -199,16 +141,14 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
199 |
$screen->set_help_sidebar(
|
200 |
'<p><strong>' . __( 'For more information:', 'woocommerce-delivery-notes' ) . '</strong></p>'.
|
201 |
'<p><a href="http://wordpress.org/extend/plugins/woocommerce-delivery-notes/faq/" target="_blank">' . __( 'Frequently Asked Questions', 'woocommerce-delivery-notes' ) . '</a></p>' .
|
|
|
202 |
'<p><a href="http://wordpress.org/extend/plugins/woocommerce-delivery-notes/" target="_blank">' . __( 'Project on WordPress.org', 'woocommerce-delivery-notes' ) . '</a></p>' .
|
203 |
-
'<p><a href="https://github.com/deckerweb/woocommerce-delivery-notes" target="_blank">' . __( 'Project on GitHub', 'woocommerce-delivery-notes' ) . '</a></p>'
|
204 |
-
'<p><a href="http://wordpress.org/tags/woocommerce-delivery-notes?forum_id=10" target="_blank">' . __( 'Discuss in the Forum', 'woocommerce-delivery-notes' ) . '</a></p>'
|
205 |
);
|
206 |
}
|
207 |
|
208 |
/**
|
209 |
* Add a tab to the settings page
|
210 |
-
*
|
211 |
-
* @since 1.0
|
212 |
*/
|
213 |
public function add_settings_tab($tabs) {
|
214 |
$tabs[$this->tab_name] = __( 'Print', 'woocommerce-delivery-notes' );
|
@@ -237,17 +177,17 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
237 |
* Create the thumbnail
|
238 |
*/
|
239 |
public function create_thumbnail( $attachment_id ) {
|
240 |
-
$attachment_src = wp_get_attachment_image_src( $attachment_id,
|
|
|
|
|
|
|
241 |
?>
|
242 |
-
<img src="<?php echo $attachment_src[0]; ?>" width="<?php echo $attachment_src[1]; ?>" height="<?php echo $attachment_src[2]; ?>" />
|
243 |
<?php
|
244 |
}
|
245 |
|
246 |
/**
|
247 |
* Create the settings page content
|
248 |
-
*
|
249 |
-
* @since 1.0
|
250 |
-
* @version 1.1
|
251 |
*/
|
252 |
public function create_settings_page() {
|
253 |
?>
|
@@ -268,8 +208,8 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
268 |
<a href="#" <?php if( !empty( $attachment_id ) ) : ?>style="display: none;"<?php endif; ?> id="company-logo-add-button"><?php _e( 'Set Logo', 'woocommerce-delivery-notes' ); ?></a>
|
269 |
<span class="description">
|
270 |
<?php _e( 'A company/shop logo representing your business.', 'woocommerce-delivery-notes' ); ?>
|
271 |
-
<
|
272 |
-
<?php _e( '
|
273 |
</span>
|
274 |
</td>
|
275 |
</tr>
|
@@ -281,7 +221,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
281 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>custom_company_name" rows="2" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'custom_company_name' ) ); ?></textarea>
|
282 |
<span class="description">
|
283 |
<?php _e( 'Your company/shop name for the Delivery Note.', 'woocommerce-delivery-notes' ); ?>
|
284 |
-
<
|
285 |
<?php _e( 'Leave blank to use the default Website/ Blog title defined in WordPress settings.', 'woocommerce-delivery-notes' ); ?>
|
286 |
</span>
|
287 |
</td>
|
@@ -294,7 +234,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
294 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>company_address" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'company_address' ) ); ?></textarea>
|
295 |
<span class="description">
|
296 |
<?php _e( 'The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings.', 'woocommerce-delivery-notes' ); ?>
|
297 |
-
<
|
298 |
<?php _e('Leave blank to not print an address.', 'woocommerce-delivery-notes' ); ?>
|
299 |
</span>
|
300 |
</td>
|
@@ -307,7 +247,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
307 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>personal_notes" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'personal_notes' ) ); ?></textarea>
|
308 |
<span class="description">
|
309 |
<?php _e( 'Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.).', 'woocommerce-delivery-notes' ); ?>
|
310 |
-
<
|
311 |
<?php _e('Leave blank to not print any personal notes.', 'woocommerce-delivery-notes' ); ?>
|
312 |
</span>
|
313 |
</td>
|
@@ -320,7 +260,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
320 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>policies_conditions" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'policies_conditions' ) ); ?></textarea>
|
321 |
<span class="description">
|
322 |
<?php _e( '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.', 'woocommerce-delivery-notes' ); ?>
|
323 |
-
<
|
324 |
<?php _e('Leave blank to not print any policies or conditions.', 'woocommerce-delivery-notes' ); ?>
|
325 |
</span>
|
326 |
</td>
|
@@ -333,48 +273,42 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
333 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>footer_imprint" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'footer_imprint' ) ); ?></textarea>
|
334 |
<span class="description">
|
335 |
<?php _e( 'Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs.', 'woocommerce-delivery-notes' ); ?>
|
336 |
-
<
|
337 |
<?php _e('Leave blank to not print a footer.', 'woocommerce-delivery-notes' ); ?>
|
338 |
</span>
|
339 |
</td>
|
340 |
</tr>
|
341 |
-
</tbody>
|
342 |
-
</table>
|
343 |
-
<h3><?php _e( 'Preview Options', 'woocommerce-delivery-notes' ); ?></h3>
|
344 |
-
<table class="form-table">
|
345 |
-
<tbody>
|
346 |
<tr>
|
347 |
<th>
|
348 |
-
<?php _e( 'Preview opens', 'woocommerce-delivery-notes' ); ?>
|
349 |
</th>
|
350 |
<td>
|
351 |
-
|
352 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
</td>
|
354 |
</tr>
|
355 |
</tbody>
|
356 |
</table>
|
357 |
<h3><?php _e( 'Order Numbering Options', 'woocommerce-delivery-notes' ); ?></h3>
|
358 |
<table class="form-table">
|
359 |
-
<tbody>
|
360 |
-
<tr>
|
361 |
-
<th>
|
362 |
-
<label for="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>before_order_number"><?php _e( 'Before order number', 'woocommerce-delivery-notes' ); ?></label>
|
363 |
-
</th>
|
364 |
-
<td>
|
365 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>before_order_number" type="text" value="<?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'before_order_number' ) ); ?>" />
|
366 |
-
<span class="description"><?php _e( 'This text will be placed before the order number ie. "YOUR-TEXT123".', 'woocommerce-delivery-notes' ); ?></span>
|
367 |
-
</td>
|
368 |
-
</tr>
|
369 |
-
<tr>
|
370 |
-
<th>
|
371 |
-
<label for="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>after_order_number"><?php _e( 'After order number', 'woocommerce-delivery-notes' ); ?></label>
|
372 |
-
</th>
|
373 |
-
<td>
|
374 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>after_order_number" type="text" value="<?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'after_order_number' ) ); ?>" />
|
375 |
-
<span class="description"><?php _e( 'This text will be placed after the order number ie. "123YOUR-TEXT".', 'woocommerce-delivery-notes' ); ?></span>
|
376 |
-
</td>
|
377 |
-
</tr>
|
378 |
<tr>
|
379 |
<th>
|
380 |
<label for="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>order_number_offset"><?php _e( 'Sequential order number', 'woocommerce-delivery-notes' ); ?></label>
|
@@ -394,11 +328,15 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
394 |
<?php
|
395 |
}
|
396 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
/**
|
398 |
* Save all settings
|
399 |
-
*
|
400 |
-
* @since 1.0
|
401 |
-
* @version 1.1
|
402 |
*/
|
403 |
public function save_settings_page() {
|
404 |
if ( isset( $_POST[ $this->hidden_submit ] ) && $_POST[ $this->hidden_submit ] == 'submitted' ) {
|
@@ -422,3 +360,5 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
422 |
}
|
423 |
|
424 |
}
|
|
|
|
2 |
|
3 |
/**
|
4 |
* Settings class
|
|
|
|
|
5 |
*/
|
6 |
if ( ! class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
7 |
|
8 |
class WooCommerce_Delivery_Notes_Settings {
|
9 |
|
10 |
+
public $tab_name;
|
11 |
+
public $hidden_submit;
|
12 |
|
13 |
/**
|
14 |
* Constructor
|
|
|
|
|
15 |
*/
|
16 |
public function __construct() {
|
17 |
$this->tab_name = 'woocommerce-delivery-notes';
|
20 |
|
21 |
/**
|
22 |
* Load the class
|
|
|
|
|
23 |
*/
|
24 |
public function load() {
|
25 |
add_action( 'admin_init', array( $this, 'load_hooks' ) );
|
27 |
|
28 |
/**
|
29 |
* Load the admin hooks
|
|
|
|
|
30 |
*/
|
31 |
public function load_hooks() {
|
|
|
32 |
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_tab' ) );
|
33 |
add_action( 'woocommerce_settings_tabs_' . $this->tab_name, array( $this, 'create_settings_page' ) );
|
34 |
add_action( 'woocommerce_update_options_' . $this->tab_name, array( $this, 'save_settings_page' ) );
|
35 |
+
add_action( 'current_screen', array( $this, 'load_screen_hooks' ) );
|
|
|
|
|
|
|
|
|
36 |
add_action( 'wp_ajax_load_thumbnail', array( $this, 'load_thumbnail_ajax' ) );
|
37 |
+
}
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Add the scripts
|
41 |
+
*/
|
42 |
+
public function load_screen_hooks() {
|
43 |
+
$screen = get_current_screen();
|
44 |
+
|
45 |
+
if( $this->is_settings_page() ) {
|
46 |
+
add_action( 'admin_print_styles', array( $this, 'add_styles' ) );
|
47 |
+
add_action( 'admin_print_scripts', array( $this, 'add_scripts' ) );
|
48 |
+
add_action( 'load-' . $screen->id, array( $this, 'add_help_tabs' ) );
|
49 |
+
}
|
50 |
+
|
51 |
+
if( $this->is_media_uploader_page() ) {
|
52 |
+
add_filter( 'media_upload_tabs', array( $this, 'remove_media_tabs' ) );
|
53 |
+
}
|
54 |
}
|
55 |
|
56 |
/**
|
57 |
* Add the styles
|
58 |
*/
|
59 |
public function add_styles() {
|
60 |
+
wp_enqueue_style( 'thickbox' );
|
61 |
+
wp_enqueue_style( 'woocommerce-delivery-notes', WooCommerce_Delivery_Notes::$plugin_url . 'css/style.css' );
|
|
|
|
|
62 |
}
|
63 |
|
64 |
/**
|
65 |
* Add the scripts
|
66 |
*/
|
67 |
public function add_scripts() {
|
68 |
+
?>
|
69 |
+
<script type="text/javascript">
|
70 |
+
var show_print_preview = 'yes';
|
71 |
+
</script>
|
72 |
+
<?php
|
73 |
+
wp_enqueue_script( 'media-upload' );
|
74 |
+
wp_enqueue_script( 'thickbox' );
|
75 |
+
wp_enqueue_script( 'woocommerce-delivery-notes', WooCommerce_Delivery_Notes::$plugin_url . 'js/script.js', array( 'jquery', 'media-upload', 'thickbox' ) );
|
76 |
+
}
|
77 |
|
78 |
/**
|
79 |
+
* Check if we are on settings page
|
80 |
*/
|
81 |
+
public function is_settings_page() {
|
82 |
+
if( isset( $_GET['page'] ) && isset( $_GET['tab'] ) && $_GET['tab'] == $this->tab_name ) {
|
83 |
+
return true;
|
84 |
+
} else {
|
85 |
+
return false;
|
86 |
+
}
|
87 |
}
|
88 |
|
89 |
/**
|
90 |
+
* Check if we are on media uploader page
|
|
|
|
|
91 |
*/
|
92 |
+
public function is_media_uploader_page() {
|
93 |
+
if( isset( $_GET['post_id'] ) && isset( $_GET['company_logo_image'] ) && $_GET['post_id'] == '0' && $_GET['company_logo_image'] == 'true' ) {
|
94 |
return true;
|
95 |
} else {
|
96 |
return false;
|
99 |
|
100 |
/**
|
101 |
* Check if sequential order plugin is activated
|
|
|
|
|
102 |
*/
|
103 |
public function is_woocommerce_sequential_order_numbers_activated() {
|
104 |
if ( in_array( 'woocommerce-sequential-order-numbers/woocommerce-sequential-order-numbers.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
|
112 |
* Remove the media uploader tabs
|
113 |
*/
|
114 |
public function remove_media_tabs( $tabs ) {
|
115 |
+
unset( $tabs['type_url'] );
|
|
|
|
|
116 |
return $tabs;
|
117 |
}
|
118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
/**
|
120 |
* Add the help tabs
|
|
|
|
|
121 |
*/
|
122 |
public function add_help_tabs() {
|
123 |
// Check current admin screen
|
124 |
$screen = get_current_screen();
|
125 |
+
|
|
|
|
|
|
|
|
|
|
|
126 |
// Remove all existing tabs
|
127 |
$screen->remove_help_tabs();
|
128 |
|
129 |
// Create arrays with help tab titles
|
130 |
$screen->add_help_tab(array(
|
131 |
+
'id' => 'woocommerce-delivery-notes-usage',
|
132 |
'title' => __( 'About the Plugin', 'woocommerce-delivery-notes' ),
|
133 |
'content' =>
|
134 |
'<h3>' . __( 'Plugin: WooCommerce Print Invoices & Delivery Notes', 'woocommerce-delivery-notes' ) . '</h3>' .
|
141 |
$screen->set_help_sidebar(
|
142 |
'<p><strong>' . __( 'For more information:', 'woocommerce-delivery-notes' ) . '</strong></p>'.
|
143 |
'<p><a href="http://wordpress.org/extend/plugins/woocommerce-delivery-notes/faq/" target="_blank">' . __( 'Frequently Asked Questions', 'woocommerce-delivery-notes' ) . '</a></p>' .
|
144 |
+
'<p><a href="http://wordpress.org/support/plugin/woocommerce-delivery-notes" target="_blank">' . __( 'Get Community Support', 'woocommerce-delivery-notes' ) . '</a></p>' .
|
145 |
'<p><a href="http://wordpress.org/extend/plugins/woocommerce-delivery-notes/" target="_blank">' . __( 'Project on WordPress.org', 'woocommerce-delivery-notes' ) . '</a></p>' .
|
146 |
+
'<p><a href="https://github.com/deckerweb/woocommerce-delivery-notes" target="_blank">' . __( 'Project on GitHub', 'woocommerce-delivery-notes' ) . '</a></p>'
|
|
|
147 |
);
|
148 |
}
|
149 |
|
150 |
/**
|
151 |
* Add a tab to the settings page
|
|
|
|
|
152 |
*/
|
153 |
public function add_settings_tab($tabs) {
|
154 |
$tabs[$this->tab_name] = __( 'Print', 'woocommerce-delivery-notes' );
|
177 |
* Create the thumbnail
|
178 |
*/
|
179 |
public function create_thumbnail( $attachment_id ) {
|
180 |
+
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false );
|
181 |
+
|
182 |
+
// resize the image to a 1/4 of the original size
|
183 |
+
// to have a printing point density of about 288ppi.
|
184 |
?>
|
185 |
+
<img src="<?php echo $attachment_src[0]; ?>" width="<?php echo $attachment_src[1] / 4; ?>" height="<?php echo $attachment_src[2] / 4; ?>" alt="" />
|
186 |
<?php
|
187 |
}
|
188 |
|
189 |
/**
|
190 |
* Create the settings page content
|
|
|
|
|
|
|
191 |
*/
|
192 |
public function create_settings_page() {
|
193 |
?>
|
208 |
<a href="#" <?php if( !empty( $attachment_id ) ) : ?>style="display: none;"<?php endif; ?> id="company-logo-add-button"><?php _e( 'Set Logo', 'woocommerce-delivery-notes' ); ?></a>
|
209 |
<span class="description">
|
210 |
<?php _e( 'A company/shop logo representing your business.', 'woocommerce-delivery-notes' ); ?>
|
211 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
212 |
+
<?php _e( '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-delivery-notes' ); ?>
|
213 |
</span>
|
214 |
</td>
|
215 |
</tr>
|
221 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>custom_company_name" rows="2" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'custom_company_name' ) ); ?></textarea>
|
222 |
<span class="description">
|
223 |
<?php _e( 'Your company/shop name for the Delivery Note.', 'woocommerce-delivery-notes' ); ?>
|
224 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
225 |
<?php _e( 'Leave blank to use the default Website/ Blog title defined in WordPress settings.', 'woocommerce-delivery-notes' ); ?>
|
226 |
</span>
|
227 |
</td>
|
234 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>company_address" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'company_address' ) ); ?></textarea>
|
235 |
<span class="description">
|
236 |
<?php _e( 'The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings.', 'woocommerce-delivery-notes' ); ?>
|
237 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
238 |
<?php _e('Leave blank to not print an address.', 'woocommerce-delivery-notes' ); ?>
|
239 |
</span>
|
240 |
</td>
|
247 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>personal_notes" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'personal_notes' ) ); ?></textarea>
|
248 |
<span class="description">
|
249 |
<?php _e( 'Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.).', 'woocommerce-delivery-notes' ); ?>
|
250 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
251 |
<?php _e('Leave blank to not print any personal notes.', 'woocommerce-delivery-notes' ); ?>
|
252 |
</span>
|
253 |
</td>
|
260 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>policies_conditions" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'policies_conditions' ) ); ?></textarea>
|
261 |
<span class="description">
|
262 |
<?php _e( '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.', 'woocommerce-delivery-notes' ); ?>
|
263 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
264 |
<?php _e('Leave blank to not print any policies or conditions.', 'woocommerce-delivery-notes' ); ?>
|
265 |
</span>
|
266 |
</td>
|
273 |
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>footer_imprint" rows="5" class="large-text"><?php echo wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'footer_imprint' ) ); ?></textarea>
|
274 |
<span class="description">
|
275 |
<?php _e( 'Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs.', 'woocommerce-delivery-notes' ); ?>
|
276 |
+
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
277 |
<?php _e('Leave blank to not print a footer.', 'woocommerce-delivery-notes' ); ?>
|
278 |
</span>
|
279 |
</td>
|
280 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
281 |
<tr>
|
282 |
<th>
|
|
|
283 |
</th>
|
284 |
<td>
|
285 |
+
<?php
|
286 |
+
// show template preview links when an order is available
|
287 |
+
$args = array(
|
288 |
+
'post_type' => 'shop_order',
|
289 |
+
'posts_per_page' => 1
|
290 |
+
);
|
291 |
+
$query = new WP_Query( $args );
|
292 |
+
|
293 |
+
if($query->have_posts()) : ?>
|
294 |
+
<?php
|
295 |
+
$results = $query->get_posts();
|
296 |
+
$test_id = $results[0]->ID;
|
297 |
+
$invoice_url = wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_print_content&template_type=invoice&order_id=' . $test_id ), 'generate_print_content' );
|
298 |
+
$note_url = wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_print_content&template_type=delivery-note&order_id=' . $test_id ), 'generate_print_content' );
|
299 |
+
?>
|
300 |
+
<span class="description">
|
301 |
+
<?php printf( __( '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>.', 'woocommerce-delivery-notes' ), $invoice_url, $note_url, '_blank', 'print-preview-button' ); ?>
|
302 |
+
<?php _e( 'For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>.', 'woocommerce-delivery-notes' ); ?>
|
303 |
+
</span>
|
304 |
+
<?php endif; ?>
|
305 |
</td>
|
306 |
</tr>
|
307 |
</tbody>
|
308 |
</table>
|
309 |
<h3><?php _e( 'Order Numbering Options', 'woocommerce-delivery-notes' ); ?></h3>
|
310 |
<table class="form-table">
|
311 |
+
<tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
<tr>
|
313 |
<th>
|
314 |
<label for="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>order_number_offset"><?php _e( 'Sequential order number', 'woocommerce-delivery-notes' ); ?></label>
|
328 |
<?php
|
329 |
}
|
330 |
|
331 |
+
/**
|
332 |
+
* Get the content for an option
|
333 |
+
*/
|
334 |
+
public function get_setting( $name ) {
|
335 |
+
return get_option( WooCommerce_Delivery_Notes::$plugin_prefix . $name );
|
336 |
+
}
|
337 |
+
|
338 |
/**
|
339 |
* Save all settings
|
|
|
|
|
|
|
340 |
*/
|
341 |
public function save_settings_page() {
|
342 |
if ( isset( $_POST[ $this->hidden_submit ] ) && $_POST[ $this->hidden_submit ] == 'submitted' ) {
|
360 |
}
|
361 |
|
362 |
}
|
363 |
+
|
364 |
+
?>
|
classes/class-wcdn-writepanel.php
CHANGED
@@ -2,8 +2,6 @@
|
|
2 |
|
3 |
/**
|
4 |
* Writepanel class
|
5 |
-
*
|
6 |
-
* @since 1.0
|
7 |
*/
|
8 |
if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
9 |
|
@@ -11,16 +9,12 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
11 |
|
12 |
/**
|
13 |
* Constructor
|
14 |
-
*
|
15 |
-
* @since 1.0
|
16 |
*/
|
17 |
public function __construct() {
|
18 |
}
|
19 |
|
20 |
/**
|
21 |
* Load the class
|
22 |
-
*
|
23 |
-
* @since 1.0
|
24 |
*/
|
25 |
public function load() {
|
26 |
add_action( 'admin_init', array( $this, 'load_hooks' ) );
|
@@ -28,51 +22,71 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
28 |
|
29 |
/**
|
30 |
* Load the admin hooks
|
31 |
-
*
|
32 |
-
* @since 1.0
|
33 |
*/
|
34 |
public function load_hooks() {
|
35 |
-
|
36 |
add_action( 'add_meta_boxes_shop_order', array( $this, 'add_box' ) );
|
37 |
-
add_action( '
|
|
|
38 |
}
|
39 |
|
40 |
/**
|
41 |
-
*
|
42 |
-
*
|
43 |
-
* @since 1.0
|
44 |
*/
|
45 |
-
public function
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
wp_enqueue_style( 'woocommerce-delivery-notes-styles', WooCommerce_Delivery_Notes::$plugin_url . 'css/style.css' );
|
50 |
}
|
51 |
}
|
52 |
|
53 |
/**
|
54 |
-
* Add
|
55 |
-
*
|
56 |
-
* @since 1.0
|
57 |
*/
|
58 |
-
public function
|
59 |
-
if
|
60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
}
|
68 |
-
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
}
|
71 |
-
|
72 |
/**
|
73 |
* Add the meta box on the single order page
|
74 |
-
*
|
75 |
-
* @since 1.0
|
76 |
*/
|
77 |
public function add_box() {
|
78 |
add_meta_box( 'woocommerce-delivery-notes-box', __( 'Order Print', 'woocommerce-delivery-notes' ), array( $this, 'create_box_content' ), 'shop_order', 'side', 'default' );
|
@@ -80,20 +94,20 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
80 |
|
81 |
/**
|
82 |
* Create the meta box content on the single order page
|
83 |
-
*
|
84 |
-
* @since 1.0
|
85 |
*/
|
86 |
public function create_box_content() {
|
87 |
global $post_id;
|
88 |
-
|
89 |
?>
|
90 |
<ul class="woocommerce-delivery-notes-actions">
|
91 |
-
<li><a href="<?php echo
|
92 |
-
<li><a href="<?php echo
|
93 |
</ul>
|
|
|
94 |
<?php
|
95 |
}
|
96 |
|
97 |
}
|
98 |
|
99 |
}
|
|
|
|
2 |
|
3 |
/**
|
4 |
* Writepanel class
|
|
|
|
|
5 |
*/
|
6 |
if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
7 |
|
9 |
|
10 |
/**
|
11 |
* Constructor
|
|
|
|
|
12 |
*/
|
13 |
public function __construct() {
|
14 |
}
|
15 |
|
16 |
/**
|
17 |
* Load the class
|
|
|
|
|
18 |
*/
|
19 |
public function load() {
|
20 |
add_action( 'admin_init', array( $this, 'load_hooks' ) );
|
22 |
|
23 |
/**
|
24 |
* Load the admin hooks
|
|
|
|
|
25 |
*/
|
26 |
public function load_hooks() {
|
27 |
+
add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
|
28 |
add_action( 'add_meta_boxes_shop_order', array( $this, 'add_box' ) );
|
29 |
+
add_action( 'admin_print_scripts', array( $this, 'add_scripts' ) );
|
30 |
+
add_action( 'admin_print_styles', array( $this, 'add_styles' ) );
|
31 |
}
|
32 |
|
33 |
/**
|
34 |
+
* Add the styles
|
|
|
|
|
35 |
*/
|
36 |
+
public function add_styles() {
|
37 |
+
if( $this->is_order_edit_page() ) {
|
38 |
+
wp_enqueue_style( 'thickbox' );
|
39 |
+
wp_enqueue_style( 'woocommerce-delivery-notes', WooCommerce_Delivery_Notes::$plugin_url . 'css/style.css' );
|
|
|
40 |
}
|
41 |
}
|
42 |
|
43 |
/**
|
44 |
+
* Add the scripts
|
|
|
|
|
45 |
*/
|
46 |
+
public function add_scripts() {
|
47 |
+
if( $this->is_order_edit_page() ) {
|
48 |
+
?>
|
49 |
+
<script type="text/javascript">
|
50 |
+
var show_print_preview = 'no';
|
51 |
+
</script>
|
52 |
+
<?php
|
53 |
+
wp_enqueue_script( 'media-upload' );
|
54 |
+
wp_enqueue_script( 'thickbox' );
|
55 |
+
wp_enqueue_script( 'woocommerce-delivery-notes', WooCommerce_Delivery_Notes::$plugin_url . 'js/script.js', array( 'jquery', 'media-upload', 'thickbox' ) );
|
56 |
}
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Is order page
|
61 |
+
*/
|
62 |
+
public function is_order_edit_page() {
|
63 |
+
global $post_type;
|
64 |
+
if( $post_type == 'shop_order' ) {
|
65 |
+
return true;
|
66 |
+
} else {
|
67 |
+
return false;
|
68 |
}
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* Add print actions to the orders listing
|
73 |
+
*/
|
74 |
+
public function add_listing_actions( $order ) {
|
75 |
+
?>
|
76 |
+
<a href="<?php echo wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_print_content&template_type=invoice&order_id=' . $order->id ), 'generate_print_content' ); ?>" class="button tips print-preview-button" target="_blank" alt="<?php esc_attr_e( 'Print Invoice', 'woocommerce-delivery-notes' ); ?>" data-tip="<?php esc_attr_e( 'Print Invoice', 'woocommerce-delivery-notes' ); ?>">
|
77 |
+
<span><?php _e( 'Print Invoice', 'woocommerce-delivery-notes' ); ?></span>
|
78 |
+
<img src="<?php echo WooCommerce_Delivery_Notes::$plugin_url . 'images/print-invoice.png'; ?>" alt="<?php esc_attr_e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?>" width="14">
|
79 |
+
</a>
|
80 |
+
<a href="<?php echo wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_print_content&template_type=delivery-note&order_id=' . $order->id ), 'generate_print_content' ); ?>" class="button tips print-preview-button" target="_blank" alt="<?php esc_attr_e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?>" data-tip="<?php esc_attr_e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?>">
|
81 |
+
<span><?php _e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?></span>
|
82 |
+
<img src="<?php echo WooCommerce_Delivery_Notes::$plugin_url . 'images/print-delivery-note.png'; ?>" alt="<?php esc_attr_e( 'Print Delivery Note', 'woocommerce-delivery-notes' ); ?>" width="14">
|
83 |
+
</a>
|
84 |
+
<img src="<?php echo admin_url( 'images/wpspin_light.gif' ); ?>" class="loading" alt="">
|
85 |
+
<?php
|
86 |
}
|
87 |
+
|
88 |
/**
|
89 |
* Add the meta box on the single order page
|
|
|
|
|
90 |
*/
|
91 |
public function add_box() {
|
92 |
add_meta_box( 'woocommerce-delivery-notes-box', __( 'Order Print', 'woocommerce-delivery-notes' ), array( $this, 'create_box_content' ), 'shop_order', 'side', 'default' );
|
94 |
|
95 |
/**
|
96 |
* Create the meta box content on the single order page
|
|
|
|
|
97 |
*/
|
98 |
public function create_box_content() {
|
99 |
global $post_id;
|
|
|
100 |
?>
|
101 |
<ul class="woocommerce-delivery-notes-actions">
|
102 |
+
<li><a href="<?php echo wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_print_content&template_type=invoice&order_id=' . $post_id ), 'generate_print_content' ); ?>" 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></li>
|
103 |
+
<li><a href="<?php echo wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_print_content&template_type=delivery-note&order_id=' . $post_id ), 'generate_print_content' ); ?>" 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></li>
|
104 |
</ul>
|
105 |
+
<img src="<?php echo admin_url( 'images/wpspin_light.gif' ); ?>" class="loading" alt="">
|
106 |
<?php
|
107 |
}
|
108 |
|
109 |
}
|
110 |
|
111 |
}
|
112 |
+
|
113 |
+
?>
|
css/style.css
CHANGED
@@ -1,25 +1,40 @@
|
|
1 |
-
|
2 |
-
text-align:
|
|
|
3 |
}
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
}
|
8 |
#company-logo-placeholder {
|
9 |
display: block;
|
10 |
}
|
11 |
#company-logo-placeholder.loading {
|
12 |
-
background-image: url("../../../../wp-admin/images/
|
13 |
background-repeat: no-repeat;
|
14 |
height: 20px;
|
15 |
}
|
16 |
#company-logo-placeholder img {
|
17 |
cursor: pointer;
|
18 |
-
}
|
19 |
-
#media-upload .savesend input.button,
|
20 |
-
#media-upload #go_button {
|
21 |
-
display: none;
|
22 |
-
}
|
23 |
-
.savesend input.button.use-image-button {
|
24 |
-
display: block;
|
25 |
}
|
1 |
+
#woocommerce-delivery-notes-box .inside {
|
2 |
+
text-align: left;
|
3 |
+
position: relative;
|
4 |
}
|
5 |
+
#woocommerce-delivery-notes-box .inside ul {
|
6 |
+
overflow: hidden;
|
7 |
+
margin: 0px;
|
8 |
+
}
|
9 |
+
#woocommerce-delivery-notes-box .inside ul li {
|
10 |
+
float: left;
|
11 |
+
margin: 3px;
|
12 |
+
}
|
13 |
+
#woocommerce-delivery-notes-box .inside img.loading {
|
14 |
+
position: absolute;
|
15 |
+
right: 7px;
|
16 |
+
top: 0px;
|
17 |
+
}
|
18 |
+
#woocommerce-delivery-notes-box .inside img.loading,
|
19 |
+
.type-shop_order .column-order_actions img.loading {
|
20 |
+
display: none;
|
21 |
+
vertical-align: middle;
|
22 |
+
}
|
23 |
+
.type-shop_order .column-order_actions img.loading {
|
24 |
+
float: left;
|
25 |
+
margin-top: 3px;
|
26 |
+
}
|
27 |
+
.type-shop_order .column-order_actions .print-preview-button span {
|
28 |
+
display: none;
|
29 |
}
|
30 |
#company-logo-placeholder {
|
31 |
display: block;
|
32 |
}
|
33 |
#company-logo-placeholder.loading {
|
34 |
+
background-image: url("../../../../wp-admin/images/wpspin_light.gif");
|
35 |
background-repeat: no-repeat;
|
36 |
height: 20px;
|
37 |
}
|
38 |
#company-logo-placeholder img {
|
39 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
}
|
images/print-delivery-note.png
ADDED
Binary file
|
images/print-invoice.png
ADDED
Binary file
|
js/script-media-uploader.js
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
jQuery(document).ready(function($) {
|
2 |
-
|
3 |
-
// button to send media to content
|
4 |
-
$('#media-upload .use-image-button').live('click', function(event) {
|
5 |
-
var id = Number($(this).attr('id').substr(17));
|
6 |
-
var image = $(this).closest('.describe').find('.thumbnail').attr('src');
|
7 |
-
var win = window.dialogArguments || opener || parent || top;
|
8 |
-
win.sendImageToContent(id, image);
|
9 |
-
event.preventDefault();
|
10 |
-
});
|
11 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/script.js
CHANGED
@@ -1,8 +1,54 @@
|
|
1 |
jQuery(document).ready(function($) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
// button to open the media uploader
|
4 |
-
$('#company-logo-add-button, #company-logo-placeholder
|
5 |
-
tb_show('', 'media-upload.php?post_id=0&
|
6 |
event.preventDefault();
|
7 |
});
|
8 |
|
@@ -12,32 +58,33 @@ jQuery(document).ready(function($) {
|
|
12 |
event.preventDefault();
|
13 |
});
|
14 |
|
15 |
-
//
|
16 |
-
|
17 |
-
|
18 |
-
// close the media uploader and set the media
|
19 |
-
window.sendImageToContent = function(id, image) {
|
20 |
-
console.log(this);
|
21 |
tb_remove();
|
22 |
|
23 |
-
|
24 |
-
$('
|
25 |
-
|
|
|
|
|
|
|
26 |
// load the image
|
27 |
var data = {
|
28 |
-
attachment_id:
|
29 |
action: 'load_thumbnail'
|
30 |
}
|
31 |
|
32 |
$.post(ajaxurl, data, function(response) {
|
33 |
-
$('#company-logo-
|
|
|
34 |
$('#company-logo-add-button').hide();
|
35 |
$('#company-logo-remove-button').show();
|
36 |
}).error(function() {
|
37 |
removeImage();
|
38 |
});
|
39 |
}
|
40 |
-
|
41 |
// remove media
|
42 |
function removeImage() {
|
43 |
$('#company-logo-image-id').val('');
|
1 |
jQuery(document).ready(function($) {
|
2 |
+
|
3 |
+
// click print button
|
4 |
+
$('.print-preview-button').on('click', function(event) {
|
5 |
+
|
6 |
+
var iframe = null;
|
7 |
+
var url = $(this).attr('href');
|
8 |
+
|
9 |
+
// just open the href link when iframe printing is not supported
|
10 |
+
if($.browser.opera || ($.browser.msie && parseInt($.browser.version) > 9)) {
|
11 |
+
return;
|
12 |
+
}
|
13 |
+
|
14 |
+
// otherwise continue with the cool iframe printing
|
15 |
+
if(show_print_preview == 'yes') {
|
16 |
+
// show the print settings preview in thickbox
|
17 |
+
tb_show('', url + '&TB_iframe=true&width=720&height=460');
|
18 |
+
|
19 |
+
return false;
|
20 |
+
} else {
|
21 |
+
// create the iframe and print dialogue
|
22 |
+
$('#woocommerce-delivery-notes-box .loading').show();
|
23 |
+
$(this).parent().find('.loading').show();
|
24 |
+
|
25 |
+
// print the page with a hidden preview window
|
26 |
+
if(!$('#printPreview')[0]) {
|
27 |
+
// create a new iframe
|
28 |
+
var iframe = '<iframe id="printPreview" name="printPreview" src=' + url + ' style="position:absolute;top:-9999px;left:-9999px;border:0px;overfow:none; z-index:-1"></iframe>';
|
29 |
+
$('body').append(iframe);
|
30 |
|
31 |
+
// print when the iframe is loaded
|
32 |
+
$('#printPreview').on('load',function() {
|
33 |
+
$('#woocommerce-delivery-notes-box .loading').hide();
|
34 |
+
$(this).parent().find('.loading').hide();
|
35 |
+
frames['printPreview'].focus();
|
36 |
+
frames['printPreview'].print();
|
37 |
+
});
|
38 |
+
} else {
|
39 |
+
// change the iframe src when the iframe is already appended
|
40 |
+
$('#printPreview').attr('src', url);
|
41 |
+
}
|
42 |
+
|
43 |
+
return false;
|
44 |
+
}
|
45 |
+
|
46 |
+
return false;
|
47 |
+
});
|
48 |
+
|
49 |
// button to open the media uploader
|
50 |
+
$('#company-logo-add-button, #company-logo-placeholder').on('click', function(event) {
|
51 |
+
tb_show('', 'media-upload.php?post_id=0&company_logo_image=true&type=image&TB_iframe=true');
|
52 |
event.preventDefault();
|
53 |
});
|
54 |
|
58 |
event.preventDefault();
|
59 |
});
|
60 |
|
61 |
+
// called when the "Insert into post" button is clicked
|
62 |
+
window.send_to_editor = function(html) {
|
63 |
+
removeImage();
|
|
|
|
|
|
|
64 |
tb_remove();
|
65 |
|
66 |
+
// find the attachment id
|
67 |
+
var tag = $('<div></div>');
|
68 |
+
tag.append(html);
|
69 |
+
var imgClass = $('img', tag).attr('class');
|
70 |
+
var imgID = parseInt(imgClass.replace(/\D/g, ''), 10);
|
71 |
+
|
72 |
// load the image
|
73 |
var data = {
|
74 |
+
attachment_id: imgID,
|
75 |
action: 'load_thumbnail'
|
76 |
}
|
77 |
|
78 |
$.post(ajaxurl, data, function(response) {
|
79 |
+
$('#company-logo-image-id').val(data.attachment_id);
|
80 |
+
$('#company-logo-placeholder').removeClass('loading').html(response);
|
81 |
$('#company-logo-add-button').hide();
|
82 |
$('#company-logo-remove-button').show();
|
83 |
}).error(function() {
|
84 |
removeImage();
|
85 |
});
|
86 |
}
|
87 |
+
|
88 |
// remove media
|
89 |
function removeImage() {
|
90 |
$('#company-logo-image-id').val('');
|
languages/woocommerce-delivery-notes-da_DK.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-da_DK.po
ADDED
@@ -0,0 +1,297 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Danish
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:33+0100\n"
|
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: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr "Få Community Support"
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr "Når billedet udskrives, vil dens pixeltæthed automatisk være otte gange højere end den oprindelige. Dette betyder, at 1 cm papir er ca 113 pixels på skærmen. Eksempel: et billede med en bredde på 600 pixel og en højde på 400 pixels har en trykt størrelse på omkring 5,3 * 3,5 cm."
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Produkt"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "I alt"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "Download:"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr "N/A"
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Firma/Shop Logo"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Fjern Logo"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Indsæt Logo"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr "Et firma/Shop Logo præsenterer din forretning"
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Dit firma/shop navn for Følgesedlen."
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr "Sekventiel ordrenummer"
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr "Sekventiel ordrenummer er aktiveret"
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr "Installer og aktiver den gratis <a href=\"%s\">WooCommerce Sekventil ordrenummer</ a>Plugin."
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Følgeseddel"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Antal"
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr "Du har ikke tilladelse til at se denne side."
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr "Gå til indstillinger"
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr "Indstillinger"
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr "OSS"
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Support"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr "Returpolitik, Salgsbetingelser mv:"
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr "SKU:"
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr "Vægt:"
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr "Plugin: WooCommerce udskriv Fakturaer og Følgesedler"
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Note:"
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr "Postadressen bliver trykt til højre for Firma/Shop navn, ovenover ordrelisten."
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr "Tilføj nogle personlige beskeder, eller lignende (f.eks Tak for din bestilling!, Glædelig Jul!, Osv.)."
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr "Tilføj nogle yderligere Footer imprints, ophavsret bemærkninger osv. "
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr "Om plugin'en"
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr "For mere information:"
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr "Ofte Stillede Spørgsmål"
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr "Projekt på WordPress.org"
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr "Projekt på GitHub"
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr "Udskriv"
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Fakturaer og Følgesedler"
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr "Firme/Shop Navn"
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr "Efterlad tom for at bruge standard-hjemmeside / blog titel defineret under WordPress-indstillinger."
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr "Firma/Shop Adresse"
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr "Efterlad tomt felt for ikke at udskrive en adresse."
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr "Personlige Besked:"
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr "Efterlad tomt felt for ikke at udskrive nogen besked."
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr "Her kan du tilføje vilkår mv. For eksempel tilføje en returpolitik i tilfælde af at kunden gerne vil sende varer tilbage. I nogle lande (f.eks i Den Europæiske Union) dette er påkrævet, så kan du tilføje alle nødvendige oplysninger i overensstemmelse med de lovmæssige bestemmelser."
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr "Efterlad tomt felt for ikke at udskrive noget."
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr "Footer Imprint"
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr "Efterlad tomt felt for ikke at udskrive footer."
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr "Ordrer Nummererings-muligheder"
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr "Udskriv Ordrer"
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr "Udskriv Faktura"
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 "Udskriv Følgeseddel"
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr "Faktura"
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr "Modtager"
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr "Kundebemærkninger"
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr "WooCommerce Udskriver Faktura og Følgeseddel"
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr "Udskriv ordrer, fakturaer og følgesedler for WooCommerce butik plugin. Du kan tilføje firma/shop info samt personlige noter og politikker til de udskrivne sider."
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr ""
|
291 |
+
"Denne plugin giver dig mulighed for at tilføje en Faktura eller Leveringsbetingelse til udskrift af dine ordre i WooCommerce shop plugin. Du kan tilføje dit firma's post-adresse og andre personlige meddelelser, politik om refundering og andet, fodnoter og andet. Dette kan hjælpe dig i den daglige administration af din shop. \n"
|
292 |
+
"I nogle lande (f.eks i Den Europæiske Union) er det også nødvendigt at rådgive kunden med rette tilbagebetaling politikker, så det kan denne lille plugin også hjælpe dig med."
|
293 |
+
|
294 |
+
#: classes/class-wcdn-settings.php:137
|
295 |
+
msgid "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 :-)."
|
296 |
+
msgstr "Se under <a href=\"%1$s\"> WooCommerce> Ordrer </ a>, og derfra gå til den enkelte ordre udsigt. På højre side vil du se Udskriv Ordrer meta boks. Klik på en af knapperne, og du får en faktura eller følgeseddel udskrivning side. Ja, det er faktisk så let :-)."
|
297 |
+
|
languages/woocommerce-delivery-notes-de_DE.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-de_DE.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# This German Language File: Copyright (C)
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
#
|
4 |
# Weitere deutsche Sprachdateien fuer WooCommerce und WordPress sind hier zu finden:
|
@@ -6,418 +6,418 @@
|
|
6 |
#
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes
|
10 |
-
"Report-Msgid-Bugs-To:
|
11 |
-
"POT-Creation-Date:
|
12 |
-
"PO-Revision-Date:
|
13 |
-
"Last-Translator:
|
14 |
"Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
|
|
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
19 |
-
"X-Poedit-Language: German\n"
|
20 |
-
"X-Poedit-Country: GERMANY\n"
|
21 |
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;
|
|
|
23 |
"X-Textdomain-Support: yes\n"
|
24 |
-
"X-Poedit-
|
|
|
25 |
|
26 |
-
|
27 |
-
#:
|
28 |
-
#: templates/delivery-notes/print.php:21
|
29 |
-
#: templates/delivery-notes/print.php:45
|
30 |
-
msgid "Delivery Note"
|
31 |
-
msgstr "Lieferschein"
|
32 |
-
|
33 |
-
#@ woocommerce-delivery-notes
|
34 |
-
#: woocommerce-delivery-notes-print.php:91
|
35 |
-
msgid "Print Page"
|
36 |
-
msgstr "Seite ausdrucken"
|
37 |
-
|
38 |
-
#@ woocommerce-delivery-notes
|
39 |
-
#: templates/delivery-notes/print.php:63
|
40 |
-
msgid "Quantity"
|
41 |
-
msgstr "Menge"
|
42 |
-
|
43 |
-
#@ woocommerce-delivery-notes
|
44 |
-
#: templates/delivery-notes/print.php:64
|
45 |
-
msgid "Price"
|
46 |
-
msgstr "Preis"
|
47 |
-
|
48 |
-
#@ woocommerce-delivery-notes
|
49 |
-
#: templates/delivery-notes/print.php:84
|
50 |
-
msgid "Subtotal"
|
51 |
-
msgstr "Zwischensumme"
|
52 |
-
|
53 |
-
#@ woocommerce-delivery-notes
|
54 |
-
#: templates/delivery-notes/print.php:89
|
55 |
-
msgid "Shipping"
|
56 |
-
msgstr "Versand"
|
57 |
-
|
58 |
-
#@ woocommerce-delivery-notes
|
59 |
-
#: templates/delivery-notes/print.php:95
|
60 |
-
msgid "Tax"
|
61 |
-
msgstr "Mwst."
|
62 |
-
|
63 |
-
#@ woocommerce-delivery-notes
|
64 |
-
#: templates/delivery-notes/print.php:101
|
65 |
-
msgid "Discount"
|
66 |
-
msgstr "Rabatt"
|
67 |
-
|
68 |
-
#@ woocommerce-delivery-notes
|
69 |
-
#: templates/delivery-notes/print.php:106
|
70 |
-
msgid "Grand Total"
|
71 |
-
msgstr "Gesamtsumme"
|
72 |
-
|
73 |
-
#@ woocommerce-delivery-notes
|
74 |
-
#: woocommerce-delivery-notes-print.php:18
|
75 |
-
msgid "You do not have sufficient permissions to access this page."
|
76 |
-
msgstr "Sie haben keine ausreichende Rechte, um auf diese Seite zugreifen zu können."
|
77 |
-
|
78 |
-
#@ woocommerce-delivery-notes
|
79 |
-
#: classes/class-wcdn-settings.php:149
|
80 |
-
msgid "Go to the settings page"
|
81 |
-
msgstr "Zur Einstellungsseite des Plugins"
|
82 |
-
|
83 |
-
#@ woocommerce-delivery-notes
|
84 |
-
#: classes/class-wcdn-settings.php:149
|
85 |
-
msgid "Settings"
|
86 |
-
msgstr "Einstellungen"
|
87 |
-
|
88 |
-
#@ woocommerce-delivery-notes
|
89 |
-
#: classes/class-wcdn-writepanel.php:64
|
90 |
msgid "FAQ"
|
91 |
msgstr "FAQ - Häufige Fragen"
|
92 |
|
93 |
-
|
94 |
-
#:
|
95 |
msgid "Support"
|
96 |
msgstr "Hilfe und Unterstützung (Support)"
|
97 |
|
98 |
-
|
99 |
-
#:
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
|
103 |
-
|
104 |
-
#:
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
|
114 |
-
#:
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
|
119 |
-
#:
|
120 |
-
|
121 |
-
|
|
|
122 |
|
123 |
-
|
124 |
-
#:
|
125 |
-
msgid "
|
126 |
-
msgstr "
|
127 |
|
128 |
-
|
129 |
-
#:
|
130 |
-
msgid "
|
131 |
-
msgstr "
|
132 |
|
133 |
-
|
134 |
-
#:
|
135 |
-
|
136 |
-
|
|
|
137 |
|
138 |
-
|
139 |
-
#: classes/class-wcdn-settings.php:
|
140 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
141 |
msgstr "Plugin: WooCommerce Rechnungen & Lieferscheine drucken"
|
142 |
|
143 |
-
|
144 |
-
#: classes/class-wcdn-settings.php:
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
msgstr "
|
|
|
|
|
|
|
|
|
173 |
|
174 |
-
|
175 |
-
#: classes/class-wcdn-settings.php:
|
176 |
msgid "For more information:"
|
177 |
msgstr "Weitere Informationen:"
|
178 |
|
179 |
-
|
180 |
-
#: classes/class-wcdn-settings.php:
|
181 |
msgid "Frequently Asked Questions"
|
182 |
msgstr "Häufige Fragen (FAQ)"
|
183 |
|
184 |
-
|
185 |
-
#: classes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
186 |
msgid "Project on WordPress.org"
|
187 |
msgstr "Projekt bei WordPress.org"
|
188 |
|
189 |
-
|
190 |
-
#: classes/class-wcdn-settings.php:
|
191 |
msgid "Project on GitHub"
|
192 |
msgstr "Projekt bei GitHub"
|
193 |
|
194 |
-
|
195 |
-
#: classes/class-wcdn-settings.php:
|
196 |
-
msgid "Discuss in the Forum"
|
197 |
-
msgstr "Im Forum diskutieren"
|
198 |
-
|
199 |
-
#@ woocommerce-delivery-notes
|
200 |
-
#: classes/class-wcdn-settings.php:214
|
201 |
-
msgid "Print"
|
202 |
-
msgstr "Druck"
|
203 |
-
|
204 |
-
#@ woocommerce-delivery-notes
|
205 |
-
#: classes/class-wcdn-settings.php:254
|
206 |
msgid "Invoices and Delivery Notes"
|
207 |
msgstr "Rechnungen und Lieferscheine"
|
208 |
|
209 |
-
|
210 |
-
#: classes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid "Company/Shop Name"
|
212 |
msgstr "Firmen-/ Shopname"
|
213 |
|
214 |
-
|
215 |
-
#: classes/class-wcdn-settings.php:
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
|
219 |
-
|
220 |
-
#: classes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
msgid "Company/Shop Address"
|
222 |
msgstr "Firmen-/ Shop-Anschrift"
|
223 |
|
224 |
-
|
225 |
-
#: classes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
msgid "Leave blank to not print an address."
|
227 |
msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
|
228 |
|
229 |
-
|
230 |
-
#: classes/class-wcdn-settings.php:
|
231 |
msgid "Personal Notes"
|
232 |
msgstr "Persönliche Anmerkungen"
|
233 |
|
234 |
-
|
235 |
-
#: classes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Leave blank to not print any personal notes."
|
237 |
msgstr "Leer lassen, um keine persönlichen Anmerkungen mit auszudrucken."
|
238 |
|
239 |
-
|
240 |
-
#: classes/class-wcdn-settings.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
-
|
245 |
-
#: classes/class-wcdn-settings.php:
|
246 |
msgid "Leave blank to not print any policies or conditions."
|
247 |
msgstr "Leer lassen, um keine Bedingungen mit auszudrucken."
|
248 |
|
249 |
-
|
250 |
-
#: classes/class-wcdn-settings.php:
|
251 |
msgid "Footer Imprint"
|
252 |
msgstr "Fußzeile Impressum"
|
253 |
|
254 |
-
|
255 |
-
#: classes/class-wcdn-settings.php:
|
256 |
-
msgid "
|
257 |
-
|
|
|
|
|
|
|
|
|
258 |
|
259 |
-
|
260 |
-
#: classes/class-wcdn-settings.php:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
|
|
263 |
|
264 |
-
|
265 |
-
|
266 |
-
msgid "
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
|
275 |
-
#: classes/class-wcdn-settings.php:
|
276 |
msgid "Order Numbering Options"
|
277 |
msgstr "Bestellnummern-Optionen"
|
278 |
|
279 |
-
|
280 |
-
#: classes/class-wcdn-settings.php:
|
281 |
-
msgid "
|
282 |
-
msgstr "
|
283 |
-
|
284 |
-
#@ woocommerce-delivery-notes
|
285 |
-
#: classes/class-wcdn-settings.php:366
|
286 |
-
msgid "This text will be placed before the order number ie. \"YOUR-TEXT123\"."
|
287 |
-
msgstr "Dieser Text wird der Bestellnummer vorangestellt, zum Beispiel <code>IHR-TEXT123</code>."
|
288 |
-
|
289 |
-
#@ woocommerce-delivery-notes
|
290 |
-
#: classes/class-wcdn-settings.php:371
|
291 |
-
msgid "After order number"
|
292 |
-
msgstr "Nach der Bestellnummer"
|
293 |
|
294 |
-
|
295 |
-
#: classes/class-wcdn-settings.php:
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
|
300 |
-
#: classes/class-wcdn-
|
301 |
-
|
302 |
-
|
|
|
|
|
|
|
|
|
|
|
303 |
|
304 |
-
|
305 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
306 |
msgid "Print Invoice"
|
307 |
msgstr "Rechnung drucken"
|
308 |
|
309 |
-
|
310 |
-
|
|
|
|
|
|
|
|
|
|
|
311 |
msgid "Print Delivery Note"
|
312 |
msgstr "Lieferschein drucken"
|
313 |
|
314 |
-
|
315 |
-
#:
|
316 |
-
|
317 |
-
|
318 |
-
msgid "Invoice"
|
319 |
-
msgstr "Rechnung"
|
320 |
|
321 |
-
|
322 |
-
#: templates/delivery-
|
323 |
msgid "Recipient"
|
324 |
msgstr "Empfänger"
|
325 |
|
326 |
-
|
327 |
-
#: templates/delivery-
|
328 |
-
msgid "
|
329 |
-
msgstr "
|
330 |
-
|
331 |
-
#@ woocommerce-delivery-notes
|
332 |
-
#. translators: plugin header field 'Name'
|
333 |
-
#: woocommerce-delivery-notes.php:0
|
334 |
-
msgid "WooCommerce Print Invoices & Delivery Notes"
|
335 |
-
msgstr "WooCommerce Rechnungen & Lieferscheine drucken"
|
336 |
-
|
337 |
-
#@ woocommerce-delivery-notes
|
338 |
-
#. translators: plugin header field 'PluginURI'
|
339 |
-
#. translators: plugin header field 'AuthorURI'
|
340 |
-
#: woocommerce-delivery-notes.php:0
|
341 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
342 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
343 |
-
|
344 |
-
#@ woocommerce-delivery-notes
|
345 |
-
#. translators: plugin header field 'Author'
|
346 |
-
#: woocommerce-delivery-notes.php:0
|
347 |
-
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
348 |
-
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
349 |
-
|
350 |
-
#@ woocommerce-delivery-notes
|
351 |
-
#: classes/class-wcdn-settings.php:194
|
352 |
-
msgid "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."
|
353 |
-
msgstr "Dieses Plugin ermöglicht es, eine einfache Rechnung oder einen einfachen Lieferschein zum Ausdrucken für das WooCommerce Shop-Plugin zu erhalten. Sie können Ihre Firmen-/ Shop-Informationen, ebenso persönliche Anmerkungen, weiterhin Bedingungen/ Widerrufsbelehrung u.Ä. sowie eine Fußzeile (Impressum/ Branding) hinzufügen. Damit beschleunigen Sie die tägliche Shop-Verwaltung. Da in Ländern der Europäischen Union oftmals vorgeschrieben ist, Widerrufsbelehrungen u.Ä. der Bestellung beizulegen, können Sie dies hiermit besser erfüllen und außerdem Ihren Kunden bequem die Bestell-Infos in die Hand geben."
|
354 |
-
|
355 |
-
#@ woocommerce-delivery-notes
|
356 |
-
#: classes/class-wcdn-settings.php:195
|
357 |
-
#, php-format
|
358 |
-
msgid "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 :-)."
|
359 |
-
msgstr "Schauen Sie einfach unter <a href=\"%1$s\">WooCommerce > Bestellungen</a> und rufen Sie dort eine einzelne Bestellung auf. Auf rechten Seite erscheint die <em>Bestellung drucken</em> Metabox. Klicken Sie dort und es öffnet sich die Rechnung oder der Lieferschein zum Ausdrucken. Das ist schon alles :-)."
|
360 |
|
361 |
-
|
362 |
-
#:
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
msgstr "Firmen-/ Shop-Logo"
|
370 |
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
msgstr "Logo entfernen"
|
375 |
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
msgstr "Logo festlegen"
|
380 |
|
381 |
-
|
382 |
-
#:
|
383 |
-
msgid "
|
384 |
-
msgstr "
|
385 |
|
386 |
-
|
387 |
-
#:
|
388 |
-
msgid "
|
389 |
-
msgstr "
|
390 |
|
391 |
-
|
392 |
-
#:
|
393 |
-
msgid "
|
394 |
-
msgstr "
|
395 |
|
396 |
-
|
397 |
-
#:
|
398 |
-
msgid "
|
399 |
-
msgstr "
|
400 |
-
|
401 |
-
#@ woocommerce-delivery-notes
|
402 |
-
#: classes/class-wcdn-settings.php:384
|
403 |
-
msgid "Sequential numbering is enabled."
|
404 |
-
msgstr "Fortlaufende Nummerierung ist aktiviert."
|
405 |
-
|
406 |
-
#@ woocommerce-delivery-notes
|
407 |
-
#: classes/class-wcdn-settings.php:386
|
408 |
-
#, php-format
|
409 |
-
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
410 |
-
msgstr "Installieren und aktivieren Sie das kostenlose Plugin <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
|
411 |
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
msgstr "Dieses Plugin stellt einfache Rechnungen und Lieferscheine für das WooCommerce Shop Plugin bereit. Es können dabei auch Firmen-/ Shop-Infos ebenso wie persönliche Anmerkungen oder Bedingungen/ Widerrufsbelehrungen zu den Druckseiten hinzugefügt werden."
|
417 |
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
msgstr "1.2.1"
|
423 |
|
|
|
|
|
|
|
|
1 |
+
# This German Language File: Copyright (C) 2012 by David Decker of deckerweb.de & genesisthemes.de
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
#
|
4 |
# Weitere deutsche Sprachdateien fuer WooCommerce und WordPress sind hier zu finden:
|
6 |
#
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
10 |
+
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2013-06-16 14:03+0100\n"
|
12 |
+
"PO-Revision-Date: 2013-06-16 14:06+0100\n"
|
13 |
+
"Last-Translator: \n"
|
14 |
"Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
|
15 |
+
"Language: de_DE\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
20 |
"X-Poedit-SourceCharset: utf-8\n"
|
21 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
22 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
23 |
"X-Textdomain-Support: yes\n"
|
24 |
+
"X-Poedit-Basepath: .\n"
|
25 |
+
"X-Generator: Poedit 1.5.5\n"
|
26 |
|
27 |
+
# @ woocommerce-delivery-notes
|
28 |
+
#: ../woocommerce-delivery-notes.php:124
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid "FAQ"
|
30 |
msgstr "FAQ - Häufige Fragen"
|
31 |
|
32 |
+
# @ woocommerce-delivery-notes
|
33 |
+
#: ../woocommerce-delivery-notes.php:125
|
34 |
msgid "Support"
|
35 |
msgstr "Hilfe und Unterstützung (Support)"
|
36 |
|
37 |
+
# @ woocommerce-delivery-notes
|
38 |
+
#: ../woocommerce-delivery-notes.php:134
|
39 |
+
msgid "Go to the settings page"
|
40 |
+
msgstr "Zur Einstellungsseite des Plugins"
|
41 |
|
42 |
+
# @ woocommerce-delivery-notes
|
43 |
+
#: ../woocommerce-delivery-notes.php:134
|
44 |
+
msgid "Settings"
|
45 |
+
msgstr "Einstellungen"
|
46 |
|
47 |
+
# @ woocommerce-delivery-notes
|
48 |
+
#: ../woocommerce-delivery-notes.php:201
|
49 |
+
msgid "Invoice"
|
50 |
+
msgstr "Rechnung"
|
51 |
|
52 |
+
# @ woocommerce-delivery-notes
|
53 |
+
#: ../woocommerce-delivery-notes.php:203
|
54 |
+
msgid "Delivery Note"
|
55 |
+
msgstr "Lieferschein"
|
56 |
|
57 |
+
# @ woocommerce-delivery-notes
|
58 |
+
#: ../woocommerce-delivery-notes.php:302
|
59 |
+
#: ../classes/class-wcdn-settings.php:154
|
60 |
+
msgid "Print"
|
61 |
+
msgstr "Drucken"
|
62 |
|
63 |
+
# @ woocommerce
|
64 |
+
#: ../woocommerce-delivery-notes.php:391 ../woocommerce-delivery-notes.php:405
|
65 |
+
msgid "N/A"
|
66 |
+
msgstr "k.A."
|
67 |
|
68 |
+
#: ../classes/class-wcdn-print.php:63 ../classes/class-wcdn-print.php:68
|
69 |
+
#: ../classes/class-wcdn-print.php:73 ../classes/class-wcdn-print.php:78
|
70 |
+
msgid "You do not have sufficient permissions to access this page."
|
71 |
+
msgstr "Sie haben nicht genügend Rechte für den Zugriff auf diese Seite."
|
72 |
|
73 |
+
# @ woocommerce-delivery-notes
|
74 |
+
#: ../classes/class-wcdn-settings.php:132
|
75 |
+
#: ../classes/class-wcdn-settings.php:135
|
76 |
+
msgid "About the Plugin"
|
77 |
+
msgstr "Über das Plugin"
|
78 |
|
79 |
+
# @ woocommerce-delivery-notes
|
80 |
+
#: ../classes/class-wcdn-settings.php:134
|
81 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
82 |
msgstr "Plugin: WooCommerce Rechnungen & Lieferscheine drucken"
|
83 |
|
84 |
+
# @ woocommerce-delivery-notes
|
85 |
+
#: ../classes/class-wcdn-settings.php:136
|
86 |
+
msgid ""
|
87 |
+
"This plugin enables you to add a Invoice or simple Delivery Note page for "
|
88 |
+
"printing for your orders in WooCommerce shop plugin. You can add your "
|
89 |
+
"company postal address, further add personal notes, refund or other policies "
|
90 |
+
"and a footer note/branding. This helps speed up your daily shop and order "
|
91 |
+
"management. In some countries (e.g. in the European Union) it is also "
|
92 |
+
"required to advice the customer with proper refund policies so this little "
|
93 |
+
"plugin might help you a bit with that too."
|
94 |
+
msgstr ""
|
95 |
+
"Dieses Plugin ermöglicht es, eine einfache Rechnung oder einen einfachen "
|
96 |
+
"Lieferschein zum Ausdrucken für das WooCommerce Shop-Plugin zu erhalten. Sie "
|
97 |
+
"können Ihre Firmen-/ Shop-Informationen, ebenso persönliche Anmerkungen, "
|
98 |
+
"weiterhin Bedingungen/ Widerrufsbelehrung u.Ä. sowie eine Fußzeile "
|
99 |
+
"(Impressum/ Branding) hinzufügen. Damit beschleunigen Sie die tägliche Shop-"
|
100 |
+
"Verwaltung. Da in Ländern der Europäischen Union oftmals vorgeschrieben ist, "
|
101 |
+
"Widerrufsbelehrungen u.Ä. der Bestellung beizulegen, können Sie dies hiermit "
|
102 |
+
"besser erfüllen und außerdem Ihren Kunden bequem die Bestell-Infos in die "
|
103 |
+
"Hand geben."
|
104 |
+
|
105 |
+
# @ woocommerce-delivery-notes
|
106 |
+
#: ../classes/class-wcdn-settings.php:137
|
107 |
+
#, php-format
|
108 |
+
msgid ""
|
109 |
+
"Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a "
|
110 |
+
"single order view. On the right side you will see the Order Print meta box. "
|
111 |
+
"Click one of the buttons and you get the invoice or delivery note printing "
|
112 |
+
"page. Yes, it is that easy :-)."
|
113 |
+
msgstr ""
|
114 |
+
"Schauen Sie einfach unter <a href=\"%1$s\">WooCommerce > Bestellungen</a> "
|
115 |
+
"und rufen Sie dort eine einzelne Bestellung auf. Auf rechten Seite erscheint "
|
116 |
+
"die <em>Bestellung drucken</em> Metabox. Klicken Sie dort und es öffnet sich "
|
117 |
+
"die Rechnung oder der Lieferschein zum Ausdrucken. Das ist schon alles :-)."
|
118 |
|
119 |
+
# @ woocommerce-delivery-notes
|
120 |
+
#: ../classes/class-wcdn-settings.php:142
|
121 |
msgid "For more information:"
|
122 |
msgstr "Weitere Informationen:"
|
123 |
|
124 |
+
# @ woocommerce-delivery-notes
|
125 |
+
#: ../classes/class-wcdn-settings.php:143
|
126 |
msgid "Frequently Asked Questions"
|
127 |
msgstr "Häufige Fragen (FAQ)"
|
128 |
|
129 |
+
# @ woocommerce-delivery-notes
|
130 |
+
#: ../classes/class-wcdn-settings.php:144
|
131 |
+
msgid "Get Community Support"
|
132 |
+
msgstr "Community-Support erhalten"
|
133 |
+
|
134 |
+
# @ woocommerce-delivery-notes
|
135 |
+
#: ../classes/class-wcdn-settings.php:145
|
136 |
msgid "Project on WordPress.org"
|
137 |
msgstr "Projekt bei WordPress.org"
|
138 |
|
139 |
+
# @ woocommerce-delivery-notes
|
140 |
+
#: ../classes/class-wcdn-settings.php:146
|
141 |
msgid "Project on GitHub"
|
142 |
msgstr "Projekt bei GitHub"
|
143 |
|
144 |
+
# @ woocommerce-delivery-notes
|
145 |
+
#: ../classes/class-wcdn-settings.php:194
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
msgid "Invoices and Delivery Notes"
|
147 |
msgstr "Rechnungen und Lieferscheine"
|
148 |
|
149 |
+
# @ woocommerce-delivery-notes
|
150 |
+
#: ../classes/class-wcdn-settings.php:202
|
151 |
+
msgid "Company/Shop Logo"
|
152 |
+
msgstr "Firmen-/ Shop-Logo"
|
153 |
+
|
154 |
+
# @ woocommerce-delivery-notes
|
155 |
+
#: ../classes/class-wcdn-settings.php:207
|
156 |
+
msgid "Remove Logo"
|
157 |
+
msgstr "Logo entfernen"
|
158 |
+
|
159 |
+
# @ woocommerce-delivery-notes
|
160 |
+
#: ../classes/class-wcdn-settings.php:208
|
161 |
+
msgid "Set Logo"
|
162 |
+
msgstr "Logo festlegen"
|
163 |
+
|
164 |
+
# @ woocommerce-delivery-notes
|
165 |
+
#: ../classes/class-wcdn-settings.php:210
|
166 |
+
msgid "A company/shop logo representing your business."
|
167 |
+
msgstr "Ein Firmen-/ Shop-Logo, welches Ihr Geschäft repräsentiert."
|
168 |
+
|
169 |
+
# @ woocommerce-delivery-notes
|
170 |
+
#: ../classes/class-wcdn-settings.php:211
|
171 |
+
#: ../classes/class-wcdn-settings.php:224
|
172 |
+
#: ../classes/class-wcdn-settings.php:237
|
173 |
+
#: ../classes/class-wcdn-settings.php:250
|
174 |
+
#: ../classes/class-wcdn-settings.php:263
|
175 |
+
#: ../classes/class-wcdn-settings.php:276
|
176 |
+
msgid "Note:"
|
177 |
+
msgstr "Hinweis:"
|
178 |
+
|
179 |
+
# @ woocommerce-delivery-notes
|
180 |
+
#: ../classes/class-wcdn-settings.php:212
|
181 |
+
msgid ""
|
182 |
+
"When the image is printed, its pixel density will automatically be eight "
|
183 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
184 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
185 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
186 |
+
"to 1 inch."
|
187 |
+
msgstr ""
|
188 |
+
"Wenn das Bild gedruckt wird, wird dessen Pixeldichte automatisch höher sein "
|
189 |
+
"als das Original. Dies bedeutet, die Fläche von einem gedruckten Quadratzoll "
|
190 |
+
"(ca. 2.54cm x 2.54cm) wird mit 288 Pixeln auf dem Bildschirm in Verbindung "
|
191 |
+
"stehen. Beispiel: Ein Bild mit einer Breite von 576 Pixeln und einer Höhe "
|
192 |
+
"von 288 Pixeln wird eine gedruckte Größe von etwa 2 Zoll x 1 Zoll aufweisen "
|
193 |
+
"(ca. 5.08 cm x 2.54cm)."
|
194 |
+
|
195 |
+
# @ woocommerce-delivery-notes
|
196 |
+
#: ../classes/class-wcdn-settings.php:218
|
197 |
msgid "Company/Shop Name"
|
198 |
msgstr "Firmen-/ Shopname"
|
199 |
|
200 |
+
# @ woocommerce-delivery-notes
|
201 |
+
#: ../classes/class-wcdn-settings.php:223
|
202 |
+
msgid "Your company/shop name for the Delivery Note."
|
203 |
+
msgstr "Ihr Firmen-/ Shop-Name für den Lieferschein/ die Rechnung."
|
204 |
|
205 |
+
# @ woocommerce-delivery-notes
|
206 |
+
#: ../classes/class-wcdn-settings.php:225
|
207 |
+
msgid ""
|
208 |
+
"Leave blank to use the default Website/ Blog title defined in WordPress "
|
209 |
+
"settings."
|
210 |
+
msgstr ""
|
211 |
+
"Leer lassen, um den standardmäßigen Webseiten- bzw. Blogtitel zu verwenden, "
|
212 |
+
"der in den WordPress-Einstellungen festgelegt wird."
|
213 |
+
|
214 |
+
# @ woocommerce-delivery-notes
|
215 |
+
#: ../classes/class-wcdn-settings.php:231
|
216 |
msgid "Company/Shop Address"
|
217 |
msgstr "Firmen-/ Shop-Anschrift"
|
218 |
|
219 |
+
# @ woocommerce-delivery-notes
|
220 |
+
#: ../classes/class-wcdn-settings.php:236
|
221 |
+
msgid ""
|
222 |
+
"The postal address of the company/shop, which gets printed right of the "
|
223 |
+
"company/shop name, above the order listings."
|
224 |
+
msgstr ""
|
225 |
+
"Die Postanschrift der Firma bzw. des Shops, welche rechts neben dem Firmen-/ "
|
226 |
+
"Shopname ausgegeben wird, über den Bestelldaten."
|
227 |
+
|
228 |
+
# @ woocommerce-delivery-notes
|
229 |
+
#: ../classes/class-wcdn-settings.php:238
|
230 |
msgid "Leave blank to not print an address."
|
231 |
msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
|
232 |
|
233 |
+
# @ woocommerce-delivery-notes
|
234 |
+
#: ../classes/class-wcdn-settings.php:244
|
235 |
msgid "Personal Notes"
|
236 |
msgstr "Persönliche Anmerkungen"
|
237 |
|
238 |
+
# @ woocommerce-delivery-notes
|
239 |
+
#: ../classes/class-wcdn-settings.php:249
|
240 |
+
msgid ""
|
241 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
242 |
+
"Your Order!, Merry Christmas!, etc.)."
|
243 |
+
msgstr ""
|
244 |
+
"Fügen Sie einige persönliche Anmerkungen wie Dank, jahreszeitliche Grüße "
|
245 |
+
"hinzu (z.B.: Danke für Ihre Bestellung!, Frohe Weihnachten!, etc.)."
|
246 |
+
|
247 |
+
# @ woocommerce-delivery-notes
|
248 |
+
#: ../classes/class-wcdn-settings.php:251
|
249 |
msgid "Leave blank to not print any personal notes."
|
250 |
msgstr "Leer lassen, um keine persönlichen Anmerkungen mit auszudrucken."
|
251 |
|
252 |
+
# @ woocommerce-delivery-notes
|
253 |
+
#: ../classes/class-wcdn-settings.php:257
|
254 |
+
msgid "Returns Policy, Conditions, etc.:"
|
255 |
+
msgstr "Rückgabe- und sonstige Bedingungen:"
|
256 |
+
|
257 |
+
# @ woocommerce-delivery-notes
|
258 |
+
#: ../classes/class-wcdn-settings.php:262
|
259 |
+
msgid ""
|
260 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
261 |
+
"returns policy in case the client would like to send back some goods. In "
|
262 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
263 |
+
"any required info in accordance with the statutory regulations."
|
264 |
+
msgstr ""
|
265 |
+
"Hier können Sie einige weitere Bedingungen angeben. Zum Beispiel Bedingungen "
|
266 |
+
"für die Rückgabe, Widerrufsbelehrung etc. In einigen Ländern (z.B. innerhalb "
|
267 |
+
"der EU) ist dies sogar vorgeschrieben - informieren Sie sich daher über die "
|
268 |
+
"entsprechenden gesetzlichen Bestimmungen für Ihr Land."
|
269 |
|
270 |
+
# @ woocommerce-delivery-notes
|
271 |
+
#: ../classes/class-wcdn-settings.php:264
|
272 |
msgid "Leave blank to not print any policies or conditions."
|
273 |
msgstr "Leer lassen, um keine Bedingungen mit auszudrucken."
|
274 |
|
275 |
+
# @ woocommerce-delivery-notes
|
276 |
+
#: ../classes/class-wcdn-settings.php:270
|
277 |
msgid "Footer Imprint"
|
278 |
msgstr "Fußzeile Impressum"
|
279 |
|
280 |
+
# @ woocommerce-delivery-notes
|
281 |
+
#: ../classes/class-wcdn-settings.php:275
|
282 |
+
msgid ""
|
283 |
+
"Add some further footer imprint, copyright notes etc. to get the printed "
|
284 |
+
"sheets a bit more branded to your needs."
|
285 |
+
msgstr ""
|
286 |
+
"Fügen Sie Impressumangaben in der Fußzeile hinzu. Damit können die Ausdrucke "
|
287 |
+
"noch stärker an Ihr CI bzw. rechtliche Anforderungen angepasst werden."
|
288 |
|
289 |
+
# @ woocommerce-delivery-notes
|
290 |
+
#: ../classes/class-wcdn-settings.php:277
|
291 |
+
msgid "Leave blank to not print a footer."
|
292 |
+
msgstr ""
|
293 |
+
"Leer lassen, um keine Impressumangaben in der Fußzeile mit auszudrucken."
|
294 |
|
295 |
+
#: ../classes/class-wcdn-settings.php:301
|
296 |
+
#, php-format
|
297 |
+
msgid ""
|
298 |
+
"You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice "
|
299 |
+
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery "
|
300 |
+
"note template</a>."
|
301 |
+
msgstr ""
|
302 |
+
"Sie können eine Vorschau der <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s"
|
303 |
+
"\">Rechnung</a> oder des <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s"
|
304 |
+
"\">Lieferscheins</a> anzeigen."
|
305 |
|
306 |
+
#: ../classes/class-wcdn-settings.php:302
|
307 |
+
msgid ""
|
308 |
+
"For more advanced control copy <code>woocommerce-delivery-notes/templates/"
|
309 |
+
"print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</"
|
310 |
+
"code>."
|
311 |
+
msgstr ""
|
312 |
+
"Kopieren Sie für erweiterte Anpassungen <code>woocommerce-delivery-notes/"
|
313 |
+
"templates/print/style.css</code> nach <code>ihr-theme-name/woocommerce/print/"
|
314 |
+
"style.css</code>."
|
315 |
|
316 |
+
# @ woocommerce-delivery-notes
|
317 |
+
#: ../classes/class-wcdn-settings.php:309
|
318 |
msgid "Order Numbering Options"
|
319 |
msgstr "Bestellnummern-Optionen"
|
320 |
|
321 |
+
# @ woocommerce-delivery-notes
|
322 |
+
#: ../classes/class-wcdn-settings.php:314
|
323 |
+
msgid "Sequential order number"
|
324 |
+
msgstr "Fortlaufende Bestellnummer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
+
# @ woocommerce-delivery-notes
|
327 |
+
#: ../classes/class-wcdn-settings.php:318
|
328 |
+
msgid "Sequential numbering is enabled."
|
329 |
+
msgstr "Fortlaufende Nummerierung ist aktiviert."
|
330 |
|
331 |
+
# @ woocommerce-delivery-notes
|
332 |
+
#: ../classes/class-wcdn-settings.php:320
|
333 |
+
#, php-format
|
334 |
+
msgid ""
|
335 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
336 |
+
"Numbers</a> Plugin."
|
337 |
+
msgstr ""
|
338 |
+
"Installieren und aktivieren Sie das kostenlose Plugin <a href=\"%s"
|
339 |
+
"\">WooCommerce Sequential Order Numbers</a>."
|
340 |
|
341 |
+
# @ woocommerce-delivery-notes
|
342 |
+
#: ../classes/class-wcdn-writepanel.php:76
|
343 |
+
#: ../classes/class-wcdn-writepanel.php:77
|
344 |
+
#: ../classes/class-wcdn-writepanel.php:102
|
345 |
msgid "Print Invoice"
|
346 |
msgstr "Rechnung drucken"
|
347 |
|
348 |
+
# @ woocommerce-invoice
|
349 |
+
# @ woocommerce-delivery-notes
|
350 |
+
#: ../classes/class-wcdn-writepanel.php:78
|
351 |
+
#: ../classes/class-wcdn-writepanel.php:80
|
352 |
+
#: ../classes/class-wcdn-writepanel.php:81
|
353 |
+
#: ../classes/class-wcdn-writepanel.php:82
|
354 |
+
#: ../classes/class-wcdn-writepanel.php:103
|
355 |
msgid "Print Delivery Note"
|
356 |
msgstr "Lieferschein drucken"
|
357 |
|
358 |
+
# @ woocommerce-delivery-notes
|
359 |
+
#: ../classes/class-wcdn-writepanel.php:92
|
360 |
+
msgid "Order Print"
|
361 |
+
msgstr "Bestellung drucken"
|
|
|
|
|
362 |
|
363 |
+
# @ woocommerce-delivery-notes
|
364 |
+
#: ../templates/print/print-delivery-note.php:23
|
365 |
msgid "Recipient"
|
366 |
msgstr "Empfänger"
|
367 |
|
368 |
+
# @ woocommerce-delivery-notes
|
369 |
+
#: ../templates/print/print-delivery-note.php:40
|
370 |
+
msgid "Order Date"
|
371 |
+
msgstr "Bestelldatum"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
|
373 |
+
# @ woocommerce-delivery-notes
|
374 |
+
#: ../templates/print/print-delivery-note.php:44
|
375 |
+
msgid "Order Number"
|
376 |
+
msgstr "Bestellnummer"
|
377 |
|
378 |
+
#: ../templates/print/print-delivery-note.php:48
|
379 |
+
msgid "Payment Method"
|
380 |
+
msgstr "Zahlungsart"
|
|
|
381 |
|
382 |
+
#: ../templates/print/print-delivery-note.php:52
|
383 |
+
msgid "Email"
|
384 |
+
msgstr "E-Mail"
|
|
|
385 |
|
386 |
+
#: ../templates/print/print-delivery-note.php:56
|
387 |
+
msgid "Phone"
|
388 |
+
msgstr "Telefon"
|
|
|
389 |
|
390 |
+
# @ woocommerce
|
391 |
+
#: ../templates/print/print-delivery-note.php:65
|
392 |
+
msgid "Product"
|
393 |
+
msgstr "Produkt"
|
394 |
|
395 |
+
# @ woocommerce
|
396 |
+
#: ../templates/print/print-delivery-note.php:66
|
397 |
+
msgid "Quantity"
|
398 |
+
msgstr "Menge"
|
399 |
|
400 |
+
# @ woocommerce
|
401 |
+
#: ../templates/print/print-delivery-note.php:67
|
402 |
+
msgid "Totals"
|
403 |
+
msgstr "Gesamt"
|
404 |
|
405 |
+
# @ woocommerce-delivery-notes
|
406 |
+
#: ../templates/print/print-delivery-note.php:75
|
407 |
+
msgid "SKU:"
|
408 |
+
msgstr "Art.-Nr.:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
|
410 |
+
# @ woocommerce-delivery-notes
|
411 |
+
#: ../templates/print/print-delivery-note.php:76
|
412 |
+
msgid "Weight:"
|
413 |
+
msgstr "Gewicht:"
|
|
|
414 |
|
415 |
+
# @ woocommerce-delivery-notes
|
416 |
+
#: ../templates/print/print-delivery-note.php:81
|
417 |
+
msgid "Download:"
|
418 |
+
msgstr "Download:"
|
|
|
419 |
|
420 |
+
# @ woocommerce-delivery-notes
|
421 |
+
#: ../templates/print/print-delivery-note.php:109
|
422 |
+
msgid "Customer Notes"
|
423 |
+
msgstr "Kundennotizen"
|
languages/woocommerce-delivery-notes-es_ES.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-es_ES.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,292 +13,285 @@ msgstr ""
|
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
-
#:
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
20 |
|
21 |
-
#: templates/delivery-
|
22 |
-
|
23 |
-
|
24 |
-
msgstr "Imprimir página"
|
25 |
|
26 |
-
#: templates/delivery-
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
#:
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
33 |
|
34 |
-
#:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#: templates/delivery-
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#:
|
|
|
|
|
|
|
55 |
msgid "You do not have sufficient permissions to access this page."
|
56 |
msgstr "No tienes los permisos suficientes para acceder a esta página."
|
57 |
|
58 |
-
#:
|
59 |
msgid "Go to the settings page"
|
60 |
msgstr "Ir a la página de ajustes"
|
61 |
|
62 |
-
#:
|
63 |
msgid "Settings"
|
64 |
msgstr "Ajustes"
|
65 |
|
66 |
-
#:
|
67 |
msgid "FAQ"
|
68 |
msgstr "FAQ"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Support"
|
72 |
msgstr "Soporte"
|
73 |
|
74 |
-
#: classes/class-wcdn-
|
75 |
-
msgid "http://genesisthemes.de/en/donate/"
|
76 |
-
msgstr "http://genesisthemes.de/en/donate/"
|
77 |
-
|
78 |
-
#: classes/class-wcdn-writepanel.php:66
|
79 |
-
msgid "Donate"
|
80 |
-
msgstr "Donación"
|
81 |
-
|
82 |
-
#: templates/delivery-notes/print.php:57
|
83 |
-
msgid "Product Name"
|
84 |
-
msgstr "Producto"
|
85 |
-
|
86 |
-
#: classes/class-wcdn-settings.php:175
|
87 |
msgid "Returns Policy, Conditions, etc.:"
|
88 |
msgstr "Política de Devoluciones, Condiciones, etc.:"
|
89 |
|
90 |
-
#: templates/delivery-
|
91 |
-
msgid "Order No."
|
92 |
-
msgstr "Pedido No."
|
93 |
-
|
94 |
-
#: templates/delivery-notes/print.php:48
|
95 |
-
msgid "Order Date"
|
96 |
-
msgstr "Fecha de Pedido"
|
97 |
-
|
98 |
-
#: templates/delivery-notes/print.php:65
|
99 |
msgid "SKU:"
|
100 |
msgstr "SKU:"
|
101 |
|
102 |
-
#: templates/delivery-
|
103 |
msgid "Weight:"
|
104 |
msgstr "Peso:"
|
105 |
|
106 |
-
#: classes/class-wcdn-settings.php:
|
107 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: classes/class-wcdn-settings.php:141
|
111 |
-
msgid "Your custom company or shop name for the Delivery Note."
|
112 |
-
msgstr "Tu nombre de empresa personalizado o el nombre de la tienda de la Nota de Entrega."
|
113 |
|
114 |
-
#: classes/class-wcdn-settings.php:
|
115 |
-
#: classes/class-wcdn-settings.php:
|
116 |
-
#: classes/class-wcdn-settings.php:
|
117 |
-
#: classes/class-wcdn-settings.php:
|
118 |
-
#: classes/class-wcdn-settings.php:
|
119 |
-
#: classes/class-wcdn-settings.php:
|
120 |
msgid "Note:"
|
121 |
msgstr "Nota:"
|
122 |
|
123 |
-
#: classes/class-wcdn-settings.php:
|
124 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
125 |
msgstr "La dirección postal de la compañia/tienda, quedara impresa a la derecha del nombre de la compañia/tienda, debajo del listado de pedido."
|
126 |
|
127 |
-
#: classes/class-wcdn-settings.php:
|
128 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
129 |
msgstr "Añade notas personales, o felicitaciones o cualquier cosa (ej. ¡Gracias por tu pedido!, ¡Feliz Navidad!, ect.)"
|
130 |
|
131 |
-
#: classes/class-wcdn-settings.php:
|
132 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
133 |
msgstr "Añade además de notas a pie de página, notas de copyright etc. para obtener hojas impresas que se ajusten un poco mas a tu marca."
|
134 |
|
135 |
-
#: classes/class-wcdn-settings.php:
|
136 |
-
#: classes/class-wcdn-settings.php:
|
137 |
msgid "About the Plugin"
|
138 |
-
msgstr ""
|
139 |
|
140 |
-
#: classes/class-wcdn-settings.php:
|
141 |
msgid "For more information:"
|
142 |
-
msgstr ""
|
143 |
|
144 |
-
#: classes/class-wcdn-settings.php:
|
145 |
msgid "Frequently Asked Questions"
|
146 |
-
msgstr ""
|
147 |
|
148 |
-
#: classes/class-wcdn-settings.php:
|
149 |
msgid "Project on WordPress.org"
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#: classes/class-wcdn-settings.php:
|
153 |
msgid "Project on GitHub"
|
154 |
-
msgstr ""
|
155 |
|
156 |
-
#: classes/class-wcdn-settings.php:
|
157 |
-
msgid "Discuss in the Forum"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: classes/class-wcdn-settings.php:118
|
161 |
msgid "Print"
|
162 |
-
msgstr ""
|
163 |
|
164 |
-
#: classes/class-wcdn-settings.php:
|
165 |
msgid "Invoices and Delivery Notes"
|
166 |
-
msgstr ""
|
167 |
|
168 |
-
#: classes/class-wcdn-settings.php:
|
169 |
msgid "Company/Shop Name"
|
170 |
-
msgstr ""
|
171 |
|
172 |
-
#: classes/class-wcdn-settings.php:
|
173 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
174 |
-
msgstr ""
|
175 |
|
176 |
-
#: classes/class-wcdn-settings.php:
|
177 |
msgid "Company/Shop Address"
|
178 |
-
msgstr ""
|
179 |
|
180 |
-
#: classes/class-wcdn-settings.php:
|
181 |
msgid "Leave blank to not print an address."
|
182 |
-
msgstr ""
|
183 |
|
184 |
-
#: classes/class-wcdn-settings.php:
|
185 |
msgid "Personal Notes"
|
186 |
-
msgstr ""
|
187 |
|
188 |
-
#: classes/class-wcdn-settings.php:
|
189 |
msgid "Leave blank to not print any personal notes."
|
190 |
-
msgstr ""
|
191 |
|
192 |
-
#: classes/class-wcdn-settings.php:
|
193 |
msgid "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."
|
194 |
-
msgstr ""
|
195 |
|
196 |
-
#: classes/class-wcdn-settings.php:
|
197 |
msgid "Leave blank to not print any policies or conditions."
|
198 |
-
msgstr ""
|
199 |
|
200 |
-
#: classes/class-wcdn-settings.php:
|
201 |
msgid "Footer Imprint"
|
202 |
-
msgstr ""
|
203 |
|
204 |
-
#: classes/class-wcdn-settings.php:
|
205 |
msgid "Leave blank to not print a footer."
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: classes/class-wcdn-settings.php:201
|
209 |
-
msgid "Preview Options"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: classes/class-wcdn-settings.php:206
|
213 |
-
msgid "Preview opens"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: classes/class-wcdn-settings.php:210
|
217 |
-
msgid "Start printing when the preview page opens"
|
218 |
-
msgstr ""
|
219 |
|
220 |
-
#: classes/class-wcdn-settings.php:
|
221 |
msgid "Order Numbering Options"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: classes/class-wcdn-settings.php:220
|
225 |
-
msgid "Before order number"
|
226 |
-
msgstr ""
|
227 |
|
228 |
-
#: classes/class-wcdn-
|
229 |
-
msgid "This text will be placed before the order number ie. \"YOUR-TEXT123\"."
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: classes/class-wcdn-settings.php:229
|
233 |
-
msgid "After order number"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: classes/class-wcdn-settings.php:233
|
237 |
-
msgid "This text will be placed after the order number ie. \"123YOUR-TEXT\"."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: classes/class-wcdn-settings.php:238
|
241 |
-
msgid "Number Offset"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: classes/class-wcdn-settings.php:243
|
245 |
-
msgid "This adds an offset to the WooCommerce order number. Helpful for a contiguous numbering."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: classes/class-wcdn-settings.php:245
|
249 |
-
msgid "Only positive or negative numbers are allowed."
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: classes/class-wcdn-writepanel.php:78
|
253 |
msgid "Order Print"
|
254 |
-
msgstr ""
|
255 |
|
256 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
257 |
msgid "Print Invoice"
|
258 |
-
msgstr ""
|
259 |
|
260 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
|
|
|
|
261 |
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
|
264 |
-
#:
|
265 |
-
#: templates/delivery-notes/print.php:21
|
266 |
msgid "Invoice"
|
267 |
-
msgstr ""
|
268 |
|
269 |
-
#: templates/delivery-
|
270 |
msgid "Recipient"
|
271 |
-
msgstr ""
|
272 |
|
273 |
-
#: templates/delivery-
|
274 |
msgid "Customer Notes"
|
275 |
-
msgstr ""
|
276 |
|
277 |
#: woocommerce-delivery-notes.php:0
|
278 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: woocommerce-delivery-notes.php:0
|
282 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
283 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
284 |
|
285 |
#: woocommerce-delivery-notes.php:0
|
286 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
287 |
-
msgstr ""
|
288 |
|
289 |
#: woocommerce-delivery-notes.php:0
|
290 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
291 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "1.2"
|
295 |
-
msgstr "1.2"
|
296 |
-
|
297 |
-
#: classes/class-wcdn-settings.php:98
|
298 |
msgid "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."
|
299 |
-
msgstr ""
|
300 |
|
301 |
-
#: classes/class-wcdn-settings.php:
|
302 |
msgid "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 :-)."
|
303 |
msgstr ""
|
|
|
|
|
304 |
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:34+0100\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
|
|
27 |
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Logo Empresa/Tienda"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Eliminar Logo"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Definir Logo"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr "Logo de la empresa/tienda que represente su negocio."
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Nombre de tu empresa/tienda para las Notas de Entrega."
|
88 |
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr "Número de pedido secuencial"
|
92 |
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr "La numeración secuencial esta activada."
|
96 |
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr "Instalar y activar el plugin gratuito <a href=\"%s\">WooCommerce Números de Pedido Secuenciales</a>."
|
100 |
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Nota de Entrega"
|
108 |
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Cantidad"
|
112 |
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
msgid "You do not have sufficient permissions to access this page."
|
118 |
msgstr "No tienes los permisos suficientes para acceder a esta página."
|
119 |
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
msgid "Go to the settings page"
|
122 |
msgstr "Ir a la página de ajustes"
|
123 |
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
msgid "Settings"
|
126 |
msgstr "Ajustes"
|
127 |
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
msgid "FAQ"
|
130 |
msgstr "FAQ"
|
131 |
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
msgid "Support"
|
134 |
msgstr "Soporte"
|
135 |
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Returns Policy, Conditions, etc.:"
|
138 |
msgstr "Política de Devoluciones, Condiciones, etc.:"
|
139 |
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "SKU:"
|
142 |
msgstr "SKU:"
|
143 |
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
msgid "Weight:"
|
146 |
msgstr "Peso:"
|
147 |
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr "Plugin: WooCommerce Imprimir Facturas & Notas de Entrega"
|
|
|
|
|
|
|
|
|
151 |
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Nota:"
|
160 |
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
msgstr "La dirección postal de la compañia/tienda, quedara impresa a la derecha del nombre de la compañia/tienda, debajo del listado de pedido."
|
164 |
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
msgstr "Añade notas personales, o felicitaciones o cualquier cosa (ej. ¡Gracias por tu pedido!, ¡Feliz Navidad!, ect.)"
|
168 |
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
msgstr "Añade además de notas a pie de página, notas de copyright etc. para obtener hojas impresas que se ajusten un poco mas a tu marca."
|
172 |
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
msgid "About the Plugin"
|
176 |
+
msgstr "Acerca del Plugin"
|
177 |
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
msgid "For more information:"
|
180 |
+
msgstr "Para más información:"
|
181 |
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
msgid "Frequently Asked Questions"
|
184 |
+
msgstr "Preguntas más frecuentes"
|
185 |
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
msgid "Project on WordPress.org"
|
188 |
+
msgstr "Proyecto en WordPress.org"
|
189 |
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
msgid "Project on GitHub"
|
192 |
+
msgstr "Proyecto en GitHub"
|
193 |
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
|
|
|
|
|
|
|
|
195 |
msgid "Print"
|
196 |
+
msgstr "Imprimir"
|
197 |
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Facturas y Notas de Entrega"
|
201 |
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
msgid "Company/Shop Name"
|
204 |
+
msgstr "Empresa/Nombre de la tienda"
|
205 |
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr "Dejar en blanco para usar el Website por defecto/ Título del blog definido en los ajustes de WordPress."
|
209 |
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
msgid "Company/Shop Address"
|
212 |
+
msgstr "Empresa/Dirección de la tienda"
|
213 |
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
msgid "Leave blank to not print an address."
|
216 |
+
msgstr "Dejar en blanco para no imprimir la dirección."
|
217 |
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
msgid "Personal Notes"
|
220 |
+
msgstr "Notas Personales"
|
221 |
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr "Dejar en blanco para no imprimir notas personales."
|
225 |
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
msgid "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."
|
228 |
+
msgstr "Aquí puedes añadir algunas claúsulas, condiciones etc. Por ejemplo añade una política de de devolución en el caso de que el cliente quiera devolver algunos artículos. En algunos países (p.ej en la Unión Europea) esto es obligatorio, asi que por favor añade cualquier información obligatoria de acuerdo con las regulaciones estatutarias. "
|
229 |
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr "Dejar en blanco para no imprimir cláusulas o condiciones."
|
233 |
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
msgid "Footer Imprint"
|
236 |
+
msgstr "Pie de Página"
|
237 |
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr "Dejar en blanco para no imprimir el pie de página."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
msgid "Order Numbering Options"
|
244 |
+
msgstr "Opciones de Numeración del pedido"
|
|
|
|
|
|
|
|
|
245 |
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgid "Order Print"
|
248 |
+
msgstr "Imprimir pedido"
|
249 |
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
msgid "Print Invoice"
|
254 |
+
msgstr "Imprimir Factura"
|
255 |
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 "Imprimir Nota de Entrega"
|
263 |
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
|
|
265 |
msgid "Invoice"
|
266 |
+
msgstr "Factura"
|
267 |
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
msgid "Recipient"
|
270 |
+
msgstr "Destinatario"
|
271 |
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
msgid "Customer Notes"
|
274 |
+
msgstr "Notas del Cliente"
|
275 |
|
276 |
#: woocommerce-delivery-notes.php:0
|
277 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr "WooCommerce Imprimir Facturas & Notas de Entrega"
|
|
|
|
|
|
|
|
|
279 |
|
280 |
#: woocommerce-delivery-notes.php:0
|
281 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr "Imprime facturas de pedido y notas de entrega para el plugin WooCommerce. Puedes añadir información de tu empresa/tienda, así como notas personales y cláusulas o condiciones de uso a las páginas a imprimir."
|
283 |
|
284 |
#: woocommerce-delivery-notes.php:0
|
285 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
|
|
|
|
|
|
|
|
289 |
msgid "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."
|
290 |
+
msgstr "Este plugin permite añadir una factura o una nota de entrega simple para imprimir tus pedidos en el plugin WooCommerce. Puedes añadir la dirección postal de tu empresa, añadir notas personales, políticas de devolución, condiciones de uso u otras cláusulas y notas a pie de página. Esto ayuda a agilizar tus tareas diarias y la gestión de pedidos. En algunos países (p.ej en la Unión Europea) es obligatorio avisar al cliente con las políticas de devolución de la tienda, así que este pequeño plugin también podrá ayudarte un poco con eso."
|
291 |
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
msgid "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 :-)."
|
294 |
msgstr ""
|
295 |
+
"Mira debajo de <a href=\"%1$s\">WooCommerce > Pedidos</a> y allí estará. \n"
|
296 |
+
"En el lado derecho veras el meta box de Imprimir Pedido. Haz click en uno de los botones y obtendrás tu Factura o Nota de Entrega para imprimir. Si es así de fácil :-)."
|
297 |
|
languages/woocommerce-delivery-notes-fi.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-fi.po
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Finnish
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:49+0100\n"
|
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: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr "Hanki yhteisön tukea"
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr "Kun kuva tulostetaan, sen pikselitiheys tulee automaattisesti olemaan kahdeksan kertaa korkeampi kuin alkuperäinen. Tämä tarkoittaa sitä, että 1 tulostettu cm vastaa noin 113 pikseliä näytöllä. Esimerkki: kuva jonka leveys on 576 pikseliä ja korkeus 288 pikseliä tulee näkymään tulostettuna suurinpiirtein koossa 6 cm / 3 cm."
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Tuote"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "Yhteensä"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "Lataa:"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr "N/A"
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Yrityksen/kaupan logo"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Poista logo"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Aseta logo"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr "Liiketoimintaasi edustava yrityksen/kaupan logo."
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Lähetteessä näkyvä yrityksen/kaupan nimi."
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr "Juokseva tilausnumero"
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr "Juokseva numerointi on käytössä."
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr "Asenna ja aktivoi ilmainen <a href=\"%s\">WooCommerce Sequential Order Numbers</a> -lisäosa."
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Lähete"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Määrä"
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr "Sinulla ei ole riittäviä käyttöoikeuksia päästäksesi tälle sivulle."
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr "Siirry asetukset-sivulle"
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr "Asetukset"
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr "UKK"
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Tuki"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr "Palautusoikeudet, ehdot, jne.:"
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr "Tnro:"
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr "Paino:"
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr "Lisäosa: WooCommerce Print Invoices & Delivery Notes"
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Huomio:"
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr "Yrityksen/kaupan postiosoite, joka tulostetaan heti yrityksen/kaupan nimen jälkeen, tilausrivien yläpuolelle."
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr "Lisää joitain henkilökohtaisia huomioita, vuodenaikoihin liittyviä tervehdyksiä tai mitä tahansa (esim. Kiitos tilauksesta!, Hyvää joulua!, jne.)."
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr "Lisää edelleen alatunnisteeseen tekstiä, tekijänoikeushuomautuksen tms. saadaksesi tulostussivun vastaamaan paremmin tarpeitasi."
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr "Tietoja lisäosasta"
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr "Lisätietoja:"
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr "Usein kysytyt kysymykset"
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr "Projekti WordPress.org:ssa"
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr "Projekti GitHubissa"
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr "Tulosta"
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Laskut ja lähetteet"
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr "Yrityksen/kaupan nimi"
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr "Jätä tyhjäksi käyttääksesi WordPress-asetuksissa määriteltyä verkkosivun/blogin otsikkoa."
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr "Yrityksen/kaupan osoite"
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr "Jätä tyhjäksi jättääksesi osoitteen tulostamatta."
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr "Henkilökohtaiset huomiot"
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr "Jätä tyhjäksi jättääksesi henkilökohtaiset huomiot tulostamatta."
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr "Täällä voit lisätä lisää käytäntöjä, ehtoja yms. Lisää esimerkiksi palautusehdot siinä tapauksessa, että asiakas haluaa lähettää joitain tuotteita takaisin. Joissain maissa (kuten Euroopan Unionissa) tämä vaaditaan, joten lisää kaikki vaadittava lakisääteinen tieto."
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr "Jätä tyhjäksi jättääksesi käytännöt ja ehdot tulostamatta."
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr "Alatunnisteen merkintä"
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr "Jätä tyhjäksi jättääksesi alatunnisteen tulostumatta."
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr "Tilauksen numerointivalinnat"
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr "Tilauksen tulostus"
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr "Tulosta lasku"
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 "Tulosta lähete"
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr "Lasku"
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr "Vastaanottaja"
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr "Asiakkaan huomautukset"
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr " WooCommerce Print Invoices & Delivery Notes"
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr "WooCommerce-kaupan lisäosa, joka tulostaa tilauksen laskut & lähetteet. Voit lisätä tulostussivulle yrityksen/kaupan tiedot kuten myös henkilökohtaiset huomiot & käytännöt."
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr "Tämä lisäosa mahdollistaa laskun tai yksinkertaisen lähetesivujen tulostamisen WooCommerce-kaupan tilauksista. Voit lisätä yrityksen postiosoitteen, henkilökohtaisen huomion, palautusoikeudet ja muut käytännöt sekä alatunnisteen huomiot. Tämä auttaa nopeuttamaan päivittäistä kaupan- ja tilaustenhallintaa. Joissain maissa (kuten Euroopan Unionissa) vaaditaan, että asiakkaille on palautuskäytännöt ohjeistettu riittävällä tasolla, joten tämä pieni lisäosa saattaa auttaa sinua myös hieman tässä."
|
291 |
+
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
+
msgid "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 :-)."
|
294 |
+
msgstr "Katso kohdasta <a href=\"%1$s\">WooCommerce > Tilaukset</a> ja mene siellä yksittäisen tilauksen näkymään. Näet oikealla puolella Tilauksen tulostus -laatikon. Napsauta jotain painikkeista ja saat laskun tai lähetteen tulostussivun. Kyllä, se on niin helppoa :-)."
|
295 |
+
|
languages/woocommerce-delivery-notes-fr_FR.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-fr_FR.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,264 +13,263 @@ msgstr ""
|
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
-
#:
|
17 |
-
|
18 |
-
|
19 |
-
msgstr "Bon de livraison"
|
20 |
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
24 |
-
msgstr "Imprimer"
|
25 |
|
26 |
-
#: templates/delivery-
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
#:
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
#:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#: templates/delivery-
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#:
|
|
|
|
|
|
|
55 |
msgid "You do not have sufficient permissions to access this page."
|
56 |
msgstr "Vous n'avez pas l'autorisation d'accéder à cette page."
|
57 |
|
58 |
-
#:
|
59 |
msgid "Go to the settings page"
|
60 |
msgstr "Aller à la page de configuration"
|
61 |
|
62 |
-
#:
|
63 |
msgid "Settings"
|
64 |
msgstr "Paramètres"
|
65 |
|
66 |
-
#:
|
67 |
msgid "FAQ"
|
68 |
msgstr "FAQ"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Support"
|
72 |
msgstr "Support"
|
73 |
|
74 |
-
#: classes/class-wcdn-
|
75 |
-
msgid "http://genesisthemes.de/en/donate/"
|
76 |
-
msgstr "http://genesisthemes.de/en/donate/"
|
77 |
-
|
78 |
-
#: classes/class-wcdn-writepanel.php:66
|
79 |
-
msgid "Donate"
|
80 |
-
msgstr "Faire un don"
|
81 |
-
|
82 |
-
#: templates/delivery-notes/print.php:57
|
83 |
-
msgid "Product Name"
|
84 |
-
msgstr "Désignation"
|
85 |
-
|
86 |
-
#: classes/class-wcdn-settings.php:175
|
87 |
msgid "Returns Policy, Conditions, etc.:"
|
88 |
msgstr "Conditions de remboursement, CGV, etc... :"
|
89 |
|
90 |
-
#: templates/delivery-
|
91 |
-
msgid "Order No."
|
92 |
-
msgstr "Commande No."
|
93 |
-
|
94 |
-
#: templates/delivery-notes/print.php:48
|
95 |
-
msgid "Order Date"
|
96 |
-
msgstr "Date de la commande"
|
97 |
-
|
98 |
-
#: templates/delivery-notes/print.php:65
|
99 |
msgid "SKU:"
|
100 |
msgstr "Unité:"
|
101 |
|
102 |
-
#: templates/delivery-
|
103 |
msgid "Weight:"
|
104 |
msgstr "Poids:"
|
105 |
|
106 |
-
#: classes/class-wcdn-settings.php:
|
107 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: classes/class-wcdn-settings.php:
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
#: classes/class-wcdn-settings.php:
|
115 |
-
#: classes/class-wcdn-settings.php:
|
116 |
-
#: classes/class-wcdn-settings.php:168
|
117 |
-
#: classes/class-wcdn-settings.php:181
|
118 |
-
#: classes/class-wcdn-settings.php:194
|
119 |
-
#: classes/class-wcdn-settings.php:244
|
120 |
msgid "Note:"
|
121 |
msgstr "Nota:"
|
122 |
|
123 |
-
#: classes/class-wcdn-settings.php:
|
124 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
125 |
msgstr "L'adresse postale de l'entreprise/du commerce qui est imprimée à droite du nom de l'entreprise/du commerce, au-dessus de la liste des commandes."
|
126 |
|
127 |
-
#: classes/class-wcdn-settings.php:
|
128 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
129 |
msgstr "Ajouter des notes personnelles, ou des voeux de saison ou ce que vous voulez (ex: Merci pour votre commande, Joyeux Noël, etc.)."
|
130 |
|
131 |
-
#: classes/class-wcdn-settings.php:
|
132 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
133 |
msgstr "Ajouter des mentions de bas de page, droits d'auteur etc."
|
134 |
|
135 |
-
#: classes/class-wcdn-settings.php:
|
136 |
-
#: classes/class-wcdn-settings.php:
|
137 |
msgid "About the Plugin"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: classes/class-wcdn-settings.php:
|
141 |
msgid "For more information:"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: classes/class-wcdn-settings.php:
|
145 |
msgid "Frequently Asked Questions"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: classes/class-wcdn-settings.php:
|
149 |
msgid "Project on WordPress.org"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: classes/class-wcdn-settings.php:
|
153 |
msgid "Project on GitHub"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: classes/class-wcdn-settings.php:
|
157 |
-
msgid "Discuss in the Forum"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: classes/class-wcdn-settings.php:118
|
161 |
msgid "Print"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: classes/class-wcdn-settings.php:
|
165 |
msgid "Invoices and Delivery Notes"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: classes/class-wcdn-settings.php:
|
169 |
msgid "Company/Shop Name"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: classes/class-wcdn-settings.php:
|
173 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: classes/class-wcdn-settings.php:
|
177 |
msgid "Company/Shop Address"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: classes/class-wcdn-settings.php:
|
181 |
msgid "Leave blank to not print an address."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: classes/class-wcdn-settings.php:
|
185 |
msgid "Personal Notes"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: classes/class-wcdn-settings.php:
|
189 |
msgid "Leave blank to not print any personal notes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: classes/class-wcdn-settings.php:
|
193 |
msgid "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."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: classes/class-wcdn-settings.php:
|
197 |
msgid "Leave blank to not print any policies or conditions."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: classes/class-wcdn-settings.php:
|
201 |
msgid "Footer Imprint"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: classes/class-wcdn-settings.php:
|
205 |
msgid "Leave blank to not print a footer."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: classes/class-wcdn-settings.php:
|
209 |
-
msgid "Preview Options"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: classes/class-wcdn-settings.php:206
|
213 |
-
msgid "Preview opens"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: classes/class-wcdn-settings.php:210
|
217 |
-
msgid "Start printing when the preview page opens"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: classes/class-wcdn-settings.php:215
|
221 |
msgid "Order Numbering Options"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: classes/class-wcdn-
|
225 |
-
msgid "Before order number"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: classes/class-wcdn-settings.php:224
|
229 |
-
msgid "This text will be placed before the order number ie. \"YOUR-TEXT123\"."
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: classes/class-wcdn-settings.php:229
|
233 |
-
msgid "After order number"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: classes/class-wcdn-settings.php:233
|
237 |
-
msgid "This text will be placed after the order number ie. \"123YOUR-TEXT\"."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: classes/class-wcdn-settings.php:238
|
241 |
-
msgid "Number Offset"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: classes/class-wcdn-settings.php:243
|
245 |
-
msgid "This adds an offset to the WooCommerce order number. Helpful for a contiguous numbering."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: classes/class-wcdn-settings.php:245
|
249 |
-
msgid "Only positive or negative numbers are allowed."
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: classes/class-wcdn-writepanel.php:78
|
253 |
msgid "Order Print"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
257 |
msgid "Print Invoice"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
|
|
|
|
261 |
msgid "Print Delivery Note"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#:
|
265 |
-
#: templates/delivery-notes/print.php:21
|
266 |
msgid "Invoice"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: templates/delivery-
|
270 |
msgid "Recipient"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: templates/delivery-
|
274 |
msgid "Customer Notes"
|
275 |
msgstr ""
|
276 |
|
@@ -278,10 +277,6 @@ msgstr ""
|
|
278 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: woocommerce-delivery-notes.php:0
|
282 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
283 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
284 |
-
|
285 |
#: woocommerce-delivery-notes.php:0
|
286 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
287 |
msgstr ""
|
@@ -290,15 +285,11 @@ msgstr ""
|
|
290 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
291 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "1.2"
|
295 |
-
msgstr "1.2"
|
296 |
-
|
297 |
-
#: classes/class-wcdn-settings.php:98
|
298 |
msgid "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."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: classes/class-wcdn-settings.php:
|
302 |
msgid "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 :-)."
|
303 |
msgstr ""
|
304 |
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
|
|
19 |
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
|
|
23 |
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr ""
|
80 |
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr ""
|
92 |
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr ""
|
96 |
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr ""
|
100 |
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Bon de livraison"
|
108 |
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Quantité"
|
112 |
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
msgid "You do not have sufficient permissions to access this page."
|
118 |
msgstr "Vous n'avez pas l'autorisation d'accéder à cette page."
|
119 |
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
msgid "Go to the settings page"
|
122 |
msgstr "Aller à la page de configuration"
|
123 |
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
msgid "Settings"
|
126 |
msgstr "Paramètres"
|
127 |
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
msgid "FAQ"
|
130 |
msgstr "FAQ"
|
131 |
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
msgid "Support"
|
134 |
msgstr "Support"
|
135 |
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Returns Policy, Conditions, etc.:"
|
138 |
msgstr "Conditions de remboursement, CGV, etc... :"
|
139 |
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "SKU:"
|
142 |
msgstr "Unité:"
|
143 |
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
msgid "Weight:"
|
146 |
msgstr "Poids:"
|
147 |
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Nota:"
|
160 |
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
msgstr "L'adresse postale de l'entreprise/du commerce qui est imprimée à droite du nom de l'entreprise/du commerce, au-dessus de la liste des commandes."
|
164 |
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
msgstr "Ajouter des notes personnelles, ou des voeux de saison ou ce que vous voulez (ex: Merci pour votre commande, Joyeux Noël, etc.)."
|
168 |
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
msgstr "Ajouter des mentions de bas de page, droits d'auteur etc."
|
172 |
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
msgid "About the Plugin"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
msgid "For more information:"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
msgid "Frequently Asked Questions"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
msgid "Project on WordPress.org"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
msgid "Project on GitHub"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
|
|
|
|
|
|
|
|
195 |
msgid "Print"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
msgid "Invoices and Delivery Notes"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
msgid "Company/Shop Name"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
msgid "Company/Shop Address"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
msgid "Leave blank to not print an address."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
msgid "Personal Notes"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
msgid "Leave blank to not print any personal notes."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
msgid "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."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
msgid "Leave blank to not print any policies or conditions."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
msgid "Footer Imprint"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
msgid "Leave blank to not print a footer."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Order Numbering Options"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgid "Order Print"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
msgid "Print Invoice"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 ""
|
263 |
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
|
|
265 |
msgid "Invoice"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
msgid "Recipient"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
msgid "Customer Notes"
|
274 |
msgstr ""
|
275 |
|
277 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
msgstr ""
|
279 |
|
|
|
|
|
|
|
|
|
280 |
#: woocommerce-delivery-notes.php:0
|
281 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
msgstr ""
|
285 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
|
|
|
|
|
|
|
|
289 |
msgid "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."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
msgid "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 :-)."
|
294 |
msgstr ""
|
295 |
|
languages/woocommerce-delivery-notes-it_IT.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-it_IT.po
ADDED
@@ -0,0 +1,364 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Italian
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-04-28 14:33+0100\n"
|
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: Poedit 1.5.4\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Adriano Calvitto <adriano.calvitto@gmail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid ""
|
18 |
+
"You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice "
|
19 |
+
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery "
|
20 |
+
"note template</a>."
|
21 |
+
msgstr ""
|
22 |
+
"Puoi <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">visualizzare "
|
23 |
+
"l'anteprima del template della fattura</a> oppure <a href=\"%2$s\" target="
|
24 |
+
"\"%3$s\" class=\"%4$s\">il template della nota di spedizione</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 |
+
"Per un controllo avanzato copia <code>woocommerce-delivery-notes/templates/"
|
33 |
+
"print/style.css</code> in <code>your-theme-name/woocommerce/print/style.css</"
|
34 |
+
"code>."
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:38
|
37 |
+
msgid "Billing Date"
|
38 |
+
msgstr "Data di fatturazione"
|
39 |
+
|
40 |
+
#: templates/print/print-delivery-note.php:40
|
41 |
+
msgid "Shipping Date"
|
42 |
+
msgstr "Data di spedizione"
|
43 |
+
|
44 |
+
#: templates/print/print-delivery-note.php:45
|
45 |
+
msgid "Order Number"
|
46 |
+
msgstr "Numero dell'ordine"
|
47 |
+
|
48 |
+
#: templates/print/print-delivery-note.php:49
|
49 |
+
msgid "Payment Method"
|
50 |
+
msgstr "Metodo di pagamento"
|
51 |
+
|
52 |
+
#: woocommerce-delivery-notes.php:0
|
53 |
+
msgid "2.0"
|
54 |
+
msgstr "2.0"
|
55 |
+
|
56 |
+
#: classes/class-wcdn-settings.php:144
|
57 |
+
msgid "Get Community Support"
|
58 |
+
msgstr "Ottieni il supporto della comunità"
|
59 |
+
|
60 |
+
#: classes/class-wcdn-settings.php:212
|
61 |
+
msgid ""
|
62 |
+
"When the image is printed, its pixel density will automatically be eight "
|
63 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
64 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
65 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
66 |
+
"to 1 inch."
|
67 |
+
msgstr ""
|
68 |
+
"Quando un'immagine viene stampata, la sua densità di pixel sarà "
|
69 |
+
"automaticamente otto volte l'originale. Questo significa che un pollice "
|
70 |
+
"corrisponderà a circa 288 pixel sullo schermo.\n"
|
71 |
+
"Esempio: un'immagine larga 576 pixel ed alta 288 in stampa sarà grande larga "
|
72 |
+
"2 pollici ed alta 1 pollice"
|
73 |
+
|
74 |
+
#: templates/print/print-delivery-note.php:58
|
75 |
+
msgid "Product"
|
76 |
+
msgstr "Prodotto"
|
77 |
+
|
78 |
+
#: templates/print/print-delivery-note.php:60
|
79 |
+
msgid "Totals"
|
80 |
+
msgstr "Totali"
|
81 |
+
|
82 |
+
#: templates/print/print-delivery-note.php:70
|
83 |
+
msgid "Download:"
|
84 |
+
msgstr "Scarica:"
|
85 |
+
|
86 |
+
#: woocommerce-delivery-notes.php:291 woocommerce-delivery-notes.php:305
|
87 |
+
msgid "N/A"
|
88 |
+
msgstr "N/D"
|
89 |
+
|
90 |
+
#: classes/class-wcdn-settings.php:202
|
91 |
+
msgid "Company/Shop Logo"
|
92 |
+
msgstr "Logo Azienda/Negozio"
|
93 |
+
|
94 |
+
#: classes/class-wcdn-settings.php:207
|
95 |
+
msgid "Remove Logo"
|
96 |
+
msgstr "Rimuovi Logo"
|
97 |
+
|
98 |
+
#: classes/class-wcdn-settings.php:208
|
99 |
+
msgid "Set Logo"
|
100 |
+
msgstr "Imposta Logo"
|
101 |
+
|
102 |
+
#: classes/class-wcdn-settings.php:210
|
103 |
+
msgid "A company/shop logo representing your business."
|
104 |
+
msgstr "Un logo della tua azienda/negozio che rappresenti la tua attività."
|
105 |
+
|
106 |
+
#: classes/class-wcdn-settings.php:223
|
107 |
+
msgid "Your company/shop name for the Delivery Note."
|
108 |
+
msgstr "Il nome della tua azienda/negozio per la Nota di Consegna."
|
109 |
+
|
110 |
+
#: classes/class-wcdn-settings.php:314
|
111 |
+
msgid "Sequential order number"
|
112 |
+
msgstr "Numero ordine sequenziale"
|
113 |
+
|
114 |
+
#: classes/class-wcdn-settings.php:318
|
115 |
+
msgid "Sequential numbering is enabled."
|
116 |
+
msgstr "Numerazione sequenziale abilitata"
|
117 |
+
|
118 |
+
#: classes/class-wcdn-settings.php:320
|
119 |
+
msgid ""
|
120 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
121 |
+
"Numbers</a> Plugin."
|
122 |
+
msgstr ""
|
123 |
+
"Installa e attiva il Plugin gratuito <a href=\"%s\">WooCommerce Sequential "
|
124 |
+
"Order Numbers</a>."
|
125 |
+
|
126 |
+
#: woocommerce-delivery-notes.php:0
|
127 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
128 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
129 |
+
|
130 |
+
#: woocommerce-delivery-notes.php:203
|
131 |
+
msgid "Delivery Note"
|
132 |
+
msgstr "Nota di consegna"
|
133 |
+
|
134 |
+
#: templates/print/print-delivery-note.php:59
|
135 |
+
msgid "Quantity"
|
136 |
+
msgstr "Quantità"
|
137 |
+
|
138 |
+
#: classes/class-wcdn-print.php:63 classes/class-wcdn-print.php:68
|
139 |
+
#: classes/class-wcdn-print.php:73 classes/class-wcdn-print.php:78
|
140 |
+
msgid "You do not have sufficient permissions to access this page."
|
141 |
+
msgstr "Non hai permessi sufficienti per accedere a questa pagina."
|
142 |
+
|
143 |
+
#: woocommerce-delivery-notes.php:134
|
144 |
+
msgid "Go to the settings page"
|
145 |
+
msgstr "Vai alla pagina impostazioni"
|
146 |
+
|
147 |
+
#: woocommerce-delivery-notes.php:134
|
148 |
+
msgid "Settings"
|
149 |
+
msgstr "Impostazioni"
|
150 |
+
|
151 |
+
#: woocommerce-delivery-notes.php:124
|
152 |
+
msgid "FAQ"
|
153 |
+
msgstr "FAQ"
|
154 |
+
|
155 |
+
#: woocommerce-delivery-notes.php:125
|
156 |
+
msgid "Support"
|
157 |
+
msgstr "Supporto"
|
158 |
+
|
159 |
+
#: classes/class-wcdn-settings.php:257
|
160 |
+
msgid "Returns Policy, Conditions, etc.:"
|
161 |
+
msgstr "Politica Resi, Condizioni, etc.:"
|
162 |
+
|
163 |
+
#: templates/print/print-delivery-note.php:68
|
164 |
+
msgid "SKU:"
|
165 |
+
msgstr "COD:"
|
166 |
+
|
167 |
+
#: templates/print/print-delivery-note.php:69
|
168 |
+
msgid "Weight:"
|
169 |
+
msgstr "Peso:"
|
170 |
+
|
171 |
+
#: classes/class-wcdn-settings.php:134
|
172 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
173 |
+
msgstr "Plugin: WooCommerce Stampa fatture e bolle di consegna"
|
174 |
+
|
175 |
+
#: classes/class-wcdn-settings.php:211 classes/class-wcdn-settings.php:224
|
176 |
+
#: classes/class-wcdn-settings.php:237 classes/class-wcdn-settings.php:250
|
177 |
+
#: classes/class-wcdn-settings.php:263 classes/class-wcdn-settings.php:276
|
178 |
+
msgid "Note:"
|
179 |
+
msgstr "Note:"
|
180 |
+
|
181 |
+
#: classes/class-wcdn-settings.php:236
|
182 |
+
msgid ""
|
183 |
+
"The postal address of the company/shop, which gets printed right of the "
|
184 |
+
"company/shop name, above the order listings."
|
185 |
+
msgstr ""
|
186 |
+
"L'indirizzo postale della ditta/negozio, che viene stampato alla destra del "
|
187 |
+
"nome, sopra all'elenco dell'ordine"
|
188 |
+
|
189 |
+
#: classes/class-wcdn-settings.php:249
|
190 |
+
msgid ""
|
191 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
192 |
+
"Your Order!, Merry Christmas!, etc.)."
|
193 |
+
msgstr ""
|
194 |
+
"Aggiungi qualche nota personale o auguri o altro (es.: \"Grazie per l'ordine"
|
195 |
+
"\" , \"Buon Natale\" ecc.)"
|
196 |
+
|
197 |
+
#: classes/class-wcdn-settings.php:275
|
198 |
+
msgid ""
|
199 |
+
"Add some further footer imprint, copyright notes etc. to get the printed "
|
200 |
+
"sheets a bit more branded to your needs."
|
201 |
+
msgstr ""
|
202 |
+
"Aggiungi qualche informazione a piè di pagina come il copyright ecc. per "
|
203 |
+
"rendere più adeguate ai tuoi bisogni le stampe."
|
204 |
+
|
205 |
+
#: classes/class-wcdn-settings.php:132 classes/class-wcdn-settings.php:135
|
206 |
+
msgid "About the Plugin"
|
207 |
+
msgstr "A proposito del plugin"
|
208 |
+
|
209 |
+
#: classes/class-wcdn-settings.php:142
|
210 |
+
msgid "For more information:"
|
211 |
+
msgstr "Per ulteriori informazioni:"
|
212 |
+
|
213 |
+
#: classes/class-wcdn-settings.php:143
|
214 |
+
msgid "Frequently Asked Questions"
|
215 |
+
msgstr "Domande frequenti"
|
216 |
+
|
217 |
+
#: classes/class-wcdn-settings.php:145
|
218 |
+
msgid "Project on WordPress.org"
|
219 |
+
msgstr "Progetto WordPress.org"
|
220 |
+
|
221 |
+
#: classes/class-wcdn-settings.php:146
|
222 |
+
msgid "Project on GitHub"
|
223 |
+
msgstr "Progetto su GitHub"
|
224 |
+
|
225 |
+
#: classes/class-wcdn-settings.php:154
|
226 |
+
msgid "Print"
|
227 |
+
msgstr "Stampa"
|
228 |
+
|
229 |
+
#: classes/class-wcdn-settings.php:194
|
230 |
+
msgid "Invoices and Delivery Notes"
|
231 |
+
msgstr "Fatture e Note di Consegna"
|
232 |
+
|
233 |
+
#: classes/class-wcdn-settings.php:218
|
234 |
+
msgid "Company/Shop Name"
|
235 |
+
msgstr "Nome Azienda/Negozio"
|
236 |
+
|
237 |
+
#: classes/class-wcdn-settings.php:225
|
238 |
+
msgid ""
|
239 |
+
"Leave blank to use the default Website/ Blog title defined in WordPress "
|
240 |
+
"settings."
|
241 |
+
msgstr ""
|
242 |
+
"Lasciare vuoto per usare il titolo del sito/blog predefinito nelle "
|
243 |
+
"impostazioni di WordPress"
|
244 |
+
|
245 |
+
#: classes/class-wcdn-settings.php:231
|
246 |
+
msgid "Company/Shop Address"
|
247 |
+
msgstr "Indirizzo Azienda/Negozio"
|
248 |
+
|
249 |
+
#: classes/class-wcdn-settings.php:238
|
250 |
+
msgid "Leave blank to not print an address."
|
251 |
+
msgstr "Lasciare in bianco per evitare di stampare un indirizzo"
|
252 |
+
|
253 |
+
#: classes/class-wcdn-settings.php:244
|
254 |
+
msgid "Personal Notes"
|
255 |
+
msgstr "Note Personali"
|
256 |
+
|
257 |
+
#: classes/class-wcdn-settings.php:251
|
258 |
+
msgid "Leave blank to not print any personal notes."
|
259 |
+
msgstr "Lasciare in bianco per non stampare nessuna nota personale"
|
260 |
+
|
261 |
+
#: classes/class-wcdn-settings.php:262
|
262 |
+
msgid ""
|
263 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
264 |
+
"returns policy in case the client would like to send back some goods. In "
|
265 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
266 |
+
"any required info in accordance with the statutory regulations."
|
267 |
+
msgstr ""
|
268 |
+
"Qui si possono aggiungere altre indicazioni, condizioni ecc.\n"
|
269 |
+
"Ad esempio condizioni per il reso nel caso il cliente voglia usufruire del "
|
270 |
+
"diritto di recesso.\n"
|
271 |
+
"In alcuni paesi (ad esempio nell'Unione Europea) questo è obbligatorio, si "
|
272 |
+
"prega di aggiungere le informazioni richieste in ottemperanza alle leggi "
|
273 |
+
"vigenti."
|
274 |
+
|
275 |
+
#: classes/class-wcdn-settings.php:264
|
276 |
+
msgid "Leave blank to not print any policies or conditions."
|
277 |
+
msgstr "Lasciare in bianco per non stampare alcuna regola o condizione"
|
278 |
+
|
279 |
+
#: classes/class-wcdn-settings.php:270
|
280 |
+
msgid "Footer Imprint"
|
281 |
+
msgstr "Imprint piè di pagina"
|
282 |
+
|
283 |
+
#: classes/class-wcdn-settings.php:277
|
284 |
+
msgid "Leave blank to not print a footer."
|
285 |
+
msgstr "Lasciare in bianco per non stampare un piè di pagina"
|
286 |
+
|
287 |
+
#: classes/class-wcdn-settings.php:309
|
288 |
+
msgid "Order Numbering Options"
|
289 |
+
msgstr "Opzioni di numerazione ordine"
|
290 |
+
|
291 |
+
#: classes/class-wcdn-writepanel.php:92
|
292 |
+
msgid "Order Print"
|
293 |
+
msgstr "Stampa ordine"
|
294 |
+
|
295 |
+
#: classes/class-wcdn-writepanel.php:76 classes/class-wcdn-writepanel.php:77
|
296 |
+
#: classes/class-wcdn-writepanel.php:102
|
297 |
+
msgid "Print Invoice"
|
298 |
+
msgstr "Stampa fattura"
|
299 |
+
|
300 |
+
#: classes/class-wcdn-writepanel.php:78 classes/class-wcdn-writepanel.php:80
|
301 |
+
#: classes/class-wcdn-writepanel.php:81 classes/class-wcdn-writepanel.php:82
|
302 |
+
#: classes/class-wcdn-writepanel.php:103
|
303 |
+
msgid "Print Delivery Note"
|
304 |
+
msgstr "Stampa nota di consegna"
|
305 |
+
|
306 |
+
#: woocommerce-delivery-notes.php:201
|
307 |
+
msgid "Invoice"
|
308 |
+
msgstr "Fattura"
|
309 |
+
|
310 |
+
#: templates/print/print-delivery-note.php:20
|
311 |
+
msgid "Recipient"
|
312 |
+
msgstr "Destinatario"
|
313 |
+
|
314 |
+
#: templates/print/print-delivery-note.php:96
|
315 |
+
msgid "Customer Notes"
|
316 |
+
msgstr "Note Cliente"
|
317 |
+
|
318 |
+
#: woocommerce-delivery-notes.php:0
|
319 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
320 |
+
msgstr "WooCommerce Print Invoices & Delivery Notes"
|
321 |
+
|
322 |
+
#: woocommerce-delivery-notes.php:0
|
323 |
+
msgid ""
|
324 |
+
"Print order invoices & delivery notes for WooCommerce shop plugin. You can "
|
325 |
+
"add company/shop info as well as personal notes & policies to print pages."
|
326 |
+
msgstr ""
|
327 |
+
"Stampa di fatture e note di spedizione per il plugin WooCommerce.\n"
|
328 |
+
"Puoi aggiungere informazioni sull'azienda/negozio così come note personali e "
|
329 |
+
"condizioni di vendita nelle stampe."
|
330 |
+
|
331 |
+
#: woocommerce-delivery-notes.php:0
|
332 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
333 |
+
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
334 |
+
|
335 |
+
#: classes/class-wcdn-settings.php:136
|
336 |
+
msgid ""
|
337 |
+
"This plugin enables you to add a Invoice or simple Delivery Note page for "
|
338 |
+
"printing for your orders in WooCommerce shop plugin. You can add your "
|
339 |
+
"company postal address, further add personal notes, refund or other policies "
|
340 |
+
"and a footer note/branding. This helps speed up your daily shop and order "
|
341 |
+
"management. In some countries (e.g. in the European Union) it is also "
|
342 |
+
"required to advice the customer with proper refund policies so this little "
|
343 |
+
"plugin might help you a bit with that too."
|
344 |
+
msgstr ""
|
345 |
+
"Questo plugin permette di creare una fattura o una nota di spedizione da "
|
346 |
+
"stampare per gli ordini nel plugin WooCommerce. Si può aggiungere "
|
347 |
+
"l'indirizzo postale dell'azienda, ulteriori note personali, condizioni di "
|
348 |
+
"recesso o altro e delle note/personalizzazioni a piè di pagina. Questo aiuta "
|
349 |
+
"a velocizzare la gestione quotidiana del negozio e degli ordini. In alcuni "
|
350 |
+
"paesi (ad esempio l'Unione Europea) è anche obbligatorio avvisare i clienti "
|
351 |
+
"con le note legali sulle condizioni di recesso, quindi questo piccolo plugin "
|
352 |
+
"può aiutare anche in questo."
|
353 |
+
|
354 |
+
#: classes/class-wcdn-settings.php:137
|
355 |
+
msgid ""
|
356 |
+
"Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a "
|
357 |
+
"single order view. On the right side you will see the Order Print meta box. "
|
358 |
+
"Click one of the buttons and you get the invoice or delivery note printing "
|
359 |
+
"page. Yes, it is that easy :-)."
|
360 |
+
msgstr ""
|
361 |
+
"Basta andare in <a href=\"%1$s\">WooCommerce > Orders</a> ed entrare nella "
|
362 |
+
"vista del singolo ordine. Sulla destra sarà visibile il riquadro \"Stampa "
|
363 |
+
"Ordine\". Cliccando su uno dei bottoni si ottiene la stampa della fattura o "
|
364 |
+
"della nota di spedizione. Si, è veramente così semplice :-)"
|
languages/woocommerce-delivery-notes-nl_NL.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,274 +13,269 @@ msgstr ""
|
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
-
#:
|
17 |
-
|
18 |
-
|
19 |
-
msgstr "Pakbon"
|
20 |
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
24 |
-
msgstr "Print Pagina"
|
25 |
|
26 |
-
#: templates/delivery-
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: templates/delivery-
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
#: templates/delivery-
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
|
|
|
|
|
|
|
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#: templates/delivery-
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#: templates/delivery-
|
51 |
-
msgid "
|
52 |
msgstr "Totaal"
|
53 |
|
54 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "You do not have sufficient permissions to access this page."
|
56 |
msgstr "U heeft niet voldoende rechten om deze pagina te bekijken."
|
57 |
|
58 |
-
#:
|
59 |
msgid "Go to the settings page"
|
60 |
msgstr "Ga naar de instellingen"
|
61 |
|
62 |
-
#:
|
63 |
msgid "Settings"
|
64 |
msgstr "Instellingen"
|
65 |
|
66 |
-
#:
|
67 |
msgid "FAQ"
|
68 |
msgstr "FAQ"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Support"
|
72 |
msgstr "Ondersteuning"
|
73 |
|
74 |
-
#: classes/class-wcdn-
|
75 |
-
msgid "http://genesisthemes.de/en/donate/"
|
76 |
-
msgstr "http://genesisthemes.de/en/donate/"
|
77 |
-
|
78 |
-
#: classes/class-wcdn-writepanel.php:66
|
79 |
-
msgid "Donate"
|
80 |
-
msgstr "Doneer"
|
81 |
-
|
82 |
-
#: templates/delivery-notes/print.php:57
|
83 |
-
msgid "Product Name"
|
84 |
-
msgstr "Product Naam"
|
85 |
-
|
86 |
-
#: classes/class-wcdn-settings.php:175
|
87 |
msgid "Returns Policy, Conditions, etc.:"
|
88 |
msgstr "Algemene Voorwaarden:"
|
89 |
|
90 |
-
#: templates/delivery-
|
91 |
-
msgid "Order No."
|
92 |
-
msgstr "Bestelling nummer"
|
93 |
-
|
94 |
-
#: templates/delivery-notes/print.php:48
|
95 |
-
msgid "Order Date"
|
96 |
-
msgstr "Bestel Datum"
|
97 |
-
|
98 |
-
#: templates/delivery-notes/print.php:65
|
99 |
msgid "SKU:"
|
100 |
msgstr "Art.Nr."
|
101 |
|
102 |
-
#: templates/delivery-
|
103 |
msgid "Weight:"
|
104 |
msgstr "Gewicht:"
|
105 |
|
106 |
-
#: classes/class-wcdn-settings.php:
|
107 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
108 |
-
msgstr ""
|
109 |
|
110 |
-
#: classes/class-wcdn-settings.php:
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
#: classes/class-wcdn-settings.php:
|
115 |
-
#: classes/class-wcdn-settings.php:
|
116 |
-
#: classes/class-wcdn-settings.php:168
|
117 |
-
#: classes/class-wcdn-settings.php:181
|
118 |
-
#: classes/class-wcdn-settings.php:194
|
119 |
-
#: classes/class-wcdn-settings.php:244
|
120 |
msgid "Note:"
|
121 |
msgstr "Opmerking:"
|
122 |
|
123 |
-
#: classes/class-wcdn-settings.php:
|
124 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/class-wcdn-settings.php:
|
128 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/class-wcdn-settings.php:
|
132 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/class-wcdn-settings.php:
|
136 |
-
#: classes/class-wcdn-settings.php:
|
137 |
msgid "About the Plugin"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: classes/class-wcdn-settings.php:
|
141 |
msgid "For more information:"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: classes/class-wcdn-settings.php:
|
145 |
msgid "Frequently Asked Questions"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: classes/class-wcdn-settings.php:
|
149 |
msgid "Project on WordPress.org"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: classes/class-wcdn-settings.php:
|
153 |
msgid "Project on GitHub"
|
154 |
-
msgstr ""
|
155 |
|
156 |
-
#: classes/class-wcdn-settings.php:
|
157 |
-
msgid "Discuss in the Forum"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: classes/class-wcdn-settings.php:118
|
161 |
msgid "Print"
|
162 |
-
msgstr ""
|
163 |
|
164 |
-
#: classes/class-wcdn-settings.php:
|
165 |
msgid "Invoices and Delivery Notes"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: classes/class-wcdn-settings.php:
|
169 |
msgid "Company/Shop Name"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: classes/class-wcdn-settings.php:
|
173 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: classes/class-wcdn-settings.php:
|
177 |
msgid "Company/Shop Address"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: classes/class-wcdn-settings.php:
|
181 |
msgid "Leave blank to not print an address."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: classes/class-wcdn-settings.php:
|
185 |
msgid "Personal Notes"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: classes/class-wcdn-settings.php:
|
189 |
msgid "Leave blank to not print any personal notes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: classes/class-wcdn-settings.php:
|
193 |
msgid "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."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: classes/class-wcdn-settings.php:
|
197 |
msgid "Leave blank to not print any policies or conditions."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: classes/class-wcdn-settings.php:
|
201 |
msgid "Footer Imprint"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: classes/class-wcdn-settings.php:
|
205 |
msgid "Leave blank to not print a footer."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: classes/class-wcdn-settings.php:
|
209 |
-
msgid "Preview Options"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: classes/class-wcdn-settings.php:206
|
213 |
-
msgid "Preview opens"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: classes/class-wcdn-settings.php:210
|
217 |
-
msgid "Start printing when the preview page opens"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: classes/class-wcdn-settings.php:215
|
221 |
msgid "Order Numbering Options"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: classes/class-wcdn-
|
225 |
-
msgid "Before order number"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: classes/class-wcdn-settings.php:224
|
229 |
-
msgid "This text will be placed before the order number ie. \"YOUR-TEXT123\"."
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: classes/class-wcdn-settings.php:229
|
233 |
-
msgid "After order number"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: classes/class-wcdn-settings.php:233
|
237 |
-
msgid "This text will be placed after the order number ie. \"123YOUR-TEXT\"."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: classes/class-wcdn-settings.php:238
|
241 |
-
msgid "Number Offset"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: classes/class-wcdn-settings.php:243
|
245 |
-
msgid "This adds an offset to the WooCommerce order number. Helpful for a contiguous numbering."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: classes/class-wcdn-settings.php:245
|
249 |
-
msgid "Only positive or negative numbers are allowed."
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: classes/class-wcdn-writepanel.php:78
|
253 |
msgid "Order Print"
|
254 |
-
msgstr ""
|
255 |
|
256 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
257 |
msgid "Print Invoice"
|
258 |
-
msgstr ""
|
259 |
|
260 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
|
|
|
|
261 |
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
|
264 |
-
#:
|
265 |
-
#: templates/delivery-notes/print.php:21
|
266 |
msgid "Invoice"
|
267 |
-
msgstr ""
|
268 |
|
269 |
-
#: templates/delivery-
|
270 |
msgid "Recipient"
|
271 |
-
msgstr ""
|
272 |
|
273 |
-
#: templates/delivery-
|
274 |
msgid "Customer Notes"
|
275 |
msgstr ""
|
276 |
|
277 |
#: woocommerce-delivery-notes.php:0
|
278 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: woocommerce-delivery-notes.php:0
|
282 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
283 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
284 |
|
285 |
#: woocommerce-delivery-notes.php:0
|
286 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
@@ -290,15 +285,11 @@ msgstr ""
|
|
290 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
291 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "1.2"
|
295 |
-
msgstr "1.2"
|
296 |
-
|
297 |
-
#: classes/class-wcdn-settings.php:98
|
298 |
msgid "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."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: classes/class-wcdn-settings.php:
|
302 |
msgid "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 :-)."
|
303 |
msgstr ""
|
304 |
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
|
|
19 |
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
|
|
23 |
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr ""
|
47 |
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr ""
|
51 |
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr ""
|
55 |
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
msgstr "Totaal"
|
59 |
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Pakbon"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Hoeveelheid"
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
msgid "You do not have sufficient permissions to access this page."
|
118 |
msgstr "U heeft niet voldoende rechten om deze pagina te bekijken."
|
119 |
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
msgid "Go to the settings page"
|
122 |
msgstr "Ga naar de instellingen"
|
123 |
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
msgid "Settings"
|
126 |
msgstr "Instellingen"
|
127 |
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
msgid "FAQ"
|
130 |
msgstr "FAQ"
|
131 |
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
msgid "Support"
|
134 |
msgstr "Ondersteuning"
|
135 |
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Returns Policy, Conditions, etc.:"
|
138 |
msgstr "Algemene Voorwaarden:"
|
139 |
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "SKU:"
|
142 |
msgstr "Art.Nr."
|
143 |
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
msgid "Weight:"
|
146 |
msgstr "Gewicht:"
|
147 |
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr "Plugin: WooCommerce Print Invoices & Delivery Notes "
|
151 |
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
msgid "About the Plugin"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
msgid "For more information:"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
msgid "Frequently Asked Questions"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
msgid "Project on WordPress.org"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
msgid "Project on GitHub"
|
192 |
+
msgstr "Project op GitHub "
|
193 |
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
|
|
|
|
|
|
|
|
195 |
msgid "Print"
|
196 |
+
msgstr "Print"
|
197 |
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
msgid "Invoices and Delivery Notes"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
msgid "Company/Shop Name"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
msgid "Company/Shop Address"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
msgid "Leave blank to not print an address."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
msgid "Personal Notes"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
msgid "Leave blank to not print any personal notes."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
msgid "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."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
msgid "Leave blank to not print any policies or conditions."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
msgid "Footer Imprint"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
msgid "Leave blank to not print a footer."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Order Numbering Options"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgid "Order Print"
|
248 |
+
msgstr "Print Bestelling"
|
249 |
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
msgid "Print Invoice"
|
254 |
+
msgstr "Print Factuur"
|
255 |
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 |
+
#: woocommerce-delivery-notes.php:201
|
|
|
265 |
msgid "Invoice"
|
266 |
+
msgstr "Factuur"
|
267 |
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
msgid "Recipient"
|
270 |
+
msgstr "Ontvanger"
|
271 |
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
msgid "Customer Notes"
|
274 |
msgstr ""
|
275 |
|
276 |
#: woocommerce-delivery-notes.php:0
|
277 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr "WooCommerce Print Invoices & Delivery Notes"
|
|
|
|
|
|
|
|
|
279 |
|
280 |
#: woocommerce-delivery-notes.php:0
|
281 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
285 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
|
|
|
|
|
|
|
|
289 |
msgid "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."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
msgid "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 :-)."
|
294 |
msgstr ""
|
295 |
|
languages/woocommerce-delivery-notes-pl_PL.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-pl_PL.po
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Polish
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Logo firmy/sklepu"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Usuń logo"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Informacje o dostawie"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Wsparcie"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr "Warunki zwrotu"
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr "SKU:"
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr "Waga"
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 ""
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 ""
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr "Faktura"
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr "Odbiorca"
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr "Uwagi"
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
+
msgid "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 :-)."
|
294 |
+
msgstr ""
|
295 |
+
|
languages/woocommerce-delivery-notes-pt_BR.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-pt_BR.po
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Portuguese (Brazil)
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
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: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr "Obter Suporte da Comunidade"
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr "Quando a imagem é impressa, a sua densidade de pixels será automaticamente oito vezes maior do que o original. Isto significa, que 1 polegada impressa corresponderá a cerca de 288 pixels na tela. Exemplo: uma imagem com uma largura de 576 pixels e uma altura de 288 pixels terá um tamanho impresso de cerca de 2 polegadas por 1 polegada."
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Produto"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "Total"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "Download:"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr "N/A"
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Logo da Empresa/Loja"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Remover Logo"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Definir Logo"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr "A logo da empresa/loja que representa o seu negócio."
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Quantidade"
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr "Você não tem permissões suficientes para acessar esta página."
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr "Ir para a página de configurações"
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr "Configurações"
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr "FAQ"
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Suporte"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr "Política de Devoluções, Condições, etc:"
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr "REF:"
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr "Peso:"
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Nota:"
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr "Sobre o Plugin"
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr "Para mais informações:"
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr "Perguntas Frequentes"
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr "Projeto no WordPress.org"
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr "Projeto no GitHub"
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr "Imprimir"
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Notas de Fatura e Entrega"
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr "Nome da Empresa/Loja"
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr "Deixe em branco para usar o título padrão do Site/Blog definido nas configurações do WordPress."
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr "Endereço da Empresa/Loja:"
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr "Deixe em branco para não imprimir o endereço."
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr "Notas Pessoais"
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr "Deixe em branco para não imprimir as notas pessoais."
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr "Deixe em branco para não imprimir as políticas ou condições."
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 ""
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
+
msgid "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 :-)."
|
294 |
+
msgstr ""
|
295 |
+
|
languages/woocommerce-delivery-notes-ru_RU.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-ru_RU.po
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Russian
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr "Получить поддержку Сообщества"
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr "При печати изображения, его плотность пикселей автоматически будет в восемь раз выше, чем на оригинале. Это означает, 1 печатный дюйм будет соответствовать около 288 пикселям на экране. Пример: изображение с шириной 576 пикселей и высотой 288 пикселей будет иметь печатный размер около 2 дюймов на 1 дюйм."
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Товар"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "Итого"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "Скачать:"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Логотип компании или магазина"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Убрать логотип"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Установить логотип"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr "Логотип компании или магазина, представляющий ваш бизнес."
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Название вашей компании или магазина (для примечаний о доставке)"
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr "Номер заказа"
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr "Последовательная нумерация заказов включена."
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr "Установите и активируйте бесплатный плагин <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Примечания о доставке"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Количество"
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr "Вам не хватает прав для доступа к этой странице."
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr "Перейти на страницу настроек"
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr "Настройки"
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr "FAQ"
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Поддержка"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr "Условия возврата товара и прочие условия:"
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr "Артикул:"
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr "Вес:"
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr "Плагин: WooCommerce Print Invoices & Delivery Notes"
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Примечание:"
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr "Почтовый адрес компании или магазина, который при печати выводится справа от названия компании или магазина, над описанием заказа."
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr "Добавьте пару тёплых слов от себя или поздравление с праздником (например, \"Спасибо за покупку! Покупайте наших слонов!\" или \"С Новым годом!\")."
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr "Добавьте информацию для нижнего колонтитула, чтобы отпечатанный документ отвечал вашим нуждам."
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr "О плагине"
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr "Дополнительная информация:"
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr "FAQ - часто задаваемый вопросы"
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr "Проект на WordPress.org"
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr "Проект на GitHub"
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr "Распечатать"
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Накладные и примечания о доставке"
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr "Название компании или магазина"
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr "Оставьте пустым, чтобы использовать название сайта или блога, указанное по умолчанию в настройках WordPress."
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr "Адрес компании или магазина"
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr "Оставьте пустым, если не хотите печатать адрес."
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr "Личные примечания"
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr "Оставьте пустым, если не хотите печатать личные примечания."
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr "Здесь можно добавить информацию о дополнительных условиях, например, о том, как можно вернуть ваш товар, если клиент захочет отослать его вам обратно. В некоторых странах (например, в странах Евросоюза) это обязательно, поэтому, пожалуйста, заполните это поле в соответствии с требованиями законов вашей страны."
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr "Оставьте пустым, если не хотите печатать информацию о дополнительных условиях."
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr "Информация для нижнего колонтитула"
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr "Оставьте пустым, если не хотите выносить информацию в нижних колонтитул."
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr "Варианты нумерации заказов"
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr "Печать заказа"
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr "Печать накладной"
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 "Печать примечаний о доставке"
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr "Накладная"
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr "Получатель"
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr "Примечания клиента"
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr "WooCommerce Print Invoices & Delivery Notes"
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr "Печатайте накладные и примечания о доставке в вашем магазине на базе WooCommerce. Вы можете добавить информацию о вашей компании или магазине, а также дополнительную информацию в распечатываемый документ."
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr "Этот плагин позволяет создать и распечатать накладную или примечания о доставке для любого заказа в магазине на базе WooCommerce. Вы можете добавить в документ почтовый адрес вашей компании, добавить примечания, дополнительные условия (например, условия возврата товара) и брендирующие элементы в нижнем колонтитуле. Это позволяет ускорить ежедневное управление работой магазина в целом и заказами в частности. В некоторых странах (например, странах Евросоюза) от продавца требуют сообщить покупателю об условиях возврата денег за покупку; этот маленький плагин сможет помочь в решении этой задачи."
|
291 |
+
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
+
msgid "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 :-)."
|
294 |
+
msgstr "Просто пройдите по пути <a href=\"%1$s\">WooCommerce > Orders</a> и выберите любой заказ. С правой стороны вы увидите мета-бокс \"Печать заказа\". Нажмите на одну из кнопок, и вы перейдёте на страницу печати накладной или примечаний о доставке. Да, всё вот так просто. :)"
|
295 |
+
|
languages/woocommerce-delivery-notes-sk_SK.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-sk_SK.po
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Slovak
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr "Získaj podporu komunity"
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr "Pri tlači obrázku, bude hustota pixelov automaticky osemkrát vyššia než originál. To znamená, že 1 vytlačený palec zodpovedá približne 288 pixelov na obrazovke. Príklad: obrázok s šírkou 576 pixelov a výškou 288 pixelov bude mať vytlačenú veľkosť asi 2 palce na 1 palec."
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Produkt"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "Spolu"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "Na stiahnutie"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr "N/A"
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Logo obchodu/spoločnosti"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Odstráň logo"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Nastav logo"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr "Logo spoločnosti/obchodu prezentujúce vašu firmu"
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Názov vašej spoločnosti/obchodu pre dodací list"
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr "Poradové číslo objednávky"
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr "Sekvenčné číslovanie je povolené."
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr "Nainštalovať a aktivovať zadarmo modul <a href=\"%s\"> WooCommerce poradí čísel </a>"
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Dodací list"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Množstvo"
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr "Nemáte dostatočné oprávnenie k prístupu na túto stránku."
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr "Prejsť na stránku nastavení"
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr "Nastavenia"
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr "FAQ"
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Podpora"
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr "Reklamácie, podmienky, atď:"
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr "SKU:"
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr "Hmotnosť:"
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr "Modul: WooCommerce tlač faktúr a dodacích listov"
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "Poznámka:"
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr "Poštová adresa spoločnosti / obchodu, ktorý sa má vytlačiť priamo pri názve spoločnosti / obchodu, nad zoznam objednávok"
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr "Pridajte osobné poznámky, alebo sezónne pozdravy alebo čokoľvek iné (napr. Ďakujeme vám za vašu objednávku!, Veselé Vianoce!, atď)."
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr "Pridajte ďalšie informácie do päty ako copyright a pod., aby vytlačené dokumenty viac zodpovedali Vašim potrebám."
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr "O module"
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr "Pre viac informácií:"
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr "Často kladené otázky"
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr "Projekt na Wordpress.org"
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr "Projekt na GitHub"
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr "Tlač"
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Faktúry a dodacie listy"
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr "Názov spoločnosti/obchodu"
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr "Nechajte prázdne, ak chcete použiť predvolené nastavenia web stránky / blogu, ktoré boli definované v nastavení WordPress."
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr "Adresa spoločnosti/obchodu"
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr "Ak nechcete vytlačiť adresu, nechajte prázdne"
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr "Osobné poznámky"
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr "Ak nechcete vytlačiť žiadne osobné poznámky, nechajte prázdne."
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr "Tu môžete pridať nejaké ďalšie podmienky atď. Napríklad podmienky reklamácie v prípade, že by chcel zákazník poslať tovar späť. V niektorých krajinách (napr. v Európskej únii),je toto požadované, preto vyplňte dané informácie v súlade s platnými právnymi predpismi."
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr "Ak nechcete vytlačiť žiadne podmienky, nechajte prázdne."
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr "Päta"
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr "Ak nechcete vytlačiť pätu, nechajte prázdne."
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr "Možnosti číslovania objednávok"
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr "Tlač objednávok"
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr "Tlač faktúr"
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 "Tlač dodacích listov"
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr "Faktúry"
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr "Príjemca"
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr "Poznámky zákazníka"
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr "WooCommerce tlač faktúr a dodacích listov"
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr "Tlač objednávok, faktúr a dodacích listov pre modul WooCommerce. Môžete pridať názov spoločnosti / obchodu, ako aj osobné poznámky a zásady pre tlač stránok."
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr "Tento plugin vám umožní tlačiť faktúry alebo jednoduché dodacie listy vašich objednávok v rámci modulu WooCommerce. Môžete pridať svoju firemnú poštovú adresu, osobné poznámky, reklamácie, alebo iné podmienky, pätu, poznámky atď. Urýchli to správu objednávok. V niektorých krajinách (napr. v Európskej únii) je tiež nutné oboznámiť zákazníka s informáciami ohľadom reklamácie a vrátenia tovaru. Tento modul Vám môže pri tom veľmi nápomocný."
|
291 |
+
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
+
msgid "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 :-)."
|
294 |
+
msgstr "Otvorte <a href=\"%1$s\"> WooCommerce> Objednávky </a> a na stránke nájdite zobrazenie jednotlivej objednávky. Na pravej strane uvidíte priečinok \"Tlač Objednávky\". Kliknite na jedno z tlačidiel a dostanete sa na podstránku tlače faktúr a dodacích listov. Áno, je to tak jednoduché :-)."
|
295 |
+
|
languages/woocommerce-delivery-notes-sv_SE.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-sv_SE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,275 +13,270 @@ msgstr ""
|
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
-
#:
|
17 |
-
|
18 |
-
|
19 |
-
msgstr "Följesedel"
|
20 |
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
24 |
-
msgstr "Skriv ut sidan"
|
25 |
|
26 |
-
#: templates/delivery-
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
#:
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
33 |
|
34 |
-
#:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#:
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
-
#:
|
|
|
|
|
|
|
55 |
msgid "You do not have sufficient permissions to access this page."
|
56 |
msgstr "Du har inte tillräcklig behörighet för att komma åt denna sida."
|
57 |
|
58 |
-
#:
|
59 |
msgid "Go to the settings page"
|
60 |
msgstr "Gå till inställningssidan"
|
61 |
|
62 |
-
#:
|
63 |
msgid "Settings"
|
64 |
msgstr "Inställningar"
|
65 |
|
66 |
-
#:
|
67 |
msgid "FAQ"
|
68 |
msgstr "FAQ"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Support"
|
72 |
msgstr "Support"
|
73 |
|
74 |
-
#: classes/class-wcdn-
|
75 |
-
msgid "http://genesisthemes.de/en/donate/"
|
76 |
-
msgstr "http://genesisthemes.de/en/donate/"
|
77 |
-
|
78 |
-
#: classes/class-wcdn-writepanel.php:66
|
79 |
-
msgid "Donate"
|
80 |
-
msgstr "Donera"
|
81 |
-
|
82 |
-
#: templates/delivery-notes/print.php:57
|
83 |
-
msgid "Product Name"
|
84 |
-
msgstr "Produktnamn"
|
85 |
-
|
86 |
-
#: classes/class-wcdn-settings.php:175
|
87 |
msgid "Returns Policy, Conditions, etc.:"
|
88 |
msgstr "Returvillkor, köpvillkor o.s.v."
|
89 |
|
90 |
-
#: templates/delivery-
|
91 |
-
msgid "Order No."
|
92 |
-
msgstr "Beställning nr:"
|
93 |
-
|
94 |
-
#: templates/delivery-notes/print.php:48
|
95 |
-
msgid "Order Date"
|
96 |
-
msgstr "Beställningsdatum"
|
97 |
-
|
98 |
-
#: templates/delivery-notes/print.php:65
|
99 |
msgid "SKU:"
|
100 |
msgstr "Artikelnummer:"
|
101 |
|
102 |
-
#: templates/delivery-
|
103 |
msgid "Weight:"
|
104 |
msgstr "Vikt:"
|
105 |
|
106 |
-
#: classes/class-wcdn-settings.php:
|
107 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: classes/class-wcdn-settings.php:
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
#: classes/class-wcdn-settings.php:
|
115 |
-
#: classes/class-wcdn-settings.php:
|
116 |
-
#: classes/class-wcdn-settings.php:168
|
117 |
-
#: classes/class-wcdn-settings.php:181
|
118 |
-
#: classes/class-wcdn-settings.php:194
|
119 |
-
#: classes/class-wcdn-settings.php:244
|
120 |
msgid "Note:"
|
121 |
msgstr "OBS:"
|
122 |
|
123 |
-
#: classes/class-wcdn-settings.php:
|
124 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
125 |
msgstr "Postadressen till företaget/butiken, som trycks till höger av företagets/butikens namn, ovanför orderlistan."
|
126 |
|
127 |
-
#: classes/class-wcdn-settings.php:
|
128 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
129 |
msgstr "Lägg till några personliga anteckningar eller hälsningar (t.ex. Tack för din beställning!, God Jul!, etc.)."
|
130 |
|
131 |
-
#: classes/class-wcdn-settings.php:
|
132 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
133 |
msgstr "Lägg till ytterligare sidfotsinnehåll. Upphovsrättsanteckningar etc. För att få de utskrivna sidorna mer anpassade efter dina behov."
|
134 |
|
135 |
-
#: classes/class-wcdn-settings.php:
|
136 |
-
#: classes/class-wcdn-settings.php:
|
137 |
msgid "About the Plugin"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: classes/class-wcdn-settings.php:
|
141 |
msgid "For more information:"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: classes/class-wcdn-settings.php:
|
145 |
msgid "Frequently Asked Questions"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: classes/class-wcdn-settings.php:
|
149 |
msgid "Project on WordPress.org"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: classes/class-wcdn-settings.php:
|
153 |
msgid "Project on GitHub"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: classes/class-wcdn-settings.php:
|
157 |
-
msgid "Discuss in the Forum"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: classes/class-wcdn-settings.php:118
|
161 |
msgid "Print"
|
162 |
-
msgstr ""
|
163 |
|
164 |
-
#: classes/class-wcdn-settings.php:
|
165 |
msgid "Invoices and Delivery Notes"
|
166 |
-
msgstr ""
|
167 |
|
168 |
-
#: classes/class-wcdn-settings.php:
|
169 |
msgid "Company/Shop Name"
|
170 |
-
msgstr ""
|
171 |
|
172 |
-
#: classes/class-wcdn-settings.php:
|
173 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: classes/class-wcdn-settings.php:
|
177 |
msgid "Company/Shop Address"
|
178 |
-
msgstr ""
|
179 |
|
180 |
-
#: classes/class-wcdn-settings.php:
|
181 |
msgid "Leave blank to not print an address."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: classes/class-wcdn-settings.php:
|
185 |
msgid "Personal Notes"
|
186 |
-
msgstr ""
|
187 |
|
188 |
-
#: classes/class-wcdn-settings.php:
|
189 |
msgid "Leave blank to not print any personal notes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: classes/class-wcdn-settings.php:
|
193 |
msgid "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."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: classes/class-wcdn-settings.php:
|
197 |
msgid "Leave blank to not print any policies or conditions."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: classes/class-wcdn-settings.php:
|
201 |
msgid "Footer Imprint"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: classes/class-wcdn-settings.php:
|
205 |
msgid "Leave blank to not print a footer."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: classes/class-wcdn-settings.php:
|
209 |
-
msgid "Preview Options"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: classes/class-wcdn-settings.php:206
|
213 |
-
msgid "Preview opens"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: classes/class-wcdn-settings.php:210
|
217 |
-
msgid "Start printing when the preview page opens"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: classes/class-wcdn-settings.php:215
|
221 |
msgid "Order Numbering Options"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: classes/class-wcdn-
|
225 |
-
msgid "Before order number"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: classes/class-wcdn-settings.php:224
|
229 |
-
msgid "This text will be placed before the order number ie. \"YOUR-TEXT123\"."
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: classes/class-wcdn-settings.php:229
|
233 |
-
msgid "After order number"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: classes/class-wcdn-settings.php:233
|
237 |
-
msgid "This text will be placed after the order number ie. \"123YOUR-TEXT\"."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: classes/class-wcdn-settings.php:238
|
241 |
-
msgid "Number Offset"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: classes/class-wcdn-settings.php:243
|
245 |
-
msgid "This adds an offset to the WooCommerce order number. Helpful for a contiguous numbering."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: classes/class-wcdn-settings.php:245
|
249 |
-
msgid "Only positive or negative numbers are allowed."
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: classes/class-wcdn-writepanel.php:78
|
253 |
msgid "Order Print"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
257 |
msgid "Print Invoice"
|
258 |
-
msgstr ""
|
259 |
|
260 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
|
|
|
|
261 |
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
|
264 |
-
#:
|
265 |
-
#: templates/delivery-notes/print.php:21
|
266 |
msgid "Invoice"
|
267 |
-
msgstr ""
|
268 |
|
269 |
-
#: templates/delivery-
|
270 |
msgid "Recipient"
|
271 |
-
msgstr ""
|
272 |
|
273 |
-
#: templates/delivery-
|
274 |
msgid "Customer Notes"
|
275 |
-
msgstr ""
|
276 |
|
277 |
#: woocommerce-delivery-notes.php:0
|
278 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: woocommerce-delivery-notes.php:0
|
282 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
283 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
284 |
-
|
285 |
#: woocommerce-delivery-notes.php:0
|
286 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
287 |
msgstr ""
|
@@ -290,15 +285,11 @@ msgstr ""
|
|
290 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
291 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "1.2"
|
295 |
-
msgstr "1.2"
|
296 |
-
|
297 |
-
#: classes/class-wcdn-settings.php:98
|
298 |
msgid "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."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: classes/class-wcdn-settings.php:
|
302 |
msgid "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 :-)."
|
303 |
msgstr ""
|
304 |
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:36+0100\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
"Language-Team: \n"
|
15 |
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
|
|
19 |
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
|
|
23 |
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Produkt"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "Att betala"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "Ladda ned:"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr "Ej angivet"
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Företagets/butikens logotyp"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Ta bort logotyp"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Ange logotyp"
|
80 |
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Namnet på butiken/företaget till följesedeln."
|
88 |
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr "Fallande ordernummer"
|
92 |
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr ""
|
96 |
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr ""
|
100 |
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr "Följesedel"
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr "Kvantitet"
|
112 |
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
msgid "You do not have sufficient permissions to access this page."
|
118 |
msgstr "Du har inte tillräcklig behörighet för att komma åt denna sida."
|
119 |
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
msgid "Go to the settings page"
|
122 |
msgstr "Gå till inställningssidan"
|
123 |
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
msgid "Settings"
|
126 |
msgstr "Inställningar"
|
127 |
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
msgid "FAQ"
|
130 |
msgstr "FAQ"
|
131 |
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
msgid "Support"
|
134 |
msgstr "Support"
|
135 |
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Returns Policy, Conditions, etc.:"
|
138 |
msgstr "Returvillkor, köpvillkor o.s.v."
|
139 |
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "SKU:"
|
142 |
msgstr "Artikelnummer:"
|
143 |
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
msgid "Weight:"
|
146 |
msgstr "Vikt:"
|
147 |
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 "OBS:"
|
160 |
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
msgstr "Postadressen till företaget/butiken, som trycks till höger av företagets/butikens namn, ovanför orderlistan."
|
164 |
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
msgstr "Lägg till några personliga anteckningar eller hälsningar (t.ex. Tack för din beställning!, God Jul!, etc.)."
|
168 |
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
msgstr "Lägg till ytterligare sidfotsinnehåll. Upphovsrättsanteckningar etc. För att få de utskrivna sidorna mer anpassade efter dina behov."
|
172 |
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
msgid "About the Plugin"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
msgid "For more information:"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
msgid "Frequently Asked Questions"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
msgid "Project on WordPress.org"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
msgid "Project on GitHub"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
|
|
|
|
|
|
|
|
195 |
msgid "Print"
|
196 |
+
msgstr "Skriv ut"
|
197 |
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr "Fakturor och följesedlar"
|
201 |
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
msgid "Company/Shop Name"
|
204 |
+
msgstr "Företags-/butiksnamn"
|
205 |
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
msgid "Company/Shop Address"
|
212 |
+
msgstr "Företagets eller butikens adress"
|
213 |
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
msgid "Leave blank to not print an address."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
msgid "Personal Notes"
|
220 |
+
msgstr "Personliga noteringar"
|
221 |
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
msgid "Leave blank to not print any personal notes."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
msgid "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."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
msgid "Leave blank to not print any policies or conditions."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
msgid "Footer Imprint"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
msgid "Leave blank to not print a footer."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Order Numbering Options"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgid "Order Print"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
msgid "Print Invoice"
|
254 |
+
msgstr "Skriv ut faktura"
|
255 |
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 "Skriv ut följesedel"
|
263 |
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
|
|
265 |
msgid "Invoice"
|
266 |
+
msgstr "Faktura"
|
267 |
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
msgid "Recipient"
|
270 |
+
msgstr "Mottagare"
|
271 |
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
msgid "Customer Notes"
|
274 |
+
msgstr "Kundnoteringar"
|
275 |
|
276 |
#: woocommerce-delivery-notes.php:0
|
277 |
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
msgstr ""
|
279 |
|
|
|
|
|
|
|
|
|
280 |
#: woocommerce-delivery-notes.php:0
|
281 |
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
msgstr ""
|
285 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
|
|
|
|
|
|
|
|
289 |
msgid "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."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
msgid "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 :-)."
|
294 |
msgstr ""
|
295 |
|
languages/woocommerce-delivery-notes-tr_TR.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-tr_TR.po
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WooCommerce Print Invoices & Delivery Notes in Turkish
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-03-11 14:36+0100\n"
|
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: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
|
16 |
+
#: classes/class-wcdn-settings.php:301
|
17 |
+
msgid "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>."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: classes/class-wcdn-settings.php:302
|
21 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: templates/print/print-delivery-note.php:38
|
25 |
+
msgid "Billing Date"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: templates/print/print-delivery-note.php:40
|
29 |
+
msgid "Shipping Date"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: templates/print/print-delivery-note.php:45
|
33 |
+
msgid "Order Number"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: templates/print/print-delivery-note.php:49
|
37 |
+
msgid "Payment Method"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: woocommerce-delivery-notes.php:0
|
41 |
+
msgid "2.0"
|
42 |
+
msgstr "2.0"
|
43 |
+
|
44 |
+
#: classes/class-wcdn-settings.php:144
|
45 |
+
msgid "Get Community Support"
|
46 |
+
msgstr "Destek Forumları"
|
47 |
+
|
48 |
+
#: classes/class-wcdn-settings.php:212
|
49 |
+
msgid "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."
|
50 |
+
msgstr "Resim yazdırıldığında piksel yoğunluğu orjinalinden 8 kat artacaktır.Bunun anlamı ekrandaki 288 piksel, 1 inch eşittir. Örnek : 576x288 piksellik bir resim yazdırıldığında boyutu yaklaşık 2x1 inch olacaktır."
|
51 |
+
|
52 |
+
#: templates/print/print-delivery-note.php:58
|
53 |
+
msgid "Product"
|
54 |
+
msgstr "Ürünler"
|
55 |
+
|
56 |
+
#: templates/print/print-delivery-note.php:60
|
57 |
+
msgid "Totals"
|
58 |
+
msgstr "Toplam"
|
59 |
+
|
60 |
+
#: templates/print/print-delivery-note.php:70
|
61 |
+
msgid "Download:"
|
62 |
+
msgstr "İndir"
|
63 |
+
|
64 |
+
#: woocommerce-delivery-notes.php:291
|
65 |
+
#: woocommerce-delivery-notes.php:305
|
66 |
+
msgid "N/A"
|
67 |
+
msgstr "N/A"
|
68 |
+
|
69 |
+
#: classes/class-wcdn-settings.php:202
|
70 |
+
msgid "Company/Shop Logo"
|
71 |
+
msgstr "Logo"
|
72 |
+
|
73 |
+
#: classes/class-wcdn-settings.php:207
|
74 |
+
msgid "Remove Logo"
|
75 |
+
msgstr "Logo'yu Sil"
|
76 |
+
|
77 |
+
#: classes/class-wcdn-settings.php:208
|
78 |
+
msgid "Set Logo"
|
79 |
+
msgstr "Logo'yu Düzenle"
|
80 |
+
|
81 |
+
#: classes/class-wcdn-settings.php:210
|
82 |
+
msgid "A company/shop logo representing your business."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: classes/class-wcdn-settings.php:223
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: classes/class-wcdn-settings.php:314
|
90 |
+
msgid "Sequential order number"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: classes/class-wcdn-settings.php:318
|
94 |
+
msgid "Sequential numbering is enabled."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: classes/class-wcdn-settings.php:320
|
98 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: woocommerce-delivery-notes.php:0
|
102 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
+
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
+
|
105 |
+
#: woocommerce-delivery-notes.php:203
|
106 |
+
msgid "Delivery Note"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: templates/print/print-delivery-note.php:59
|
110 |
+
msgid "Quantity"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: classes/class-wcdn-print.php:63
|
114 |
+
#: classes/class-wcdn-print.php:68
|
115 |
+
#: classes/class-wcdn-print.php:73
|
116 |
+
#: classes/class-wcdn-print.php:78
|
117 |
+
msgid "You do not have sufficient permissions to access this page."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: woocommerce-delivery-notes.php:134
|
121 |
+
msgid "Go to the settings page"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: woocommerce-delivery-notes.php:134
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: woocommerce-delivery-notes.php:124
|
129 |
+
msgid "FAQ"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: woocommerce-delivery-notes.php:125
|
133 |
+
msgid "Support"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: classes/class-wcdn-settings.php:257
|
137 |
+
msgid "Returns Policy, Conditions, etc.:"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: templates/print/print-delivery-note.php:68
|
141 |
+
msgid "SKU:"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: templates/print/print-delivery-note.php:69
|
145 |
+
msgid "Weight:"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: classes/class-wcdn-settings.php:134
|
149 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: classes/class-wcdn-settings.php:211
|
153 |
+
#: classes/class-wcdn-settings.php:224
|
154 |
+
#: classes/class-wcdn-settings.php:237
|
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 ""
|
160 |
+
|
161 |
+
#: classes/class-wcdn-settings.php:236
|
162 |
+
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: classes/class-wcdn-settings.php:249
|
166 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: classes/class-wcdn-settings.php:275
|
170 |
+
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: classes/class-wcdn-settings.php:132
|
174 |
+
#: classes/class-wcdn-settings.php:135
|
175 |
+
msgid "About the Plugin"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: classes/class-wcdn-settings.php:142
|
179 |
+
msgid "For more information:"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: classes/class-wcdn-settings.php:143
|
183 |
+
msgid "Frequently Asked Questions"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: classes/class-wcdn-settings.php:145
|
187 |
+
msgid "Project on WordPress.org"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: classes/class-wcdn-settings.php:146
|
191 |
+
msgid "Project on GitHub"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: classes/class-wcdn-settings.php:154
|
195 |
+
msgid "Print"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: classes/class-wcdn-settings.php:194
|
199 |
+
msgid "Invoices and Delivery Notes"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: classes/class-wcdn-settings.php:218
|
203 |
+
msgid "Company/Shop Name"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: classes/class-wcdn-settings.php:225
|
207 |
+
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: classes/class-wcdn-settings.php:231
|
211 |
+
msgid "Company/Shop Address"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: classes/class-wcdn-settings.php:238
|
215 |
+
msgid "Leave blank to not print an address."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: classes/class-wcdn-settings.php:244
|
219 |
+
msgid "Personal Notes"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: classes/class-wcdn-settings.php:251
|
223 |
+
msgid "Leave blank to not print any personal notes."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: classes/class-wcdn-settings.php:262
|
227 |
+
msgid "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."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: classes/class-wcdn-settings.php:264
|
231 |
+
msgid "Leave blank to not print any policies or conditions."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: classes/class-wcdn-settings.php:270
|
235 |
+
msgid "Footer Imprint"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: classes/class-wcdn-settings.php:277
|
239 |
+
msgid "Leave blank to not print a footer."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: classes/class-wcdn-settings.php:309
|
243 |
+
msgid "Order Numbering Options"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: classes/class-wcdn-writepanel.php:92
|
247 |
+
msgid "Order Print"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: classes/class-wcdn-writepanel.php:76
|
251 |
+
#: classes/class-wcdn-writepanel.php:77
|
252 |
+
#: classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: classes/class-wcdn-writepanel.php:78
|
257 |
+
#: classes/class-wcdn-writepanel.php:80
|
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 ""
|
263 |
+
|
264 |
+
#: woocommerce-delivery-notes.php:201
|
265 |
+
msgid "Invoice"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: templates/print/print-delivery-note.php:20
|
269 |
+
msgid "Recipient"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: templates/print/print-delivery-note.php:96
|
273 |
+
msgid "Customer Notes"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: woocommerce-delivery-notes.php:0
|
277 |
+
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: woocommerce-delivery-notes.php:0
|
281 |
+
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: woocommerce-delivery-notes.php:0
|
285 |
+
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: classes/class-wcdn-settings.php:136
|
289 |
+
msgid "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."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: classes/class-wcdn-settings.php:137
|
293 |
+
msgid "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 :-)."
|
294 |
+
msgstr ""
|
295 |
+
|
languages/woocommerce-delivery-notes.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"PO-Revision-Date:
|
5 |
"MIME-Version: 1.0\n"
|
6 |
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -9,291 +9,253 @@ msgstr ""
|
|
9 |
"X-Generator: GlotPress/0.1\n"
|
10 |
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
11 |
|
12 |
-
#:
|
13 |
-
msgid "1
|
14 |
msgstr ""
|
15 |
|
16 |
-
#: classes/class-wcdn-settings.php:
|
17 |
-
msgid "
|
18 |
msgstr ""
|
19 |
|
20 |
-
#:
|
21 |
-
msgid "
|
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 |
-
#: classes/class-wcdn-settings.php:
|
41 |
-
msgid "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: classes/class-wcdn-settings.php:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
-
|
62 |
-
msgid "Delivery Note"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#:
|
66 |
-
msgid "
|
67 |
msgstr ""
|
68 |
|
69 |
-
#:
|
70 |
-
msgid "
|
71 |
msgstr ""
|
72 |
|
73 |
-
#:
|
74 |
-
msgid "
|
75 |
msgstr ""
|
76 |
|
77 |
-
#:
|
78 |
-
msgid "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#:
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#:
|
86 |
-
msgid "
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#:
|
94 |
-
msgid "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: woocommerce-delivery-notes
|
98 |
-
msgid "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#:
|
102 |
-
msgid "
|
103 |
msgstr ""
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: classes/class-wcdn-
|
110 |
-
|
|
|
111 |
msgstr ""
|
112 |
|
113 |
-
#:
|
114 |
-
msgid "
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
-
msgid "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#:
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: classes/class-wcdn-settings.php:
|
130 |
msgid "Returns Policy, Conditions, etc.:"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: templates/delivery-
|
134 |
-
msgid "Order No."
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: templates/delivery-notes/print.php:53
|
138 |
-
msgid "Order Date"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: templates/delivery-notes/print.php:70
|
142 |
msgid "SKU:"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: templates/delivery-
|
146 |
msgid "Weight:"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: classes/class-wcdn-settings.php:
|
150 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: classes/class-wcdn-settings.php:
|
154 |
-
#: classes/class-wcdn-settings.php:
|
155 |
-
#: classes/class-wcdn-settings.php:
|
156 |
msgid "Note:"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: classes/class-wcdn-settings.php:
|
160 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: classes/class-wcdn-settings.php:
|
164 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: classes/class-wcdn-settings.php:
|
168 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: classes/class-wcdn-settings.php:
|
172 |
msgid "About the Plugin"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: classes/class-wcdn-settings.php:
|
176 |
msgid "For more information:"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: classes/class-wcdn-settings.php:
|
180 |
msgid "Frequently Asked Questions"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: classes/class-wcdn-settings.php:
|
184 |
msgid "Project on WordPress.org"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: classes/class-wcdn-settings.php:
|
188 |
msgid "Project on GitHub"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: classes/class-wcdn-settings.php:
|
192 |
-
msgid "Discuss in the Forum"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: classes/class-wcdn-settings.php:214
|
196 |
msgid "Print"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: classes/class-wcdn-settings.php:
|
200 |
msgid "Invoices and Delivery Notes"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: classes/class-wcdn-settings.php:
|
204 |
msgid "Company/Shop Name"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: classes/class-wcdn-settings.php:
|
208 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: classes/class-wcdn-settings.php:
|
212 |
msgid "Company/Shop Address"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: classes/class-wcdn-settings.php:
|
216 |
msgid "Leave blank to not print an address."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: classes/class-wcdn-settings.php:
|
220 |
msgid "Personal Notes"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: classes/class-wcdn-settings.php:
|
224 |
msgid "Leave blank to not print any personal notes."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: classes/class-wcdn-settings.php:
|
228 |
msgid "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."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: classes/class-wcdn-settings.php:
|
232 |
msgid "Leave blank to not print any policies or conditions."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: classes/class-wcdn-settings.php:
|
236 |
msgid "Footer Imprint"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: classes/class-wcdn-settings.php:
|
240 |
msgid "Leave blank to not print a footer."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: classes/class-wcdn-settings.php:
|
244 |
-
msgid "Preview Options"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: classes/class-wcdn-settings.php:348
|
248 |
-
msgid "Preview opens"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: classes/class-wcdn-settings.php:352
|
252 |
-
msgid "Start printing when the preview page opens"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: classes/class-wcdn-settings.php:357
|
256 |
msgid "Order Numbering Options"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: classes/class-wcdn-
|
260 |
-
msgid "Before order number"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: classes/class-wcdn-settings.php:366
|
264 |
-
msgid "This text will be placed before the order number ie. \"YOUR-TEXT123\"."
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: classes/class-wcdn-settings.php:371
|
268 |
-
msgid "After order number"
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: classes/class-wcdn-settings.php:375
|
272 |
-
msgid "This text will be placed after the order number ie. \"123YOUR-TEXT\"."
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: classes/class-wcdn-writepanel.php:78
|
276 |
msgid "Order Print"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
280 |
msgid "Print Invoice"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: classes/class-wcdn-writepanel.php:
|
|
|
|
|
284 |
msgid "Print Delivery Note"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#:
|
288 |
-
#: templates/delivery-notes/print.php:45
|
289 |
msgid "Invoice"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: templates/delivery-
|
293 |
msgid "Recipient"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: templates/delivery-
|
297 |
msgid "Customer Notes"
|
298 |
msgstr ""
|
299 |
|
@@ -309,10 +271,10 @@ msgstr ""
|
|
309 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: classes/class-wcdn-settings.php:
|
313 |
msgid "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."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: classes/class-wcdn-settings.php:
|
317 |
msgid "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 :-)."
|
318 |
-
msgstr ""
|
1 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"PO-Revision-Date: 2013-03-11 13:33:23+0000\n"
|
5 |
"MIME-Version: 1.0\n"
|
6 |
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"X-Generator: GlotPress/0.1\n"
|
10 |
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
11 |
|
12 |
+
#: classes/class-wcdn-settings.php:301
|
13 |
+
msgid "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>."
|
14 |
msgstr ""
|
15 |
|
16 |
+
#: classes/class-wcdn-settings.php:302
|
17 |
+
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: templates/print/print-delivery-note.php:38
|
21 |
+
msgid "Billing Date"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: templates/print/print-delivery-note.php:40
|
25 |
+
msgid "Shipping Date"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: templates/print/print-delivery-note.php:45
|
29 |
+
msgid "Order Number"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: templates/print/print-delivery-note.php:49
|
33 |
+
msgid "Payment Method"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: woocommerce-delivery-notes.php:0
|
37 |
+
msgid "2.0"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: classes/class-wcdn-settings.php:144
|
41 |
+
msgid "Get Community Support"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: classes/class-wcdn-settings.php:212
|
45 |
+
msgid "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."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: templates/print/print-delivery-note.php:58
|
49 |
+
msgid "Product"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: templates/print/print-delivery-note.php:60
|
53 |
+
msgid "Totals"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: templates/print/print-delivery-note.php:70
|
57 |
+
msgid "Download:"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: woocommerce-delivery-notes.php:291 woocommerce-delivery-notes.php:305
|
61 |
+
msgid "N/A"
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: classes/class-wcdn-settings.php:202
|
65 |
+
msgid "Company/Shop Logo"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: classes/class-wcdn-settings.php:207
|
69 |
+
msgid "Remove Logo"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: classes/class-wcdn-settings.php:208
|
73 |
+
msgid "Set Logo"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: classes/class-wcdn-settings.php:210
|
77 |
+
msgid "A company/shop logo representing your business."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: classes/class-wcdn-settings.php:223
|
81 |
+
msgid "Your company/shop name for the Delivery Note."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: classes/class-wcdn-settings.php:314
|
85 |
+
msgid "Sequential order number"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: classes/class-wcdn-settings.php:318
|
89 |
+
msgid "Sequential numbering is enabled."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: classes/class-wcdn-settings.php:320
|
93 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: woocommerce-delivery-notes.php:0
|
97 |
+
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: woocommerce-delivery-notes.php:203
|
101 |
+
msgid "Delivery Note"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: templates/print/print-delivery-note.php:59
|
105 |
+
msgid "Quantity"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: classes/class-wcdn-print.php:63 classes/class-wcdn-print.php:68
|
109 |
+
#: classes/class-wcdn-print.php:73 classes/class-wcdn-print.php:78
|
110 |
+
msgid "You do not have sufficient permissions to access this page."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: woocommerce-delivery-notes.php:134
|
114 |
+
msgid "Go to the settings page"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: woocommerce-delivery-notes.php:134
|
118 |
+
msgid "Settings"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: woocommerce-delivery-notes.php:124
|
122 |
+
msgid "FAQ"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: woocommerce-delivery-notes.php:125
|
126 |
+
msgid "Support"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: classes/class-wcdn-settings.php:257
|
130 |
msgid "Returns Policy, Conditions, etc.:"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: templates/print/print-delivery-note.php:68
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "SKU:"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: templates/print/print-delivery-note.php:69
|
138 |
msgid "Weight:"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: classes/class-wcdn-settings.php:134
|
142 |
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: classes/class-wcdn-settings.php:211 classes/class-wcdn-settings.php:224
|
146 |
+
#: classes/class-wcdn-settings.php:237 classes/class-wcdn-settings.php:250
|
147 |
+
#: classes/class-wcdn-settings.php:263 classes/class-wcdn-settings.php:276
|
148 |
msgid "Note:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/class-wcdn-settings.php:236
|
152 |
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: classes/class-wcdn-settings.php:249
|
156 |
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: classes/class-wcdn-settings.php:275
|
160 |
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: classes/class-wcdn-settings.php:132 classes/class-wcdn-settings.php:135
|
164 |
msgid "About the Plugin"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: classes/class-wcdn-settings.php:142
|
168 |
msgid "For more information:"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: classes/class-wcdn-settings.php:143
|
172 |
msgid "Frequently Asked Questions"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: classes/class-wcdn-settings.php:145
|
176 |
msgid "Project on WordPress.org"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: classes/class-wcdn-settings.php:146
|
180 |
msgid "Project on GitHub"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: classes/class-wcdn-settings.php:154
|
|
|
|
|
|
|
|
|
184 |
msgid "Print"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: classes/class-wcdn-settings.php:194
|
188 |
msgid "Invoices and Delivery Notes"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: classes/class-wcdn-settings.php:218
|
192 |
msgid "Company/Shop Name"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: classes/class-wcdn-settings.php:225
|
196 |
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: classes/class-wcdn-settings.php:231
|
200 |
msgid "Company/Shop Address"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: classes/class-wcdn-settings.php:238
|
204 |
msgid "Leave blank to not print an address."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: classes/class-wcdn-settings.php:244
|
208 |
msgid "Personal Notes"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: classes/class-wcdn-settings.php:251
|
212 |
msgid "Leave blank to not print any personal notes."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: classes/class-wcdn-settings.php:262
|
216 |
msgid "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."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: classes/class-wcdn-settings.php:264
|
220 |
msgid "Leave blank to not print any policies or conditions."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: classes/class-wcdn-settings.php:270
|
224 |
msgid "Footer Imprint"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: classes/class-wcdn-settings.php:277
|
228 |
msgid "Leave blank to not print a footer."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: classes/class-wcdn-settings.php:309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
msgid "Order Numbering Options"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: classes/class-wcdn-writepanel.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Order Print"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: classes/class-wcdn-writepanel.php:76 classes/class-wcdn-writepanel.php:77
|
240 |
+
#: classes/class-wcdn-writepanel.php:102
|
241 |
msgid "Print Invoice"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/class-wcdn-writepanel.php:78 classes/class-wcdn-writepanel.php:80
|
245 |
+
#: classes/class-wcdn-writepanel.php:81 classes/class-wcdn-writepanel.php:82
|
246 |
+
#: classes/class-wcdn-writepanel.php:103
|
247 |
msgid "Print Delivery Note"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: woocommerce-delivery-notes.php:201
|
|
|
251 |
msgid "Invoice"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: templates/print/print-delivery-note.php:20
|
255 |
msgid "Recipient"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: templates/print/print-delivery-note.php:96
|
259 |
msgid "Customer Notes"
|
260 |
msgstr ""
|
261 |
|
271 |
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: classes/class-wcdn-settings.php:136
|
275 |
msgid "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."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: classes/class-wcdn-settings.php:137
|
279 |
msgid "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 :-)."
|
280 |
+
msgstr ""
|
languages/woocommerce-delivery-notes.pot
CHANGED
@@ -1,318 +1,318 @@
|
|
1 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"
|
|
|
|
|
|
|
|
|
5 |
"MIME-Version: 1.0\n"
|
6 |
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
"Content-Transfer-Encoding: 8bit\n"
|
8 |
-
"
|
9 |
-
"X-
|
10 |
-
"
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
#:
|
17 |
-
msgid "
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:262
|
21 |
-
msgid "Company/Shop Logo"
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: classes/class-wcdn-settings.php:267
|
25 |
-
msgid "Remove Logo"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: classes/class-wcdn-settings.php:268
|
29 |
-
msgid "Set Logo"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: classes/class-wcdn-settings.php:270
|
33 |
-
msgid "A company/shop logo representing your business."
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: classes/class-wcdn-settings.php:272
|
37 |
-
msgid "The Logo will be resized if it is larger than 300px × 300px."
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: classes/class-wcdn-settings.php:283
|
41 |
-
msgid "Your company/shop name for the Delivery Note."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: woocommerce-delivery-notes.php:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
-
#: templates/delivery-notes/print.php:45
|
62 |
msgid "Delivery Note"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: woocommerce-delivery-notes
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
#: templates/delivery-notes/print.php:63
|
70 |
-
msgid "Quantity"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: templates/delivery-notes/print.php:64
|
74 |
-
msgid "Price"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: templates/delivery-notes/print.php:84
|
78 |
-
msgid "Subtotal"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: templates/delivery-notes/print.php:89
|
82 |
-
msgid "Shipping"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: templates/delivery-notes/print.php:95
|
86 |
-
msgid "Tax"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: templates/delivery-notes/print.php:101
|
90 |
-
msgid "Discount"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#:
|
94 |
-
msgid "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#:
|
|
|
98 |
msgid "You do not have sufficient permissions to access this page."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: classes/class-wcdn-settings.php:
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
#: classes/class-wcdn-settings.php:149
|
106 |
-
msgid "Settings"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: classes/class-wcdn-
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: classes/class-wcdn-
|
114 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: classes/class-wcdn-
|
118 |
-
|
|
|
|
|
|
|
|
|
|
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: classes/class-wcdn-
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#:
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: classes/class-wcdn-settings.php:
|
130 |
-
msgid "
|
131 |
msgstr ""
|
132 |
|
133 |
-
#:
|
134 |
-
msgid "
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: classes/class-wcdn-settings.php:
|
150 |
-
msgid "
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: classes/class-wcdn-settings.php:
|
154 |
-
|
155 |
-
#: classes/class-wcdn-settings.php:323 classes/class-wcdn-settings.php:336
|
156 |
-
msgid "Note:"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: classes/class-wcdn-settings.php:
|
160 |
-
msgid "
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: classes/class-wcdn-settings.php:
|
164 |
-
|
|
|
|
|
|
|
|
|
|
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: classes/class-wcdn-settings.php:
|
168 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: classes/class-wcdn-settings.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: classes/class-wcdn-settings.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: classes/class-wcdn-settings.php:
|
180 |
-
msgid "
|
|
|
|
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: classes/class-wcdn-settings.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: classes/class-wcdn-settings.php:
|
188 |
-
msgid "
|
|
|
|
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: classes/class-wcdn-settings.php:
|
192 |
-
msgid "
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: classes/class-wcdn-settings.php:
|
196 |
-
msgid "
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: classes/class-wcdn-settings.php:
|
200 |
-
msgid "
|
|
|
|
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: classes/class-wcdn-settings.php:
|
204 |
-
msgid "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: classes/class-wcdn-settings.php:
|
208 |
-
msgid "
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: classes/class-wcdn-settings.php:
|
212 |
-
msgid "
|
|
|
|
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: classes/class-wcdn-settings.php:
|
216 |
-
msgid "Leave blank to not print
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: classes/class-wcdn-settings.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: classes/class-wcdn-settings.php:
|
224 |
-
msgid "
|
|
|
|
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: classes/class-wcdn-settings.php:
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: classes/class-wcdn-settings.php:
|
232 |
-
|
|
|
|
|
|
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: classes/class-wcdn-settings.php:
|
236 |
-
msgid "
|
|
|
|
|
|
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: classes/class-wcdn-settings.php:
|
240 |
-
msgid "
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: classes/class-wcdn-settings.php:
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: classes/class-wcdn-settings.php:
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: classes/class-wcdn-settings.php:
|
252 |
-
|
|
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: classes/class-wcdn-
|
256 |
-
|
|
|
|
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: classes/class-wcdn-
|
260 |
-
|
|
|
|
|
|
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: classes/class-wcdn-
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
-
msgid "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#:
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#:
|
276 |
-
msgid "Order
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
-
msgid "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: templates/
|
288 |
-
|
289 |
-
msgid "Invoice"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: templates/delivery-
|
293 |
-
msgid "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: templates/delivery-
|
297 |
-
msgid "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#:
|
301 |
-
msgid "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#:
|
305 |
-
msgid "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#:
|
309 |
-
msgid "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#:
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#:
|
317 |
-
msgid "
|
318 |
msgstr ""
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
4 |
+
"POT-Creation-Date: 2013-06-16 14:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-06-16 14:03+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.5.5\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;"
|
13 |
+
"_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;"
|
14 |
+
"esc_html_x:1,2c\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../woocommerce-delivery-notes.php:124
|
20 |
+
msgid "FAQ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: ../woocommerce-delivery-notes.php:125
|
24 |
+
msgid "Support"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: ../woocommerce-delivery-notes.php:134
|
28 |
+
msgid "Go to the settings page"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../woocommerce-delivery-notes.php:134
|
32 |
+
msgid "Settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../woocommerce-delivery-notes.php:201
|
36 |
+
msgid "Invoice"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../woocommerce-delivery-notes.php:203
|
|
|
40 |
msgid "Delivery Note"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../woocommerce-delivery-notes.php:302
|
44 |
+
#: ../classes/class-wcdn-settings.php:154
|
45 |
+
msgid "Print"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../woocommerce-delivery-notes.php:391 ../woocommerce-delivery-notes.php:405
|
49 |
+
msgid "N/A"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../classes/class-wcdn-print.php:63 ../classes/class-wcdn-print.php:68
|
53 |
+
#: ../classes/class-wcdn-print.php:73 ../classes/class-wcdn-print.php:78
|
54 |
msgid "You do not have sufficient permissions to access this page."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../classes/class-wcdn-settings.php:132
|
58 |
+
#: ../classes/class-wcdn-settings.php:135
|
59 |
+
msgid "About the Plugin"
|
|
|
|
|
|
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../classes/class-wcdn-settings.php:134
|
63 |
+
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../classes/class-wcdn-settings.php:136
|
67 |
+
msgid ""
|
68 |
+
"This plugin enables you to add a Invoice or simple Delivery Note page for "
|
69 |
+
"printing for your orders in WooCommerce shop plugin. You can add your "
|
70 |
+
"company postal address, further add personal notes, refund or other policies "
|
71 |
+
"and a footer note/branding. This helps speed up your daily shop and order "
|
72 |
+
"management. In some countries (e.g. in the European Union) it is also "
|
73 |
+
"required to advice the customer with proper refund policies so this little "
|
74 |
+
"plugin might help you a bit with that too."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../classes/class-wcdn-settings.php:137
|
78 |
+
#, php-format
|
79 |
+
msgid ""
|
80 |
+
"Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a "
|
81 |
+
"single order view. On the right side you will see the Order Print meta box. "
|
82 |
+
"Click one of the buttons and you get the invoice or delivery note printing "
|
83 |
+
"page. Yes, it is that easy :-)."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../classes/class-wcdn-settings.php:142
|
87 |
+
msgid "For more information:"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../classes/class-wcdn-settings.php:143
|
91 |
+
msgid "Frequently Asked Questions"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../classes/class-wcdn-settings.php:144
|
95 |
+
msgid "Get Community Support"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../classes/class-wcdn-settings.php:145
|
99 |
+
msgid "Project on WordPress.org"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../classes/class-wcdn-settings.php:146
|
103 |
+
msgid "Project on GitHub"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../classes/class-wcdn-settings.php:194
|
107 |
+
msgid "Invoices and Delivery Notes"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../classes/class-wcdn-settings.php:202
|
111 |
+
msgid "Company/Shop Logo"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: ../classes/class-wcdn-settings.php:207
|
115 |
+
msgid "Remove Logo"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: ../classes/class-wcdn-settings.php:208
|
119 |
+
msgid "Set Logo"
|
|
|
|
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: ../classes/class-wcdn-settings.php:210
|
123 |
+
msgid "A company/shop logo representing your business."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../classes/class-wcdn-settings.php:211
|
127 |
+
#: ../classes/class-wcdn-settings.php:224
|
128 |
+
#: ../classes/class-wcdn-settings.php:237
|
129 |
+
#: ../classes/class-wcdn-settings.php:250
|
130 |
+
#: ../classes/class-wcdn-settings.php:263
|
131 |
+
#: ../classes/class-wcdn-settings.php:276
|
132 |
+
msgid "Note:"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../classes/class-wcdn-settings.php:212
|
136 |
+
msgid ""
|
137 |
+
"When the image is printed, its pixel density will automatically be eight "
|
138 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
139 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
140 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
141 |
+
"to 1 inch."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../classes/class-wcdn-settings.php:218
|
145 |
+
msgid "Company/Shop Name"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../classes/class-wcdn-settings.php:223
|
149 |
+
msgid "Your company/shop name for the Delivery Note."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../classes/class-wcdn-settings.php:225
|
153 |
+
msgid ""
|
154 |
+
"Leave blank to use the default Website/ Blog title defined in WordPress "
|
155 |
+
"settings."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../classes/class-wcdn-settings.php:231
|
159 |
+
msgid "Company/Shop Address"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../classes/class-wcdn-settings.php:236
|
163 |
+
msgid ""
|
164 |
+
"The postal address of the company/shop, which gets printed right of the "
|
165 |
+
"company/shop name, above the order listings."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../classes/class-wcdn-settings.php:238
|
169 |
+
msgid "Leave blank to not print an address."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../classes/class-wcdn-settings.php:244
|
173 |
+
msgid "Personal Notes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../classes/class-wcdn-settings.php:249
|
177 |
+
msgid ""
|
178 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
179 |
+
"Your Order!, Merry Christmas!, etc.)."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../classes/class-wcdn-settings.php:251
|
183 |
+
msgid "Leave blank to not print any personal notes."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../classes/class-wcdn-settings.php:257
|
187 |
+
msgid "Returns Policy, Conditions, etc.:"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../classes/class-wcdn-settings.php:262
|
191 |
+
msgid ""
|
192 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
193 |
+
"returns policy in case the client would like to send back some goods. In "
|
194 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
195 |
+
"any required info in accordance with the statutory regulations."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../classes/class-wcdn-settings.php:264
|
199 |
+
msgid "Leave blank to not print any policies or conditions."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../classes/class-wcdn-settings.php:270
|
203 |
+
msgid "Footer Imprint"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../classes/class-wcdn-settings.php:275
|
207 |
+
msgid ""
|
208 |
+
"Add some further footer imprint, copyright notes etc. to get the printed "
|
209 |
+
"sheets a bit more branded to your needs."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../classes/class-wcdn-settings.php:277
|
213 |
+
msgid "Leave blank to not print a footer."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../classes/class-wcdn-settings.php:301
|
217 |
+
#, php-format
|
218 |
+
msgid ""
|
219 |
+
"You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice "
|
220 |
+
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery "
|
221 |
+
"note template</a>."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../classes/class-wcdn-settings.php:302
|
225 |
+
msgid ""
|
226 |
+
"For more advanced control copy <code>woocommerce-delivery-notes/templates/"
|
227 |
+
"print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</"
|
228 |
+
"code>."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../classes/class-wcdn-settings.php:309
|
232 |
+
msgid "Order Numbering Options"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../classes/class-wcdn-settings.php:314
|
236 |
+
msgid "Sequential order number"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../classes/class-wcdn-settings.php:318
|
240 |
+
msgid "Sequential numbering is enabled."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../classes/class-wcdn-settings.php:320
|
244 |
+
#, php-format
|
245 |
+
msgid ""
|
246 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
247 |
+
"Numbers</a> Plugin."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../classes/class-wcdn-writepanel.php:76
|
251 |
+
#: ../classes/class-wcdn-writepanel.php:77
|
252 |
+
#: ../classes/class-wcdn-writepanel.php:102
|
253 |
+
msgid "Print Invoice"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../classes/class-wcdn-writepanel.php:78
|
257 |
+
#: ../classes/class-wcdn-writepanel.php:80
|
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 ""
|
263 |
|
264 |
+
#: ../classes/class-wcdn-writepanel.php:92
|
265 |
+
msgid "Order Print"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../templates/print/print-delivery-note.php:23
|
269 |
+
msgid "Recipient"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../templates/print/print-delivery-note.php:40
|
273 |
+
msgid "Order Date"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../templates/print/print-delivery-note.php:44
|
277 |
+
msgid "Order Number"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../templates/print/print-delivery-note.php:48
|
281 |
+
msgid "Payment Method"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../templates/print/print-delivery-note.php:52
|
285 |
+
msgid "Email"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../templates/print/print-delivery-note.php:56
|
289 |
+
msgid "Phone"
|
|
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../templates/print/print-delivery-note.php:65
|
293 |
+
msgid "Product"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../templates/print/print-delivery-note.php:66
|
297 |
+
msgid "Quantity"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../templates/print/print-delivery-note.php:67
|
301 |
+
msgid "Totals"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: ../templates/print/print-delivery-note.php:75
|
305 |
+
msgid "SKU:"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../templates/print/print-delivery-note.php:76
|
309 |
+
msgid "Weight:"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../templates/print/print-delivery-note.php:81
|
313 |
+
msgid "Download:"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../templates/print/print-delivery-note.php:109
|
317 |
+
msgid "Customer Notes"
|
318 |
msgstr ""
|
readme.txt
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
=== WooCommerce Print Invoices & Delivery Notes ===
|
2 |
-
Contributors: chabis, daveshine
|
|
|
3 |
Tags: delivery notes, delivery, shipping, print, order, invoice, invoices, woocommerce, woothemes, shop, shop manager, deckerweb
|
4 |
-
Requires at least: 3.
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag:
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
9 |
|
@@ -20,32 +21,18 @@ The plugin adds a new side panel on the order page to allow shop administrators
|
|
20 |
* All setting fields on the plugin's settings pages are optional - you can leave them empty to not use them at all or only apply what you need.
|
21 |
* If the company/shop name field is left empty then the regular website/blog title is used (defined via regular WordPress options)
|
22 |
* If there are added "Customer Notes" (regular WooCommerce feature) for an order these will automatically displayed at the bottom of the delivery note.
|
23 |
-
*
|
24 |
-
* Included help tab system
|
25 |
-
|
26 |
-
= Localization =
|
27 |
-
* English (default) - always included
|
28 |
-
* German - always included
|
29 |
-
* Dutch - user-submitted, thanks to [Ramon van Belzen](http://profiles.wordpress.org/Ramoonus/) -- Currently 37% complete
|
30 |
-
* Swedish - user-submitted, thanks to [Christopher Anderton](http://www.deluxive.se/) -- Currently 42% complete
|
31 |
-
* Spanish - user-submitted by @JAVidania -- Currently 42% complete
|
32 |
-
* French - user-submitted by Olivier -- Currently 42% complete
|
33 |
-
* .pot file (`woocommerce-delivery-notes.pot`) for translators is also always included :)
|
34 |
-
* Easy plugin translation platform with GlotPress tool: [Translate "WooCommerce Print Invoices & Delivery Notes"...](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes)
|
35 |
-
* *Your translation? - [Just send it in](http://genesisthemes.de/en/contact/)*
|
36 |
|
37 |
Credit where credit is due: This plugin here is inspired and based on the work of Steve Clark, Trigvvy Gunderson and the awesome "Jigoshop Delivery Notes" plugin! See below how you can contribute to the further development of both:
|
38 |
|
|
|
|
|
|
|
39 |
= Feedback =
|
40 |
-
* We are open for your suggestions and feedback! Use the [plugin's forum](http://wordpress.org/tags/woocommerce-delivery-notes?forum_id=10)
|
41 |
-
* Drop Dave a line [@deckerweb](http://twitter.com/#!/deckerweb) on Twitter
|
42 |
-
* Follow Dave on [my Facebook page](http://www.facebook.com/deckerweb.service)
|
43 |
-
* Or follow Dave on [+David Decker](http://deckerweb.de/gplus) on Google Plus ;-)
|
44 |
|
45 |
-
= More =
|
46 |
-
* [Other plugins from main plugin author](http://profiles.wordpress.org/chabis/)
|
47 |
-
* [Also see other by plugin co-author DECKERWEB](http://genesisthemes.de/en/wp-plugins/) or see [his WordPress.org profile page](http://profiles.wordpress.org/daveshine/)
|
48 |
-
* Tip for Genesis users: [*GenesisFinder* - Find then create. Your Genesis Framework Search Engine.](http://genesisfinder.com/)
|
49 |
|
50 |
== Installation ==
|
51 |
|
@@ -55,38 +42,47 @@ Credit where credit is due: This plugin here is inspired and based on the work o
|
|
55 |
4. On single order pages you'll find a new meta box on the right side where it says "Order Print" you can open the invoice or delivery note for the actual order and print it out directly
|
56 |
5. Go and manage your orders - good luck with sales :)
|
57 |
|
58 |
-
|
59 |
|
60 |
-
|
|
|
61 |
|
62 |
-
|
|
|
63 |
|
64 |
-
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
-
|
|
|
68 |
|
69 |
-
|
70 |
-
Yes. Create in the `your-theme-name/woocommerce/delivery-notes` folder a file named `print-invoice.php` and another `print-delivery-note.php`. Or just create a file `print.php` to use the same template for invoices and delivery notes. Now write some nice code to make your templates look as you like.
|
71 |
|
72 |
-
|
|
|
73 |
|
74 |
-
= What
|
75 |
-
|
76 |
|
77 |
-
|
|
|
78 |
|
79 |
-
|
80 |
-
No worries, the print bar at the top will automatically be hidden on print!
|
81 |
|
82 |
-
|
83 |
|
84 |
-
|
|
|
85 |
|
86 |
-
|
87 |
-
Mmh. Maybe.
|
88 |
|
89 |
-
|
|
|
90 |
|
91 |
== Screenshots ==
|
92 |
|
@@ -98,14 +94,82 @@ The basic intention is to have the plugin at the same time as leightweight and u
|
|
98 |
|
99 |
== Changelog ==
|
100 |
|
101 |
-
=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
* NEW: Company logo upload.
|
103 |
* NEW: Order numbering supports the sequential order numbers plugin. The offset field was removed because the plugin is much better. (thanks FoxRunSoftware, welovewordpress).
|
104 |
* FIX: Print page doesn't block the user when get vars aren't set.
|
105 |
* UPDATE: Template shows customer phone number (thanks welovewordpress).
|
106 |
* UPDATE: Template item list contains more data fields (thanks welovewordpress).
|
107 |
|
108 |
-
= 1.2
|
109 |
* IMPORTANT CHANGE: New main development and authorship now: [WordPress.org user "chabis"](http://profiles.wordpress.org/chabis/) - with daveshine (David Decker) remaining as a co-author.
|
110 |
* *New features:*
|
111 |
* NEW: Basic invoice template support.
|
@@ -123,7 +187,7 @@ The basic intention is to have the plugin at the same time as leightweight and u
|
|
123 |
* NEW: Added banner image on WordPress.org for better plugin branding :)
|
124 |
* NEW: Easy plugin translation platform with GlotPress tool: [Translate "WooCommerce Print Invoices & Delivery Notes"...](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes)
|
125 |
|
126 |
-
= 1.1
|
127 |
* *Maintenance release*
|
128 |
* UPDATE: Changed product price calculation due to changes in WooCommerce itself -- this led to **new required versions** for this plugin: **at least WordPress 3.3 and WooCommerce 1.4** or higher (Note: If you still have WooCommerc 1.3.x running then use version 1.0 of the Delivery Notes plugin!)
|
129 |
* UPDATE: Custom fields on settings page now accept proper `img` tags, so you can add logo images or such via HTML IMG tag (for example: `<img src="your-image-url" width="100" height="100" alt="Logo" title="My Shop" />`)
|
@@ -131,12 +195,18 @@ The basic intention is to have the plugin at the same time as leightweight and u
|
|
131 |
* NEW: Added Swedish translation - Thanx to Christopher Anderton
|
132 |
* UPDATE: Updated German translations and also the .pot file for all translators!
|
133 |
|
134 |
-
= 1.0
|
135 |
* Initial release
|
136 |
* Forked and extended from original plugin for Jigoshop ("Jigoshop Delivery Notes" at GitHub)
|
137 |
|
138 |
== Upgrade Notice ==
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
= 1.2.1 =
|
141 |
The sequential order numbers plugin requires at least WooCommerce 1.5.3.
|
142 |
|
@@ -152,11 +222,6 @@ Just released into the wild.
|
|
152 |
== Plugin Links ==
|
153 |
* [Translations (GlotPress)](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes)
|
154 |
* [User support forums](http://wordpress.org/tags/woocommerce-delivery-notes?forum_id=10)
|
155 |
-
* [Developers: reports bugs & issues](https://github.com/piffpaffpuff/woocommerce-delivery-notes/issues)
|
156 |
-
* [Developers: contribute](https://github.com/piffpaffpuff/woocommerce-delivery-notes)
|
157 |
-
|
158 |
-
== Donate ==
|
159 |
-
Enjoy using *WooCommerce Print Invoices & Delivery Notes*? Please consider [making a small donation](http://genesisthemes.de/en/donate/) to support the project's continued development.
|
160 |
|
161 |
== Translations ==
|
162 |
|
@@ -166,14 +231,21 @@ Enjoy using *WooCommerce Print Invoices & Delivery Notes*? Please consider [maki
|
|
166 |
* Swedish (sv_SE): Svenska - user-submitted by [Christopher Anderton](http://www.deluxive.se/)
|
167 |
* Spanish (es_ES): Español - user-submitted by @JAVidania
|
168 |
* French (fr_FR): Français - user-submitted by Olivier
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
* For custom and update-secure language files please upload them to `/wp-content/languages/woocommerce-delivery-notes/` (just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like `woocommerce-delivery-notes-en_US.mo/.po` to achieve that.
|
170 |
|
171 |
-
**Easy plugin translation platform with GlotPress tool
|
172 |
|
173 |
-
|
174 |
|
175 |
-
|
176 |
-
**Idea Behind / Philosophy:** Just a little plugin for all the WooCommerce shop managers out there to make their daily shop admin life a bit easier.
|
177 |
|
178 |
== Credits ==
|
179 |
-
Thanks to WooThemes company and WooCommerce team for promoting this plugin on their official homepage as well as on the download page here on wordpress.org! ;-)
|
1 |
=== WooCommerce Print Invoices & Delivery Notes ===
|
2 |
+
Contributors: chabis, daveshine
|
3 |
+
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=wartamau%40gmail%2ecom&lc=US&item_name=piffpaffpuff¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
|
4 |
Tags: delivery notes, delivery, shipping, print, order, invoice, invoices, woocommerce, woothemes, shop, shop manager, deckerweb
|
5 |
+
Requires at least: 3.5 and WooCommerce 2.0
|
6 |
+
Tested up to: 3.5.1 and WooCommerce 2.0.8
|
7 |
+
Stable tag: trunk
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
10 |
|
21 |
* All setting fields on the plugin's settings pages are optional - you can leave them empty to not use them at all or only apply what you need.
|
22 |
* If the company/shop name field is left empty then the regular website/blog title is used (defined via regular WordPress options)
|
23 |
* If there are added "Customer Notes" (regular WooCommerce feature) for an order these will automatically displayed at the bottom of the delivery note.
|
24 |
+
* Custom order numbering via the free [WooCommerce Sequential Order Numbers](http://wordpress.org/extend/plugins/woocommerce-sequential-order-numbers/) plugin.
|
25 |
+
* Included help tab system.
|
26 |
+
* Localized in English, German, Dutch, Swedish, Spanish, French, Italian, Polish, Russian, Turkish, Slovakian, Finnish and Portuguese (BR). (thanks to all translators, submit your translation) - some of them only partial yet (we'd love to see you [complete them](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes) :).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
Credit where credit is due: This plugin here is inspired and based on the work of Steve Clark, Trigvvy Gunderson and the awesome "Jigoshop Delivery Notes" plugin! See below how you can contribute to the further development of both:
|
29 |
|
30 |
+
= Translations =
|
31 |
+
* Translate and submit files with our [GlotPress](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes) tool. Read to the [translation](http://wordpress.org/extend/plugins/woocommerce-delivery-notes/other_notes/) section to learn more.
|
32 |
+
|
33 |
= Feedback =
|
34 |
+
* We are open for your suggestions and feedback! Use the [plugin's forum](http://wordpress.org/tags/woocommerce-delivery-notes?forum_id=10).
|
|
|
|
|
|
|
35 |
|
|
|
|
|
|
|
|
|
36 |
|
37 |
== Installation ==
|
38 |
|
42 |
4. On single order pages you'll find a new meta box on the right side where it says "Order Print" you can open the invoice or delivery note for the actual order and print it out directly
|
43 |
5. Go and manage your orders - good luck with sales :)
|
44 |
|
45 |
+
== Frequently Asked Questions ==
|
46 |
|
47 |
+
= Why is my company logo not displayed at the size I've uploaded it? =
|
48 |
+
Printed paper needs a higher pixel density for images than the screen. To make your printed logo look nice and crisp it will be resized via CSS to a fourth of the uploaded pixel size. This means: An image of 400p x 400px will be displayed as a 100px x 100px image but will be printed with the original amount of pixels. With the resizing, 288 pixels of the original image width correspond to about 1 printed inch.
|
49 |
|
50 |
+
= How can I change the address format of the recipient? =
|
51 |
+
WooCommerce includes address formats for many different countries. But maybe your country format isn't included. For such cases you can define your own format with a filter in your `functions.php` if you know your country code (ie `LI`).
|
52 |
|
53 |
+
`
|
54 |
+
function custom_localisation_address_formats($formats) {
|
55 |
+
$formats['LI'] = "{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}";
|
56 |
+
return $formats;
|
57 |
+
}
|
58 |
+
add_filter('woocommerce_localisation_address_formats', 'custom_localisation_address_formats');
|
59 |
+
`
|
60 |
|
61 |
+
= How can I use a custom CSS file for the printing page without copying and editing the template files? =
|
62 |
+
Copy the `style.css` (and no other file) from the `/wp-content/plugins/woocommerce-delivery-notes/templates/print` folder and paste it inside your `/wp-content/themes/your-theme-name/woocommerce/print` folder (if not there just create it). You can modify CSS to fit your own needs.
|
63 |
|
64 |
+
*Note:* There is automatically a class assigned to the html tag that helps you to target the template-type in your CSS.
|
|
|
65 |
|
66 |
+
= How can I use a custom template for the printing page? =
|
67 |
+
If you want to use your own template then all you need to do is copy the the files you want to edit from `/wp-content/plugins/woocommerce-delivery-notes/templates/print` folder and paste them inside your `/wp-content/themes/your-theme-name/woocommerce/print` folder (if not there just create it). The folder from the plugin comes with the default templates and the basic CSS files. You can modifiy those to fit your own needs.
|
68 |
|
69 |
+
= What template functions can I use? =
|
70 |
+
All WordPress and all functions from other plugins and themes can be used. There are also many many specific template functions. Open the `/wp-content/plugins/woocommerce-delivery-notes/woocommerce-delivery-notes.php` file to see all of them.
|
71 |
|
72 |
+
= How do I add more info or custom fields to the templates? =
|
73 |
+
Create a custom template (see questions above). Then edit the file to your needs. You can use all functions that are available in WordPress or any activated plugin or theme.
|
74 |
|
75 |
+
Example: Show an order custom field that was added by another plugin (e.g. `'_my_custom_field'`)
|
|
|
76 |
|
77 |
+
`echo wcdn_get_order_custom_field('_my_custom_field');`
|
78 |
|
79 |
+
= What will actually get printed out? =
|
80 |
+
The page will be printed as you see it in your browser when you enabled the preview.
|
81 |
|
82 |
+
Beyond the styling of the template be aware of any special features of the used browser. They may not print websites properly or add a pagination or website url. Use a "Print Preview" feature of your browser which all current versions of Firefox, Chrome, Safari and Opera support.
|
|
|
83 |
|
84 |
+
= How can I translate the plugin with my own wording? =
|
85 |
+
For custom and update-secure language files please upload them to `/wp-content/languages/woocommerce-delivery-notes/` (just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that, just use a language file like `woocommerce-delivery-notes-en_US.mo/.po` to achieve that (for creating one see the tools on "Other Notes"). And finally contact one of the developers if you would like to add your translation to the standard distribution.
|
86 |
|
87 |
== Screenshots ==
|
88 |
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
= 2.0.2 =
|
98 |
+
* FIX: The print data is now generated with the order metadata. This solves a problem where the items weren't displayed when the product was deleted. (thanks MDesigner0)
|
99 |
+
* UPDATE: Added some missing translations to the pot.
|
100 |
+
* NEW: Added the telephone and email to the template.
|
101 |
+
* DELETE: Removed the possibility to show the download links because the urls are always so long that most probably no one will ever use them.
|
102 |
+
|
103 |
+
= 2.0.1 =
|
104 |
+
* FIX: Updated print functionality for better cross-browser support.
|
105 |
+
|
106 |
+
= 2.0 =
|
107 |
+
* FIX: Print privileges for WooCommerce 2.0.
|
108 |
+
* FIX: The Hi-DPI resizing of the company logo is working better now.
|
109 |
+
* FIX: Plugin activates correctly on a multisite installation.
|
110 |
+
* UPDATE: More stable cross-browser print support.
|
111 |
+
* UPDATE: Printing without thickbox.
|
112 |
+
* UPDATE: Removed the thickbox preview
|
113 |
+
* NEW: Template preview links in the settings page (only visible when there is at least one order).
|
114 |
+
* NEW: Many template functions can now be filtered with `add_filter`.
|
115 |
+
* NEW: In the template the payment method is now displayed via the `wcdn_payment_method` function.
|
116 |
+
* NEW: In the template the today's date is now used as default instead of the order date.
|
117 |
+
|
118 |
+
= 1.4.6 =
|
119 |
+
* FIX: Child theme template files are better loaded.
|
120 |
+
* UPDATE: Translations are better loaded.
|
121 |
+
|
122 |
+
= 1.4.5 =
|
123 |
+
* UPDATE: Better order number support for the sequential order numbers plugin. (thanks FoxRunSoftware)
|
124 |
+
* NEW: Danish localization. (thanks brandt)
|
125 |
+
* FIX: Logo uploader "Insert into Post" button works again.
|
126 |
+
|
127 |
+
= 1.4.4 =
|
128 |
+
* FIX: Product variations are returned instead of echoed.
|
129 |
+
* UPDATE: Better product meta data display.
|
130 |
+
|
131 |
+
= 1.4.3 =
|
132 |
+
* FIX: Logo uploader tabs.
|
133 |
+
|
134 |
+
= 1.4.2 =
|
135 |
+
* FIX: Display Product variations.
|
136 |
+
* NEW: Icon buttons for the order actions.
|
137 |
+
|
138 |
+
= 1.4.1 =
|
139 |
+
* FIX: Logo uploader button.
|
140 |
+
* UPDATE: Indicate when the print page is loading.
|
141 |
+
|
142 |
+
= 1.4 =
|
143 |
+
* ATTENTION: For custom template creators: This update breaks your custom template because of some new features. Please update your template PHP code and CSS.
|
144 |
+
* NEW: Print buttons on the orders list page.
|
145 |
+
* NEW: Print preview window opens in lightbox.
|
146 |
+
* NEW: Print immediately, without preview window.
|
147 |
+
* FIX: Order totals are now properly displayed again.
|
148 |
+
* FIX: Close unclosed `<tr>` tag in the template.
|
149 |
+
|
150 |
+
= 1.2.4 =
|
151 |
+
* ATTENTION: This update breaks your custom template because many functions were renamed or removed. Please update your custom template.
|
152 |
+
* NEW: The custom `style.css` is now loaded even when there is no `print.php` in your theme folder `yourthemename/woocommerce/delivery-notes`. Like this the look of the default template can be changed without editing the `print.php` file.
|
153 |
+
* NEW: The company logo isn't resized anymore. Instead it is loaded with the original pixel dimensions but is then resized via CSS to a fourth. Make sure that your original image file has the desired pixel dimensions!
|
154 |
+
* NEW: Removed the custom/sequential order number settings. They are now fully handled by the additional plugin.
|
155 |
+
* UPDATE: Renamed or removed many template functions. Please update your custom template.
|
156 |
+
* UPDATE: The print navigation is now separated from the template file. Please update your custom template.
|
157 |
+
|
158 |
+
= 1.2.3 =
|
159 |
+
* UPDATE: Order totals are now displayed the same way as when the customer reviews the order online (Update custom template to use the feature).
|
160 |
+
* UPDATE: Variations and Attributes are now properly displayed (Update custom template to use the feature).
|
161 |
+
|
162 |
+
= 1.2.2 =
|
163 |
+
* FIX: The media management button "Insert into Post" is now visible again. It was hidden by a the css.
|
164 |
+
|
165 |
+
= 1.2.1 =
|
166 |
* NEW: Company logo upload.
|
167 |
* NEW: Order numbering supports the sequential order numbers plugin. The offset field was removed because the plugin is much better. (thanks FoxRunSoftware, welovewordpress).
|
168 |
* FIX: Print page doesn't block the user when get vars aren't set.
|
169 |
* UPDATE: Template shows customer phone number (thanks welovewordpress).
|
170 |
* UPDATE: Template item list contains more data fields (thanks welovewordpress).
|
171 |
|
172 |
+
= 1.2 =
|
173 |
* IMPORTANT CHANGE: New main development and authorship now: [WordPress.org user "chabis"](http://profiles.wordpress.org/chabis/) - with daveshine (David Decker) remaining as a co-author.
|
174 |
* *New features:*
|
175 |
* NEW: Basic invoice template support.
|
187 |
* NEW: Added banner image on WordPress.org for better plugin branding :)
|
188 |
* NEW: Easy plugin translation platform with GlotPress tool: [Translate "WooCommerce Print Invoices & Delivery Notes"...](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes)
|
189 |
|
190 |
+
= 1.1 =
|
191 |
* *Maintenance release*
|
192 |
* UPDATE: Changed product price calculation due to changes in WooCommerce itself -- this led to **new required versions** for this plugin: **at least WordPress 3.3 and WooCommerce 1.4** or higher (Note: If you still have WooCommerc 1.3.x running then use version 1.0 of the Delivery Notes plugin!)
|
193 |
* UPDATE: Custom fields on settings page now accept proper `img` tags, so you can add logo images or such via HTML IMG tag (for example: `<img src="your-image-url" width="100" height="100" alt="Logo" title="My Shop" />`)
|
195 |
* NEW: Added Swedish translation - Thanx to Christopher Anderton
|
196 |
* UPDATE: Updated German translations and also the .pot file for all translators!
|
197 |
|
198 |
+
= 1.0 =
|
199 |
* Initial release
|
200 |
* Forked and extended from original plugin for Jigoshop ("Jigoshop Delivery Notes" at GitHub)
|
201 |
|
202 |
== Upgrade Notice ==
|
203 |
|
204 |
+
= 1.5 =
|
205 |
+
Update your custom style.css. Remove any width and height CSS properties that were assigned to the img tag.
|
206 |
+
|
207 |
+
= 1.2.4 =
|
208 |
+
Many template functions were updated. Please update your custom template too or everything breaks!
|
209 |
+
|
210 |
= 1.2.1 =
|
211 |
The sequential order numbers plugin requires at least WooCommerce 1.5.3.
|
212 |
|
222 |
== Plugin Links ==
|
223 |
* [Translations (GlotPress)](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes)
|
224 |
* [User support forums](http://wordpress.org/tags/woocommerce-delivery-notes?forum_id=10)
|
|
|
|
|
|
|
|
|
|
|
225 |
|
226 |
== Translations ==
|
227 |
|
231 |
* Swedish (sv_SE): Svenska - user-submitted by [Christopher Anderton](http://www.deluxive.se/)
|
232 |
* Spanish (es_ES): Español - user-submitted by @JAVidania
|
233 |
* French (fr_FR): Français - user-submitted by Olivier
|
234 |
+
* Danish (da_DK): Dansk - user-submitted by [boldt](http://boldt.325.dk/)
|
235 |
+
* Polish (pl_PL): Polski - user-submitted
|
236 |
+
* Russian (ru_RU): русский - user-submitted
|
237 |
+
* Finnish (fi): Suomi - user-submitted
|
238 |
+
* Italian (it_IT): Italiano - user-submitted
|
239 |
+
* Portuguse, Brazilian (pt_BR): Português - user-submitted
|
240 |
+
* Slovakian (sk_SK): Slovenčina - user-submitted
|
241 |
+
* Turkish (tr_TR): Türk - user-submitted
|
242 |
* For custom and update-secure language files please upload them to `/wp-content/languages/woocommerce-delivery-notes/` (just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like `woocommerce-delivery-notes-en_US.mo/.po` to achieve that.
|
243 |
|
244 |
+
**Easy plugin translation platform with GlotPress tool:** [Translate the plugin here](http://translate.wpautobahn.com/projects/wordpress-plugins-deckerweb/woocommerce-delivery-notes)
|
245 |
|
246 |
+
**Made your own translation?:** [Just send it in](http://genesisthemes.de/en/contact/)
|
247 |
|
248 |
+
*Note:* All my plugins are internationalized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating I recommend the awesome ["Codestyling Localization" plugin](http://wordpress.org/extend/plugins/codestyling-localization/) and for validating the ["Poedit Editor"](http://www.poedit.net/), which works fine on Windows, Mac and Linux.
|
|
|
249 |
|
250 |
== Credits ==
|
251 |
+
Thanks to WooThemes company and WooCommerce team for promoting this plugin on their official homepage as well as on the download page here on wordpress.org! ;-)
|
templates/delivery-notes/css/style.css
DELETED
@@ -1,309 +0,0 @@
|
|
1 |
-
/* Table of Contents
|
2 |
-
|
3 |
-
* CSS Reset
|
4 |
-
* Delivery Note Page Layout
|
5 |
-
* CSS Media Queries for Print
|
6 |
-
|
7 |
-
*/
|
8 |
-
|
9 |
-
/* Simple CSS Reset and Print options
|
10 |
-
------------------------------------------*/
|
11 |
-
|
12 |
-
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, table, ol, ul {
|
13 |
-
border: 0 none;
|
14 |
-
font: inherit;
|
15 |
-
margin: 0;
|
16 |
-
padding: 0;
|
17 |
-
vertical-align: baseline;
|
18 |
-
}
|
19 |
-
|
20 |
-
body {
|
21 |
-
line-height: 1;
|
22 |
-
}
|
23 |
-
|
24 |
-
ol,
|
25 |
-
ul {
|
26 |
-
list-style: none;
|
27 |
-
}
|
28 |
-
|
29 |
-
table {
|
30 |
-
border-collapse: collapse;
|
31 |
-
border-spacing: 0;
|
32 |
-
}
|
33 |
-
|
34 |
-
/* Options */
|
35 |
-
#header {
|
36 |
-
position: fixed;
|
37 |
-
top: 0px;
|
38 |
-
left: 0px;
|
39 |
-
right: 0px;
|
40 |
-
}
|
41 |
-
|
42 |
-
.options {
|
43 |
-
overflow: hidden;
|
44 |
-
padding: 0.5em;
|
45 |
-
text-shadow: 0px 1px 0px #ffffff;
|
46 |
-
filter: dropshadow(color=#ffffff, offx=0, offy=1);
|
47 |
-
background: #F1F1F1;
|
48 |
-
background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
|
49 |
-
background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
|
50 |
-
background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
|
51 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
|
52 |
-
background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
|
53 |
-
background-image: linear-gradient(top, #F9F9F9, #ECECEC);
|
54 |
-
border-bottom: 1px solid #DFDFDF;
|
55 |
-
border-top: 1px solid #DFDFDF;
|
56 |
-
}
|
57 |
-
|
58 |
-
.options a {
|
59 |
-
border: 1px solid #bbb;
|
60 |
-
-webkit-border-radius: 12px;
|
61 |
-
-moz-border-radius: 12px;
|
62 |
-
-ms-border-radius: 12px;
|
63 |
-
-o-border-radius: 12px;
|
64 |
-
border-radius: 12px;
|
65 |
-
color: #464646;
|
66 |
-
display: block;
|
67 |
-
float: right;
|
68 |
-
font-size: 0.875em;
|
69 |
-
height: 20px;
|
70 |
-
line-height: 20px;
|
71 |
-
padding-left: 15px;
|
72 |
-
padding-right: 15px;
|
73 |
-
text-decoration: none;
|
74 |
-
background: #F1F1F1;
|
75 |
-
background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
|
76 |
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef));
|
77 |
-
background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%);
|
78 |
-
background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%);
|
79 |
-
background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%);
|
80 |
-
background: linear-gradient(top, #ffffff 0%,#efefef 100%);
|
81 |
-
-webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
|
82 |
-
-moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
|
83 |
-
-ms-box-shadow: inset 0px 1px 0px 0px #ffffff;
|
84 |
-
-o-box-shadow: inset 0px 1px 0px 0px #ffffff;
|
85 |
-
box-shadow: inset 0px 1px 0px 0px #ffffff;
|
86 |
-
}
|
87 |
-
|
88 |
-
.options a:hover {
|
89 |
-
border-color: #999;
|
90 |
-
color: #000;
|
91 |
-
}
|
92 |
-
|
93 |
-
.options a:active {
|
94 |
-
border-color: #666;
|
95 |
-
-webkit-box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
|
96 |
-
-moz-box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
|
97 |
-
-ms-box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
|
98 |
-
-o-box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
|
99 |
-
box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
|
100 |
-
background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
|
101 |
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef));
|
102 |
-
background: -webkit-linear-gradient(top, #efefef 0%,#e6e6e6 100%);
|
103 |
-
background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%);
|
104 |
-
background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%);
|
105 |
-
background: linear-gradient(top, #ffffff 0%,#efefef 100%);
|
106 |
-
}
|
107 |
-
|
108 |
-
|
109 |
-
/* Template Page Layout
|
110 |
-
------------------------------------------*/
|
111 |
-
|
112 |
-
#content {
|
113 |
-
margin-left: auto;
|
114 |
-
margin-right: auto;
|
115 |
-
padding-top: 7%;
|
116 |
-
padding-left: 10%;
|
117 |
-
padding-right: 10%;
|
118 |
-
text-align: left;
|
119 |
-
}
|
120 |
-
|
121 |
-
/* Main Body */
|
122 |
-
body {
|
123 |
-
background: #fff;
|
124 |
-
color: #000;
|
125 |
-
font-family: "HelveticaNeue", Helvetica, Arial, sans-serif;
|
126 |
-
font-size: 0.875em;
|
127 |
-
line-height: 125%;
|
128 |
-
}
|
129 |
-
|
130 |
-
h1,
|
131 |
-
h2,
|
132 |
-
h3,
|
133 |
-
h4 {
|
134 |
-
font-weight: bold;
|
135 |
-
}
|
136 |
-
|
137 |
-
li,
|
138 |
-
ul {
|
139 |
-
margin-bottom: 1.25em;
|
140 |
-
}
|
141 |
-
|
142 |
-
p + p {
|
143 |
-
margin-top: 1.25em;
|
144 |
-
}
|
145 |
-
|
146 |
-
/* Basic Table Styling */
|
147 |
-
table {
|
148 |
-
border-top: 1px #ccc solid;
|
149 |
-
}
|
150 |
-
|
151 |
-
td,
|
152 |
-
th {
|
153 |
-
border-left: 1px #ccc solid;
|
154 |
-
border-right: 1px #ccc solid;
|
155 |
-
border-bottom: 1px #ccc solid;
|
156 |
-
padding: 0.375em;
|
157 |
-
vertical-align: middle;
|
158 |
-
}
|
159 |
-
|
160 |
-
th {
|
161 |
-
color: #000;
|
162 |
-
font-weight: bold;
|
163 |
-
text-align: left;
|
164 |
-
}
|
165 |
-
|
166 |
-
/* Special Margin & Overflow Stylings */
|
167 |
-
#letter-header,
|
168 |
-
#order-items,
|
169 |
-
#order-summary,
|
170 |
-
#order-notes {
|
171 |
-
margin-bottom: 3em;
|
172 |
-
}
|
173 |
-
|
174 |
-
#order-info,
|
175 |
-
#order-summary {
|
176 |
-
margin-bottom: 6em;
|
177 |
-
}
|
178 |
-
|
179 |
-
#page,
|
180 |
-
#letter-header,
|
181 |
-
#order-listing,
|
182 |
-
#order-summary,
|
183 |
-
#order-notes,
|
184 |
-
#letter-footer {
|
185 |
-
overflow: hidden;
|
186 |
-
}
|
187 |
-
|
188 |
-
/* Delivery Notes Head */
|
189 |
-
#letter-header .heading {
|
190 |
-
float: left;
|
191 |
-
width: 50%;
|
192 |
-
font-weight: bold;
|
193 |
-
font-size: 2em;
|
194 |
-
line-height: 125%;
|
195 |
-
}
|
196 |
-
|
197 |
-
|
198 |
-
#letter-header .company-name {
|
199 |
-
font-weight: bold;
|
200 |
-
}
|
201 |
-
|
202 |
-
#letter-header .company-info {
|
203 |
-
float: right;
|
204 |
-
width: 35%;
|
205 |
-
margin-top: 0.45em;
|
206 |
-
}
|
207 |
-
|
208 |
-
/* Order Listing - #order-listing */
|
209 |
-
#order-listing {
|
210 |
-
float: right;
|
211 |
-
width: 35%;
|
212 |
-
}
|
213 |
-
|
214 |
-
/* Order Info - #order-info */
|
215 |
-
#order-info {
|
216 |
-
float: left;
|
217 |
-
width: 50%;
|
218 |
-
}
|
219 |
-
|
220 |
-
/* Order Items - #order-items */
|
221 |
-
#order-items {
|
222 |
-
clear: both;
|
223 |
-
}
|
224 |
-
|
225 |
-
#order-items table {
|
226 |
-
width: 100%;
|
227 |
-
}
|
228 |
-
|
229 |
-
#order-items .description {
|
230 |
-
width: 65%;
|
231 |
-
}
|
232 |
-
|
233 |
-
#order-items .price {
|
234 |
-
width: 17.5%;
|
235 |
-
}
|
236 |
-
|
237 |
-
#order-items .sku,
|
238 |
-
#order-items .weight {
|
239 |
-
color: #666;
|
240 |
-
font-size: 0.75em;
|
241 |
-
font-style: italic;
|
242 |
-
}
|
243 |
-
|
244 |
-
/* Order Summary - #order-summary */
|
245 |
-
#order-summary table {
|
246 |
-
float: right;
|
247 |
-
width: 35%;
|
248 |
-
}
|
249 |
-
|
250 |
-
#order-summary .price {
|
251 |
-
width: 50%;
|
252 |
-
}
|
253 |
-
|
254 |
-
#order-summary #total-label,
|
255 |
-
#order-summary #total-number {
|
256 |
-
border-top: 2px solid #000;
|
257 |
-
border-bottom: 2px solid #000;
|
258 |
-
}
|
259 |
-
|
260 |
-
#order-summary #total-number {
|
261 |
-
font-weight: bold;
|
262 |
-
}
|
263 |
-
|
264 |
-
|
265 |
-
/* Order Notes - #order-notes */
|
266 |
-
|
267 |
-
#order-notes {
|
268 |
-
}
|
269 |
-
#order-notes .notes-shipping {
|
270 |
-
float: left;
|
271 |
-
width: 50%;
|
272 |
-
}
|
273 |
-
#order-notes .notes-personal {
|
274 |
-
float: right;
|
275 |
-
width: 35%;
|
276 |
-
font-weight: bold;
|
277 |
-
}
|
278 |
-
|
279 |
-
/* Footer Imprint */
|
280 |
-
#letter-footer {
|
281 |
-
border-top: 1px solid #ccc;
|
282 |
-
padding-top: 1em;
|
283 |
-
color: #666;
|
284 |
-
font-size: 0.75em;
|
285 |
-
font-style: italic;
|
286 |
-
}
|
287 |
-
|
288 |
-
#letter-footer p + p {
|
289 |
-
margin-top: 1em;
|
290 |
-
}
|
291 |
-
|
292 |
-
#letter-footer .policies,
|
293 |
-
#letter-footer .imprint {
|
294 |
-
margin-bottom: 1em;
|
295 |
-
}
|
296 |
-
|
297 |
-
|
298 |
-
/* CSS Media Queries for Print
|
299 |
-
------------------------------------------*/
|
300 |
-
|
301 |
-
@media print {
|
302 |
-
#header,
|
303 |
-
#footer {
|
304 |
-
display: none;
|
305 |
-
}
|
306 |
-
body {
|
307 |
-
font-size: 8pt;
|
308 |
-
}
|
309 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/delivery-notes/print.php
DELETED
@@ -1,136 +0,0 @@
|
|
1 |
-
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
<head>
|
4 |
-
<meta charset="utf-8">
|
5 |
-
<title><?php if( wcdn_template_name() == 'invoice' ) : ?><?php _e( 'Invoice', 'woocommerce-delivery-notes' ); ?><?php else : ?><?php _e( 'Delivery Note', 'woocommerce-delivery-notes' ); ?><?php endif; ?></title>
|
6 |
-
<link rel="stylesheet" href="<?php echo wcdn_template_url(); ?>css/style.css" type="text/css" media="screen,print" charset="utf-8"/>
|
7 |
-
<?php echo wcdn_template_javascript(); ?>
|
8 |
-
</head>
|
9 |
-
|
10 |
-
<body>
|
11 |
-
<div id="container">
|
12 |
-
<div id="header">
|
13 |
-
<div class="options">
|
14 |
-
<?php echo wcdn_template_print_button(); ?>
|
15 |
-
</div><!-- .options -->
|
16 |
-
</div><!-- #header -->
|
17 |
-
|
18 |
-
<div id="content">
|
19 |
-
<div id="page">
|
20 |
-
<div id="letter-header">
|
21 |
-
<div class="heading"><?php if( wcdn_company_logo_id() ) : ?><?php echo wcdn_company_logo(); ?><?php else : ?><?php if( wcdn_template_name() == 'invoice' ) : ?><?php _e( 'Invoice', 'woocommerce-delivery-notes' ); ?><?php else : ?><?php _e( 'Delivery Note', 'woocommerce-delivery-notes' ); ?><?php endif; ?><?php endif; ?></div>
|
22 |
-
<div class="company-info">
|
23 |
-
<div class="company-name"><?php echo wcdn_company_name(); ?></div>
|
24 |
-
<div class="company-address"><?php echo wcdn_company_info(); ?></div>
|
25 |
-
</div>
|
26 |
-
</div><!-- #letter-header -->
|
27 |
-
|
28 |
-
<div id="order-listing">
|
29 |
-
<h3><?php _e( 'Recipient', 'woocommerce-delivery-notes' ); ?></h3>
|
30 |
-
<div class="shipping-info">
|
31 |
-
<?php if( wcdn_shipping_company() ) : ?><?php echo wcdn_shipping_company(); ?><br /><?php endif; ?>
|
32 |
-
<?php echo wcdn_shipping_name(); ?><br />
|
33 |
-
<?php echo wcdn_shipping_address_1(); ?><br />
|
34 |
-
<?php if( wcdn_shipping_address_2() ) : ?><?php echo wcdn_shipping_address_2(); ?><br /><?php endif; ?>
|
35 |
-
<?php echo wcdn_shipping_city(); ?>, <?php echo wcdn_shipping_state(); ?><br />
|
36 |
-
<?php echo wcdn_shipping_postcode(); ?>
|
37 |
-
|
38 |
-
<?php if( wcdn_shipping_country() ) : ?><br /><?php echo wcdn_shipping_country(); ?><?php endif; ?>
|
39 |
-
</div><!-- .shipping-info -->
|
40 |
-
</div><!-- #order-listing -->
|
41 |
-
|
42 |
-
<ul id="order-info">
|
43 |
-
<?php if( wcdn_company_logo() ) : ?>
|
44 |
-
<li>
|
45 |
-
<h3 class="order-number-label"><?php if( wcdn_template_name() == 'invoice' ) : ?><?php _e( 'Invoice', 'woocommerce-delivery-notes' ); ?><?php else : ?><?php _e( 'Delivery Note', 'woocommerce-delivery-notes' ); ?><?php endif; ?></h3>
|
46 |
-
</li>
|
47 |
-
<?php endif; ?>
|
48 |
-
<li>
|
49 |
-
<h3 class="order-number-label"><?php _e( 'Order No.', 'woocommerce-delivery-notes' ); ?></h3>
|
50 |
-
<span class="order-number"><?php echo wcdn_order_number(); ?></span>
|
51 |
-
</li>
|
52 |
-
<li>
|
53 |
-
<h3 class="order-date-label"><?php _e( 'Order Date', 'woocommerce-delivery-notes' ); ?></h3>
|
54 |
-
<span class="order-date"><?php echo wcdn_order_date(); ?></span>
|
55 |
-
</li>
|
56 |
-
</ul><!-- #order-info -->
|
57 |
-
|
58 |
-
<div id="order-items">
|
59 |
-
<table>
|
60 |
-
<thead>
|
61 |
-
<tr>
|
62 |
-
<th class="description" id="description-label"><?php _e( 'Product Name', 'woocommerce-delivery-notes' ); ?></th>
|
63 |
-
<th class="quantity" id="quantity-label"><?php _e( 'Quantity', 'woocommerce-delivery-notes' ); ?></th>
|
64 |
-
<th class="price" id="price-label"><?php _e( 'Price', 'woocommerce-delivery-notes' ); ?></th>
|
65 |
-
</tr>
|
66 |
-
</thead>
|
67 |
-
<tfoot>
|
68 |
-
<?php $items = wcdn_get_order_items(); foreach( $items as $item ) : ?><tr>
|
69 |
-
<td class="description"><?php echo $item['name']; ?><?php if( $item['variation'] ) : ?> <span class="variation"><?php echo $item['variation']; ?></span><?php endif; ?>
|
70 |
-
<?php if( $item['sku'] || $item['weight'] ) : ?><br /><?php endif; ?><?php if( $item['sku'] ) : ?><span class="sku"><?php _e( 'SKU:', 'woocommerce-delivery-notes' ); ?> <?php echo $item['sku']; ?></span><?php endif; ?><?php if( $item['weight'] ) : ?><span class="weight"> <?php _e( 'Weight:', 'woocommerce-delivery-notes' );
|
71 |
-
echo ' ' . $item['weight'];
|
72 |
-
echo ' ' . get_option( 'woocommerce_weight_unit' ); ?></span><?php endif; ?></td>
|
73 |
-
<td class="quantity"><?php echo $item['quantity']; ?></td>
|
74 |
-
<td class="price"><?php echo $item['price']; ?></td>
|
75 |
-
<tr><?php endforeach; ?>
|
76 |
-
</tfoot>
|
77 |
-
</table>
|
78 |
-
</div><!-- #order-items -->
|
79 |
-
|
80 |
-
<div id="order-summary">
|
81 |
-
<table>
|
82 |
-
<tbody>
|
83 |
-
<tr>
|
84 |
-
<th class="description" id="subtotal-label"><?php _e( 'Subtotal', 'woocommerce-delivery-notes' ); ?></th>
|
85 |
-
<td class="price" id="subtotal-number"><?php echo wcdn_order_subtotal(); ?></td>
|
86 |
-
</tr>
|
87 |
-
<?php if ( wcdn_has_shipping() ) : ?>
|
88 |
-
<tr>
|
89 |
-
<th class="description" id="tax-label"><?php _e( 'Shipping', 'woocommerce-delivery-notes' ); ?></th>
|
90 |
-
<td class="price" id="tax-number"><?php echo wcdn_order_shipping(); ?></td>
|
91 |
-
</tr>
|
92 |
-
<?php endif; ?>
|
93 |
-
<?php if( wcdn_has_tax() ) : ?>
|
94 |
-
<tr>
|
95 |
-
<th class="description" id="tax-label"><?php _e( 'Tax', 'woocommerce-delivery-notes' ); ?></th>
|
96 |
-
<td class="price" id="tax-number"><?php echo wcdn_order_tax(); ?></td>
|
97 |
-
</tr>
|
98 |
-
<?php endif; ?>
|
99 |
-
<?php if( wcdn_has_discount() ) : ?>
|
100 |
-
<tr>
|
101 |
-
<th class="description" id="tax-label"><?php _e( 'Discount', 'woocommerce-delivery-notes' ); ?></th>
|
102 |
-
<td class="price" id="tax-number"><?php echo wcdn_order_discount(); ?></td>
|
103 |
-
</tr>
|
104 |
-
<?php endif; ?>
|
105 |
-
<tr>
|
106 |
-
<th class="description" id="total-label"><?php _e( 'Grand Total', 'woocommerce-delivery-notes' ); ?></th>
|
107 |
-
<td class="price" id="total-number"><?php echo wcdn_order_total(); ?></td>
|
108 |
-
</tr>
|
109 |
-
</tbody>
|
110 |
-
</table>
|
111 |
-
</div><!-- #order-summery -->
|
112 |
-
|
113 |
-
<div id="order-notes">
|
114 |
-
<div class="notes-shipping">
|
115 |
-
<?php if ( wcdn_shipping_notes() ) : ?>
|
116 |
-
<h3><?php _e( 'Customer Notes', 'woocommerce-delivery-notes' ); ?></h3>
|
117 |
-
<?php echo wcdn_shipping_notes(); ?>
|
118 |
-
<?php endif; ?>
|
119 |
-
</div>
|
120 |
-
<div class="notes-personal"><?php echo wcdn_personal_notes(); ?></div>
|
121 |
-
</div><!-- #order-notes -->
|
122 |
-
|
123 |
-
<?php if ( wcdn_policies_conditions() || wcdn_footer_imprint() ) : ?>
|
124 |
-
<div id="letter-footer">
|
125 |
-
<div class="policies"><?php echo wcdn_policies_conditions(); ?></div>
|
126 |
-
<div class="imprint"><?php echo wcdn_footer_imprint(); ?></div>
|
127 |
-
</div><!-- #letter-footer -->
|
128 |
-
<?php endif; ?>
|
129 |
-
</div><!-- #page -->
|
130 |
-
</div><!-- #content -->
|
131 |
-
|
132 |
-
<div id="footer">
|
133 |
-
</div><!-- #footer -->
|
134 |
-
</div><!-- #container -->
|
135 |
-
</body>
|
136 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/print/print-delivery-note.php
ADDED
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html class="<?php echo wcdn_get_template_type(); ?>">
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8">
|
5 |
+
<title><?php wcdn_template_title(); ?></title>
|
6 |
+
<?php wcdn_head(); ?>
|
7 |
+
<link rel="stylesheet" href="<?php wcdn_stylesheet_url( 'style.css' ); ?>" type="text/css" media="screen,print" />
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="container">
|
11 |
+
<?php wcdn_navigation(); ?>
|
12 |
+
<div id="content">
|
13 |
+
<div id="page">
|
14 |
+
<div id="letter-header">
|
15 |
+
<div class="heading"><?php if( wcdn_get_company_logo_id() ) : ?><?php wcdn_company_logo(); ?><?php else : ?><?php wcdn_template_title(); ?><?php endif; ?></div>
|
16 |
+
<div class="company-info">
|
17 |
+
<div class="company-name"><?php wcdn_company_name(); ?></div>
|
18 |
+
<div class="company-address"><?php wcdn_company_info(); ?></div>
|
19 |
+
</div>
|
20 |
+
</div><!-- #letter-header -->
|
21 |
+
|
22 |
+
<div id="order-listing">
|
23 |
+
<h3><?php _e( 'Recipient', 'woocommerce-delivery-notes' ); ?></h3>
|
24 |
+
<div class="shipping-info">
|
25 |
+
<?php if( wcdn_get_template_type() == 'invoice' ) : ?>
|
26 |
+
<?php wcdn_billing_address(); ?>
|
27 |
+
<?php else : ?>
|
28 |
+
<?php wcdn_shipping_address(); ?>
|
29 |
+
<?php endif ?>
|
30 |
+
</div><!-- .shipping-info -->
|
31 |
+
</div><!-- #order-listing -->
|
32 |
+
|
33 |
+
<ul id="order-info">
|
34 |
+
<?php if( wcdn_get_company_logo_id() ) : ?>
|
35 |
+
<li>
|
36 |
+
<h3 class="order-number-label"><?php wcdn_template_title(); ?></h3>
|
37 |
+
</li>
|
38 |
+
<?php endif; ?>
|
39 |
+
<li>
|
40 |
+
<h3 class="order-date-label"><?php _e( 'Order Date', 'woocommerce-delivery-notes' ); ?></h3>
|
41 |
+
<span class="order-date"><?php wcdn_order_date(); ?></span>
|
42 |
+
</li>
|
43 |
+
<li>
|
44 |
+
<h3 class="order-number-label"><?php _e( 'Order Number', 'woocommerce-delivery-notes' ); ?></h3>
|
45 |
+
<span class="order-number"><?php wcdn_order_number(); ?></span>
|
46 |
+
</li>
|
47 |
+
<li>
|
48 |
+
<h3 class="order-payment-label"><?php _e( 'Payment Method', 'woocommerce-delivery-notes' ); ?></h3>
|
49 |
+
<span class="order-payment"><?php wcdn_payment_method(); ?></span>
|
50 |
+
</li>
|
51 |
+
<li>
|
52 |
+
<h3 class="order-telephone-label"><?php _e( 'Email', 'woocommerce-delivery-notes' ); ?></h3>
|
53 |
+
<span class="order-payment"><?php wcdn_billing_email(); ?></span>
|
54 |
+
</li>
|
55 |
+
<li>
|
56 |
+
<h3 class="order-email-label"><?php _e( 'Phone', 'woocommerce-delivery-notes' ); ?></h3>
|
57 |
+
<span class="order-payment"><?php wcdn_billing_phone(); ?></span>
|
58 |
+
</li>
|
59 |
+
</ul><!-- #order-info -->
|
60 |
+
|
61 |
+
<div id="order-items">
|
62 |
+
<table>
|
63 |
+
<thead>
|
64 |
+
<tr>
|
65 |
+
<th class="product-label"><?php _e('Product', 'woocommerce-delivery-notes'); ?></th>
|
66 |
+
<th class="quantity-label"><?php _e('Quantity', 'woocommerce-delivery-notes'); ?></th>
|
67 |
+
<th class="totals-label"><?php _e('Totals', 'woocommerce-delivery-notes'); ?></th>
|
68 |
+
</tr>
|
69 |
+
</thead>
|
70 |
+
<tbody>
|
71 |
+
<?php $items = wcdn_get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item ) : ?><tr>
|
72 |
+
<td class="description"><?php echo $item['name']; ?>
|
73 |
+
<?php echo $item['meta']; ?>
|
74 |
+
<dl class="meta">
|
75 |
+
<?php if( !empty( $item['sku'] ) ) : ?><dt><?php _e( 'SKU:', 'woocommerce-delivery-notes' ); ?></dt><dd><?php echo $item['sku']; ?></dd><?php endif; ?>
|
76 |
+
<?php if( !empty( $item['weight'] ) ) : ?><dt><?php _e( 'Weight:', 'woocommerce-delivery-notes' ); ?></dt><dd><?php echo $item['weight']; ?><?php echo get_option('woocommerce_weight_unit'); ?></dd><?php endif; ?>
|
77 |
+
</dl>
|
78 |
+
</td>
|
79 |
+
<td class="quantity"><?php echo $item['quantity']; ?></td>
|
80 |
+
<td class="price"><?php echo $item['price']; ?></td>
|
81 |
+
</tr><?php endforeach; endif; ?>
|
82 |
+
</tbody>
|
83 |
+
</table>
|
84 |
+
</div><!-- #order-items -->
|
85 |
+
|
86 |
+
<div id="order-summary">
|
87 |
+
<table>
|
88 |
+
<tfoot>
|
89 |
+
<?php foreach( wcdn_get_order_totals() as $total ) : ?>
|
90 |
+
<tr>
|
91 |
+
<th class="description"><?php echo $total['label']; ?></th>
|
92 |
+
<td class="price"><?php echo $total['value']; ?></td>
|
93 |
+
</tr>
|
94 |
+
<?php endforeach; ?>
|
95 |
+
</tfoot>
|
96 |
+
</table>
|
97 |
+
</div><!-- #order-summery -->
|
98 |
+
|
99 |
+
<div id="order-notes">
|
100 |
+
<div class="notes-shipping">
|
101 |
+
<?php if ( wcdn_get_shipping_notes() ) : ?>
|
102 |
+
<h3><?php _e( 'Customer Notes', 'woocommerce-delivery-notes' ); ?></h3>
|
103 |
+
<?php wcdn_shipping_notes(); ?>
|
104 |
+
<?php endif; ?>
|
105 |
+
</div>
|
106 |
+
<div class="notes-personal"><?php wcdn_personal_notes(); ?></div>
|
107 |
+
</div><!-- #order-notes -->
|
108 |
+
|
109 |
+
<?php if ( wcdn_get_policies_conditions() || wcdn_get_footer_imprint() ) : ?>
|
110 |
+
<div id="letter-footer">
|
111 |
+
<div class="policies"><?php wcdn_policies_conditions(); ?></div>
|
112 |
+
<div class="imprint"><?php wcdn_footer_imprint(); ?></div>
|
113 |
+
</div><!-- #letter-footer -->
|
114 |
+
<?php endif; ?>
|
115 |
+
</div><!-- #page -->
|
116 |
+
</div><!-- #content -->
|
117 |
+
</div><!-- #container -->
|
118 |
+
</body>
|
119 |
+
</html>
|
templates/print/print-invoice.php
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<?php wcdn_get_template( 'print-delivery-note.php' ); ?>
|
templates/print/style.css
ADDED
@@ -0,0 +1,257 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Simple CSS Reset and Print options
|
2 |
+
------------------------------------------*/
|
3 |
+
|
4 |
+
|
5 |
+
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, table, ol, ul, dl, li, dt, dd {
|
6 |
+
border: 0 none;
|
7 |
+
font: inherit;
|
8 |
+
margin: 0;
|
9 |
+
padding: 0;
|
10 |
+
vertical-align: baseline;
|
11 |
+
}
|
12 |
+
|
13 |
+
body {
|
14 |
+
line-height: 1;
|
15 |
+
}
|
16 |
+
|
17 |
+
ol,
|
18 |
+
ul {
|
19 |
+
list-style: none;
|
20 |
+
}
|
21 |
+
|
22 |
+
table {
|
23 |
+
border-collapse: collapse;
|
24 |
+
border-spacing: 0;
|
25 |
+
}
|
26 |
+
|
27 |
+
|
28 |
+
/* Template Page Layout
|
29 |
+
------------------------------------------*/
|
30 |
+
|
31 |
+
|
32 |
+
/* Main Body */
|
33 |
+
body {
|
34 |
+
background: #fff;
|
35 |
+
color: #000;
|
36 |
+
font-family: "HelveticaNeue", Helvetica, Arial, sans-serif;
|
37 |
+
font-size: 0.875em;
|
38 |
+
line-height: 125%;
|
39 |
+
}
|
40 |
+
|
41 |
+
h1,
|
42 |
+
h2,
|
43 |
+
h3,
|
44 |
+
h4 {
|
45 |
+
font-weight: bold;
|
46 |
+
}
|
47 |
+
|
48 |
+
li,
|
49 |
+
ul {
|
50 |
+
margin-bottom: 1.25em;
|
51 |
+
}
|
52 |
+
|
53 |
+
p + p {
|
54 |
+
margin-top: 1.25em;
|
55 |
+
}
|
56 |
+
|
57 |
+
/* Basic Table Styling */
|
58 |
+
table {
|
59 |
+
page-break-inside: auto;
|
60 |
+
}
|
61 |
+
|
62 |
+
tr {
|
63 |
+
border-top: 1px #ccc solid;
|
64 |
+
border-bottom: 1px #ccc solid;
|
65 |
+
page-break-inside: avoid;
|
66 |
+
page-break-after: auto;
|
67 |
+
}
|
68 |
+
|
69 |
+
td,
|
70 |
+
th {
|
71 |
+
border-left: 1px #ccc solid;
|
72 |
+
border-right: 1px #ccc solid;
|
73 |
+
padding: 0.375em;
|
74 |
+
vertical-align: middle;
|
75 |
+
}
|
76 |
+
|
77 |
+
th {
|
78 |
+
color: #000;
|
79 |
+
font-weight: bold;
|
80 |
+
text-align: left;
|
81 |
+
}
|
82 |
+
|
83 |
+
/* Special Margin & Overflow Stylings */
|
84 |
+
#page {
|
85 |
+
margin-left: auto;
|
86 |
+
margin-right: auto;
|
87 |
+
padding-top: 5%;
|
88 |
+
padding-bottom: 5%;
|
89 |
+
padding-left: 10%;
|
90 |
+
padding-right: 10%;
|
91 |
+
text-align: left;
|
92 |
+
/* page-break-after: always; */
|
93 |
+
}
|
94 |
+
|
95 |
+
#letter-header,
|
96 |
+
#order-items,
|
97 |
+
#order-summary,
|
98 |
+
#order-notes {
|
99 |
+
margin-bottom: 3em;
|
100 |
+
}
|
101 |
+
|
102 |
+
#order-info,
|
103 |
+
#order-summary {
|
104 |
+
margin-bottom: 6em;
|
105 |
+
}
|
106 |
+
|
107 |
+
#page,
|
108 |
+
#letter-header,
|
109 |
+
#order-listing,
|
110 |
+
#order-summary,
|
111 |
+
#order-notes,
|
112 |
+
#letter-footer {
|
113 |
+
overflow: hidden;
|
114 |
+
}
|
115 |
+
|
116 |
+
#order-items,
|
117 |
+
#order-summary,
|
118 |
+
#order-notes {
|
119 |
+
page-break-before: auto;
|
120 |
+
page-break-after: auto;
|
121 |
+
}
|
122 |
+
|
123 |
+
/* Delivery Notes Head */
|
124 |
+
#letter-header .heading {
|
125 |
+
float: left;
|
126 |
+
width: 50%;
|
127 |
+
font-weight: bold;
|
128 |
+
font-size: 2em;
|
129 |
+
line-height: 125%;
|
130 |
+
}
|
131 |
+
|
132 |
+
#letter-header .company-name {
|
133 |
+
font-weight: bold;
|
134 |
+
}
|
135 |
+
|
136 |
+
#letter-header .company-info {
|
137 |
+
float: right;
|
138 |
+
width: 50%;
|
139 |
+
margin-top: 0.45em;
|
140 |
+
}
|
141 |
+
|
142 |
+
/* Order Listing - #order-listing */
|
143 |
+
#order-listing {
|
144 |
+
float: right;
|
145 |
+
width: 50%;
|
146 |
+
}
|
147 |
+
|
148 |
+
/* Order Info - #order-info */
|
149 |
+
#order-info {
|
150 |
+
float: left;
|
151 |
+
width: 50%;
|
152 |
+
}
|
153 |
+
|
154 |
+
/* Order Items - #order-items */
|
155 |
+
#order-items {
|
156 |
+
clear: both;
|
157 |
+
}
|
158 |
+
|
159 |
+
#order-items table {
|
160 |
+
width: 100%;
|
161 |
+
}
|
162 |
+
|
163 |
+
#order-items .description {
|
164 |
+
width: 50%;
|
165 |
+
}
|
166 |
+
|
167 |
+
#order-items .price {
|
168 |
+
width: 25%;
|
169 |
+
}
|
170 |
+
|
171 |
+
#order-items dl {
|
172 |
+
display: inline;
|
173 |
+
margin-bottom: 0;
|
174 |
+
color: #666;
|
175 |
+
}
|
176 |
+
|
177 |
+
#order-items dt,
|
178 |
+
#order-items dd {
|
179 |
+
display: inline;
|
180 |
+
margin-bottom: 0;
|
181 |
+
font-size: 0.75em;
|
182 |
+
}
|
183 |
+
#order-items dt {
|
184 |
+
margin-left: 0.75em;
|
185 |
+
}
|
186 |
+
|
187 |
+
#order-items dd {
|
188 |
+
margin-left: 0.2em;
|
189 |
+
}
|
190 |
+
|
191 |
+
/* Order Summary - #order-summary */
|
192 |
+
#order-summary {
|
193 |
+
float: right;
|
194 |
+
width: 50%;
|
195 |
+
}
|
196 |
+
|
197 |
+
#order-summary table {
|
198 |
+
width: 100%;
|
199 |
+
page-break-inside: avoid;
|
200 |
+
}
|
201 |
+
|
202 |
+
#order-summary .price {
|
203 |
+
width: 50%;
|
204 |
+
}
|
205 |
+
|
206 |
+
#order-summary tr:last-child {
|
207 |
+
border-top: 2px solid #000;
|
208 |
+
border-bottom: 2px solid #000;
|
209 |
+
font-weight: bold;
|
210 |
+
}
|
211 |
+
|
212 |
+
#order-summary small,
|
213 |
+
#order-summary .includes_tax {
|
214 |
+
font-size: 0.75em;
|
215 |
+
color: #666;
|
216 |
+
}
|
217 |
+
|
218 |
+
/* Order Notes - #order-notes */
|
219 |
+
#order-notes {
|
220 |
+
clear: both;
|
221 |
+
}
|
222 |
+
#order-notes .notes-shipping {
|
223 |
+
float: left;
|
224 |
+
width: 50%;
|
225 |
+
}
|
226 |
+
#order-notes .notes-personal {
|
227 |
+
float: right;
|
228 |
+
width: 50%;
|
229 |
+
font-weight: bold;
|
230 |
+
}
|
231 |
+
|
232 |
+
/* Footer Imprint */
|
233 |
+
#letter-footer {
|
234 |
+
border-top: 1px solid #ccc;
|
235 |
+
padding-top: 1em;
|
236 |
+
color: #666;
|
237 |
+
font-size: 0.75em;
|
238 |
+
}
|
239 |
+
|
240 |
+
#letter-footer p + p {
|
241 |
+
margin-top: 1em;
|
242 |
+
}
|
243 |
+
|
244 |
+
#letter-footer .policies,
|
245 |
+
#letter-footer .imprint {
|
246 |
+
margin-bottom: 1em;
|
247 |
+
}
|
248 |
+
|
249 |
+
|
250 |
+
/* CSS Media Queries for Print
|
251 |
+
------------------------------------------*/
|
252 |
+
|
253 |
+
@media print {
|
254 |
+
body {
|
255 |
+
font-size: 8pt;
|
256 |
+
}
|
257 |
+
}
|
woocommerce-delivery-notes-print.php
DELETED
@@ -1,557 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Load Wordpress to use its functions
|
5 |
-
*
|
6 |
-
* @since 1.0
|
7 |
-
*/
|
8 |
-
if ( !defined( 'ABSPATH' ) ) {
|
9 |
-
require_once '../../../wp-load.php';
|
10 |
-
}
|
11 |
-
|
12 |
-
/**
|
13 |
-
* Check the current user capabilities
|
14 |
-
*
|
15 |
-
* @since 1.0
|
16 |
-
*/
|
17 |
-
if (!current_user_can('manage_woocommerce_orders') || empty($_GET['order']) || empty($_GET['name'])) {
|
18 |
-
wp_die( __( 'You do not have sufficient permissions to access this page.', 'woocommerce-delivery-notes' ) );
|
19 |
-
}
|
20 |
-
|
21 |
-
/**
|
22 |
-
* Load all available data for the Delivery Notes printing page.
|
23 |
-
*/
|
24 |
-
$id = $_GET['order'];
|
25 |
-
$name = $_GET['name'];
|
26 |
-
|
27 |
-
/**
|
28 |
-
* Load the order
|
29 |
-
*
|
30 |
-
* @since 1.0
|
31 |
-
*/
|
32 |
-
$wcdn->print->load( $id );
|
33 |
-
|
34 |
-
/**
|
35 |
-
* Return Delivery Note template url
|
36 |
-
*
|
37 |
-
* @since 1.0
|
38 |
-
*/
|
39 |
-
if ( !function_exists( 'wcdn_template_url' ) ) {
|
40 |
-
function wcdn_template_url() {
|
41 |
-
global $wcdn;
|
42 |
-
return $wcdn->print->template_url;
|
43 |
-
}
|
44 |
-
}
|
45 |
-
|
46 |
-
/**
|
47 |
-
* Return Type of print
|
48 |
-
*
|
49 |
-
* @since 1.0
|
50 |
-
*/
|
51 |
-
if ( !function_exists( 'wcdn_template_name' ) ) {
|
52 |
-
function wcdn_template_name() {
|
53 |
-
global $wcdn;
|
54 |
-
return $wcdn->print->template_name;
|
55 |
-
}
|
56 |
-
}
|
57 |
-
|
58 |
-
/**
|
59 |
-
* Return javascript
|
60 |
-
*
|
61 |
-
* @since 1.0
|
62 |
-
*/
|
63 |
-
if ( !function_exists( 'wcdn_template_javascript' ) ) {
|
64 |
-
function wcdn_template_javascript() {
|
65 |
-
global $wcdn;
|
66 |
-
|
67 |
-
$js = '<script type="text/javascript">
|
68 |
-
function openPrintWindow() {
|
69 |
-
window.print();
|
70 |
-
return false;
|
71 |
-
}';
|
72 |
-
|
73 |
-
if( checked( $wcdn->print->get_setting( 'open_print_window' ), 'yes', false ) ) {
|
74 |
-
$js .= 'window.onload = openPrintWindow;';
|
75 |
-
}
|
76 |
-
|
77 |
-
$js .= '</script>';
|
78 |
-
|
79 |
-
return $js;
|
80 |
-
}
|
81 |
-
}
|
82 |
-
|
83 |
-
/**
|
84 |
-
* Return print button
|
85 |
-
*
|
86 |
-
* @since 1.0
|
87 |
-
*/
|
88 |
-
if ( !function_exists( 'wcdn_template_print_button' ) ) {
|
89 |
-
function wcdn_template_print_button() {
|
90 |
-
?>
|
91 |
-
<a href="#print" onclick="javascript:openPrintWindow();return false;"><?php _e( 'Print Page', 'woocommerce-delivery-notes' ); ?></a>
|
92 |
-
<?php
|
93 |
-
}
|
94 |
-
}
|
95 |
-
|
96 |
-
/**
|
97 |
-
* Return logo id
|
98 |
-
*
|
99 |
-
* @since 1.0
|
100 |
-
*/
|
101 |
-
if ( !function_exists( 'wcdn_company_logo_id' ) ) {
|
102 |
-
function wcdn_company_logo_id() {
|
103 |
-
global $wcdn;
|
104 |
-
return $wcdn->print->get_setting( 'company_logo_image_id' );
|
105 |
-
}
|
106 |
-
}
|
107 |
-
|
108 |
-
/**
|
109 |
-
* Return logo html
|
110 |
-
*
|
111 |
-
* @since 1.0
|
112 |
-
*/
|
113 |
-
if ( !function_exists( 'wcdn_company_logo' ) ) {
|
114 |
-
function wcdn_company_logo() {
|
115 |
-
global $wcdn;
|
116 |
-
$attachment_id = $wcdn->print->get_setting( 'company_logo_image_id' );
|
117 |
-
if( !empty( $attachment_id ) ) {
|
118 |
-
$attachment_src = wp_get_attachment_image_src( $attachment_id, array( 300, 300 ), false );
|
119 |
-
return '<img src="' . $attachment_src[0] . '" width="' . $attachment_src[1] . '" height="' . $attachment_src[2] . '" />';
|
120 |
-
}
|
121 |
-
return;
|
122 |
-
}
|
123 |
-
}
|
124 |
-
|
125 |
-
/**
|
126 |
-
* Return default title name of Delivery Note
|
127 |
-
*
|
128 |
-
* @since 1.0
|
129 |
-
*/
|
130 |
-
if ( !function_exists( 'wcdn_company_name' ) ) {
|
131 |
-
function wcdn_company_name() {
|
132 |
-
global $wcdn;
|
133 |
-
$name = trim( $wcdn->print->get_setting( 'custom_company_name' ) );
|
134 |
-
if( !empty( $name ) ) {
|
135 |
-
return wpautop( wptexturize( $name ) );
|
136 |
-
} else {
|
137 |
-
return get_bloginfo( 'name' );
|
138 |
-
}
|
139 |
-
}
|
140 |
-
}
|
141 |
-
|
142 |
-
/**
|
143 |
-
* Return shop/company info if provided
|
144 |
-
*
|
145 |
-
* @since 1.0
|
146 |
-
*
|
147 |
-
* @global $wcdn->print
|
148 |
-
* @return string company address
|
149 |
-
*/
|
150 |
-
if ( ! function_exists( 'wcdn_company_info' ) ) {
|
151 |
-
function wcdn_company_info() {
|
152 |
-
global $wcdn;
|
153 |
-
return wpautop( wptexturize( $wcdn->print->get_setting( 'company_address' ) ) );
|
154 |
-
}
|
155 |
-
}
|
156 |
-
|
157 |
-
/**
|
158 |
-
* Return shipping name
|
159 |
-
*
|
160 |
-
* @since 1.0
|
161 |
-
*
|
162 |
-
* @global $wcdn->print
|
163 |
-
* @return string shipping name
|
164 |
-
*/
|
165 |
-
if ( ! function_exists( 'wcdn_shipping_name' ) ) {
|
166 |
-
function wcdn_shipping_name() {
|
167 |
-
global $wcdn;
|
168 |
-
return $wcdn->print->get_order()->shipping_first_name . ' ' . $wcdn->print->get_order()->shipping_last_name;
|
169 |
-
}
|
170 |
-
}
|
171 |
-
|
172 |
-
/**
|
173 |
-
* Return shipping company
|
174 |
-
*
|
175 |
-
* @since 1.0
|
176 |
-
*
|
177 |
-
* @global $wcdn->print
|
178 |
-
* @return string shipping company
|
179 |
-
*/
|
180 |
-
if ( ! function_exists( 'wcdn_shipping_company' ) ) {
|
181 |
-
function wcdn_shipping_company() {
|
182 |
-
global $wcdn;
|
183 |
-
return $wcdn->print->get_order()->shipping_company;
|
184 |
-
}
|
185 |
-
}
|
186 |
-
|
187 |
-
/**
|
188 |
-
* Return shipping address 1
|
189 |
-
*
|
190 |
-
* @since 1.0
|
191 |
-
*
|
192 |
-
* @global $wcdn->print
|
193 |
-
* @return string shipping address
|
194 |
-
*/
|
195 |
-
if ( ! function_exists( 'wcdn_shipping_address_1' ) ) {
|
196 |
-
function wcdn_shipping_address_1() {
|
197 |
-
global $wcdn;
|
198 |
-
return $wcdn->print->get_order()->shipping_address_1;
|
199 |
-
}
|
200 |
-
}
|
201 |
-
|
202 |
-
/**
|
203 |
-
* Return shipping address 2
|
204 |
-
*
|
205 |
-
* @since 1.0
|
206 |
-
*
|
207 |
-
* @global $wcdn->print
|
208 |
-
* @return string shipping address 2
|
209 |
-
*/
|
210 |
-
if ( ! function_exists( 'wcdn_shipping_address_2' ) ) {
|
211 |
-
function wcdn_shipping_address_2() {
|
212 |
-
global $wcdn;
|
213 |
-
return $wcdn->print->get_order()->shipping_address_2;
|
214 |
-
}
|
215 |
-
}
|
216 |
-
|
217 |
-
/**
|
218 |
-
* Return shipping city
|
219 |
-
*
|
220 |
-
* @since 1.0
|
221 |
-
*
|
222 |
-
* @global $wcdn->print
|
223 |
-
* @return string shipping city
|
224 |
-
*/
|
225 |
-
if ( ! function_exists( 'wcdn_shipping_city' ) ) {
|
226 |
-
function wcdn_shipping_city() {
|
227 |
-
global $wcdn;
|
228 |
-
return $wcdn->print->get_order()->shipping_city;
|
229 |
-
}
|
230 |
-
}
|
231 |
-
|
232 |
-
/**
|
233 |
-
* Return shipping state
|
234 |
-
*
|
235 |
-
* @since 1.0
|
236 |
-
*
|
237 |
-
* @global $wcdn->print
|
238 |
-
* @return string shipping state
|
239 |
-
*/
|
240 |
-
if ( ! function_exists( 'wcdn_shipping_state' ) ) {
|
241 |
-
function wcdn_shipping_state() {
|
242 |
-
global $wcdn;
|
243 |
-
return $wcdn->print->get_order()->shipping_state;
|
244 |
-
}
|
245 |
-
}
|
246 |
-
|
247 |
-
/**
|
248 |
-
* Return shipping postcode
|
249 |
-
*
|
250 |
-
* @since 1.0
|
251 |
-
*
|
252 |
-
* @global $wcdn->print
|
253 |
-
* @return string shipping postcode
|
254 |
-
*/
|
255 |
-
if ( ! function_exists( 'wcdn_shipping_postcode' ) ) {
|
256 |
-
function wcdn_shipping_postcode() {
|
257 |
-
global $wcdn;
|
258 |
-
return $wcdn->print->get_order()->shipping_postcode;
|
259 |
-
}
|
260 |
-
}
|
261 |
-
|
262 |
-
/**
|
263 |
-
* Return shipping country
|
264 |
-
*
|
265 |
-
* @since 1.0
|
266 |
-
*
|
267 |
-
* @global $wcdn->print
|
268 |
-
* @return string shipping country
|
269 |
-
*/
|
270 |
-
if ( ! function_exists( 'wcdn_shipping_country' ) ) {
|
271 |
-
function wcdn_shipping_country() {
|
272 |
-
global $wcdn, $woocommerce;
|
273 |
-
$country = $wcdn->print->get_order()->shipping_country;
|
274 |
-
$full_country = ( isset( $woocommerce->countries->countries[$country] ) ) ? $woocommerce->countries->countries[$country] : $country;
|
275 |
-
return $full_country;
|
276 |
-
}
|
277 |
-
}
|
278 |
-
|
279 |
-
/**
|
280 |
-
* Return shipping notes
|
281 |
-
*
|
282 |
-
* @since 1.0
|
283 |
-
*
|
284 |
-
* @global $wcdn->print
|
285 |
-
* @return string shipping notes
|
286 |
-
*/
|
287 |
-
if ( ! function_exists( 'wcdn_shipping_notes' ) ) {
|
288 |
-
function wcdn_shipping_notes() {
|
289 |
-
global $wcdn;
|
290 |
-
return wpautop( wptexturize( $wcdn->print->get_order()->customer_note ) );
|
291 |
-
}
|
292 |
-
}
|
293 |
-
|
294 |
-
/**
|
295 |
-
* Return billing phone
|
296 |
-
*
|
297 |
-
* @since 1.0
|
298 |
-
*
|
299 |
-
* @global $wcdn->print
|
300 |
-
* @return string billing phone
|
301 |
-
*/
|
302 |
-
if ( ! function_exists( 'wcdn_billing_phone' ) ) {
|
303 |
-
function wcdn_billing_phone() {
|
304 |
-
global $wcdn;
|
305 |
-
return $wcdn->print->get_order()->billing_phone;
|
306 |
-
}
|
307 |
-
}
|
308 |
-
|
309 |
-
/**
|
310 |
-
* Return order id
|
311 |
-
*
|
312 |
-
* @since 1.0
|
313 |
-
*
|
314 |
-
* @global $wcdn->print
|
315 |
-
* @return string order id
|
316 |
-
*/
|
317 |
-
if ( ! function_exists( 'wcdn_order_number' ) ) {
|
318 |
-
function wcdn_order_number() {
|
319 |
-
global $wcdn;
|
320 |
-
$before = trim( $wcdn->print->get_setting( 'before_order_number' ) );
|
321 |
-
$after = trim( $wcdn->print->get_setting( 'after_order_number' ) );
|
322 |
-
$offset = trim( $wcdn->print->get_setting( 'order_number_offset' ) );
|
323 |
-
|
324 |
-
// get custom order number as provided by the plugin
|
325 |
-
// http://wordpress.org/extend/plugins/woocommerce-sequential-order-numbers/
|
326 |
-
// if custom order number is zero, fall back to ID
|
327 |
-
$order_id = $wcdn->print->order_id;
|
328 |
-
|
329 |
-
if ( !empty( $wcdn->print->get_order()->order_custom_fields['_order_number'] ) ) {
|
330 |
-
$order_id = $wcdn->print->get_order()->order_custom_fields['_order_number'][0];
|
331 |
-
}
|
332 |
-
|
333 |
-
$number = $before . ( intval( $offset ) + intval( $order_id ) ) . $after;
|
334 |
-
return $number;
|
335 |
-
}
|
336 |
-
}
|
337 |
-
|
338 |
-
/**
|
339 |
-
* Return the order date
|
340 |
-
*
|
341 |
-
* @since 1.0
|
342 |
-
*
|
343 |
-
* @global $wcdn->print
|
344 |
-
* @return string order date
|
345 |
-
*/
|
346 |
-
if ( ! function_exists( 'wcdn_order_date' ) ) {
|
347 |
-
function wcdn_order_date() {
|
348 |
-
global $wcdn;
|
349 |
-
$order = $wcdn->print->get_order();
|
350 |
-
return date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) );
|
351 |
-
}
|
352 |
-
}
|
353 |
-
|
354 |
-
/**
|
355 |
-
* Return the order items
|
356 |
-
*
|
357 |
-
* @since 1.0
|
358 |
-
*
|
359 |
-
* @global $wcdn->print
|
360 |
-
* @return strings order items
|
361 |
-
*/
|
362 |
-
if ( ! function_exists( 'wcdn_get_order_items' ) ) {
|
363 |
-
function wcdn_get_order_items() {
|
364 |
-
global $wcdn;
|
365 |
-
return $wcdn->print->get_order_items();
|
366 |
-
}
|
367 |
-
}
|
368 |
-
|
369 |
-
/**
|
370 |
-
* Return the formatted price
|
371 |
-
*
|
372 |
-
* @since 1.0
|
373 |
-
*
|
374 |
-
* @global $wcdn->print
|
375 |
-
* @return string items price
|
376 |
-
*/
|
377 |
-
if ( !function_exists( 'wcdn_format_price' ) ) {
|
378 |
-
function wcdn_format_price( $price, $tax_rate = 0 ) {
|
379 |
-
$tax_included = ( $tax_rate > 0 ) ? 0 : 1;
|
380 |
-
return woocommerce_price( ( ( $price / 100 ) * $tax_rate ) + $price, array( 'ex_tax_label' => $tax_included ) );
|
381 |
-
}
|
382 |
-
}
|
383 |
-
|
384 |
-
/**
|
385 |
-
* Return the order subtotal
|
386 |
-
*
|
387 |
-
* @since 1.0
|
388 |
-
*
|
389 |
-
* @global $wcdn->print
|
390 |
-
* @return string order subtotal
|
391 |
-
*/
|
392 |
-
if ( !function_exists( 'wcdn_order_subtotal' ) ) {
|
393 |
-
function wcdn_order_subtotal() {
|
394 |
-
global $wcdn;
|
395 |
-
return $wcdn->print->get_order()->get_subtotal_to_display();
|
396 |
-
}
|
397 |
-
}
|
398 |
-
|
399 |
-
/**
|
400 |
-
* Return the order tax
|
401 |
-
*
|
402 |
-
* @since 1.0
|
403 |
-
*
|
404 |
-
* @global $wcdn->print
|
405 |
-
* @return string order tax
|
406 |
-
*/
|
407 |
-
if ( ! function_exists( 'wcdn_order_tax' ) ) {
|
408 |
-
function wcdn_order_tax() {
|
409 |
-
global $wcdn;
|
410 |
-
return woocommerce_price( $wcdn->print->get_order()->get_total_tax() );
|
411 |
-
}
|
412 |
-
}
|
413 |
-
|
414 |
-
/**
|
415 |
-
* Return the order shipping cost
|
416 |
-
*
|
417 |
-
* @since 1.0
|
418 |
-
*
|
419 |
-
* @global $wcdn->print
|
420 |
-
* @return string order shipping cost
|
421 |
-
*/
|
422 |
-
if ( ! function_exists( 'wcdn_order_shipping' ) ) {
|
423 |
-
function wcdn_order_shipping() {
|
424 |
-
global $wcdn;
|
425 |
-
return $wcdn->print->get_order()->get_shipping_to_display();
|
426 |
-
}
|
427 |
-
}
|
428 |
-
|
429 |
-
/**
|
430 |
-
* Return the order discount
|
431 |
-
*
|
432 |
-
* @since 1.0
|
433 |
-
*
|
434 |
-
* @global $wcdn->print
|
435 |
-
* @return string order discount
|
436 |
-
*/
|
437 |
-
if ( ! function_exists( 'wcdn_order_discount' ) ) {
|
438 |
-
function wcdn_order_discount() {
|
439 |
-
global $wcdn;
|
440 |
-
return woocommerce_price( $wcdn->print->get_order()->order_discount );
|
441 |
-
}
|
442 |
-
}
|
443 |
-
|
444 |
-
/**
|
445 |
-
* Return the order grand total
|
446 |
-
*
|
447 |
-
* @since 1.0
|
448 |
-
*
|
449 |
-
* @global $wcdn->print
|
450 |
-
* @return string grand total
|
451 |
-
*/
|
452 |
-
if ( ! function_exists( 'wcdn_order_total' ) ) {
|
453 |
-
function wcdn_order_total() {
|
454 |
-
global $wcdn;
|
455 |
-
return woocommerce_price( $wcdn->print->get_order()->order_total );
|
456 |
-
}
|
457 |
-
}
|
458 |
-
|
459 |
-
/**
|
460 |
-
* Return if the order has a shipping
|
461 |
-
*
|
462 |
-
* @since 1.0
|
463 |
-
*
|
464 |
-
* @global $wcdn->print
|
465 |
-
* @return boolean
|
466 |
-
*/
|
467 |
-
if ( ! function_exists( 'wcdn_has_shipping' ) ) {
|
468 |
-
function wcdn_has_shipping() {
|
469 |
-
global $wcdn;
|
470 |
-
return ( $wcdn->print->get_order()->order_shipping > 0 ) ? true : false;
|
471 |
-
}
|
472 |
-
}
|
473 |
-
|
474 |
-
/**
|
475 |
-
* Return if the order has a tax
|
476 |
-
*
|
477 |
-
* @since 1.0
|
478 |
-
*
|
479 |
-
* @global $wcdn->print
|
480 |
-
* @return boolean
|
481 |
-
*/
|
482 |
-
if ( ! function_exists( 'wcdn_has_tax' ) ) {
|
483 |
-
function wcdn_has_tax() {
|
484 |
-
global $wcdn;
|
485 |
-
return ( $wcdn->print->get_order()->get_total_tax() > 0 ) ? true : false;
|
486 |
-
}
|
487 |
-
}
|
488 |
-
|
489 |
-
/**
|
490 |
-
* Return if the order has a discount
|
491 |
-
*
|
492 |
-
* @since 1.0
|
493 |
-
*
|
494 |
-
* @global $wcdn->print
|
495 |
-
* @return boolean
|
496 |
-
*/
|
497 |
-
if ( ! function_exists( 'wcdn_has_discount' ) ) {
|
498 |
-
function wcdn_has_discount() {
|
499 |
-
global $wcdn;
|
500 |
-
return ( $wcdn->print->get_order()->order_discount > 0 ) ? true : false;
|
501 |
-
}
|
502 |
-
}
|
503 |
-
|
504 |
-
/**
|
505 |
-
* Return personal notes, season greetings etc.
|
506 |
-
*
|
507 |
-
* @since 1.0
|
508 |
-
*
|
509 |
-
* @global $wcdn->print
|
510 |
-
* @return string personal notes
|
511 |
-
*/
|
512 |
-
if ( ! function_exists( 'wcdn_personal_notes' ) ) {
|
513 |
-
function wcdn_personal_notes() {
|
514 |
-
global $wcdn;
|
515 |
-
return wpautop( wptexturize( $wcdn->print->get_setting( 'personal_notes' ) ) );
|
516 |
-
}
|
517 |
-
}
|
518 |
-
|
519 |
-
/**
|
520 |
-
* Return policy for returns
|
521 |
-
*
|
522 |
-
* @since 1.0
|
523 |
-
*
|
524 |
-
* @global $wcdn->print
|
525 |
-
* @return string policy
|
526 |
-
*/
|
527 |
-
if ( ! function_exists( 'wcdn_policies_conditions' ) ) {
|
528 |
-
function wcdn_policies_conditions() {
|
529 |
-
global $wcdn;
|
530 |
-
return wpautop( wptexturize( $wcdn->print->get_setting( 'policies_conditions' ) ) );
|
531 |
-
}
|
532 |
-
}
|
533 |
-
|
534 |
-
/**
|
535 |
-
* Return shop/company footer imprint, copyright etc.
|
536 |
-
*
|
537 |
-
* @since 1.0
|
538 |
-
*
|
539 |
-
* @global $wcdn->print
|
540 |
-
* @return string footer imprint
|
541 |
-
*/
|
542 |
-
if ( ! function_exists( 'wcdn_footer_imprint' ) ) {
|
543 |
-
function wcdn_footer_imprint() {
|
544 |
-
global $wcdn;
|
545 |
-
return wpautop( wptexturize( $wcdn->print->get_setting( 'footer_imprint' ) ) );
|
546 |
-
}
|
547 |
-
}
|
548 |
-
|
549 |
-
/**
|
550 |
-
* Show the template
|
551 |
-
*
|
552 |
-
* @since 1.0
|
553 |
-
*
|
554 |
-
* @global $wcdn->print
|
555 |
-
* @return string footer imprint
|
556 |
-
*/
|
557 |
-
echo $wcdn->print->get_print_page( $name );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
woocommerce-delivery-notes.php
CHANGED
@@ -1,20 +1,12 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Main plugin file.
|
4 |
* Print order invoices & delivery notes for WooCommerce shop plugin.
|
5 |
* You can add company/shop info as well as personal notes & policies to print pages.
|
6 |
*
|
7 |
-
* @package WooCommerce Print Invoices & Delivery Notes
|
8 |
-
* @copyright Copyright 2011-2012 Steve Clark, Trigvvy Gunderson, David Decker - DECKERWEB
|
9 |
-
*
|
10 |
-
* @credits Inspired and based on the plugin "Jigoshop Delivery Notes" by Steve Clark and Trigvvy Gunderson
|
11 |
-
* @link http://www.clark-studios.co.uk/blog/
|
12 |
-
* @link https://github.com/piffpaffpuff
|
13 |
-
*
|
14 |
* Plugin Name: WooCommerce Print Invoices & Delivery Notes
|
15 |
* Plugin URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
16 |
* Description: Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages.
|
17 |
-
* Version:
|
18 |
* Author: Steve Clark, Triggvy Gunderson, David Decker
|
19 |
* Author URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
20 |
* License: GPLv3 or later
|
@@ -44,10 +36,8 @@
|
|
44 |
|
45 |
/**
|
46 |
* Base class
|
47 |
-
*
|
48 |
-
* @since 1.0
|
49 |
*/
|
50 |
-
if ( !
|
51 |
|
52 |
class WooCommerce_Delivery_Notes {
|
53 |
|
@@ -62,8 +52,6 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
62 |
|
63 |
/**
|
64 |
* Constructor
|
65 |
-
*
|
66 |
-
* @since 1.0
|
67 |
*/
|
68 |
public function __construct() {
|
69 |
self::$plugin_prefix = 'wcdn_';
|
@@ -74,17 +62,16 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
74 |
|
75 |
/**
|
76 |
* Load the hooks
|
77 |
-
*
|
78 |
-
* @since 1.0
|
79 |
*/
|
80 |
public function load() {
|
|
|
|
|
81 |
add_action( 'init', array( $this, 'load_hooks' ) );
|
|
|
82 |
}
|
83 |
-
|
84 |
/**
|
85 |
* Load the main plugin classes and functions
|
86 |
-
*
|
87 |
-
* @since 1.0
|
88 |
*/
|
89 |
public function includes() {
|
90 |
include_once( 'classes/class-wcdn-writepanel.php' );
|
@@ -93,15 +80,18 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
93 |
}
|
94 |
|
95 |
/**
|
96 |
-
* Load the
|
97 |
-
*
|
98 |
-
* @since 1.0
|
99 |
*/
|
100 |
-
public function
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
|
|
|
|
|
|
|
|
|
|
|
105 |
$this->includes();
|
106 |
$this->writepanel = new WooCommerce_Delivery_Notes_Writepanel();
|
107 |
$this->writepanel->load();
|
@@ -112,26 +102,488 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
112 |
}
|
113 |
}
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
/**
|
116 |
* Check if woocommerce is activated
|
117 |
-
*
|
118 |
-
* @since 1.0
|
119 |
*/
|
120 |
public function is_woocommerce_activated() {
|
121 |
-
|
|
|
|
|
|
|
122 |
return true;
|
123 |
} else {
|
124 |
return false;
|
125 |
}
|
126 |
}
|
127 |
-
|
128 |
}
|
129 |
}
|
130 |
|
131 |
/**
|
132 |
* Instance of plugin
|
133 |
-
*
|
134 |
-
* @since 1.0
|
135 |
*/
|
136 |
$wcdn = new WooCommerce_Delivery_Notes();
|
137 |
$wcdn->load();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
/**
|
|
|
3 |
* Print order invoices & delivery notes for WooCommerce shop plugin.
|
4 |
* You can add company/shop info as well as personal notes & policies to print pages.
|
5 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
* Plugin Name: WooCommerce Print Invoices & Delivery Notes
|
7 |
* Plugin URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
8 |
* Description: Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages.
|
9 |
+
* Version: 2.0.2
|
10 |
* Author: Steve Clark, Triggvy Gunderson, David Decker
|
11 |
* Author URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
12 |
* License: GPLv3 or later
|
36 |
|
37 |
/**
|
38 |
* Base class
|
|
|
|
|
39 |
*/
|
40 |
+
if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
41 |
|
42 |
class WooCommerce_Delivery_Notes {
|
43 |
|
52 |
|
53 |
/**
|
54 |
* Constructor
|
|
|
|
|
55 |
*/
|
56 |
public function __construct() {
|
57 |
self::$plugin_prefix = 'wcdn_';
|
62 |
|
63 |
/**
|
64 |
* Load the hooks
|
|
|
|
|
65 |
*/
|
66 |
public function load() {
|
67 |
+
// load the hooks
|
68 |
+
add_action( 'plugins_loaded', array($this, 'load_localisation') );
|
69 |
add_action( 'init', array( $this, 'load_hooks' ) );
|
70 |
+
add_action( 'admin_init', array( $this, 'load_admin_hooks' ) );
|
71 |
}
|
72 |
+
|
73 |
/**
|
74 |
* Load the main plugin classes and functions
|
|
|
|
|
75 |
*/
|
76 |
public function includes() {
|
77 |
include_once( 'classes/class-wcdn-writepanel.php' );
|
80 |
}
|
81 |
|
82 |
/**
|
83 |
+
* Load the localisation
|
|
|
|
|
84 |
*/
|
85 |
+
public function load_localisation() {
|
86 |
+
load_plugin_textdomain( 'woocommerce-delivery-notes', false, dirname( self::$plugin_basefile ) . '/../../languages/woocommerce-delivery-notes/' );
|
87 |
+
load_plugin_textdomain( 'woocommerce-delivery-notes', false, dirname( self::$plugin_basefile ) . '/languages' );
|
88 |
+
}
|
89 |
|
90 |
+
/**
|
91 |
+
* Load the init hooks
|
92 |
+
*/
|
93 |
+
public function load_hooks() {
|
94 |
+
if ( $this->is_woocommerce_activated() ) {
|
95 |
$this->includes();
|
96 |
$this->writepanel = new WooCommerce_Delivery_Notes_Writepanel();
|
97 |
$this->writepanel->load();
|
102 |
}
|
103 |
}
|
104 |
|
105 |
+
/**
|
106 |
+
* Load the admin hooks
|
107 |
+
*/
|
108 |
+
public function load_admin_hooks() {
|
109 |
+
if ( $this->is_woocommerce_activated() ) {
|
110 |
+
add_filter( 'plugin_row_meta', array( $this, 'add_support_links' ), 10, 2 );
|
111 |
+
add_filter( 'plugin_action_links_' . self::$plugin_basefile, array( $this, 'add_settings_link') );
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* Add various support links to plugin page
|
117 |
+
*/
|
118 |
+
public function add_support_links( $links, $file ) {
|
119 |
+
if ( !current_user_can( 'install_plugins' ) ) {
|
120 |
+
return $links;
|
121 |
+
}
|
122 |
+
|
123 |
+
if ( $file == WooCommerce_Delivery_Notes::$plugin_basefile ) {
|
124 |
+
$links[] = '<a href="http://wordpress.org/extend/plugins/woocommerce-delivery-notes/faq/" target="_blank" title="' . __( 'FAQ', 'woocommerce-delivery-notes' ) . '">' . __( 'FAQ', 'woocommerce-delivery-notes' ) . '</a>';
|
125 |
+
$links[] = '<a href="http://wordpress.org/support/plugin/woocommerce-delivery-notes" target="_blank" title="' . __( 'Support', 'woocommerce-delivery-notes' ) . '">' . __( 'Support', 'woocommerce-delivery-notes' ) . '</a>';
|
126 |
+
}
|
127 |
+
return $links;
|
128 |
+
}
|
129 |
+
|
130 |
+
/**
|
131 |
+
* Add settings link to plugin page
|
132 |
+
*/
|
133 |
+
public function add_settings_link( $links ) {
|
134 |
+
$settings = sprintf( '<a href="%s" title="%s">%s</a>' , admin_url( 'admin.php?page=woocommerce&tab=' . $this->settings->tab_name ) , __( 'Go to the settings page', 'woocommerce-delivery-notes' ) , __( 'Settings', 'woocommerce-delivery-notes' ) );
|
135 |
+
array_unshift( $links, $settings );
|
136 |
+
return $links;
|
137 |
+
}
|
138 |
+
|
139 |
/**
|
140 |
* Check if woocommerce is activated
|
|
|
|
|
141 |
*/
|
142 |
public function is_woocommerce_activated() {
|
143 |
+
$blog_plugins = get_option( 'active_plugins', array() );
|
144 |
+
$site_plugins = get_site_option( 'active_sitewide_plugins', array() );
|
145 |
+
|
146 |
+
if ( in_array( 'woocommerce/woocommerce.php', $blog_plugins ) || isset( $site_plugins['woocommerce/woocommerce.php'] ) ) {
|
147 |
return true;
|
148 |
} else {
|
149 |
return false;
|
150 |
}
|
151 |
}
|
|
|
152 |
}
|
153 |
}
|
154 |
|
155 |
/**
|
156 |
* Instance of plugin
|
|
|
|
|
157 |
*/
|
158 |
$wcdn = new WooCommerce_Delivery_Notes();
|
159 |
$wcdn->load();
|
160 |
+
|
161 |
+
/**
|
162 |
+
* Public functions
|
163 |
+
*/
|
164 |
+
|
165 |
+
/**
|
166 |
+
* Return Type of the print template
|
167 |
+
*/
|
168 |
+
if ( !function_exists( 'wcdn_get_template_type' ) ) {
|
169 |
+
function wcdn_get_template_type() {
|
170 |
+
global $wcdn;
|
171 |
+
return $wcdn->print->template_type;
|
172 |
+
}
|
173 |
+
}
|
174 |
+
|
175 |
+
/**
|
176 |
+
* Show the template part
|
177 |
+
*/
|
178 |
+
if ( !function_exists( 'wcdn_get_template' ) ) {
|
179 |
+
function wcdn_get_template( $name ) {
|
180 |
+
global $wcdn;
|
181 |
+
$wcdn->print->get_template( $name );
|
182 |
+
}
|
183 |
+
}
|
184 |
+
|
185 |
+
/**
|
186 |
+
* Show template url
|
187 |
+
*/
|
188 |
+
if ( !function_exists( 'wcdn_stylesheet_url' ) ) {
|
189 |
+
function wcdn_stylesheet_url( $name ) {
|
190 |
+
global $wcdn;
|
191 |
+
echo apply_filters( 'wcdn_stylesheet_url', $wcdn->print->get_template_url( $name ) );
|
192 |
+
}
|
193 |
+
}
|
194 |
+
|
195 |
+
/**
|
196 |
+
* Show the template title depending on type
|
197 |
+
*/
|
198 |
+
if ( !function_exists( 'wcdn_template_title' ) ) {
|
199 |
+
function wcdn_template_title() {
|
200 |
+
if( wcdn_get_template_type() == 'invoice' ) {
|
201 |
+
echo apply_filters( 'wcdn_template_title', __( 'Invoice', 'woocommerce-delivery-notes' ) );
|
202 |
+
} else {
|
203 |
+
echo apply_filters( 'wcdn_template_title', __( 'Delivery Note', 'woocommerce-delivery-notes' ) );
|
204 |
+
}
|
205 |
+
}
|
206 |
+
}
|
207 |
+
|
208 |
+
/**
|
209 |
+
* Create header
|
210 |
+
*/
|
211 |
+
if ( !function_exists( 'wcdn_head' ) ) {
|
212 |
+
function wcdn_head() {
|
213 |
+
?>
|
214 |
+
<style>
|
215 |
+
#navigation {
|
216 |
+
font-family: sans-serif;
|
217 |
+
background-color: #f7f7f7;
|
218 |
+
z-index: 200;
|
219 |
+
border-bottom: 1px solid #dfdfdf;
|
220 |
+
left: 0;
|
221 |
+
right: 0;
|
222 |
+
top: 0;
|
223 |
+
position: fixed;
|
224 |
+
padding: 6px;
|
225 |
+
}
|
226 |
+
|
227 |
+
#navigation .button {
|
228 |
+
display: inline-block;
|
229 |
+
text-decoration: none;
|
230 |
+
font-size: 12px;
|
231 |
+
line-height: 23px;
|
232 |
+
height: 24px;
|
233 |
+
margin: 0;
|
234 |
+
padding: 0 10px 1px;
|
235 |
+
cursor: pointer;
|
236 |
+
border-width: 1px;
|
237 |
+
border-style: solid;
|
238 |
+
-webkit-border-radius: 3px;
|
239 |
+
-webkit-appearance: none;
|
240 |
+
border-radius: 3px;
|
241 |
+
white-space: nowrap;
|
242 |
+
-webkit-box-sizing: border-box;
|
243 |
+
-moz-box-sizing: border-box;
|
244 |
+
box-sizing: border-box;
|
245 |
+
|
246 |
+
background: #f3f3f3;
|
247 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
|
248 |
+
background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
|
249 |
+
background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
|
250 |
+
background-image: -o-linear-gradient(top, #fefefe, #f4f4f4);
|
251 |
+
background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
|
252 |
+
border-color: #bbb;
|
253 |
+
color: #333;
|
254 |
+
text-shadow: 0 1px 0 #fff;
|
255 |
+
}
|
256 |
+
|
257 |
+
#navigation .button:hover,
|
258 |
+
#navigation .button:focus {
|
259 |
+
background: #f3f3f3;
|
260 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
|
261 |
+
background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
|
262 |
+
background-image: -moz-linear-gradient(top, #fff, #f3f3f3);
|
263 |
+
background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
|
264 |
+
background-image: -o-linear-gradient(top, #fff, #f3f3f3);
|
265 |
+
background-image: linear-gradient(to bottom, #fff, #f3f3f3);
|
266 |
+
border-color: #999;
|
267 |
+
color: #222;
|
268 |
+
}
|
269 |
+
|
270 |
+
#navigation .button:active {
|
271 |
+
background: #eee;
|
272 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fefefe));
|
273 |
+
background-image: -webkit-linear-gradient(top, #f4f4f4, #fefefe);
|
274 |
+
background-image: -moz-linear-gradient(top, #f4f4f4, #fefefe);
|
275 |
+
background-image: -ms-linear-gradient(top, #f4f4f4, #fefefe);
|
276 |
+
background-image: -o-linear-gradient(top, #f4f4f4, #fefefe);
|
277 |
+
background-image: linear-gradient(to bottom, #f4f4f4, #fefefe);
|
278 |
+
border-color: #999;
|
279 |
+
color: #333;
|
280 |
+
text-shadow: 0 -1px 0 #fff;
|
281 |
+
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
282 |
+
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
283 |
+
}
|
284 |
+
|
285 |
+
@media print {
|
286 |
+
#navigation {
|
287 |
+
display: none;
|
288 |
+
}
|
289 |
+
}
|
290 |
+
</style>
|
291 |
+
<?php
|
292 |
+
}
|
293 |
+
}
|
294 |
+
|
295 |
+
/**
|
296 |
+
* Create meta navigation
|
297 |
+
*/
|
298 |
+
if ( !function_exists( 'wcdn_navigation' ) ) {
|
299 |
+
function wcdn_navigation() {
|
300 |
+
?>
|
301 |
+
<div id="navigation">
|
302 |
+
<a href="#" class="button" onclick="window.print();return false;"><?php _e( 'Print', 'woocommerce-delivery-notes' ); ?></a>
|
303 |
+
</div>
|
304 |
+
<?php
|
305 |
+
}
|
306 |
+
}
|
307 |
+
|
308 |
+
/**
|
309 |
+
* Return logo id
|
310 |
+
*/
|
311 |
+
if ( !function_exists( 'wcdn_get_company_logo_id' ) ) {
|
312 |
+
function wcdn_get_company_logo_id() {
|
313 |
+
global $wcdn;
|
314 |
+
return apply_filters( 'wcdn_company_logo_id', $wcdn->settings->get_setting( 'company_logo_image_id' ) );
|
315 |
+
}
|
316 |
+
}
|
317 |
+
|
318 |
+
/**
|
319 |
+
* Show logo html
|
320 |
+
*/
|
321 |
+
if ( !function_exists( 'wcdn_company_logo' ) ) {
|
322 |
+
function wcdn_company_logo() {
|
323 |
+
global $wcdn;
|
324 |
+
$attachment_id = wcdn_get_company_logo_id();
|
325 |
+
$company = $wcdn->settings->get_setting( 'custom_company_name' );
|
326 |
+
if( $attachment_id ) {
|
327 |
+
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false );
|
328 |
+
|
329 |
+
// resize the image to a 1/4 of the original size
|
330 |
+
// to have a printing point density of about 288ppi.
|
331 |
+
?>
|
332 |
+
<img src="<?php echo $attachment_src[0]; ?>" width="<?php echo $attachment_src[1] / 4; ?>" height="<?php echo $attachment_src[2] / 4; ?>" alt="<?php echo esc_attr( $company ); ?>" />
|
333 |
+
<?php
|
334 |
+
}
|
335 |
+
}
|
336 |
+
}
|
337 |
+
|
338 |
+
/**
|
339 |
+
* Return default title name of Delivery Note
|
340 |
+
*/
|
341 |
+
if ( !function_exists( 'wcdn_company_name' ) ) {
|
342 |
+
function wcdn_company_name() {
|
343 |
+
global $wcdn;
|
344 |
+
$name = trim( $wcdn->settings->get_setting( 'custom_company_name' ) );
|
345 |
+
if( !empty( $name ) ) {
|
346 |
+
echo apply_filters( 'wcdn_company_name', wpautop( wptexturize( $name ) ) );
|
347 |
+
} else {
|
348 |
+
echo apply_filters( 'wcdn_company_name', get_bloginfo( 'name' ) );
|
349 |
+
}
|
350 |
+
}
|
351 |
+
}
|
352 |
+
|
353 |
+
/**
|
354 |
+
* Return shop/company info if provided
|
355 |
+
*/
|
356 |
+
if ( !function_exists( 'wcdn_company_info' ) ) {
|
357 |
+
function wcdn_company_info() {
|
358 |
+
global $wcdn;
|
359 |
+
echo wpautop( wptexturize( $wcdn->settings->get_setting( 'company_address' ) ) );
|
360 |
+
}
|
361 |
+
}
|
362 |
+
|
363 |
+
/**
|
364 |
+
* Show billing phone
|
365 |
+
*/
|
366 |
+
if ( !function_exists( 'wcdn_billing_phone' ) ) {
|
367 |
+
function wcdn_billing_phone() {
|
368 |
+
global $wcdn;
|
369 |
+
echo $wcdn->print->get_order()->billing_phone;
|
370 |
+
}
|
371 |
+
}
|
372 |
+
|
373 |
+
/**
|
374 |
+
* Show billing email
|
375 |
+
*/
|
376 |
+
if ( !function_exists( 'wcdn_billing_email' ) ) {
|
377 |
+
function wcdn_billing_email() {
|
378 |
+
global $wcdn;
|
379 |
+
echo $wcdn->print->get_order()->billing_email;
|
380 |
+
}
|
381 |
+
}
|
382 |
+
|
383 |
+
/**
|
384 |
+
* Show billing address
|
385 |
+
*/
|
386 |
+
if ( !function_exists( 'wcdn_billing_address' ) ) {
|
387 |
+
function wcdn_billing_address() {
|
388 |
+
global $wcdn;
|
389 |
+
$address = $wcdn->print->get_order()->get_formatted_billing_address();
|
390 |
+
if( !$address ) {
|
391 |
+
$address = __('N/A', 'woocommerce-delivery-notes');
|
392 |
+
}
|
393 |
+
echo apply_filters( 'wcdn_billing_address', $address );
|
394 |
+
}
|
395 |
+
}
|
396 |
+
|
397 |
+
/**
|
398 |
+
* Show shipping address
|
399 |
+
*/
|
400 |
+
if ( !function_exists( 'wcdn_shipping_address' ) ) {
|
401 |
+
function wcdn_shipping_address() {
|
402 |
+
global $wcdn;
|
403 |
+
$address = $wcdn->print->get_order()->get_formatted_shipping_address();
|
404 |
+
if( !$address ) {
|
405 |
+
$address = __('N/A', 'woocommerce-delivery-notes');
|
406 |
+
}
|
407 |
+
echo apply_filters( 'wcdn_shipping_address', $address );
|
408 |
+
}
|
409 |
+
}
|
410 |
+
|
411 |
+
/**
|
412 |
+
* Show the current date
|
413 |
+
*/
|
414 |
+
if ( !function_exists( 'wcdn_date' ) ) {
|
415 |
+
function wcdn_date() {
|
416 |
+
echo apply_filters( 'wcdn_date', date_i18n( get_option( 'date_format' ) ) );
|
417 |
+
}
|
418 |
+
}
|
419 |
+
|
420 |
+
/**
|
421 |
+
* Show payment method
|
422 |
+
*/
|
423 |
+
if ( !function_exists( 'wcdn_payment_method' ) ) {
|
424 |
+
function wcdn_payment_method() {
|
425 |
+
global $wcdn;
|
426 |
+
echo apply_filters( 'wcdn_payment_method', __( $wcdn->print->get_order()->payment_method_title, 'woocommerce' ) );
|
427 |
+
}
|
428 |
+
}
|
429 |
+
|
430 |
+
/**
|
431 |
+
* Get order
|
432 |
+
*/
|
433 |
+
if ( !function_exists( 'wcdn_get_order' ) ) {
|
434 |
+
function wcdn_get_order( $order_id = null ) {
|
435 |
+
global $wcdn;
|
436 |
+
return $wcdn->print->get_order( $order_id );
|
437 |
+
}
|
438 |
+
}
|
439 |
+
|
440 |
+
/**
|
441 |
+
* Get order custom field
|
442 |
+
*/
|
443 |
+
if ( !function_exists( 'wcdn_get_order_custom_field' ) ) {
|
444 |
+
function wcdn_get_order_custom_field( $field ) {
|
445 |
+
global $wcdn;
|
446 |
+
return $wcdn->print->get_order_field( $field );
|
447 |
+
}
|
448 |
+
}
|
449 |
+
|
450 |
+
/**
|
451 |
+
* Show order number
|
452 |
+
*/
|
453 |
+
if ( !function_exists( 'wcdn_order_number' ) ) {
|
454 |
+
function wcdn_order_number() {
|
455 |
+
global $wcdn;
|
456 |
+
|
457 |
+
// Trim the hash to have a clean number but still
|
458 |
+
// support any filters that were applied before.
|
459 |
+
$order_number = ltrim($wcdn->print->get_order()->get_order_number(), '#');
|
460 |
+
echo $order_number;
|
461 |
+
}
|
462 |
+
}
|
463 |
+
|
464 |
+
/**
|
465 |
+
* Show the order date
|
466 |
+
*/
|
467 |
+
if ( !function_exists( 'wcdn_order_date' ) ) {
|
468 |
+
function wcdn_order_date() {
|
469 |
+
global $wcdn;
|
470 |
+
$order = $wcdn->print->get_order();
|
471 |
+
echo apply_filters( 'wcdn_order_date', date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ) );
|
472 |
+
}
|
473 |
+
}
|
474 |
+
|
475 |
+
/**
|
476 |
+
* Return the order items
|
477 |
+
*/
|
478 |
+
if ( !function_exists( 'wcdn_get_order_items' ) ) {
|
479 |
+
function wcdn_get_order_items() {
|
480 |
+
global $wcdn;
|
481 |
+
return apply_filters( 'wcdn_order_items', $wcdn->print->get_order_items() );
|
482 |
+
}
|
483 |
+
}
|
484 |
+
|
485 |
+
/**
|
486 |
+
* Return the order totals listing
|
487 |
+
*/
|
488 |
+
if ( !function_exists( 'wcdn_get_order_totals' ) ) {
|
489 |
+
function wcdn_get_order_totals() {
|
490 |
+
global $wcdn;
|
491 |
+
|
492 |
+
// get totals and remove the semicolon
|
493 |
+
$totals = apply_filters( 'wcdn_raw_order_totals', $wcdn->print->get_order()->get_order_item_totals() );
|
494 |
+
|
495 |
+
// remove the colon for every label
|
496 |
+
foreach ( $totals as $key => $total ) {
|
497 |
+
$label = $total['label'];
|
498 |
+
$colon = strrpos( $label, ':' );
|
499 |
+
if( $colon !== false ) {
|
500 |
+
$label = substr_replace( $label, '', $colon, 1 );
|
501 |
+
}
|
502 |
+
$totals[$key]['label'] = $label;
|
503 |
+
}
|
504 |
+
|
505 |
+
return apply_filters( 'wcdn_order_totals', $totals );
|
506 |
+
}
|
507 |
+
}
|
508 |
+
|
509 |
+
/**
|
510 |
+
* Return has shipping notes
|
511 |
+
*/
|
512 |
+
if ( !function_exists( 'wcdn_get_shipping_notes' ) ) {
|
513 |
+
function wcdn_get_shipping_notes() {
|
514 |
+
global $wcdn;
|
515 |
+
return wpautop( wptexturize( $wcdn->print->get_order()->customer_note ) );
|
516 |
+
}
|
517 |
+
}
|
518 |
+
|
519 |
+
/**
|
520 |
+
* Show shipping notes
|
521 |
+
*/
|
522 |
+
if ( !function_exists( 'wcdn_shipping_notes' ) ) {
|
523 |
+
function wcdn_shipping_notes() {
|
524 |
+
global $wcdn;
|
525 |
+
echo wcdn_get_shipping_notes();
|
526 |
+
}
|
527 |
+
}
|
528 |
+
|
529 |
+
/**
|
530 |
+
* Return personal notes, season greetings etc.
|
531 |
+
*/
|
532 |
+
if ( !function_exists( 'wcdn_get_personal_notes' ) ) {
|
533 |
+
function wcdn_get_personal_notes() {
|
534 |
+
global $wcdn;
|
535 |
+
return wpautop( wptexturize( $wcdn->settings->get_setting( 'personal_notes' ) ) );
|
536 |
+
}
|
537 |
+
}
|
538 |
+
|
539 |
+
/**
|
540 |
+
* Show personal notes, season greetings etc.
|
541 |
+
*/
|
542 |
+
if ( !function_exists( 'wcdn_personal_notes' ) ) {
|
543 |
+
function wcdn_personal_notes() {
|
544 |
+
global $wcdn;
|
545 |
+
echo wcdn_get_personal_notes();
|
546 |
+
}
|
547 |
+
}
|
548 |
+
|
549 |
+
/**
|
550 |
+
* Return policy for returns
|
551 |
+
*/
|
552 |
+
if ( !function_exists( 'wcdn_get_policies_conditions' ) ) {
|
553 |
+
function wcdn_get_policies_conditions() {
|
554 |
+
global $wcdn;
|
555 |
+
return wpautop( wptexturize( $wcdn->settings->get_setting( 'policies_conditions' ) ) );
|
556 |
+
}
|
557 |
+
}
|
558 |
+
|
559 |
+
/**
|
560 |
+
* Show policy for returns
|
561 |
+
*/
|
562 |
+
if ( !function_exists( 'wcdn_policies_conditions' ) ) {
|
563 |
+
function wcdn_policies_conditions() {
|
564 |
+
global $wcdn;
|
565 |
+
echo wcdn_get_policies_conditions();
|
566 |
+
}
|
567 |
+
}
|
568 |
+
|
569 |
+
/**
|
570 |
+
* Return shop/company footer imprint, copyright etc.
|
571 |
+
*/
|
572 |
+
if ( !function_exists( 'wcdn_get_footer_imprint' ) ) {
|
573 |
+
function wcdn_get_footer_imprint() {
|
574 |
+
global $wcdn;
|
575 |
+
return wpautop( wptexturize( $wcdn->settings->get_setting( 'footer_imprint' ) ) );
|
576 |
+
}
|
577 |
+
}
|
578 |
+
|
579 |
+
/**
|
580 |
+
* Show shop/company footer imprint, copyright etc.
|
581 |
+
*/
|
582 |
+
if ( !function_exists( 'wcdn_footer_imprint' ) ) {
|
583 |
+
function wcdn_footer_imprint() {
|
584 |
+
global $wcdn;
|
585 |
+
echo wcdn_get_footer_imprint();
|
586 |
+
}
|
587 |
+
}
|
588 |
+
|
589 |
+
?>
|