WooCommerce Print Invoice & Delivery Note - Version 4.6.0

Version Description

(22.09.2020) =

  • Fix :- Notice was coming since WooCommerce V4.4.0 which is fixed now.
  • Fix :- Bulk printing function was using old hooks & filters.Have changed them with the new ones.
  • Dev :- Now the Total number of quantity of the products in the row of quantity in invoice will be shown.
  • Dev :- With the help of filter now one can hide the child products in Composite Products.
  • Dev :- Translated the plugin in Greek language. Props to @edeuter for the PR.
Download this release

Release Info

Developer tychesoftwares
Plugin Icon 128x128 WooCommerce Print Invoice & Delivery Note
Version 4.6.0
Comparing to
See all releases

Code changes from version 4.5.5 to 4.6.0

includes/class-wcdn-writepanel.php CHANGED
@@ -38,11 +38,9 @@ if ( ! class_exists( 'WCDN_Writepanel' ) ) {
38
  add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
39
  add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts' ) );
40
  add_action( 'admin_enqueue_scripts', array( $this, 'add_styles' ) );
41
-
42
  add_action( 'add_meta_boxes_shop_order', array( $this, 'add_box' ) );
43
-
44
- add_action( 'admin_footer-edit.php', array( $this, 'add_bulk_actions' ) );
45
- add_action( 'load-edit.php', array( $this, 'load_bulk_actions' ) );
46
  add_action( 'admin_notices', array( $this, 'confirm_bulk_actions' ) );
47
  }
48
 
@@ -115,105 +113,88 @@ if ( ! class_exists( 'WCDN_Writepanel' ) ) {
115
  }
116
 
117
  /**
118
- * Add bulk actions with javascript to the dropdown.
119
- * This is not so pretty but WordPress does not yet
120
- * offer any better solution. The JS code is inline
121
- * because we can't determine the page without
122
- * checking the post_type.
123
- * https://core.trac.wordpress.org/ticket/16031
124
  */
125
- public function add_bulk_actions() {
126
- if ( $this->is_order_edit_page() ) :
127
- ?>
128
- <script type="text/javascript">
129
- jQuery(document).ready(function($) {
130
- <?php foreach ( WCDN_Print::$template_registrations as $template_registration ) : ?>
131
- <?php if ( 'yes' === get_option( 'wcdn_template_type_' . $template_registration['type'] ) && 'order' !== $template_registration['type'] ) : ?>
132
- <?php //phpcs:disable ?>
133
- $('<option>').val('wcdn_print_<?php echo esc_attr( $template_registration['type'] ); ?>').attr('title', '<?php echo esc_attr( $template_registration['type'] ); ?>').text('<?php echo esc_js( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>').appendTo('select[name="action"]');
134
- $('<option>').val('wcdn_print_<?php echo esc_attr( $template_registration['type'] ); ?>').attr('title', '<?php echo esc_attr( $template_registration['type'] ); ?>').text('<?php echo esc_js( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>').appendTo('select[name="action2"]');
135
- <?php //phpcs:enable ?>
136
- <?php endif; ?>
137
- <?php endforeach; ?>
138
- });
139
- </script>
140
- <?php
141
- endif;
142
  }
143
 
144
  /**
145
  * Add bulk print actions to the orders listing
 
 
 
 
146
  */
