Version Description
- Feature: Use [invoice_year] and [invoice_month] placeholders in invoice number prefix/suffix
- Feature: WooCommerce Order Status & Actions Manager emails compatibility
- Feature: Add invoice number to WC REST API
- Fix: Allow positive 'discounts' (price corrections)
- Fix: Discounts rounding
- Translations: Updated Finnish & Portugese & POT
Download this release
Release Info
Developer | pomegranate |
Plugin | WooCommerce PDF Invoices & Packing Slips |
Version | 1.5.27 |
Comparing to | |
See all releases |
Code changes from version 1.5.26 to 1.5.27
- includes/class-wcpdf-export.php +22 -3
- includes/class-wcpdf-settings.php +21 -1
- languages/wpo_wcpdf-fi.mo +0 -0
- languages/wpo_wcpdf-fi.po +460 -176
- languages/wpo_wcpdf-pt_PT.mo +0 -0
- languages/wpo_wcpdf-pt_PT.po +697 -0
- languages/wpo_wcpdf.pot +91 -91
- readme.txt +10 -2
- woocommerce-pdf-invoices-packingslips.php +16 -7
includes/class-wcpdf-export.php
CHANGED
@@ -49,6 +49,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
49 |
|
50 |
add_action( 'wp_ajax_generate_wpo_wcpdf', array($this, 'generate_pdf_ajax' ));
|
51 |
add_filter( 'woocommerce_email_attachments', array( $this, 'attach_pdf_to_email' ), 99, 3);
|
|
|
52 |
|
53 |
// check if an invoice number filter has already been registered, if not, use settings
|
54 |
if ( !has_filter( 'wpo_wcpdf_invoice_number' ) ) {
|
@@ -659,6 +660,18 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
659 |
}
|
660 |
}
|
661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
/**
|
663 |
* Reset invoice data for WooCommerce subscription renewal orders
|
664 |
* https://wordpress.org/support/topic/subscription-renewal-duplicate-invoice-number?replies=6#post-6138110
|
@@ -683,17 +696,23 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
683 |
|
684 |
public function format_invoice_number( $invoice_number, $order_number, $order_id, $order_date ) {
|
685 |
// get format settings
|
686 |
-
$order_year = date_i18n( 'Y', strtotime( $order_date ) );
|
687 |
-
$order_month = date_i18n( 'm', strtotime( $order_date ) );
|
688 |
-
|
689 |
$formats['prefix'] = isset($this->template_settings['invoice_number_formatting_prefix'])?$this->template_settings['invoice_number_formatting_prefix']:'';
|
690 |
$formats['suffix'] = isset($this->template_settings['invoice_number_formatting_suffix'])?$this->template_settings['invoice_number_formatting_suffix']:'';
|
691 |
$formats['padding'] = isset($this->template_settings['invoice_number_formatting_padding'])?$this->template_settings['invoice_number_formatting_padding']:'';
|
692 |
|
693 |
// Replacements
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
foreach ($formats as $key => $value) {
|
695 |
$value = str_replace('[order_year]', $order_year, $value);
|
696 |
$value = str_replace('[order_month]', $order_month, $value);
|
|
|
|
|
697 |
$formats[$key] = $value;
|
698 |
}
|
699 |
|
49 |
|
50 |
add_action( 'wp_ajax_generate_wpo_wcpdf', array($this, 'generate_pdf_ajax' ));
|
51 |
add_filter( 'woocommerce_email_attachments', array( $this, 'attach_pdf_to_email' ), 99, 3);
|
52 |
+
add_filter( 'woocommerce_api_order_response', array( $this, 'woocommerce_api_invoice_numer' ), 10, 2 );
|
53 |
|
54 |
// check if an invoice number filter has already been registered, if not, use settings
|
55 |
if ( !has_filter( 'wpo_wcpdf_invoice_number' ) ) {
|
660 |
}
|
661 |
}
|
662 |
|
663 |
+
/**
|
664 |
+
* Add invoice number to WC REST API
|
665 |
+
*/
|
666 |
+
public function woocommerce_api_invoice_numer ( $data, $order ) {
|
667 |
+
if ( $invoice_number = $this->get_invoice_number( $order->id ) ) {
|
668 |
+
$data['wpo_wcpdf_invoice_number'] = $invoice_number;
|
669 |
+
} else {
|
670 |
+
$data['wpo_wcpdf_invoice_number'] = '';
|
671 |
+
}
|
672 |
+
return $data;
|
673 |
+
}
|
674 |
+
|
675 |
/**
|
676 |
* Reset invoice data for WooCommerce subscription renewal orders
|
677 |
* https://wordpress.org/support/topic/subscription-renewal-duplicate-invoice-number?replies=6#post-6138110
|
696 |
|
697 |
public function format_invoice_number( $invoice_number, $order_number, $order_id, $order_date ) {
|
698 |
// get format settings
|
|
|
|
|
|
|
699 |
$formats['prefix'] = isset($this->template_settings['invoice_number_formatting_prefix'])?$this->template_settings['invoice_number_formatting_prefix']:'';
|
700 |
$formats['suffix'] = isset($this->template_settings['invoice_number_formatting_suffix'])?$this->template_settings['invoice_number_formatting_suffix']:'';
|
701 |
$formats['padding'] = isset($this->template_settings['invoice_number_formatting_padding'])?$this->template_settings['invoice_number_formatting_padding']:'';
|
702 |
|
703 |
// Replacements
|
704 |
+
$order_year = date_i18n( 'Y', strtotime( $order_date ) );
|
705 |
+
$order_month = date_i18n( 'm', strtotime( $order_date ) );
|
706 |
+
$invoice_date = get_post_meta($order_id,'_wcpdf_invoice_date',true);
|
707 |
+
$invoice_date = empty($invoice_date) ? current_time('mysql') : $invoice_date;
|
708 |
+
$invoice_year = date_i18n( 'Y', strtotime( $invoice_date ) );
|
709 |
+
$invoice_month = date_i18n( 'm', strtotime( $invoice_date ) );
|
710 |
+
|
711 |
foreach ($formats as $key => $value) {
|
712 |
$value = str_replace('[order_year]', $order_year, $value);
|
713 |
$value = str_replace('[order_month]', $order_month, $value);
|
714 |
+
$value = str_replace('[invoice_year]', $invoice_year, $value);
|
715 |
+
$value = str_replace('[invoice_month]', $invoice_month, $value);
|
716 |
$formats[$key] = $value;
|
717 |
}
|
718 |
|
includes/class-wcpdf-settings.php
CHANGED
@@ -24,6 +24,9 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
24 |
|
25 |
$this->general_settings = get_option('wpo_wcpdf_general_settings');
|
26 |
$this->template_settings = get_option('wpo_wcpdf_template_settings');
|
|
|
|
|
|
|
27 |
}
|
28 |
|
29 |
public function menu() {
|
@@ -559,7 +562,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
559 |
'prefix' => array(
|
560 |
'title' => __( 'Prefix' , 'wpo_wcpdf' ),
|
561 |
'size' => 20,
|
562 |
-
'description' => __( 'to use the
|
563 |
),
|
564 |
'suffix' => array(
|
565 |
'title' => __( 'Suffix' , 'wpo_wcpdf' ),
|
@@ -807,6 +810,23 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
807 |
return $emails;
|
808 |
}
|
809 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
810 |
/**
|
811 |
* Set default settings.
|
812 |
*/
|
24 |
|
25 |
$this->general_settings = get_option('wpo_wcpdf_general_settings');
|
26 |
$this->template_settings = get_option('wpo_wcpdf_template_settings');
|
27 |
+
|
28 |
+
// WooCommerce Order Status & Actions Manager emails compatibility
|
29 |
+
add_filter( 'wpo_wcpdf_wc_emails', array( $this, 'wc_order_status_actions_emails' ), 10, 1 );
|
30 |
}
|
31 |
|
32 |
public function menu() {
|
562 |
'prefix' => array(
|
563 |
'title' => __( 'Prefix' , 'wpo_wcpdf' ),
|
564 |
'size' => 20,
|
565 |
+
'description' => __( 'to use the invoice year and/or month, use [invoice_year] or [invoice_month] respectively' , 'wpo_wcpdf' ),
|
566 |
),
|
567 |
'suffix' => array(
|
568 |
'title' => __( 'Suffix' , 'wpo_wcpdf' ),
|
810 |
return $emails;
|
811 |
}
|
812 |
|
813 |
+
/**
|
814 |
+
* WooCommerce Order Status & Actions Manager emails compatibility
|
815 |
+
*/
|
816 |
+
public function wc_order_status_actions_emails ( $emails ) {
|
817 |
+
// check if WC_Custom_Status class is loaded!
|
818 |
+
if (class_exists('WC_Custom_Status')) {
|
819 |
+
// get list of custom statuses from WooCommerce Custom Order Status & Actions
|
820 |
+
// status slug => status name
|
821 |
+
$custom_statuses = WC_Custom_Status::get_status_list_names();
|
822 |
+
// append _email to slug (=email_id) and add to emails list
|
823 |
+
foreach ($custom_statuses as $status_slug => $status_name) {
|
824 |
+
$emails[$status_slug.'_email'] = $status_name;
|
825 |
+
}
|
826 |
+
}
|
827 |
+
return $emails;
|
828 |
+
}
|
829 |
+
|
830 |
/**
|
831 |
* Set default settings.
|
832 |
*/
|
languages/wpo_wcpdf-fi.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-fi.po
CHANGED
@@ -1,127 +1,106 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Contrast Digital Oy <hello@contrast.fi>\n"
|
8 |
"Language: fi_FI\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.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: includes/class-wcpdf-export.php:
|
20 |
-
#: includes/class-wcpdf-export.php:
|
21 |
-
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
|
24 |
|
|
|
|
|
|
|
|
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
-
#: includes/class-wcpdf-export.php:
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "lasku"
|
30 |
msgstr[1] "laskut"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
-
#: includes/class-wcpdf-export.php:
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "lähetyslista"
|
37 |
msgstr[1] "lähetyslistat"
|
38 |
|
39 |
-
#: includes/class-wcpdf-settings.php:
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF-laskut"
|
44 |
|
45 |
-
#: includes/class-wcpdf-settings.php:
|
46 |
msgid "Settings"
|
47 |
msgstr "Asetukset"
|
48 |
|
49 |
-
#: includes/class-wcpdf-settings.php:
|
50 |
msgid "General"
|
51 |
msgstr "Yleiset"
|
52 |
|
53 |
-
#: includes/class-wcpdf-settings.php:
|
54 |
msgid "Template"
|
55 |
msgstr "Sivupohja"
|
56 |
|
57 |
-
#: includes/class-wcpdf-settings.php:
|
58 |
-
msgid "WooCommerce PDF Invoices"
|
59 |
-
msgstr "WooCommerce PDF-laskut"
|
60 |
-
|
61 |
-
#: includes/class-wcpdf-settings.php:98
|
62 |
msgid "Status"
|
63 |
msgstr "Tila"
|
64 |
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
66 |
-
|
67 |
-
|
68 |
-
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
-
"extension."
|
70 |
-
msgstr ""
|
71 |
-
"Lataa kaikki laskut automaattisesti Dropbox-tiliisi!<br/>Tutustu %s -"
|
72 |
-
"lisäosaan."
|
73 |
-
|
74 |
-
#: includes/class-wcpdf-settings.php:119
|
75 |
-
#, php-format
|
76 |
-
msgid ""
|
77 |
-
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
78 |
-
"Packing Slips templates at %s."
|
79 |
-
msgstr ""
|
80 |
-
"Etsitkö edistyneempiä sivupohjia? Tutustu Premium PDF Invoice & Packing "
|
81 |
-
"Slips -sivupohjiin osoitteessa %s."
|
82 |
-
|
83 |
-
#: includes/class-wcpdf-settings.php:120
|
84 |
-
#, php-format
|
85 |
-
msgid "For custom templates, contact us at %s."
|
86 |
-
msgstr "Haluatko räätälöidyt sivupohjat, ota yhteyttä meihin osoitteessa %s."
|
87 |
|
88 |
-
#: includes/class-wcpdf-settings.php:
|
89 |
msgid "General settings"
|
90 |
msgstr "Yleiset asetukset"
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "How do you want to view the PDF?"
|
94 |
msgstr "Miten haluat esittää PDF-tiedoston?"
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Download the PDF"
|
98 |
msgstr "Lataa PDF-tiedosto"
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
101 |
msgid "Open the PDF in a new browser tab/window"
|
102 |
msgstr "Avaa PDF-tiedosto uudessa selainikkunassa/välilehdellä"
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
-
msgid "Attach invoice to:"
|
106 |
-
msgstr "Liitä lasku:"
|
107 |
-
|
108 |
-
#: includes/class-wcpdf-settings.php:209
|
109 |
msgid "Admin New Order email"
|
110 |
msgstr "Ylläpitäjän ‘Uusi tilaus’-viesti"
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Customer Processing Order email"
|
114 |
msgstr "Asiakkaan ‘Tilaus on käsittelyssä’-sähköposti"
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Customer Completed Order email"
|
118 |
msgstr "Asiakkaan ‘Tilaus valmis’-sähköposti"
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Customer Invoice email"
|
122 |
msgstr "Asiakkaan ‘Lasku’-sähköposti"
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -132,92 +111,141 @@ msgstr ""
|
|
132 |
"tarkista tiedosto-oikeudet tälle kensiolle. Ilman kirjoitusoikeutta tämä "
|
133 |
"lisäosa ei pysty lähettämään laskuja sähköpostilla."
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
msgid "Enable invoice number column in the orders list"
|
137 |
msgstr "Aktivoi laskun numerot sarake Tilaukset-listalla."
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "PDF-sivupohjan asetukset"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Valitse sivupohja"
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
148 |
#, php-format
|
149 |
msgid ""
|
150 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
151 |
-
"<code>%s</code> to customize them"
|
152 |
msgstr ""
|
153 |
-
"Haluatko käyttää omaa
|
154 |
-
"
|
155 |
|
156 |
-
#: includes/class-wcpdf-settings.php:
|
157 |
msgid "Paper size"
|
158 |
msgstr "Paperin koko"
|
159 |
|
160 |
-
#: includes/class-wcpdf-settings.php:
|
161 |
msgid "A4"
|
162 |
msgstr "A4"
|
163 |
|
164 |
-
#: includes/class-wcpdf-settings.php:
|
165 |
msgid "Letter"
|
166 |
msgstr "Kirje"
|
167 |
|
168 |
-
#: includes/class-wcpdf-settings.php:
|
169 |
msgid "Shop header/logo"
|
170 |
msgstr "Kaupan logo"
|
171 |
|
172 |
-
#: includes/class-wcpdf-settings.php:
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
msgstr "Valitse tai lataa laskun logo"
|
175 |
|
176 |
-
#: includes/class-wcpdf-settings.php:
|
177 |
msgid "Set image"
|
178 |
msgstr "Aseta kuva"
|
179 |
|
180 |
-
#: includes/class-wcpdf-settings.php:
|
181 |
msgid "Remove image"
|
182 |
msgstr "Poista kuva"
|
183 |
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Kaupan nimi"
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Kaupan osoite"
|
191 |
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
194 |
msgstr "Alapalkki: ehdot, periaatteet jne…"
|
195 |
|
196 |
-
#: includes/class-wcpdf-settings.php:
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
msgstr "WooCommerce tilausnumero"
|
203 |
|
204 |
-
#: includes/class-wcpdf-settings.php:
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#: includes/class-wcpdf-settings.php:
|
209 |
msgid ""
|
210 |
-
"
|
211 |
-
"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
|
216 |
-
#: includes/class-wcpdf-settings.php:
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
msgstr "Seuraavan laskun numero (ilman etu/takaliitteitä tms.)"
|
219 |
|
220 |
-
#: includes/class-wcpdf-settings.php:
|
221 |
msgid ""
|
222 |
"This is the number that will be used on the next invoice that is created. By "
|
223 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -232,15 +260,15 @@ msgstr ""
|
|
232 |
"asetat sen alemmaksi kuin ylin (PDF) laskunumero, saattaa esiintyä kaksi "
|
233 |
"identtistä laskunnumeroa. Suosittelemme, että asetukseen ei kosketa."
|
234 |
|
235 |
-
#: includes/class-wcpdf-settings.php:
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Laskun numeron muoto"
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Prefix"
|
241 |
msgstr "Etuliite"
|
242 |
|
243 |
-
#: includes/class-wcpdf-settings.php:
|
244 |
msgid ""
|
245 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
246 |
"respectively"
|
@@ -248,19 +276,19 @@ msgstr ""
|
|
248 |
"käyttääksesi vuotta ja/tai kuukautta, käytä [order_year] tai [order_month] "
|
249 |
"tarvittaessa"
|
250 |
|
251 |
-
#: includes/class-wcpdf-settings.php:
|
252 |
msgid "Suffix"
|
253 |
msgstr "Takaliite"
|
254 |
|
255 |
-
#: includes/class-wcpdf-settings.php:
|
256 |
msgid "Padding"
|
257 |
msgstr "Padding"
|
258 |
|
259 |
-
#: includes/class-wcpdf-settings.php:
|
260 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
261 |
msgstr "syötä lukujen määrä tähän - syötä 6 näyttääksesi 42 seuraavasti 000042"
|
262 |
|
263 |
-
#: includes/class-wcpdf-settings.php:
|
264 |
msgid ""
|
265 |
"note: if you have already created a custom invoice number format with a "
|
266 |
"filter, the above settings will be ignored"
|
@@ -268,51 +296,110 @@ msgstr ""
|
|
268 |
"huomio: jos olet jo luonut räätälöidyn laskun numeron muodon filtterillä, "
|
269 |
"yllä olevat asetukset ohitetaan"
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
-
|
277 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
-
msgid "
|
281 |
-
|
|
|
|
|
|
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "Extra template fields"
|
285 |
msgstr "Lisäkentät"
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid "Extra field 1"
|
289 |
msgstr "Lisäkenttä 1"
|
290 |
|
291 |
-
#: includes/class-wcpdf-settings.php:
|
292 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
293 |
msgstr "Tämä on alapalkin sarake 1 <i>Modern (Premium)</i> -sivupohjassa."
|
294 |
|
295 |
-
#: includes/class-wcpdf-settings.php:
|
296 |
msgid "Extra field 2"
|
297 |
msgstr "Lisäkenttä 2"
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
301 |
msgstr "Tämä on alapalkin sarake 2 <i>Modern (Premium)</i> -sivupohjassa."
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "Extra field 3"
|
305 |
msgstr "Lisäkenttä 3"
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
309 |
msgstr "Tämä on alapalkin sarake 3 <i>Modern (Premium)</i> -sivupohjassa."
|
310 |
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Image resolution"
|
313 |
msgstr "Kuvan resoluutio"
|
314 |
|
315 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
msgid ""
|
317 |
"These are used for the (optional) footer columns in the <em>Modern "
|
318 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -322,115 +409,252 @@ msgstr ""
|
|
322 |
"sivupohjassa, mutta niitä voidaan myös käyttää muissa elementeissä omissa "
|
323 |
"sivupohjissasi."
|
324 |
|
325 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
msgid "Invoice Number"
|
327 |
msgstr "Laskun numero"
|
328 |
|
329 |
-
#: includes/class-wcpdf-writepanels.php:
|
330 |
msgid "Download invoice (PDF)"
|
331 |
msgstr "Lataa lasku (PDF)"
|
332 |
|
333 |
-
#: includes/class-wcpdf-writepanels.php:
|
334 |
msgid "Create PDF"
|
335 |
msgstr "Luo PDF"
|
336 |
|
337 |
-
#: includes/class-wcpdf-writepanels.php:
|
338 |
-
msgid "PDF
|
339 |
-
msgstr "PDF
|
340 |
-
|
341 |
-
#: includes/class-wcpdf-writepanels.php:161
|
342 |
-
msgid "PDF Packing Slip"
|
343 |
-
msgstr "PDF-lähetyslista"
|
344 |
-
|
345 |
-
#: includes/class-wcpdf-writepanels.php:178
|
346 |
-
#: includes/class-wcpdf-writepanels.php:179
|
347 |
-
msgid "PDF Packing Slips"
|
348 |
-
msgstr "PDF-lähetyslistat"
|
349 |
|
350 |
-
#: includes/class-wcpdf-writepanels.php:
|
351 |
-
msgid "
|
352 |
-
msgstr "
|
353 |
|
354 |
-
#: includes/class-wcpdf-writepanels.php:
|
355 |
-
#: templates/pdf/Simple/invoice.php:
|
356 |
msgid "Invoice Date:"
|
357 |
msgstr "Laskun Päiväys:"
|
358 |
|
359 |
-
#: includes/class-wcpdf-writepanels.php:
|
360 |
msgid "h"
|
361 |
msgstr "t"
|
362 |
|
363 |
-
#: includes/class-wcpdf-writepanels.php:
|
364 |
msgid "m"
|
365 |
msgstr "m"
|
366 |
|
367 |
-
#:
|
368 |
-
|
369 |
-
|
370 |
-
msgstr "Lasku"
|
371 |
|
372 |
-
#:
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
#: templates/pdf/Simple/invoice.php:40
|
379 |
-
|
380 |
-
|
381 |
-
msgstr "Tilauksen päiväys:"
|
382 |
|
383 |
-
#: templates/pdf/Simple/invoice.php:
|
384 |
msgid "Invoice Number:"
|
385 |
msgstr "Laskun numero:"
|
386 |
|
387 |
-
#: templates/pdf/Simple/invoice.php:
|
388 |
-
#: templates/pdf/Simple/packing-slip.php:
|
389 |
msgid "Order Number:"
|
390 |
msgstr "Tilauksen numero:"
|
391 |
|
392 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
393 |
msgid "Payment Method:"
|
394 |
msgstr "Maksutapa:"
|
395 |
|
396 |
-
#: templates/pdf/Simple/invoice.php:
|
397 |
-
#: templates/pdf/Simple/packing-slip.php:
|
398 |
msgid "Product"
|
399 |
msgstr "Tuote"
|
400 |
|
401 |
-
#: templates/pdf/Simple/invoice.php:
|
402 |
-
#: templates/pdf/Simple/packing-slip.php:
|
403 |
msgid "Quantity"
|
404 |
msgstr "Määrä"
|
405 |
|
406 |
-
#: templates/pdf/Simple/invoice.php:
|
407 |
msgid "Price"
|
408 |
msgstr "Hinta"
|
409 |
|
410 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
411 |
msgid "Description"
|
412 |
msgstr "Kuvaus"
|
413 |
|
414 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
415 |
msgid "SKU"
|
416 |
msgstr "Tuotekoodi"
|
417 |
|
418 |
-
#: templates/pdf/Simple/invoice.php:
|
419 |
-
#: templates/pdf/Simple/packing-slip.php:
|
420 |
msgid "SKU:"
|
421 |
msgstr "Tuotekoodi:"
|
422 |
|
423 |
-
#: templates/pdf/Simple/invoice.php:
|
424 |
-
#: templates/pdf/Simple/packing-slip.php:
|
425 |
msgid "Weight:"
|
426 |
msgstr "Paino:"
|
427 |
|
428 |
-
#: templates/pdf/Simple/invoice.php:
|
429 |
-
#: templates/pdf/Simple/packing-slip.php:
|
430 |
msgid "Customer Notes"
|
431 |
msgstr "Asiakkaan huomiot"
|
432 |
|
433 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
#, php-format
|
435 |
msgid ""
|
436 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -439,40 +663,100 @@ msgstr ""
|
|
439 |
"WooCommerce PDF Invoices & Packing Slips edellyttää %sWooCommerce%s -"
|
440 |
"asennusta ja aktivointia!"
|
441 |
|
442 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
443 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
444 |
msgid "N/A"
|
445 |
msgstr "-"
|
446 |
|
447 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
448 |
msgid "Payment method"
|
449 |
msgstr "Maksutapa"
|
450 |
|
451 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
452 |
msgid "Shipping method"
|
453 |
msgstr "Toimitustapa"
|
454 |
|
455 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
|
|
|
|
|
|
|
|
|
|
456 |
msgid "Subtotal"
|
457 |
msgstr "Välisumma"
|
458 |
|
459 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
460 |
msgid "Shipping"
|
461 |
msgstr "Toimitus"
|
462 |
|
463 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
464 |
msgid "Discount"
|
465 |
msgstr "Alennus"
|
466 |
|
467 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
468 |
msgid "VAT"
|
469 |
msgstr "Arvonlisävero"
|
470 |
|
471 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
|
|
|
|
|
|
|
|
472 |
msgid "Total ex. VAT"
|
473 |
msgstr "Yhteensä (ei sis. Alv)"
|
474 |
|
475 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
476 |
msgid "Total"
|
477 |
msgstr "Yhteensä"
|
478 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2015-12-01 17:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-18 09:31+0700\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Contrast Digital Oy <hello@contrast.fi>\n"
|
8 |
"Language: fi_FI\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\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: includes/class-wcpdf-export.php:372 includes/class-wcpdf-export.php:386
|
20 |
+
#: includes/class-wcpdf-export.php:393 includes/class-wcpdf-export.php:401
|
|
|
21 |
msgid "You do not have sufficient permissions to access this page."
|
22 |
msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
|
23 |
|
24 |
+
#: includes/class-wcpdf-export.php:377
|
25 |
+
msgid "Some of the export parameters are missing."
|
26 |
+
msgstr "Osa vientiparametreistä on puutteellisia."
|
27 |
+
|
28 |
# This is a filename (prefix). do not use spaces or special characters!
|
29 |
+
#: includes/class-wcpdf-export.php:458
|
30 |
msgid "invoice"
|
31 |
msgid_plural "invoices"
|
32 |
msgstr[0] "lasku"
|
33 |
msgstr[1] "laskut"
|
34 |
|
35 |
# This is a filename (prefix). do not use spaces or special characters!
|
36 |
+
#: includes/class-wcpdf-export.php:462
|
37 |
msgid "packing-slip"
|
38 |
msgid_plural "packing-slips"
|
39 |
msgstr[0] "lähetyslista"
|
40 |
msgstr[1] "lähetyslistat"
|
41 |
|
42 |
+
#: includes/class-wcpdf-settings.php:34 includes/class-wcpdf-settings.php:35
|
43 |
+
#: includes/class-wcpdf-writepanels.php:32
|
|
|
44 |
msgid "PDF Invoices"
|
45 |
msgstr "PDF-laskut"
|
46 |
|
47 |
+
#: includes/class-wcpdf-settings.php:76
|
48 |
msgid "Settings"
|
49 |
msgstr "Asetukset"
|
50 |
|
51 |
+
#: includes/class-wcpdf-settings.php:98
|
52 |
msgid "General"
|
53 |
msgstr "Yleiset"
|
54 |
|
55 |
+
#: includes/class-wcpdf-settings.php:99
|
56 |
msgid "Template"
|
57 |
msgstr "Sivupohja"
|
58 |
|
59 |
+
#: includes/class-wcpdf-settings.php:104
|
|
|
|
|
|
|
|
|
60 |
msgid "Status"
|
61 |
msgstr "Tila"
|
62 |
|
63 |
+
#: includes/class-wcpdf-settings.php:116
|
64 |
+
msgid "WooCommerce PDF Invoices"
|
65 |
+
msgstr "WooCommerce PDF-laskut"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
+
#: includes/class-wcpdf-settings.php:185
|
68 |
msgid "General settings"
|
69 |
msgstr "Yleiset asetukset"
|
70 |
|
71 |
+
#: includes/class-wcpdf-settings.php:192
|
72 |
msgid "How do you want to view the PDF?"
|
73 |
msgstr "Miten haluat esittää PDF-tiedoston?"
|
74 |
|
75 |
+
#: includes/class-wcpdf-settings.php:200
|
76 |
msgid "Download the PDF"
|
77 |
msgstr "Lataa PDF-tiedosto"
|
78 |
|
79 |
+
#: includes/class-wcpdf-settings.php:201
|
80 |
msgid "Open the PDF in a new browser tab/window"
|
81 |
msgstr "Avaa PDF-tiedosto uudessa selainikkunassa/välilehdellä"
|
82 |
|
83 |
+
#: includes/class-wcpdf-settings.php:210
|
|
|
|
|
|
|
|
|
84 |
msgid "Admin New Order email"
|
85 |
msgstr "Ylläpitäjän ‘Uusi tilaus’-viesti"
|
86 |
|
87 |
+
#: includes/class-wcpdf-settings.php:211
|
88 |
msgid "Customer Processing Order email"
|
89 |
msgstr "Asiakkaan ‘Tilaus on käsittelyssä’-sähköposti"
|
90 |
|
91 |
+
#: includes/class-wcpdf-settings.php:212
|
92 |
msgid "Customer Completed Order email"
|
93 |
msgstr "Asiakkaan ‘Tilaus valmis’-sähköposti"
|
94 |
|
95 |
+
#: includes/class-wcpdf-settings.php:213
|
96 |
msgid "Customer Invoice email"
|
97 |
msgstr "Asiakkaan ‘Lasku’-sähköposti"
|
98 |
|
99 |
+
#: includes/class-wcpdf-settings.php:222
|
100 |
+
msgid "Attach invoice to:"
|
101 |
+
msgstr "Liitä lasku:"
|
102 |
+
|
103 |
+
#: includes/class-wcpdf-settings.php:230
|
104 |
#, php-format
|
105 |
msgid ""
|
106 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
111 |
"tarkista tiedosto-oikeudet tälle kensiolle. Ilman kirjoitusoikeutta tämä "
|
112 |
"lisäosa ei pysty lähettämään laskuja sähköpostilla."
|
113 |
|
114 |
+
#: includes/class-wcpdf-settings.php:236
|
115 |
+
msgid "Disable for free products"
|
116 |
+
msgstr "Poista käytöstä ilmaisille tuotteille"
|
117 |
+
|
118 |
+
#: includes/class-wcpdf-settings.php:243
|
119 |
+
msgid ""
|
120 |
+
"Disable automatic creation/attachment of invoices when only free products "
|
121 |
+
"are ordered"
|
122 |
+
msgstr ""
|
123 |
+
"Poista käytöstä automaattinen laskujen luonti kun tilauksessa on ainoastaan "
|
124 |
+
"ilmaisia tuotteita"
|
125 |
+
|
126 |
+
#: includes/class-wcpdf-settings.php:250
|
127 |
+
msgid "Interface"
|
128 |
+
msgstr "Ulkoasu"
|
129 |
+
|
130 |
+
#: includes/class-wcpdf-settings.php:298
|
131 |
+
msgid "Allow My Account invoice download"
|
132 |
+
msgstr "Salli laskun lataaminen oman tilin kautta"
|
133 |
+
|
134 |
+
#: includes/class-wcpdf-settings.php:306
|
135 |
+
msgid "Only when an invoice is already created/emailed"
|
136 |
+
msgstr "Ainoastaan kun lasku on luotu/lähetetty"
|
137 |
+
|
138 |
+
#: includes/class-wcpdf-settings.php:307
|
139 |
+
msgid "Only for specific order statuses (define below)"
|
140 |
+
msgstr "Ainoastaan tietyille tilauksen tiloille (määrittele alla)"
|
141 |
+
|
142 |
+
#: includes/class-wcpdf-settings.php:308
|
143 |
+
msgid "Always"
|
144 |
+
msgstr "Aina"
|
145 |
+
|
146 |
+
#: includes/class-wcpdf-settings.php:309
|
147 |
+
msgid "Never"
|
148 |
+
msgstr "Ei koskaan"
|
149 |
+
|
150 |
+
#: includes/class-wcpdf-settings.php:324
|
151 |
msgid "Enable invoice number column in the orders list"
|
152 |
msgstr "Aktivoi laskun numerot sarake Tilaukset-listalla."
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:362
|
155 |
msgid "PDF Template settings"
|
156 |
msgstr "PDF-sivupohjan asetukset"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:374
|
159 |
msgid "Choose a template"
|
160 |
msgstr "Valitse sivupohja"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:382
|
163 |
#, php-format
|
164 |
msgid ""
|
165 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
166 |
+
"your (child) theme in <code>%s</code> to customize them"
|
167 |
msgstr ""
|
168 |
+
"Haluatko käyttää omaa sivupohjaa? Kopioi kaikki tiedostot <code>%s</code> "
|
169 |
+
"oman teemasi hakemistoon <code>%s</code> muokataksesi tiedostoja"
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:388
|
172 |
msgid "Paper size"
|
173 |
msgstr "Paperin koko"
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:396
|
176 |
msgid "A4"
|
177 |
msgstr "A4"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:397
|
180 |
msgid "Letter"
|
181 |
msgstr "Kirje"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:404
|
184 |
msgid "Shop header/logo"
|
185 |
msgstr "Kaupan logo"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:411
|
188 |
msgid "Select or upload your invoice header/logo"
|
189 |
msgstr "Valitse tai lataa laskun logo"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:412
|
192 |
msgid "Set image"
|
193 |
msgstr "Aseta kuva"
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:413
|
196 |
msgid "Remove image"
|
197 |
msgstr "Poista kuva"
|
198 |
|
199 |
+
#: includes/class-wcpdf-settings.php:420
|
200 |
msgid "Shop Name"
|
201 |
msgstr "Kaupan nimi"
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:434
|
204 |
msgid "Shop Address"
|
205 |
msgstr "Kaupan osoite"
|
206 |
|
207 |
+
#: includes/class-wcpdf-settings.php:450
|
208 |
msgid "Footer: terms & conditions, policies, etc."
|
209 |
msgstr "Alapalkki: ehdot, periaatteet jne…"
|
210 |
|
211 |
+
#: includes/class-wcpdf-settings.php:467
|
212 |
+
#: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
|
213 |
+
#: templates/pdf/Simple/invoice.php:21
|
214 |
+
#: woocommerce-pdf-invoices-packingslips.php:220
|
215 |
+
msgid "Invoice"
|
216 |
+
msgstr "Lasku"
|
|
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:474
|
219 |
+
msgid "Display shipping address"
|
220 |
+
msgstr "Näytä toimitusosoite"
|
221 |
|
222 |
+
#: includes/class-wcpdf-settings.php:481
|
223 |
msgid ""
|
224 |
+
"Display shipping address on invoice (in addition to the default billing "
|
225 |
+
"address) if different from billing address"
|
226 |
+
msgstr "Näytä toimitusosoite laskulla, jos eri kuin laskutusosoite"
|
227 |
+
|
228 |
+
#: includes/class-wcpdf-settings.php:487 includes/class-wcpdf-settings.php:614
|
229 |
+
msgid "Display email address"
|
230 |
+
msgstr "Näytä sähköpostiosoite"
|
231 |
+
|
232 |
+
#: includes/class-wcpdf-settings.php:499 includes/class-wcpdf-settings.php:626
|
233 |
+
msgid "Display phone number"
|
234 |
+
msgstr "Näytä puhelinnumero"
|
235 |
+
|
236 |
+
#: includes/class-wcpdf-settings.php:511
|
237 |
+
msgid "Display invoice date"
|
238 |
+
msgstr "Näytä laskun päivämäärä"
|
239 |
+
|
240 |
+
#: includes/class-wcpdf-settings.php:524
|
241 |
+
msgid "Display built-in sequential invoice number"
|
242 |
+
msgstr "Näytä sisäänrakennettu peräkkäinen laskun numero"
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:537
|
245 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
246 |
msgstr "Seuraavan laskun numero (ilman etu/takaliitteitä tms.)"
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:545
|
249 |
msgid ""
|
250 |
"This is the number that will be used on the next invoice that is created. By "
|
251 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
260 |
"asetat sen alemmaksi kuin ylin (PDF) laskunumero, saattaa esiintyä kaksi "
|
261 |
"identtistä laskunnumeroa. Suosittelemme, että asetukseen ei kosketa."
|
262 |
|
263 |
+
#: includes/class-wcpdf-settings.php:551
|
264 |
msgid "Invoice number format"
|
265 |
msgstr "Laskun numeron muoto"
|
266 |
|
267 |
+
#: includes/class-wcpdf-settings.php:560
|
268 |
msgid "Prefix"
|
269 |
msgstr "Etuliite"
|
270 |
|
271 |
+
#: includes/class-wcpdf-settings.php:562
|
272 |
msgid ""
|
273 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
274 |
"respectively"
|
276 |
"käyttääksesi vuotta ja/tai kuukautta, käytä [order_year] tai [order_month] "
|
277 |
"tarvittaessa"
|
278 |
|
279 |
+
#: includes/class-wcpdf-settings.php:565
|
280 |
msgid "Suffix"
|
281 |
msgstr "Takaliite"
|
282 |
|
283 |
+
#: includes/class-wcpdf-settings.php:570
|
284 |
msgid "Padding"
|
285 |
msgstr "Padding"
|
286 |
|
287 |
+
#: includes/class-wcpdf-settings.php:572
|
288 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
289 |
msgstr "syötä lukujen määrä tähän - syötä 6 näyttääksesi 42 seuraavasti 000042"
|
290 |
|
291 |
+
#: includes/class-wcpdf-settings.php:575
|
292 |
msgid ""
|
293 |
"note: if you have already created a custom invoice number format with a "
|
294 |
"filter, the above settings will be ignored"
|
296 |
"huomio: jos olet jo luonut räätälöidyn laskun numeron muodon filtterillä, "
|
297 |
"yllä olevat asetukset ohitetaan"
|
298 |
|
299 |
+
#: includes/class-wcpdf-settings.php:581
|
300 |
+
msgid "Reset invoice number yearly"
|
301 |
+
msgstr "Nollaa laskun numero vuosittain"
|
302 |
|
303 |
+
#: includes/class-wcpdf-settings.php:594
|
304 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
305 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
306 |
+
#: woocommerce-pdf-invoices-packingslips.php:223
|
307 |
+
msgid "Packing Slip"
|
308 |
+
msgstr "Lähetyslista"
|
309 |
+
|
310 |
+
#: includes/class-wcpdf-settings.php:601
|
311 |
+
msgid "Display billing address"
|
312 |
+
msgstr "Näytä laskutusosoite"
|
313 |
|
314 |
+
#: includes/class-wcpdf-settings.php:608
|
315 |
+
msgid ""
|
316 |
+
"Display billing address on packing slip (in addition to the default shipping "
|
317 |
+
"address) if different from shipping address"
|
318 |
+
msgstr ""
|
319 |
+
"Näytä laskutusosoite lähetyslistassa jos osoite poikkeaa toimitusosoitteesta"
|
320 |
|
321 |
+
#: includes/class-wcpdf-settings.php:639
|
322 |
msgid "Extra template fields"
|
323 |
msgstr "Lisäkentät"
|
324 |
|
325 |
+
#: includes/class-wcpdf-settings.php:646
|
326 |
msgid "Extra field 1"
|
327 |
msgstr "Lisäkenttä 1"
|
328 |
|
329 |
+
#: includes/class-wcpdf-settings.php:655
|
330 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
331 |
msgstr "Tämä on alapalkin sarake 1 <i>Modern (Premium)</i> -sivupohjassa."
|
332 |
|
333 |
+
#: includes/class-wcpdf-settings.php:662
|
334 |
msgid "Extra field 2"
|
335 |
msgstr "Lisäkenttä 2"
|
336 |
|
337 |
+
#: includes/class-wcpdf-settings.php:671
|
338 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
339 |
msgstr "Tämä on alapalkin sarake 2 <i>Modern (Premium)</i> -sivupohjassa."
|
340 |
|
341 |
+
#: includes/class-wcpdf-settings.php:678
|
342 |
msgid "Extra field 3"
|
343 |
msgstr "Lisäkenttä 3"
|
344 |
|
345 |
+
#: includes/class-wcpdf-settings.php:687
|
346 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
347 |
msgstr "Tämä on alapalkin sarake 3 <i>Modern (Premium)</i> -sivupohjassa."
|
348 |
|
349 |
+
#: includes/class-wcpdf-settings.php:730
|
350 |
+
msgid "Debug settings"
|
351 |
+
msgstr "Vian paikannnus asetukset"
|
352 |
+
|
353 |
+
#: includes/class-wcpdf-settings.php:737
|
354 |
+
msgid "Enable debug output"
|
355 |
+
msgstr "Ota käyttöön vikalogi"
|
356 |
+
|
357 |
+
#: includes/class-wcpdf-settings.php:744
|
358 |
+
msgid ""
|
359 |
+
"Enable this option to output plugin errors if you're getting a blank page or "
|
360 |
+
"other PDF generation issues"
|
361 |
+
msgstr ""
|
362 |
+
"Ota käyttöön tämä toiminto näyttääksesi lisäosan virheilmoitukset jos "
|
363 |
+
"lisäosa näyttää pelkän tyhjän sivun tai saat muita virheilmoituksia"
|
364 |
+
|
365 |
+
#: includes/class-wcpdf-settings.php:750
|
366 |
+
msgid "Output to HTML"
|
367 |
+
msgstr "HTML muotoilu"
|
368 |
+
|
369 |
+
#: includes/class-wcpdf-settings.php:757
|
370 |
+
msgid ""
|
371 |
+
"Send the template output as HTML to the browser instead of creating a PDF."
|
372 |
+
msgstr ""
|
373 |
+
"Lähetä sivupohja HTML muodossa selaimeen, sen sijaan että luotaisiin PDF "
|
374 |
+
"tiedosto"
|
375 |
+
|
376 |
+
#: includes/class-wcpdf-settings.php:763
|
377 |
+
msgid "Use old tmp folder"
|
378 |
+
msgstr "Käytä vanhaa tilapäishakemistoa"
|
379 |
+
|
380 |
+
#: includes/class-wcpdf-settings.php:770
|
381 |
+
msgid ""
|
382 |
+
"Before version 1.5 of PDF Invoices, temporary files were stored in the "
|
383 |
+
"plugin folder. This setting is only intended for backwards compatibility, "
|
384 |
+
"not recommended on new installs!"
|
385 |
+
msgstr ""
|
386 |
+
"Ennen versiota 1.5 väliaikaistiedostot säilöttiin lisäosan hakemistoon. Tämä "
|
387 |
+
"asetus on tarkoitettu yhteensopivuus tarkoituksessa vanhoille versioille, ei "
|
388 |
+
"uusille versiolle!"
|
389 |
+
|
390 |
+
#: includes/class-wcpdf-settings.php:1143
|
391 |
msgid "Image resolution"
|
392 |
msgstr "Kuvan resoluutio"
|
393 |
|
394 |
+
#: includes/class-wcpdf-settings.php:1259
|
395 |
+
msgid ""
|
396 |
+
"<b>Warning!</b> The settings below are meant for debugging/development only. "
|
397 |
+
"Do not use them on a live website!"
|
398 |
+
msgstr ""
|
399 |
+
"<b>Huom!</b> Nämä asetukset on tarkoitettu vain vianetsintään! Älä käytä "
|
400 |
+
"niitä tuotantokäytössä!"
|
401 |
+
|
402 |
+
#: includes/class-wcpdf-settings.php:1268
|
403 |
msgid ""
|
404 |
"These are used for the (optional) footer columns in the <em>Modern "
|
405 |
"(Premium)</em> template, but can also be used for other elements in your "
|
409 |
"sivupohjassa, mutta niitä voidaan myös käyttää muissa elementeissä omissa "
|
410 |
"sivupohjissasi."
|
411 |
|
412 |
+
#: includes/class-wcpdf-writepanels.php:33
|
413 |
+
msgid "PDF Packing Slips"
|
414 |
+
msgstr "PDF-lähetyslistat"
|
415 |
+
|
416 |
+
#: includes/class-wcpdf-writepanels.php:119
|
417 |
+
#: includes/class-wcpdf-writepanels.php:252
|
418 |
+
msgid "PDF Invoice"
|
419 |
+
msgstr "PDF lasku"
|
420 |
+
|
421 |
+
#: includes/class-wcpdf-writepanels.php:124
|
422 |
+
#: includes/class-wcpdf-writepanels.php:257
|
423 |
+
msgid "PDF Packing Slip"
|
424 |
+
msgstr "PDF-lähetyslista"
|
425 |
+
|
426 |
+
#: includes/class-wcpdf-writepanels.php:151
|
427 |
msgid "Invoice Number"
|
428 |
msgstr "Laskun numero"
|
429 |
|
430 |
+
#: includes/class-wcpdf-writepanels.php:210
|
431 |
msgid "Download invoice (PDF)"
|
432 |
msgstr "Lataa lasku (PDF)"
|
433 |
|
434 |
+
#: includes/class-wcpdf-writepanels.php:224
|
435 |
msgid "Create PDF"
|
436 |
msgstr "Luo PDF"
|
437 |
|
438 |
+
#: includes/class-wcpdf-writepanels.php:234
|
439 |
+
msgid "PDF Invoice data"
|
440 |
+
msgstr "PDF laskun tiedot"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
|
442 |
+
#: includes/class-wcpdf-writepanels.php:287
|
443 |
+
msgid "Invoice Number (unformatted!)"
|
444 |
+
msgstr "Laskun numero (ei muotoiltu)"
|
445 |
|
446 |
+
#: includes/class-wcpdf-writepanels.php:295
|
447 |
+
#: templates/pdf/Simple/invoice.php:55
|
448 |
msgid "Invoice Date:"
|
449 |
msgstr "Laskun Päiväys:"
|
450 |
|
451 |
+
#: includes/class-wcpdf-writepanels.php:297
|
452 |
msgid "h"
|
453 |
msgstr "t"
|
454 |
|
455 |
+
#: includes/class-wcpdf-writepanels.php:297
|
456 |
msgid "m"
|
457 |
msgstr "m"
|
458 |
|
459 |
+
#: includes/wcpdf-extensions.php:15
|
460 |
+
msgid "Check out these premium extensions!"
|
461 |
+
msgstr "Tarkastele Premium laajennuksia"
|
|
|
462 |
|
463 |
+
#: includes/wcpdf-extensions.php:16
|
464 |
+
msgid "click items to read more"
|
465 |
+
msgstr "Klikkaa lisätietoja"
|
466 |
+
|
467 |
+
#: includes/wcpdf-extensions.php:23
|
468 |
+
msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
|
469 |
+
msgstr "Valitse Pro versio: Pro forma laskut, hyvityslaskut ja paljon muuta!"
|
470 |
+
|
471 |
+
#: includes/wcpdf-extensions.php:25
|
472 |
+
msgid ""
|
473 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
474 |
+
"features:"
|
475 |
+
msgstr ""
|
476 |
+
"Täydennä WooCommerce PDF laskut & lähetyslistat seuraavilla ominaisuuksilla:"
|
477 |
+
|
478 |
+
#: includes/wcpdf-extensions.php:27
|
479 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
480 |
+
msgstr "Sähköposti/tulosta/lataa <b>PDF hyvityslaskut & Pro forma laskut</b>"
|
481 |
+
|
482 |
+
#: includes/wcpdf-extensions.php:28
|
483 |
+
msgid ""
|
484 |
+
"Send out a separate <b>notification email</b> with (or without) PDF invoices/"
|
485 |
+
"packing slips, for example to a drop-shipper or a supplier."
|
486 |
+
msgstr ""
|
487 |
+
"Lähetä erillinen huomautussähköposti joko PDF laskulla/lähetyslistalla tai "
|
488 |
+
"ilman, esim. tavarantoimittajalle."
|
489 |
+
|
490 |
+
#: includes/wcpdf-extensions.php:29
|
491 |
+
msgid ""
|
492 |
+
"Attach <b>up to 3 static files</b> (for example a terms & conditions "
|
493 |
+
"document) to the WooCommerce emails of your choice."
|
494 |
+
msgstr ""
|
495 |
+
"Lisää korkeintaan 3 staattista tiedostoa (kuten esim. toimitusehdot) "
|
496 |
+
"WooCommercen sähköposteihin, jotka voit itse valita."
|
497 |
+
|
498 |
+
#: includes/wcpdf-extensions.php:30
|
499 |
+
msgid ""
|
500 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
501 |
+
"and credit notes or utilize the main invoice numbering system"
|
502 |
+
msgstr ""
|
503 |
+
"Käytä erillistä numerointia ja/tai formaattia pro forma laskuille ja "
|
504 |
+
"hyvityslaskuille tai määrittele päätoiminen numerointijärjestelmä"
|
505 |
+
|
506 |
+
#: includes/wcpdf-extensions.php:31
|
507 |
+
msgid ""
|
508 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
509 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
510 |
+
"custom template."
|
511 |
+
msgstr ""
|
512 |
+
"Muokkaa toimitus- ja laskutusosoitetta lisätäksesi lisäkenttiä tai fontin "
|
513 |
+
"kokoa suoraan ilman erillisen sivupohjan luomista."
|
514 |
+
|
515 |
+
#: includes/wcpdf-extensions.php:32
|
516 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
517 |
+
msgstr "Käytä lisäosaa monikielisenä"
|
518 |
+
|
519 |
+
#: includes/wcpdf-extensions.php:34
|
520 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
521 |
+
msgstr "Hanki WooCommerce laskut & lähetyslistat Pro versio!"
|
522 |
+
|
523 |
+
#: includes/wcpdf-extensions.php:42
|
524 |
+
msgid "Upload all invoices automatically to your dropbox"
|
525 |
+
msgstr "Lähetä kaikki laskut automaattisesti dropbox tilillesi"
|
526 |
+
|
527 |
+
#: includes/wcpdf-extensions.php:48
|
528 |
+
msgid ""
|
529 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
530 |
+
"documents from the professional extension) that are emailed to your "
|
531 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
532 |
+
"date!"
|
533 |
+
msgstr "Tämä laajennus lähettää kaikki laskusi Dropbox tilillesi."
|
534 |
+
|
535 |
+
#: includes/wcpdf-extensions.php:49
|
536 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
537 |
+
msgstr "Hanki WooCommerce PDF laskut & lähetyslistat Dropbox laajennus!"
|
538 |
+
|
539 |
+
#: includes/wcpdf-extensions.php:61
|
540 |
+
msgid ""
|
541 |
+
"Automatically send new orders or packing slips to your printer, as soon as "
|
542 |
+
"the customer orders!"
|
543 |
+
msgstr "Lähetä automaattisesti tilaukset tai lähetyslistat tulostimelle."
|
544 |
+
|
545 |
+
#: includes/wcpdf-extensions.php:67
|
546 |
+
msgid ""
|
547 |
+
"Check out the WooCommerce Automatic Order Printing extension from our "
|
548 |
+
"partners at Simba Hosting"
|
549 |
+
msgstr ""
|
550 |
+
"Katso WooCommerce Automaattinen Tulostus laajennus yhteistyökumppaniltamme "
|
551 |
+
"Simba Hostingilla"
|
552 |
+
|
553 |
+
#: includes/wcpdf-extensions.php:68
|
554 |
+
msgid "WooCommerce Automatic Order Printing"
|
555 |
+
msgstr "WooCommerce Automaattinen Tilauksen Tulostus"
|
556 |
+
|
557 |
+
#: includes/wcpdf-extensions.php:82
|
558 |
+
msgid "Advanced, customizable templates"
|
559 |
+
msgstr "Kehittyneet, muokattavat sivupohjat"
|
560 |
+
|
561 |
+
#: includes/wcpdf-extensions.php:85
|
562 |
+
msgid ""
|
563 |
+
"Completely customize the invoice contents (prices, taxes, thumbnails) to "
|
564 |
+
"your needs with a drag & drop customizer"
|
565 |
+
msgstr ""
|
566 |
+
"Muokkaa täydellisesti laskun sisältöä tarpeitasi varten drag & drop "
|
567 |
+
"muokkaimella"
|
568 |
+
|
569 |
+
#: includes/wcpdf-extensions.php:86
|
570 |
+
msgid "Two extra stylish premade templates (Modern & Business)"
|
571 |
+
msgstr "Kaksi tyylikästä valmista sivupohjaa (Moderni ja Business)"
|
572 |
+
|
573 |
+
#: includes/wcpdf-extensions.php:87
|
574 |
+
#, php-format
|
575 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
576 |
+
msgstr "Katso Premium PDF lasku & lähetyslistat sivupohjat osoitteessa: %s."
|
577 |
+
|
578 |
+
#: includes/wcpdf-extensions.php:88
|
579 |
+
#, php-format
|
580 |
+
msgid "For custom templates, contact us at %s."
|
581 |
+
msgstr "Haluatko räätälöidyt sivupohjat, ota yhteyttä meihin osoitteessa %s."
|
582 |
+
|
583 |
+
#: templates/pdf/Simple/invoice.php:29
|
584 |
+
#: templates/pdf/Simple/packing-slip.php:40
|
585 |
+
msgid "Billing Address:"
|
586 |
+
msgstr "Laskutusosoite:"
|
587 |
|
588 |
#: templates/pdf/Simple/invoice.php:40
|
589 |
+
msgid "Ship To:"
|
590 |
+
msgstr "Toimitetaan:"
|
|
|
591 |
|
592 |
+
#: templates/pdf/Simple/invoice.php:49
|
593 |
msgid "Invoice Number:"
|
594 |
msgstr "Laskun numero:"
|
595 |
|
596 |
+
#: templates/pdf/Simple/invoice.php:60
|
597 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
598 |
msgid "Order Number:"
|
599 |
msgstr "Tilauksen numero:"
|
600 |
|
601 |
+
#: templates/pdf/Simple/invoice.php:64
|
602 |
+
#: templates/pdf/Simple/packing-slip.php:52
|
603 |
+
msgid "Order Date:"
|
604 |
+
msgstr "Tilauksen päiväys:"
|
605 |
+
|
606 |
+
#: templates/pdf/Simple/invoice.php:68
|
607 |
msgid "Payment Method:"
|
608 |
msgstr "Maksutapa:"
|
609 |
|
610 |
+
#: templates/pdf/Simple/invoice.php:82
|
611 |
+
#: templates/pdf/Simple/packing-slip.php:70
|
612 |
msgid "Product"
|
613 |
msgstr "Tuote"
|
614 |
|
615 |
+
#: templates/pdf/Simple/invoice.php:83
|
616 |
+
#: templates/pdf/Simple/packing-slip.php:71
|
617 |
msgid "Quantity"
|
618 |
msgstr "Määrä"
|
619 |
|
620 |
+
#: templates/pdf/Simple/invoice.php:84
|
621 |
msgid "Price"
|
622 |
msgstr "Hinta"
|
623 |
|
624 |
+
#: templates/pdf/Simple/invoice.php:91
|
625 |
+
#: templates/pdf/Simple/packing-slip.php:78
|
626 |
msgid "Description"
|
627 |
msgstr "Kuvaus"
|
628 |
|
629 |
+
#: templates/pdf/Simple/invoice.php:96
|
630 |
+
#: templates/pdf/Simple/packing-slip.php:83
|
631 |
msgid "SKU"
|
632 |
msgstr "Tuotekoodi"
|
633 |
|
634 |
+
#: templates/pdf/Simple/invoice.php:97
|
635 |
+
#: templates/pdf/Simple/packing-slip.php:84
|
636 |
msgid "SKU:"
|
637 |
msgstr "Tuotekoodi:"
|
638 |
|
639 |
+
#: templates/pdf/Simple/invoice.php:98
|
640 |
+
#: templates/pdf/Simple/packing-slip.php:85
|
641 |
msgid "Weight:"
|
642 |
msgstr "Paino:"
|
643 |
|
644 |
+
#: templates/pdf/Simple/invoice.php:112
|
645 |
+
#: templates/pdf/Simple/packing-slip.php:99
|
646 |
msgid "Customer Notes"
|
647 |
msgstr "Asiakkaan huomiot"
|
648 |
|
649 |
+
#: templates/pdf/Simple/packing-slip.php:29
|
650 |
+
msgid "Shipping Address:"
|
651 |
+
msgstr "Toimitusosoite:"
|
652 |
+
|
653 |
+
#: templates/pdf/Simple/packing-slip.php:56
|
654 |
+
msgid "Shipping Method:"
|
655 |
+
msgstr "Toimitustapa:"
|
656 |
+
|
657 |
+
#: woocommerce-pdf-invoices-packingslips.php:123
|
658 |
#, php-format
|
659 |
msgid ""
|
660 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
663 |
"WooCommerce PDF Invoices & Packing Slips edellyttää %sWooCommerce%s -"
|
664 |
"asennusta ja aktivointia!"
|
665 |
|
666 |
+
#: woocommerce-pdf-invoices-packingslips.php:367
|
667 |
+
#: woocommerce-pdf-invoices-packingslips.php:428
|
668 |
msgid "N/A"
|
669 |
msgstr "-"
|
670 |
|
671 |
+
#: woocommerce-pdf-invoices-packingslips.php:523
|
672 |
msgid "Payment method"
|
673 |
msgstr "Maksutapa"
|
674 |
|
675 |
+
#: woocommerce-pdf-invoices-packingslips.php:534
|
676 |
msgid "Shipping method"
|
677 |
msgstr "Toimitustapa"
|
678 |
|
679 |
+
#: woocommerce-pdf-invoices-packingslips.php:693
|
680 |
+
#, php-format
|
681 |
+
msgid "(Includes %s)"
|
682 |
+
msgstr "(Sisältää %s)"
|
683 |
+
|
684 |
+
#: woocommerce-pdf-invoices-packingslips.php:714
|
685 |
msgid "Subtotal"
|
686 |
msgstr "Välisumma"
|
687 |
|
688 |
+
#: woocommerce-pdf-invoices-packingslips.php:736
|
689 |
msgid "Shipping"
|
690 |
msgstr "Toimitus"
|
691 |
|
692 |
+
#: woocommerce-pdf-invoices-packingslips.php:799
|
693 |
msgid "Discount"
|
694 |
msgstr "Alennus"
|
695 |
|
696 |
+
#: woocommerce-pdf-invoices-packingslips.php:839
|
697 |
msgid "VAT"
|
698 |
msgstr "Arvonlisävero"
|
699 |
|
700 |
+
#: woocommerce-pdf-invoices-packingslips.php:840
|
701 |
+
msgid "Tax rate"
|
702 |
+
msgstr "Veroprosentti"
|
703 |
+
|
704 |
+
#: woocommerce-pdf-invoices-packingslips.php:877
|
705 |
msgid "Total ex. VAT"
|
706 |
msgstr "Yhteensä (ei sis. Alv)"
|
707 |
|
708 |
+
#: woocommerce-pdf-invoices-packingslips.php:880
|
709 |
msgid "Total"
|
710 |
msgstr "Yhteensä"
|
711 |
|
712 |
+
#~ msgid ""
|
713 |
+
#~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
714 |
+
#~ "extension."
|
715 |
+
#~ msgstr ""
|
716 |
+
#~ "Lataa kaikki laskut automaattisesti Dropbox-tiliisi!<br/>Tutustu %s -"
|
717 |
+
#~ "lisäosaan."
|
718 |
+
|
719 |
+
#~ msgid ""
|
720 |
+
#~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
721 |
+
#~ "Packing Slips templates at %s."
|
722 |
+
#~ msgstr ""
|
723 |
+
#~ "Etsitkö edistyneempiä sivupohjia? Tutustu Premium PDF Invoice & Packing "
|
724 |
+
#~ "Slips -sivupohjiin osoitteessa %s."
|
725 |
+
|
726 |
+
#~ msgid ""
|
727 |
+
#~ "Want to use your own template? Copy all the files from <code>%s</code> to "
|
728 |
+
#~ "<code>%s</code> to customize them"
|
729 |
+
#~ msgstr ""
|
730 |
+
#~ "Haluatko käyttää omaa sivupohjaasi? Kopioi kaikki tiedostot kansiosta, "
|
731 |
+
#~ "<code>%s</code> kansioon, <code>%s</code> muokataksesi niitä."
|
732 |
+
|
733 |
+
#~ msgid "Number to display on invoice"
|
734 |
+
#~ msgstr "Laskun numero"
|
735 |
+
|
736 |
+
#~ msgid "WooCommerce order number"
|
737 |
+
#~ msgstr "WooCommerce tilausnumero"
|
738 |
+
|
739 |
+
#~ msgid "Built-in sequential invoice number"
|
740 |
+
#~ msgstr "Sisäänrakennettu juokseva laskunnumero"
|
741 |
+
|
742 |
+
#~ msgid ""
|
743 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
744 |
+
#~ "the WooCommerce order number"
|
745 |
+
#~ msgstr ""
|
746 |
+
#~ "Jos käytät WooCommerce Sequential Order Numbers -lisäosaa, valitse "
|
747 |
+
#~ "WooCommerce tilausnumero."
|
748 |
+
|
749 |
+
#~ msgid "Date to display on invoice"
|
750 |
+
#~ msgstr "Laskulla näytettävä päivämäärä"
|
751 |
+
|
752 |
+
#~ msgid "Order date"
|
753 |
+
#~ msgstr "Tilauksen päiväys"
|
754 |
+
|
755 |
+
#~ msgid "Invoice date"
|
756 |
+
#~ msgstr "Laskun päiväys"
|
757 |
+
|
758 |
+
#~ msgid "PDF invoice"
|
759 |
+
#~ msgstr "PDF-laskut"
|
760 |
+
|
761 |
+
#~ msgid "PDF Invoice Number (unformatted!)"
|
762 |
+
#~ msgstr "PDF laskunnumero (ei muotoiltu!)"
|
languages/wpo_wcpdf-pt_PT.mo
ADDED
Binary file
|
languages/wpo_wcpdf-pt_PT.po
ADDED
@@ -0,0 +1,697 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-01-13 11:11+0100\n"
|
6 |
+
"PO-Revision-Date: 2016-01-13 11:11+0100\n"
|
7 |
+
"Last-Translator: wpml wpml <info@eg-reeds.com>\n"
|
8 |
+
"Language-Team: Victor Debone <victor@debone.com.br>\n"
|
9 |
+
"Language: pt_PT\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Poedit 1.8.6\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Loco-Target-Locale: pt_PT\n"
|
23 |
+
"X-Poedit-SearchPath-0: .\n"
|
24 |
+
|
25 |
+
#: includes/class-wcpdf-export.php:373 includes/class-wcpdf-export.php:387
|
26 |
+
#: includes/class-wcpdf-export.php:394 includes/class-wcpdf-export.php:402
|
27 |
+
msgid "You do not have sufficient permissions to access this page."
|
28 |
+
msgstr "Você não tem permissões o bastante para acessar essa página."
|
29 |
+
|
30 |
+
#: includes/class-wcpdf-export.php:378
|
31 |
+
msgid "Some of the export parameters are missing."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: includes/class-wcpdf-export.php:459
|
35 |
+
msgid "invoice"
|
36 |
+
msgid_plural "invoices"
|
37 |
+
msgstr[0] "fatura"
|
38 |
+
msgstr[1] "faturas"
|
39 |
+
|
40 |
+
#: includes/class-wcpdf-export.php:463
|
41 |
+
msgid "packing-slip"
|
42 |
+
msgid_plural "packing-slips"
|
43 |
+
msgstr[0] "Etiqueta do Pacote"
|
44 |
+
msgstr[1] "Etiquetas do pacote"
|
45 |
+
|
46 |
+
#: includes/class-wcpdf-settings.php:34 includes/class-wcpdf-settings.php:35
|
47 |
+
#: includes/class-wcpdf-writepanels.php:32
|
48 |
+
msgid "PDF Invoices"
|
49 |
+
msgstr "Faturas em PDF"
|
50 |
+
|
51 |
+
#: includes/class-wcpdf-settings.php:76
|
52 |
+
msgid "Settings"
|
53 |
+
msgstr "Opções"
|
54 |
+
|
55 |
+
#: includes/class-wcpdf-settings.php:98
|
56 |
+
msgid "General"
|
57 |
+
msgstr "Geral"
|
58 |
+
|
59 |
+
#: includes/class-wcpdf-settings.php:99
|
60 |
+
msgid "Template"
|
61 |
+
msgstr "Modelo"
|
62 |
+
|
63 |
+
#: includes/class-wcpdf-settings.php:104
|
64 |
+
msgid "Status"
|
65 |
+
msgstr "Status"
|
66 |
+
|
67 |
+
#: includes/class-wcpdf-settings.php:116
|
68 |
+
msgid "WooCommerce PDF Invoices"
|
69 |
+
msgstr "Faturas em PDF do WooCommerce"
|
70 |
+
|
71 |
+
#: includes/class-wcpdf-settings.php:185
|
72 |
+
msgid "General settings"
|
73 |
+
msgstr "Opções Gerais"
|
74 |
+
|
75 |
+
#: includes/class-wcpdf-settings.php:192
|
76 |
+
msgid "How do you want to view the PDF?"
|
77 |
+
msgstr "Como você deseja visualizar o PDF?"
|
78 |
+
|
79 |
+
#: includes/class-wcpdf-settings.php:200
|
80 |
+
msgid "Download the PDF"
|
81 |
+
msgstr "Baixar o PDF"
|
82 |
+
|
83 |
+
#: includes/class-wcpdf-settings.php:201
|
84 |
+
msgid "Open the PDF in a new browser tab/window"
|
85 |
+
msgstr "Abrir o PDF em uma nova aba/janela"
|
86 |
+
|
87 |
+
#: includes/class-wcpdf-settings.php:210
|
88 |
+
msgid "Admin New Order email"
|
89 |
+
msgstr "Email de Novo Pedido do Administrador"
|
90 |
+
|
91 |
+
#: includes/class-wcpdf-settings.php:211
|
92 |
+
msgid "Customer Processing Order email"
|
93 |
+
msgstr "Email de Processando Ordem do Cliente"
|
94 |
+
|
95 |
+
#: includes/class-wcpdf-settings.php:212
|
96 |
+
msgid "Customer Completed Order email"
|
97 |
+
msgstr "Email de Pedido Completo do Cliente"
|
98 |
+
|
99 |
+
#: includes/class-wcpdf-settings.php:213
|
100 |
+
msgid "Customer Invoice email"
|
101 |
+
msgstr "Email de Fatura do Cliente"
|
102 |
+
|
103 |
+
#: includes/class-wcpdf-settings.php:222
|
104 |
+
msgid "Attach invoice to:"
|
105 |
+
msgstr "Anexar Fatura para:"
|
106 |
+
|
107 |
+
#: includes/class-wcpdf-settings.php:230
|
108 |
+
#, php-format
|
109 |
+
msgid ""
|
110 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
111 |
+
"permissions for this folder! Without having write access to this folder, the "
|
112 |
+
"plugin will not be able to email invoices."
|
113 |
+
msgstr ""
|
114 |
+
"Parece que a pasta temporária (<code>%s</code>) não tem permissão de "
|
115 |
+
"escrita! Sem a permissão de escrita nessa pasta o plugin não poderá enviar "
|
116 |
+
"as faturas por email."
|
117 |
+
|
118 |
+
#: includes/class-wcpdf-settings.php:236
|
119 |
+
msgid "Disable for free products"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/class-wcpdf-settings.php:243
|
123 |
+
msgid ""
|
124 |
+
"Disable automatic creation/attachment of invoices when only free products "
|
125 |
+
"are ordered"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/class-wcpdf-settings.php:250
|
129 |
+
msgid "Interface"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: includes/class-wcpdf-settings.php:298
|
133 |
+
msgid "Allow My Account invoice download"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: includes/class-wcpdf-settings.php:306
|
137 |
+
msgid "Only when an invoice is already created/emailed"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: includes/class-wcpdf-settings.php:307
|
141 |
+
msgid "Only for specific order statuses (define below)"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: includes/class-wcpdf-settings.php:308
|
145 |
+
msgid "Always"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: includes/class-wcpdf-settings.php:309
|
149 |
+
msgid "Never"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: includes/class-wcpdf-settings.php:324
|
153 |
+
msgid "Enable invoice number column in the orders list"
|
154 |
+
msgstr "Permitir coluna do número da Fatura na lista de Pedidos"
|
155 |
+
|
156 |
+
#: includes/class-wcpdf-settings.php:362
|
157 |
+
msgid "PDF Template settings"
|
158 |
+
msgstr "Opções do Template em PDF"
|
159 |
+
|
160 |
+
#: includes/class-wcpdf-settings.php:374
|
161 |
+
msgid "Choose a template"
|
162 |
+
msgstr "Escolha um modelo"
|
163 |
+
|
164 |
+
#: includes/class-wcpdf-settings.php:382
|
165 |
+
#, php-format
|
166 |
+
msgid ""
|
167 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
168 |
+
"your (child) theme in <code>%s</code> to customize them"
|
169 |
+
msgstr ""
|
170 |
+
"Quer usar o seu próprio modelo? Copie todos os arquivos de <code>%s</code> "
|
171 |
+
"para o seu tema(-filho) em <code>%s</code> para personalizar ele"
|
172 |
+
|
173 |
+
#: includes/class-wcpdf-settings.php:388
|
174 |
+
msgid "Paper size"
|
175 |
+
msgstr "Tamanho do Papel"
|
176 |
+
|
177 |
+
#: includes/class-wcpdf-settings.php:396
|
178 |
+
msgid "A4"
|
179 |
+
msgstr "A4"
|
180 |
+
|
181 |
+
#: includes/class-wcpdf-settings.php:397
|
182 |
+
msgid "Letter"
|
183 |
+
msgstr "Carta"
|
184 |
+
|
185 |
+
#: includes/class-wcpdf-settings.php:404
|
186 |
+
msgid "Shop header/logo"
|
187 |
+
msgstr "Logo/Cabeçalho do Loja"
|
188 |
+
|
189 |
+
#: includes/class-wcpdf-settings.php:411
|
190 |
+
msgid "Select or upload your invoice header/logo"
|
191 |
+
msgstr "Selecione ou envie o seu logo/cabeçalho"
|
192 |
+
|
193 |
+
#: includes/class-wcpdf-settings.php:412
|
194 |
+
msgid "Set image"
|
195 |
+
msgstr "Definir Imagem"
|
196 |
+
|
197 |
+
#: includes/class-wcpdf-settings.php:413
|
198 |
+
msgid "Remove image"
|
199 |
+
msgstr "Remover Imagem"
|
200 |
+
|
201 |
+
#: includes/class-wcpdf-settings.php:420
|
202 |
+
msgid "Shop Name"
|
203 |
+
msgstr "Nome da Loja"
|
204 |
+
|
205 |
+
#: includes/class-wcpdf-settings.php:434
|
206 |
+
msgid "Shop Address"
|
207 |
+
msgstr "Endereço da Loja"
|
208 |
+
|
209 |
+
#: includes/class-wcpdf-settings.php:450
|
210 |
+
msgid "Footer: terms & conditions, policies, etc."
|
211 |
+
msgstr "Rodapé: Termos e condições, políticas, etc..."
|
212 |
+
|
213 |
+
#: includes/class-wcpdf-settings.php:467
|
214 |
+
#: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
|
215 |
+
#: templates/pdf/Simple/invoice.php:21
|
216 |
+
#: woocommerce-pdf-invoices-packingslips.php:220
|
217 |
+
msgid "Invoice"
|
218 |
+
msgstr "Fatura"
|
219 |
+
|
220 |
+
#: includes/class-wcpdf-settings.php:474
|
221 |
+
msgid "Display shipping address"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/class-wcpdf-settings.php:481
|
225 |
+
msgid ""
|
226 |
+
"Display shipping address on invoice (in addition to the default billing "
|
227 |
+
"address) if different from billing address"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/class-wcpdf-settings.php:487 includes/class-wcpdf-settings.php:614
|
231 |
+
msgid "Display email address"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/class-wcpdf-settings.php:499 includes/class-wcpdf-settings.php:626
|
235 |
+
msgid "Display phone number"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/class-wcpdf-settings.php:511
|
239 |
+
msgid "Display invoice date"
|
240 |
+
msgstr "Mostrar a data da Fatura"
|
241 |
+
|
242 |
+
#: includes/class-wcpdf-settings.php:524
|
243 |
+
msgid "Display built-in sequential invoice number"
|
244 |
+
msgstr "Mostrar o número da Fatura sequencial embutida"
|
245 |
+
|
246 |
+
#: includes/class-wcpdf-settings.php:537
|
247 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
248 |
+
msgstr "Próximo número da fatura (sem prefixo/sufixo etc.)"
|
249 |
+
|
250 |
+
#: includes/class-wcpdf-settings.php:545
|
251 |
+
msgid ""
|
252 |
+
"This is the number that will be used on the next invoice that is created. By "
|
253 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
254 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
255 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
256 |
+
"this could create double invoice numbers!"
|
257 |
+
msgstr ""
|
258 |
+
"Esse é o numero que será usado na próxima fatura que for criada. Por padrão, "
|
259 |
+
"o primeiro número começa do número de pedido do WooCommerce da primeira "
|
260 |
+
"fatura gerada e depois é incrementado para cada nova fatura. Note que se "
|
261 |
+
"você sobrescrever isso e definir um número menor que o atual pode criar "
|
262 |
+
"duplicidades nas faturas!"
|
263 |
+
|
264 |
+
#: includes/class-wcpdf-settings.php:551
|
265 |
+
msgid "Invoice number format"
|
266 |
+
msgstr "Formato do Número da Fatura"
|
267 |
+
|
268 |
+
#: includes/class-wcpdf-settings.php:560
|
269 |
+
msgid "Prefix"
|
270 |
+
msgstr "Prefixo"
|
271 |
+
|
272 |
+
#: includes/class-wcpdf-settings.php:562
|
273 |
+
msgid ""
|
274 |
+
"to use the order year and/or month, use [order_year] or [order_month] "
|
275 |
+
"respectively"
|
276 |
+
msgstr ""
|
277 |
+
"para usar o ano e/ou o mês do pedido, use [order_year] ou [order_month] "
|
278 |
+
"respectivamente"
|
279 |
+
|
280 |
+
#: includes/class-wcpdf-settings.php:565
|
281 |
+
msgid "Suffix"
|
282 |
+
msgstr "Sufixo"
|
283 |
+
|
284 |
+
#: includes/class-wcpdf-settings.php:570
|
285 |
+
msgid "Padding"
|
286 |
+
msgstr "Margem"
|
287 |
+
|
288 |
+
#: includes/class-wcpdf-settings.php:572
|
289 |
+
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
290 |
+
msgstr ""
|
291 |
+
"insira o número de dígitos aqui - insira \"6\" para mostra 42 como 000042"
|
292 |
+
|
293 |
+
#: includes/class-wcpdf-settings.php:575
|
294 |
+
msgid ""
|
295 |
+
"note: if you have already created a custom invoice number format with a "
|
296 |
+
"filter, the above settings will be ignored"
|
297 |
+
msgstr ""
|
298 |
+
"nota: se você já criou um formato de número personalizado de fatura com um "
|
299 |
+
"filtro, as opções acima serão ignoradas"
|
300 |
+
|
301 |
+
#: includes/class-wcpdf-settings.php:581
|
302 |
+
msgid "Reset invoice number yearly"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: includes/class-wcpdf-settings.php:594
|
306 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
307 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
308 |
+
#: woocommerce-pdf-invoices-packingslips.php:223
|
309 |
+
msgid "Packing Slip"
|
310 |
+
msgstr "Etiqueta do pacote"
|
311 |
+
|
312 |
+
#: includes/class-wcpdf-settings.php:601
|
313 |
+
msgid "Display billing address"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: includes/class-wcpdf-settings.php:608
|
317 |
+
msgid ""
|
318 |
+
"Display billing address on packing slip (in addition to the default shipping "
|
319 |
+
"address) if different from shipping address"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/class-wcpdf-settings.php:639
|
323 |
+
msgid "Extra template fields"
|
324 |
+
msgstr "Campos Extras de Modelos"
|
325 |
+
|
326 |
+
#: includes/class-wcpdf-settings.php:646
|
327 |
+
msgid "Extra field 1"
|
328 |
+
msgstr "Campo extra 1"
|
329 |
+
|
330 |
+
#: includes/class-wcpdf-settings.php:655
|
331 |
+
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
332 |
+
msgstr "Essa é a primeira coluna do rodapé"
|
333 |
+
|
334 |
+
#: includes/class-wcpdf-settings.php:662
|
335 |
+
msgid "Extra field 2"
|
336 |
+
msgstr "Campo extra 2"
|
337 |
+
|
338 |
+
#: includes/class-wcpdf-settings.php:671
|
339 |
+
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
340 |
+
msgstr "Essa é a primeira coluna do rodapé"
|
341 |
+
|
342 |
+
#: includes/class-wcpdf-settings.php:678
|
343 |
+
msgid "Extra field 3"
|
344 |
+
msgstr "Campo extra 3"
|
345 |
+
|
346 |
+
#: includes/class-wcpdf-settings.php:687
|
347 |
+
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
348 |
+
msgstr "Essa é a primeira coluna do rodapé"
|
349 |
+
|
350 |
+
#: includes/class-wcpdf-settings.php:730
|
351 |
+
msgid "Debug settings"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/class-wcpdf-settings.php:737
|
355 |
+
msgid "Enable debug output"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: includes/class-wcpdf-settings.php:744
|
359 |
+
msgid ""
|
360 |
+
"Enable this option to output plugin errors if you're getting a blank page or "
|
361 |
+
"other PDF generation issues"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: includes/class-wcpdf-settings.php:750
|
365 |
+
msgid "Output to HTML"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: includes/class-wcpdf-settings.php:757
|
369 |
+
msgid ""
|
370 |
+
"Send the template output as HTML to the browser instead of creating a PDF."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/class-wcpdf-settings.php:763
|
374 |
+
msgid "Use old tmp folder"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/class-wcpdf-settings.php:770
|
378 |
+
msgid ""
|
379 |
+
"Before version 1.5 of PDF Invoices, temporary files were stored in the "
|
380 |
+
"plugin folder. This setting is only intended for backwards compatibility, "
|
381 |
+
"not recommended on new installs!"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/class-wcpdf-settings.php:1143
|
385 |
+
msgid "Image resolution"
|
386 |
+
msgstr "Resolução da Imagem"
|
387 |
+
|
388 |
+
#: includes/class-wcpdf-settings.php:1259
|
389 |
+
msgid ""
|
390 |
+
"<b>Warning!</b> The settings below are meant for debugging/development only. "
|
391 |
+
"Do not use them on a live website!"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: includes/class-wcpdf-settings.php:1268
|
395 |
+
msgid ""
|
396 |
+
"These are used for the (optional) footer columns in the <em>Modern "
|
397 |
+
"(Premium)</em> template, but can also be used for other elements in your "
|
398 |
+
"custom template"
|
399 |
+
msgstr ""
|
400 |
+
"Esses são usados para colunas opcionais do rodapé no modelo <em>Premium</"
|
401 |
+
"em>, mas também podem ser usados no seu modelo personalizado"
|
402 |
+
|
403 |
+
#: includes/class-wcpdf-writepanels.php:33
|
404 |
+
msgid "PDF Packing Slips"
|
405 |
+
msgstr "Etiquetas do Pacote em PDF"
|
406 |
+
|
407 |
+
#: includes/class-wcpdf-writepanels.php:119
|
408 |
+
#: includes/class-wcpdf-writepanels.php:251
|
409 |
+
#: includes/class-wcpdf-writepanels.php:252
|
410 |
+
msgid "PDF Invoice"
|
411 |
+
msgstr "Faturas em PDF"
|
412 |
+
|
413 |
+
#: includes/class-wcpdf-writepanels.php:124
|
414 |
+
#: includes/class-wcpdf-writepanels.php:256
|
415 |
+
#: includes/class-wcpdf-writepanels.php:257
|
416 |
+
msgid "PDF Packing Slip"
|
417 |
+
msgstr "Etiqueta do Pacote em PDF"
|
418 |
+
|
419 |
+
#: includes/class-wcpdf-writepanels.php:151
|
420 |
+
msgid "Invoice Number"
|
421 |
+
msgstr "Número da Fatura"
|
422 |
+
|
423 |
+
#: includes/class-wcpdf-writepanels.php:210
|
424 |
+
msgid "Download invoice (PDF)"
|
425 |
+
msgstr "Baixar Fatura (PDF)"
|
426 |
+
|
427 |
+
#: includes/class-wcpdf-writepanels.php:224
|
428 |
+
msgid "Create PDF"
|
429 |
+
msgstr "Criar PDF"
|
430 |
+
|
431 |
+
#: includes/class-wcpdf-writepanels.php:234
|
432 |
+
msgid "PDF Invoice data"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: includes/class-wcpdf-writepanels.php:287
|
436 |
+
msgid "Invoice Number (unformatted!)"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/class-wcpdf-writepanels.php:295 templates/pdf/Simple/invoice.php:55
|
440 |
+
msgid "Invoice Date:"
|
441 |
+
msgstr "Data da Fatura:"
|
442 |
+
|
443 |
+
#: includes/class-wcpdf-writepanels.php:297
|
444 |
+
msgid "h"
|
445 |
+
msgstr "h"
|
446 |
+
|
447 |
+
#: includes/class-wcpdf-writepanels.php:297
|
448 |
+
msgid "m"
|
449 |
+
msgstr "m"
|
450 |
+
|
451 |
+
#: includes/wcpdf-extensions.php:15
|
452 |
+
msgid "Check out these premium extensions!"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: includes/wcpdf-extensions.php:16
|
456 |
+
msgid "click items to read more"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: includes/wcpdf-extensions.php:23
|
460 |
+
msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/wcpdf-extensions.php:25
|
464 |
+
msgid ""
|
465 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
466 |
+
"features:"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/wcpdf-extensions.php:27
|
470 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/wcpdf-extensions.php:28
|
474 |
+
msgid ""
|
475 |
+
"Send out a separate <b>notification email</b> with (or without) PDF invoices/"
|
476 |
+
"packing slips, for example to a drop-shipper or a supplier."
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: includes/wcpdf-extensions.php:29
|
480 |
+
msgid ""
|
481 |
+
"Attach <b>up to 3 static files</b> (for example a terms & conditions "
|
482 |
+
"document) to the WooCommerce emails of your choice."
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/wcpdf-extensions.php:30
|
486 |
+
msgid ""
|
487 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
488 |
+
"and credit notes or utilize the main invoice numbering system"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: includes/wcpdf-extensions.php:31
|
492 |
+
msgid ""
|
493 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
494 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
495 |
+
"custom template."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/wcpdf-extensions.php:32
|
499 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/wcpdf-extensions.php:34
|
503 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/wcpdf-extensions.php:42
|
507 |
+
msgid "Upload all invoices automatically to your dropbox"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/wcpdf-extensions.php:48
|
511 |
+
msgid ""
|
512 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
513 |
+
"documents from the professional extension) that are emailed to your "
|
514 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
515 |
+
"date!"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/wcpdf-extensions.php:49
|
519 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/wcpdf-extensions.php:61
|
523 |
+
msgid ""
|
524 |
+
"Automatically send new orders or packing slips to your printer, as soon as "
|
525 |
+
"the customer orders!"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/wcpdf-extensions.php:67
|
529 |
+
msgid ""
|
530 |
+
"Check out the WooCommerce Automatic Order Printing extension from our "
|
531 |
+
"partners at Simba Hosting"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/wcpdf-extensions.php:68
|
535 |
+
msgid "WooCommerce Automatic Order Printing"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/wcpdf-extensions.php:82
|
539 |
+
msgid "Advanced, customizable templates"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/wcpdf-extensions.php:85
|
543 |
+
msgid ""
|
544 |
+
"Completely customize the invoice contents (prices, taxes, thumbnails) to "
|
545 |
+
"your needs with a drag & drop customizer"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/wcpdf-extensions.php:86
|
549 |
+
msgid "Two extra stylish premade templates (Modern & Business)"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/wcpdf-extensions.php:87
|
553 |
+
#, php-format
|
554 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: includes/wcpdf-extensions.php:88
|
558 |
+
#, php-format
|
559 |
+
msgid "For custom templates, contact us at %s."
|
560 |
+
msgstr "Para modelos personalizados, nos contate em %s."
|
561 |
+
|
562 |
+
#: templates/pdf/Simple/invoice.php:29 templates/pdf/Simple/packing-slip.php:40
|
563 |
+
msgid "Billing Address:"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: templates/pdf/Simple/invoice.php:40
|
567 |
+
msgid "Ship To:"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: templates/pdf/Simple/invoice.php:49
|
571 |
+
msgid "Invoice Number:"
|
572 |
+
msgstr "Número da Fatura:"
|
573 |
+
|
574 |
+
#: templates/pdf/Simple/invoice.php:60 templates/pdf/Simple/packing-slip.php:48
|
575 |
+
msgid "Order Number:"
|
576 |
+
msgstr "Número do Pedido:"
|
577 |
+
|
578 |
+
#: templates/pdf/Simple/invoice.php:64 templates/pdf/Simple/packing-slip.php:52
|
579 |
+
msgid "Order Date:"
|
580 |
+
msgstr "Data do Pedido:"
|
581 |
+
|
582 |
+
#: templates/pdf/Simple/invoice.php:68
|
583 |
+
msgid "Payment Method:"
|
584 |
+
msgstr "Método de Pagamento:"
|
585 |
+
|
586 |
+
#: templates/pdf/Simple/invoice.php:82 templates/pdf/Simple/packing-slip.php:70
|
587 |
+
msgid "Product"
|
588 |
+
msgstr "Produto"
|
589 |
+
|
590 |
+
#: templates/pdf/Simple/invoice.php:83 templates/pdf/Simple/packing-slip.php:71
|
591 |
+
msgid "Quantity"
|
592 |
+
msgstr "Quantidade"
|
593 |
+
|
594 |
+
#: templates/pdf/Simple/invoice.php:84
|
595 |
+
msgid "Price"
|
596 |
+
msgstr "Preço"
|
597 |
+
|
598 |
+
#: templates/pdf/Simple/invoice.php:91 templates/pdf/Simple/packing-slip.php:78
|
599 |
+
msgid "Description"
|
600 |
+
msgstr "Descrição"
|
601 |
+
|
602 |
+
#: templates/pdf/Simple/invoice.php:96 templates/pdf/Simple/packing-slip.php:83
|
603 |
+
msgid "SKU"
|
604 |
+
msgstr "SKU"
|
605 |
+
|
606 |
+
#: templates/pdf/Simple/invoice.php:97 templates/pdf/Simple/packing-slip.php:84
|
607 |
+
msgid "SKU:"
|
608 |
+
msgstr "SKU:"
|
609 |
+
|
610 |
+
#: templates/pdf/Simple/invoice.php:98 templates/pdf/Simple/packing-slip.php:85
|
611 |
+
msgid "Weight:"
|
612 |
+
msgstr "Peso:"
|
613 |
+
|
614 |
+
#: templates/pdf/Simple/invoice.php:112
|
615 |
+
#: templates/pdf/Simple/packing-slip.php:99
|
616 |
+
msgid "Customer Notes"
|
617 |
+
msgstr "Notas do Cliente"
|
618 |
+
|
619 |
+
#: templates/pdf/Simple/packing-slip.php:29
|
620 |
+
msgid "Shipping Address:"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: templates/pdf/Simple/packing-slip.php:56
|
624 |
+
msgid "Shipping Method:"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: woocommerce-pdf-invoices-packingslips.php:123
|
628 |
+
#, php-format
|
629 |
+
msgid ""
|
630 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
631 |
+
"installed & activated!"
|
632 |
+
msgstr ""
|
633 |
+
"WooCommerce PDF Invoices & Packing Slips precisa do %sWooCommerce%s "
|
634 |
+
"instalado e ativado para funcionar!"
|
635 |
+
|
636 |
+
#: woocommerce-pdf-invoices-packingslips.php:367
|
637 |
+
#: woocommerce-pdf-invoices-packingslips.php:428
|
638 |
+
msgid "N/A"
|
639 |
+
msgstr "N/A"
|
640 |
+
|
641 |
+
#: woocommerce-pdf-invoices-packingslips.php:523
|
642 |
+
msgid "Payment method"
|
643 |
+
msgstr "Método de Pagamento"
|
644 |
+
|
645 |
+
#: woocommerce-pdf-invoices-packingslips.php:542
|
646 |
+
msgid "Shipping method"
|
647 |
+
msgstr "Método de Entrega"
|
648 |
+
|
649 |
+
#: woocommerce-pdf-invoices-packingslips.php:701
|
650 |
+
#, php-format
|
651 |
+
msgid "(Includes %s)"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: woocommerce-pdf-invoices-packingslips.php:722
|
655 |
+
msgid "Subtotal"
|
656 |
+
msgstr "Sub-total"
|
657 |
+
|
658 |
+
#: woocommerce-pdf-invoices-packingslips.php:744
|
659 |
+
msgid "Shipping"
|
660 |
+
msgstr "Frete"
|
661 |
+
|
662 |
+
#: woocommerce-pdf-invoices-packingslips.php:807
|
663 |
+
msgid "Discount"
|
664 |
+
msgstr "Desconto"
|
665 |
+
|
666 |
+
#: woocommerce-pdf-invoices-packingslips.php:848
|
667 |
+
msgid "VAT"
|
668 |
+
msgstr "Impostos"
|
669 |
+
|
670 |
+
#: woocommerce-pdf-invoices-packingslips.php:849
|
671 |
+
msgid "Tax rate"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: woocommerce-pdf-invoices-packingslips.php:886
|
675 |
+
msgid "Total ex. VAT"
|
676 |
+
msgstr "Total s/ impostos"
|
677 |
+
|
678 |
+
#: woocommerce-pdf-invoices-packingslips.php:889
|
679 |
+
msgid "Total"
|
680 |
+
msgstr "Total"
|
681 |
+
|
682 |
+
#~ msgid ""
|
683 |
+
#~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
684 |
+
#~ "Packing Slips templates at %s."
|
685 |
+
#~ msgstr ""
|
686 |
+
#~ "Está procurando por modelos mais avançados? Confira os modelos Premiums "
|
687 |
+
#~ "em %s."
|
688 |
+
|
689 |
+
#~ msgid "PDF Invoice Number (unformatted!)"
|
690 |
+
#~ msgstr "Número da Fatura em PDF (não formatado!)"
|
691 |
+
|
692 |
+
#~ msgid ""
|
693 |
+
#~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
694 |
+
#~ "extension."
|
695 |
+
#~ msgstr ""
|
696 |
+
#~ "Envie todas as faturas automaticamente para o seu dropbox! <br/> Dê uma "
|
697 |
+
#~ "olhada na extensão %s."
|
languages/wpo_wcpdf.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: 2015-04-29 08:58+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
@@ -17,89 +17,89 @@ msgstr ""
|
|
17 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: includes/class-wcpdf-export.php:
|
21 |
-
#: includes/class-wcpdf-export.php:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: includes/class-wcpdf-export.php:
|
26 |
msgid "Some of the export parameters are missing."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: includes/class-wcpdf-export.php:
|
30 |
msgid "invoice"
|
31 |
msgid_plural "invoices"
|
32 |
msgstr[0] ""
|
33 |
msgstr[1] ""
|
34 |
|
35 |
-
#: includes/class-wcpdf-export.php:
|
36 |
msgid "packing-slip"
|
37 |
msgid_plural "packing-slips"
|
38 |
msgstr[0] ""
|
39 |
msgstr[1] ""
|
40 |
|
41 |
-
#: includes/class-wcpdf-settings.php:
|
42 |
#: includes/class-wcpdf-writepanels.php:32
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/class-wcpdf-settings.php:
|
47 |
msgid "Settings"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/class-wcpdf-settings.php:
|
51 |
msgid "General"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/class-wcpdf-settings.php:
|
55 |
msgid "Template"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/class-wcpdf-settings.php:
|
59 |
msgid "Status"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes/class-wcpdf-settings.php:
|
63 |
msgid "WooCommerce PDF Invoices"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/class-wcpdf-settings.php:
|
67 |
msgid "General settings"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: includes/class-wcpdf-settings.php:
|
71 |
msgid "How do you want to view the PDF?"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: includes/class-wcpdf-settings.php:
|
75 |
msgid "Download the PDF"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/class-wcpdf-settings.php:
|
79 |
msgid "Open the PDF in a new browser tab/window"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: includes/class-wcpdf-settings.php:
|
83 |
msgid "Admin New Order email"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: includes/class-wcpdf-settings.php:
|
87 |
msgid "Customer Processing Order email"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/class-wcpdf-settings.php:
|
91 |
msgid "Customer Completed Order email"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes/class-wcpdf-settings.php:
|
95 |
msgid "Customer Invoice email"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/class-wcpdf-settings.php:
|
99 |
msgid "Attach invoice to:"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/class-wcpdf-settings.php:
|
103 |
#, php-format
|
104 |
msgid ""
|
105 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -107,137 +107,137 @@ msgid ""
|
|
107 |
"plugin will not be able to email invoices."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/class-wcpdf-settings.php:
|
111 |
msgid "Disable for free products"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/class-wcpdf-settings.php:
|
115 |
msgid ""
|
116 |
"Disable automatic creation/attachment of invoices when only free products "
|
117 |
"are ordered"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Interface"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
125 |
msgid "Allow My Account invoice download"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: includes/class-wcpdf-settings.php:
|
129 |
msgid "Only when an invoice is already created/emailed"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: includes/class-wcpdf-settings.php:
|
133 |
msgid "Only for specific order statuses (define below)"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/class-wcpdf-settings.php:
|
137 |
msgid "Always"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-wcpdf-settings.php:
|
141 |
msgid "Never"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/class-wcpdf-settings.php:
|
145 |
msgid "Enable invoice number column in the orders list"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/class-wcpdf-settings.php:
|
149 |
msgid "PDF Template settings"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/class-wcpdf-settings.php:
|
153 |
msgid "Choose a template"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/class-wcpdf-settings.php:
|
157 |
#, php-format
|
158 |
msgid ""
|
159 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
160 |
"your (child) theme in <code>%s</code> to customize them"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Paper size"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "A4"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Letter"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Shop header/logo"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Select or upload your invoice header/logo"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Set image"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Remove image"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Shop Name"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Shop Address"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "Footer: terms & conditions, policies, etc."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
#: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
|
205 |
#: templates/pdf/Simple/invoice.php:21
|
206 |
#: woocommerce-pdf-invoices-packingslips.php:220
|
207 |
msgid "Invoice"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid "Display shipping address"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-wcpdf-settings.php:
|
215 |
msgid ""
|
216 |
"Display shipping address on invoice (in addition to the default billing "
|
217 |
"address) if different from billing address"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/class-wcpdf-settings.php:
|
221 |
msgid "Display email address"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/class-wcpdf-settings.php:
|
225 |
msgid "Display phone number"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/class-wcpdf-settings.php:
|
229 |
msgid "Display invoice date"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-wcpdf-settings.php:
|
233 |
msgid "Display built-in sequential invoice number"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-wcpdf-settings.php:
|
241 |
msgid ""
|
242 |
"This is the number that will be used on the next invoice that is created. By "
|
243 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -246,132 +246,132 @@ msgid ""
|
|
246 |
"this could create double invoice numbers!"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/class-wcpdf-settings.php:
|
250 |
msgid "Invoice number format"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-wcpdf-settings.php:
|
254 |
msgid "Prefix"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-wcpdf-settings.php:
|
258 |
msgid ""
|
259 |
-
"to use the
|
260 |
"respectively"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-wcpdf-settings.php:
|
264 |
msgid "Suffix"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-wcpdf-settings.php:
|
268 |
msgid "Padding"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
msgid ""
|
277 |
"note: if you have already created a custom invoice number format with a "
|
278 |
"filter, the above settings will be ignored"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-wcpdf-settings.php:
|
282 |
msgid "Reset invoice number yearly"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-wcpdf-settings.php:
|
286 |
#: templates/pdf/Simple/packing-slip.php:9
|
287 |
#: templates/pdf/Simple/packing-slip.php:21
|
288 |
#: woocommerce-pdf-invoices-packingslips.php:223
|
289 |
msgid "Packing Slip"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: includes/class-wcpdf-settings.php:
|
293 |
msgid "Display billing address"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/class-wcpdf-settings.php:
|
297 |
msgid ""
|
298 |
"Display billing address on packing slip (in addition to the default shipping "
|
299 |
"address) if different from shipping address"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/class-wcpdf-settings.php:
|
303 |
msgid "Extra template fields"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/class-wcpdf-settings.php:
|
307 |
msgid "Extra field 1"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/class-wcpdf-settings.php:
|
311 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/class-wcpdf-settings.php:
|
315 |
msgid "Extra field 2"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/class-wcpdf-settings.php:
|
319 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/class-wcpdf-settings.php:
|
323 |
msgid "Extra field 3"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/class-wcpdf-settings.php:
|
327 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/class-wcpdf-settings.php:
|
331 |
msgid "Debug settings"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/class-wcpdf-settings.php:
|
335 |
msgid "Enable debug output"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/class-wcpdf-settings.php:
|
339 |
msgid ""
|
340 |
"Enable this option to output plugin errors if you're getting a blank page or "
|
341 |
"other PDF generation issues"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: includes/class-wcpdf-settings.php:
|
345 |
msgid "Output to HTML"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/class-wcpdf-settings.php:
|
349 |
msgid ""
|
350 |
"Send the template output as HTML to the browser instead of creating a PDF."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/class-wcpdf-settings.php:
|
354 |
msgid "Use old tmp folder"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: includes/class-wcpdf-settings.php:
|
358 |
msgid ""
|
359 |
"Before version 1.5 of PDF Invoices, temporary files were stored in the "
|
360 |
"plugin folder. This setting is only intended for backwards compatibility, "
|
361 |
"not recommended on new installs!"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/class-wcpdf-settings.php:
|
365 |
msgid "Image resolution"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/class-wcpdf-settings.php:
|
369 |
msgid ""
|
370 |
"<b>Warning!</b> The settings below are meant for debugging/development only. "
|
371 |
"Do not use them on a live website!"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/class-wcpdf-settings.php:
|
375 |
msgid ""
|
376 |
"These are used for the (optional) footer columns in the <em>Modern "
|
377 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -616,39 +616,39 @@ msgstr ""
|
|
616 |
msgid "Payment method"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
620 |
msgid "Shipping method"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
624 |
#, php-format
|
625 |
msgid "(Includes %s)"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
629 |
msgid "Subtotal"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
633 |
msgid "Shipping"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
637 |
msgid "Discount"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
641 |
msgid "VAT"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
645 |
msgid "Tax rate"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
649 |
msgid "Total ex. VAT"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
653 |
msgid "Total"
|
654 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
5 |
+
"POT-Creation-Date: 2016-02-02 15:18+0100\n"
|
6 |
"PO-Revision-Date: 2015-04-29 08:58+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: includes/class-wcpdf-export.php:373 includes/class-wcpdf-export.php:387
|
21 |
+
#: includes/class-wcpdf-export.php:394 includes/class-wcpdf-export.php:402
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: includes/class-wcpdf-export.php:378
|
26 |
msgid "Some of the export parameters are missing."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: includes/class-wcpdf-export.php:459
|
30 |
msgid "invoice"
|
31 |
msgid_plural "invoices"
|
32 |
msgstr[0] ""
|
33 |
msgstr[1] ""
|
34 |
|
35 |
+
#: includes/class-wcpdf-export.php:463
|
36 |
msgid "packing-slip"
|
37 |
msgid_plural "packing-slips"
|
38 |
msgstr[0] ""
|
39 |
msgstr[1] ""
|
40 |
|
41 |
+
#: includes/class-wcpdf-settings.php:37 includes/class-wcpdf-settings.php:38
|
42 |
#: includes/class-wcpdf-writepanels.php:32
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/class-wcpdf-settings.php:79
|
47 |
msgid "Settings"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/class-wcpdf-settings.php:101
|
51 |
msgid "General"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/class-wcpdf-settings.php:102
|
55 |
msgid "Template"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/class-wcpdf-settings.php:107
|
59 |
msgid "Status"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/class-wcpdf-settings.php:119
|
63 |
msgid "WooCommerce PDF Invoices"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/class-wcpdf-settings.php:188
|
67 |
msgid "General settings"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: includes/class-wcpdf-settings.php:195
|
71 |
msgid "How do you want to view the PDF?"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/class-wcpdf-settings.php:203
|
75 |
msgid "Download the PDF"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: includes/class-wcpdf-settings.php:204
|
79 |
msgid "Open the PDF in a new browser tab/window"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: includes/class-wcpdf-settings.php:213
|
83 |
msgid "Admin New Order email"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: includes/class-wcpdf-settings.php:214
|
87 |
msgid "Customer Processing Order email"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: includes/class-wcpdf-settings.php:215
|
91 |
msgid "Customer Completed Order email"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/class-wcpdf-settings.php:216
|
95 |
msgid "Customer Invoice email"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/class-wcpdf-settings.php:225
|
99 |
msgid "Attach invoice to:"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/class-wcpdf-settings.php:233
|
103 |
#, php-format
|
104 |
msgid ""
|
105 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
107 |
"plugin will not be able to email invoices."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/class-wcpdf-settings.php:239
|
111 |
msgid "Disable for free products"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/class-wcpdf-settings.php:246
|
115 |
msgid ""
|
116 |
"Disable automatic creation/attachment of invoices when only free products "
|
117 |
"are ordered"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/class-wcpdf-settings.php:253
|
121 |
msgid "Interface"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: includes/class-wcpdf-settings.php:301
|
125 |
msgid "Allow My Account invoice download"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: includes/class-wcpdf-settings.php:309
|
129 |
msgid "Only when an invoice is already created/emailed"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: includes/class-wcpdf-settings.php:310
|
133 |
msgid "Only for specific order statuses (define below)"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/class-wcpdf-settings.php:311
|
137 |
msgid "Always"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: includes/class-wcpdf-settings.php:312
|
141 |
msgid "Never"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/class-wcpdf-settings.php:327
|
145 |
msgid "Enable invoice number column in the orders list"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/class-wcpdf-settings.php:365
|
149 |
msgid "PDF Template settings"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/class-wcpdf-settings.php:377
|
153 |
msgid "Choose a template"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:385
|
157 |
#, php-format
|
158 |
msgid ""
|
159 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
160 |
"your (child) theme in <code>%s</code> to customize them"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:391
|
164 |
msgid "Paper size"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:399
|
168 |
msgid "A4"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:400
|
172 |
msgid "Letter"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:407
|
176 |
msgid "Shop header/logo"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:414
|
180 |
msgid "Select or upload your invoice header/logo"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:415
|
184 |
msgid "Set image"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:416
|
188 |
msgid "Remove image"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:423
|
192 |
msgid "Shop Name"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:437
|
196 |
msgid "Shop Address"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/class-wcpdf-settings.php:453
|
200 |
msgid "Footer: terms & conditions, policies, etc."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:470
|
204 |
#: includes/class-wcpdf-writepanels.php:285 templates/pdf/Simple/invoice.php:9
|
205 |
#: templates/pdf/Simple/invoice.php:21
|
206 |
#: woocommerce-pdf-invoices-packingslips.php:220
|
207 |
msgid "Invoice"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-wcpdf-settings.php:477
|
211 |
msgid "Display shipping address"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:484
|
215 |
msgid ""
|
216 |
"Display shipping address on invoice (in addition to the default billing "
|
217 |
"address) if different from billing address"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:490 includes/class-wcpdf-settings.php:617
|
221 |
msgid "Display email address"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/class-wcpdf-settings.php:502 includes/class-wcpdf-settings.php:629
|
225 |
msgid "Display phone number"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/class-wcpdf-settings.php:514
|
229 |
msgid "Display invoice date"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-wcpdf-settings.php:527
|
233 |
msgid "Display built-in sequential invoice number"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:540
|
237 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:548
|
241 |
msgid ""
|
242 |
"This is the number that will be used on the next invoice that is created. By "
|
243 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
246 |
"this could create double invoice numbers!"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/class-wcpdf-settings.php:554
|
250 |
msgid "Invoice number format"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/class-wcpdf-settings.php:563
|
254 |
msgid "Prefix"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/class-wcpdf-settings.php:565
|
258 |
msgid ""
|
259 |
+
"to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
|
260 |
"respectively"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/class-wcpdf-settings.php:568
|
264 |
msgid "Suffix"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/class-wcpdf-settings.php:573
|
268 |
msgid "Padding"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/class-wcpdf-settings.php:575
|
272 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/class-wcpdf-settings.php:578
|
276 |
msgid ""
|
277 |
"note: if you have already created a custom invoice number format with a "
|
278 |
"filter, the above settings will be ignored"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-wcpdf-settings.php:584
|
282 |
msgid "Reset invoice number yearly"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:597
|
286 |
#: templates/pdf/Simple/packing-slip.php:9
|
287 |
#: templates/pdf/Simple/packing-slip.php:21
|
288 |
#: woocommerce-pdf-invoices-packingslips.php:223
|
289 |
msgid "Packing Slip"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: includes/class-wcpdf-settings.php:604
|
293 |
msgid "Display billing address"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/class-wcpdf-settings.php:611
|
297 |
msgid ""
|
298 |
"Display billing address on packing slip (in addition to the default shipping "
|
299 |
"address) if different from shipping address"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/class-wcpdf-settings.php:642
|
303 |
msgid "Extra template fields"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/class-wcpdf-settings.php:649
|
307 |
msgid "Extra field 1"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/class-wcpdf-settings.php:658
|
311 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: includes/class-wcpdf-settings.php:665
|
315 |
msgid "Extra field 2"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/class-wcpdf-settings.php:674
|
319 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: includes/class-wcpdf-settings.php:681
|
323 |
msgid "Extra field 3"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/class-wcpdf-settings.php:690
|
327 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/class-wcpdf-settings.php:733
|
331 |
msgid "Debug settings"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/class-wcpdf-settings.php:740
|
335 |
msgid "Enable debug output"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/class-wcpdf-settings.php:747
|
339 |
msgid ""
|
340 |
"Enable this option to output plugin errors if you're getting a blank page or "
|
341 |
"other PDF generation issues"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: includes/class-wcpdf-settings.php:753
|
345 |
msgid "Output to HTML"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/class-wcpdf-settings.php:760
|
349 |
msgid ""
|
350 |
"Send the template output as HTML to the browser instead of creating a PDF."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/class-wcpdf-settings.php:766
|
354 |
msgid "Use old tmp folder"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/class-wcpdf-settings.php:773
|
358 |
msgid ""
|
359 |
"Before version 1.5 of PDF Invoices, temporary files were stored in the "
|
360 |
"plugin folder. This setting is only intended for backwards compatibility, "
|
361 |
"not recommended on new installs!"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: includes/class-wcpdf-settings.php:1163
|
365 |
msgid "Image resolution"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: includes/class-wcpdf-settings.php:1279
|
369 |
msgid ""
|
370 |
"<b>Warning!</b> The settings below are meant for debugging/development only. "
|
371 |
"Do not use them on a live website!"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/class-wcpdf-settings.php:1288
|
375 |
msgid ""
|
376 |
"These are used for the (optional) footer columns in the <em>Modern "
|
377 |
"(Premium)</em> template, but can also be used for other elements in your "
|
616 |
msgid "Payment method"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: woocommerce-pdf-invoices-packingslips.php:542
|
620 |
msgid "Shipping method"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: woocommerce-pdf-invoices-packingslips.php:701
|
624 |
#, php-format
|
625 |
msgid "(Includes %s)"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: woocommerce-pdf-invoices-packingslips.php:722
|
629 |
msgid "Subtotal"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: woocommerce-pdf-invoices-packingslips.php:744
|
633 |
msgid "Shipping"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: woocommerce-pdf-invoices-packingslips.php:807
|
637 |
msgid "Discount"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: woocommerce-pdf-invoices-packingslips.php:848
|
641 |
msgid "VAT"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: woocommerce-pdf-invoices-packingslips.php:849
|
645 |
msgid "Tax rate"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: woocommerce-pdf-invoices-packingslips.php:886
|
649 |
msgid "Total ex. VAT"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: woocommerce-pdf-invoices-packingslips.php:889
|
653 |
msgid "Total"
|
654 |
msgstr ""
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: pomegranate
|
3 |
Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
|
4 |
Requires at least: 3.5
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -235,6 +235,14 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
235 |
|
236 |
== Changelog ==
|
237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
= 1.5.26 =
|
239 |
* Feature: Automatically list all emails registered in WooCommerce
|
240 |
* Feature: Reset invoice number yearly
|
2 |
Contributors: pomegranate
|
3 |
Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 4.4.1
|
6 |
+
Stable tag: 1.5.27
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
235 |
|
236 |
== Changelog ==
|
237 |
|
238 |
+
= 1.5.27 =
|
239 |
+
* Feature: Use [invoice_year] and [invoice_month] placeholders in invoice number prefix/suffix
|
240 |
+
* Feature: WooCommerce Order Status & Actions Manager emails compatibility
|
241 |
+
* Feature: Add invoice number to WC REST API
|
242 |
+
* Fix: Allow positive 'discounts' (price corrections)
|
243 |
+
* Fix: Discounts rounding
|
244 |
+
* Translations: Updated Finnish & Portugese & POT
|
245 |
+
|
246 |
= 1.5.26 =
|
247 |
* Feature: Automatically list all emails registered in WooCommerce
|
248 |
* Feature: Reset invoice number yearly
|
woocommerce-pdf-invoices-packingslips.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce PDF Invoices & Packing Slips
|
4 |
* Plugin URI: http://www.wpovernight.com
|
5 |
* Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
|
6 |
-
* Version: 1.5.
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
@@ -33,7 +33,7 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
33 |
self::$plugin_basename = plugin_basename(__FILE__);
|
34 |
self::$plugin_url = plugin_dir_url(self::$plugin_basename);
|
35 |
self::$plugin_path = trailingslashit(dirname(__FILE__));
|
36 |
-
self::$version = '1.5.
|
37 |
|
38 |
// load the localisation & classes
|
39 |
add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
|
@@ -520,8 +520,16 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
520 |
* Return/Show payment method
|
521 |
*/
|
522 |
public function get_payment_method() {
|
523 |
-
$
|
524 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
}
|
526 |
public function payment_method() {
|
527 |
echo $this->get_payment_method();
|
@@ -796,11 +804,12 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
796 |
}
|
797 |
|
798 |
$discount = array (
|
799 |
-
'label'
|
800 |
-
'value'
|
|
|
801 |
);
|
802 |
|
803 |
-
if ( $discount_value
|
804 |
return apply_filters( 'wpo_wcpdf_order_discount', $discount, $type, $tax );
|
805 |
}
|
806 |
}
|
3 |
* Plugin Name: WooCommerce PDF Invoices & Packing Slips
|
4 |
* Plugin URI: http://www.wpovernight.com
|
5 |
* Description: Create, print & email PDF invoices & packing slips for WooCommerce orders.
|
6 |
+
* Version: 1.5.27
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
33 |
self::$plugin_basename = plugin_basename(__FILE__);
|
34 |
self::$plugin_url = plugin_dir_url(self::$plugin_basename);
|
35 |
self::$plugin_path = trailingslashit(dirname(__FILE__));
|
36 |
+
self::$version = '1.5.27';
|
37 |
|
38 |
// load the localisation & classes
|
39 |
add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
|
520 |
* Return/Show payment method
|
521 |
*/
|
522 |
public function get_payment_method() {
|
523 |
+
$payment_method_label = __( 'Payment method', 'wpo_wcpdf' );
|
524 |
+
|
525 |
+
$payment_method = __( $this->export->order->payment_method_title, 'woocommerce' );
|
526 |
+
if ( !$payment_method && $parent_order_id = wp_get_post_parent_id( $this->export->order->id ) ) {
|
527 |
+
// try parent
|
528 |
+
$payment_method = get_post_meta( $parent_order_id, '_payment_method_title', true );
|
529 |
+
$payment_method = __( $payment_method, 'woocommerce' );
|
530 |
+
}
|
531 |
+
|
532 |
+
return apply_filters( 'wpo_wcpdf_payment_method', $payment_method );
|
533 |
}
|
534 |
public function payment_method() {
|
535 |
echo $this->get_payment_method();
|
804 |
}
|
805 |
|
806 |
$discount = array (
|
807 |
+
'label' => __('Discount', 'wpo_wcpdf'),
|
808 |
+
'value' => $this->export->wc_price($discount_value),
|
809 |
+
'raw_value' => $discount_value,
|
810 |
);
|
811 |
|
812 |
+
if ( round( $discount_value, 3 ) != 0 ) {
|
813 |
return apply_filters( 'wpo_wcpdf_order_discount', $discount, $type, $tax );
|
814 |
}
|
815 |
}
|