WooCommerce PDF Invoices - Version 2.0.4

Version Description

  • March 30, 2015 =

  • Added: Option to use WC order number as invoice number

  • Added: Slovenian language file

  • Added: French language file

  • Fixed: Translation invoice

Download this release

Release Info

Developer baaaaas
Plugin Icon 128x128 WooCommerce PDF Invoices
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

admin/classes/woocommerce-pdf-invoices.php CHANGED
@@ -55,6 +55,11 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
55
 
56
  $this->template_settings = $template_settings;
57
 
 
 
 
 
 
58
  /**
59
  * Plugin actions to create, view or delete invoice.
60
  */
@@ -65,11 +70,6 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
65
  */
66
  //add_action( 'init', array( &$this, 'init_ajax_calls' ) );
67
 
68
- /**
69
- * Set textdomain.
70
- */
71
- add_action( 'init', array( &$this, 'init_load_textdomain' ) );
72
-
73
  /**
74
  * Delete invoices from tmp folder.
75
  */
55
 
56
  $this->template_settings = $template_settings;
57
 
58
+ /**
59
+ * Set textdomain.
60
+ */
61
+ add_action( 'init', array( &$this, 'init_load_textdomain' ) );
62
+
63
  /**
64
  * Plugin actions to create, view or delete invoice.
65
  */
70
  */
71
  //add_action( 'init', array( &$this, 'init_ajax_calls' ) );
72
 
 
 
 
 
 
73
  /**
74
  * Delete invoices from tmp folder.
75
  */