147
- public function load_bulk_actions() {
148
- if ( $this->is_order_edit_page() ) {
149
- // get the action that should be started.
150
- $wp_list_table = _get_list_table( 'WP_Posts_List_Table' );
151
- $action = $wp_list_table->current_action();
152
-
153
- // stop if there are no post ids.
154
- if ( ! isset( $_REQUEST['post'] ) ) {
155
- return;
156
- }
157
-
158
- // only for specified actions.
159
- foreach ( WCDN_Print::$template_registrations as $template_registration ) {
160
- if ( 'wcdn_print_' . $template_registration['type'] === $action ) {
161
- $template_type = $template_registration['type'];
162
- $report_action = 'printed_' . $template_registration['type'];
163
- break;
164
- }
165
- }
166
- if ( ! isset( $report_action ) ) {
167
- return;
168
- }
169
-
170
- // security check.
171
- check_admin_referer( 'bulk-posts' );
172
 
173
- // get referrer.
174
- if ( ! wp_get_referer() ) {
175
- return;
 
 
 
176
  }
 
 
 
 
177
 
178
- // filter the referer args.
179
- $referer_args = array();
180
- parse_str( wp_parse_url( wp_get_referer(), PHP_URL_QUERY ), $referer_args );
181
 
182
- // set the basic args for the sendback.
183
- $args = array(
184
- 'post_type' => $referer_args['post_type'],
185
- );
186
- if ( isset( $referer_args['post_status'] ) ) {
187
- $args = wp_parse_args( array( 'post_status' => $referer_args['post_status'] ), $args );
188
- }
189
- if ( isset( $referer_args['paged'] ) ) {
190
- $args = wp_parse_args( array( 'paged' => $referer_args['paged'] ), $args );
191
- }
192
- if ( isset( $referer_args['orderby'] ) ) {
193
- $args = wp_parse_args( array( 'orderby' => $referer_args['orderby'] ), $args );
194
- }
195
- if ( isset( $referer_args['order'] ) ) {
196
- $args = wp_parse_args( array( 'orderby' => $referer_args['order'] ), $args );
197
- }
198
 
199
- // do the action.
200
- $post_ids = array_map( 'absint', (array) $_REQUEST['post'] );
201
- $total = count( $post_ids );
202
- $url = wcdn_get_print_link( $post_ids, $template_type );
203
 
204
- // generate more args and the sendback string.
205
- $args = wp_parse_args(
206
- array(
207
- $report_action => true,
208
- 'total' => $total,
209
- 'print_url' => rawurlencode( $url ),
210
- ),
211
- $args
212
- );
213
- $sendback = add_query_arg( $args, '' );
214
- wp_safe_redirect( $sendback );
215
- exit;
216
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  }
218
 
219
  /**
38
  add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
39
  add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts' ) );
40
  add_action( 'admin_enqueue_scripts', array( $this, 'add_styles' ) );
 
41
  add_action( 'add_meta_boxes_shop_order', array( $this, 'add_box' ) );
42
+ add_filter( 'bulk_actions-edit-shop_order', array( $this, 'register_my_bulk_actions' ) );
43
+ add_filter( 'handle_bulk_actions-edit-shop_order', array( $this, 'my_bulk_action_handler' ), 10, 3 );
 
44
  add_action( 'admin_notices', array( $this, 'confirm_bulk_actions' ) );
45
  }
46
 
113
  }
114
 
115
  /**
116
+ * Add bulk actions to the dropdown.
117
+ *
118
+ * @param array $bulk_actions Array of the list in dropdown.
 
 
 
119
  */
120
+ public function register_my_bulk_actions( $bulk_actions ) {
121
+ $bulk_actions['wcdn_print_invoice'] = __( 'Print Invoice', 'woocommerce-delivery-notes' );
122
+ $bulk_actions['wcdn_print_delivery-note'] = __( 'Print Delivery Note', 'woocommerce-delivery-notes' );
123
+ $bulk_actions['wcdn_print_receipt'] = __( 'Print Receipt', 'woocommerce-delivery-notes' );
124
+ return $bulk_actions;
 
 
 
 
 
 
 
 
 
 
 
 
125
  }
126
 
127
  /**
128
  * Add bulk print actions to the orders listing
129
+ *
130
+ * @param string $redirect_to The redirect URL.
131
+ * @param string $doaction The action being taken.
132
+ * @param array $post_ids Array of an IDs.
133
  */
134
+ public function my_bulk_action_handler( $redirect_to, $doaction, $post_ids ) {
135
+ // stop if there are no post ids.
136
+ if ( ! isset( $_REQUEST['post'] ) ) {
137
+ return;
138
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
 
140
+ // only for specified actions.
141
+ foreach ( WCDN_Print::$template_registrations as $template_registration ) {
142
+ if ( 'wcdn_print_' . $template_registration['type'] === $doaction ) {
143
+ $template_type = $template_registration['type'];
144
+ $report_action = 'printed_' . $template_registration['type'];
145
+ break;
146
  }
147
+ }
148
+ if ( ! isset( $report_action ) ) {
149
+ return;
150
+ }
151
 
152
+ // security check.
153
+ check_admin_referer( 'bulk-posts' );
 
154
 
155
+ // get referrer.
156
+ if ( ! wp_get_referer() ) {
157
+ return;
158
+ }
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
+ // filter the referer args.
161
+ $referer_args = array();
162
+ parse_str( wp_parse_url( wp_get_referer(), PHP_URL_QUERY ), $referer_args );
 
163
 
164
+ // set the basic args for the sendback.
165
+ $args = array(
166
+ 'post_type' => $referer_args['post_type'],
167
+ );
168
+ if ( isset( $referer_args['post_status'] ) ) {
169
+ $args = wp_parse_args( array( 'post_status' => $referer_args['post_status'] ), $args );
170
+ }
171
+ if ( isset( $referer_args['paged'] ) ) {
172
+ $args = wp_parse_args( array( 'paged' => $referer_args['paged'] ), $args );
 
 
 
173
  }
174
+ if ( isset( $referer_args['orderby'] ) ) {
175
+ $args = wp_parse_args( array( 'orderby' => $referer_args['orderby'] ), $args );
176
+ }
177
+ if ( isset( $referer_args['order'] ) ) {
178
+ $args = wp_parse_args( array( 'orderby' => $referer_args['order'] ), $args );
179
+ }
180
+
181
+ // do the action.
182
+ $post_ids = array_map( 'absint', (array) $_REQUEST['post'] );
183
+ $total = count( $post_ids );
184
+ $url = wcdn_get_print_link( $post_ids, $template_type );
185
+
186
+ // generate more args and the sendback string.
187
+ $args = wp_parse_args(
188
+ array(
189
+ $report_action => true,
190
+ 'total' => $total,
191
+ 'print_url' => rawurlencode( $url ),
192
+ ),
193
+ $args
194
+ );
195
+ $sendback = add_query_arg( $args, '' );
196
+ wp_safe_redirect( $sendback );
197
+ exit;
198
  }
199
 
200
  /**
languages/woocommerce-delivery-notes-el.mo ADDED
Binary file
languages/woocommerce-delivery-notes-el.po ADDED
@@ -0,0 +1,796 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2018
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Print Invoice & Delivery Notes for WooCommerce\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
7
+ "delivery-notes\n"
8
+ "POT-Creation-Date: 2018-10-19 12:56:49+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2020-05-22 10:14+0000\n"
13
+ "Last-Translator: \n"
14
+ "Language-Team: Ελληνικά\n"
15
+ "Language: el\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Loco https://localise.biz/\n"
18
+ "X-Loco-Version: 2.3.4; wp-5.4.1"
19
+
20
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
21
+ msgid "Invoice"
22
+ msgstr "Τιμολόγιο"
23
+
24
+ #: includes/class-wcdn-print.php:40
25
+ msgid "Invoices"
26
+ msgstr "Τιμολόγια"
27
+
28
+ #: includes/class-wcdn-print.php:41
29
+ msgid "Print Invoice"
30
+ msgstr "Εκτύπωση Τιμολογίου"
31
+
32
+ #: includes/class-wcdn-print.php:42
33
+ msgid "Print Invoices"
34
+ msgstr "Εκτύπωση Τιμολογίων"
35
+
36
+ #: includes/class-wcdn-print.php:43
37
+ msgid "Invoice created."
38
+ msgstr "Το Τιμολόγιο Δημιουργήθηκε"
39
+
40
+ #: includes/class-wcdn-print.php:44
41
+ msgid "Invoices created."
42
+ msgstr "Τα Τιμολόγια Δημιουργήθηκαν"
43
+
44
+ #: includes/class-wcdn-print.php:45
45
+ msgid "Show \"Print Invoice\" button"
46
+ msgstr "Εμφάνιση κουμπίου \"Εκτύπωση Τιμολογίου\""
47
+
48
+ #: includes/class-wcdn-print.php:51
49
+ msgid "Delivery Note"
50
+ msgstr "Δελτίο παράδοσης"
51
+
52
+ #: includes/class-wcdn-print.php:52
53
+ msgid "Delivery Notes"
54
+ msgstr "Σημειώσεις παράδοσης."
55
+
56
+ #: includes/class-wcdn-print.php:53
57
+ msgid "Print Delivery Note"
58
+ msgstr "Εκτύπωση Δελτίου Αποστολής"
59
+
60
+ #: includes/class-wcdn-print.php:54
61
+ msgid "Print Delivery Notes"
62
+ msgstr "Εκτύπωση Δελτίων Αποστολών"
63
+
64
+ #: includes/class-wcdn-print.php:55
65
+ msgid "Delivery Note created."
66
+ msgstr "Η Σημείωση Παράδοσης δημιουργήθηκε."
67
+
68
+ #: includes/class-wcdn-print.php:56
69
+ msgid "Delivery Notes created."
70
+ msgstr "Οι Σημιώσεις Παράδοσης δημιουργήθηκαν"
71
+
72
+ #: includes/class-wcdn-print.php:57
73
+ msgid "Show \"Print Delivery Note\" button"
74
+ msgstr "Εμφάνιση κουμπιού \" Εκτύπωση Σημείωση Παράδοσης \""
75
+
76
+ #: includes/class-wcdn-print.php:63
77
+ msgid "Receipt"
78
+ msgstr "Απόδειξη"
79
+
80
+ #: includes/class-wcdn-print.php:64
81
+ msgid "Receipts"
82
+ msgstr "Αποδείξεις"
83
+
84
+ #: includes/class-wcdn-print.php:65
85
+ msgid "Print Receipt"
86
+ msgstr "Εκτύπωση Απόδειξης"
87
+
88
+ #: includes/class-wcdn-print.php:66
89
+ msgid "Print Receipts"
90
+ msgstr "Εκτύπωση Αποδείξεων"
91
+
92
+ #: includes/class-wcdn-print.php:67
93
+ msgid "Receipt created."
94
+ msgstr "Η Απόδειξη δημιουργήθηκε"
95
+
96
+ #: includes/class-wcdn-print.php:68
97
+ msgid "Receipts created."
98
+ msgstr "Οι αποδείξεις δημιουργήθηκαν"
99
+
100
+ #: includes/class-wcdn-print.php:69
101
+ msgid "Show \"Print Receipt\" button"
102
+ msgstr "Εμφάνιση κουμπιού \"Εκτύπωση Απόδειξης\""
103
+
104
+ #: includes/class-wcdn-print.php:78
105
+ msgid "Order"
106
+ msgstr "Παραγγελία"
107
+
108
+ #: includes/class-wcdn-print.php:79
109
+ msgid "Orders"
110
+ msgstr "Παραγγελίες"
111
+
112
+ #: includes/class-wcdn-print.php:80
113
+ msgid "Print Order"
114
+ msgstr "Εκτύπωση Παραγγελίας"
115
+
116
+ #: includes/class-wcdn-print.php:81
117
+ msgid "Print Orders"
118
+ msgstr "Εκτώπωση Παραγγελιών"
119
+
120
+ #: includes/class-wcdn-print.php:93
121
+ msgid "Default"
122
+ msgstr "Προκαθορισμένο"
123
+
124
+ #: includes/class-wcdn-settings.php:67
125
+ msgid ""
126
+ "Do you really want to reset the counter to zero? This process can't be "
127
+ "undone."
128
+ msgstr ""
129
+ "Θέλετε πραγματικά να μηδενίσετε το μετρητή; Δεν είναι δυνατή η αναίρεση "
130
+ "αυτής της διαδικασίας."
131
+
132
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
133
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
134
+ msgid "Print"
135
+ msgstr "Εκτύπωση"
136
+
137
+ #: includes/class-wcdn-settings.php:106
138
+ msgid "Template"
139
+ msgstr "Πρότυπο"
140
+
141
+ #: includes/class-wcdn-settings.php:113
142
+ msgid "Style"
143
+ msgstr "Στύλ"
144
+
145
+ #: includes/class-wcdn-settings.php:114
146
+ msgid ""
147
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
148
+ "customize it."
149
+ msgstr ""
150
+ "Το προεπιλεγμένο στυλ εκτύπωσης. Διαβάστε τις <a href=\"%1$s\"> Συνήθεις "
151
+ "ερωτήσεις </a> για να μάθετε πώς να το προσαρμόσετε."
152
+
153
+ #: includes/class-wcdn-settings.php:124
154
+ msgid "Shop Logo"
155
+ msgstr "Λογότυπο Καταστήματος "
156
+
157
+ #: includes/class-wcdn-settings.php:130
158
+ msgid ""
159
+ "A shop logo representing your business. When the image is printed, its pixel "
160
+ "density will automatically be eight times higher than the original. This "
161
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
162
+ msgstr ""
163
+ "Το λογότυπο καταστήματος που αντιπροσωπεύει την επιχείρησή σας. Όταν "
164
+ "εκτυπώνεται η εικόνα, η πυκνότητα των εικονοστοιχείων της θα είναι αυτόματα "
165
+ "οκτώ φορές υψηλότερη από την αρχική. Αυτό σημαίνει, 1 τυπωμένη ίντσα θα "
166
+ "αντιστοιχεί σε περίπου 288 pixel στην οθόνη."
167
+
168
+ #: includes/class-wcdn-settings.php:134
169
+ msgid "Shop Name"
170
+ msgstr "Όνομα Καταστήματος"
171
+
172
+ #: includes/class-wcdn-settings.php:140
173
+ msgid ""
174
+ "The shop name. Leave blank to use the default Website or Blog title defined "
175
+ "in WordPress settings. The name will be ignored when a Logo is set."
176
+ msgstr ""
177
+ "Το όνομα του καταστήματος. Αφήστε κενό για να χρησιμοποιήσετε τον "
178
+ "προεπιλεγμένο ιστότοπο ή τον τίτλο ιστολογίου που ορίζεται στις ρυθμίσεις "
179
+ "του WordPress. Το όνομα θα αγνοηθεί όταν έχει οριστεί ένα λογότυπο."
180
+
181
+ #: includes/class-wcdn-settings.php:144
182
+ msgid "Shop Address"
183
+ msgstr "Διεύθυνση καταστήματος"
184
+
185
+ #: includes/class-wcdn-settings.php:145
186
+ msgid "The postal address of the shop or even e-mail or telephone."
187
+ msgstr ""
188
+ "Η ταχυδρομική διεύθυνση του καταστήματος ή ακόμα και e-mail ή τηλέφωνο."
189
+
190
+ #: includes/class-wcdn-settings.php:154
191
+ msgid "Complimentary Close"
192
+ msgstr "Ευχαριστήριο Mήνυμα"
193
+
194
+ #: includes/class-wcdn-settings.php:155
195
+ msgid "Add a personal close, notes or season greetings."
196
+ msgstr ""
197
+ "Προσθέστε ένα προσωπικό μήνυμα κλείσιματος, σημειώσεις ή χαιρετισμούς σεζόν."
198
+
199
+ #: includes/class-wcdn-settings.php:164
200
+ msgid "Policies"
201
+ msgstr "Πολιτικές"
202
+
203
+ #: includes/class-wcdn-settings.php:165
204
+ msgid "Add the shop policies, conditions, etc."
205
+ msgstr "Προσθέστε τις πολιτικές καταστήματος, τους όρους κ.λπ."
206
+
207
+ #: includes/class-wcdn-settings.php:174
208
+ msgid "Footer"
209
+ msgstr "Υποσέλιδο"
210
+
211
+ #: includes/class-wcdn-settings.php:175
212
+ msgid ""
213
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
214
+ msgstr ""
215
+ "Προσθέστε ένα αποτύπωμα στο υποσέλιδο , οδηγίες, σημειώσεις πνευματικών "
216
+ "δικαιωμάτων, e-mail, τηλέφωνο κ.λπ."
217
+
218
+ #: includes/class-wcdn-settings.php:189
219
+ msgid "Pages & Buttons"
220
+ msgstr "Σελίδες & Κουμπία"
221
+
222
+ #: includes/class-wcdn-settings.php:196
223
+ msgid "Print Page Endpoint"
224
+ msgstr "Εκτύπωση Σελίδας Τελικού Σημείου"
225
+
226
+ #: includes/class-wcdn-settings.php:202
227
+ msgid ""
228
+ "The endpoint is appended to the accounts page URL to print the order. It "
229
+ "should be unique."
230
+ msgstr ""
231
+ "Το τελικό σημείο προσαρτάται στη διεύθυνση URL της σελίδας λογαριασμών για "
232
+ "την εκτύπωση της παραγγελίας. Θα πρέπει να είναι μοναδικό."
233
+
234
+ #: includes/class-wcdn-settings.php:206
235
+ #: includes/wcdn-template-functions.php:275
236
+ msgid "Email"
237
+ msgstr "Email"
238
+
239
+ #: includes/class-wcdn-settings.php:207
240
+ msgid "Show print link in customer emails"
241
+ msgstr "Εμφάνιση συνδέσμου εκτύπωσης στο email του πελάτη"
242
+
243
+ #: includes/class-wcdn-settings.php:211
244
+ msgid ""
245
+ "This includes the emails for a new, processing and completed order. On top "
246
+ "of that the customer invoice email also includes the link."
247
+ msgstr ""
248
+ "Αυτό περιλαμβάνει τα μηνύματα ηλεκτρονικού ταχυδρομείου για μια νέα, "
249
+ "επεξεργασμένη και ολοκληρωμένη παραγγελία. Επιπλέον, το email τιμολογίου "
250
+ "πελάτη περιλαμβάνει επίσης τον σύνδεσμο."
251
+
252
+ #: includes/class-wcdn-settings.php:215
253
+ msgid "My Account"
254
+ msgstr "Ο Λογαριασμός μου"
255
+
256
+ #: includes/class-wcdn-settings.php:216
257
+ msgid "Show print button on the \"View Order\" page"
258
+ msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Προβολή παραγγελίας\""
259
+
260
+ #: includes/class-wcdn-settings.php:224
261
+ msgid "Show print buttons on the \"My Account\" page"
262
+ msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Ο Λογαριασμός μου\""
263
+
264
+ #: includes/class-wcdn-settings.php:244
265
+ msgid "Numbering"
266
+ msgstr "Αρίθμηση"
267
+
268
+ #: includes/class-wcdn-settings.php:245
269
+ msgid "Create invoice numbers"
270
+ msgstr "Δημιουργήστε αριθμό τιμολογίων"
271
+
272
+ #: includes/class-wcdn-settings.php:253
273
+ msgid "Next Number"
274
+ msgstr "Επόμενος αριθμός"
275
+
276
+ #: includes/class-wcdn-settings.php:260
277
+ msgid "The next invoice number."
278
+ msgstr "Ο επόμενος αριθμός τιμολογίου."
279
+
280
+ #: includes/class-wcdn-settings.php:264
281
+ msgid "Number Prefix"
282
+ msgstr "Πρόθεμα αριθμού"
283
+
284
+ #: includes/class-wcdn-settings.php:271
285
+ msgid "This text will be prepended to the invoice number."
286
+ msgstr "Αυτό το κείμενο θα προστεθεί στον αριθμό τιμολογίου."
287
+
288
+ #: includes/class-wcdn-settings.php:275
289
+ msgid "Number Suffix"
290
+ msgstr "Επίθημα αριθμού"
291
+
292
+ #: includes/class-wcdn-settings.php:282
293
+ msgid "This text will be appended to the invoice number."
294
+ msgstr "Αυτό το κείμενο θα προσαρτηθεί στον αριθμό τιμολογίου."
295
+
296
+ #: includes/class-wcdn-settings.php:327
297
+ msgid "Admin"
298
+ msgstr "Διαχειριστής"
299
+
300
+ #: includes/class-wcdn-settings.php:330
301
+ msgid ""
302
+ "The print buttons are available on the order listing and on the order detail "
303
+ "screen."
304
+ msgstr ""
305
+ "Τα κουμπιά εκτύπωσης είναι διαθέσιμα στην λίστα παραγγελιών και στην οθόνη "
306
+ "λεπτομερειών παραγγελίας."
307
+
308
+ #: includes/class-wcdn-settings.php:372
309
+ msgid ""
310
+ "This section lets you customise the content. You can preview the <a "
311
+ "href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" "
312
+ "target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" "
313
+ "target=\"%4$s\" class=\"%5$s\">receipt</a> template."
314
+ msgstr ""
315
+ "Αυτή η ενότητα σάς επιτρέπει να προσαρμόσετε το περιεχόμενο. Μπορείτε να "
316
+ "κάνετε προεπισκόπηση των προτύπων <a href=\"%1$s\" target=\"%4$s\" "
317
+ "class=\"%5$s\"> τιμολογίο</a>, <a href = \"% 2 $ s\" target = \" % 4 $ s "
318
+ "\"class =\"% 5 $ s \"> δελτίο παράδοσης </a> ή <a href=\"%3$s\" "
319
+ "target=\"%4$s\" class=\"%5$s\"> απόδειξη < / a>."
320
+
321
+ #: includes/class-wcdn-settings.php:435
322
+ msgid "Select"
323
+ msgstr "Επιλογή"
324
+
325
+ #: includes/class-wcdn-settings.php:439
326
+ msgid "Remove"
327
+ msgstr "Αφαίρεση"
328
+
329
+ #: includes/class-wcdn-theme.php:112
330
+ msgid "Print your order"
331
+ msgstr "Εκτυπώστε την παραγγελια σας"
332
+
333
+ #: includes/class-wcdn-theme.php:119
334
+ msgid "Print:"
335
+ msgstr "Εκτύπωση :"
336
+
337
+ #: includes/class-wcdn-theme.php:119
338
+ msgid "Open print view in browser"
339
+ msgstr "Ανοίξτε την προβολή εκτύπωσης στο πρόγραμμα περιήγησης"
340
+
341
+ #: includes/class-wcdn-writepanel.php:218
342
+ msgid "Print now"
343
+ msgstr "Εκτώπωση Τώρα"
344
+
345
+ #: includes/class-wcdn-writepanel.php:232
346
+ msgid "Order Printing"
347
+ msgstr "Εκτύπωση Παραγγελίας"
348
+
349
+ #: includes/class-wcdn-writepanel.php:259
350
+ msgid "Invoice number: "
351
+ msgstr "Αριθμός Τιμολογίου:"
352
+
353
+ #: includes/class-wcdn-writepanel.php:260
354
+ msgid "Invoice date: "
355
+ msgstr "Ημερομηνία Τιμολογίου:"
356
+
357
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
358
+ msgid "If you have a moment, please let us know why you are deactivating"
359
+ msgstr "Εάν έχετε λίγο χρόνο, ενημερώστε μας γιατί το απενεργοποιείτε"
360
+
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
362
+ msgid "Submit & Deactivate"
363
+ msgstr "Υποβολή & απενεργοποίηση"
364
+
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
366
+ msgid "Deactivate"
367
+ msgstr "Απενεργοποίηση"
368
+
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
370
+ msgid "Cancel"
371
+ msgstr "Ακύρωση"
372
+
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
374
+ msgid "Yes - Deactivate"
375
+ msgstr "Ναι - Απενεργοποίηση"
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
378
+ msgid "I found a better plugin"
379
+ msgstr "Βρήκα ένα καλύτερο πρόσθετο"
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
382
+ msgid "What's the plugin's name?"
383
+ msgstr "Ποιο είναι το όνομα του προσθέτου;"
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
386
+ msgid "I only needed the plugin for a short period"
387
+ msgstr "Χρειάζομαι το πρόσθετο μόνο για μικρό χρονικό διάστημα"
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
390
+ msgid "The plugin is not working"
391
+ msgstr "Το πρόσθετο δεν λειτουργεί"
392
+
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
394
+ msgid "Kindly share what didn't work so we can fix it for future users..."
395
+ msgstr ""
396
+ "Παρακαλούμε πείτε μας τι δεν λειτούργησε, ώστε να το διορθώσουμε για τους "
397
+ "μελλοντικούς χρήστες..."
398
+
399
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
400
+ msgid "The plugin is great, but I need specific feature that you don't support"
401
+ msgstr ""
402
+ "Το πρόσθετο είναι εξαιρετικό , αλλά χρειάζομαι συγκεκριμένη δυνατότητα που "
403
+ "δεν υποστηρίζετε"
404
+
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
406
+ msgid "What feature?"
407
+ msgstr "Τι χαρακτηριστικό;"
408
+
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
410
+ msgid "I don't like to share my information with you"
411
+ msgstr "Δεν επιθυμώ να μοιραστώ τις πληροφορίες μου μαζί σας"
412
+
413
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
414
+ msgctxt ""
415
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
416
+ "the modal box."
417
+ msgid "Other"
418
+ msgstr "Άλλο"
419
+
420
+ #: includes/component/faq-support/ts-faq-support.php:127
421
+ msgid "Frequently Asked Questions for %s"
422
+ msgstr "Συχνές Ερωτήσεις για% s"
423
+
424
+ #: includes/component/faq-support/ts-faq-support.php:176
425
+ msgid "FAQ & Support"
426
+ msgstr "Συχνές ερωτήσεις & υποστήριξη"
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:120
429
+ #: includes/component/tracking-data/ts-tracking.php:180
430
+ msgid "Reset usage tracking"
431
+ msgstr "Επαναφορά παρακολούθησης χρήσης"
432
+
433
+ #: includes/component/tracking-data/ts-tracking.php:122
434
+ msgid ""
435
+ "This will reset your usage tracking settings, causing it to show the opt-in "
436
+ "banner again and not sending any data"
437
+ msgstr ""
438
+ "Αυτό θα επαναφέρει τις ρυθμίσεις παρακολούθησης χρήσης, αναγκάζοντας να "
439
+ "εμφανίσει ξανά το μήνυμα και δεν θα σταθεί κανένα δεδομένο"
440
+
441
+ #: includes/component/tracking-data/ts-tracking.php:225
442
+ msgid "Once in a Week"
443
+ msgstr "Μία φορά την εβδομάδα"
444
+
445
+ #: includes/component/tracking-data/ts-tracking.php:311
446
+ msgid "Allow"
447
+ msgstr "Αποδοχή"
448
+
449
+ #: includes/component/tracking-data/ts-tracking.php:312
450
+ msgid "No thanks"
451
+ msgstr "Οχι ευχαριστώ"
452
+
453
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
454
+ #: includes/wcdn-welcome.php:231
455
+ msgid "Follow %s"
456
+ msgstr "Ακολουθήστε το% s"
457
+
458
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
459
+ #: includes/wcdn-welcome.php:99
460
+ msgid ""
461
+ "Thank you for activating or updating to the latest version of WooCommerce "
462
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
463
+ "well on your way to explore the print functionality for your WooCommerce "
464
+ "orders."
465
+ msgstr ""
466
+ "Σας ευχαριστούμε που ενεργοποιήσατε ή ενημερώσατε την τελευταία έκδοση του "
467
+ "WooCommerce Print Invoice & Delivery Note! Εάν είστε για πρώτη φορά χρήστης ,"
468
+ " καλώς ήλθατε! Είστε έτοιμοι να εξερευνήσετε τη λειτουργικότητα εκτύπωσης "
469
+ "για τις παραγγελίες σας στο WooCommerce."
470
+
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
472
+ #: includes/wcdn-welcome.php:109
473
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
474
+ msgstr "Ξεκινήστε με το WooCommerce Print Invoice & Delivery Note"
475
+
476
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
477
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
479
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
480
+ #: includes/wcdn-welcome.php:148
481
+ msgid "WooCommerce Print Invoice & Delivery Note"
482
+ msgstr "WooCommerce Print Invoice & Delivery Note"
483
+
484
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
485
+ #: includes/wcdn-welcome.php:117
486
+ msgid "Add settings"
487
+ msgstr "Προσθήκη Ρυθμίσεων"
488
+
489
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
490
+ #: includes/wcdn-welcome.php:119
491
+ msgid ""
492
+ "To enable the print functionality for your invoices, delivery notes & "
493
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
494
+ "page. Here you can also setup the Company Logo that will appear on the "
495
+ "printed items, Company Address & other information."
496
+ msgstr ""
497
+ "Για να ενεργοποιήσετε τη λειτουργία εκτύπωσης για τα τιμολόγια, τις "
498
+ "σημειώσεις παράδοσης και τις αποδείξεις, απλώς πρέπει να το ρυθμίσετε στην "
499
+ "ενότητα WooCommerce -> Ρυθμίσεις -> Εκτύπωση σελίδας. Εδώ μπορείτε επίσης να "
500
+ "ρυθμίσετε το Εταιρικό Λογότυπο που θα εμφανίζεται στα έντυπα αντικείμενα, "
501
+ "Διεύθυνση Εταιρείας και άλλες πληροφορίες."
502
+
503
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
504
+ #: includes/wcdn-welcome.php:121
505
+ msgid "Click Here to go to Print page"
506
+ msgstr "Κάντε Κλικ Εδώ για να Μεταβείτε στη Σελίδα Εκτύπωση"
507
+
508
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
509
+ #: includes/wcdn-welcome.php:132
510
+ msgid "Enable Print button for Customers."
511
+ msgstr "Ενεργοποίηση κουμπιού εκτύπωσης για τους πελάτες."
512
+
513
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
514
+ #: includes/wcdn-welcome.php:134
515
+ msgid ""
516
+ "Allow customers to print the WooCommerce order invoice from the customer "
517
+ "notification email, from the My Account page or from the View Order page "
518
+ "under My Account."
519
+ msgstr ""
520
+ "Να επιτρέπεται στους πελάτες να εκτυπώνουν το τιμολόγιο παραγγελίας "
521
+ "WooCommerce από το email ειδοποίησης πελάτη, από τη σελίδα Ο λογαριασμός μου "
522
+ "ή από τη σελίδα Προβολή παραγγελίας στην ενότητα Ο λογαριασμός μου."
523
+
524
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
525
+ #: includes/wcdn-welcome.php:136
526
+ msgid "Click Here to Enable Print button for Customers"
527
+ msgstr ""
528
+ "Κάντε Kλικ Eδώ για να Eνεργοποιήσετε το Kουμπί Eκτύπωσης για τους Πελάτες"
529
+
530
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
531
+ #: includes/wcdn-welcome.php:152
532
+ msgid "Enable Invoice Numbering"
533
+ msgstr "Ενεργοποίηση αρίθμησης τιμολογίων"
534
+
535
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
536
+ msgid ""
537
+ "If you want to change the default invoice numbers & set some numbering "
538
+ "scheme of your own, then you can set it here with a starting invoice number, "
539
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
540
+ msgstr ""
541
+ "Αν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου & να ορίσετε "
542
+ "κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ με έναν "
543
+ "αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για παράδειγμα, θα "
544
+ "μπορούσατε να το ορίσετε ως: TS / 001 / 17-18"
545
+
546
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
547
+ #: includes/wcdn-welcome.php:156
548
+ msgid "Click Here to Enable Invoice Numbering"
549
+ msgstr "Κάντε Kλικ Eδώ για να Eνεργοποιήσετε την Aρίθμηση Tιμολογίων"
550
+
551
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
552
+ #: includes/wcdn-welcome.php:167
553
+ msgid "Getting to Know Tyche Softwares"
554
+ msgstr "Γνωρίστε τα λογισμικά Tyche"
555
+
556
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
557
+ #: includes/wcdn-welcome.php:170
558
+ msgid "Visit the Tyche Softwares Website"
559
+ msgstr "Επισκευθείτε την ιστοσελίδα Tyche Softwares"
560
+
561
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
562
+ #: includes/wcdn-welcome.php:171
563
+ msgid "View all Premium Plugins"
564
+ msgstr "Εμφάνιση όλων των Premium Προσθέτων"
565
+
566
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
567
+ #: includes/wcdn-welcome.php:180
568
+ msgid "Meet the team"
569
+ msgstr "Γνωρίστε την ομάδα"
570
+
571
+ #: includes/component/welcome-page/ts-welcome.php:167
572
+ msgid "Welcome to %s %s"
573
+ msgstr "Καλώς ορίσατε στο% s% s"
574
+
575
+ #: includes/wcdn-all-component.php:118
576
+ msgid ""
577
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
578
+ "make your deliveries more accurate by allowing customers to select their "
579
+ "preferred delivery date & time from Product Delivery Date Pro for "
580
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
581
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
582
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
583
+ "it now!</a></strong>"
584
+ msgstr ""
585
+ "Σας ευχαριστούμε που χρησιμοποιείτε το πρόσθετο WooCommerce Print Invoice & "
586
+ "Delivery Note! Τώρα κάντε τις παραδόσεις σας πιο ακριβείς επιτρέποντας στους "
587
+ "πελάτες να επιλέξουν την προτιμώμενη ημερομηνία και ώρα παράδοσης από το "
588
+ "Product Delivery Date Pro για το WooCommerce.<strong><a target=\"_blank\" "
589
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
590
+ "delivery-date-pro-for-woocommerce/?"
591
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">"
592
+ "Αποκτήστε το τώρα!</a></strong>"
593
+
594
+ #: includes/wcdn-all-component.php:120
595
+ msgid ""
596
+ "Never login to your admin to check your deliveries by syncing the delivery "
597
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
598
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
599
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
600
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
601
+ ">Get it now!</a></strong>"
602
+ msgstr ""
603
+ "Χώρις να χρειάζεται να συνδεθείτε στον λογαριασμο διαχείρηστη σας ελέγξτε "
604
+ "τις παραδόσεις σας συγχρονίζοντας τις ημερομηνίες παράδοσης στο Ημερολόγιο "
605
+ "Google από το Product Delivery Date Pro για το WooCommerce.<strong><a "
606
+ "target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-"
607
+ "plugins/product-delivery-date-pro-for-woocommerce/checkout?"
608
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
609
+ ">Αποκτήστε το τώρα!</a></strong>"
610
+
611
+ #: includes/wcdn-all-component.php:122
612
+ msgid ""
613
+ "You can now view all your deliveries in list view or in calendar view from "
614
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
615
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
616
+ "delivery-date-pro-for-woocommerce/checkout?"
617
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
618
+ ">Get it now!</a></strong>."
619
+ msgstr ""
620
+ "Τώρα μπορείτε να δείτε όλες τις παραδόσεις σας σε προβολή λίστας ή σε "
621
+ "προβολή ημερολογίου από το Product Delivery Date Pro για το WooCommerce. "
622
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
623
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
624
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
625
+ "> Αποκτήστε το τώρα! </a> </strong>."
626
+
627
+ #: includes/wcdn-all-component.php:124
628
+ msgid ""
629
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
630
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
631
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
632
+ "delivery-date-pro-for-woocommerce/checkout?"
633
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
634
+ ">Have it now!</a></strong>."
635
+ msgstr ""
636
+ "Επιτρέψτε στους πελάτες σας να πληρώνουν επιπλέον για παράδοση για "
637
+ "συγκεκριμένες ημερομηνίες/καθημερινές από το Product Delivery Date Pro για "
638
+ "το WooCommerce.<strong><a target=\"_blank\" href= \"https://www."
639
+ "tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-"
640
+ "woocommerce/checkout?"
641
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
642
+ ">Αποκτήστε το τώρα!</a></strong>."
643
+
644
+ #: includes/wcdn-all-component.php:126
645
+ msgid ""
646
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
647
+ "they can reschedule the deliveries for the already placed orders from "
648
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
649
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
650
+ "delivery-date-pro-for-woocommerce/checkout?"
651
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
652
+ ">Have it now!</a></strong>."
653
+ msgstr ""
654
+ "Οι πελάτες σας πλέον μπορούν να επεξεργαστούν την ημερομηνία και ώρα "
655
+ "παράδοσης στο καλάθι και στη σελίδα ολοκλήρωσης αγοράς ή μπορούν να "
656
+ "επαναπρογραμματίσουν τις παραδόσεις για τις παραγγελίες που έχουν ήδη "
657
+ "τοποθετηθεί από το Product Delivery Date Pro για το WooCommerce."
658
+
659
+ #: includes/wcdn-template-functions.php:246
660
+ msgid "Invoice Number"
661
+ msgstr "Αριθμός Τιμολογίου"
662
+
663
+ #: includes/wcdn-template-functions.php:253
664
+ msgid "Invoice Date"
665
+ msgstr "Ημερομηνία Τιμολογίου"
666
+
667
+ #: includes/wcdn-template-functions.php:259
668
+ msgid "Order Number"
669
+ msgstr "Αρ. Παραγγελίας"
670
+
671
+ #: includes/wcdn-template-functions.php:264
672
+ msgid "Order Date"
673
+ msgstr "Ημερομηνία Παραγγελίας"
674
+
675
+ #: includes/wcdn-template-functions.php:269
676
+ msgid "Payment Method"
677
+ msgstr "Μέθοδος Πληρωμής"
678
+
679
+ #: includes/wcdn-template-functions.php:282
680
+ msgid "Telephone"
681
+ msgstr "Τηλέφωνο"
682
+
683
+ #: includes/wcdn-template-functions.php:315
684
+ msgid "SKU:"
685
+ msgstr "SKU:"
686
+
687
+ #: includes/wcdn-template-functions.php:409
688
+ #: includes/wcdn-template-functions.php:413
689
+ msgid "(Includes %s)"
690
+ msgstr "(Includes %s)"
691
+
692
+ #: includes/wcdn-template-functions.php:429
693
+ msgid "Refund"
694
+ msgstr "Επιστροφή χρημάτων"
695
+
696
+ #: includes/wcdn-template-functions.php:441
697
+ msgid "Order Subtotal"
698
+ msgstr "Υποσύνολο Παραγγελίας"
699
+
700
+ #: includes/wcdn-welcome.php:54
701
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
702
+ msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note %s"
703
+
704
+ #: includes/wcdn-welcome.php:55
705
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
706
+ msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note"
707
+
708
+ #: includes/wcdn-welcome.php:154
709
+ msgid ""
710
+ "f you want to change the default invoice numbers & set some numbering scheme "
711
+ "of your own, then you can set it here with a starting invoice number, a "
712
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
713
+ msgstr ""
714
+ "Εάν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου και να "
715
+ "ορίσετε κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ "
716
+ "με έναν αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για "
717
+ "παράδειγμα, θα μπορούσατε να το ορίσετε ως: TS / 001 / 17-18."
718
+
719
+ #: includes/wcdn-welcome.php:186
720
+ msgid "Current Offers"
721
+ msgstr "Τρέχουσες προσφορές"
722
+
723
+ #: templates/print-order/print-content.php:28
724
+ msgid "Billing Address"
725
+ msgstr "Διεύθυνση Χρέωσης"
726
+
727
+ #: templates/print-order/print-content.php:31
728
+ #: templates/print-order/print-content.php:40
729
+ msgid "N/A"
730
+ msgstr "Χ/Α"
731
+
732
+ #: templates/print-order/print-content.php:37
733
+ msgid "Shipping Address"
734
+ msgstr "Διεύθυνση αποστολής"
735
+
736
+ #: templates/print-order/print-content.php:71
737
+ msgid "Product"
738
+ msgstr "Προϊον"
739
+
740
+ #: templates/print-order/print-content.php:72
741
+ msgid "Price"
742
+ msgstr "Τιμή"
743
+
744
+ #: templates/print-order/print-content.php:73
745
+ msgid "Quantity"
746
+ msgstr "Ποσότητα"
747
+
748
+ #: templates/print-order/print-content.php:74
749
+ msgid "Total"
750
+ msgstr "Σύνολο"
751
+
752
+ #: templates/print-order/print-content.php:147
753
+ msgid "Download:"
754
+ msgstr "Κατέβασμα:"
755
+
756
+ #: templates/print-order/print-content.php:148
757
+ msgid "%s Files"
758
+ msgstr "%s Files"
759
+
760
+ #: templates/print-order/print-content.php:202
761
+ msgid "Customer Note"
762
+ msgstr "Σημείωση Πελάτη"
763
+
764
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
765
+ msgid "Cheatin&#8217; huh?"
766
+ msgstr "Είσαι Ζαβολιάρης&#8217; ε;"
767
+
768
+ #: woocommerce-delivery-notes.php:275
769
+ msgid ""
770
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
771
+ "templates are the same. "
772
+ msgstr ""
773
+ "Δεν μπορώ να διακρίνω την διαφορά μεταξύ τιμολογίου, σημειώσεων παράδοσης "
774
+ "και απόδειξης. Τα πρότυπα είναι τα ίδια."
775
+
776
+ #: woocommerce-delivery-notes.php:281
777
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
778
+ msgstr ""
779
+ "Το τιμολόγιο που στάλθηκε μέσω ηλεκτρονικού ταχυδρομίου δεν είναι διαθέσιμο "
780
+ "για απευθείας λήψη σε μορφή PDF."
781
+
782
+ #: woocommerce-delivery-notes.php:287
783
+ msgid "The plugin is not compatible with another plugin."
784
+ msgstr "Το πρόσθετο δεν είναι συμβατό με άλλο πρόσθετο."
785
+
786
+ #: woocommerce-delivery-notes.php:293
787
+ msgid "This plugin is not useful to me."
788
+ msgstr "Αυτό το πρόσθετο δεν είναι μου είναι χρήσιμο."
789
+
790
+ #: woocommerce-delivery-notes.php:351
791
+ msgid "Go to the settings page"
792
+ msgstr "Μεταβείτε στη σελίδα ρυθμίσεων"
793
+
794
+ #: woocommerce-delivery-notes.php:351
795
+ msgid "Settings"
796
+ msgstr "Ρυθμίσεις"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Print Invoice & Delivery Notes for WooCommerce ===
2
 
3
- Contributors: ashokrane, tychesoftwares, rashmim
4
  Donate link: https://www.paypal.me/TycheSoftwares
5
  Tags: packing slips, invoice, pdf invoice, delivery notes, woocommerce print invoice, print, pdf, invoices
6
  Requires at least: 4.0
7
- Tested up to: 5.4
8
  Author URI: https://www.tychesoftwares.com/
9
  Stable tag: trunk
10
  License: GPLv3 or later
@@ -338,6 +338,14 @@ Please [contribute your translation](https://github.com/TycheSoftwares/woocommer
338
 
339
  == Changelog ==
340
 
 
 
 
 
 
 
 
 
341
  = Minimum Requirements: WooCommerce 3.0 =
342
 
343
  = 4.5.5 (12.03.2020) =
1
  === Print Invoice & Delivery Notes for WooCommerce ===
2
 
3
+ Contributors: ashokrane, tychesoftwares, rashmim, shasvat
4
  Donate link: https://www.paypal.me/TycheSoftwares
5
  Tags: packing slips, invoice, pdf invoice, delivery notes, woocommerce print invoice, print, pdf, invoices
6
  Requires at least: 4.0
7
+ Tested up to: 5.5
8
  Author URI: https://www.tychesoftwares.com/
9
  Stable tag: trunk
10
  License: GPLv3 or later
338
 
339
  == Changelog ==
340
 
341
+ = 4.6.0 (22.09.2020) =
342
+
343
+ * Fix :- Notice was coming since WooCommerce V4.4.0 which is fixed now.
344
+ * Fix :- Bulk printing function was using old hooks & filters.Have changed them with the new ones.
345
+ * Dev :- Now the Total number of quantity of the products in the row of quantity in invoice will be shown.
346
+ * Dev :- With the help of filter now one can hide the child products in Composite Products.
347
+ * Dev :- Translated the plugin in Greek language. Props to @edeuter for the PR.
348
+
349
  = Minimum Requirements: WooCommerce 3.0 =
350
 
351
  = 4.5.5 (12.03.2020) =
templates/print-order/print-content.php CHANGED
@@ -107,8 +107,11 @@ if ( ! defined( 'ABSPATH' ) ) {
107
  <?php foreach ( $order->get_items() as $item ) : ?>
108
 
109
  <?php
110
- $product = apply_filters( 'wcdn_order_item_product', $order->get_product_from_item( $item ), $item );
111
 
 
 
 
 
112
  if ( version_compare( get_option( 'woocommerce_version' ), '3.0.0', '>=' ) ) {
113
  $item_meta = new WC_Order_Item_Product( $item['item_meta'], $product );
114
  } else {
@@ -227,7 +230,11 @@ if ( ! defined( 'ABSPATH' ) ) {
227
  <tr>
228
  <td class="total-name"><span><?php echo wp_kses_post( $total['label'] ); ?></span></td>
229
  <td class="total-item-price"></td>
 
 
 
230
  <td class="total-quantity"></td>
 
231
  <td class="total-price"><span><?php echo wp_kses_post( $total['value'] ); ?></span></td>
232
  </tr>
233
  <?php endforeach; ?>
107
  <?php foreach ( $order->get_items() as $item ) : ?>
108
 
109
  <?php
 
110
 
111
+ $product = apply_filters( 'wcdn_order_item_product', $item->get_product(), $item );
112
+ if ( ! $product ) {
113
+ continue;
114
+ }
115
  if ( version_compare( get_option( 'woocommerce_version' ), '3.0.0', '>=' ) ) {
116
  $item_meta = new WC_Order_Item_Product( $item['item_meta'], $product );
117
  } else {
230
  <tr>
231
  <td class="total-name"><span><?php echo wp_kses_post( $total['label'] ); ?></span></td>
232
  <td class="total-item-price"></td>
233
+ <?php if ( 'Total' === $total['label'] ) { ?>
234
+ <td class="total-quantity"><?php echo wp_kses_post( $order->get_item_count() ); ?></td>
235
+ <?php } else { ?>
236
  <td class="total-quantity"></td>
237
+ <?php } ?>
238
  <td class="total-price"><span><?php echo wp_kses_post( $total['value'] ); ?></span></td>
239
  </tr>
240
  <?php endforeach; ?>
woocommerce-delivery-notes.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: Print Invoice & Delivery Notes for WooCommerce
6
  * Plugin URI: https://www.tychesoftwares.com/
7
  * Description: Print Invoices & Delivery Notes for WooCommerce Orders.
8
- * Version: 4.5.5
9
  * Author: Tyche Softwares
10
  * Author URI: https://www.tychesoftwares.com/
11
  * License: GPLv3 or later
@@ -14,8 +14,8 @@
14
  * Domain Path: /languages
15
  * Requires PHP: 5.6
16
  * WC requires at least: 3.0.0
17
- * WC tested up to: 4.0.0
18
- * Tested up to: 5.3.2
19
  *
20
  * Copyright 2019 Tyche Softwares
21
  *
5
  * Plugin Name: Print Invoice & Delivery Notes for WooCommerce
6
  * Plugin URI: https://www.tychesoftwares.com/
7
  * Description: Print Invoices & Delivery Notes for WooCommerce Orders.
8
+ * Version: 4.6.0
9
  * Author: Tyche Softwares
10
  * Author URI: https://www.tychesoftwares.com/
11
  * License: GPLv3 or later
14
  * Domain Path: /languages
15
  * Requires PHP: 5.6
16
  * WC requires at least: 3.0.0
17
+ * WC tested up to: 4.5
18
+ * Tested up to: 5.5
19
  *
20
  * Copyright 2019 Tyche Softwares
21
  *