Version Description
- Fix: Product text attributes (now checks key too)
- Fix: Status page upload explanation typos
Download this release
Release Info
Developer | pomegranate |
Plugin | WooCommerce PDF Invoices & Packing Slips |
Version | 1.5.11 |
Comparing to | |
See all releases |
Code changes from version 1.5.10 to 1.5.11
- css/style.css +4 -0
- includes/class-wcpdf-settings.php +3 -1
- includes/dompdf-status.php +5 -2
- languages/wpo_wcpdf-da_DK.mo +0 -0
- languages/wpo_wcpdf-da_DK.po +405 -174
- readme.txt +6 -2
- woocommerce-pdf-invoices-packingslips.php +7 -3
css/style.css
CHANGED
@@ -52,6 +52,10 @@
|
|
52 |
}
|
53 |
|
54 |
/* Settings page styles */
|
|
|
|
|
|
|
|
|
55 |
.nav-tab-debug {
|
56 |
margin-left: 4px;
|
57 |
}
|
52 |
}
|
53 |
|
54 |
/* Settings page styles */
|
55 |
+
#wpo-wcpdf-settings {
|
56 |
+
margin-top: 40px;
|
57 |
+
}
|
58 |
+
|
59 |
.nav-tab-debug {
|
60 |
margin-left: 4px;
|
61 |
}
|
includes/class-wcpdf-settings.php
CHANGED
@@ -130,10 +130,12 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
130 |
}
|
131 |
|
132 |
?>
|
133 |
-
<form method="post" action="options.php">
|
134 |
<?php
|
|
|
135 |
settings_fields( 'wpo_wcpdf_'.$active_tab.'_settings' );
|
136 |
do_settings_sections( 'wpo_wcpdf_'.$active_tab.'_settings' );
|
|
|
137 |
|
138 |
submit_button();
|
139 |
?>
|
130 |
}
|
131 |
|
132 |
?>
|
133 |
+
<form method="post" action="options.php" id="wpo-wcpdf-settings">
|
134 |
<?php
|
135 |
+
do_action( 'wpo_wcpdf_before_settings', $active_tab );
|
136 |
settings_fields( 'wpo_wcpdf_'.$active_tab.'_settings' );
|
137 |
do_settings_sections( 'wpo_wcpdf_'.$active_tab.'_settings' );
|
138 |
+
do_action( 'wpo_wcpdf_after_settings', $active_tab );
|
139 |
|
140 |
submit_button();
|
141 |
?>
|
includes/dompdf-status.php
CHANGED
@@ -167,6 +167,9 @@ if ( isset($wpo_wcpdf->export->debug_settings['old_tmp']) ) {
|
|
167 |
unset($permissions['WCPDF_TEMP_DIR']);
|
168 |
}
|
169 |
|
|
|
|
|
|
|
170 |
?>
|
171 |
<br />
|
172 |
<h3 id="system">Permissions</h3>
|
@@ -198,14 +201,14 @@ if ( isset($wpo_wcpdf->export->debug_settings['old_tmp']) ) {
|
|
198 |
|
199 |
<p>
|
200 |
The central temp folder (1.5+) is <code><?php echo $wpo_wcpdf->export->tmp_path(); ?></code>.
|
201 |
-
By default, this folder is created in the WordPress uploads folder (<code><?php echo
|
202 |
which can be defined by setting <code>UPLOADS</code> in wp-config.php.
|
203 |
Alternatively, you can control the specific folder for PDF invoices by using the
|
204 |
<code>wpo_wcpdf_tmp_path</code> filter. Make sure this folder is writable and that the
|
205 |
subfolders <code>attachments</code>, <code>dompdf</code> and <code>fonts</code>
|
206 |
are present (these will be created by the plugin if the central temp folder is writable).<br>
|
207 |
<br>
|
208 |
-
If the temporary folders were not automatically created by the
|
209 |
files (from <code><?php echo WooCommerce_PDF_Invoices::$plugin_path . "lib/dompdf/lib/fonts/"; ?></code>)
|
210 |
are copied to the fonts folder.
|
211 |
Normally, this is fully automated, but if your server has strict security settings, this automated
|
167 |
unset($permissions['WCPDF_TEMP_DIR']);
|
168 |
}
|
169 |
|
170 |
+
$upload_dir = wp_upload_dir();
|
171 |
+
$upload_base = trailingslashit( $upload_dir['basedir'] );
|
172 |
+
|
173 |
?>
|
174 |
<br />
|
175 |
<h3 id="system">Permissions</h3>
|
201 |
|
202 |
<p>
|
203 |
The central temp folder (1.5+) is <code><?php echo $wpo_wcpdf->export->tmp_path(); ?></code>.
|
204 |
+
By default, this folder is created in the WordPress uploads folder (<code><?php echo $upload_base; ?></code>),
|
205 |
which can be defined by setting <code>UPLOADS</code> in wp-config.php.
|
206 |
Alternatively, you can control the specific folder for PDF invoices by using the
|
207 |
<code>wpo_wcpdf_tmp_path</code> filter. Make sure this folder is writable and that the
|
208 |
subfolders <code>attachments</code>, <code>dompdf</code> and <code>fonts</code>
|
209 |
are present (these will be created by the plugin if the central temp folder is writable).<br>
|
210 |
<br>
|
211 |
+
If the temporary folders were not automatically created by the plugin, verify that all the font
|
212 |
files (from <code><?php echo WooCommerce_PDF_Invoices::$plugin_path . "lib/dompdf/lib/fonts/"; ?></code>)
|
213 |
are copied to the fonts folder.
|
214 |
Normally, this is fully automated, but if your server has strict security settings, this automated
|
languages/wpo_wcpdf-da_DK.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-da_DK.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: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: da_DK\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 "Du har ikke tilstrækkelig tilladelse til at tilgå denne side. "
|
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] "Faktura"
|
30 |
msgstr[1] "Fakturaen "
|
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] "Følgeseddel "
|
37 |
msgstr[1] "Følgesedler "
|
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 fakturaer "
|
44 |
|
45 |
-
#: includes/class-wcpdf-settings.php:
|
46 |
msgid "Settings"
|
47 |
msgstr "Indstillinger "
|
48 |
|
49 |
-
#: includes/class-wcpdf-settings.php:
|
50 |
msgid "General"
|
51 |
msgstr "Generelt "
|
52 |
|
53 |
-
#: includes/class-wcpdf-settings.php:
|
54 |
msgid "Template"
|
55 |
msgstr "Skabelon "
|
56 |
|
57 |
-
#: includes/class-wcpdf-settings.php:
|
58 |
-
msgid "WooCommerce PDF Invoices"
|
59 |
-
msgstr "WooCommerce PDF faktura"
|
60 |
-
|
61 |
-
#: includes/class-wcpdf-settings.php:98
|
62 |
msgid "Status"
|
63 |
msgstr "Status"
|
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 |
-
"Upload alle fakturaer automatisk til din Dropbox! <br/> Tjek denne %s "
|
72 |
-
"udvidelse "
|
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 |
-
"Leder du efter flere avancerede skabeloner? Se Premium PDF Invoice & Packing "
|
81 |
-
"Slips templates ved %s."
|
82 |
-
|
83 |
-
#: includes/class-wcpdf-settings.php:120
|
84 |
-
#, php-format
|
85 |
-
msgid "For custom templates, contact us at %s."
|
86 |
-
msgstr "For brugerdefinerede skabeloner, kontakt os på %s."
|
87 |
|
88 |
-
#: includes/class-wcpdf-settings.php:
|
89 |
msgid "General settings"
|
90 |
msgstr "Generelle indstillinger "
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "How do you want to view the PDF?"
|
94 |
msgstr "Hvordan ønsker du at vise PDF'en?"
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Download the PDF"
|
98 |
msgstr "Hent PDF'en"
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
101 |
msgid "Open the PDF in a new browser tab/window"
|
102 |
msgstr "Åben PDF'en i en ny browser fane/vindue "
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
-
msgid "Attach invoice to:"
|
106 |
-
msgstr "Vedhæft fakturaen til: "
|
107 |
-
|
108 |
-
#: includes/class-wcpdf-settings.php:209
|
109 |
msgid "Admin New Order email"
|
110 |
msgstr "Admin ny ordre e-mail"
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Customer Processing Order email"
|
114 |
msgstr "Kunde behandler ordre e-mail"
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Customer Completed Order email"
|
118 |
msgstr "Kunde fuldført ordre e-mail "
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Customer Invoice email"
|
122 |
msgstr "Kunde faktura e-mail"
|
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 "
|
@@ -133,92 +112,132 @@ msgstr ""
|
|
133 |
"redigere i mappen, vil dette plugin ikke være i stand til at sende e-mails "
|
134 |
"med fakturaer. "
|
135 |
|
136 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Enable invoice number column in the orders list"
|
138 |
msgstr "Aktiver faktura nummer kolonne i ordre listen "
|
139 |
|
140 |
-
#: includes/class-wcpdf-settings.php:
|
141 |
msgid "PDF Template settings"
|
142 |
msgstr "PDF skabelon indstillinger "
|
143 |
|
144 |
-
#: includes/class-wcpdf-settings.php:
|
145 |
msgid "Choose a template"
|
146 |
msgstr "Vælg en skabelon"
|
147 |
|
148 |
-
#: includes/class-wcpdf-settings.php:
|
149 |
#, php-format
|
150 |
msgid ""
|
151 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
152 |
-
"<code>%s</code> to customize them"
|
153 |
msgstr ""
|
154 |
-
"Ønsker du at benytte din egen skabelon? Kopier alle filerne fra <code>%s</"
|
155 |
-
"code> til <code>%s</code> for at tilpasse den"
|
156 |
|
157 |
-
#: includes/class-wcpdf-settings.php:
|
158 |
msgid "Paper size"
|
159 |
msgstr "Papir størrelse "
|
160 |
|
161 |
-
#: includes/class-wcpdf-settings.php:
|
162 |
msgid "A4"
|
163 |
msgstr "A4"
|
164 |
|
165 |
-
#: includes/class-wcpdf-settings.php:
|
166 |
msgid "Letter"
|
167 |
msgstr "Brev"
|
168 |
|
169 |
-
#: includes/class-wcpdf-settings.php:
|
170 |
msgid "Shop header/logo"
|
171 |
msgstr "Butik header/logo "
|
172 |
|
173 |
-
#: includes/class-wcpdf-settings.php:
|
174 |
msgid "Select or upload your invoice header/logo"
|
175 |
msgstr "Vælg eller upload dit faktura header/logo"
|
176 |
|
177 |
-
#: includes/class-wcpdf-settings.php:
|
178 |
msgid "Set image"
|
179 |
msgstr "Indstil billedet "
|
180 |
|
181 |
-
#: includes/class-wcpdf-settings.php:
|
182 |
msgid "Remove image"
|
183 |
msgstr "Fjern billede"
|
184 |
|
185 |
-
#: includes/class-wcpdf-settings.php:
|
186 |
msgid "Shop Name"
|
187 |
msgstr "Butik navn"
|
188 |
|
189 |
-
#: includes/class-wcpdf-settings.php:
|
190 |
msgid "Shop Address"
|
191 |
msgstr "Butik adresse "
|
192 |
|
193 |
-
#: includes/class-wcpdf-settings.php:
|
194 |
msgid "Footer: terms & conditions, policies, etc."
|
195 |
msgstr "Sidefod: Vilkår & betingelser, politikker mm. "
|
196 |
|
197 |
-
#: includes/class-wcpdf-settings.php:
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
msgid "WooCommerce order number"
|
203 |
-
msgstr "WooCommerce ordre nummer "
|
204 |
|
205 |
-
#: includes/class-wcpdf-settings.php:
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
|
209 |
-
#: includes/class-wcpdf-settings.php:
|
210 |
msgid ""
|
211 |
-
"
|
212 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
msgstr ""
|
214 |
-
"Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
|
215 |
-
"WooCommerce ordre nummer "
|
216 |
|
217 |
-
#: includes/class-wcpdf-settings.php:
|
218 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
219 |
msgstr "Næste faktura nummer (uden prefix/suffix mm.) "
|
220 |
|
221 |
-
#: includes/class-wcpdf-settings.php:
|
222 |
msgid ""
|
223 |
"This is the number that will be used on the next invoice that is created. By "
|
224 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -232,35 +251,35 @@ msgstr ""
|
|
232 |
"tilsidesætter dette og sætter den lavere end den højeste (PDF) "
|
233 |
"fakturanummer, kan dette skabe dobbelt fakturanumre. "
|
234 |
|
235 |
-
#: includes/class-wcpdf-settings.php:
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Fakturanummer format "
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Prefix"
|
241 |
msgstr "Prefix"
|
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"
|
247 |
msgstr ""
|
248 |
"for at bruge ordre år og/eller måned, brug [order_year] eller [order_month]. "
|
249 |
|
250 |
-
#: includes/class-wcpdf-settings.php:
|
251 |
msgid "Suffix"
|
252 |
msgstr "Suffix "
|
253 |
|
254 |
-
#: includes/class-wcpdf-settings.php:
|
255 |
msgid "Padding"
|
256 |
msgstr "Padding "
|
257 |
|
258 |
-
#: includes/class-wcpdf-settings.php:
|
259 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
260 |
msgstr ""
|
261 |
"Indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 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,166 +287,329 @@ msgstr ""
|
|
268 |
"Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
|
269 |
"format med et filter, så vil denne indstillingen ovenover blive ignoreret. "
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
-
|
273 |
-
|
|
|
|
|
|
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
-
msgid "
|
281 |
-
|
|
|
|
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "Extra template fields"
|
285 |
msgstr "Ekstra skabelons felter "
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid "Extra field 1"
|
289 |
msgstr "Ekstra felt 1"
|
290 |
|
291 |
-
#: includes/class-wcpdf-settings.php:
|
292 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
293 |
msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen "
|
294 |
|
295 |
-
#: includes/class-wcpdf-settings.php:
|
296 |
msgid "Extra field 2"
|
297 |
msgstr "Ekstra felt 2"
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
301 |
msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen "
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "Extra field 3"
|
305 |
msgstr "Ekstra felt 3"
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
309 |
msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen "
|
310 |
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Image resolution"
|
313 |
msgstr "Billede opløsning"
|
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 "
|
319 |
"custom template"
|
320 |
msgstr "Disse bruges (valgfrit)"
|
321 |
|
322 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Fakturanummer "
|
325 |
|
326 |
-
#: includes/class-wcpdf-writepanels.php:
|
327 |
msgid "Download invoice (PDF)"
|
328 |
msgstr "Hent faktura (PDF) "
|
329 |
|
330 |
-
#: includes/class-wcpdf-writepanels.php:
|
331 |
msgid "Create PDF"
|
332 |
msgstr "Opret PDF"
|
333 |
|
334 |
-
#: includes/class-wcpdf-writepanels.php:
|
335 |
-
msgid "PDF invoice"
|
336 |
-
msgstr "PDF faktura "
|
337 |
-
|
338 |
-
#: includes/class-wcpdf-writepanels.php:161
|
339 |
-
msgid "PDF Packing Slip"
|
340 |
-
msgstr "PDF følgeseddel "
|
341 |
-
|
342 |
-
#: includes/class-wcpdf-writepanels.php:178
|
343 |
-
#: includes/class-wcpdf-writepanels.php:179
|
344 |
-
msgid "PDF Packing Slips"
|
345 |
-
msgstr "PDF følgesedler "
|
346 |
-
|
347 |
-
#: includes/class-wcpdf-writepanels.php:192
|
348 |
msgid "PDF Invoice Number (unformatted!)"
|
349 |
msgstr "PDF faktura nummer (uformateret!)"
|
350 |
|
351 |
-
#: includes/class-wcpdf-writepanels.php:
|
352 |
-
#: templates/pdf/Simple/invoice.php:
|
353 |
msgid "Invoice Date:"
|
354 |
msgstr "Fakturadato: "
|
355 |
|
356 |
-
#: includes/class-wcpdf-writepanels.php:
|
357 |
msgid "h"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/class-wcpdf-writepanels.php:
|
361 |
msgid "m"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#:
|
365 |
-
|
366 |
-
|
367 |
-
msgstr "Faktura "
|
368 |
|
369 |
-
#:
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
|
375 |
#: templates/pdf/Simple/invoice.php:40
|
376 |
-
|
377 |
-
|
378 |
-
msgstr "Ordredato: "
|
379 |
|
380 |
-
#: templates/pdf/Simple/invoice.php:
|
381 |
msgid "Invoice Number:"
|
382 |
msgstr "Fakturanummer: "
|
383 |
|
384 |
-
#: templates/pdf/Simple/invoice.php:
|
385 |
-
#: templates/pdf/Simple/packing-slip.php:
|
386 |
msgid "Order Number:"
|
387 |
msgstr "Ordrenummer:"
|
388 |
|
389 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Payment Method:"
|
391 |
msgstr "Betaling: "
|
392 |
|
393 |
-
#: templates/pdf/Simple/invoice.php:
|
394 |
-
#: templates/pdf/Simple/packing-slip.php:
|
395 |
msgid "Product"
|
396 |
msgstr "Produkt"
|
397 |
|
398 |
-
#: templates/pdf/Simple/invoice.php:
|
399 |
-
#: templates/pdf/Simple/packing-slip.php:
|
400 |
msgid "Quantity"
|
401 |
msgstr "Antal "
|
402 |
|
403 |
-
#: templates/pdf/Simple/invoice.php:
|
404 |
msgid "Price"
|
405 |
msgstr "Pris"
|
406 |
|
407 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
408 |
msgid "Description"
|
409 |
msgstr "Beskrivelse "
|
410 |
|
411 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
412 |
msgid "SKU"
|
413 |
msgstr "Varenummer"
|
414 |
|
415 |
-
#: templates/pdf/Simple/invoice.php:
|
416 |
-
#: templates/pdf/Simple/packing-slip.php:
|
417 |
msgid "SKU:"
|
418 |
msgstr "Varenummer: "
|
419 |
|
420 |
-
#: templates/pdf/Simple/invoice.php:
|
421 |
-
#: templates/pdf/Simple/packing-slip.php:
|
422 |
msgid "Weight:"
|
423 |
msgstr "Vægt: "
|
424 |
|
425 |
-
#: templates/pdf/Simple/invoice.php:
|
426 |
-
#: templates/pdf/Simple/packing-slip.php:
|
427 |
msgid "Customer Notes"
|
428 |
msgstr "Kunde bemærkning"
|
429 |
|
430 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
#, php-format
|
432 |
msgid ""
|
433 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -436,39 +618,88 @@ msgstr ""
|
|
436 |
"WooCommerce PDF faktura & følgeseddel kræver at %sWooCommerce%s er "
|
437 |
"installeret og aktiveret! "
|
438 |
|
439 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
msgid "N/A"
|
442 |
msgstr "N/A"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
msgid "Payment method"
|
446 |
msgstr "Betaling"
|
447 |
|
448 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
449 |
msgid "Shipping method"
|
450 |
msgstr "Fragt"
|
451 |
|
452 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
453 |
msgid "Subtotal"
|
454 |
msgstr "Subtotal"
|
455 |
|
456 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Fragt"
|
459 |
|
460 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
461 |
msgid "Discount"
|
462 |
msgstr "Rabat"
|
463 |
|
464 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
465 |
msgid "VAT"
|
466 |
msgstr "Moms"
|
467 |
|
468 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
469 |
msgid "Total ex. VAT"
|
470 |
msgstr "Total ex. moms"
|
471 |
|
472 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
473 |
msgid "Total"
|
474 |
msgstr "Total"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2015-04-21 08:44+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-04-21 08:44+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: da_DK\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.5\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:338 includes/class-wcpdf-export.php:348
|
20 |
+
#: includes/class-wcpdf-export.php:359 includes/class-wcpdf-export.php:367
|
|
|
21 |
msgid "You do not have sufficient permissions to access this page."
|
22 |
msgstr "Du har ikke tilstrækkelig tilladelse til at tilgå denne side. "
|
23 |
|
24 |
+
#: includes/class-wcpdf-export.php:343
|
25 |
+
msgid "Some of the export parameters are missing."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
# This is a filename (prefix). do not use spaces or special characters!
|
29 |
+
#: includes/class-wcpdf-export.php:424
|
30 |
msgid "invoice"
|
31 |
msgid_plural "invoices"
|
32 |
msgstr[0] "Faktura"
|
33 |
msgstr[1] "Fakturaen "
|
34 |
|
35 |
# This is a filename (prefix). do not use spaces or special characters!
|
36 |
+
#: includes/class-wcpdf-export.php:428
|
37 |
msgid "packing-slip"
|
38 |
msgid_plural "packing-slips"
|
39 |
msgstr[0] "Følgeseddel "
|
40 |
msgstr[1] "Følgesedler "
|
41 |
|
42 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
43 |
+
#: includes/class-wcpdf-writepanels.php:32
|
|
|
44 |
msgid "PDF Invoices"
|
45 |
msgstr "PDF fakturaer "
|
46 |
|
47 |
+
#: includes/class-wcpdf-settings.php:80
|
48 |
msgid "Settings"
|
49 |
msgstr "Indstillinger "
|
50 |
|
51 |
+
#: includes/class-wcpdf-settings.php:102
|
52 |
msgid "General"
|
53 |
msgstr "Generelt "
|
54 |
|
55 |
+
#: includes/class-wcpdf-settings.php:103
|
56 |
msgid "Template"
|
57 |
msgstr "Skabelon "
|
58 |
|
59 |
+
#: includes/class-wcpdf-settings.php:108
|
|
|
|
|
|
|
|
|
60 |
msgid "Status"
|
61 |
msgstr "Status"
|
62 |
|
63 |
+
#: includes/class-wcpdf-settings.php:116
|
64 |
+
msgid "WooCommerce PDF Invoices"
|
65 |
+
msgstr "WooCommerce PDF faktura"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
+
#: includes/class-wcpdf-settings.php:185
|
68 |
msgid "General settings"
|
69 |
msgstr "Generelle indstillinger "
|
70 |
|
71 |
+
#: includes/class-wcpdf-settings.php:192
|
72 |
msgid "How do you want to view the PDF?"
|
73 |
msgstr "Hvordan ønsker du at vise PDF'en?"
|
74 |
|
75 |
+
#: includes/class-wcpdf-settings.php:200
|
76 |
msgid "Download the PDF"
|
77 |
msgstr "Hent PDF'en"
|
78 |
|
79 |
+
#: includes/class-wcpdf-settings.php:201
|
80 |
msgid "Open the PDF in a new browser tab/window"
|
81 |
msgstr "Åben PDF'en i en ny browser fane/vindue "
|
82 |
|
83 |
+
#: includes/class-wcpdf-settings.php:210
|
|
|
|
|
|
|
|
|
84 |
msgid "Admin New Order email"
|
85 |
msgstr "Admin ny ordre e-mail"
|
86 |
|
87 |
+
#: includes/class-wcpdf-settings.php:211
|
88 |
msgid "Customer Processing Order email"
|
89 |
msgstr "Kunde behandler ordre e-mail"
|
90 |
|
91 |
+
#: includes/class-wcpdf-settings.php:212
|
92 |
msgid "Customer Completed Order email"
|
93 |
msgstr "Kunde fuldført ordre e-mail "
|
94 |
|
95 |
+
#: includes/class-wcpdf-settings.php:213
|
96 |
msgid "Customer Invoice email"
|
97 |
msgstr "Kunde faktura e-mail"
|
98 |
|
99 |
+
#: includes/class-wcpdf-settings.php:218
|
100 |
+
msgid "Attach invoice to:"
|
101 |
+
msgstr "Vedhæft fakturaen til: "
|
102 |
+
|
103 |
+
#: includes/class-wcpdf-settings.php:226
|
104 |
#, php-format
|
105 |
msgid ""
|
106 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
112 |
"redigere i mappen, vil dette plugin ikke være i stand til at sende e-mails "
|
113 |
"med fakturaer. "
|
114 |
|
115 |
+
#: includes/class-wcpdf-settings.php:232
|
116 |
+
msgid "Disable for free products"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/class-wcpdf-settings.php:239
|
120 |
+
msgid ""
|
121 |
+
"Disable automatic creation/attachment of invoices when only free products "
|
122 |
+
"are ordered"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/class-wcpdf-settings.php:246
|
126 |
+
msgid "Interface"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/class-wcpdf-settings.php:294
|
130 |
+
msgid "Allow My Account invoice download"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/class-wcpdf-settings.php:302
|
134 |
+
msgid "Only when an invoice is already created/emailed"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/class-wcpdf-settings.php:303
|
138 |
+
msgid "Only for specific order statuses (define below)"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/class-wcpdf-settings.php:304
|
142 |
+
msgid "Always"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/class-wcpdf-settings.php:319
|
146 |
msgid "Enable invoice number column in the orders list"
|
147 |
msgstr "Aktiver faktura nummer kolonne i ordre listen "
|
148 |
|
149 |
+
#: includes/class-wcpdf-settings.php:357
|
150 |
msgid "PDF Template settings"
|
151 |
msgstr "PDF skabelon indstillinger "
|
152 |
|
153 |
+
#: includes/class-wcpdf-settings.php:369
|
154 |
msgid "Choose a template"
|
155 |
msgstr "Vælg en skabelon"
|
156 |
|
157 |
+
#: includes/class-wcpdf-settings.php:377
|
158 |
#, php-format
|
159 |
msgid ""
|
160 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
161 |
+
"your (child) theme in <code>%s</code> to customize them"
|
162 |
msgstr ""
|
|
|
|
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:383
|
165 |
msgid "Paper size"
|
166 |
msgstr "Papir størrelse "
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:391
|
169 |
msgid "A4"
|
170 |
msgstr "A4"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:392
|
173 |
msgid "Letter"
|
174 |
msgstr "Brev"
|
175 |
|
176 |
+
#: includes/class-wcpdf-settings.php:399
|
177 |
msgid "Shop header/logo"
|
178 |
msgstr "Butik header/logo "
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:406
|
181 |
msgid "Select or upload your invoice header/logo"
|
182 |
msgstr "Vælg eller upload dit faktura header/logo"
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:407
|
185 |
msgid "Set image"
|
186 |
msgstr "Indstil billedet "
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:408
|
189 |
msgid "Remove image"
|
190 |
msgstr "Fjern billede"
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:415
|
193 |
msgid "Shop Name"
|
194 |
msgstr "Butik navn"
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:428
|
197 |
msgid "Shop Address"
|
198 |
msgstr "Butik adresse "
|
199 |
|
200 |
+
#: includes/class-wcpdf-settings.php:443
|
201 |
msgid "Footer: terms & conditions, policies, etc."
|
202 |
msgstr "Sidefod: Vilkår & betingelser, politikker mm. "
|
203 |
|
204 |
+
#: includes/class-wcpdf-settings.php:459 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 "Faktura "
|
|
|
|
|
209 |
|
210 |
+
#: includes/class-wcpdf-settings.php:466
|
211 |
+
msgid "Display shipping address"
|
212 |
+
msgstr ""
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:473
|
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:479 includes/class-wcpdf-settings.php:594
|
221 |
+
msgid "Display email address"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/class-wcpdf-settings.php:491 includes/class-wcpdf-settings.php:606
|
225 |
+
msgid "Display phone number"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/class-wcpdf-settings.php:503
|
229 |
+
msgid "Display invoice date"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: includes/class-wcpdf-settings.php:516
|
233 |
+
msgid "Display built-in sequential invoice number"
|
234 |
msgstr ""
|
|
|
|
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:529
|
237 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
238 |
msgstr "Næste faktura nummer (uden prefix/suffix mm.) "
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:537
|
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 "
|
251 |
"tilsidesætter dette og sætter den lavere end den højeste (PDF) "
|
252 |
"fakturanummer, kan dette skabe dobbelt fakturanumre. "
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:543
|
255 |
msgid "Invoice number format"
|
256 |
msgstr "Fakturanummer format "
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:552
|
259 |
msgid "Prefix"
|
260 |
msgstr "Prefix"
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:554
|
263 |
msgid ""
|
264 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
265 |
"respectively"
|
266 |
msgstr ""
|
267 |
"for at bruge ordre år og/eller måned, brug [order_year] eller [order_month]. "
|
268 |
|
269 |
+
#: includes/class-wcpdf-settings.php:557
|
270 |
msgid "Suffix"
|
271 |
msgstr "Suffix "
|
272 |
|
273 |
+
#: includes/class-wcpdf-settings.php:562
|
274 |
msgid "Padding"
|
275 |
msgstr "Padding "
|
276 |
|
277 |
+
#: includes/class-wcpdf-settings.php:564
|
278 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
279 |
msgstr ""
|
280 |
"Indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 000042"
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:567
|
283 |
msgid ""
|
284 |
"note: if you have already created a custom invoice number format with a "
|
285 |
"filter, the above settings will be ignored"
|
287 |
"Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
|
288 |
"format med et filter, så vil denne indstillingen ovenover blive ignoreret. "
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:574
|
291 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
292 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
293 |
+
#: woocommerce-pdf-invoices-packingslips.php:223
|
294 |
+
msgid "Packing Slip"
|
295 |
+
msgstr "Følgeseddel "
|
296 |
|
297 |
+
#: includes/class-wcpdf-settings.php:581
|
298 |
+
msgid "Display billing address"
|
299 |
+
msgstr ""
|
300 |
|
301 |
+
#: includes/class-wcpdf-settings.php:588
|
302 |
+
msgid ""
|
303 |
+
"Display billing address on packing slip (in addition to the default shipping "
|
304 |
+
"address) if different from shipping address"
|
305 |
+
msgstr ""
|
306 |
|
307 |
+
#: includes/class-wcpdf-settings.php:619
|
308 |
msgid "Extra template fields"
|
309 |
msgstr "Ekstra skabelons felter "
|
310 |
|
311 |
+
#: includes/class-wcpdf-settings.php:626
|
312 |
msgid "Extra field 1"
|
313 |
msgstr "Ekstra felt 1"
|
314 |
|
315 |
+
#: includes/class-wcpdf-settings.php:635
|
316 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
317 |
msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen "
|
318 |
|
319 |
+
#: includes/class-wcpdf-settings.php:641
|
320 |
msgid "Extra field 2"
|
321 |
msgstr "Ekstra felt 2"
|
322 |
|
323 |
+
#: includes/class-wcpdf-settings.php:650
|
324 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
325 |
msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen "
|
326 |
|
327 |
+
#: includes/class-wcpdf-settings.php:656
|
328 |
msgid "Extra field 3"
|
329 |
msgstr "Ekstra felt 3"
|
330 |
|
331 |
+
#: includes/class-wcpdf-settings.php:665
|
332 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
333 |
msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen "
|
334 |
|
335 |
+
#: includes/class-wcpdf-settings.php:707
|
336 |
+
msgid "Debug settings"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: includes/class-wcpdf-settings.php:714
|
340 |
+
msgid "Enable debug output"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: includes/class-wcpdf-settings.php:721
|
344 |
+
msgid ""
|
345 |
+
"Enable this option to output plugin errors if you're getting a blank page or "
|
346 |
+
"other PDF generation issues"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: includes/class-wcpdf-settings.php:727
|
350 |
+
msgid "Output to HTML"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: includes/class-wcpdf-settings.php:734
|
354 |
+
msgid ""
|
355 |
+
"Send the template output as HTML to the browser instead of creating a PDF."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: includes/class-wcpdf-settings.php:740
|
359 |
+
msgid "Use old tmp folder"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: includes/class-wcpdf-settings.php:747
|
363 |
+
msgid ""
|
364 |
+
"Before version 1.5 of PDF Invoices, temporary files were stored in the "
|
365 |
+
"plugin folder. This setting is only intended for backwards compatibility, "
|
366 |
+
"not recommended on new installs!"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/class-wcpdf-settings.php:1087
|
370 |
msgid "Image resolution"
|
371 |
msgstr "Billede opløsning"
|
372 |
|
373 |
+
#: includes/class-wcpdf-settings.php:1203
|
374 |
+
msgid ""
|
375 |
+
"<b>Warning!</b> The settings below are meant for debugging/development only. "
|
376 |
+
"Do not use them on a live website!"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: includes/class-wcpdf-settings.php:1212
|
380 |
msgid ""
|
381 |
"These are used for the (optional) footer columns in the <em>Modern "
|
382 |
"(Premium)</em> template, but can also be used for other elements in your "
|
383 |
"custom template"
|
384 |
msgstr "Disse bruges (valgfrit)"
|
385 |
|
386 |
+
#: includes/class-wcpdf-writepanels.php:33
|
387 |
+
msgid "PDF Packing Slips"
|
388 |
+
msgstr "PDF følgesedler "
|
389 |
+
|
390 |
+
#: includes/class-wcpdf-writepanels.php:107
|
391 |
+
#: includes/class-wcpdf-writepanels.php:216
|
392 |
+
msgid "PDF Invoice"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: includes/class-wcpdf-writepanels.php:112
|
396 |
+
#: includes/class-wcpdf-writepanels.php:221
|
397 |
+
msgid "PDF Packing Slip"
|
398 |
+
msgstr "PDF følgeseddel "
|
399 |
+
|
400 |
+
#: includes/class-wcpdf-writepanels.php:139
|
401 |
msgid "Invoice Number"
|
402 |
msgstr "Fakturanummer "
|
403 |
|
404 |
+
#: includes/class-wcpdf-writepanels.php:192
|
405 |
msgid "Download invoice (PDF)"
|
406 |
msgstr "Hent faktura (PDF) "
|
407 |
|
408 |
+
#: includes/class-wcpdf-writepanels.php:203
|
409 |
msgid "Create PDF"
|
410 |
msgstr "Opret PDF"
|
411 |
|
412 |
+
#: includes/class-wcpdf-writepanels.php:264
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
msgid "PDF Invoice Number (unformatted!)"
|
414 |
msgstr "PDF faktura nummer (uformateret!)"
|
415 |
|
416 |
+
#: includes/class-wcpdf-writepanels.php:267
|
417 |
+
#: templates/pdf/Simple/invoice.php:55
|
418 |
msgid "Invoice Date:"
|
419 |
msgstr "Fakturadato: "
|
420 |
|
421 |
+
#: includes/class-wcpdf-writepanels.php:268
|
422 |
msgid "h"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/class-wcpdf-writepanels.php:268
|
426 |
msgid "m"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/wcpdf-extensions.php:15
|
430 |
+
msgid "Check out these premium extensions!"
|
431 |
+
msgstr ""
|
|
|
432 |
|
433 |
+
#: includes/wcpdf-extensions.php:16
|
434 |
+
msgid "click items to read more"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/wcpdf-extensions.php:23
|
438 |
+
msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/wcpdf-extensions.php:25
|
442 |
+
msgid ""
|
443 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
444 |
+
"features:"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/wcpdf-extensions.php:27
|
448 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: includes/wcpdf-extensions.php:28
|
452 |
+
msgid ""
|
453 |
+
"Send out a separate <b>notification email</b> with (or without) PDF invoices/"
|
454 |
+
"packing slips, for example to a drop-shipper or a supplier."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/wcpdf-extensions.php:29
|
458 |
+
msgid ""
|
459 |
+
"Attach <b>up to 3 static files</b> (for example a terms & conditions "
|
460 |
+
"document) to the WooCommerce emails of your choice."
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/wcpdf-extensions.php:30
|
464 |
+
msgid ""
|
465 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
466 |
+
"and credit notes or utilize the main invoice numbering system"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/wcpdf-extensions.php:31
|
470 |
+
msgid ""
|
471 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
472 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
473 |
+
"custom template."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/wcpdf-extensions.php:32
|
477 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/wcpdf-extensions.php:34
|
481 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/wcpdf-extensions.php:42
|
485 |
+
msgid "Upload all invoices automatically to your dropbox"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/wcpdf-extensions.php:48
|
489 |
+
msgid ""
|
490 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
491 |
+
"documents from the professional extension) that are emailed to your "
|
492 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
493 |
+
"date!"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/wcpdf-extensions.php:49
|
497 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: includes/wcpdf-extensions.php:61
|
501 |
+
msgid ""
|
502 |
+
"Automatically send new orders or packing slips to your printer, as soon as "
|
503 |
+
"the customer orders!"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/wcpdf-extensions.php:67
|
507 |
+
msgid ""
|
508 |
+
"Check out the WooCommerce Automatic Order Printing extension from our "
|
509 |
+
"partners at Simba Hosting"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: includes/wcpdf-extensions.php:68
|
513 |
+
msgid "WooCommerce Automatic Order Printing"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: includes/wcpdf-extensions.php:82
|
517 |
+
msgid "More advanced templates"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: includes/wcpdf-extensions.php:85
|
521 |
+
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: includes/wcpdf-extensions.php:86
|
525 |
+
msgid "More tax details on the invoices!"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/wcpdf-extensions.php:87
|
529 |
+
#, php-format
|
530 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: includes/wcpdf-extensions.php:88
|
534 |
+
#, php-format
|
535 |
+
msgid "For custom templates, contact us at %s."
|
536 |
+
msgstr "For brugerdefinerede skabeloner, kontakt os på %s."
|
537 |
+
|
538 |
+
#: templates/pdf/Simple/invoice.php:29
|
539 |
+
#: templates/pdf/Simple/packing-slip.php:40
|
540 |
+
msgid "Billing Address:"
|
541 |
+
msgstr ""
|
542 |
|
543 |
#: templates/pdf/Simple/invoice.php:40
|
544 |
+
msgid "Ship To:"
|
545 |
+
msgstr ""
|
|
|
546 |
|
547 |
+
#: templates/pdf/Simple/invoice.php:49
|
548 |
msgid "Invoice Number:"
|
549 |
msgstr "Fakturanummer: "
|
550 |
|
551 |
+
#: templates/pdf/Simple/invoice.php:60
|
552 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
553 |
msgid "Order Number:"
|
554 |
msgstr "Ordrenummer:"
|
555 |
|
556 |
+
#: templates/pdf/Simple/invoice.php:64
|
557 |
+
#: templates/pdf/Simple/packing-slip.php:52
|
558 |
+
msgid "Order Date:"
|
559 |
+
msgstr "Ordredato: "
|
560 |
+
|
561 |
+
#: templates/pdf/Simple/invoice.php:68
|
562 |
msgid "Payment Method:"
|
563 |
msgstr "Betaling: "
|
564 |
|
565 |
+
#: templates/pdf/Simple/invoice.php:82
|
566 |
+
#: templates/pdf/Simple/packing-slip.php:70
|
567 |
msgid "Product"
|
568 |
msgstr "Produkt"
|
569 |
|
570 |
+
#: templates/pdf/Simple/invoice.php:83
|
571 |
+
#: templates/pdf/Simple/packing-slip.php:71
|
572 |
msgid "Quantity"
|
573 |
msgstr "Antal "
|
574 |
|
575 |
+
#: templates/pdf/Simple/invoice.php:84
|
576 |
msgid "Price"
|
577 |
msgstr "Pris"
|
578 |
|
579 |
+
#: templates/pdf/Simple/invoice.php:91
|
580 |
+
#: templates/pdf/Simple/packing-slip.php:78
|
581 |
msgid "Description"
|
582 |
msgstr "Beskrivelse "
|
583 |
|
584 |
+
#: templates/pdf/Simple/invoice.php:96
|
585 |
+
#: templates/pdf/Simple/packing-slip.php:83
|
586 |
msgid "SKU"
|
587 |
msgstr "Varenummer"
|
588 |
|
589 |
+
#: templates/pdf/Simple/invoice.php:97
|
590 |
+
#: templates/pdf/Simple/packing-slip.php:84
|
591 |
msgid "SKU:"
|
592 |
msgstr "Varenummer: "
|
593 |
|
594 |
+
#: templates/pdf/Simple/invoice.php:98
|
595 |
+
#: templates/pdf/Simple/packing-slip.php:85
|
596 |
msgid "Weight:"
|
597 |
msgstr "Vægt: "
|
598 |
|
599 |
+
#: templates/pdf/Simple/invoice.php:112
|
600 |
+
#: templates/pdf/Simple/packing-slip.php:99
|
601 |
msgid "Customer Notes"
|
602 |
msgstr "Kunde bemærkning"
|
603 |
|
604 |
+
#: templates/pdf/Simple/packing-slip.php:29
|
605 |
+
msgid "Shipping Address:"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: templates/pdf/Simple/packing-slip.php:56
|
609 |
+
msgid "Shipping Method:"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: woocommerce-pdf-invoices-packingslips.php:123
|
613 |
#, php-format
|
614 |
msgid ""
|
615 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
618 |
"WooCommerce PDF faktura & følgeseddel kræver at %sWooCommerce%s er "
|
619 |
"installeret og aktiveret! "
|
620 |
|
621 |
+
#: woocommerce-pdf-invoices-packingslips.php:330
|
622 |
+
#: woocommerce-pdf-invoices-packingslips.php:391
|
623 |
msgid "N/A"
|
624 |
msgstr "N/A"
|
625 |
|
626 |
+
#: woocommerce-pdf-invoices-packingslips.php:480
|
627 |
msgid "Payment method"
|
628 |
msgstr "Betaling"
|
629 |
|
630 |
+
#: woocommerce-pdf-invoices-packingslips.php:491
|
631 |
msgid "Shipping method"
|
632 |
msgstr "Fragt"
|
633 |
|
634 |
+
#: woocommerce-pdf-invoices-packingslips.php:644
|
635 |
msgid "Subtotal"
|
636 |
msgstr "Subtotal"
|
637 |
|
638 |
+
#: woocommerce-pdf-invoices-packingslips.php:666
|
639 |
msgid "Shipping"
|
640 |
msgstr "Fragt"
|
641 |
|
642 |
+
#: woocommerce-pdf-invoices-packingslips.php:719
|
643 |
msgid "Discount"
|
644 |
msgstr "Rabat"
|
645 |
|
646 |
+
#: woocommerce-pdf-invoices-packingslips.php:759
|
647 |
msgid "VAT"
|
648 |
msgstr "Moms"
|
649 |
|
650 |
+
#: woocommerce-pdf-invoices-packingslips.php:796
|
651 |
msgid "Total ex. VAT"
|
652 |
msgstr "Total ex. moms"
|
653 |
|
654 |
+
#: woocommerce-pdf-invoices-packingslips.php:799
|
655 |
msgid "Total"
|
656 |
msgstr "Total"
|
657 |
+
|
658 |
+
#~ msgid ""
|
659 |
+
#~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
660 |
+
#~ "extension."
|
661 |
+
#~ msgstr ""
|
662 |
+
#~ "Upload alle fakturaer automatisk til din Dropbox! <br/> Tjek denne %s "
|
663 |
+
#~ "udvidelse "
|
664 |
+
|
665 |
+
#~ msgid ""
|
666 |
+
#~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
667 |
+
#~ "Packing Slips templates at %s."
|
668 |
+
#~ msgstr ""
|
669 |
+
#~ "Leder du efter flere avancerede skabeloner? Se Premium PDF Invoice & "
|
670 |
+
#~ "Packing Slips templates ved %s."
|
671 |
+
|
672 |
+
#~ msgid ""
|
673 |
+
#~ "Want to use your own template? Copy all the files from <code>%s</code> to "
|
674 |
+
#~ "<code>%s</code> to customize them"
|
675 |
+
#~ msgstr ""
|
676 |
+
#~ "Ønsker du at benytte din egen skabelon? Kopier alle filerne fra <code>%s</"
|
677 |
+
#~ "code> til <code>%s</code> for at tilpasse den"
|
678 |
+
|
679 |
+
#~ msgid "Number to display on invoice"
|
680 |
+
#~ msgstr "Nummer der vises på fakturaen "
|
681 |
+
|
682 |
+
#~ msgid "WooCommerce order number"
|
683 |
+
#~ msgstr "WooCommerce ordre nummer "
|
684 |
+
|
685 |
+
#~ msgid "Built-in sequential invoice number"
|
686 |
+
#~ msgstr "Indbygget sekventiel faktura nummer"
|
687 |
+
|
688 |
+
#~ msgid ""
|
689 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
690 |
+
#~ "the WooCommerce order number"
|
691 |
+
#~ msgstr ""
|
692 |
+
#~ "Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
|
693 |
+
#~ "WooCommerce ordre nummer "
|
694 |
+
|
695 |
+
#~ msgid "Date to display on invoice"
|
696 |
+
#~ msgstr "Dato der skal vises på fakturaerne "
|
697 |
+
|
698 |
+
#~ msgid "Order date"
|
699 |
+
#~ msgstr "Ordredato"
|
700 |
+
|
701 |
+
#~ msgid "Invoice date"
|
702 |
+
#~ msgstr "Fakturadato"
|
703 |
+
|
704 |
+
#~ msgid "PDF invoice"
|
705 |
+
#~ msgstr "PDF faktura "
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.1
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -233,6 +233,10 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
233 |
|
234 |
== Changelog ==
|
235 |
|
|
|
|
|
|
|
|
|
236 |
= 1.5.10 =
|
237 |
* Fix: Double check to make sure plugin doesn't attach to user emails
|
238 |
|
@@ -502,5 +506,5 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
502 |
|
503 |
== Upgrade Notice ==
|
504 |
|
505 |
-
= 1.5
|
506 |
Version 1.5 changes where temporary files are stored - everything is now stored centrally in the WP uploads folder. For backwards compatibility, this feature is turned off by default, but we recommend to use the new folders. Check the plugin Status panel for more information!
|
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.1
|
6 |
+
Stable tag: 1.5.11
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
233 |
|
234 |
== Changelog ==
|
235 |
|
236 |
+
= 1.5.11 =
|
237 |
+
* Fix: Product text attributes (now checks key too)
|
238 |
+
* Fix: Status page upload explanation typos
|
239 |
+
|
240 |
= 1.5.10 =
|
241 |
* Fix: Double check to make sure plugin doesn't attach to user emails
|
242 |
|
506 |
|
507 |
== Upgrade Notice ==
|
508 |
|
509 |
+
= 1.5 =
|
510 |
Version 1.5 changes where temporary files are stored - everything is now stored centrally in the WP uploads folder. For backwards compatibility, this feature is turned off by default, but we recommend to use the new folders. Check the plugin Status panel for more information!
|
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?
|
@@ -584,10 +584,14 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
584 |
public function get_product_attribute( $attribute_name, $product ) {
|
585 |
// first, check the text attributes
|
586 |
$attributes = $product->get_attributes();
|
|
|
587 |
if (array_key_exists( sanitize_title( $attribute_name ), $attributes) ) {
|
588 |
$attribute = $product->get_attribute ( $attribute_name );
|
589 |
return $attribute;
|
590 |
-
}
|
|
|
|
|
|
|
591 |
|
592 |
// not a text attribute, try attribute taxonomy
|
593 |
$attribute_key = @wc_attribute_taxonomy_name( $attribute_name );
|
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.11
|
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.11';
|
37 |
|
38 |
// load the localisation & classes
|
39 |
add_action( 'plugins_loaded', array( $this, 'translations' ) ); // or use init?
|
584 |
public function get_product_attribute( $attribute_name, $product ) {
|
585 |
// first, check the text attributes
|
586 |
$attributes = $product->get_attributes();
|
587 |
+
$attribute_key = @wc_attribute_taxonomy_name( $attribute_name );
|
588 |
if (array_key_exists( sanitize_title( $attribute_name ), $attributes) ) {
|
589 |
$attribute = $product->get_attribute ( $attribute_name );
|
590 |
return $attribute;
|
591 |
+
} elseif (array_key_exists( sanitize_title( $attribute_key ), $attributes) ) {
|
592 |
+
$attribute = $product->get_attribute ( $attribute_key );
|
593 |
+
return $attribute;
|
594 |
+
}
|
595 |
|
596 |
// not a text attribute, try attribute taxonomy
|
597 |
$attribute_key = @wc_attribute_taxonomy_name( $attribute_name );
|