admin/classes/wpi-template-settings.php CHANGED
@@ -35,6 +35,7 @@ if ( ! class_exists( 'WPI_Template_Settings' ) ) {
35
  'show_shipping' => 0,
36
  'show_customer_notes' => 0,
37
  'show_sku' => 0,
 
38
  'next_invoice_number' => 1,
39
  'invoice_number_digits' => 3,
40
  'invoice_prefix' => '',
@@ -108,6 +109,7 @@ if ( ! class_exists( 'WPI_Template_Settings' ) ) {
108
  add_settings_field('company_address', __('Company address', $this->textdomain), array(&$this, 'company_address_option'), $this->settings_key, 'section_template');
109
  add_settings_field('company_details', __('Company details', $this->textdomain), array(&$this, 'company_details_option'), $this->settings_key, 'section_template');
110
  add_settings_field('terms', __('Terms & conditions, policies etc.', $this->textdomain), array(&$this, 'terms_option'), $this->settings_key, 'section_template');
 
111
  add_settings_field('next_invoice_number', __('Next invoice number', $this->textdomain), array(&$this, 'next_invoice_number_option'), $this->settings_key, 'section_template');
112
  add_settings_field('invoice_number_digits', __('Number of digits', $this->textdomain), array(&$this, 'invoice_number_digits_option'), $this->settings_key, 'section_template');
113
  add_settings_field('invoice_prefix', __('Invoice number prefix', $this->textdomain), array(&$this, 'invoice_prefix_option'), $this->settings_key, 'section_template');
@@ -248,6 +250,18 @@ if ( ! class_exists( 'WPI_Template_Settings' ) ) {
248
  <?php
249
  }
250
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  /**
252
  *
253
  */
35
  'show_shipping' => 0,
36
  'show_customer_notes' => 0,
37
  'show_sku' => 0,
38
+ 'invoice_number_type' => 'woocommerce_order_number',
39
  'next_invoice_number' => 1,
40
  'invoice_number_digits' => 3,
41
  'invoice_prefix' => '',
109
  add_settings_field('company_address', __('Company address', $this->textdomain), array(&$this, 'company_address_option'), $this->settings_key, 'section_template');
110
  add_settings_field('company_details', __('Company details', $this->textdomain), array(&$this, 'company_details_option'), $this->settings_key, 'section_template');
111
  add_settings_field('terms', __('Terms & conditions, policies etc.', $this->textdomain), array(&$this, 'terms_option'), $this->settings_key, 'section_template');
112
+ add_settings_field('invoice_number_type', __('Invoice number type', $this->textdomain), array(&$this, 'invoice_number_type_option'), $this->settings_key, 'section_template');
113
  add_settings_field('next_invoice_number', __('Next invoice number', $this->textdomain), array(&$this, 'next_invoice_number_option'), $this->settings_key, 'section_template');
114
  add_settings_field('invoice_number_digits', __('Number of digits', $this->textdomain), array(&$this, 'invoice_number_digits_option'), $this->settings_key, 'section_template');
115
  add_settings_field('invoice_prefix', __('Invoice number prefix', $this->textdomain), array(&$this, 'invoice_prefix_option'), $this->settings_key, 'section_template');
250
  <?php
251
  }
252
 
253
+ /**
254
+ * Wich type of invoice number should we use? WooCommerce order number or sequential?
255
+ */
256
+ public function invoice_number_type_option() {
257
+ ?>
258
+ <select id="invoice-number-type-option" name="<?php echo $this->settings_key; ?>[invoice_number_type]">
259
+ <option value="woocommerce_order_number" <?php selected($this->settings['invoice_number_type'], 'woocommerce_order_number'); ?>>WooCommerce order number</option>
260
+ <option value="sequential_number" <?php selected($this->settings['invoice_number_type'], 'sequential_number'); ?>>Sequential number</option>
261
+ </select>
262
+ <?php
263
+ }
264
+
265
  /**
266
  *
267
  */
bootstrap.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  /**
4
- * @version 2.0.3
5
  * @package WooCommerce PDF Invoices
6
  * @author baaaaas
7
  *
@@ -9,7 +9,7 @@
9
  * Plugin Name: WooCommerce PDF Invoices
10
  * Plugin URI:
11
  * Description: Generates customized PDF invoices and automatically attaches it to a WooCommerce email type of your choice. Now sending invoices to your Google Drive, Egnyte, Dropbox or OneDrive and it's all FREE!
12
- * Version: 2.0.3
13
  * Author: baaaaas
14
  * Author URI:
15
  * License: GPL-2.0+
1
  <?php
2
 
3
  /**
4
+ * @version 2.0.4
5
  * @package WooCommerce PDF Invoices
6
  * @author baaaaas
7
  *
9
  * Plugin Name: WooCommerce PDF Invoices
10
  * Plugin URI:
11
  * Description: Generates customized PDF invoices and automatically attaches it to a WooCommerce email type of your choice. Now sending invoices to your Google Drive, Egnyte, Dropbox or OneDrive and it's all FREE!
12
+ * Version: 2.0.4
13
  * Author: baaaaas
14
  * Author URI:
15
  * License: GPL-2.0+
includes/classes/wpi-invoice.php CHANGED
@@ -69,7 +69,7 @@ if ( ! class_exists( 'WPI_Invoice' ) ) {
69
  * @param string $order
70
  * @param $textdomain
71
  */
72
- public function __construct($order, $textdomain) {
73
  $this->order = $order;
74
  $this->textdomain = $textdomain;
75
  $this->general_settings = (array)get_option('general_settings');
@@ -82,7 +82,12 @@ if ( ! class_exists( 'WPI_Invoice' ) ) {
82
  * Gets all the existing invoice data from database or creates new invoice number.
83
  */
84
  private function init() {
85
- $this->number = get_post_meta($this->order->id, '_bewpi_invoice_number', true);
 
 
 
 
 
86
  $this->formatted_number = get_post_meta($this->order->id, '_bewpi_formatted_invoice_number', true);
87
  $this->date = get_post_meta($this->order->id, '_bewpi_invoice_date', true);
88
  }
@@ -207,55 +212,60 @@ if ( ! class_exists( 'WPI_Invoice' ) ) {
207
  // Get the up following invoice number
208
  $next_invoice_number = $this->get_next_invoice_number($last_invoice_number);
209
 
210
- // Create new invoice number and insert into database.
211
- $invoice_number_created = $this->create_invoice_number($next_invoice_number);
212
 
213
- if( $invoice_number_created ) {
214
- // Set the current year as the last invoiced.
215
- $this->template_settings['last_invoiced_year'] = date("Y");
216
 
217
  // Get the new invoice number from db.
218
  $this->number = $this->get_invoice_number();
219
- $this->template_settings['last_invoice_number'] = $this->number;
220
 
221
- $this->formatted_number = $this->format_invoice_number();
222
 
223
- update_option('template_settings', $this->template_settings);
224
 
225
- $this->date = $this->create_formatted_date();
226
 
227
- // Go generate
228
- set_time_limit(0);
229
- include WPI_DIR . "lib/mpdf/mpdf.php";
230
 
231
- $mpdf = new mPDF('', 'A4', 0, '', 17, 17, 20, 50, 0, 0, '');
232
- $mpdf->useOnlyCoreFonts = true; // false is default
233
- $mpdf->SetTitle(($this->template_settings['company_name'] != "") ? $this->template_settings['company_name'] . " - Invoice" : "Invoice");
234
- $mpdf->SetAuthor(($this->template_settings['company_name'] != "") ? $this->template_settings['company_name'] : "");
235
- $mpdf->showWatermarkText = false;
236
- $mpdf->SetDisplayMode('fullpage');
237
- $mpdf->useSubstitutions = false;
238
 
239
- ob_start();
240
 
241
- require_once $this->get_template();
242
 
243
- $html = ob_get_contents();
 
 
244
 
245
- ob_end_clean();
 
 
 
 
 
 
246
 
247
- $footer = $this->get_footer();
248
 
249
- $mpdf->SetHTMLFooter($footer);
250
 
251
- $mpdf->WriteHTML($html);
252
 
253
- $file = WPI_TMP_DIR . $this->formatted_number . ".pdf";
254
 
255
- $mpdf->Output($file, $dest);
 
 
 
 
 
 
 
 
 
 
256
 
257
- return $file;
258
- }
259
  } else {
260
  die('Invoice already exists.');
261
  }
@@ -340,7 +350,7 @@ if ( ! class_exists( 'WPI_Invoice' ) ) {
340
  </td>
341
  <td class="payment">
342
  <p>
343
- <strong>Payment</strong> via <?php echo $this->order->payment_method_title; ?>
344
  </p>
345
  </td>
346
  </tr>
69
  * @param string $order
70
  * @param $textdomain
71
  */
72
+ public function __construct($order, $textdomain = 'be-woocommerce-pdf-invoices') {
73
  $this->order = $order;
74
  $this->textdomain = $textdomain;
75
  $this->general_settings = (array)get_option('general_settings');
82
  * Gets all the existing invoice data from database or creates new invoice number.
83
  */
84
  private function init() {
85
+ if ($this->template_settings['invoice_number_type'] == 'sequential_number') {
86
+ $this->number = get_post_meta($this->order->id, '_bewpi_invoice_number', true);
87
+ } else {
88
+ $this->number = $this->order->id;
89
+ }
90
+
91
  $this->formatted_number = get_post_meta($this->order->id, '_bewpi_formatted_invoice_number', true);
92
  $this->date = get_post_meta($this->order->id, '_bewpi_invoice_date', true);
93
  }
212
  // Get the up following invoice number
213
  $next_invoice_number = $this->get_next_invoice_number($last_invoice_number);
214
 
215
+ if ($this->template_settings['invoice_number_type'] == 'sequential_number') {
 
216
 
217
+ // Create new invoice number and insert into database.
218
+ $this->create_invoice_number($next_invoice_number);
 
219
 
220
  // Get the new invoice number from db.
221
  $this->number = $this->get_invoice_number();
 
222
 
223
+ } else {
224
 
225
+ $this->number = $this->order->id;
226
 
227
+ }
228
 
229
+ $this->template_settings['last_invoice_number'] = $this->number;
 
 
230
 
231
+ $this->formatted_number = $this->format_invoice_number();
 
 
 
 
 
 
232
 
233
+ update_option('template_settings', $this->template_settings);
234
 
235
+ $this->date = $this->create_formatted_date();
236
 
237
+ // Go generate
238
+ set_time_limit(0);
239
+ include WPI_DIR . "lib/mpdf/mpdf.php";
240
 
241
+ $mpdf = new mPDF('', 'A4', 0, '', 17, 17, 20, 50, 0, 0, '');
242
+ $mpdf->useOnlyCoreFonts = true; // false is default
243
+ $mpdf->SetTitle(($this->template_settings['company_name'] != "") ? $this->template_settings['company_name'] . " - Invoice" : "Invoice");
244
+ $mpdf->SetAuthor(($this->template_settings['company_name'] != "") ? $this->template_settings['company_name'] : "");
245
+ $mpdf->showWatermarkText = false;
246
+ $mpdf->SetDisplayMode('fullpage');
247
+ $mpdf->useSubstitutions = false;
248
 
249
+ ob_start();
250
 
251
+ require_once $this->get_template();
252
 
253
+ $html = ob_get_contents();
254
 
255
+ ob_end_clean();
256
 
257
+ $footer = $this->get_footer();
258
+
259
+ $mpdf->SetHTMLFooter($footer);
260
+
261
+ $mpdf->WriteHTML($html);
262
+
263
+ $file = WPI_TMP_DIR . $this->formatted_number . ".pdf";
264
+
265
+ $mpdf->Output($file, $dest);
266
+
267
+ return $file;
268
 
 
 
269
  } else {
270
  die('Invoice already exists.');
271
  }
350
  </td>
351
  <td class="payment">
352
  <p>
353
+ <?php printf( __( '%sPayment%s via', $this->textdomain ), '<b>', '</b>' ); ?> <?php echo $this->order->payment_method_title; ?>
354
  </p>
355
  </td>
356
  </tr>
includes/views/templates/invoice-micro.php CHANGED
@@ -156,7 +156,7 @@
156
  <h1 class="title"><?php _e( 'Invoice', $this->textdomain ); ?></h1>
157
  <span class="number"># <?php echo $this->get_formatted_invoice_number(); ?></span><br/>
158
  <span class="date"><?php echo $this->get_formatted_date(); ?></span>
159
- </td>
160
  <td class="total-amount" bgcolor="<?php echo $this->template_settings['color_theme']; ?>">
161
  <span>
162
  <h1 class="amount"><?php echo wc_price( $this->order->get_total() ); ?></h1>
156
  <h1 class="title"><?php _e( 'Invoice', $this->textdomain ); ?></h1>
157
  <span class="number"># <?php echo $this->get_formatted_invoice_number(); ?></span><br/>
158
  <span class="date"><?php echo $this->get_formatted_date(); ?></span>
159
+ </td>woocommerce-order-items
160
  <td class="total-amount" bgcolor="<?php echo $this->template_settings['color_theme']; ?>">
161
  <span>
162
  <h1 class="amount"><?php echo wc_price( $this->order->get_total() ); ?></h1>
lang/be-woocommerce-pdf-invoices-fr_FR.mo ADDED
Binary file
lang/be-woocommerce-pdf-invoices-fr_FR.po ADDED
@@ -0,0 +1,365 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-03-30 15:38+0100\n"
5
+ "PO-Revision-Date: 2015-03-30 15:38+0100\n"
6
+ "Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
7
+ "Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
8
+ "Language: fr_FR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: admin/classes/woocommerce-pdf-invoices.php:152
23
+ msgid "General"
24
+ msgstr ""
25
+
26
+ #: admin/classes/woocommerce-pdf-invoices.php:153
27
+ #: admin/classes/wpi-template-settings.php:104
28
+ msgid "Template"
29
+ msgstr ""
30
+
31
+ #: admin/classes/woocommerce-pdf-invoices.php:167
32
+ msgid "Invoices"
33
+ msgstr ""
34
+
35
+ #: admin/classes/woocommerce-pdf-invoices.php:262
36
+ msgid "PDF Invoice"
37
+ msgstr ""
38
+
39
+ #: admin/classes/wpi-general-settings.php:74
40
+ msgid "General Settings"
41
+ msgstr ""
42
+
43
+ #: admin/classes/wpi-general-settings.php:75
44
+ msgid "Attach to Email"
45
+ msgstr ""
46
+
47
+ #: admin/classes/wpi-general-settings.php:79
48
+ msgid "Processing order"
49
+ msgstr ""
50
+
51
+ #: admin/classes/wpi-general-settings.php:83
52
+ msgid "Completed order"
53
+ msgstr ""
54
+
55
+ #: admin/classes/wpi-general-settings.php:87
56
+ msgid "Customer invoice"
57
+ msgstr ""
58
+
59
+ #: admin/classes/wpi-general-settings.php:91
60
+ msgid "Attach to New order Email"
61
+ msgstr ""
62
+
63
+ #: admin/classes/wpi-general-settings.php:92
64
+ msgid "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
65
+ msgstr ""
66
+
67
+ #: admin/classes/wpi-general-settings.php:93
68
+ msgid "Email It In account"
69
+ msgstr ""
70
+
71
+ #: admin/classes/wpi-general-settings.php:133
72
+ msgid "For bookkeeping purposes."
73
+ msgstr ""
74
+
75
+ #: admin/classes/wpi-general-settings.php:146
76
+ #, php-format
77
+ msgid "Signup at %s and enter your account below."
78
+ msgstr ""
79
+
80
+ #: admin/classes/wpi-general-settings.php:159
81
+ #, php-format
82
+ msgid "Enter your %s account."
83
+ msgstr ""
84
+
85
+ #: admin/classes/wpi-general-settings.php:184
86
+ msgid "Invalid type of Email."
87
+ msgstr ""
88
+
89
+ #: admin/classes/wpi-general-settings.php:197
90
+ #: admin/classes/wpi-general-settings.php:210
91
+ #: admin/classes/wpi-template-settings.php:630
92
+ msgid "Please don't try to change the values."
93
+ msgstr ""
94
+
95
+ #: admin/classes/wpi-general-settings.php:223
96
+ msgid "Invalid Email address."
97
+ msgstr ""
98
+
99
+ #: admin/classes/wpi-settings.php:92
100
+ msgid "Allowed tags: "
101
+ msgstr ""
102
+
103
+ #: admin/classes/wpi-template-settings.php:103
104
+ msgid "Template Settings"
105
+ msgstr ""
106
+
107
+ #: admin/classes/wpi-template-settings.php:105
108
+ msgid "Color theme"
109
+ msgstr ""
110
+
111
+ #: admin/classes/wpi-template-settings.php:106
112
+ msgid "Company name"
113
+ msgstr ""
114
+
115
+ #: admin/classes/wpi-template-settings.php:107
116
+ msgid "Company logo"
117
+ msgstr ""
118
+
119
+ #: admin/classes/wpi-template-settings.php:108
120
+ msgid "Intro text"
121
+ msgstr ""
122
+
123
+ #: admin/classes/wpi-template-settings.php:109
124
+ msgid "Company address"
125
+ msgstr ""
126
+
127
+ #: admin/classes/wpi-template-settings.php:110
128
+ msgid "Company details"
129
+ msgstr ""
130
+
131
+ #: admin/classes/wpi-template-settings.php:111
132
+ msgid "Terms & conditions, policies etc."
133
+ msgstr ""
134
+
135
+ #: admin/classes/wpi-template-settings.php:112
136
+ msgid "Invoice number type"
137
+ msgstr ""
138
+
139
+ #: admin/classes/wpi-template-settings.php:113
140
+ msgid "Next invoice number"
141
+ msgstr ""
142
+
143
+ #: admin/classes/wpi-template-settings.php:114
144
+ msgid "Number of digits"
145
+ msgstr ""
146
+
147
+ #: admin/classes/wpi-template-settings.php:115
148
+ msgid "Invoice number prefix"
149
+ msgstr ""
150
+
151
+ #: admin/classes/wpi-template-settings.php:116
152
+ msgid "Invoice number suffix"
153
+ msgstr ""
154
+
155
+ #: admin/classes/wpi-template-settings.php:117
156
+ msgid "Invoice number format"
157
+ msgstr ""
158
+
159
+ #: admin/classes/wpi-template-settings.php:118
160
+ msgid "Reset on 1st January"
161
+ msgstr ""
162
+
163
+ #: admin/classes/wpi-template-settings.php:119
164
+ msgid "Invoice date format"
165
+ msgstr ""
166
+
167
+ #: admin/classes/wpi-template-settings.php:120
168
+ msgid "Show SKU"
169
+ msgstr ""
170
+
171
+ #: admin/classes/wpi-template-settings.php:121
172
+ msgid "Show discount"
173
+ msgstr ""
174
+
175
+ #: admin/classes/wpi-template-settings.php:122
176
+ msgid "Show subtotal"
177
+ msgstr ""
178
+
179
+ #: admin/classes/wpi-template-settings.php:123
180
+ msgid "Show tax"
181
+ msgstr ""
182
+
183
+ #: admin/classes/wpi-template-settings.php:124
184
+ msgid "Show shipping"
185
+ msgstr ""
186
+
187
+ #: admin/classes/wpi-template-settings.php:125
188
+ msgid "Show customer notes"
189
+ msgstr "Montrer les notes du client"
190
+
191
+ #: admin/classes/wpi-template-settings.php:163
192
+ msgid "Color theme of the invoice."
193
+ msgstr ""
194
+
195
+ #: admin/classes/wpi-template-settings.php:186
196
+ msgid ""
197
+ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or png."
198
+ msgstr ""
199
+
200
+ #: admin/classes/wpi-template-settings.php:197
201
+ msgid "Remove logo"
202
+ msgstr ""
203
+
204
+ #: admin/classes/wpi-template-settings.php:352
205
+ msgid "Invoice number to use for next invoice."
206
+ msgstr ""
207
+
208
+ #: admin/classes/wpi-template-settings.php:368
209
+ msgid "Number of zero digits."
210
+ msgstr ""
211
+
212
+ #: admin/classes/wpi-template-settings.php:382
213
+ msgid "Prefix text for the invoice number. Not required."
214
+ msgstr ""
215
+
216
+ #: admin/classes/wpi-template-settings.php:396
217
+ msgid "Suffix text for the invoice number. Not required."
218
+ msgstr ""
219
+
220
+ #: admin/classes/wpi-template-settings.php:410
221
+ msgid ""
222
+ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
223
+ msgstr ""
224
+
225
+ #: admin/classes/wpi-template-settings.php:424
226
+ msgid "Reset on the first of January."
227
+ msgstr ""
228
+
229
+ #: admin/classes/wpi-template-settings.php:438
230
+ #, php-format
231
+ msgid "%sFormat%s of the date. Examples: %s or %s."
232
+ msgstr ""
233
+
234
+ #: admin/classes/wpi-template-settings.php:485
235
+ msgid "Invalid template."
236
+ msgstr ""
237
+
238
+ #: admin/classes/wpi-template-settings.php:500
239
+ msgid "Invalid color theme code."
240
+ msgstr ""
241
+
242
+ #: admin/classes/wpi-template-settings.php:513
243
+ msgid "Invalid company name."
244
+ msgstr ""
245
+
246
+ #: admin/classes/wpi-template-settings.php:541
247
+ msgid "Invalid input into one of the textarea's."
248
+ msgstr ""
249
+
250
+ #: admin/classes/wpi-template-settings.php:553
251
+ msgid "Invalid (next) invoice number."
252
+ msgstr ""
253
+
254
+ #: admin/classes/wpi-template-settings.php:574
255
+ msgid "Invalid invoice number digits."
256
+ msgstr ""
257
+
258
+ #: admin/classes/wpi-template-settings.php:596
259
+ msgid "The [number] placeholder is required as invoice number format."
260
+ msgstr ""
261
+
262
+ #: admin/classes/wpi-template-settings.php:603
263
+ msgid "Invalid invoice number format."
264
+ msgstr ""
265
+
266
+ #: admin/classes/wpi-template-settings.php:641
267
+ msgid "Invalid date format."
268
+ msgstr ""
269
+
270
+ #: admin/classes/wpi-template-settings.php:670
271
+ msgid "File is invalid and contains either '..' or './'."
272
+ msgstr ""
273
+
274
+ #: admin/classes/wpi-template-settings.php:677
275
+ msgid "File is invalid and contains ':' after the first character."
276
+ msgstr ""
277
+
278
+ #: admin/classes/wpi-template-settings.php:686
279
+ msgid "Please upload image with extension jpg, jpeg or png."
280
+ msgstr ""
281
+
282
+ #: includes/classes/wpi-invoice.php:340
283
+ msgid "Customer note"
284
+ msgstr "Note du client"
285
+
286
+ #: includes/views/templates/invoice-micro.php:156
287
+ msgid "Invoice"
288
+ msgstr "Facture"
289
+
290
+ #: includes/views/templates/invoice-micro.php:174
291
+ msgid "Description"
292
+ msgstr "Description"
293
+
294
+ #: includes/views/templates/invoice-micro.php:178
295
+ msgid "SKU"
296
+ msgstr "UGS"
297
+
298
+ #: includes/views/templates/invoice-micro.php:182
299
+ msgid "Quantity"
300
+ msgstr "Qté"
301
+
302
+ #: includes/views/templates/invoice-micro.php:183
303
+ msgid "Unit price"
304
+ msgstr "Prix unitaire"
305
+
306
+ #: includes/views/templates/invoice-micro.php:184
307
+ #: includes/views/templates/invoice-micro.php:240
308
+ msgid "Total"
309
+ msgstr "Total"
310
+
311
+ #: includes/views/templates/invoice-micro.php:209
312
+ msgid "Discount"
313
+ msgstr "Réduction"
314
+
315
+ #: includes/views/templates/invoice-micro.php:217
316
+ msgid "Shipping"
317
+ msgstr "Livraison"
318
+
319
+ #: includes/views/templates/invoice-micro.php:225
320
+ msgid "Subtotal"
321
+ msgstr "Sous-total"
322
+
323
+ #: includes/views/templates/invoice-micro.php:233
324
+ msgid "Tax"
325
+ msgstr "TVA"
326
+
327
+ #~ msgid "Signup at %s and enter your account beyond."
328
+ #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
329
+
330
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
331
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
332
+
333
+ #~ msgid "Show invoice"
334
+ #~ msgstr "Toon factuur"
335
+
336
+ #~ msgid "Create invoice"
337
+ #~ msgstr "Maak factuur"
338
+
339
+ #~ msgid "%sFormat%s of the date."
340
+ #~ msgstr "%sFormat%s van de datum."
341
+
342
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
343
+ #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
344
+
345
+ #~ msgid "Choose the color witch fits your company."
346
+ #~ msgstr "Kies uw bedrijfskleur."
347
+
348
+ #~ msgid ""
349
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
350
+ #~ "[number] as placeholders."
351
+ #~ msgstr ""
352
+ #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
353
+ #~ "[number] als aanduidingen."
354
+
355
+ #~ msgid "Text to greet, congratulate or thank the customer. "
356
+ #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
357
+
358
+ #~ msgid "Some text"
359
+ #~ msgstr "De vertaling werkt!!!!"
360
+
361
+ #~ msgid "Text to greet, congratulate or thank the customer."
362
+ #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
363
+
364
+ #~ msgid "Start all over on the first of January."
365
+ #~ msgstr "Opnieuw beginnen op de eerste van januari."
lang/be-woocommerce-pdf-invoices-nl_NL.mo CHANGED
Binary file
lang/be-woocommerce-pdf-invoices-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
- "POT-Creation-Date: 2015-03-24 21:18+0100\n"
5
- "PO-Revision-Date: 2015-03-24 21:19+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -24,7 +24,7 @@ msgid "General"
24
  msgstr "Algemeen"
25
 
26
  #: admin/classes/woocommerce-pdf-invoices.php:153
27
- #: admin/classes/wpi-template-settings.php:109
28
  msgid "Template"
29
  msgstr ""
30
 
@@ -32,7 +32,7 @@ msgstr ""
32
  msgid "Invoices"
33
  msgstr "Facturen"
34
 
35
- #: admin/classes/woocommerce-pdf-invoices.php:260
36
  msgid "PDF Invoice"
37
  msgstr "PDF Factuur"
38
 
@@ -82,17 +82,17 @@ msgstr "Meld je aan op %s en geef je account onderstaand in."
82
  msgid "Enter your %s account."
83
  msgstr "Het %s account."
84
 
85
- #: admin/classes/wpi-general-settings.php:182
86
  msgid "Invalid type of Email."
87
  msgstr "Ongeldig type Email."
88
 
89
- #: admin/classes/wpi-general-settings.php:193
90
- #: admin/classes/wpi-general-settings.php:204
91
- #: admin/classes/wpi-template-settings.php:594
92
  msgid "Please don't try to change the values."
93
  msgstr "Probeer de waardes niet te wijzigen a.u.b."
94
 
95
- #: admin/classes/wpi-general-settings.php:215
96
  msgid "Invalid Email address."
97
  msgstr "Ongeldig Emailadres."
98
 
@@ -100,189 +100,198 @@ msgstr "Ongeldig Emailadres."
100
  msgid "Allowed tags: "
101
  msgstr "Toegestane tags: "
102
 
103
- #: admin/classes/wpi-template-settings.php:108
104
  msgid "Template Settings"
105
  msgstr "Template Opties"
106
 
107
- #: admin/classes/wpi-template-settings.php:110
108
  msgid "Color theme"
109
  msgstr "Kleur thema"
110
 
111
- #: admin/classes/wpi-template-settings.php:111
112
  msgid "Company name"
113
  msgstr "Bedrijfsnaam"
114
 
115
- #: admin/classes/wpi-template-settings.php:112
116
  msgid "Company logo"
117
  msgstr "Bedrijfslogo"
118
 
119
- #: admin/classes/wpi-template-settings.php:113
120
  msgid "Intro text"
121
  msgstr "Introtekst"
122
 
123
- #: admin/classes/wpi-template-settings.php:114
124
  msgid "Company address"
125
  msgstr "Bedrijfsadres"
126
 
127
- #: admin/classes/wpi-template-settings.php:115
128
  msgid "Company details"
129
  msgstr "Algemene bedrijfsgegevens"
130
 
131
- #: admin/classes/wpi-template-settings.php:116
132
  msgid "Terms & conditions, policies etc."
133
  msgstr "Algemene voorwaarden"
134
 
135
- #: admin/classes/wpi-template-settings.php:117
 
 
 
 
136
  msgid "Next invoice number"
137
  msgstr "Eerstvolgende factuurnummer"
138
 
139
- #: admin/classes/wpi-template-settings.php:118
140
  msgid "Number of digits"
141
  msgstr "Aantal cijfers"
142
 
143
- #: admin/classes/wpi-template-settings.php:119
144
  msgid "Invoice number prefix"
145
  msgstr "Factuurnummer voorvoegsel"
146
 
147
- #: admin/classes/wpi-template-settings.php:120
148
  msgid "Invoice number suffix"
149
  msgstr "Factuurnummer achtervoegsel"
150
 
151
- #: admin/classes/wpi-template-settings.php:121
152
  msgid "Invoice number format"
153
  msgstr "Factuurnummer format"
154
 
155
- #: admin/classes/wpi-template-settings.php:122
156
  msgid "Reset on 1st January"
157
  msgstr "Reset op 1 januari"
158
 
159
- #: admin/classes/wpi-template-settings.php:123
160
  msgid "Invoice date format"
161
  msgstr "Factuur datumnotatie"
162
 
163
- #: admin/classes/wpi-template-settings.php:124
164
  msgid "Show SKU"
165
  msgstr "Toon SKU"
166
 
167
- #: admin/classes/wpi-template-settings.php:125
168
  msgid "Show discount"
169
  msgstr "Toon korting"
170
 
171
- #: admin/classes/wpi-template-settings.php:126
172
  msgid "Show subtotal"
173
  msgstr "Toon subtotaal"
174
 
175
- #: admin/classes/wpi-template-settings.php:127
176
  msgid "Show tax"
177
  msgstr "Toon BTW"
178
 
179
- #: admin/classes/wpi-template-settings.php:128
180
  msgid "Show shipping"
181
  msgstr "Toon verzendkosten"
182
 
183
- #: admin/classes/wpi-template-settings.php:129
184
  msgid "Show customer notes"
185
  msgstr "Toon notities klant"
186
 
187
- #: admin/classes/wpi-template-settings.php:167
188
  msgid "Color theme of the invoice."
189
  msgstr "Kleurthema van de factuur."
190
 
191
- #: admin/classes/wpi-template-settings.php:190
192
  msgid ""
193
  "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or png."
194
  msgstr ""
195
  "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
196
  "png is."
197
 
198
- #: admin/classes/wpi-template-settings.php:201
199
  msgid "Remove logo"
200
  msgstr "Verwijder logo"
201
 
202
- #: admin/classes/wpi-template-settings.php:344
203
  msgid "Invoice number to use for next invoice."
204
  msgstr "Factuurnummer te gebruiken voor de volgende factuur."
205
 
206
- #: admin/classes/wpi-template-settings.php:360
207
  msgid "Number of zero digits."
208
  msgstr "Aantal nullen."
209
 
210
- #: admin/classes/wpi-template-settings.php:374
211
  msgid "Prefix text for the invoice number. Not required."
212
  msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
213
 
214
- #: admin/classes/wpi-template-settings.php:388
215
  msgid "Suffix text for the invoice number. Not required."
216
  msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
217
 
218
- #: admin/classes/wpi-template-settings.php:402
219
  msgid ""
220
  "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
221
  msgstr ""
222
  "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
223
  "verplicht."
224
 
225
- #: admin/classes/wpi-template-settings.php:416
226
  msgid "Reset on the first of January."
227
  msgstr "Reset op de eerste van januari."
228
 
229
- #: admin/classes/wpi-template-settings.php:430
230
  #, php-format
231
  msgid "%sFormat%s of the date. Examples: %s or %s."
232
  msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
233
 
234
- #: admin/classes/wpi-template-settings.php:476
235
  msgid "Invalid template."
236
  msgstr "Ongeldige template."
237
 
238
- #: admin/classes/wpi-template-settings.php:489
239
  msgid "Invalid color theme code."
240
  msgstr "Ongeldige kleurcode."
241
 
242
- #: admin/classes/wpi-template-settings.php:500
243
  msgid "Invalid company name."
244
  msgstr "Ongeldige bedsrijfsnaam."
245
 
246
- #: admin/classes/wpi-template-settings.php:518
247
  msgid "Invalid input into one of the textarea's."
248
  msgstr "Ongeldige invoer in een van de textarea's."
249
 
250
- #: admin/classes/wpi-template-settings.php:529
251
  msgid "Invalid (next) invoice number."
252
  msgstr "Ongeldig (eerstvolgend) factuurnummer."
253
 
254
- #: admin/classes/wpi-template-settings.php:547
255
  msgid "Invalid invoice number digits."
256
  msgstr "Ongeldige factuurnummer cijfers."
257
 
258
- #: admin/classes/wpi-template-settings.php:563
259
  msgid "The [number] placeholder is required as invoice number format."
260
  msgstr "De aanduiding [number] is vereist."
261
 
262
- #: admin/classes/wpi-template-settings.php:570
263
  msgid "Invalid invoice number format."
264
  msgstr "Ongeldig factuurnummer format."
265
 
266
- #: admin/classes/wpi-template-settings.php:604
267
  msgid "Invalid date format."
268
  msgstr "Ongeldige datumnotatie."
269
 
270
- #: admin/classes/wpi-template-settings.php:632
271
  msgid "File is invalid and contains either '..' or './'."
272
  msgstr "Bestand is niet valide en bevat ofwel '..' of './'."
273
 
274
- #: admin/classes/wpi-template-settings.php:639
275
  msgid "File is invalid and contains ':' after the first character."
276
  msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
277
 
278
- #: admin/classes/wpi-template-settings.php:648
279
  msgid "Please upload image with extension jpg, jpeg or png."
280
  msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
281
 
282
- #: includes/classes/wpi-invoice.php:327
283
  msgid "Customer note"
284
  msgstr "Opmerking klant"
285
 
 
 
 
 
 
286
  #: includes/views/templates/invoice-micro.php:156
287
  msgid "Invoice"
288
  msgstr "Factuur"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-03-30 16:10+0100\n"
5
+ "PO-Revision-Date: 2015-03-30 16:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
24
  msgstr "Algemeen"
25
 
26
  #: admin/classes/woocommerce-pdf-invoices.php:153
27
+ #: admin/classes/wpi-template-settings.php:104
28
  msgid "Template"
29
  msgstr ""
30
 
32
  msgid "Invoices"
33
  msgstr "Facturen"
34
 
35
+ #: admin/classes/woocommerce-pdf-invoices.php:262
36
  msgid "PDF Invoice"
37
  msgstr "PDF Factuur"
38
 
82
  msgid "Enter your %s account."
83
  msgstr "Het %s account."
84
 
85
+ #: admin/classes/wpi-general-settings.php:184
86
  msgid "Invalid type of Email."
87
  msgstr "Ongeldig type Email."
88
 
89
+ #: admin/classes/wpi-general-settings.php:197
90
+ #: admin/classes/wpi-general-settings.php:210
91
+ #: admin/classes/wpi-template-settings.php:630
92
  msgid "Please don't try to change the values."
93
  msgstr "Probeer de waardes niet te wijzigen a.u.b."
94
 
95
+ #: admin/classes/wpi-general-settings.php:223
96
  msgid "Invalid Email address."
97
  msgstr "Ongeldig Emailadres."
98
 
100
  msgid "Allowed tags: "
101
  msgstr "Toegestane tags: "
102
 
103
+ #: admin/classes/wpi-template-settings.php:103
104
  msgid "Template Settings"
105
  msgstr "Template Opties"
106
 
107
+ #: admin/classes/wpi-template-settings.php:105
108
  msgid "Color theme"
109
  msgstr "Kleur thema"
110
 
111
+ #: admin/classes/wpi-template-settings.php:106
112
  msgid "Company name"
113
  msgstr "Bedrijfsnaam"
114
 
115
+ #: admin/classes/wpi-template-settings.php:107
116
  msgid "Company logo"
117
  msgstr "Bedrijfslogo"
118
 
119
+ #: admin/classes/wpi-template-settings.php:108
120
  msgid "Intro text"
121
  msgstr "Introtekst"
122
 
123
+ #: admin/classes/wpi-template-settings.php:109
124
  msgid "Company address"
125
  msgstr "Bedrijfsadres"
126
 
127
+ #: admin/classes/wpi-template-settings.php:110
128
  msgid "Company details"
129
  msgstr "Algemene bedrijfsgegevens"
130
 
131
+ #: admin/classes/wpi-template-settings.php:111
132
  msgid "Terms & conditions, policies etc."
133
  msgstr "Algemene voorwaarden"
134
 
135
+ #: admin/classes/wpi-template-settings.php:112
136
+ msgid "Invoice number type"
137
+ msgstr "Type factuurnummer"
138
+
139
+ #: admin/classes/wpi-template-settings.php:113
140
  msgid "Next invoice number"
141
  msgstr "Eerstvolgende factuurnummer"
142
 
143
+ #: admin/classes/wpi-template-settings.php:114
144
  msgid "Number of digits"
145
  msgstr "Aantal cijfers"
146
 
147
+ #: admin/classes/wpi-template-settings.php:115
148
  msgid "Invoice number prefix"
149
  msgstr "Factuurnummer voorvoegsel"
150
 
151
+ #: admin/classes/wpi-template-settings.php:116
152
  msgid "Invoice number suffix"
153
  msgstr "Factuurnummer achtervoegsel"
154
 
155
+ #: admin/classes/wpi-template-settings.php:117
156
  msgid "Invoice number format"
157
  msgstr "Factuurnummer format"
158
 
159
+ #: admin/classes/wpi-template-settings.php:118
160
  msgid "Reset on 1st January"
161
  msgstr "Reset op 1 januari"
162
 
163
+ #: admin/classes/wpi-template-settings.php:119
164
  msgid "Invoice date format"
165
  msgstr "Factuur datumnotatie"
166
 
167
+ #: admin/classes/wpi-template-settings.php:120
168
  msgid "Show SKU"
169
  msgstr "Toon SKU"
170
 
171
+ #: admin/classes/wpi-template-settings.php:121
172
  msgid "Show discount"
173
  msgstr "Toon korting"
174
 
175
+ #: admin/classes/wpi-template-settings.php:122
176
  msgid "Show subtotal"
177
  msgstr "Toon subtotaal"
178
 
179
+ #: admin/classes/wpi-template-settings.php:123
180
  msgid "Show tax"
181
  msgstr "Toon BTW"
182
 
183
+ #: admin/classes/wpi-template-settings.php:124
184
  msgid "Show shipping"
185
  msgstr "Toon verzendkosten"
186
 
187
+ #: admin/classes/wpi-template-settings.php:125
188
  msgid "Show customer notes"
189
  msgstr "Toon notities klant"
190
 
191
+ #: admin/classes/wpi-template-settings.php:163
192
  msgid "Color theme of the invoice."
193
  msgstr "Kleurthema van de factuur."
194
 
195
+ #: admin/classes/wpi-template-settings.php:186
196
  msgid ""
197
  "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or png."
198
  msgstr ""
199
  "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
200
  "png is."
201
 
202
+ #: admin/classes/wpi-template-settings.php:197
203
  msgid "Remove logo"
204
  msgstr "Verwijder logo"
205
 
206
+ #: admin/classes/wpi-template-settings.php:352
207
  msgid "Invoice number to use for next invoice."
208
  msgstr "Factuurnummer te gebruiken voor de volgende factuur."
209
 
210
+ #: admin/classes/wpi-template-settings.php:368
211
  msgid "Number of zero digits."
212
  msgstr "Aantal nullen."
213
 
214
+ #: admin/classes/wpi-template-settings.php:382
215
  msgid "Prefix text for the invoice number. Not required."
216
  msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
217
 
218
+ #: admin/classes/wpi-template-settings.php:396
219
  msgid "Suffix text for the invoice number. Not required."
220
  msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
221
 
222
+ #: admin/classes/wpi-template-settings.php:410
223
  msgid ""
224
  "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
225
  msgstr ""
226
  "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
227
  "verplicht."
228
 
229
+ #: admin/classes/wpi-template-settings.php:424
230
  msgid "Reset on the first of January."
231
  msgstr "Reset op de eerste van januari."
232
 
233
+ #: admin/classes/wpi-template-settings.php:438
234
  #, php-format
235
  msgid "%sFormat%s of the date. Examples: %s or %s."
236
  msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
237
 
238
+ #: admin/classes/wpi-template-settings.php:485
239
  msgid "Invalid template."
240
  msgstr "Ongeldige template."
241
 
242
+ #: admin/classes/wpi-template-settings.php:500
243
  msgid "Invalid color theme code."
244
  msgstr "Ongeldige kleurcode."
245
 
246
+ #: admin/classes/wpi-template-settings.php:513
247
  msgid "Invalid company name."
248
  msgstr "Ongeldige bedsrijfsnaam."
249
 
250
+ #: admin/classes/wpi-template-settings.php:541
251
  msgid "Invalid input into one of the textarea's."
252
  msgstr "Ongeldige invoer in een van de textarea's."
253
 
254
+ #: admin/classes/wpi-template-settings.php:553
255
  msgid "Invalid (next) invoice number."
256
  msgstr "Ongeldig (eerstvolgend) factuurnummer."
257
 
258
+ #: admin/classes/wpi-template-settings.php:574
259
  msgid "Invalid invoice number digits."
260
  msgstr "Ongeldige factuurnummer cijfers."
261
 
262
+ #: admin/classes/wpi-template-settings.php:596
263
  msgid "The [number] placeholder is required as invoice number format."
264
  msgstr "De aanduiding [number] is vereist."
265
 
266
+ #: admin/classes/wpi-template-settings.php:603
267
  msgid "Invalid invoice number format."
268
  msgstr "Ongeldig factuurnummer format."
269
 
270
+ #: admin/classes/wpi-template-settings.php:641
271
  msgid "Invalid date format."
272
  msgstr "Ongeldige datumnotatie."
273
 
274
+ #: admin/classes/wpi-template-settings.php:670
275
  msgid "File is invalid and contains either '..' or './'."
276
  msgstr "Bestand is niet valide en bevat ofwel '..' of './'."
277
 
278
+ #: admin/classes/wpi-template-settings.php:677
279
  msgid "File is invalid and contains ':' after the first character."
280
  msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
281
 
282
+ #: admin/classes/wpi-template-settings.php:686
283
  msgid "Please upload image with extension jpg, jpeg or png."
284
  msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
285
 
286
+ #: includes/classes/wpi-invoice.php:340
287
  msgid "Customer note"
288
  msgstr "Opmerking klant"
289
 
290
+ #: includes/classes/wpi-invoice.php:353
291
+ #, php-format
292
+ msgid "%sPayment%s via"
293
+ msgstr "%sBetaling%s met"
294
+
295
  #: includes/views/templates/invoice-micro.php:156
296
  msgid "Invoice"
297
  msgstr "Factuur"
lang/be-woocommerce-pdf-invoices-sl_SI.mo ADDED
Binary file
lang/be-woocommerce-pdf-invoices-sl_SI.po ADDED
@@ -0,0 +1,361 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices\n"
4
+ "POT-Creation-Date: 2015-03-24 21:18+0100\n"
5
+ "PO-Revision-Date: 2015-03-27 11:34+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: nl_NL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.7\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: admin/classes/woocommerce-pdf-invoices.php:152
23
+ msgid "General"
24
+ msgstr ""
25
+
26
+ #: admin/classes/woocommerce-pdf-invoices.php:153
27
+ #: admin/classes/wpi-template-settings.php:109
28
+ msgid "Template"
29
+ msgstr ""
30
+
31
+ #: admin/classes/woocommerce-pdf-invoices.php:167
32
+ msgid "Invoices"
33
+ msgstr "Računi"
34
+
35
+ #: admin/classes/woocommerce-pdf-invoices.php:260
36
+ msgid "PDF Invoice"
37
+ msgstr ""
38
+
39
+ #: admin/classes/wpi-general-settings.php:74
40
+ msgid "General Settings"
41
+ msgstr ""
42
+
43
+ #: admin/classes/wpi-general-settings.php:75
44
+ msgid "Attach to Email"
45
+ msgstr ""
46
+
47
+ #: admin/classes/wpi-general-settings.php:79
48
+ msgid "Processing order"
49
+ msgstr ""
50
+
51
+ #: admin/classes/wpi-general-settings.php:83
52
+ msgid "Completed order"
53
+ msgstr ""
54
+
55
+ #: admin/classes/wpi-general-settings.php:87
56
+ msgid "Customer invoice"
57
+ msgstr ""
58
+
59
+ #: admin/classes/wpi-general-settings.php:91
60
+ msgid "Attach to New order Email"
61
+ msgstr ""
62
+
63
+ #: admin/classes/wpi-general-settings.php:92
64
+ msgid "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
65
+ msgstr ""
66
+
67
+ #: admin/classes/wpi-general-settings.php:93
68
+ msgid "Email It In account"
69
+ msgstr ""
70
+
71
+ #: admin/classes/wpi-general-settings.php:133
72
+ msgid "For bookkeeping purposes."
73
+ msgstr ""
74
+
75
+ #: admin/classes/wpi-general-settings.php:146
76
+ #, php-format
77
+ msgid "Signup at %s and enter your account below."
78
+ msgstr ""
79
+
80
+ #: admin/classes/wpi-general-settings.php:159
81
+ #, php-format
82
+ msgid "Enter your %s account."
83
+ msgstr ""
84
+
85
+ #: admin/classes/wpi-general-settings.php:182
86
+ msgid "Invalid type of Email."
87
+ msgstr ""
88
+
89
+ #: admin/classes/wpi-general-settings.php:193
90
+ #: admin/classes/wpi-general-settings.php:204
91
+ #: admin/classes/wpi-template-settings.php:594
92
+ msgid "Please don't try to change the values."
93
+ msgstr ""
94
+
95
+ #: admin/classes/wpi-general-settings.php:215
96
+ msgid "Invalid Email address."
97
+ msgstr ""
98
+
99
+ #: admin/classes/wpi-settings.php:92
100
+ msgid "Allowed tags: "
101
+ msgstr ""
102
+
103
+ #: admin/classes/wpi-template-settings.php:108
104
+ msgid "Template Settings"
105
+ msgstr ""
106
+
107
+ #: admin/classes/wpi-template-settings.php:110
108
+ msgid "Color theme"
109
+ msgstr ""
110
+
111
+ #: admin/classes/wpi-template-settings.php:111
112
+ msgid "Company name"
113
+ msgstr ""
114
+
115
+ #: admin/classes/wpi-template-settings.php:112
116
+ msgid "Company logo"
117
+ msgstr ""
118
+
119
+ #: admin/classes/wpi-template-settings.php:113
120
+ msgid "Intro text"
121
+ msgstr ""
122
+
123
+ #: admin/classes/wpi-template-settings.php:114
124
+ msgid "Company address"
125
+ msgstr ""
126
+
127
+ #: admin/classes/wpi-template-settings.php:115
128
+ msgid "Company details"
129
+ msgstr ""
130
+
131
+ #: admin/classes/wpi-template-settings.php:116
132
+ msgid "Terms & conditions, policies etc."
133
+ msgstr ""
134
+
135
+ #: admin/classes/wpi-template-settings.php:117
136
+ msgid "Next invoice number"
137
+ msgstr ""
138
+
139
+ #: admin/classes/wpi-template-settings.php:118
140
+ msgid "Number of digits"
141
+ msgstr ""
142
+
143
+ #: admin/classes/wpi-template-settings.php:119
144
+ msgid "Invoice number prefix"
145
+ msgstr ""
146
+
147
+ #: admin/classes/wpi-template-settings.php:120
148
+ msgid "Invoice number suffix"
149
+ msgstr ""
150
+
151
+ #: admin/classes/wpi-template-settings.php:121
152
+ msgid "Invoice number format"
153
+ msgstr ""
154
+
155
+ #: admin/classes/wpi-template-settings.php:122
156
+ msgid "Reset on 1st January"
157
+ msgstr ""
158
+
159
+ #: admin/classes/wpi-template-settings.php:123
160
+ msgid "Invoice date format"
161
+ msgstr ""
162
+
163
+ #: admin/classes/wpi-template-settings.php:124
164
+ msgid "Show SKU"
165
+ msgstr ""
166
+
167
+ #: admin/classes/wpi-template-settings.php:125
168
+ msgid "Show discount"
169
+ msgstr ""
170
+
171
+ #: admin/classes/wpi-template-settings.php:126
172
+ msgid "Show subtotal"
173
+ msgstr ""
174
+
175
+ #: admin/classes/wpi-template-settings.php:127
176
+ msgid "Show tax"
177
+ msgstr ""
178
+
179
+ #: admin/classes/wpi-template-settings.php:128
180
+ msgid "Show shipping"
181
+ msgstr ""
182
+
183
+ #: admin/classes/wpi-template-settings.php:129
184
+ msgid "Show customer notes"
185
+ msgstr ""
186
+
187
+ #: admin/classes/wpi-template-settings.php:167
188
+ msgid "Color theme of the invoice."
189
+ msgstr ""
190
+
191
+ #: admin/classes/wpi-template-settings.php:190
192
+ msgid ""
193
+ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or png."
194
+ msgstr ""
195
+
196
+ #: admin/classes/wpi-template-settings.php:201
197
+ msgid "Remove logo"
198
+ msgstr ""
199
+
200
+ #: admin/classes/wpi-template-settings.php:344
201
+ msgid "Invoice number to use for next invoice."
202
+ msgstr ""
203
+
204
+ #: admin/classes/wpi-template-settings.php:360
205
+ msgid "Number of zero digits."
206
+ msgstr ""
207
+
208
+ #: admin/classes/wpi-template-settings.php:374
209
+ msgid "Prefix text for the invoice number. Not required."
210
+ msgstr ""
211
+
212
+ #: admin/classes/wpi-template-settings.php:388
213
+ msgid "Suffix text for the invoice number. Not required."
214
+ msgstr ""
215
+
216
+ #: admin/classes/wpi-template-settings.php:402
217
+ msgid ""
218
+ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
219
+ msgstr ""
220
+
221
+ #: admin/classes/wpi-template-settings.php:416
222
+ msgid "Reset on the first of January."
223
+ msgstr ""
224
+
225
+ #: admin/classes/wpi-template-settings.php:430
226
+ #, php-format
227
+ msgid "%sFormat%s of the date. Examples: %s or %s."
228
+ msgstr ""
229
+
230
+ #: admin/classes/wpi-template-settings.php:476
231
+ msgid "Invalid template."
232
+ msgstr ""
233
+
234
+ #: admin/classes/wpi-template-settings.php:489
235
+ msgid "Invalid color theme code."
236
+ msgstr ""
237
+
238
+ #: admin/classes/wpi-template-settings.php:500
239
+ msgid "Invalid company name."
240
+ msgstr ""
241
+
242
+ #: admin/classes/wpi-template-settings.php:518
243
+ msgid "Invalid input into one of the textarea's."
244
+ msgstr ""
245
+
246
+ #: admin/classes/wpi-template-settings.php:529
247
+ msgid "Invalid (next) invoice number."
248
+ msgstr ""
249
+
250
+ #: admin/classes/wpi-template-settings.php:547
251
+ msgid "Invalid invoice number digits."
252
+ msgstr ""
253
+
254
+ #: admin/classes/wpi-template-settings.php:563
255
+ msgid "The [number] placeholder is required as invoice number format."
256
+ msgstr ""
257
+
258
+ #: admin/classes/wpi-template-settings.php:570
259
+ msgid "Invalid invoice number format."
260
+ msgstr ""
261
+
262
+ #: admin/classes/wpi-template-settings.php:604
263
+ msgid "Invalid date format."
264
+ msgstr ""
265
+
266
+ #: admin/classes/wpi-template-settings.php:632
267
+ msgid "File is invalid and contains either '..' or './'."
268
+ msgstr ""
269
+
270
+ #: admin/classes/wpi-template-settings.php:639
271
+ msgid "File is invalid and contains ':' after the first character."
272
+ msgstr ""
273
+
274
+ #: admin/classes/wpi-template-settings.php:648
275
+ msgid "Please upload image with extension jpg, jpeg or png."
276
+ msgstr ""
277
+
278
+ #: includes/classes/wpi-invoice.php:327
279
+ msgid "Customer note"
280
+ msgstr "Komentar kupca"
281
+
282
+ #: includes/views/templates/invoice-micro.php:156
283
+ msgid "Invoice"
284
+ msgstr "Račun"
285
+
286
+ #: includes/views/templates/invoice-micro.php:174
287
+ msgid "Description"
288
+ msgstr "Opis"
289
+
290
+ #: includes/views/templates/invoice-micro.php:178
291
+ msgid "SKU"
292
+ msgstr "Koda"
293
+
294
+ #: includes/views/templates/invoice-micro.php:182
295
+ msgid "Quantity"
296
+ msgstr "Količina"
297
+
298
+ #: includes/views/templates/invoice-micro.php:183
299
+ msgid "Unit price"
300
+ msgstr "Cena za kos"
301
+
302
+ #: includes/views/templates/invoice-micro.php:184
303
+ #: includes/views/templates/invoice-micro.php:240
304
+ msgid "Total"
305
+ msgstr "Skupaj"
306
+
307
+ #: includes/views/templates/invoice-micro.php:209
308
+ msgid "Discount"
309
+ msgstr "Popust"
310
+
311
+ #: includes/views/templates/invoice-micro.php:217
312
+ msgid "Shipping"
313
+ msgstr "Poštnina"
314
+
315
+ #: includes/views/templates/invoice-micro.php:225
316
+ msgid "Subtotal"
317
+ msgstr "Skupaj"
318
+
319
+ #: includes/views/templates/invoice-micro.php:233
320
+ msgid "Tax"
321
+ msgstr "DDV"
322
+
323
+ #~ msgid "Signup at %s and enter your account beyond."
324
+ #~ msgstr "Meld je aan op %s en vul je account onderstaand in."
325
+
326
+ #~ msgid "%sFormat%s of the date. Examples: %s or %s"
327
+ #~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s"
328
+
329
+ #~ msgid "Show invoice"
330
+ #~ msgstr "Toon factuur"
331
+
332
+ #~ msgid "Create invoice"
333
+ #~ msgstr "Maak factuur"
334
+
335
+ #~ msgid "%sFormat%s of the date."
336
+ #~ msgstr "%sFormat%s van de datum."
337
+
338
+ #~ msgid "Use [prefix], [suffix] and [number] as placeholders."
339
+ #~ msgstr "Gebruik [suffix], [prefix] en [number] als aanduidingen."
340
+
341
+ #~ msgid "Choose the color witch fits your company."
342
+ #~ msgstr "Kies uw bedrijfskleur."
343
+
344
+ #~ msgid ""
345
+ #~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
346
+ #~ "[number] as placeholders."
347
+ #~ msgstr ""
348
+ #~ "Kies het formaat voor het factuurnummer. Gebruik [prefix], [suffix] en "
349
+ #~ "[number] als aanduidingen."
350
+
351
+ #~ msgid "Text to greet, congratulate or thank the customer. "
352
+ #~ msgstr "Tekst om de klant te groeten, te feliciteren of te bedanken. "
353
+
354
+ #~ msgid "Some text"
355
+ #~ msgstr "De vertaling werkt!!!!"
356
+
357
+ #~ msgid "Text to greet, congratulate or thank the customer."
358
+ #~ msgstr "Tekst om de klant te begroeten, te bedanken of te feliciteren."
359
+
360
+ #~ msgid "Start all over on the first of January."
361
+ #~ msgstr "Opnieuw beginnen op de eerste van januari."
lib/mpdf/ttfontdata/opensansB.cw127.php ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $rangeid=114;
3
+ $prevcid=126;
4
+ $prevwidth=571;
5
+ $interval=false;
6
+ $range=array (
7
+ 32 =>
8
+ array (
9
+ 0 => 260,
10
+ 1 => 286,
11
+ 2 => 472,
12
+ 3 => 646,
13
+ 4 => 571,
14
+ 5 => 901,
15
+ 6 => 750,
16
+ 7 => 266,
17
+ ),
18
+ 40 =>
19
+ array (
20
+ 0 => 339,
21
+ 1 => 339,
22
+ 'interval' => true,
23
+ ),
24
+ 42 =>
25
+ array (
26
+ 0 => 545,
27
+ 1 => 571,
28
+ 2 => 290,
29
+ 3 => 322,
30
+ 4 => 285,
31
+ 5 => 413,
32
+ ),
33
+ 48 =>
34
+ array (
35
+ 0 => 571,
36
+ 1 => 571,
37
+ 'interval' => true,
38
+ 2 => 571,
39
+ 3 => 571,
40
+ 4 => 571,
41
+ 5 => 571,
42
+ 6 => 571,
43
+ 7 => 571,
44
+ 8 => 571,
45
+ 9 => 571,
46
+ ),
47
+ 58 =>
48
+ array (
49
+ 0 => 285,
50
+ 1 => 290,
51
+ ),
52
+ 60 =>
53
+ array (
54
+ 0 => 571,
55
+ 1 => 571,
56
+ 'interval' => true,
57
+ 2 => 571,
58
+ ),
59
+ 63 =>
60
+ array (
61
+ 0 => 477,
62
+ 1 => 897,
63
+ 2 => 690,
64
+ 3 => 672,
65
+ 4 => 637,
66
+ 5 => 740,
67
+ 6 => 560,
68
+ 7 => 549,
69
+ 8 => 724,
70
+ 9 => 765,
71
+ ),
72
+ 73 =>
73
+ array (
74
+ 0 => 331,
75
+ 1 => 331,
76
+ 'interval' => true,
77
+ ),
78
+ 75 =>
79
+ array (
80
+ 0 => 664,
81
+ 1 => 565,
82
+ 2 => 943,
83
+ 3 => 813,
84
+ 4 => 796,
85
+ 5 => 628,
86
+ 6 => 796,
87
+ 7 => 660,
88
+ 8 => 551,
89
+ 9 => 579,
90
+ 10 => 756,
91
+ 11 => 650,
92
+ 12 => 967,
93
+ 13 => 667,
94
+ 14 => 624,
95
+ 15 => 579,
96
+ 16 => 331,
97
+ 17 => 413,
98
+ 18 => 331,
99
+ 19 => 532,
100
+ 20 => 411,
101
+ 21 => 607,
102
+ 22 => 604,
103
+ 23 => 633,
104
+ 24 => 514,
105
+ 25 => 633,
106
+ 26 => 591,
107
+ 27 => 387,
108
+ 28 => 565,
109
+ 29 => 657,
110
+ ),
111
+ 105 =>
112
+ array (
113
+ 0 => 305,
114
+ 1 => 305,
115
+ 'interval' => true,
116
+ ),
117
+ 107 =>
118
+ array (
119
+ 0 => 620,
120
+ 1 => 305,
121
+ 2 => 982,
122
+ 3 => 657,
123
+ 4 => 619,
124
+ ),
125
+ 112 =>
126
+ array (
127
+ 0 => 633,
128
+ 1 => 633,
129
+ 'interval' => true,
130
+ ),
131
+ 114 =>
132
+ array (
133
+ 0 => 454,
134
+ 1 => 497,
135
+ 2 => 434,
136
+ 3 => 657,
137
+ 4 => 569,
138
+ 5 => 856,
139
+ 6 => 578,
140
+ 7 => 569,
141
+ 8 => 488,
142
+ 9 => 394,
143
+ 10 => 551,
144
+ 11 => 394,
145
+ 12 => 571,
146
+ ),
147
+ );
148
+ ?>
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Plugin Name ===
2
  Contributors: baaaaas
3
  Donate link:
4
- Tags: woocommerce, woocommerce pdf invoices, woocommerce pdf invoice, pdf, pdf invoice, pdf invoices, pdf receipt, pdf bill, bill, billing, invoices, invoice, receipt, attach, email, mpdf, generate, completed order, customer invoice, processing order, automatic, automatically, shop invoice, woocommerce order, order, invoice number, number
5
  Requires at least: 3.5
6
  Tested up to: 4.1.1
7
- Stable tag: 2.0.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -67,9 +67,16 @@ The manual installation method involves downloading our plugin and uploading it
67
 
68
  == Changelog ==
69
 
 
 
 
 
 
 
 
70
  = 2.0.3 - March 27, 2015 =
71
 
72
- - Fixed: Suffix and company logo dissapearing
73
 
74
  = 2.0.2 - March 26, 2015 =
75
 
1
  === Plugin Name ===
2
  Contributors: baaaaas
3
  Donate link:
4
+ Tags: woocommerce pdf invoices, invoice, generate, pdf, woocommerce, attachment, email, completed order, customer invoice, processing order, attach, automatic, vat, rate, sequential, number
5
  Requires at least: 3.5
6
  Tested up to: 4.1.1
7
+ Stable tag: 2.0.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
67
 
68
  == Changelog ==
69
 
70
+ = 2.0.4 - March 30, 2015 =
71
+
72
+ - Added: Option to use WC order number as invoice number
73
+ - Added: Slovenian language file
74
+ - Added: French language file
75
+ - Fixed: Translation invoice
76
+
77
  = 2.0.3 - March 27, 2015 =
78
 
79
+ - Fixed: Suffix and company logo disappearing
80
 
81
  = 2.0.2 - March 26, 2015 =
82