Version Description
- Fix: check if image file exists locally, fallback to url if not (CDN compatibility)
- Fix: make deleting invoice date possible
- Fix: correct tmp folder check on status page
- Translations: updated po/mo files
- Tweak: changed settings capability requirement to
manage_woocommerce
(was:manage_options
) - Tweak: better email attachment function
- Tweak: prevent footer overlap (Simple template)
- Tweak: fallback if
glob()
is not allowed on the server - Tweak: better custom template instructions (reflects path to actual (child-)theme)
Download this release
Release Info
Developer | pomegranate |
Plugin | WooCommerce PDF Invoices & Packing Slips |
Version | 1.4.7 |
Comparing to | |
See all releases |
Code changes from version 1.4.6 to 1.4.7
- includes/class-wcpdf-export.php +52 -33
- includes/class-wcpdf-settings.php +23 -3
- includes/class-wcpdf-writepanels.php +11 -3
- includes/dompdf-status.php +2 -2
- languages/wpo_wcpdf-cs_CZ.mo +0 -0
- languages/wpo_wcpdf-cs_CZ.po +90 -78
- languages/wpo_wcpdf-da_DK.mo +0 -0
- languages/wpo_wcpdf-da_DK.po +90 -78
- languages/wpo_wcpdf-de_DE.mo +0 -0
- languages/wpo_wcpdf-de_DE.po +49 -51
- languages/wpo_wcpdf-en_AU.mo +0 -0
- languages/wpo_wcpdf-en_AU.po +451 -0
- languages/wpo_wcpdf-es_ES.mo +0 -0
- languages/wpo_wcpdf-es_ES.po +89 -77
- languages/wpo_wcpdf-fr_FR.mo +0 -0
- languages/wpo_wcpdf-fr_FR.po +92 -80
- languages/wpo_wcpdf-hu_HU.mo +0 -0
- languages/wpo_wcpdf-hu_HU.po +306 -117
- languages/wpo_wcpdf-it_IT.mo +0 -0
- languages/wpo_wcpdf-it_IT.po +281 -112
- languages/wpo_wcpdf-nb_NO.mo +0 -0
- languages/wpo_wcpdf-nb_NO.po +89 -76
- languages/wpo_wcpdf-nl_NL.mo +0 -0
- languages/wpo_wcpdf-nl_NL.po +89 -81
- languages/wpo_wcpdf-pl_PL.mo +0 -0
- languages/wpo_wcpdf-pl_PL.po +89 -78
- languages/wpo_wcpdf-ro_RO.mo +0 -0
- languages/wpo_wcpdf-ro_RO.po +92 -80
- languages/wpo_wcpdf-ru_RU.mo +0 -0
- languages/wpo_wcpdf-ru_RU.po +89 -77
- languages/wpo_wcpdf-sk_SK.mo +0 -0
- languages/wpo_wcpdf-sk_SK.po +92 -79
- languages/wpo_wcpdf-sv_SE.mo +0 -0
- languages/wpo_wcpdf-sv_SE.po +89 -80
- languages/wpo_wcpdf-uk.mo +0 -0
- languages/wpo_wcpdf-uk.po +90 -77
- languages/wpo_wcpdf.pot +45 -48
- lib/dompdf/dompdf.php +4 -0
- lib/dompdf/include/dompdf.cls.php +0 -7
- readme.txt +12 -1
- templates/pdf/Simple/style.css +2 -2
- woocommerce-pdf-invoices-packingslips.php +5 -5
includes/class-wcpdf-export.php
CHANGED
@@ -58,8 +58,11 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
58 |
$this->template_type = $template_type;
|
59 |
$this->order_ids = $order_ids;
|
60 |
|
|
|
|
|
61 |
$output_html = array();
|
62 |
foreach ($order_ids as $order_id) {
|
|
|
63 |
$this->order = new WC_Order( $order_id );
|
64 |
$template = $this->template_path . '/' . $template_type . '.php';
|
65 |
|
@@ -208,6 +211,8 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
208 |
// Generate the output
|
209 |
$template_type = $_GET['template_type'];
|
210 |
// die($this->process_template( $template_type, $order_ids )); // or use the filter switch below!
|
|
|
|
|
211 |
|
212 |
if (apply_filters('wpo_wcpdf_output_html', false, $template_type)) {
|
213 |
// Output html to browser for debug
|
@@ -218,6 +223,8 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
218 |
|
219 |
$invoice = $this->get_pdf( $template_type, $order_ids );
|
220 |
|
|
|
|
|
221 |
// get template name
|
222 |
if ($template_type == 'invoice' ) {
|
223 |
$template_name = _n( 'invoice', 'invoices', count($order_ids), 'wpo_wcpdf' );
|
@@ -267,6 +274,8 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
267 |
* Attach invoice to completed order or customer invoice email
|
268 |
*/
|
269 |
public function attach_pdf_to_email ( $attachments, $status, $order ) {
|
|
|
|
|
270 |
if (!isset($this->general_settings['email_pdf']) || !isset( $status ) ) {
|
271 |
return;
|
272 |
}
|
@@ -275,45 +284,55 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
275 |
$tmp_path = apply_filters( 'wpo_wcpdf_tmp_path', WooCommerce_PDF_Invoices::$plugin_path . 'tmp/' );
|
276 |
array_map('unlink', ( glob( $tmp_path.'*' ) ? glob( $tmp_path.'*' ) : array() ) );
|
277 |
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
|
284 |
-
$
|
285 |
-
|
286 |
-
foreach ($allowed_statuses as $key => $order_status) {
|
287 |
-
// convert 'lazy' status name
|
288 |
-
if ($order_status == 'completed' || $order_status == 'processing') {
|
289 |
-
$allowed_statuses[$key] = "customer_" . $order_status . "_order";
|
290 |
-
}
|
291 |
-
}
|
292 |
|
293 |
-
|
294 |
-
|
295 |
-
return;
|
296 |
-
}
|
297 |
|
298 |
-
|
299 |
-
|
300 |
-
|
|
|
|
|
|
|
301 |
|
302 |
-
|
303 |
-
$
|
304 |
-
$pdf_filename = $pdf_filename_prefix . '-' . $display_number . '.pdf';
|
305 |
-
$pdf_filename = apply_filters( 'wpo_wcpdf_attachment_filename', $pdf_filename, $display_number, $order->id );
|
306 |
|
307 |
-
//
|
308 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
|
310 |
-
|
311 |
-
|
312 |
-
$attachments[] = $pdf_path;
|
313 |
|
314 |
-
|
315 |
-
|
|
|
316 |
|
|
|
|
|
|
|
|
|
317 |
return $attachments;
|
318 |
}
|
319 |
|
@@ -396,7 +415,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
396 |
}
|
397 |
|
398 |
public function get_display_number( $order_id ) {
|
399 |
-
if ( !isset($this->order) ) {
|
400 |
$this->order = new WC_Order ( $order_id );
|
401 |
}
|
402 |
|
@@ -679,7 +698,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
679 |
$thumbnail_path = str_replace( get_site_url() . '/', ABSPATH, array_pop($thumbnail_url));
|
680 |
|
681 |
// Thumbnail (full img tag)
|
682 |
-
if (apply_filters('wpo_wcpdf_use_path', true)) {
|
683 |
// load img with server path by default
|
684 |
$thumbnail = sprintf('<img width="90" height="90" src="%s" class="attachment-shop_thumbnail wp-post-image">', $thumbnail_path );
|
685 |
} else {
|
58 |
$this->template_type = $template_type;
|
59 |
$this->order_ids = $order_ids;
|
60 |
|
61 |
+
do_action( 'wpo_wcpdf_process_template', $template_type );
|
62 |
+
|
63 |
$output_html = array();
|
64 |
foreach ($order_ids as $order_id) {
|
65 |
+
do_action( 'wpo_wcpdf_process_template_order', $template_type, $order_id );
|
66 |
$this->order = new WC_Order( $order_id );
|
67 |
$template = $this->template_path . '/' . $template_type . '.php';
|
68 |
|
211 |
// Generate the output
|
212 |
$template_type = $_GET['template_type'];
|
213 |
// die($this->process_template( $template_type, $order_ids )); // or use the filter switch below!
|
214 |
+
|
215 |
+
do_action( 'wpo_wcpdf_before_pdf', $template_type );
|
216 |
|
217 |
if (apply_filters('wpo_wcpdf_output_html', false, $template_type)) {
|
218 |
// Output html to browser for debug
|
223 |
|
224 |
$invoice = $this->get_pdf( $template_type, $order_ids );
|
225 |
|
226 |
+
do_action( 'wpo_wcpdf_after_pdf', $template_type );
|
227 |
+
|
228 |
// get template name
|
229 |
if ($template_type == 'invoice' ) {
|
230 |
$template_name = _n( 'invoice', 'invoices', count($order_ids), 'wpo_wcpdf' );
|
274 |
* Attach invoice to completed order or customer invoice email
|
275 |
*/
|
276 |
public function attach_pdf_to_email ( $attachments, $status, $order ) {
|
277 |
+
$this->order = $order;
|
278 |
+
|
279 |
if (!isset($this->general_settings['email_pdf']) || !isset( $status ) ) {
|
280 |
return;
|
281 |
}
|
284 |
$tmp_path = apply_filters( 'wpo_wcpdf_tmp_path', WooCommerce_PDF_Invoices::$plugin_path . 'tmp/' );
|
285 |
array_map('unlink', ( glob( $tmp_path.'*' ) ? glob( $tmp_path.'*' ) : array() ) );
|
286 |
|
287 |
+
$documents = array(
|
288 |
+
'invoice' => array(
|
289 |
+
'allowed_statuses' => apply_filters( 'wpo_wcpdf_email_allowed_statuses', array_keys( $this->general_settings['email_pdf'] ) ), // Relevant (default) statuses: new_order, customer_invoice, customer_processing_order, customer_completed_order
|
290 |
+
),
|
291 |
+
);
|
292 |
|
293 |
+
$documents = apply_filters('wpo_wcpdf_attach_documents', $documents );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
+
foreach ($documents as $document => $document_settings ) {
|
296 |
+
$allowed_statuses = $document_settings['allowed_statuses'];
|
|
|
|
|
297 |
|
298 |
+
foreach ($allowed_statuses as $key => $order_status) {
|
299 |
+
// convert 'lazy' status name
|
300 |
+
if ($order_status == 'completed' || $order_status == 'processing') {
|
301 |
+
$allowed_statuses[$key] = "customer_" . $order_status . "_order";
|
302 |
+
}
|
303 |
+
}
|
304 |
|
305 |
+
// legacy filter, use wpo_wcpdf_custom_attachment_condition instead!
|
306 |
+
$attach_invoice = apply_filters('wpo_wcpdf_custom_email_condition', true, $order, $status );
|
|
|
|
|
307 |
|
308 |
+
// use this filter to add an extra condition - return false to disable the PDF attachment
|
309 |
+
$attach_document = apply_filters('wpo_wcpdf_custom_attachment_condition', true, $order, $status, $document );
|
310 |
+
|
311 |
+
if( in_array( $status, $allowed_statuses ) && !( ( $document == 'invoice' ) && !$attach_invoice ) && $attach_document ) {
|
312 |
+
// create pdf data
|
313 |
+
$pdf_data = $this->get_pdf( $document, (array) $order->id );
|
314 |
+
|
315 |
+
// compose filename
|
316 |
+
if ( $document == 'invoice' ) {
|
317 |
+
$display_number = $this->get_display_number( $order->id );
|
318 |
+
$pdf_filename_prefix = __( 'invoice', 'wpo_wcpdf' );
|
319 |
+
$pdf_filename = $pdf_filename_prefix . '-' . $display_number . '.pdf';
|
320 |
+
$pdf_filename = apply_filters( 'wpo_wcpdf_attachment_filename', $pdf_filename, $display_number, $order->id );
|
321 |
+
} else {
|
322 |
+
$pdf_filename = $document_settings['filename'];
|
323 |
+
}
|
324 |
|
325 |
+
// sanitize filename!
|
326 |
+
$pdf_filename = sanitize_file_name( $pdf_filename );
|
|
|
327 |
|
328 |
+
$pdf_path = $tmp_path . $pdf_filename;
|
329 |
+
file_put_contents ( $pdf_path, $pdf_data );
|
330 |
+
$attachments[] = $pdf_path;
|
331 |
|
332 |
+
do_action( 'wpo_wcpdf_email_attachment', $pdf_path, $document );
|
333 |
+
}
|
334 |
+
}
|
335 |
+
|
336 |
return $attachments;
|
337 |
}
|
338 |
|
415 |
}
|
416 |
|
417 |
public function get_display_number( $order_id ) {
|
418 |
+
if ( !isset($this->order->id) ) {
|
419 |
$this->order = new WC_Order ( $order_id );
|
420 |
}
|
421 |
|
698 |
$thumbnail_path = str_replace( get_site_url() . '/', ABSPATH, array_pop($thumbnail_url));
|
699 |
|
700 |
// Thumbnail (full img tag)
|
701 |
+
if (apply_filters('wpo_wcpdf_use_path', true) && file_exists($thumbnail_path)) {
|
702 |
// load img with server path by default
|
703 |
$thumbnail = sprintf('<img width="90" height="90" src="%s" class="attachment-shop_thumbnail wp-post-image">', $thumbnail_path );
|
704 |
} else {
|
includes/class-wcpdf-settings.php
CHANGED
@@ -14,6 +14,8 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
14 |
public function __construct() {
|
15 |
add_action( 'admin_menu', array( &$this, 'menu' ) ); // Add menu.
|
16 |
add_action( 'admin_init', array( &$this, 'init_settings' ) ); // Registers settings
|
|
|
|
|
17 |
add_action( 'admin_enqueue_scripts', array( &$this, 'load_scripts_styles' ) ); // Load scripts
|
18 |
|
19 |
// Add links to WordPress plugins page
|
@@ -35,11 +37,18 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
35 |
$parent_slug,
|
36 |
__( 'PDF Invoices', 'wpo_wcpdf' ),
|
37 |
__( 'PDF Invoices', 'wpo_wcpdf' ),
|
38 |
-
'
|
39 |
'wpo_wcpdf_options_page',
|
40 |
array( $this, 'settings_page' )
|
41 |
);
|
42 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
/**
|
45 |
* Styles for settings page
|
@@ -261,6 +270,11 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
261 |
$option
|
262 |
);
|
263 |
|
|
|
|
|
|
|
|
|
|
|
264 |
add_settings_field(
|
265 |
'template_path',
|
266 |
__( 'Choose a template', 'wpo_wcpdf' ),
|
@@ -271,7 +285,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
271 |
'menu' => $option,
|
272 |
'id' => 'template_path',
|
273 |
'options' => $this->find_templates(),
|
274 |
-
'description' => __( 'Want to use your own template? Copy all the files from <code
|
275 |
)
|
276 |
);
|
277 |
|
@@ -927,7 +941,13 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
927 |
// remove parent doubles
|
928 |
$installed_templates = array_unique($installed_templates);
|
929 |
|
930 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
}
|
932 |
|
933 |
} // end class WooCommerce_PDF_Invoices_Settings
|
14 |
public function __construct() {
|
15 |
add_action( 'admin_menu', array( &$this, 'menu' ) ); // Add menu.
|
16 |
add_action( 'admin_init', array( &$this, 'init_settings' ) ); // Registers settings
|
17 |
+
add_filter( 'option_page_capability_wpo_wcpdf_template_settings', array( &$this, 'settings_capabilities' ) );
|
18 |
+
add_filter( 'option_page_capability_wpo_wcpdf_general_settings', array( &$this, 'settings_capabilities' ) );
|
19 |
add_action( 'admin_enqueue_scripts', array( &$this, 'load_scripts_styles' ) ); // Load scripts
|
20 |
|
21 |
// Add links to WordPress plugins page
|
37 |
$parent_slug,
|
38 |
__( 'PDF Invoices', 'wpo_wcpdf' ),
|
39 |
__( 'PDF Invoices', 'wpo_wcpdf' ),
|
40 |
+
'manage_woocommerce',
|
41 |
'wpo_wcpdf_options_page',
|
42 |
array( $this, 'settings_page' )
|
43 |
);
|
44 |
}
|
45 |
+
|
46 |
+
/**
|
47 |
+
* Set capability for settings page
|
48 |
+
*/
|
49 |
+
public function settings_capabilities() {
|
50 |
+
return 'manage_woocommerce';
|
51 |
+
}
|
52 |
|
53 |
/**
|
54 |
* Styles for settings page
|
270 |
$option
|
271 |
);
|
272 |
|
273 |
+
|
274 |
+
$theme_path = get_stylesheet_directory();
|
275 |
+
$theme_template_path = substr($theme_path, strpos($theme_path, 'wp-content')) . '/woocommerce/pdf/yourtemplate';
|
276 |
+
$plugin_template_path = 'wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple';
|
277 |
+
|
278 |
add_settings_field(
|
279 |
'template_path',
|
280 |
__( 'Choose a template', 'wpo_wcpdf' ),
|
285 |
'menu' => $option,
|
286 |
'id' => 'template_path',
|
287 |
'options' => $this->find_templates(),
|
288 |
+
'description' => sprintf( __( 'Want to use your own template? Copy all the files from <code>%s</code> to <code>%s</code> to customize them' , 'wpo_wcpdf' ), $plugin_template_path, $theme_template_path),
|
289 |
)
|
290 |
);
|
291 |
|
941 |
// remove parent doubles
|
942 |
$installed_templates = array_unique($installed_templates);
|
943 |
|
944 |
+
if (empty($installed_templates)) {
|
945 |
+
// fallback to Simple template for servers with glob() disabled
|
946 |
+
$simple_template_path = str_replace( ABSPATH, '', $template_paths['default'] . 'Simple' );
|
947 |
+
$installed_templates[$simple_template_path] = 'Simple';
|
948 |
+
}
|
949 |
+
|
950 |
+
return apply_filters( 'wpo_wcpdf_templates', $installed_templates );
|
951 |
}
|
952 |
|
953 |
} // end class WooCommerce_PDF_Invoices_Settings
|
includes/class-wcpdf-writepanels.php
CHANGED
@@ -208,12 +208,20 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
|
|
208 |
if ( isset($_POST['_wcpdf_invoice_number']) ) {
|
209 |
update_post_meta( $post_id, '_wcpdf_invoice_number', stripslashes( $_POST['_wcpdf_invoice_number'] ));
|
210 |
}
|
|
|
211 |
if ( isset($_POST['wcpdf_invoice_date']) ) {
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
215 |
}
|
216 |
|
|
|
|
|
|
|
217 |
}
|
218 |
}
|
219 |
}
|
208 |
if ( isset($_POST['_wcpdf_invoice_number']) ) {
|
209 |
update_post_meta( $post_id, '_wcpdf_invoice_number', stripslashes( $_POST['_wcpdf_invoice_number'] ));
|
210 |
}
|
211 |
+
|
212 |
if ( isset($_POST['wcpdf_invoice_date']) ) {
|
213 |
+
if ( empty($_POST['wcpdf_invoice_date']) ) {
|
214 |
+
delete_post_meta( $post_id, '_wcpdf_invoice_date' );
|
215 |
+
} else {
|
216 |
+
$invoice_date = strtotime( $_POST['wcpdf_invoice_date'] . ' ' . (int) $_POST['wcpdf_invoice_date_hour'] . ':' . (int) $_POST['wcpdf_invoice_date_minute'] . ':00' );
|
217 |
+
$invoice_date = date_i18n( 'Y-m-d H:i:s', $invoice_date );
|
218 |
+
update_post_meta( $post_id, '_wcpdf_invoice_date', $invoice_date );
|
219 |
+
}
|
220 |
}
|
221 |
|
222 |
+
if ( empty($_POST['wcpdf_invoice_date']) && empty($_POST['wcpdf_invoice_number'])) {
|
223 |
+
delete_post_meta( $post_id, '_wcpdf_invoice_exists' );
|
224 |
+
}
|
225 |
}
|
226 |
}
|
227 |
}
|
includes/dompdf-status.php
CHANGED
@@ -146,8 +146,8 @@ $permissions = array(
|
|
146 |
'WCPDF_TEMP_DIR' => array (
|
147 |
'description' => 'Temporary plugin folder',
|
148 |
'value' => WooCommerce_PDF_Invoices::$plugin_path . 'tmp/',
|
149 |
-
'status' => (is_writable(WooCommerce_PDF_Invoices::$plugin_path) ? "ok" : "failed"),
|
150 |
-
'status_message' => (is_writable(WooCommerce_PDF_Invoices::$plugin_path) ? "Writable" : "Not writable"),
|
151 |
),
|
152 |
);
|
153 |
|
146 |
'WCPDF_TEMP_DIR' => array (
|
147 |
'description' => 'Temporary plugin folder',
|
148 |
'value' => WooCommerce_PDF_Invoices::$plugin_path . 'tmp/',
|
149 |
+
'status' => (is_writable(WooCommerce_PDF_Invoices::$plugin_path . 'tmp/') ? "ok" : "failed"),
|
150 |
+
'status_message' => (is_writable(WooCommerce_PDF_Invoices::$plugin_path . 'tmp/') ? "Writable" : "Not writable"),
|
151 |
),
|
152 |
);
|
153 |
|
languages/wpo_wcpdf-cs_CZ.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-cs_CZ.po
CHANGED
@@ -1,29 +1,29 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Revotech.cz <info@revotech.cz>\n"
|
7 |
"Language-Team: KubiQ <7kubiq7@gmail.com>\n"
|
8 |
"Language: sk\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.6.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Nemáte dostatečné oprávnění pro přístup."
|
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"
|
@@ -31,7 +31,7 @@ msgstr[1] "Faktury"
|
|
31 |
msgstr[2] "Faktur"
|
32 |
|
33 |
# This is a filename (prefix). do not use spaces or special characters!
|
34 |
-
#: includes/class-wcpdf-export.php:
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "Dodací List"
|
@@ -39,8 +39,8 @@ msgstr[1] "Dodací Listy"
|
|
39 |
msgstr[2] "Dodací Listy"
|
40 |
|
41 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
42 |
-
#: includes/class-wcpdf-writepanels.php:
|
43 |
-
#: includes/class-wcpdf-writepanels.php:
|
44 |
msgid "PDF Invoices"
|
45 |
msgstr "PDF Faktura"
|
46 |
|
@@ -140,74 +140,72 @@ msgstr ""
|
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "Nastavení PDF šablony"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Vyberte šablonu"
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
148 |
msgid ""
|
149 |
-
"Want to use your own template? Copy all the files from <code>
|
150 |
-
"
|
151 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
152 |
msgstr ""
|
153 |
-
"Chcete použít vlastní šablonu? Skopírujte všechny soubory z "
|
154 |
-
"<code
|
155 |
-
"<code>yourtheme/woocommerce/pdf/yourtemplate/</code> a upravte je podla "
|
156 |
-
"potřeby"
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Paper size"
|
160 |
msgstr "Velikost papíru"
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "A4"
|
164 |
msgstr "A4"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Letter"
|
168 |
msgstr "List"
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Shop header/logo"
|
172 |
msgstr "Hlavička / Logo"
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
msgstr "Vyberte hlavičku / Logo"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Set image"
|
180 |
msgstr "Vybrat obrázek"
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Remove image"
|
184 |
msgstr "Smazat obrázek"
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Name"
|
188 |
msgstr "Název obchodu"
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Shop Address"
|
192 |
msgstr "Adresa obchodu"
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Footer: terms & conditions, policies, etc."
|
196 |
msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
199 |
msgid "Number to display on invoice"
|
200 |
msgstr "Číslo ukázané ve faktuře"
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "WooCommerce order number"
|
204 |
msgstr "WooCommerce číslo objednávky"
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Built-in sequential invoice number"
|
208 |
msgstr "Základní sekvenční číslování faktur"
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid ""
|
212 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
213 |
"WooCommerce order number"
|
@@ -215,11 +213,11 @@ msgstr ""
|
|
215 |
"Pokud používáte plugin <i>WooCommerce Sequential Order Numbers</i>, tak "
|
216 |
"zvolte WooCommerce číslo objednávky"
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
220 |
msgstr "Další číslo faktury (bez předpony/přípony)"
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid ""
|
224 |
"This is the number that will be used on the next invoice that is created. By "
|
225 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -233,84 +231,84 @@ msgstr ""
|
|
233 |
"menší než má poslední vytvořená faktura, může dojít k zdvojení číslování ve "
|
234 |
"fakturách!"
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
#, fuzzy
|
238 |
msgid "Invoice number format"
|
239 |
msgstr "Číslo faktury:"
|
240 |
|
241 |
-
#: includes/class-wcpdf-settings.php:
|
242 |
msgid "Prefix"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/class-wcpdf-settings.php:
|
246 |
msgid ""
|
247 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
248 |
"respectively"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/class-wcpdf-settings.php:
|
252 |
msgid "Suffix"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-wcpdf-settings.php:
|
256 |
msgid "Padding"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-wcpdf-settings.php:
|
260 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
261 |
msgstr ""
|
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"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/class-wcpdf-settings.php:
|
270 |
msgid "Date to display on invoice"
|
271 |
msgstr "Datum zobrazený ve faktuře"
|
272 |
|
273 |
-
#: includes/class-wcpdf-settings.php:
|
274 |
msgid "Order date"
|
275 |
msgstr "Datum objednávky"
|
276 |
|
277 |
-
#: includes/class-wcpdf-settings.php:
|
278 |
msgid "Invoice date"
|
279 |
msgstr "Datum fakturace"
|
280 |
|
281 |
-
#: includes/class-wcpdf-settings.php:
|
282 |
msgid "Extra template fields"
|
283 |
msgstr "Extra políčka v šabloně"
|
284 |
|
285 |
-
#: includes/class-wcpdf-settings.php:
|
286 |
msgid "Extra field 1"
|
287 |
msgstr "Extra políčko 1"
|
288 |
|
289 |
-
#: includes/class-wcpdf-settings.php:
|
290 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
291 |
msgstr "Tohle je 1. políčko v patičce v šabloně <i>Modern (Premium)</i>"
|
292 |
|
293 |
-
#: includes/class-wcpdf-settings.php:
|
294 |
msgid "Extra field 2"
|
295 |
msgstr "Extra políčko 2"
|
296 |
|
297 |
-
#: includes/class-wcpdf-settings.php:
|
298 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
299 |
msgstr "Tohle je 2. políčko v patičce v šabloně <i>Modern (Premium)</i>"
|
300 |
|
301 |
-
#: includes/class-wcpdf-settings.php:
|
302 |
msgid "Extra field 3"
|
303 |
msgstr "Extra políčko 3"
|
304 |
|
305 |
-
#: includes/class-wcpdf-settings.php:
|
306 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
307 |
msgstr "Tohle je 3. políčko v patičce v šabloně <i>Modern (Premium)</i>"
|
308 |
|
309 |
-
#: includes/class-wcpdf-settings.php:
|
310 |
msgid "Image resolution"
|
311 |
msgstr "Rozměry obrázku"
|
312 |
|
313 |
-
#: includes/class-wcpdf-settings.php:
|
314 |
msgid ""
|
315 |
"These are used for the (optional) footer columns in the <em>Modern "
|
316 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -325,32 +323,45 @@ msgstr ""
|
|
325 |
msgid "Invoice Number"
|
326 |
msgstr "Číslo faktury:"
|
327 |
|
328 |
-
#: includes/class-wcpdf-writepanels.php:
|
329 |
-
msgid "Create PDF"
|
330 |
-
msgstr "Vytvořit PDF"
|
331 |
-
|
332 |
-
#: includes/class-wcpdf-writepanels.php:143
|
333 |
msgid "Download invoice (PDF)"
|
334 |
msgstr "Stáhnout fakturu (PDF)"
|
335 |
|
336 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
337 |
msgid "PDF invoice"
|
338 |
msgstr "PDF faktura"
|
339 |
|
340 |
-
#: includes/class-wcpdf-writepanels.php:
|
341 |
msgid "PDF Packing Slip"
|
342 |
msgstr "PDF Dodací List"
|
343 |
|
344 |
-
#: includes/class-wcpdf-writepanels.php:
|
345 |
-
#: includes/class-wcpdf-writepanels.php:
|
346 |
msgid "PDF Packing Slips"
|
347 |
msgstr "PDF Dodací Listy"
|
348 |
|
349 |
-
#: includes/class-wcpdf-writepanels.php:
|
350 |
#, fuzzy
|
351 |
msgid "PDF Invoice Number (unformatted!)"
|
352 |
msgstr "PDF Číslo Faktury"
|
353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
355 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
356 |
msgid "Invoice"
|
@@ -362,10 +373,6 @@ msgstr "Faktura"
|
|
362 |
msgid "Packing Slip"
|
363 |
msgstr "Dodací List"
|
364 |
|
365 |
-
#: templates/pdf/Simple/invoice.php:37
|
366 |
-
msgid "Invoice Date:"
|
367 |
-
msgstr "Datum fakturace:"
|
368 |
-
|
369 |
#: templates/pdf/Simple/invoice.php:40
|
370 |
#: templates/pdf/Simple/packing-slip.php:30
|
371 |
msgid "Order Date:"
|
@@ -403,16 +410,21 @@ msgid "Description"
|
|
403 |
msgstr ""
|
404 |
|
405 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
|
|
406 |
#: templates/pdf/Simple/packing-slip.php:54
|
407 |
msgid "SKU:"
|
408 |
msgstr "EAN:"
|
409 |
|
410 |
-
#: templates/pdf/Simple/invoice.php:
|
411 |
#: templates/pdf/Simple/packing-slip.php:55
|
412 |
msgid "Weight:"
|
413 |
msgstr "Hmotnost:"
|
414 |
|
415 |
-
#: templates/pdf/Simple/invoice.php:
|
416 |
#: templates/pdf/Simple/packing-slip.php:69
|
417 |
msgid "Customer Notes"
|
418 |
msgstr "Poznámka zákazníka"
|
@@ -431,37 +443,37 @@ msgstr ""
|
|
431 |
msgid "N/A"
|
432 |
msgstr "Ano/Ne"
|
433 |
|
434 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
435 |
#, fuzzy
|
436 |
msgid "Payment method"
|
437 |
msgstr "Způsob platby:"
|
438 |
|
439 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
440 |
#, fuzzy
|
441 |
msgid "Shipping method"
|
442 |
msgstr "Doprava"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
msgid "Subtotal"
|
446 |
msgstr "Mezisoučet"
|
447 |
|
448 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
449 |
msgid "Shipping"
|
450 |
msgstr "Doprava"
|
451 |
|
452 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
453 |
msgid "Discount"
|
454 |
msgstr "Sleva"
|
455 |
|
456 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
457 |
msgid "VAT"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
461 |
msgid "Total ex. VAT"
|
462 |
msgstr "Celkem bez DPH"
|
463 |
|
464 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
465 |
msgid "Total"
|
466 |
msgstr "Celkem"
|
467 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 14:59+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 14:59+0100\n"
|
6 |
"Last-Translator: Revotech.cz <info@revotech.cz>\n"
|
7 |
"Language-Team: KubiQ <7kubiq7@gmail.com>\n"
|
8 |
"Language: sk\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.6.9\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Nemáte dostatečné oprávnění pro přístup."
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "Faktura"
|
31 |
msgstr[2] "Faktur"
|
32 |
|
33 |
# This is a filename (prefix). do not use spaces or special characters!
|
34 |
+
#: includes/class-wcpdf-export.php:225
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "Dodací List"
|
39 |
msgstr[2] "Dodací Listy"
|
40 |
|
41 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
42 |
+
#: includes/class-wcpdf-writepanels.php:176
|
43 |
+
#: includes/class-wcpdf-writepanels.php:177
|
44 |
msgid "PDF Invoices"
|
45 |
msgstr "PDF Faktura"
|
46 |
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "Nastavení PDF šablony"
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:271
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Vyberte šablonu"
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:279
|
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 |
+
"Chcete použít vlastní šablonu? Skopírujte všechny soubory z <code>%s</code> "
|
154 |
+
"do <code>%s</code> a upravte je podla potřeby"
|
|
|
|
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:285
|
157 |
msgid "Paper size"
|
158 |
msgstr "Velikost papíru"
|
159 |
|
160 |
+
#: includes/class-wcpdf-settings.php:293
|
161 |
msgid "A4"
|
162 |
msgstr "A4"
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:294
|
165 |
msgid "Letter"
|
166 |
msgstr "List"
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:301
|
169 |
msgid "Shop header/logo"
|
170 |
msgstr "Hlavička / Logo"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:308
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
msgstr "Vyberte hlavičku / Logo"
|
175 |
|
176 |
+
#: includes/class-wcpdf-settings.php:309
|
177 |
msgid "Set image"
|
178 |
msgstr "Vybrat obrázek"
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:310
|
181 |
msgid "Remove image"
|
182 |
msgstr "Smazat obrázek"
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:317
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Název obchodu"
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:330
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Adresa obchodu"
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:362
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
194 |
msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:377
|
197 |
msgid "Number to display on invoice"
|
198 |
msgstr "Číslo ukázané ve faktuře"
|
199 |
|
200 |
+
#: includes/class-wcpdf-settings.php:385
|
201 |
msgid "WooCommerce order number"
|
202 |
msgstr "WooCommerce číslo objednávky"
|
203 |
|
204 |
+
#: includes/class-wcpdf-settings.php:386
|
205 |
msgid "Built-in sequential invoice number"
|
206 |
msgstr "Základní sekvenční číslování faktur"
|
207 |
|
208 |
+
#: includes/class-wcpdf-settings.php:388
|
209 |
msgid ""
|
210 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
211 |
"WooCommerce order number"
|
213 |
"Pokud používáte plugin <i>WooCommerce Sequential Order Numbers</i>, tak "
|
214 |
"zvolte WooCommerce číslo objednávky"
|
215 |
|
216 |
+
#: includes/class-wcpdf-settings.php:394
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
msgstr "Další číslo faktury (bez předpony/přípony)"
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:402
|
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 "
|
231 |
"menší než má poslední vytvořená faktura, může dojít k zdvojení číslování ve "
|
232 |
"fakturách!"
|
233 |
|
234 |
+
#: includes/class-wcpdf-settings.php:408
|
235 |
#, fuzzy
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Číslo faktury:"
|
238 |
|
239 |
+
#: includes/class-wcpdf-settings.php:417
|
240 |
msgid "Prefix"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/class-wcpdf-settings.php:419
|
244 |
msgid ""
|
245 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
246 |
"respectively"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/class-wcpdf-settings.php:422
|
250 |
msgid "Suffix"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/class-wcpdf-settings.php:427
|
254 |
msgid "Padding"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/class-wcpdf-settings.php:429
|
258 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/class-wcpdf-settings.php:432
|
262 |
msgid ""
|
263 |
"note: if you have already created a custom invoice number format with a "
|
264 |
"filter, the above settings will be ignored"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/class-wcpdf-settings.php:440
|
268 |
msgid "Date to display on invoice"
|
269 |
msgstr "Datum zobrazený ve faktuře"
|
270 |
|
271 |
+
#: includes/class-wcpdf-settings.php:448
|
272 |
msgid "Order date"
|
273 |
msgstr "Datum objednávky"
|
274 |
|
275 |
+
#: includes/class-wcpdf-settings.php:449
|
276 |
msgid "Invoice date"
|
277 |
msgstr "Datum fakturace"
|
278 |
|
279 |
+
#: includes/class-wcpdf-settings.php:457
|
280 |
msgid "Extra template fields"
|
281 |
msgstr "Extra políčka v šabloně"
|
282 |
|
283 |
+
#: includes/class-wcpdf-settings.php:464
|
284 |
msgid "Extra field 1"
|
285 |
msgstr "Extra políčko 1"
|
286 |
|
287 |
+
#: includes/class-wcpdf-settings.php:473
|
288 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
289 |
msgstr "Tohle je 1. políčko v patičce v šabloně <i>Modern (Premium)</i>"
|
290 |
|
291 |
+
#: includes/class-wcpdf-settings.php:479
|
292 |
msgid "Extra field 2"
|
293 |
msgstr "Extra políčko 2"
|
294 |
|
295 |
+
#: includes/class-wcpdf-settings.php:488
|
296 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
297 |
msgstr "Tohle je 2. políčko v patičce v šabloně <i>Modern (Premium)</i>"
|
298 |
|
299 |
+
#: includes/class-wcpdf-settings.php:494
|
300 |
msgid "Extra field 3"
|
301 |
msgstr "Extra políčko 3"
|
302 |
|
303 |
+
#: includes/class-wcpdf-settings.php:503
|
304 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
305 |
msgstr "Tohle je 3. políčko v patičce v šabloně <i>Modern (Premium)</i>"
|
306 |
|
307 |
+
#: includes/class-wcpdf-settings.php:760
|
308 |
msgid "Image resolution"
|
309 |
msgstr "Rozměry obrázku"
|
310 |
|
311 |
+
#: includes/class-wcpdf-settings.php:871
|
312 |
msgid ""
|
313 |
"These are used for the (optional) footer columns in the <em>Modern "
|
314 |
"(Premium)</em> template, but can also be used for other elements in your "
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Číslo faktury:"
|
325 |
|
326 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
327 |
msgid "Download invoice (PDF)"
|
328 |
msgstr "Stáhnout fakturu (PDF)"
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:150
|
331 |
+
msgid "Create PDF"
|
332 |
+
msgstr "Vytvořit PDF"
|
333 |
+
|
334 |
+
#: includes/class-wcpdf-writepanels.php:160
|
335 |
msgid "PDF invoice"
|
336 |
msgstr "PDF faktura"
|
337 |
|
338 |
+
#: includes/class-wcpdf-writepanels.php:161
|
339 |
msgid "PDF Packing Slip"
|
340 |
msgstr "PDF Dodací List"
|
341 |
|
342 |
+
#: includes/class-wcpdf-writepanels.php:178
|
343 |
+
#: includes/class-wcpdf-writepanels.php:179
|
344 |
msgid "PDF Packing Slips"
|
345 |
msgstr "PDF Dodací Listy"
|
346 |
|
347 |
+
#: includes/class-wcpdf-writepanels.php:192
|
348 |
#, fuzzy
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
msgstr "PDF Číslo Faktury"
|
351 |
|
352 |
+
#: includes/class-wcpdf-writepanels.php:195
|
353 |
+
#: templates/pdf/Simple/invoice.php:37
|
354 |
+
msgid "Invoice Date:"
|
355 |
+
msgstr "Datum fakturace:"
|
356 |
+
|
357 |
+
#: includes/class-wcpdf-writepanels.php:196
|
358 |
+
msgid "h"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/class-wcpdf-writepanels.php:196
|
362 |
+
msgid "m"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
366 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
367 |
msgid "Invoice"
|
373 |
msgid "Packing Slip"
|
374 |
msgstr "Dodací List"
|
375 |
|
|
|
|
|
|
|
|
|
376 |
#: templates/pdf/Simple/invoice.php:40
|
377 |
#: templates/pdf/Simple/packing-slip.php:30
|
378 |
msgid "Order Date:"
|
410 |
msgstr ""
|
411 |
|
412 |
#: templates/pdf/Simple/invoice.php:80
|
413 |
+
#, fuzzy
|
414 |
+
msgid "SKU"
|
415 |
+
msgstr "EAN:"
|
416 |
+
|
417 |
+
#: templates/pdf/Simple/invoice.php:81
|
418 |
#: templates/pdf/Simple/packing-slip.php:54
|
419 |
msgid "SKU:"
|
420 |
msgstr "EAN:"
|
421 |
|
422 |
+
#: templates/pdf/Simple/invoice.php:82
|
423 |
#: templates/pdf/Simple/packing-slip.php:55
|
424 |
msgid "Weight:"
|
425 |
msgstr "Hmotnost:"
|
426 |
|
427 |
+
#: templates/pdf/Simple/invoice.php:114
|
428 |
#: templates/pdf/Simple/packing-slip.php:69
|
429 |
msgid "Customer Notes"
|
430 |
msgstr "Poznámka zákazníka"
|
443 |
msgid "N/A"
|
444 |
msgstr "Ano/Ne"
|
445 |
|
446 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
447 |
#, fuzzy
|
448 |
msgid "Payment method"
|
449 |
msgstr "Způsob platby:"
|
450 |
|
451 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
452 |
#, fuzzy
|
453 |
msgid "Shipping method"
|
454 |
msgstr "Doprava"
|
455 |
|
456 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
457 |
msgid "Subtotal"
|
458 |
msgstr "Mezisoučet"
|
459 |
|
460 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
461 |
msgid "Shipping"
|
462 |
msgstr "Doprava"
|
463 |
|
464 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
465 |
msgid "Discount"
|
466 |
msgstr "Sleva"
|
467 |
|
468 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
469 |
msgid "VAT"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
473 |
msgid "Total ex. VAT"
|
474 |
msgstr "Celkem bez DPH"
|
475 |
|
476 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
477 |
msgid "Total"
|
478 |
msgstr "Celkem"
|
479 |
|
languages/wpo_wcpdf-da_DK.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-da_DK.po
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.6.
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
16 |
-
"Language: da_DK\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:
|
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:36 includes/class-wcpdf-settings.php:37
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF fakturaer "
|
44 |
|
@@ -141,73 +141,72 @@ msgstr "Aktiver faktura nummer kolonne i ordre listen "
|
|
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 |
msgid ""
|
150 |
-
"Want to use your own template? Copy all the files from <code>
|
151 |
-
"
|
152 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
153 |
msgstr ""
|
154 |
-
"Ønsker du at benytte din egen skabelon? Kopier alle filerne fra "
|
155 |
-
"
|
156 |
-
"til <code>yourtheme/woocommerce/pdf/yourtemplate/</code> for at tilpasse den"
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Paper size"
|
160 |
msgstr "Papir størrelse "
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "A4"
|
164 |
msgstr "A4"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Letter"
|
168 |
msgstr "Brev"
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Shop header/logo"
|
172 |
msgstr "Butik header/logo "
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
msgstr "Vælg eller upload dit faktura header/logo"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Set image"
|
180 |
msgstr "Indstil billedet "
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Remove image"
|
184 |
msgstr "Fjern billede"
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Name"
|
188 |
msgstr "Butik navn"
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Shop Address"
|
192 |
msgstr "Butik adresse "
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Footer: terms & conditions, policies, etc."
|
196 |
msgstr "Sidefod: Vilkår & betingelser, politikker mm. "
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
199 |
msgid "Number to display on invoice"
|
200 |
msgstr "Nummer der vises på fakturaen "
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "WooCommerce order number"
|
204 |
msgstr "WooCommerce ordre nummer "
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Built-in sequential invoice number"
|
208 |
msgstr "Indbygget sekventiel faktura nummer"
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid ""
|
212 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
213 |
"WooCommerce order number"
|
@@ -215,11 +214,11 @@ msgstr ""
|
|
215 |
"Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
|
216 |
"WooCommerce ordre nummer "
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
220 |
msgstr "Næste faktura nummer (uden prefix/suffix mm.) "
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid ""
|
224 |
"This is the number that will be used on the next invoice that is created. By "
|
225 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -233,35 +232,35 @@ msgstr ""
|
|
233 |
"tilsidesætter dette og sætter den lavere end den højeste (PDF) "
|
234 |
"fakturanummer, kan dette skabe dobbelt fakturanumre. "
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "Invoice number format"
|
238 |
msgstr "Fakturanummer format "
|
239 |
|
240 |
-
#: includes/class-wcpdf-settings.php:
|
241 |
msgid "Prefix"
|
242 |
msgstr "Prefix"
|
243 |
|
244 |
-
#: includes/class-wcpdf-settings.php:
|
245 |
msgid ""
|
246 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
247 |
"respectively"
|
248 |
msgstr ""
|
249 |
"for at bruge ordre år og/eller måned, brug [order_year] eller [order_month]. "
|
250 |
|
251 |
-
#: includes/class-wcpdf-settings.php:
|
252 |
msgid "Suffix"
|
253 |
msgstr "Suffix "
|
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 ""
|
262 |
"Indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 000042"
|
263 |
|
264 |
-
#: includes/class-wcpdf-settings.php:
|
265 |
msgid ""
|
266 |
"note: if you have already created a custom invoice number format with a "
|
267 |
"filter, the above settings will be ignored"
|
@@ -269,51 +268,51 @@ msgstr ""
|
|
269 |
"Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
|
270 |
"format med et filter, så vil denne indstillingen ovenover blive ignoreret. "
|
271 |
|
272 |
-
#: includes/class-wcpdf-settings.php:
|
273 |
msgid "Date to display on invoice"
|
274 |
msgstr "Dato der skal vises på fakturaerne "
|
275 |
|
276 |
-
#: includes/class-wcpdf-settings.php:
|
277 |
msgid "Order date"
|
278 |
msgstr "Ordredato"
|
279 |
|
280 |
-
#: includes/class-wcpdf-settings.php:
|
281 |
msgid "Invoice date"
|
282 |
msgstr "Fakturadato"
|
283 |
|
284 |
-
#: includes/class-wcpdf-settings.php:
|
285 |
msgid "Extra template fields"
|
286 |
msgstr "Ekstra skabelons felter "
|
287 |
|
288 |
-
#: includes/class-wcpdf-settings.php:
|
289 |
msgid "Extra field 1"
|
290 |
msgstr "Ekstra felt 1"
|
291 |
|
292 |
-
#: includes/class-wcpdf-settings.php:
|
293 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
294 |
msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen "
|
295 |
|
296 |
-
#: includes/class-wcpdf-settings.php:
|
297 |
msgid "Extra field 2"
|
298 |
msgstr "Ekstra felt 2"
|
299 |
|
300 |
-
#: includes/class-wcpdf-settings.php:
|
301 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
302 |
msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen "
|
303 |
|
304 |
-
#: includes/class-wcpdf-settings.php:
|
305 |
msgid "Extra field 3"
|
306 |
msgstr "Ekstra felt 3"
|
307 |
|
308 |
-
#: includes/class-wcpdf-settings.php:
|
309 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
310 |
msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen "
|
311 |
|
312 |
-
#: includes/class-wcpdf-settings.php:
|
313 |
msgid "Image resolution"
|
314 |
msgstr "Billede opløsning"
|
315 |
|
316 |
-
#: includes/class-wcpdf-settings.php:
|
317 |
msgid ""
|
318 |
"These are used for the (optional) footer columns in the <em>Modern "
|
319 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -324,31 +323,44 @@ msgstr "Disse bruges (valgfrit)"
|
|
324 |
msgid "Invoice Number"
|
325 |
msgstr "Fakturanummer "
|
326 |
|
327 |
-
#: includes/class-wcpdf-writepanels.php:
|
328 |
-
msgid "Create PDF"
|
329 |
-
msgstr "Opret PDF"
|
330 |
-
|
331 |
-
#: includes/class-wcpdf-writepanels.php:143
|
332 |
msgid "Download invoice (PDF)"
|
333 |
msgstr "Hent faktura (PDF) "
|
334 |
|
335 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
336 |
msgid "PDF invoice"
|
337 |
msgstr "PDF faktura "
|
338 |
|
339 |
-
#: includes/class-wcpdf-writepanels.php:
|
340 |
msgid "PDF Packing Slip"
|
341 |
msgstr "PDF følgeseddel "
|
342 |
|
343 |
-
#: includes/class-wcpdf-writepanels.php:
|
344 |
-
#: includes/class-wcpdf-writepanels.php:
|
345 |
msgid "PDF Packing Slips"
|
346 |
msgstr "PDF følgesedler "
|
347 |
|
348 |
-
#: includes/class-wcpdf-writepanels.php:
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
msgstr "PDF faktura nummer (uformateret!)"
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
353 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
354 |
msgid "Invoice"
|
@@ -360,10 +372,6 @@ msgstr "Faktura "
|
|
360 |
msgid "Packing Slip"
|
361 |
msgstr "Følgeseddel "
|
362 |
|
363 |
-
#: templates/pdf/Simple/invoice.php:37
|
364 |
-
msgid "Invoice Date:"
|
365 |
-
msgstr "Fakturadato: "
|
366 |
-
|
367 |
#: templates/pdf/Simple/invoice.php:40
|
368 |
#: templates/pdf/Simple/packing-slip.php:30
|
369 |
msgid "Order Date:"
|
@@ -401,16 +409,20 @@ msgid "Description"
|
|
401 |
msgstr "Beskrivelse "
|
402 |
|
403 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
404 |
#: templates/pdf/Simple/packing-slip.php:54
|
405 |
msgid "SKU:"
|
406 |
msgstr "Varenummer: "
|
407 |
|
408 |
-
#: templates/pdf/Simple/invoice.php:
|
409 |
#: templates/pdf/Simple/packing-slip.php:55
|
410 |
msgid "Weight:"
|
411 |
msgstr "Vægt: "
|
412 |
|
413 |
-
#: templates/pdf/Simple/invoice.php:
|
414 |
#: templates/pdf/Simple/packing-slip.php:69
|
415 |
msgid "Customer Notes"
|
416 |
msgstr "Kunde bemærkning"
|
@@ -429,34 +441,34 @@ msgstr ""
|
|
429 |
msgid "N/A"
|
430 |
msgstr "N/A"
|
431 |
|
432 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
433 |
msgid "Payment method"
|
434 |
msgstr "Betaling"
|
435 |
|
436 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
437 |
msgid "Shipping method"
|
438 |
msgstr "Fragt"
|
439 |
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
msgid "Subtotal"
|
442 |
msgstr "Subtotal"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
msgid "Shipping"
|
446 |
msgstr "Fragt"
|
447 |
|
448 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
449 |
msgid "Discount"
|
450 |
msgstr "Rabat"
|
451 |
|
452 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
453 |
msgid "VAT"
|
454 |
msgstr "Moms"
|
455 |
|
456 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
457 |
msgid "Total ex. VAT"
|
458 |
msgstr "Total ex. moms"
|
459 |
|
460 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
461 |
msgid "Total"
|
462 |
msgstr "Total"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:00+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:02+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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
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:223 includes/class-wcpdf-export.php:303
|
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:225
|
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:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF fakturaer "
|
44 |
|
141 |
msgid "PDF Template settings"
|
142 |
msgstr "PDF skabelon indstillinger "
|
143 |
|
144 |
+
#: includes/class-wcpdf-settings.php:271
|
145 |
msgid "Choose a template"
|
146 |
msgstr "Vælg en skabelon"
|
147 |
|
148 |
+
#: includes/class-wcpdf-settings.php:279
|
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:285
|
158 |
msgid "Paper size"
|
159 |
msgstr "Papir størrelse "
|
160 |
|
161 |
+
#: includes/class-wcpdf-settings.php:293
|
162 |
msgid "A4"
|
163 |
msgstr "A4"
|
164 |
|
165 |
+
#: includes/class-wcpdf-settings.php:294
|
166 |
msgid "Letter"
|
167 |
msgstr "Brev"
|
168 |
|
169 |
+
#: includes/class-wcpdf-settings.php:301
|
170 |
msgid "Shop header/logo"
|
171 |
msgstr "Butik header/logo "
|
172 |
|
173 |
+
#: includes/class-wcpdf-settings.php:308
|
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:309
|
178 |
msgid "Set image"
|
179 |
msgstr "Indstil billedet "
|
180 |
|
181 |
+
#: includes/class-wcpdf-settings.php:310
|
182 |
msgid "Remove image"
|
183 |
msgstr "Fjern billede"
|
184 |
|
185 |
+
#: includes/class-wcpdf-settings.php:317
|
186 |
msgid "Shop Name"
|
187 |
msgstr "Butik navn"
|
188 |
|
189 |
+
#: includes/class-wcpdf-settings.php:330
|
190 |
msgid "Shop Address"
|
191 |
msgstr "Butik adresse "
|
192 |
|
193 |
+
#: includes/class-wcpdf-settings.php:362
|
194 |
msgid "Footer: terms & conditions, policies, etc."
|
195 |
msgstr "Sidefod: Vilkår & betingelser, politikker mm. "
|
196 |
|
197 |
+
#: includes/class-wcpdf-settings.php:377
|
198 |
msgid "Number to display on invoice"
|
199 |
msgstr "Nummer der vises på fakturaen "
|
200 |
|
201 |
+
#: includes/class-wcpdf-settings.php:385
|
202 |
msgid "WooCommerce order number"
|
203 |
msgstr "WooCommerce ordre nummer "
|
204 |
|
205 |
+
#: includes/class-wcpdf-settings.php:386
|
206 |
msgid "Built-in sequential invoice number"
|
207 |
msgstr "Indbygget sekventiel faktura nummer"
|
208 |
|
209 |
+
#: includes/class-wcpdf-settings.php:388
|
210 |
msgid ""
|
211 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
212 |
"WooCommerce order number"
|
214 |
"Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
|
215 |
"WooCommerce ordre nummer "
|
216 |
|
217 |
+
#: includes/class-wcpdf-settings.php:394
|
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:402
|
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 |
"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:408
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Fakturanummer format "
|
238 |
|
239 |
+
#: includes/class-wcpdf-settings.php:417
|
240 |
msgid "Prefix"
|
241 |
msgstr "Prefix"
|
242 |
|
243 |
+
#: includes/class-wcpdf-settings.php:419
|
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:422
|
251 |
msgid "Suffix"
|
252 |
msgstr "Suffix "
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:427
|
255 |
msgid "Padding"
|
256 |
msgstr "Padding "
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:429
|
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:432
|
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 |
"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:440
|
272 |
msgid "Date to display on invoice"
|
273 |
msgstr "Dato der skal vises på fakturaerne "
|
274 |
|
275 |
+
#: includes/class-wcpdf-settings.php:448
|
276 |
msgid "Order date"
|
277 |
msgstr "Ordredato"
|
278 |
|
279 |
+
#: includes/class-wcpdf-settings.php:449
|
280 |
msgid "Invoice date"
|
281 |
msgstr "Fakturadato"
|
282 |
|
283 |
+
#: includes/class-wcpdf-settings.php:457
|
284 |
msgid "Extra template fields"
|
285 |
msgstr "Ekstra skabelons felter "
|
286 |
|
287 |
+
#: includes/class-wcpdf-settings.php:464
|
288 |
msgid "Extra field 1"
|
289 |
msgstr "Ekstra felt 1"
|
290 |
|
291 |
+
#: includes/class-wcpdf-settings.php:473
|
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:479
|
296 |
msgid "Extra field 2"
|
297 |
msgstr "Ekstra felt 2"
|
298 |
|
299 |
+
#: includes/class-wcpdf-settings.php:488
|
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:494
|
304 |
msgid "Extra field 3"
|
305 |
msgstr "Ekstra felt 3"
|
306 |
|
307 |
+
#: includes/class-wcpdf-settings.php:503
|
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:760
|
312 |
msgid "Image resolution"
|
313 |
msgstr "Billede opløsning"
|
314 |
|
315 |
+
#: includes/class-wcpdf-settings.php:871
|
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 "
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Fakturanummer "
|
325 |
|
326 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
327 |
msgid "Download invoice (PDF)"
|
328 |
msgstr "Hent faktura (PDF) "
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:150
|
331 |
+
msgid "Create PDF"
|
332 |
+
msgstr "Opret PDF"
|
333 |
+
|
334 |
+
#: includes/class-wcpdf-writepanels.php:160
|
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:195
|
352 |
+
#: templates/pdf/Simple/invoice.php:37
|
353 |
+
msgid "Invoice Date:"
|
354 |
+
msgstr "Fakturadato: "
|
355 |
+
|
356 |
+
#: includes/class-wcpdf-writepanels.php:196
|
357 |
+
msgid "h"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/class-wcpdf-writepanels.php:196
|
361 |
+
msgid "m"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
365 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
366 |
msgid "Invoice"
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Følgeseddel "
|
374 |
|
|
|
|
|
|
|
|
|
375 |
#: templates/pdf/Simple/invoice.php:40
|
376 |
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
msgid "Order Date:"
|
409 |
msgstr "Beskrivelse "
|
410 |
|
411 |
#: templates/pdf/Simple/invoice.php:80
|
412 |
+
msgid "SKU"
|
413 |
+
msgstr "Varenummer"
|
414 |
+
|
415 |
+
#: templates/pdf/Simple/invoice.php:81
|
416 |
#: templates/pdf/Simple/packing-slip.php:54
|
417 |
msgid "SKU:"
|
418 |
msgstr "Varenummer: "
|
419 |
|
420 |
+
#: templates/pdf/Simple/invoice.php:82
|
421 |
#: templates/pdf/Simple/packing-slip.php:55
|
422 |
msgid "Weight:"
|
423 |
msgstr "Vægt: "
|
424 |
|
425 |
+
#: templates/pdf/Simple/invoice.php:114
|
426 |
#: templates/pdf/Simple/packing-slip.php:69
|
427 |
msgid "Customer Notes"
|
428 |
msgstr "Kunde bemærkning"
|
441 |
msgid "N/A"
|
442 |
msgstr "N/A"
|
443 |
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
445 |
msgid "Payment method"
|
446 |
msgstr "Betaling"
|
447 |
|
448 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
449 |
msgid "Shipping method"
|
450 |
msgstr "Fragt"
|
451 |
|
452 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
453 |
msgid "Subtotal"
|
454 |
msgstr "Subtotal"
|
455 |
|
456 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
457 |
msgid "Shipping"
|
458 |
msgstr "Fragt"
|
459 |
|
460 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
461 |
msgid "Discount"
|
462 |
msgstr "Rabat"
|
463 |
|
464 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
465 |
msgid "VAT"
|
466 |
msgstr "Moms"
|
467 |
|
468 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
469 |
msgid "Total ex. VAT"
|
470 |
msgstr "Total ex. moms"
|
471 |
|
472 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
473 |
msgid "Total"
|
474 |
msgstr "Total"
|
languages/wpo_wcpdf-de_DE.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-de_DE.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-09-
|
5 |
-
"PO-Revision-Date: 2014-09-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: de_DE\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.6.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -138,84 +138,82 @@ msgstr ""
|
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF Vorlageneinstellungen"
|
140 |
|
141 |
-
#: includes/class-wcpdf-settings.php:
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Wähle eine Vorlage"
|
144 |
|
145 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
146 |
msgid ""
|
147 |
-
"Want to use your own template? Copy all the files from <code>
|
148 |
-
"
|
149 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
150 |
msgstr ""
|
151 |
"Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
|
152 |
-
"<code>
|
153 |
-
"nach <code>deinTheme/woocommerce/pdf/deineVorlage/</code> und passe sie dort "
|
154 |
-
"an."
|
155 |
|
156 |
-
#: includes/class-wcpdf-settings.php:
|
157 |
msgid "Paper size"
|
158 |
msgstr "Papierformat"
|
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 "Letter (US)"
|
167 |
|
168 |
-
#: includes/class-wcpdf-settings.php:
|
169 |
msgid "Shop header/logo"
|
170 |
msgstr "Briefkopf-Logo"
|
171 |
|
172 |
-
#: includes/class-wcpdf-settings.php:
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
msgstr "Auswählen oder hochladen des Logos"
|
175 |
|
176 |
-
#: includes/class-wcpdf-settings.php:
|
177 |
msgid "Set image"
|
178 |
msgstr "Logo festlegen"
|
179 |
|
180 |
-
#: includes/class-wcpdf-settings.php:
|
181 |
msgid "Remove image"
|
182 |
msgstr "Logo entfernen"
|
183 |
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Shop Name"
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Shop Adresse"
|
191 |
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
194 |
msgstr "Fußzeile: allgemeine Bestimmungen, etc."
|
195 |
|
196 |
-
#: includes/class-wcpdf-settings.php:
|
197 |
msgid "Number to display on invoice"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/class-wcpdf-settings.php:
|
201 |
msgid "WooCommerce order number"
|
202 |
msgstr "WooCommerce Bestellnummer"
|
203 |
|
204 |
-
#: includes/class-wcpdf-settings.php:
|
205 |
msgid "Built-in sequential invoice number"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-wcpdf-settings.php:
|
209 |
msgid ""
|
210 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
211 |
"WooCommerce order number"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-wcpdf-settings.php:
|
215 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid ""
|
220 |
"This is the number that will be used on the next invoice that is created. By "
|
221 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -224,87 +222,87 @@ msgid ""
|
|
224 |
"this could create double invoice numbers!"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/class-wcpdf-settings.php:
|
228 |
#, fuzzy
|
229 |
msgid "Invoice number format"
|
230 |
msgstr "Rechnungsnummer"
|
231 |
|
232 |
-
#: includes/class-wcpdf-settings.php:
|
233 |
msgid "Prefix"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid ""
|
238 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
239 |
"respectively"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-wcpdf-settings.php:
|
243 |
msgid "Suffix"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/class-wcpdf-settings.php:
|
247 |
msgid "Padding"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/class-wcpdf-settings.php:
|
251 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/class-wcpdf-settings.php:
|
255 |
msgid ""
|
256 |
"note: if you have already created a custom invoice number format with a "
|
257 |
"filter, the above settings will be ignored"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/class-wcpdf-settings.php:
|
261 |
msgid "Date to display on invoice"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/class-wcpdf-settings.php:
|
265 |
msgid "Order date"
|
266 |
msgstr "Bestelldatum"
|
267 |
|
268 |
-
#: includes/class-wcpdf-settings.php:
|
269 |
msgid "Invoice date"
|
270 |
msgstr "Rechnungsdatum"
|
271 |
|
272 |
-
#: includes/class-wcpdf-settings.php:
|
273 |
msgid "Extra template fields"
|
274 |
msgstr "Zusätzliche Vorlagenfelder"
|
275 |
|
276 |
-
#: includes/class-wcpdf-settings.php:
|
277 |
msgid "Extra field 1"
|
278 |
msgstr "Zusatzfeld 1"
|
279 |
|
280 |
-
#: includes/class-wcpdf-settings.php:
|
281 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
282 |
msgstr ""
|
283 |
"Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
|
284 |
|
285 |
-
#: includes/class-wcpdf-settings.php:
|
286 |
msgid "Extra field 2"
|
287 |
msgstr "Zusatzfeld 2"
|
288 |
|
289 |
-
#: includes/class-wcpdf-settings.php:
|
290 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
291 |
msgstr ""
|
292 |
"Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
295 |
msgid "Extra field 3"
|
296 |
msgstr "Zusatzfeld 3"
|
297 |
|
298 |
-
#: includes/class-wcpdf-settings.php:
|
299 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
300 |
msgstr ""
|
301 |
"Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "Image resolution"
|
305 |
msgstr "Bildauflösung"
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid ""
|
309 |
"These are used for the (optional) footer columns in the <em>Modern "
|
310 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -344,7 +342,8 @@ msgid "PDF Invoice Number (unformatted!)"
|
|
344 |
msgstr ""
|
345 |
|
346 |
#: includes/class-wcpdf-writepanels.php:195
|
347 |
-
|
|
|
348 |
msgstr "Rechnungsdatum:"
|
349 |
|
350 |
#: includes/class-wcpdf-writepanels.php:196
|
@@ -366,10 +365,6 @@ msgstr "Rechnung"
|
|
366 |
msgid "Packing Slip"
|
367 |
msgstr "Packliste"
|
368 |
|
369 |
-
#: templates/pdf/Simple/invoice.php:37
|
370 |
-
msgid "Invoice Date:"
|
371 |
-
msgstr "Rechnungsdatum:"
|
372 |
-
|
373 |
#: templates/pdf/Simple/invoice.php:40
|
374 |
#: templates/pdf/Simple/packing-slip.php:30
|
375 |
msgid "Order Date:"
|
@@ -469,6 +464,9 @@ msgstr "Gesamtsumme ohne MwSt."
|
|
469 |
msgid "Total"
|
470 |
msgstr "Gesamtsumme"
|
471 |
|
|
|
|
|
|
|
472 |
#~ msgid "..."
|
473 |
#~ msgstr "..."
|
474 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:02+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:03+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: de_DE\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.6.9\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF Vorlageneinstellungen"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:271
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Wähle eine Vorlage"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:279
|
146 |
+
#, php-format
|
147 |
msgid ""
|
148 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
149 |
+
"<code>%s</code> to customize them"
|
|
|
150 |
msgstr ""
|
151 |
"Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
|
152 |
+
"<code>%s</code> nach <code>%s</code> und passe sie dort an."
|
|
|
|
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:285
|
155 |
msgid "Paper size"
|
156 |
msgstr "Papierformat"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:293
|
159 |
msgid "A4"
|
160 |
msgstr "A4"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:294
|
163 |
msgid "Letter"
|
164 |
msgstr "Letter (US)"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:301
|
167 |
msgid "Shop header/logo"
|
168 |
msgstr "Briefkopf-Logo"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:308
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
msgstr "Auswählen oder hochladen des Logos"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:309
|
175 |
msgid "Set image"
|
176 |
msgstr "Logo festlegen"
|
177 |
|
178 |
+
#: includes/class-wcpdf-settings.php:310
|
179 |
msgid "Remove image"
|
180 |
msgstr "Logo entfernen"
|
181 |
|
182 |
+
#: includes/class-wcpdf-settings.php:317
|
183 |
msgid "Shop Name"
|
184 |
msgstr "Shop Name"
|
185 |
|
186 |
+
#: includes/class-wcpdf-settings.php:330
|
187 |
msgid "Shop Address"
|
188 |
msgstr "Shop Adresse"
|
189 |
|
190 |
+
#: includes/class-wcpdf-settings.php:362
|
191 |
msgid "Footer: terms & conditions, policies, etc."
|
192 |
msgstr "Fußzeile: allgemeine Bestimmungen, etc."
|
193 |
|
194 |
+
#: includes/class-wcpdf-settings.php:377
|
195 |
msgid "Number to display on invoice"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/class-wcpdf-settings.php:385
|
199 |
msgid "WooCommerce order number"
|
200 |
msgstr "WooCommerce Bestellnummer"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:386
|
203 |
msgid "Built-in sequential invoice number"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:388
|
207 |
msgid ""
|
208 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
209 |
"WooCommerce order number"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/class-wcpdf-settings.php:394
|
213 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/class-wcpdf-settings.php:402
|
217 |
msgid ""
|
218 |
"This is the number that will be used on the next invoice that is created. By "
|
219 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
222 |
"this could create double invoice numbers!"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: includes/class-wcpdf-settings.php:408
|
226 |
#, fuzzy
|
227 |
msgid "Invoice number format"
|
228 |
msgstr "Rechnungsnummer"
|
229 |
|
230 |
+
#: includes/class-wcpdf-settings.php:417
|
231 |
msgid "Prefix"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: includes/class-wcpdf-settings.php:419
|
235 |
msgid ""
|
236 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
237 |
"respectively"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:422
|
241 |
msgid "Suffix"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:427
|
245 |
msgid "Padding"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:429
|
249 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:432
|
253 |
msgid ""
|
254 |
"note: if you have already created a custom invoice number format with a "
|
255 |
"filter, the above settings will be ignored"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:440
|
259 |
msgid "Date to display on invoice"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:448
|
263 |
msgid "Order date"
|
264 |
msgstr "Bestelldatum"
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:449
|
267 |
msgid "Invoice date"
|
268 |
msgstr "Rechnungsdatum"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:457
|
271 |
msgid "Extra template fields"
|
272 |
msgstr "Zusätzliche Vorlagenfelder"
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:464
|
275 |
msgid "Extra field 1"
|
276 |
msgstr "Zusatzfeld 1"
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:473
|
279 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
280 |
msgstr ""
|
281 |
"Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
|
282 |
|
283 |
+
#: includes/class-wcpdf-settings.php:479
|
284 |
msgid "Extra field 2"
|
285 |
msgstr "Zusatzfeld 2"
|
286 |
|
287 |
+
#: includes/class-wcpdf-settings.php:488
|
288 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
289 |
msgstr ""
|
290 |
"Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
|
291 |
|
292 |
+
#: includes/class-wcpdf-settings.php:494
|
293 |
msgid "Extra field 3"
|
294 |
msgstr "Zusatzfeld 3"
|
295 |
|
296 |
+
#: includes/class-wcpdf-settings.php:503
|
297 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
298 |
msgstr ""
|
299 |
"Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
|
300 |
|
301 |
+
#: includes/class-wcpdf-settings.php:760
|
302 |
msgid "Image resolution"
|
303 |
msgstr "Bildauflösung"
|
304 |
|
305 |
+
#: includes/class-wcpdf-settings.php:871
|
306 |
msgid ""
|
307 |
"These are used for the (optional) footer columns in the <em>Modern "
|
308 |
"(Premium)</em> template, but can also be used for other elements in your "
|
342 |
msgstr ""
|
343 |
|
344 |
#: includes/class-wcpdf-writepanels.php:195
|
345 |
+
#: templates/pdf/Simple/invoice.php:37
|
346 |
+
msgid "Invoice Date:"
|
347 |
msgstr "Rechnungsdatum:"
|
348 |
|
349 |
#: includes/class-wcpdf-writepanels.php:196
|
365 |
msgid "Packing Slip"
|
366 |
msgstr "Packliste"
|
367 |
|
|
|
|
|
|
|
|
|
368 |
#: templates/pdf/Simple/invoice.php:40
|
369 |
#: templates/pdf/Simple/packing-slip.php:30
|
370 |
msgid "Order Date:"
|
464 |
msgid "Total"
|
465 |
msgstr "Gesamtsumme"
|
466 |
|
467 |
+
#~ msgid "Invoice date:"
|
468 |
+
#~ msgstr "Rechnungsdatum:"
|
469 |
+
|
470 |
#~ msgid "..."
|
471 |
#~ msgstr "..."
|
472 |
|
languages/wpo_wcpdf-en_AU.mo
ADDED
Binary file
|
languages/wpo_wcpdf-en_AU.po
ADDED
@@ -0,0 +1,451 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:03+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"Language: en_AU\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
+
msgid "You do not have sufficient permissions to access this page."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
+
msgid "invoice"
|
28 |
+
msgid_plural "invoices"
|
29 |
+
msgstr[0] ""
|
30 |
+
msgstr[1] ""
|
31 |
+
|
32 |
+
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:225
|
34 |
+
msgid "packing-slip"
|
35 |
+
msgid_plural "packing-slips"
|
36 |
+
msgstr[0] ""
|
37 |
+
msgstr[1] ""
|
38 |
+
|
39 |
+
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
42 |
+
msgid "PDF Invoices"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-wcpdf-settings.php:60
|
46 |
+
msgid "Settings"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-wcpdf-settings.php:82
|
50 |
+
msgid "General"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-wcpdf-settings.php:83
|
54 |
+
msgid "Template"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-wcpdf-settings.php:92
|
58 |
+
msgid "WooCommerce PDF Invoices"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-wcpdf-settings.php:98
|
62 |
+
msgid "Status"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-wcpdf-settings.php:109
|
66 |
+
#, php-format
|
67 |
+
msgid ""
|
68 |
+
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
+
"extension."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: includes/class-wcpdf-settings.php:119
|
73 |
+
#, php-format
|
74 |
+
msgid ""
|
75 |
+
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
76 |
+
"Packing Slips templates at %s."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: includes/class-wcpdf-settings.php:120
|
80 |
+
#, php-format
|
81 |
+
msgid "For custom templates, contact us at %s."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: includes/class-wcpdf-settings.php:175
|
85 |
+
msgid "General settings"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: includes/class-wcpdf-settings.php:182
|
89 |
+
msgid "How do you want to view the PDF?"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: includes/class-wcpdf-settings.php:190
|
93 |
+
msgid "Download the PDF"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: includes/class-wcpdf-settings.php:191
|
97 |
+
msgid "Open the PDF in a new browser tab/window"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: includes/class-wcpdf-settings.php:201
|
101 |
+
msgid "Attach invoice to:"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: includes/class-wcpdf-settings.php:209
|
105 |
+
msgid "Admin New Order email"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: includes/class-wcpdf-settings.php:210
|
109 |
+
msgid "Customer Processing Order email"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: includes/class-wcpdf-settings.php:211
|
113 |
+
msgid "Customer Completed Order email"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: includes/class-wcpdf-settings.php:212
|
117 |
+
msgid "Customer Invoice email"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: includes/class-wcpdf-settings.php:214
|
121 |
+
#, php-format
|
122 |
+
msgid ""
|
123 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
124 |
+
"permissions for this folder! Without having write access to this folder, the "
|
125 |
+
"plugin will not be able to email invoices."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/class-wcpdf-settings.php:220
|
129 |
+
msgid "Enable invoice number column in the orders list"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: includes/class-wcpdf-settings.php:259
|
133 |
+
msgid "PDF Template settings"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: includes/class-wcpdf-settings.php:271
|
137 |
+
msgid "Choose a template"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: includes/class-wcpdf-settings.php:279
|
141 |
+
#, php-format
|
142 |
+
msgid ""
|
143 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
144 |
+
"<code>%s</code> to customize them"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/class-wcpdf-settings.php:285
|
148 |
+
msgid "Paper size"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/class-wcpdf-settings.php:293
|
152 |
+
msgid "A4"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/class-wcpdf-settings.php:294
|
156 |
+
msgid "Letter"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/class-wcpdf-settings.php:301
|
160 |
+
msgid "Shop header/logo"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/class-wcpdf-settings.php:308
|
164 |
+
msgid "Select or upload your invoice header/logo"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/class-wcpdf-settings.php:309
|
168 |
+
msgid "Set image"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/class-wcpdf-settings.php:310
|
172 |
+
msgid "Remove image"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/class-wcpdf-settings.php:317
|
176 |
+
msgid "Shop Name"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/class-wcpdf-settings.php:330
|
180 |
+
msgid "Shop Address"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/class-wcpdf-settings.php:362
|
184 |
+
msgid "Footer: terms & conditions, policies, etc."
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: includes/class-wcpdf-settings.php:377
|
188 |
+
msgid "Number to display on invoice"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/class-wcpdf-settings.php:385
|
192 |
+
msgid "WooCommerce order number"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/class-wcpdf-settings.php:386
|
196 |
+
msgid "Built-in sequential invoice number"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/class-wcpdf-settings.php:388
|
200 |
+
msgid ""
|
201 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
202 |
+
"WooCommerce order number"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/class-wcpdf-settings.php:394
|
206 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/class-wcpdf-settings.php:402
|
210 |
+
msgid ""
|
211 |
+
"This is the number that will be used on the next invoice that is created. By "
|
212 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
213 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
214 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
215 |
+
"this could create double invoice numbers!"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/class-wcpdf-settings.php:408
|
219 |
+
msgid "Invoice number format"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/class-wcpdf-settings.php:417
|
223 |
+
msgid "Prefix"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/class-wcpdf-settings.php:419
|
227 |
+
msgid ""
|
228 |
+
"to use the order year and/or month, use [order_year] or [order_month] "
|
229 |
+
"respectively"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: includes/class-wcpdf-settings.php:422
|
233 |
+
msgid "Suffix"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/class-wcpdf-settings.php:427
|
237 |
+
msgid "Padding"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: includes/class-wcpdf-settings.php:429
|
241 |
+
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: includes/class-wcpdf-settings.php:432
|
245 |
+
msgid ""
|
246 |
+
"note: if you have already created a custom invoice number format with a "
|
247 |
+
"filter, the above settings will be ignored"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/class-wcpdf-settings.php:440
|
251 |
+
msgid "Date to display on invoice"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/class-wcpdf-settings.php:448
|
255 |
+
msgid "Order date"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/class-wcpdf-settings.php:449
|
259 |
+
msgid "Invoice date"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/class-wcpdf-settings.php:457
|
263 |
+
msgid "Extra template fields"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/class-wcpdf-settings.php:464
|
267 |
+
msgid "Extra field 1"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/class-wcpdf-settings.php:473
|
271 |
+
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/class-wcpdf-settings.php:479
|
275 |
+
msgid "Extra field 2"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/class-wcpdf-settings.php:488
|
279 |
+
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/class-wcpdf-settings.php:494
|
283 |
+
msgid "Extra field 3"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/class-wcpdf-settings.php:503
|
287 |
+
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/class-wcpdf-settings.php:760
|
291 |
+
msgid "Image resolution"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/class-wcpdf-settings.php:871
|
295 |
+
msgid ""
|
296 |
+
"These are used for the (optional) footer columns in the <em>Modern "
|
297 |
+
"(Premium)</em> template, but can also be used for other elements in your "
|
298 |
+
"custom template"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: includes/class-wcpdf-writepanels.php:102
|
302 |
+
msgid "Invoice Number"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: includes/class-wcpdf-writepanels.php:139
|
306 |
+
msgid "Download invoice (PDF)"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: includes/class-wcpdf-writepanels.php:150
|
310 |
+
msgid "Create PDF"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: includes/class-wcpdf-writepanels.php:160
|
314 |
+
msgid "PDF invoice"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: includes/class-wcpdf-writepanels.php:161
|
318 |
+
msgid "PDF Packing Slip"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/class-wcpdf-writepanels.php:178
|
322 |
+
#: includes/class-wcpdf-writepanels.php:179
|
323 |
+
msgid "PDF Packing Slips"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/class-wcpdf-writepanels.php:192
|
327 |
+
msgid "PDF Invoice Number (unformatted!)"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/class-wcpdf-writepanels.php:195
|
331 |
+
#: templates/pdf/Simple/invoice.php:37
|
332 |
+
msgid "Invoice Date:"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/class-wcpdf-writepanels.php:196
|
336 |
+
msgid "h"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: includes/class-wcpdf-writepanels.php:196
|
340 |
+
msgid "m"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
344 |
+
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
345 |
+
msgid "Invoice"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
349 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
350 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
351 |
+
msgid "Packing Slip"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: templates/pdf/Simple/invoice.php:40
|
355 |
+
#: templates/pdf/Simple/packing-slip.php:30
|
356 |
+
msgid "Order Date:"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: templates/pdf/Simple/invoice.php:46
|
360 |
+
msgid "Invoice Number:"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: templates/pdf/Simple/invoice.php:49
|
364 |
+
#: templates/pdf/Simple/packing-slip.php:32
|
365 |
+
msgid "Order Number:"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: templates/pdf/Simple/invoice.php:56
|
369 |
+
msgid "Payment Method:"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: templates/pdf/Simple/invoice.php:69
|
373 |
+
#: templates/pdf/Simple/packing-slip.php:45
|
374 |
+
msgid "Product"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: templates/pdf/Simple/invoice.php:70
|
378 |
+
#: templates/pdf/Simple/packing-slip.php:46
|
379 |
+
msgid "Quantity"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: templates/pdf/Simple/invoice.php:71
|
383 |
+
msgid "Price"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: templates/pdf/Simple/invoice.php:77
|
387 |
+
msgid "Description"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: templates/pdf/Simple/invoice.php:80
|
391 |
+
msgid "SKU"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: templates/pdf/Simple/invoice.php:81
|
395 |
+
#: templates/pdf/Simple/packing-slip.php:54
|
396 |
+
msgid "SKU:"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: templates/pdf/Simple/invoice.php:82
|
400 |
+
#: templates/pdf/Simple/packing-slip.php:55
|
401 |
+
msgid "Weight:"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: templates/pdf/Simple/invoice.php:114
|
405 |
+
#: templates/pdf/Simple/packing-slip.php:69
|
406 |
+
msgid "Customer Notes"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
410 |
+
#, php-format
|
411 |
+
msgid ""
|
412 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
413 |
+
"installed & activated!"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
417 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
418 |
+
msgid "N/A"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
422 |
+
msgid "Payment method"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
426 |
+
msgid "Shipping method"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
430 |
+
msgid "Subtotal"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
434 |
+
msgid "Shipping"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
438 |
+
msgid "Discount"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
442 |
+
msgid "VAT"
|
443 |
+
msgstr "GST"
|
444 |
+
|
445 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
446 |
+
msgid "Total ex. VAT"
|
447 |
+
msgstr "Total ex. GST"
|
448 |
+
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
450 |
+
msgid "Total"
|
451 |
+
msgstr ""
|
languages/wpo_wcpdf-es_ES.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-es_ES.po
CHANGED
@@ -1,42 +1,42 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: es_ES\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.6.
|
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:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "No tiene suficientes permitos para acceder a esta página."
|
24 |
|
25 |
-
#: includes/class-wcpdf-export.php:
|
26 |
msgid "invoice"
|
27 |
msgid_plural "invoices"
|
28 |
msgstr[0] "factura"
|
29 |
msgstr[1] "facturas"
|
30 |
|
31 |
-
#: includes/class-wcpdf-export.php:
|
32 |
msgid "packing-slip"
|
33 |
msgid_plural "packing-slips"
|
34 |
msgstr[0] "albarán de entrega"
|
35 |
msgstr[1] "albaranes de entrega"
|
36 |
|
37 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
38 |
-
#: includes/class-wcpdf-writepanels.php:
|
39 |
-
#: includes/class-wcpdf-writepanels.php:
|
40 |
msgid "PDF Invoices"
|
41 |
msgstr "Facturas PDF"
|
42 |
|
@@ -136,73 +136,72 @@ msgstr "Activar la columna de número de factura en pedidos"
|
|
136 |
msgid "PDF Template settings"
|
137 |
msgstr "Ajustes de la plantilla PDF"
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
msgid "Choose a template"
|
141 |
msgstr "Elige una plantilla"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
144 |
msgid ""
|
145 |
-
"Want to use your own template? Copy all the files from <code>
|
146 |
-
"
|
147 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
148 |
msgstr ""
|
149 |
-
"¿Desea usar su propia plantilla? Copie todo los archivos de "
|
150 |
-
"<code
|
151 |
-
"<code>yourtheme/woocommerce/pdf/yourtemplate/</code> y personalícela."
|
152 |
|
153 |
-
#: includes/class-wcpdf-settings.php:
|
154 |
msgid "Paper size"
|
155 |
msgstr "Tamaño del papel"
|
156 |
|
157 |
-
#: includes/class-wcpdf-settings.php:
|
158 |
msgid "A4"
|
159 |
msgstr "A4"
|
160 |
|
161 |
-
#: includes/class-wcpdf-settings.php:
|
162 |
msgid "Letter"
|
163 |
msgstr "Carta"
|
164 |
|
165 |
-
#: includes/class-wcpdf-settings.php:
|
166 |
msgid "Shop header/logo"
|
167 |
msgstr "Logotipo de la tienda"
|
168 |
|
169 |
-
#: includes/class-wcpdf-settings.php:
|
170 |
msgid "Select or upload your invoice header/logo"
|
171 |
msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
|
172 |
|
173 |
-
#: includes/class-wcpdf-settings.php:
|
174 |
msgid "Set image"
|
175 |
msgstr "Añadir imagen"
|
176 |
|
177 |
-
#: includes/class-wcpdf-settings.php:
|
178 |
msgid "Remove image"
|
179 |
msgstr "Eliminar la imagen"
|
180 |
|
181 |
-
#: includes/class-wcpdf-settings.php:
|
182 |
msgid "Shop Name"
|
183 |
msgstr "Nombre de la tienda"
|
184 |
|
185 |
-
#: includes/class-wcpdf-settings.php:
|
186 |
msgid "Shop Address"
|
187 |
msgstr "Dirección de la tienda"
|
188 |
|
189 |
-
#: includes/class-wcpdf-settings.php:
|
190 |
msgid "Footer: terms & conditions, policies, etc."
|
191 |
msgstr "Pie de página: Términos y condiciones, políticas, etc."
|
192 |
|
193 |
-
#: includes/class-wcpdf-settings.php:
|
194 |
msgid "Number to display on invoice"
|
195 |
msgstr "Número a mostrar en la factura"
|
196 |
|
197 |
-
#: includes/class-wcpdf-settings.php:
|
198 |
msgid "WooCommerce order number"
|
199 |
msgstr "Número de pedido de WooCommerce "
|
200 |
|
201 |
-
#: includes/class-wcpdf-settings.php:
|
202 |
msgid "Built-in sequential invoice number"
|
203 |
msgstr "Crear numeración secuencial de factura"
|
204 |
|
205 |
-
#: includes/class-wcpdf-settings.php:
|
206 |
msgid ""
|
207 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
208 |
"WooCommerce order number"
|
@@ -210,11 +209,11 @@ msgstr ""
|
|
210 |
"Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
|
211 |
"seleccione el número de pedido de WooCommerce."
|
212 |
|
213 |
-
#: includes/class-wcpdf-settings.php:
|
214 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
215 |
msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
|
216 |
|
217 |
-
#: includes/class-wcpdf-settings.php:
|
218 |
msgid ""
|
219 |
"This is the number that will be used on the next invoice that is created. By "
|
220 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -227,90 +226,90 @@ msgstr ""
|
|
227 |
"y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
|
228 |
"ajusta a uno inferior podría crear facturas con números duplicados."
|
229 |
|
230 |
-
#: includes/class-wcpdf-settings.php:
|
231 |
#, fuzzy
|
232 |
msgid "Invoice number format"
|
233 |
msgstr "Nº de la factura"
|
234 |
|
235 |
-
#: includes/class-wcpdf-settings.php:
|
236 |
msgid "Prefix"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid ""
|
241 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
242 |
"respectively"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/class-wcpdf-settings.php:
|
246 |
msgid "Suffix"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/class-wcpdf-settings.php:
|
250 |
msgid "Padding"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-wcpdf-settings.php:
|
254 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-wcpdf-settings.php:
|
258 |
msgid ""
|
259 |
"note: if you have already created a custom invoice number format with a "
|
260 |
"filter, the above settings will be ignored"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-wcpdf-settings.php:
|
264 |
msgid "Date to display on invoice"
|
265 |
msgstr "Fecha a mostrar en la factura"
|
266 |
|
267 |
-
#: includes/class-wcpdf-settings.php:
|
268 |
msgid "Order date"
|
269 |
msgstr "Fecha del pedido"
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
msgid "Invoice date"
|
273 |
msgstr "Fecha de la factura"
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
msgid "Extra template fields"
|
277 |
msgstr "Campos extra de la plantilla"
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
msgid "Extra field 1"
|
281 |
msgstr "Campo extra 1"
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
285 |
msgstr ""
|
286 |
"Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
|
287 |
"i>."
|
288 |
|
289 |
-
#: includes/class-wcpdf-settings.php:
|
290 |
msgid "Extra field 2"
|
291 |
msgstr "Campo extra 2"
|
292 |
|
293 |
-
#: includes/class-wcpdf-settings.php:
|
294 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
295 |
msgstr ""
|
296 |
"Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
|
297 |
"i>."
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid "Extra field 3"
|
301 |
msgstr "Campo extra 3"
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
305 |
msgstr ""
|
306 |
"Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
|
307 |
"i>."
|
308 |
|
309 |
-
#: includes/class-wcpdf-settings.php:
|
310 |
msgid "Image resolution"
|
311 |
msgstr "Resolución de la imagen"
|
312 |
|
313 |
-
#: includes/class-wcpdf-settings.php:
|
314 |
msgid ""
|
315 |
"These are used for the (optional) footer columns in the <em>Modern "
|
316 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -324,31 +323,44 @@ msgstr ""
|
|
324 |
msgid "Invoice Number"
|
325 |
msgstr "Nº de la factura"
|
326 |
|
327 |
-
#: includes/class-wcpdf-writepanels.php:
|
328 |
-
msgid "Create PDF"
|
329 |
-
msgstr "Crear PDF"
|
330 |
-
|
331 |
-
#: includes/class-wcpdf-writepanels.php:143
|
332 |
msgid "Download invoice (PDF)"
|
333 |
msgstr "Descargar factura (PDF)"
|
334 |
|
335 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
336 |
msgid "PDF invoice"
|
337 |
msgstr "Factura PDF "
|
338 |
|
339 |
-
#: includes/class-wcpdf-writepanels.php:
|
340 |
msgid "PDF Packing Slip"
|
341 |
msgstr "Albarán de entrega PDF"
|
342 |
|
343 |
-
#: includes/class-wcpdf-writepanels.php:
|
344 |
-
#: includes/class-wcpdf-writepanels.php:
|
345 |
msgid "PDF Packing Slips"
|
346 |
msgstr "Albaranes de entrega PDF"
|
347 |
|
348 |
-
#: includes/class-wcpdf-writepanels.php:
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
msgstr "Nº de la factura PDF (¡sin formato!)"
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
353 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
354 |
msgid "Invoice"
|
@@ -360,10 +372,6 @@ msgstr "Factura"
|
|
360 |
msgid "Packing Slip"
|
361 |
msgstr "Albarán de entrega"
|
362 |
|
363 |
-
#: templates/pdf/Simple/invoice.php:37
|
364 |
-
msgid "Invoice Date:"
|
365 |
-
msgstr "Fecha de la factura:"
|
366 |
-
|
367 |
#: templates/pdf/Simple/invoice.php:40
|
368 |
#: templates/pdf/Simple/packing-slip.php:30
|
369 |
msgid "Order Date:"
|
@@ -401,16 +409,20 @@ msgid "Description"
|
|
401 |
msgstr "Descripción"
|
402 |
|
403 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
404 |
#: templates/pdf/Simple/packing-slip.php:54
|
405 |
msgid "SKU:"
|
406 |
msgstr "Nº Referencia:"
|
407 |
|
408 |
-
#: templates/pdf/Simple/invoice.php:
|
409 |
#: templates/pdf/Simple/packing-slip.php:55
|
410 |
msgid "Weight:"
|
411 |
msgstr "Peso:"
|
412 |
|
413 |
-
#: templates/pdf/Simple/invoice.php:
|
414 |
#: templates/pdf/Simple/packing-slip.php:69
|
415 |
msgid "Customer Notes"
|
416 |
msgstr "Notas del cliente"
|
@@ -429,35 +441,35 @@ msgstr ""
|
|
429 |
msgid "N/A"
|
430 |
msgstr "No disponible"
|
431 |
|
432 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
433 |
msgid "Payment method"
|
434 |
msgstr "Forma de pago"
|
435 |
|
436 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
437 |
msgid "Shipping method"
|
438 |
msgstr "Envío"
|
439 |
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
msgid "Subtotal"
|
442 |
msgstr "Subtotal"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
msgid "Shipping"
|
446 |
msgstr "Envío"
|
447 |
|
448 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
449 |
msgid "Discount"
|
450 |
msgstr "Descuento"
|
451 |
|
452 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
453 |
msgid "VAT"
|
454 |
msgstr "IVA"
|
455 |
|
456 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
457 |
msgid "Total ex. VAT"
|
458 |
msgstr "Total (Sin IVA)"
|
459 |
|
460 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
461 |
msgid "Total"
|
462 |
msgstr "Total"
|
463 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:04+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: es_ES\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "No tiene suficientes permitos para acceder a esta página."
|
24 |
|
25 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
26 |
msgid "invoice"
|
27 |
msgid_plural "invoices"
|
28 |
msgstr[0] "factura"
|
29 |
msgstr[1] "facturas"
|
30 |
|
31 |
+
#: includes/class-wcpdf-export.php:225
|
32 |
msgid "packing-slip"
|
33 |
msgid_plural "packing-slips"
|
34 |
msgstr[0] "albarán de entrega"
|
35 |
msgstr[1] "albaranes de entrega"
|
36 |
|
37 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
38 |
+
#: includes/class-wcpdf-writepanels.php:176
|
39 |
+
#: includes/class-wcpdf-writepanels.php:177
|
40 |
msgid "PDF Invoices"
|
41 |
msgstr "Facturas PDF"
|
42 |
|
136 |
msgid "PDF Template settings"
|
137 |
msgstr "Ajustes de la plantilla PDF"
|
138 |
|
139 |
+
#: includes/class-wcpdf-settings.php:271
|
140 |
msgid "Choose a template"
|
141 |
msgstr "Elige una plantilla"
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:279
|
144 |
+
#, php-format
|
145 |
msgid ""
|
146 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
147 |
+
"<code>%s</code> to customize them"
|
|
|
148 |
msgstr ""
|
149 |
+
"¿Desea usar su propia plantilla? Copie todo los archivos de <code>%s</code> "
|
150 |
+
"a <code>%s</code> y personalícela."
|
|
|
151 |
|
152 |
+
#: includes/class-wcpdf-settings.php:285
|
153 |
msgid "Paper size"
|
154 |
msgstr "Tamaño del papel"
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:293
|
157 |
msgid "A4"
|
158 |
msgstr "A4"
|
159 |
|
160 |
+
#: includes/class-wcpdf-settings.php:294
|
161 |
msgid "Letter"
|
162 |
msgstr "Carta"
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:301
|
165 |
msgid "Shop header/logo"
|
166 |
msgstr "Logotipo de la tienda"
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:308
|
169 |
msgid "Select or upload your invoice header/logo"
|
170 |
msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:309
|
173 |
msgid "Set image"
|
174 |
msgstr "Añadir imagen"
|
175 |
|
176 |
+
#: includes/class-wcpdf-settings.php:310
|
177 |
msgid "Remove image"
|
178 |
msgstr "Eliminar la imagen"
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:317
|
181 |
msgid "Shop Name"
|
182 |
msgstr "Nombre de la tienda"
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:330
|
185 |
msgid "Shop Address"
|
186 |
msgstr "Dirección de la tienda"
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:362
|
189 |
msgid "Footer: terms & conditions, policies, etc."
|
190 |
msgstr "Pie de página: Términos y condiciones, políticas, etc."
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:377
|
193 |
msgid "Number to display on invoice"
|
194 |
msgstr "Número a mostrar en la factura"
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:385
|
197 |
msgid "WooCommerce order number"
|
198 |
msgstr "Número de pedido de WooCommerce "
|
199 |
|
200 |
+
#: includes/class-wcpdf-settings.php:386
|
201 |
msgid "Built-in sequential invoice number"
|
202 |
msgstr "Crear numeración secuencial de factura"
|
203 |
|
204 |
+
#: includes/class-wcpdf-settings.php:388
|
205 |
msgid ""
|
206 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
207 |
"WooCommerce order number"
|
209 |
"Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
|
210 |
"seleccione el número de pedido de WooCommerce."
|
211 |
|
212 |
+
#: includes/class-wcpdf-settings.php:394
|
213 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
214 |
msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
|
215 |
|
216 |
+
#: includes/class-wcpdf-settings.php:402
|
217 |
msgid ""
|
218 |
"This is the number that will be used on the next invoice that is created. By "
|
219 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
226 |
"y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
|
227 |
"ajusta a uno inferior podría crear facturas con números duplicados."
|
228 |
|
229 |
+
#: includes/class-wcpdf-settings.php:408
|
230 |
#, fuzzy
|
231 |
msgid "Invoice number format"
|
232 |
msgstr "Nº de la factura"
|
233 |
|
234 |
+
#: includes/class-wcpdf-settings.php:417
|
235 |
msgid "Prefix"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:419
|
239 |
msgid ""
|
240 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
241 |
"respectively"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:422
|
245 |
msgid "Suffix"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:427
|
249 |
msgid "Padding"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:429
|
253 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/class-wcpdf-settings.php:432
|
257 |
msgid ""
|
258 |
"note: if you have already created a custom invoice number format with a "
|
259 |
"filter, the above settings will be ignored"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:440
|
263 |
msgid "Date to display on invoice"
|
264 |
msgstr "Fecha a mostrar en la factura"
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:448
|
267 |
msgid "Order date"
|
268 |
msgstr "Fecha del pedido"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:449
|
271 |
msgid "Invoice date"
|
272 |
msgstr "Fecha de la factura"
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:457
|
275 |
msgid "Extra template fields"
|
276 |
msgstr "Campos extra de la plantilla"
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:464
|
279 |
msgid "Extra field 1"
|
280 |
msgstr "Campo extra 1"
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:473
|
283 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
284 |
msgstr ""
|
285 |
"Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
|
286 |
"i>."
|
287 |
|
288 |
+
#: includes/class-wcpdf-settings.php:479
|
289 |
msgid "Extra field 2"
|
290 |
msgstr "Campo extra 2"
|
291 |
|
292 |
+
#: includes/class-wcpdf-settings.php:488
|
293 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
294 |
msgstr ""
|
295 |
"Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
|
296 |
"i>."
|
297 |
|
298 |
+
#: includes/class-wcpdf-settings.php:494
|
299 |
msgid "Extra field 3"
|
300 |
msgstr "Campo extra 3"
|
301 |
|
302 |
+
#: includes/class-wcpdf-settings.php:503
|
303 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
304 |
msgstr ""
|
305 |
"Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
|
306 |
"i>."
|
307 |
|
308 |
+
#: includes/class-wcpdf-settings.php:760
|
309 |
msgid "Image resolution"
|
310 |
msgstr "Resolución de la imagen"
|
311 |
|
312 |
+
#: includes/class-wcpdf-settings.php:871
|
313 |
msgid ""
|
314 |
"These are used for the (optional) footer columns in the <em>Modern "
|
315 |
"(Premium)</em> template, but can also be used for other elements in your "
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Nº de la factura"
|
325 |
|
326 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
327 |
msgid "Download invoice (PDF)"
|
328 |
msgstr "Descargar factura (PDF)"
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:150
|
331 |
+
msgid "Create PDF"
|
332 |
+
msgstr "Crear PDF"
|
333 |
+
|
334 |
+
#: includes/class-wcpdf-writepanels.php:160
|
335 |
msgid "PDF invoice"
|
336 |
msgstr "Factura PDF "
|
337 |
|
338 |
+
#: includes/class-wcpdf-writepanels.php:161
|
339 |
msgid "PDF Packing Slip"
|
340 |
msgstr "Albarán de entrega PDF"
|
341 |
|
342 |
+
#: includes/class-wcpdf-writepanels.php:178
|
343 |
+
#: includes/class-wcpdf-writepanels.php:179
|
344 |
msgid "PDF Packing Slips"
|
345 |
msgstr "Albaranes de entrega PDF"
|
346 |
|
347 |
+
#: includes/class-wcpdf-writepanels.php:192
|
348 |
msgid "PDF Invoice Number (unformatted!)"
|
349 |
msgstr "Nº de la factura PDF (¡sin formato!)"
|
350 |
|
351 |
+
#: includes/class-wcpdf-writepanels.php:195
|
352 |
+
#: templates/pdf/Simple/invoice.php:37
|
353 |
+
msgid "Invoice Date:"
|
354 |
+
msgstr "Fecha de la factura:"
|
355 |
+
|
356 |
+
#: includes/class-wcpdf-writepanels.php:196
|
357 |
+
msgid "h"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/class-wcpdf-writepanels.php:196
|
361 |
+
msgid "m"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
365 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
366 |
msgid "Invoice"
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Albarán de entrega"
|
374 |
|
|
|
|
|
|
|
|
|
375 |
#: templates/pdf/Simple/invoice.php:40
|
376 |
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
msgid "Order Date:"
|
409 |
msgstr "Descripción"
|
410 |
|
411 |
#: templates/pdf/Simple/invoice.php:80
|
412 |
+
msgid "SKU"
|
413 |
+
msgstr "Nº Referencia"
|
414 |
+
|
415 |
+
#: templates/pdf/Simple/invoice.php:81
|
416 |
#: templates/pdf/Simple/packing-slip.php:54
|
417 |
msgid "SKU:"
|
418 |
msgstr "Nº Referencia:"
|
419 |
|
420 |
+
#: templates/pdf/Simple/invoice.php:82
|
421 |
#: templates/pdf/Simple/packing-slip.php:55
|
422 |
msgid "Weight:"
|
423 |
msgstr "Peso:"
|
424 |
|
425 |
+
#: templates/pdf/Simple/invoice.php:114
|
426 |
#: templates/pdf/Simple/packing-slip.php:69
|
427 |
msgid "Customer Notes"
|
428 |
msgstr "Notas del cliente"
|
441 |
msgid "N/A"
|
442 |
msgstr "No disponible"
|
443 |
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
445 |
msgid "Payment method"
|
446 |
msgstr "Forma de pago"
|
447 |
|
448 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
449 |
msgid "Shipping method"
|
450 |
msgstr "Envío"
|
451 |
|
452 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
453 |
msgid "Subtotal"
|
454 |
msgstr "Subtotal"
|
455 |
|
456 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
457 |
msgid "Shipping"
|
458 |
msgstr "Envío"
|
459 |
|
460 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
461 |
msgid "Discount"
|
462 |
msgstr "Descuento"
|
463 |
|
464 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
465 |
msgid "VAT"
|
466 |
msgstr "IVA"
|
467 |
|
468 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
469 |
msgid "Total ex. VAT"
|
470 |
msgstr "Total (Sin IVA)"
|
471 |
|
472 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
473 |
msgid "Total"
|
474 |
msgstr "Total"
|
475 |
|
languages/wpo_wcpdf-fr_FR.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Serge Labrosse <serge.labrosse@gmail.com>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
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-Generator: Poedit 1.6.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
@@ -20,21 +20,21 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ wpo_wcpdf
|
23 |
-
#: includes/class-wcpdf-export.php:
|
24 |
-
#: includes/class-wcpdf-export.php:
|
25 |
-
#: includes/class-wcpdf-export.php:
|
26 |
msgid "You do not have sufficient permissions to access this page."
|
27 |
msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
|
28 |
|
29 |
# @ wpo_wcpdf
|
30 |
-
#: includes/class-wcpdf-export.php:
|
31 |
msgid "invoice"
|
32 |
msgid_plural "invoices"
|
33 |
msgstr[0] "facture"
|
34 |
msgstr[1] "factures"
|
35 |
|
36 |
# @ wpo_wcpdf
|
37 |
-
#: includes/class-wcpdf-export.php:
|
38 |
msgid "packing-slip"
|
39 |
msgid_plural "packing-slips"
|
40 |
msgstr[0] "bon-de-livraison"
|
@@ -42,8 +42,8 @@ msgstr[1] "bons-de-livraison"
|
|
42 |
|
43 |
# @ wpo_wcpdf
|
44 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
45 |
-
#: includes/class-wcpdf-writepanels.php:
|
46 |
-
#: includes/class-wcpdf-writepanels.php:
|
47 |
msgid "PDF Invoices"
|
48 |
msgstr "Générer les factures au format PDF"
|
49 |
|
@@ -164,89 +164,87 @@ msgid "PDF Template settings"
|
|
164 |
msgstr "Paramètres des modèles PDF"
|
165 |
|
166 |
# @ wpo_wcpdf
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Choose a template"
|
169 |
msgstr "Sélectionnez un modèle"
|
170 |
|
171 |
# @ wpo_wcpdf
|
172 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
173 |
msgid ""
|
174 |
-
"Want to use your own template? Copy all the files from <code>
|
175 |
-
"
|
176 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
177 |
msgstr ""
|
178 |
-
"Vous voulez utiliser votre propre modèle? Copiez tous les fichiers de "
|
179 |
-
"
|
180 |
-
"dans <code>yourtheme/woocommerce/pdf/votremodele/</code> pour le "
|
181 |
-
"personnaliser"
|
182 |
|
183 |
# @ wpo_wcpdf
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
185 |
msgid "Paper size"
|
186 |
msgstr "Taille du papier"
|
187 |
|
188 |
# @ wpo_wcpdf
|
189 |
-
#: includes/class-wcpdf-settings.php:
|
190 |
msgid "A4"
|
191 |
msgstr "A4"
|
192 |
|
193 |
# @ wpo_wcpdf
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Letter"
|
196 |
msgstr "Lettre"
|
197 |
|
198 |
# @ wpo_wcpdf
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "Shop header/logo"
|
201 |
msgstr "En-tête de la boutique/logo"
|
202 |
|
203 |
# @ wpo_wcpdf
|
204 |
-
#: includes/class-wcpdf-settings.php:
|
205 |
msgid "Select or upload your invoice header/logo"
|
206 |
msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
|
207 |
|
208 |
# @ wpo_wcpdf
|
209 |
-
#: includes/class-wcpdf-settings.php:
|
210 |
msgid "Set image"
|
211 |
msgstr "Choisir une autre image"
|
212 |
|
213 |
# @ wpo_wcpdf
|
214 |
-
#: includes/class-wcpdf-settings.php:
|
215 |
msgid "Remove image"
|
216 |
msgstr "Supprimer l'image"
|
217 |
|
218 |
# @ wpo_wcpdf
|
219 |
-
#: includes/class-wcpdf-settings.php:
|
220 |
msgid "Shop Name"
|
221 |
msgstr "Nom de la boutique"
|
222 |
|
223 |
# @ wpo_wcpdf
|
224 |
-
#: includes/class-wcpdf-settings.php:
|
225 |
msgid "Shop Address"
|
226 |
msgstr "Adresse de la boutique"
|
227 |
|
228 |
# @ wpo_wcpdf
|
229 |
-
#: includes/class-wcpdf-settings.php:
|
230 |
msgid "Footer: terms & conditions, policies, etc."
|
231 |
msgstr "Pied de page : conditions générales de ventes, etc."
|
232 |
|
233 |
# @ wpo_wcpdf
|
234 |
-
#: includes/class-wcpdf-settings.php:
|
235 |
msgid "Number to display on invoice"
|
236 |
msgstr "Numéro à afficher sur la facture"
|
237 |
|
238 |
# @ wpo_wcpdf
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "WooCommerce order number"
|
241 |
msgstr "Numéro de Commande WooCommerce"
|
242 |
|
243 |
# @ wpo_wcpdf
|
244 |
-
#: includes/class-wcpdf-settings.php:
|
245 |
msgid "Built-in sequential invoice number"
|
246 |
msgstr "Numéro de facture séquentiel imbriqué"
|
247 |
|
248 |
# @ wpo_wcpdf
|
249 |
-
#: includes/class-wcpdf-settings.php:
|
250 |
msgid ""
|
251 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
252 |
"WooCommerce order number"
|
@@ -255,12 +253,12 @@ msgstr ""
|
|
255 |
"numéro de commande WooCommerce"
|
256 |
|
257 |
# @ wpo_wcpdf
|
258 |
-
#: includes/class-wcpdf-settings.php:
|
259 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
260 |
msgstr "Prochain numéro de facture (sans préfixe/suffixe,etc.)"
|
261 |
|
262 |
# @ wpo_wcpdf
|
263 |
-
#: includes/class-wcpdf-settings.php:
|
264 |
msgid ""
|
265 |
"This is the number that will be used on the next invoice that is created. By "
|
266 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -275,96 +273,96 @@ msgstr ""
|
|
275 |
"facture PDF, vous pourriez créer des numéros de facture en double!"
|
276 |
|
277 |
# @ wpo_wcpdf
|
278 |
-
#: includes/class-wcpdf-settings.php:
|
279 |
#, fuzzy
|
280 |
msgid "Invoice number format"
|
281 |
msgstr "Numéro de Facture"
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "Prefix"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid ""
|
289 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
290 |
"respectively"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/class-wcpdf-settings.php:
|
294 |
msgid "Suffix"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: includes/class-wcpdf-settings.php:
|
298 |
msgid "Padding"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: includes/class-wcpdf-settings.php:
|
302 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: includes/class-wcpdf-settings.php:
|
306 |
msgid ""
|
307 |
"note: if you have already created a custom invoice number format with a "
|
308 |
"filter, the above settings will be ignored"
|
309 |
msgstr ""
|
310 |
|
311 |
# @ wpo_wcpdf
|
312 |
-
#: includes/class-wcpdf-settings.php:
|
313 |
msgid "Date to display on invoice"
|
314 |
msgstr "Date à afficher sur la facture"
|
315 |
|
316 |
# @ wpo_wcpdf
|
317 |
-
#: includes/class-wcpdf-settings.php:
|
318 |
msgid "Order date"
|
319 |
msgstr "Date de la commande"
|
320 |
|
321 |
# @ wpo_wcpdf
|
322 |
-
#: includes/class-wcpdf-settings.php:
|
323 |
msgid "Invoice date"
|
324 |
msgstr "Date de la facture"
|
325 |
|
326 |
# @ wpo_wcpdf
|
327 |
-
#: includes/class-wcpdf-settings.php:
|
328 |
msgid "Extra template fields"
|
329 |
msgstr "Champs supplémentaires du modèle"
|
330 |
|
331 |
# @ wpo_wcpdf
|
332 |
-
#: includes/class-wcpdf-settings.php:
|
333 |
msgid "Extra field 1"
|
334 |
msgstr "Champ supplémentaire 1"
|
335 |
|
336 |
# @ wpo_wcpdf
|
337 |
-
#: includes/class-wcpdf-settings.php:
|
338 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
339 |
msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
|
340 |
|
341 |
# @ wpo_wcpdf
|
342 |
-
#: includes/class-wcpdf-settings.php:
|
343 |
msgid "Extra field 2"
|
344 |
msgstr "Champ supplémentaire 2"
|
345 |
|
346 |
# @ wpo_wcpdf
|
347 |
-
#: includes/class-wcpdf-settings.php:
|
348 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
349 |
msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
|
350 |
|
351 |
# @ wpo_wcpdf
|
352 |
-
#: includes/class-wcpdf-settings.php:
|
353 |
msgid "Extra field 3"
|
354 |
msgstr "Champ supplémentaire 3"
|
355 |
|
356 |
# @ wpo_wcpdf
|
357 |
-
#: includes/class-wcpdf-settings.php:
|
358 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
359 |
msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
|
360 |
|
361 |
# @ default
|
362 |
-
#: includes/class-wcpdf-settings.php:
|
363 |
msgid "Image resolution"
|
364 |
msgstr "Résolution de l'image"
|
365 |
|
366 |
# @ wpo_wcpdf
|
367 |
-
#: includes/class-wcpdf-settings.php:
|
368 |
msgid ""
|
369 |
"These are used for the (optional) footer columns in the <em>Modern "
|
370 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -380,36 +378,50 @@ msgid "Invoice Number"
|
|
380 |
msgstr "Numéro de Facture"
|
381 |
|
382 |
# @ wpo_wcpdf
|
383 |
-
#: includes/class-wcpdf-writepanels.php:
|
384 |
-
msgid "Create PDF"
|
385 |
-
msgstr "Créer un PDF"
|
386 |
-
|
387 |
-
# @ wpo_wcpdf
|
388 |
-
#: includes/class-wcpdf-writepanels.php:143
|
389 |
msgid "Download invoice (PDF)"
|
390 |
msgstr "Télécharger la facture (PDF)"
|
391 |
|
392 |
# @ wpo_wcpdf
|
393 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
394 |
msgid "PDF invoice"
|
395 |
msgstr "Générer la facture au format PDF"
|
396 |
|
397 |
# @ wpo_wcpdf
|
398 |
-
#: includes/class-wcpdf-writepanels.php:
|
399 |
msgid "PDF Packing Slip"
|
400 |
msgstr "Générer le bon de livraison au format PDF"
|
401 |
|
402 |
# @ wpo_wcpdf
|
403 |
-
#: includes/class-wcpdf-writepanels.php:
|
404 |
-
#: includes/class-wcpdf-writepanels.php:
|
405 |
msgid "PDF Packing Slips"
|
406 |
msgstr "Générer les bons de livraison au format PDF"
|
407 |
|
408 |
# @ wpo_wcpdf
|
409 |
-
#: includes/class-wcpdf-writepanels.php:
|
410 |
msgid "PDF Invoice Number (unformatted!)"
|
411 |
msgstr "Numéro (non formatté) de Facture PDF"
|
412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
# @ wpo_wcpdf
|
414 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
415 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
@@ -423,11 +435,6 @@ msgstr "Facture"
|
|
423 |
msgid "Packing Slip"
|
424 |
msgstr "Bon de livraison"
|
425 |
|
426 |
-
# @ wpo_wcpdf
|
427 |
-
#: templates/pdf/Simple/invoice.php:37
|
428 |
-
msgid "Invoice Date:"
|
429 |
-
msgstr "Date de la Facture ;"
|
430 |
-
|
431 |
# @ wpo_wcpdf
|
432 |
#: templates/pdf/Simple/invoice.php:40
|
433 |
#: templates/pdf/Simple/packing-slip.php:30
|
@@ -474,18 +481,23 @@ msgstr "Description"
|
|
474 |
|
475 |
# @ wpo_wcpdf
|
476 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
|
|
477 |
#: templates/pdf/Simple/packing-slip.php:54
|
478 |
msgid "SKU:"
|
479 |
msgstr "UGS:"
|
480 |
|
481 |
# @ wpo_wcpdf
|
482 |
-
#: templates/pdf/Simple/invoice.php:
|
483 |
#: templates/pdf/Simple/packing-slip.php:55
|
484 |
msgid "Weight:"
|
485 |
msgstr "Poids:"
|
486 |
|
487 |
# @ wpo_wcpdf
|
488 |
-
#: templates/pdf/Simple/invoice.php:
|
489 |
#: templates/pdf/Simple/packing-slip.php:69
|
490 |
msgid "Customer Notes"
|
491 |
msgstr "Notes du Client"
|
@@ -507,41 +519,41 @@ msgid "N/A"
|
|
507 |
msgstr "N/A"
|
508 |
|
509 |
# @ wpo_wcpdf
|
510 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
511 |
msgid "Payment method"
|
512 |
msgstr "Méthode de Paiement"
|
513 |
|
514 |
# @ wpo_wcpdf
|
515 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
516 |
msgid "Shipping method"
|
517 |
msgstr "Méthode de Livraison"
|
518 |
|
519 |
# @ wpo_wcpdf
|
520 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
521 |
msgid "Subtotal"
|
522 |
msgstr "Sous-total"
|
523 |
|
524 |
# @ wpo_wcpdf
|
525 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
526 |
msgid "Shipping"
|
527 |
msgstr "Livraison"
|
528 |
|
529 |
# @ wpo_wcpdf
|
530 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
531 |
msgid "Discount"
|
532 |
msgstr "Remise"
|
533 |
|
534 |
# @ wpo_wcpdf
|
535 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
536 |
msgid "VAT"
|
537 |
msgstr "H.T."
|
538 |
|
539 |
# @ default
|
540 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
541 |
msgid "Total ex. VAT"
|
542 |
msgstr "Total H.T."
|
543 |
|
544 |
# @ default
|
545 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
546 |
msgid "Total"
|
547 |
msgstr "Total TTC"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-18 15:04+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-18 15:04+0100\n"
|
7 |
"Last-Translator: Serge Labrosse <serge.labrosse@gmail.com>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: fr_FR\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-Generator: Poedit 1.6.9\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ wpo_wcpdf
|
23 |
+
#: includes/class-wcpdf-export.php:168 includes/class-wcpdf-export.php:173
|
24 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
25 |
+
#: includes/class-wcpdf-export.php:202
|
26 |
msgid "You do not have sufficient permissions to access this page."
|
27 |
msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
|
28 |
|
29 |
# @ wpo_wcpdf
|
30 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
31 |
msgid "invoice"
|
32 |
msgid_plural "invoices"
|
33 |
msgstr[0] "facture"
|
34 |
msgstr[1] "factures"
|
35 |
|
36 |
# @ wpo_wcpdf
|
37 |
+
#: includes/class-wcpdf-export.php:225
|
38 |
msgid "packing-slip"
|
39 |
msgid_plural "packing-slips"
|
40 |
msgstr[0] "bon-de-livraison"
|
42 |
|
43 |
# @ wpo_wcpdf
|
44 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
45 |
+
#: includes/class-wcpdf-writepanels.php:176
|
46 |
+
#: includes/class-wcpdf-writepanels.php:177
|
47 |
msgid "PDF Invoices"
|
48 |
msgstr "Générer les factures au format PDF"
|
49 |
|
164 |
msgstr "Paramètres des modèles PDF"
|
165 |
|
166 |
# @ wpo_wcpdf
|
167 |
+
#: includes/class-wcpdf-settings.php:271
|
168 |
msgid "Choose a template"
|
169 |
msgstr "Sélectionnez un modèle"
|
170 |
|
171 |
# @ wpo_wcpdf
|
172 |
+
#: includes/class-wcpdf-settings.php:279
|
173 |
+
#, php-format
|
174 |
msgid ""
|
175 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
176 |
+
"<code>%s</code> to customize them"
|
|
|
177 |
msgstr ""
|
178 |
+
"Vous voulez utiliser votre propre modèle? Copiez tous les fichiers de <code>"
|
179 |
+
"%s</code> dans <code>%s</code> pour le personnaliser"
|
|
|
|
|
180 |
|
181 |
# @ wpo_wcpdf
|
182 |
+
#: includes/class-wcpdf-settings.php:285
|
183 |
msgid "Paper size"
|
184 |
msgstr "Taille du papier"
|
185 |
|
186 |
# @ wpo_wcpdf
|
187 |
+
#: includes/class-wcpdf-settings.php:293
|
188 |
msgid "A4"
|
189 |
msgstr "A4"
|
190 |
|
191 |
# @ wpo_wcpdf
|
192 |
+
#: includes/class-wcpdf-settings.php:294
|
193 |
msgid "Letter"
|
194 |
msgstr "Lettre"
|
195 |
|
196 |
# @ wpo_wcpdf
|
197 |
+
#: includes/class-wcpdf-settings.php:301
|
198 |
msgid "Shop header/logo"
|
199 |
msgstr "En-tête de la boutique/logo"
|
200 |
|
201 |
# @ wpo_wcpdf
|
202 |
+
#: includes/class-wcpdf-settings.php:308
|
203 |
msgid "Select or upload your invoice header/logo"
|
204 |
msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
|
205 |
|
206 |
# @ wpo_wcpdf
|
207 |
+
#: includes/class-wcpdf-settings.php:309
|
208 |
msgid "Set image"
|
209 |
msgstr "Choisir une autre image"
|
210 |
|
211 |
# @ wpo_wcpdf
|
212 |
+
#: includes/class-wcpdf-settings.php:310
|
213 |
msgid "Remove image"
|
214 |
msgstr "Supprimer l'image"
|
215 |
|
216 |
# @ wpo_wcpdf
|
217 |
+
#: includes/class-wcpdf-settings.php:317
|
218 |
msgid "Shop Name"
|
219 |
msgstr "Nom de la boutique"
|
220 |
|
221 |
# @ wpo_wcpdf
|
222 |
+
#: includes/class-wcpdf-settings.php:330
|
223 |
msgid "Shop Address"
|
224 |
msgstr "Adresse de la boutique"
|
225 |
|
226 |
# @ wpo_wcpdf
|
227 |
+
#: includes/class-wcpdf-settings.php:362
|
228 |
msgid "Footer: terms & conditions, policies, etc."
|
229 |
msgstr "Pied de page : conditions générales de ventes, etc."
|
230 |
|
231 |
# @ wpo_wcpdf
|
232 |
+
#: includes/class-wcpdf-settings.php:377
|
233 |
msgid "Number to display on invoice"
|
234 |
msgstr "Numéro à afficher sur la facture"
|
235 |
|
236 |
# @ wpo_wcpdf
|
237 |
+
#: includes/class-wcpdf-settings.php:385
|
238 |
msgid "WooCommerce order number"
|
239 |
msgstr "Numéro de Commande WooCommerce"
|
240 |
|
241 |
# @ wpo_wcpdf
|
242 |
+
#: includes/class-wcpdf-settings.php:386
|
243 |
msgid "Built-in sequential invoice number"
|
244 |
msgstr "Numéro de facture séquentiel imbriqué"
|
245 |
|
246 |
# @ wpo_wcpdf
|
247 |
+
#: includes/class-wcpdf-settings.php:388
|
248 |
msgid ""
|
249 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
250 |
"WooCommerce order number"
|
253 |
"numéro de commande WooCommerce"
|
254 |
|
255 |
# @ wpo_wcpdf
|
256 |
+
#: includes/class-wcpdf-settings.php:394
|
257 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
258 |
msgstr "Prochain numéro de facture (sans préfixe/suffixe,etc.)"
|
259 |
|
260 |
# @ wpo_wcpdf
|
261 |
+
#: includes/class-wcpdf-settings.php:402
|
262 |
msgid ""
|
263 |
"This is the number that will be used on the next invoice that is created. By "
|
264 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
273 |
"facture PDF, vous pourriez créer des numéros de facture en double!"
|
274 |
|
275 |
# @ wpo_wcpdf
|
276 |
+
#: includes/class-wcpdf-settings.php:408
|
277 |
#, fuzzy
|
278 |
msgid "Invoice number format"
|
279 |
msgstr "Numéro de Facture"
|
280 |
|
281 |
+
#: includes/class-wcpdf-settings.php:417
|
282 |
msgid "Prefix"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:419
|
286 |
msgid ""
|
287 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
288 |
"respectively"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/class-wcpdf-settings.php:422
|
292 |
msgid "Suffix"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/class-wcpdf-settings.php:427
|
296 |
msgid "Padding"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/class-wcpdf-settings.php:429
|
300 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/class-wcpdf-settings.php:432
|
304 |
msgid ""
|
305 |
"note: if you have already created a custom invoice number format with a "
|
306 |
"filter, the above settings will be ignored"
|
307 |
msgstr ""
|
308 |
|
309 |
# @ wpo_wcpdf
|
310 |
+
#: includes/class-wcpdf-settings.php:440
|
311 |
msgid "Date to display on invoice"
|
312 |
msgstr "Date à afficher sur la facture"
|
313 |
|
314 |
# @ wpo_wcpdf
|
315 |
+
#: includes/class-wcpdf-settings.php:448
|
316 |
msgid "Order date"
|
317 |
msgstr "Date de la commande"
|
318 |
|
319 |
# @ wpo_wcpdf
|
320 |
+
#: includes/class-wcpdf-settings.php:449
|
321 |
msgid "Invoice date"
|
322 |
msgstr "Date de la facture"
|
323 |
|
324 |
# @ wpo_wcpdf
|
325 |
+
#: includes/class-wcpdf-settings.php:457
|
326 |
msgid "Extra template fields"
|
327 |
msgstr "Champs supplémentaires du modèle"
|
328 |
|
329 |
# @ wpo_wcpdf
|
330 |
+
#: includes/class-wcpdf-settings.php:464
|
331 |
msgid "Extra field 1"
|
332 |
msgstr "Champ supplémentaire 1"
|
333 |
|
334 |
# @ wpo_wcpdf
|
335 |
+
#: includes/class-wcpdf-settings.php:473
|
336 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
337 |
msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
|
338 |
|
339 |
# @ wpo_wcpdf
|
340 |
+
#: includes/class-wcpdf-settings.php:479
|
341 |
msgid "Extra field 2"
|
342 |
msgstr "Champ supplémentaire 2"
|
343 |
|
344 |
# @ wpo_wcpdf
|
345 |
+
#: includes/class-wcpdf-settings.php:488
|
346 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
347 |
msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
|
348 |
|
349 |
# @ wpo_wcpdf
|
350 |
+
#: includes/class-wcpdf-settings.php:494
|
351 |
msgid "Extra field 3"
|
352 |
msgstr "Champ supplémentaire 3"
|
353 |
|
354 |
# @ wpo_wcpdf
|
355 |
+
#: includes/class-wcpdf-settings.php:503
|
356 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
357 |
msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
|
358 |
|
359 |
# @ default
|
360 |
+
#: includes/class-wcpdf-settings.php:760
|
361 |
msgid "Image resolution"
|
362 |
msgstr "Résolution de l'image"
|
363 |
|
364 |
# @ wpo_wcpdf
|
365 |
+
#: includes/class-wcpdf-settings.php:871
|
366 |
msgid ""
|
367 |
"These are used for the (optional) footer columns in the <em>Modern "
|
368 |
"(Premium)</em> template, but can also be used for other elements in your "
|
378 |
msgstr "Numéro de Facture"
|
379 |
|
380 |
# @ wpo_wcpdf
|
381 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Download invoice (PDF)"
|
383 |
msgstr "Télécharger la facture (PDF)"
|
384 |
|
385 |
# @ wpo_wcpdf
|
386 |
+
#: includes/class-wcpdf-writepanels.php:150
|
387 |
+
msgid "Create PDF"
|
388 |
+
msgstr "Créer un PDF"
|
389 |
+
|
390 |
+
# @ wpo_wcpdf
|
391 |
+
#: includes/class-wcpdf-writepanels.php:160
|
392 |
msgid "PDF invoice"
|
393 |
msgstr "Générer la facture au format PDF"
|
394 |
|
395 |
# @ wpo_wcpdf
|
396 |
+
#: includes/class-wcpdf-writepanels.php:161
|
397 |
msgid "PDF Packing Slip"
|
398 |
msgstr "Générer le bon de livraison au format PDF"
|
399 |
|
400 |
# @ wpo_wcpdf
|
401 |
+
#: includes/class-wcpdf-writepanels.php:178
|
402 |
+
#: includes/class-wcpdf-writepanels.php:179
|
403 |
msgid "PDF Packing Slips"
|
404 |
msgstr "Générer les bons de livraison au format PDF"
|
405 |
|
406 |
# @ wpo_wcpdf
|
407 |
+
#: includes/class-wcpdf-writepanels.php:192
|
408 |
msgid "PDF Invoice Number (unformatted!)"
|
409 |
msgstr "Numéro (non formatté) de Facture PDF"
|
410 |
|
411 |
+
# @ wpo_wcpdf
|
412 |
+
#: includes/class-wcpdf-writepanels.php:195
|
413 |
+
#: templates/pdf/Simple/invoice.php:37
|
414 |
+
msgid "Invoice Date:"
|
415 |
+
msgstr "Date de la Facture ;"
|
416 |
+
|
417 |
+
#: includes/class-wcpdf-writepanels.php:196
|
418 |
+
msgid "h"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/class-wcpdf-writepanels.php:196
|
422 |
+
msgid "m"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
# @ wpo_wcpdf
|
426 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
427 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
435 |
msgid "Packing Slip"
|
436 |
msgstr "Bon de livraison"
|
437 |
|
|
|
|
|
|
|
|
|
|
|
438 |
# @ wpo_wcpdf
|
439 |
#: templates/pdf/Simple/invoice.php:40
|
440 |
#: templates/pdf/Simple/packing-slip.php:30
|
481 |
|
482 |
# @ wpo_wcpdf
|
483 |
#: templates/pdf/Simple/invoice.php:80
|
484 |
+
msgid "SKU"
|
485 |
+
msgstr "UGS"
|
486 |
+
|
487 |
+
# @ wpo_wcpdf
|
488 |
+
#: templates/pdf/Simple/invoice.php:81
|
489 |
#: templates/pdf/Simple/packing-slip.php:54
|
490 |
msgid "SKU:"
|
491 |
msgstr "UGS:"
|
492 |
|
493 |
# @ wpo_wcpdf
|
494 |
+
#: templates/pdf/Simple/invoice.php:82
|
495 |
#: templates/pdf/Simple/packing-slip.php:55
|
496 |
msgid "Weight:"
|
497 |
msgstr "Poids:"
|
498 |
|
499 |
# @ wpo_wcpdf
|
500 |
+
#: templates/pdf/Simple/invoice.php:114
|
501 |
#: templates/pdf/Simple/packing-slip.php:69
|
502 |
msgid "Customer Notes"
|
503 |
msgstr "Notes du Client"
|
519 |
msgstr "N/A"
|
520 |
|
521 |
# @ wpo_wcpdf
|
522 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
523 |
msgid "Payment method"
|
524 |
msgstr "Méthode de Paiement"
|
525 |
|
526 |
# @ wpo_wcpdf
|
527 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
528 |
msgid "Shipping method"
|
529 |
msgstr "Méthode de Livraison"
|
530 |
|
531 |
# @ wpo_wcpdf
|
532 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
533 |
msgid "Subtotal"
|
534 |
msgstr "Sous-total"
|
535 |
|
536 |
# @ wpo_wcpdf
|
537 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
538 |
msgid "Shipping"
|
539 |
msgstr "Livraison"
|
540 |
|
541 |
# @ wpo_wcpdf
|
542 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
543 |
msgid "Discount"
|
544 |
msgstr "Remise"
|
545 |
|
546 |
# @ wpo_wcpdf
|
547 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
548 |
msgid "VAT"
|
549 |
msgstr "H.T."
|
550 |
|
551 |
# @ default
|
552 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
553 |
msgid "Total ex. VAT"
|
554 |
msgstr "Total H.T."
|
555 |
|
556 |
# @ default
|
557 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
558 |
msgid "Total"
|
559 |
msgstr "Total TTC"
|
languages/wpo_wcpdf-hu_HU.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-hu_HU.po
CHANGED
@@ -1,78 +1,44 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: joesalty <joesalty77@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\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.6.
|
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-Language: Hungarian\n"
|
18 |
-
"X-Poedit-Country: HUNGARY\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
24 |
-
msgstr "WooCommerce PDF Invoices & Packing Slipsnek szüksége van az telepített és bekapcsolt %sWooCommerce%s pluginra."
|
25 |
-
|
26 |
-
#: woocommerce-pdf-invoices-packingslips.php:183
|
27 |
-
#: woocommerce-pdf-invoices-packingslips.php:219
|
28 |
-
msgid "N/A"
|
29 |
-
msgstr "N/A"
|
30 |
-
|
31 |
-
#: woocommerce-pdf-invoices-packingslips.php:320
|
32 |
-
msgid "Subtotal"
|
33 |
-
msgstr "Részösszeg"
|
34 |
-
|
35 |
-
#: woocommerce-pdf-invoices-packingslips.php:338
|
36 |
-
msgid "Shipping"
|
37 |
-
msgstr "Szállítás"
|
38 |
-
|
39 |
-
#: woocommerce-pdf-invoices-packingslips.php:353
|
40 |
-
msgid "Discount"
|
41 |
-
msgstr "Kedvezmény"
|
42 |
-
|
43 |
-
#: woocommerce-pdf-invoices-packingslips.php:418
|
44 |
-
msgid "Total ex. VAT"
|
45 |
-
msgstr "Végösszeg ÁFA nélkül"
|
46 |
-
|
47 |
-
#: woocommerce-pdf-invoices-packingslips.php:421
|
48 |
-
msgid "Total"
|
49 |
-
msgstr "Végösszeg"
|
50 |
-
|
51 |
-
#: includes/class-wcpdf-export.php:98
|
52 |
-
#: includes/class-wcpdf-export.php:103
|
53 |
-
#: includes/class-wcpdf-export.php:108
|
54 |
msgid "You do not have sufficient permissions to access this page."
|
55 |
msgstr "Önnek nincs megfelelő jogosultsága az oldal eléréséhez."
|
56 |
|
57 |
# This is a filename (prefix). do not use spaces or special characters!
|
58 |
-
#: includes/class-wcpdf-export.php:
|
59 |
-
#: includes/class-wcpdf-export.php:175
|
60 |
msgid "invoice"
|
61 |
msgid_plural "invoices"
|
62 |
msgstr[0] "számla"
|
63 |
msgstr[1] "számlák"
|
64 |
|
65 |
# This is a filename (prefix). do not use spaces or special characters!
|
66 |
-
#: includes/class-wcpdf-export.php:
|
67 |
msgid "packing-slip"
|
68 |
msgid_plural "packing-slips"
|
69 |
msgstr[0] "szállítólevél"
|
70 |
msgstr[1] "szállítólevelek"
|
71 |
|
72 |
-
#: includes/class-wcpdf-settings.php:36
|
73 |
-
#: includes/class-wcpdf-
|
74 |
-
#: includes/class-wcpdf-writepanels.php:
|
75 |
-
#: includes/class-wcpdf-writepanels.php:116
|
76 |
msgid "PDF Invoices"
|
77 |
msgstr "PDF számlák"
|
78 |
|
@@ -80,211 +46,434 @@ msgstr "PDF számlák"
|
|
80 |
msgid "Settings"
|
81 |
msgstr "Beállítások"
|
82 |
|
83 |
-
#: includes/class-wcpdf-settings.php:
|
84 |
-
msgid "..."
|
85 |
-
msgstr "..."
|
86 |
-
|
87 |
-
#: includes/class-wcpdf-settings.php:86
|
88 |
-
msgid "WooCommerce PDF Invoices"
|
89 |
-
msgstr "WooCommerce PDF számlák"
|
90 |
-
|
91 |
-
#: includes/class-wcpdf-settings.php:88
|
92 |
msgid "General"
|
93 |
msgstr "Általános"
|
94 |
|
95 |
-
#: includes/class-wcpdf-settings.php:
|
96 |
msgid "Template"
|
97 |
msgstr "Sablon"
|
98 |
|
99 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
#, php-format
|
101 |
-
msgid "
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
msgid "General settings"
|
106 |
msgstr "Általános beállítások"
|
107 |
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
109 |
msgid "How do you want to view the PDF?"
|
110 |
msgstr "Hogy kívánja megtekinteni a PDF-et?"
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Download the PDF"
|
114 |
msgstr "PDF letöltése"
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Open the PDF in a new browser tab/window"
|
118 |
msgstr "Nyissa meg a PDF-et egy új böngésző ablakban/tabon"
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
#, php-format
|
126 |
-
msgid "
|
127 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
-
#: includes/class-wcpdf-settings.php:
|
130 |
msgid "PDF Template settings"
|
131 |
msgstr "PDF sablon beállítások"
|
132 |
|
133 |
-
#: includes/class-wcpdf-settings.php:
|
134 |
msgid "Choose a template"
|
135 |
msgstr "Válasszon sablont"
|
136 |
|
137 |
-
#: includes/class-wcpdf-settings.php:
|
138 |
-
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
-
#: includes/class-wcpdf-settings.php:
|
142 |
msgid "Paper size"
|
143 |
msgstr "Papír méret"
|
144 |
|
145 |
-
#: includes/class-wcpdf-settings.php:
|
146 |
msgid "A4"
|
147 |
msgstr "A4"
|
148 |
|
149 |
-
#: includes/class-wcpdf-settings.php:
|
150 |
msgid "Letter"
|
151 |
msgstr "Letter"
|
152 |
|
153 |
-
#: includes/class-wcpdf-settings.php:
|
154 |
msgid "Shop header/logo"
|
155 |
msgstr "Bolt fejléc/logó"
|
156 |
|
157 |
-
#: includes/class-wcpdf-settings.php:
|
158 |
msgid "Select or upload your invoice header/logo"
|
159 |
msgstr "Válasszon ki vagy töltsön fel egy fjlécet/logót"
|
160 |
|
161 |
-
#: includes/class-wcpdf-settings.php:
|
162 |
msgid "Set image"
|
163 |
msgstr "Kép hozzáadása"
|
164 |
|
165 |
-
#: includes/class-wcpdf-settings.php:
|
166 |
msgid "Remove image"
|
167 |
msgstr "Kép eltávolítása"
|
168 |
|
169 |
-
#: includes/class-wcpdf-settings.php:
|
170 |
msgid "Shop Name"
|
171 |
msgstr "Bolt neve"
|
172 |
|
173 |
-
#: includes/class-wcpdf-settings.php:
|
174 |
msgid "Shop Address"
|
175 |
msgstr "Bolt címe"
|
176 |
|
177 |
-
#: includes/class-wcpdf-settings.php:
|
178 |
msgid "Footer: terms & conditions, policies, etc."
|
179 |
msgstr "Lábléc: szerződési feltételek, rendelkezések, stb."
|
180 |
|
181 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "Extra template fields"
|
183 |
msgstr "Extra sablon mezők"
|
184 |
|
185 |
-
#: includes/class-wcpdf-settings.php:
|
186 |
msgid "Extra field 1"
|
187 |
msgstr "Extra mező 1"
|
188 |
|
189 |
-
#: includes/class-wcpdf-settings.php:
|
190 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
191 |
msgstr "Ez a lábléc oszlop 1 a <i>Modern (Premium)</i> sablonban."
|
192 |
|
193 |
-
#: includes/class-wcpdf-settings.php:
|
194 |
msgid "Extra field 2"
|
195 |
msgstr "Extra mező 2"
|
196 |
|
197 |
-
#: includes/class-wcpdf-settings.php:
|
198 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
199 |
msgstr "Ez a lábléc oszlop 2 a <i>Modern (Premium)</i> sablonban."
|
200 |
|
201 |
-
#: includes/class-wcpdf-settings.php:
|
202 |
msgid "Extra field 3"
|
203 |
msgstr "Extra mező 3"
|
204 |
|
205 |
-
#: includes/class-wcpdf-settings.php:
|
206 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
207 |
msgstr "Ez a lábléc oszlop 3 a <i>Modern (Premium)</i> sablonban."
|
208 |
|
209 |
-
#: includes/class-wcpdf-settings.php:
|
210 |
msgid "Image resolution"
|
211 |
msgstr "Kép felbontás"
|
212 |
|
213 |
-
#: includes/class-wcpdf-settings.php:
|
214 |
-
msgid "
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
216 |
|
217 |
-
#: includes/class-wcpdf-writepanels.php:
|
218 |
-
|
219 |
-
|
|
|
220 |
|
221 |
-
#: includes/class-wcpdf-writepanels.php:
|
222 |
msgid "Download invoice (PDF)"
|
223 |
msgstr "Számla letöltése (PDF)"
|
224 |
|
225 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
226 |
msgid "PDF invoice"
|
227 |
msgstr "PDF számla"
|
228 |
|
229 |
-
#: includes/class-wcpdf-writepanels.php:
|
230 |
msgid "PDF Packing Slip"
|
231 |
msgstr "PDF szállítólevél"
|
232 |
|
233 |
-
#: includes/class-wcpdf-writepanels.php:
|
234 |
-
#: includes/class-wcpdf-writepanels.php:
|
235 |
msgid "PDF Packing Slips"
|
236 |
msgstr "PDF szállítólevelet"
|
237 |
|
238 |
-
#:
|
239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgid "Invoice"
|
241 |
msgstr "Számla"
|
242 |
|
243 |
-
#: templates/pdf/Simple/
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#: templates/pdf/Simple/packing-slip.php:30
|
245 |
msgid "Order Date:"
|
246 |
msgstr "Rendelés dátuma:"
|
247 |
|
248 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
249 |
#: templates/pdf/Simple/packing-slip.php:32
|
250 |
msgid "Order Number:"
|
251 |
msgstr "Rendelési szám:"
|
252 |
|
253 |
-
#: templates/pdf/Simple/invoice.php:
|
254 |
msgid "Payment Method:"
|
255 |
msgstr "Fizetési mód"
|
256 |
|
257 |
-
#: templates/pdf/Simple/invoice.php:
|
258 |
#: templates/pdf/Simple/packing-slip.php:45
|
259 |
msgid "Product"
|
260 |
msgstr "Termék"
|
261 |
|
262 |
-
#: templates/pdf/Simple/invoice.php:
|
263 |
#: templates/pdf/Simple/packing-slip.php:46
|
264 |
msgid "Quantity"
|
265 |
msgstr "Mennyiség"
|
266 |
|
267 |
-
#: templates/pdf/Simple/invoice.php:
|
268 |
msgid "Price"
|
269 |
msgstr "Ár"
|
270 |
|
271 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
#: templates/pdf/Simple/packing-slip.php:54
|
273 |
msgid "SKU:"
|
274 |
msgstr "SKU:"
|
275 |
|
276 |
-
#: templates/pdf/Simple/invoice.php:
|
277 |
#: templates/pdf/Simple/packing-slip.php:55
|
278 |
msgid "Weight:"
|
279 |
msgstr "Súly:"
|
280 |
|
281 |
-
#: templates/pdf/Simple/invoice.php:
|
282 |
#: templates/pdf/Simple/packing-slip.php:69
|
283 |
msgid "Customer Notes"
|
284 |
msgstr "Vásárlói megjegyzések"
|
285 |
|
286 |
-
#:
|
287 |
-
|
288 |
-
msgid "
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:05+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:05+0100\n"
|
6 |
"Last-Translator: joesalty <joesalty77@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Önnek nincs megfelelő jogosultsága az oldal eléréséhez."
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
|
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "számla"
|
30 |
msgstr[1] "számlák"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:225
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "szállítólevél"
|
37 |
msgstr[1] "szállítólevelek"
|
38 |
|
39 |
+
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
|
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF számlák"
|
44 |
|
46 |
msgid "Settings"
|
47 |
msgstr "Beállítások"
|
48 |
|
49 |
+
#: includes/class-wcpdf-settings.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgid "General"
|
51 |
msgstr "Általános"
|
52 |
|
53 |
+
#: includes/class-wcpdf-settings.php:83
|
54 |
msgid "Template"
|
55 |
msgstr "Sablon"
|
56 |
|
57 |
+
#: includes/class-wcpdf-settings.php:92
|
58 |
+
msgid "WooCommerce PDF Invoices"
|
59 |
+
msgstr "WooCommerce PDF számlák"
|
60 |
+
|
61 |
+
#: includes/class-wcpdf-settings.php:98
|
62 |
+
msgid "Status"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-wcpdf-settings.php:109
|
66 |
#, php-format
|
67 |
+
msgid ""
|
68 |
+
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
+
"extension."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: includes/class-wcpdf-settings.php:119
|
73 |
+
#, php-format
|
74 |
+
msgid ""
|
75 |
+
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
76 |
+
"Packing Slips templates at %s."
|
77 |
+
msgstr ""
|
78 |
+
"Fejlettebb sablonokat keres? Nézze meg a Premium PDF Invoice & Packing Slips "
|
79 |
+
"sablonokat a %s-on. "
|
80 |
+
|
81 |
+
#: includes/class-wcpdf-settings.php:120
|
82 |
+
#, php-format
|
83 |
+
msgid "For custom templates, contact us at %s."
|
84 |
+
msgstr ""
|
85 |
|
86 |
+
#: includes/class-wcpdf-settings.php:175
|
87 |
msgid "General settings"
|
88 |
msgstr "Általános beállítások"
|
89 |
|
90 |
+
#: includes/class-wcpdf-settings.php:182
|
91 |
msgid "How do you want to view the PDF?"
|
92 |
msgstr "Hogy kívánja megtekinteni a PDF-et?"
|
93 |
|
94 |
+
#: includes/class-wcpdf-settings.php:190
|
95 |
msgid "Download the PDF"
|
96 |
msgstr "PDF letöltése"
|
97 |
|
98 |
+
#: includes/class-wcpdf-settings.php:191
|
99 |
msgid "Open the PDF in a new browser tab/window"
|
100 |
msgstr "Nyissa meg a PDF-et egy új böngésző ablakban/tabon"
|
101 |
|
102 |
+
#: includes/class-wcpdf-settings.php:201
|
103 |
+
msgid "Attach invoice to:"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/class-wcpdf-settings.php:209
|
107 |
+
msgid "Admin New Order email"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/class-wcpdf-settings.php:210
|
111 |
+
msgid "Customer Processing Order email"
|
112 |
+
msgstr ""
|
113 |
|
114 |
+
#: includes/class-wcpdf-settings.php:211
|
115 |
+
msgid "Customer Completed Order email"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/class-wcpdf-settings.php:212
|
119 |
+
#, fuzzy
|
120 |
+
msgid "Customer Invoice email"
|
121 |
+
msgstr "Vásárlói megjegyzések"
|
122 |
+
|
123 |
+
#: includes/class-wcpdf-settings.php:214
|
124 |
#, php-format
|
125 |
+
msgid ""
|
126 |
+
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
127 |
+
"permissions for this folder! Without having write access to this folder, the "
|
128 |
+
"plugin will not be able to email invoices."
|
129 |
+
msgstr ""
|
130 |
+
"Az átmeneti könyvtár (<code>%s</code>)nem írható, kérem ellenőrizze a "
|
131 |
+
"könyvtár jogosultságokat! A könyvtárra való írási jog nélkül a bővítmény "
|
132 |
+
"nem tudja elküldeni a számlát!"
|
133 |
+
|
134 |
+
#: includes/class-wcpdf-settings.php:220
|
135 |
+
msgid "Enable invoice number column in the orders list"
|
136 |
+
msgstr ""
|
137 |
|
138 |
+
#: includes/class-wcpdf-settings.php:259
|
139 |
msgid "PDF Template settings"
|
140 |
msgstr "PDF sablon beállítások"
|
141 |
|
142 |
+
#: includes/class-wcpdf-settings.php:271
|
143 |
msgid "Choose a template"
|
144 |
msgstr "Válasszon sablont"
|
145 |
|
146 |
+
#: includes/class-wcpdf-settings.php:279
|
147 |
+
#, php-format
|
148 |
+
msgid ""
|
149 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
150 |
+
"<code>%s</code> to customize them"
|
151 |
+
msgstr ""
|
152 |
+
"Saját sablont szeretne használni? Másolja az összes fájlt a <code>%s</code> "
|
153 |
+
"könyvtárból a <code>%s</code> könyvtárba a módosításhoz."
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:285
|
156 |
msgid "Paper size"
|
157 |
msgstr "Papír méret"
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:293
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:294
|
164 |
msgid "Letter"
|
165 |
msgstr "Letter"
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:301
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Bolt fejléc/logó"
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:308
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Válasszon ki vagy töltsön fel egy fjlécet/logót"
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:309
|
176 |
msgid "Set image"
|
177 |
msgstr "Kép hozzáadása"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:310
|
180 |
msgid "Remove image"
|
181 |
msgstr "Kép eltávolítása"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:317
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Bolt neve"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:330
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Bolt címe"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:362
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Lábléc: szerződési feltételek, rendelkezések, stb."
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:377
|
196 |
+
msgid "Number to display on invoice"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/class-wcpdf-settings.php:385
|
200 |
+
#, fuzzy
|
201 |
+
msgid "WooCommerce order number"
|
202 |
+
msgstr "WooCommerce PDF számlák"
|
203 |
+
|
204 |
+
#: includes/class-wcpdf-settings.php:386
|
205 |
+
msgid "Built-in sequential invoice number"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/class-wcpdf-settings.php:388
|
209 |
+
msgid ""
|
210 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
211 |
+
"WooCommerce order number"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/class-wcpdf-settings.php:394
|
215 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/class-wcpdf-settings.php:402
|
219 |
+
msgid ""
|
220 |
+
"This is the number that will be used on the next invoice that is created. By "
|
221 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
222 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
223 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
224 |
+
"this could create double invoice numbers!"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/class-wcpdf-settings.php:408
|
228 |
+
msgid "Invoice number format"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/class-wcpdf-settings.php:417
|
232 |
+
msgid "Prefix"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/class-wcpdf-settings.php:419
|
236 |
+
msgid ""
|
237 |
+
"to use the order year and/or month, use [order_year] or [order_month] "
|
238 |
+
"respectively"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/class-wcpdf-settings.php:422
|
242 |
+
msgid "Suffix"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/class-wcpdf-settings.php:427
|
246 |
+
msgid "Padding"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/class-wcpdf-settings.php:429
|
250 |
+
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/class-wcpdf-settings.php:432
|
254 |
+
msgid ""
|
255 |
+
"note: if you have already created a custom invoice number format with a "
|
256 |
+
"filter, the above settings will be ignored"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: includes/class-wcpdf-settings.php:440
|
260 |
+
msgid "Date to display on invoice"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: includes/class-wcpdf-settings.php:448
|
264 |
+
#, fuzzy
|
265 |
+
msgid "Order date"
|
266 |
+
msgstr "Rendelés dátuma:"
|
267 |
+
|
268 |
+
#: includes/class-wcpdf-settings.php:449
|
269 |
+
#, fuzzy
|
270 |
+
msgid "Invoice date"
|
271 |
+
msgstr "Számla"
|
272 |
+
|
273 |
+
#: includes/class-wcpdf-settings.php:457
|
274 |
msgid "Extra template fields"
|
275 |
msgstr "Extra sablon mezők"
|
276 |
|
277 |
+
#: includes/class-wcpdf-settings.php:464
|
278 |
msgid "Extra field 1"
|
279 |
msgstr "Extra mező 1"
|
280 |
|
281 |
+
#: includes/class-wcpdf-settings.php:473
|
282 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
283 |
msgstr "Ez a lábléc oszlop 1 a <i>Modern (Premium)</i> sablonban."
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:479
|
286 |
msgid "Extra field 2"
|
287 |
msgstr "Extra mező 2"
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:488
|
290 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
291 |
msgstr "Ez a lábléc oszlop 2 a <i>Modern (Premium)</i> sablonban."
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:494
|
294 |
msgid "Extra field 3"
|
295 |
msgstr "Extra mező 3"
|
296 |
|
297 |
+
#: includes/class-wcpdf-settings.php:503
|
298 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
299 |
msgstr "Ez a lábléc oszlop 3 a <i>Modern (Premium)</i> sablonban."
|
300 |
|
301 |
+
#: includes/class-wcpdf-settings.php:760
|
302 |
msgid "Image resolution"
|
303 |
msgstr "Kép felbontás"
|
304 |
|
305 |
+
#: includes/class-wcpdf-settings.php:871
|
306 |
+
msgid ""
|
307 |
+
"These are used for the (optional) footer columns in the <em>Modern "
|
308 |
+
"(Premium)</em> template, but can also be used for other elements in your "
|
309 |
+
"custom template"
|
310 |
+
msgstr ""
|
311 |
+
"Ezek a lábléc (opcionális) oszlopok a <em>Modern (Premium)</em> sablonban "
|
312 |
+
"használatosak, de használhatja más elemeknek is az egyéni sablonjában. "
|
313 |
|
314 |
+
#: includes/class-wcpdf-writepanels.php:102
|
315 |
+
#, fuzzy
|
316 |
+
msgid "Invoice Number"
|
317 |
+
msgstr "Számla"
|
318 |
|
319 |
+
#: includes/class-wcpdf-writepanels.php:139
|
320 |
msgid "Download invoice (PDF)"
|
321 |
msgstr "Számla letöltése (PDF)"
|
322 |
|
323 |
+
#: includes/class-wcpdf-writepanels.php:150
|
324 |
+
msgid "Create PDF"
|
325 |
+
msgstr "PDF létrehozása"
|
326 |
+
|
327 |
+
#: includes/class-wcpdf-writepanels.php:160
|
328 |
msgid "PDF invoice"
|
329 |
msgstr "PDF számla"
|
330 |
|
331 |
+
#: includes/class-wcpdf-writepanels.php:161
|
332 |
msgid "PDF Packing Slip"
|
333 |
msgstr "PDF szállítólevél"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:178
|
336 |
+
#: includes/class-wcpdf-writepanels.php:179
|
337 |
msgid "PDF Packing Slips"
|
338 |
msgstr "PDF szállítólevelet"
|
339 |
|
340 |
+
#: includes/class-wcpdf-writepanels.php:192
|
341 |
+
msgid "PDF Invoice Number (unformatted!)"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/class-wcpdf-writepanels.php:195
|
345 |
+
#: templates/pdf/Simple/invoice.php:37
|
346 |
+
#, fuzzy
|
347 |
+
msgid "Invoice Date:"
|
348 |
+
msgstr "Számla"
|
349 |
+
|
350 |
+
#: includes/class-wcpdf-writepanels.php:196
|
351 |
+
msgid "h"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/class-wcpdf-writepanels.php:196
|
355 |
+
msgid "m"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
359 |
+
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
360 |
msgid "Invoice"
|
361 |
msgstr "Számla"
|
362 |
|
363 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
364 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
365 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
366 |
+
msgid "Packing Slip"
|
367 |
+
msgstr "Szállítólevél"
|
368 |
+
|
369 |
+
#: templates/pdf/Simple/invoice.php:40
|
370 |
#: templates/pdf/Simple/packing-slip.php:30
|
371 |
msgid "Order Date:"
|
372 |
msgstr "Rendelés dátuma:"
|
373 |
|
374 |
+
#: templates/pdf/Simple/invoice.php:46
|
375 |
+
#, fuzzy
|
376 |
+
msgid "Invoice Number:"
|
377 |
+
msgstr "Rendelési szám:"
|
378 |
+
|
379 |
+
#: templates/pdf/Simple/invoice.php:49
|
380 |
#: templates/pdf/Simple/packing-slip.php:32
|
381 |
msgid "Order Number:"
|
382 |
msgstr "Rendelési szám:"
|
383 |
|
384 |
+
#: templates/pdf/Simple/invoice.php:56
|
385 |
msgid "Payment Method:"
|
386 |
msgstr "Fizetési mód"
|
387 |
|
388 |
+
#: templates/pdf/Simple/invoice.php:69
|
389 |
#: templates/pdf/Simple/packing-slip.php:45
|
390 |
msgid "Product"
|
391 |
msgstr "Termék"
|
392 |
|
393 |
+
#: templates/pdf/Simple/invoice.php:70
|
394 |
#: templates/pdf/Simple/packing-slip.php:46
|
395 |
msgid "Quantity"
|
396 |
msgstr "Mennyiség"
|
397 |
|
398 |
+
#: templates/pdf/Simple/invoice.php:71
|
399 |
msgid "Price"
|
400 |
msgstr "Ár"
|
401 |
|
402 |
+
#: templates/pdf/Simple/invoice.php:77
|
403 |
+
msgid "Description"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: templates/pdf/Simple/invoice.php:80
|
407 |
+
msgid "SKU"
|
408 |
+
msgstr "SKU"
|
409 |
+
|
410 |
+
#: templates/pdf/Simple/invoice.php:81
|
411 |
#: templates/pdf/Simple/packing-slip.php:54
|
412 |
msgid "SKU:"
|
413 |
msgstr "SKU:"
|
414 |
|
415 |
+
#: templates/pdf/Simple/invoice.php:82
|
416 |
#: templates/pdf/Simple/packing-slip.php:55
|
417 |
msgid "Weight:"
|
418 |
msgstr "Súly:"
|
419 |
|
420 |
+
#: templates/pdf/Simple/invoice.php:114
|
421 |
#: templates/pdf/Simple/packing-slip.php:69
|
422 |
msgid "Customer Notes"
|
423 |
msgstr "Vásárlói megjegyzések"
|
424 |
|
425 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
426 |
+
#, php-format
|
427 |
+
msgid ""
|
428 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
429 |
+
"installed & activated!"
|
430 |
+
msgstr ""
|
431 |
+
"WooCommerce PDF Invoices & Packing Slipsnek szüksége van az telepített és "
|
432 |
+
"bekapcsolt %sWooCommerce%s pluginra."
|
433 |
+
|
434 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
435 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
436 |
+
msgid "N/A"
|
437 |
+
msgstr "N/A"
|
438 |
+
|
439 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
440 |
+
#, fuzzy
|
441 |
+
msgid "Payment method"
|
442 |
+
msgstr "Fizetési mód"
|
443 |
+
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
445 |
+
#, fuzzy
|
446 |
+
msgid "Shipping method"
|
447 |
+
msgstr "Szállítás"
|
448 |
+
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
450 |
+
msgid "Subtotal"
|
451 |
+
msgstr "Részösszeg"
|
452 |
+
|
453 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
454 |
+
msgid "Shipping"
|
455 |
+
msgstr "Szállítás"
|
456 |
+
|
457 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
458 |
+
msgid "Discount"
|
459 |
+
msgstr "Kedvezmény"
|
460 |
+
|
461 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
462 |
+
msgid "VAT"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
466 |
+
msgid "Total ex. VAT"
|
467 |
+
msgstr "Végösszeg ÁFA nélkül"
|
468 |
+
|
469 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
470 |
+
msgid "Total"
|
471 |
+
msgstr "Végösszeg"
|
472 |
+
|
473 |
+
#~ msgid "..."
|
474 |
+
#~ msgstr "..."
|
475 |
|
476 |
+
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
477 |
+
#~ msgstr ""
|
478 |
+
#~ "Számla küldése emailban (csatolja a rendelési vagy a teljesítési "
|
479 |
+
#~ "igazoláshoz)"
|
languages/wpo_wcpdf-it_IT.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-it_IT.po
CHANGED
@@ -1,76 +1,43 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.6.
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
16 |
-
"Language: es_ES\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#:
|
20 |
-
|
21 |
-
|
22 |
-
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
23 |
-
"installed & activated!"
|
24 |
-
msgstr ""
|
25 |
-
"WooCommerce PDF Invoices & Packing Slips richiede% sWooCommerce% s per "
|
26 |
-
"essere installato e attivato!"
|
27 |
-
|
28 |
-
#: woocommerce-pdf-invoices-packingslips.php:183
|
29 |
-
#: woocommerce-pdf-invoices-packingslips.php:219
|
30 |
-
msgid "N/A"
|
31 |
-
msgstr "N/A"
|
32 |
-
|
33 |
-
#: woocommerce-pdf-invoices-packingslips.php:320
|
34 |
-
msgid "Subtotal"
|
35 |
-
msgstr "Totale parziale"
|
36 |
-
|
37 |
-
#: woocommerce-pdf-invoices-packingslips.php:338
|
38 |
-
msgid "Shipping"
|
39 |
-
msgstr "Spedizione"
|
40 |
-
|
41 |
-
#: woocommerce-pdf-invoices-packingslips.php:353
|
42 |
-
msgid "Discount"
|
43 |
-
msgstr "Sconto"
|
44 |
-
|
45 |
-
#: woocommerce-pdf-invoices-packingslips.php:418
|
46 |
-
msgid "Total ex. VAT"
|
47 |
-
msgstr "Totale (IVA esclusa)"
|
48 |
-
|
49 |
-
#: woocommerce-pdf-invoices-packingslips.php:421
|
50 |
-
msgid "Total"
|
51 |
-
msgstr "Totale"
|
52 |
-
|
53 |
-
#: includes/class-wcpdf-export.php:98 includes/class-wcpdf-export.php:103
|
54 |
-
#: includes/class-wcpdf-export.php:108
|
55 |
msgid "You do not have sufficient permissions to access this page."
|
56 |
msgstr ""
|
57 |
"Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
|
58 |
|
59 |
-
#: includes/class-wcpdf-export.php:
|
60 |
msgid "invoice"
|
61 |
msgid_plural "invoices"
|
62 |
msgstr[0] "fattura"
|
63 |
msgstr[1] "fatture"
|
64 |
|
65 |
-
#: includes/class-wcpdf-export.php:
|
66 |
msgid "packing-slip"
|
67 |
msgid_plural "packing-slips"
|
68 |
msgstr[0] "DDT"
|
69 |
msgstr[1] "DDT"
|
70 |
|
71 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
72 |
-
#: includes/class-wcpdf-writepanels.php:
|
73 |
-
#: includes/class-wcpdf-writepanels.php:
|
74 |
msgid "PDF Invoices"
|
75 |
msgstr "PDF Fatture"
|
76 |
|
@@ -78,23 +45,30 @@ msgstr "PDF Fatture"
|
|
78 |
msgid "Settings"
|
79 |
msgstr "Impostazioni"
|
80 |
|
81 |
-
#: includes/class-wcpdf-settings.php:
|
82 |
-
msgid "..."
|
83 |
-
msgstr "..."
|
84 |
-
|
85 |
-
#: includes/class-wcpdf-settings.php:86
|
86 |
-
msgid "WooCommerce PDF Invoices"
|
87 |
-
msgstr "WooCommerce PDF Fatture"
|
88 |
-
|
89 |
-
#: includes/class-wcpdf-settings.php:88
|
90 |
msgid "General"
|
91 |
msgstr "Generale"
|
92 |
|
93 |
-
#: includes/class-wcpdf-settings.php:
|
94 |
msgid "Template"
|
95 |
msgstr "Modello"
|
96 |
|
97 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
#, php-format
|
99 |
msgid ""
|
100 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
@@ -103,27 +77,49 @@ msgstr ""
|
|
103 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
104 |
"Packing Slips templates at %s."
|
105 |
|
106 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
107 |
msgid "General settings"
|
108 |
msgstr "Impostazioni generali"
|
109 |
|
110 |
-
#: includes/class-wcpdf-settings.php:
|
111 |
msgid "How do you want to view the PDF?"
|
112 |
msgstr "Come si desidera visualizzare il file PDF?"
|
113 |
|
114 |
-
#: includes/class-wcpdf-settings.php:
|
115 |
msgid "Download the PDF"
|
116 |
msgstr "Scarica il PDF"
|
117 |
|
118 |
-
#: includes/class-wcpdf-settings.php:
|
119 |
msgid "Open the PDF in a new browser tab/window"
|
120 |
msgstr "Aprire il file PDF in una nuova scheda / finestra del browser"
|
121 |
|
122 |
-
#: includes/class-wcpdf-settings.php:
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -134,97 +130,178 @@ msgstr ""
|
|
134 |
"controllare le autorizzazioni per questa cartella! Senza avere accesso in "
|
135 |
"scrittura a questa cartella, il plugin non sarà in grado di fatture email."
|
136 |
|
137 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "Impostazioni modello PDF "
|
140 |
|
141 |
-
#: includes/class-wcpdf-settings.php:
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Scegli un modello"
|
144 |
|
145 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
146 |
msgid ""
|
147 |
-
"Want to use your own template? Copy all the files from <code>
|
148 |
-
"
|
149 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
150 |
msgstr ""
|
151 |
-
"Vuoi usare il proprio modello? Copiare tutti i file dalla <code>
|
152 |
-
"
|
153 |
-
"yourtheme / woocommerce / pdf / yourtemplate / </ code> per personalizzarle"
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Paper size"
|
157 |
msgstr "Formato carta"
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Letter"
|
165 |
msgstr "Lettera"
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Intestazione Negozio / logo"
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Selezionare o caricare l'intestazione della fattura / logo"
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Set image"
|
177 |
msgstr "Imposta immagine "
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Remove image"
|
181 |
msgstr "Rimuovi immagine"
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Nome negozio"
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Indirizzo negozio"
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Piè di pagina: termini e condizioni, politiche, ecc"
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
msgid "Extra template fields"
|
197 |
msgstr "Campi modello Extra"
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "Extra field 1"
|
201 |
msgstr "Campo Extra 1"
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
205 |
msgstr "Questo è footer colonna 1 nella <i> Moderno (Premium) </ i> template"
|
206 |
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid "Extra field 2"
|
209 |
msgstr "Campo Extra 2"
|
210 |
|
211 |
-
#: includes/class-wcpdf-settings.php:
|
212 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
213 |
msgstr "Questo è footer colonna 2 nella <i> Moderno (Premium) </ i> template"
|
214 |
|
215 |
-
#: includes/class-wcpdf-settings.php:
|
216 |
msgid "Extra field 3"
|
217 |
msgstr "Campo Extra 3"
|
218 |
|
219 |
-
#: includes/class-wcpdf-settings.php:
|
220 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
221 |
msgstr "Questo è footer colonna 3 nella <i> Moderno (Premium) </ i> template"
|
222 |
|
223 |
-
#: includes/class-wcpdf-settings.php:
|
224 |
msgid "Image resolution"
|
225 |
msgstr "Risoluzione immagine"
|
226 |
|
227 |
-
#: includes/class-wcpdf-settings.php:
|
228 |
msgid ""
|
229 |
"These are used for the (optional) footer columns in the <em>Modern "
|
230 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -234,75 +311,167 @@ msgstr ""
|
|
234 |
"Moderna (Premium) </ em> di modello, ma può essere utilizzato anche per "
|
235 |
"altri elementi nel vostro modello personalizzato"
|
236 |
|
237 |
-
#: includes/class-wcpdf-writepanels.php:
|
238 |
-
|
239 |
-
|
|
|
240 |
|
241 |
-
#: includes/class-wcpdf-writepanels.php:
|
242 |
msgid "Download invoice (PDF)"
|
243 |
msgstr "Scarica fattura (PDF)"
|
244 |
|
245 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
246 |
msgid "PDF invoice"
|
247 |
msgstr "Fattura in formato PDF"
|
248 |
|
249 |
-
#: includes/class-wcpdf-writepanels.php:
|
250 |
msgid "PDF Packing Slip"
|
251 |
msgstr "PDF bolla di accompagnamento"
|
252 |
|
253 |
-
#: includes/class-wcpdf-writepanels.php:
|
254 |
-
#: includes/class-wcpdf-writepanels.php:
|
255 |
msgid "PDF Packing Slips"
|
256 |
msgstr "PDF bolle di accompagnamento"
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
259 |
msgid "Invoice"
|
260 |
msgstr "Fattura"
|
261 |
|
262 |
-
#: templates/pdf/Simple/
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
#: templates/pdf/Simple/packing-slip.php:30
|
264 |
msgid "Order Date:"
|
265 |
msgstr "Data fattura:"
|
266 |
|
267 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
268 |
#: templates/pdf/Simple/packing-slip.php:32
|
269 |
msgid "Order Number:"
|
270 |
msgstr "Fattura n.:"
|
271 |
|
272 |
-
#: templates/pdf/Simple/invoice.php:
|
273 |
msgid "Payment Method:"
|
274 |
msgstr "Metodo di pagamento:"
|
275 |
|
276 |
-
#: templates/pdf/Simple/invoice.php:
|
277 |
#: templates/pdf/Simple/packing-slip.php:45
|
278 |
msgid "Product"
|
279 |
msgstr "Prodotto"
|
280 |
|
281 |
-
#: templates/pdf/Simple/invoice.php:
|
282 |
#: templates/pdf/Simple/packing-slip.php:46
|
283 |
msgid "Quantity"
|
284 |
msgstr "Quantità"
|
285 |
|
286 |
-
#: templates/pdf/Simple/invoice.php:
|
287 |
msgid "Price"
|
288 |
msgstr "Prezzo"
|
289 |
|
290 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
#: templates/pdf/Simple/packing-slip.php:54
|
292 |
msgid "SKU:"
|
293 |
msgstr "Codice:"
|
294 |
|
295 |
-
#: templates/pdf/Simple/invoice.php:
|
296 |
#: templates/pdf/Simple/packing-slip.php:55
|
297 |
msgid "Weight:"
|
298 |
msgstr "Peso:"
|
299 |
|
300 |
-
#: templates/pdf/Simple/invoice.php:
|
301 |
#: templates/pdf/Simple/packing-slip.php:69
|
302 |
msgid "Customer Notes"
|
303 |
msgstr "Nota del Cliente"
|
304 |
|
305 |
-
#:
|
306 |
-
|
307 |
-
msgid "
|
308 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:05+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:06+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"Language: es_ES\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
"Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
|
25 |
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "fattura"
|
30 |
msgstr[1] "fatture"
|
31 |
|
32 |
+
#: includes/class-wcpdf-export.php:225
|
33 |
msgid "packing-slip"
|
34 |
msgid_plural "packing-slips"
|
35 |
msgstr[0] "DDT"
|
36 |
msgstr[1] "DDT"
|
37 |
|
38 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
39 |
+
#: includes/class-wcpdf-writepanels.php:176
|
40 |
+
#: includes/class-wcpdf-writepanels.php:177
|
41 |
msgid "PDF Invoices"
|
42 |
msgstr "PDF Fatture"
|
43 |
|
45 |
msgid "Settings"
|
46 |
msgstr "Impostazioni"
|
47 |
|
48 |
+
#: includes/class-wcpdf-settings.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgid "General"
|
50 |
msgstr "Generale"
|
51 |
|
52 |
+
#: includes/class-wcpdf-settings.php:83
|
53 |
msgid "Template"
|
54 |
msgstr "Modello"
|
55 |
|
56 |
+
#: includes/class-wcpdf-settings.php:92
|
57 |
+
msgid "WooCommerce PDF Invoices"
|
58 |
+
msgstr "WooCommerce PDF Fatture"
|
59 |
+
|
60 |
+
#: includes/class-wcpdf-settings.php:98
|
61 |
+
msgid "Status"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: includes/class-wcpdf-settings.php:109
|
65 |
+
#, php-format
|
66 |
+
msgid ""
|
67 |
+
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
68 |
+
"extension."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: includes/class-wcpdf-settings.php:119
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
77 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
78 |
"Packing Slips templates at %s."
|
79 |
|
80 |
+
#: includes/class-wcpdf-settings.php:120
|
81 |
+
#, php-format
|
82 |
+
msgid "For custom templates, contact us at %s."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-wcpdf-settings.php:175
|
86 |
msgid "General settings"
|
87 |
msgstr "Impostazioni generali"
|
88 |
|
89 |
+
#: includes/class-wcpdf-settings.php:182
|
90 |
msgid "How do you want to view the PDF?"
|
91 |
msgstr "Come si desidera visualizzare il file PDF?"
|
92 |
|
93 |
+
#: includes/class-wcpdf-settings.php:190
|
94 |
msgid "Download the PDF"
|
95 |
msgstr "Scarica il PDF"
|
96 |
|
97 |
+
#: includes/class-wcpdf-settings.php:191
|
98 |
msgid "Open the PDF in a new browser tab/window"
|
99 |
msgstr "Aprire il file PDF in una nuova scheda / finestra del browser"
|
100 |
|
101 |
+
#: includes/class-wcpdf-settings.php:201
|
102 |
+
msgid "Attach invoice to:"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/class-wcpdf-settings.php:209
|
106 |
+
msgid "Admin New Order email"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: includes/class-wcpdf-settings.php:210
|
110 |
+
msgid "Customer Processing Order email"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: includes/class-wcpdf-settings.php:211
|
114 |
+
msgid "Customer Completed Order email"
|
115 |
+
msgstr ""
|
116 |
|
117 |
+
#: includes/class-wcpdf-settings.php:212
|
118 |
+
#, fuzzy
|
119 |
+
msgid "Customer Invoice email"
|
120 |
+
msgstr "Nota del Cliente"
|
121 |
+
|
122 |
+
#: includes/class-wcpdf-settings.php:214
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
130 |
"controllare le autorizzazioni per questa cartella! Senza avere accesso in "
|
131 |
"scrittura a questa cartella, il plugin non sarà in grado di fatture email."
|
132 |
|
133 |
+
#: includes/class-wcpdf-settings.php:220
|
134 |
+
msgid "Enable invoice number column in the orders list"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/class-wcpdf-settings.php:259
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "Impostazioni modello PDF "
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:271
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Scegli un modello"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:279
|
146 |
+
#, php-format
|
147 |
msgid ""
|
148 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
149 |
+
"<code>%s</code> to customize them"
|
|
|
150 |
msgstr ""
|
151 |
+
"Vuoi usare il proprio modello? Copiare tutti i file dalla <code>%s</code> "
|
152 |
+
"per <code>%s</code> per personalizzarle"
|
|
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:285
|
155 |
msgid "Paper size"
|
156 |
msgstr "Formato carta"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:293
|
159 |
msgid "A4"
|
160 |
msgstr "A4"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:294
|
163 |
msgid "Letter"
|
164 |
msgstr "Lettera"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:301
|
167 |
msgid "Shop header/logo"
|
168 |
msgstr "Intestazione Negozio / logo"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:308
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
msgstr "Selezionare o caricare l'intestazione della fattura / logo"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:309
|
175 |
msgid "Set image"
|
176 |
msgstr "Imposta immagine "
|
177 |
|
178 |
+
#: includes/class-wcpdf-settings.php:310
|
179 |
msgid "Remove image"
|
180 |
msgstr "Rimuovi immagine"
|
181 |
|
182 |
+
#: includes/class-wcpdf-settings.php:317
|
183 |
msgid "Shop Name"
|
184 |
msgstr "Nome negozio"
|
185 |
|
186 |
+
#: includes/class-wcpdf-settings.php:330
|
187 |
msgid "Shop Address"
|
188 |
msgstr "Indirizzo negozio"
|
189 |
|
190 |
+
#: includes/class-wcpdf-settings.php:362
|
191 |
msgid "Footer: terms & conditions, policies, etc."
|
192 |
msgstr "Piè di pagina: termini e condizioni, politiche, ecc"
|
193 |
|
194 |
+
#: includes/class-wcpdf-settings.php:377
|
195 |
+
msgid "Number to display on invoice"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/class-wcpdf-settings.php:385
|
199 |
+
#, fuzzy
|
200 |
+
msgid "WooCommerce order number"
|
201 |
+
msgstr "WooCommerce PDF Fatture"
|
202 |
+
|
203 |
+
#: includes/class-wcpdf-settings.php:386
|
204 |
+
msgid "Built-in sequential invoice number"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/class-wcpdf-settings.php:388
|
208 |
+
msgid ""
|
209 |
+
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
210 |
+
"WooCommerce order number"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/class-wcpdf-settings.php:394
|
214 |
+
msgid "Next invoice number (without prefix/suffix etc.)"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/class-wcpdf-settings.php:402
|
218 |
+
msgid ""
|
219 |
+
"This is the number that will be used on the next invoice that is created. By "
|
220 |
+
"default, numbering starts from the WooCommerce Order Number of the first "
|
221 |
+
"invoice that is created and increases for every new invoice. Note that if "
|
222 |
+
"you override this and set it lower than the highest (PDF) invoice number, "
|
223 |
+
"this could create double invoice numbers!"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/class-wcpdf-settings.php:408
|
227 |
+
msgid "Invoice number format"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/class-wcpdf-settings.php:417
|
231 |
+
msgid "Prefix"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/class-wcpdf-settings.php:419
|
235 |
+
msgid ""
|
236 |
+
"to use the order year and/or month, use [order_year] or [order_month] "
|
237 |
+
"respectively"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: includes/class-wcpdf-settings.php:422
|
241 |
+
msgid "Suffix"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: includes/class-wcpdf-settings.php:427
|
245 |
+
msgid "Padding"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: includes/class-wcpdf-settings.php:429
|
249 |
+
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: includes/class-wcpdf-settings.php:432
|
253 |
+
msgid ""
|
254 |
+
"note: if you have already created a custom invoice number format with a "
|
255 |
+
"filter, the above settings will be ignored"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/class-wcpdf-settings.php:440
|
259 |
+
msgid "Date to display on invoice"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/class-wcpdf-settings.php:448
|
263 |
+
#, fuzzy
|
264 |
+
msgid "Order date"
|
265 |
+
msgstr "Data fattura:"
|
266 |
+
|
267 |
+
#: includes/class-wcpdf-settings.php:449
|
268 |
+
#, fuzzy
|
269 |
+
msgid "Invoice date"
|
270 |
+
msgstr "Fattura"
|
271 |
+
|
272 |
+
#: includes/class-wcpdf-settings.php:457
|
273 |
msgid "Extra template fields"
|
274 |
msgstr "Campi modello Extra"
|
275 |
|
276 |
+
#: includes/class-wcpdf-settings.php:464
|
277 |
msgid "Extra field 1"
|
278 |
msgstr "Campo Extra 1"
|
279 |
|
280 |
+
#: includes/class-wcpdf-settings.php:473
|
281 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
282 |
msgstr "Questo è footer colonna 1 nella <i> Moderno (Premium) </ i> template"
|
283 |
|
284 |
+
#: includes/class-wcpdf-settings.php:479
|
285 |
msgid "Extra field 2"
|
286 |
msgstr "Campo Extra 2"
|
287 |
|
288 |
+
#: includes/class-wcpdf-settings.php:488
|
289 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
290 |
msgstr "Questo è footer colonna 2 nella <i> Moderno (Premium) </ i> template"
|
291 |
|
292 |
+
#: includes/class-wcpdf-settings.php:494
|
293 |
msgid "Extra field 3"
|
294 |
msgstr "Campo Extra 3"
|
295 |
|
296 |
+
#: includes/class-wcpdf-settings.php:503
|
297 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
298 |
msgstr "Questo è footer colonna 3 nella <i> Moderno (Premium) </ i> template"
|
299 |
|
300 |
+
#: includes/class-wcpdf-settings.php:760
|
301 |
msgid "Image resolution"
|
302 |
msgstr "Risoluzione immagine"
|
303 |
|
304 |
+
#: includes/class-wcpdf-settings.php:871
|
305 |
msgid ""
|
306 |
"These are used for the (optional) footer columns in the <em>Modern "
|
307 |
"(Premium)</em> template, but can also be used for other elements in your "
|
311 |
"Moderna (Premium) </ em> di modello, ma può essere utilizzato anche per "
|
312 |
"altri elementi nel vostro modello personalizzato"
|
313 |
|
314 |
+
#: includes/class-wcpdf-writepanels.php:102
|
315 |
+
#, fuzzy
|
316 |
+
msgid "Invoice Number"
|
317 |
+
msgstr "Fattura"
|
318 |
|
319 |
+
#: includes/class-wcpdf-writepanels.php:139
|
320 |
msgid "Download invoice (PDF)"
|
321 |
msgstr "Scarica fattura (PDF)"
|
322 |
|
323 |
+
#: includes/class-wcpdf-writepanels.php:150
|
324 |
+
msgid "Create PDF"
|
325 |
+
msgstr "Crea PDF"
|
326 |
+
|
327 |
+
#: includes/class-wcpdf-writepanels.php:160
|
328 |
msgid "PDF invoice"
|
329 |
msgstr "Fattura in formato PDF"
|
330 |
|
331 |
+
#: includes/class-wcpdf-writepanels.php:161
|
332 |
msgid "PDF Packing Slip"
|
333 |
msgstr "PDF bolla di accompagnamento"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:178
|
336 |
+
#: includes/class-wcpdf-writepanels.php:179
|
337 |
msgid "PDF Packing Slips"
|
338 |
msgstr "PDF bolle di accompagnamento"
|
339 |
|
340 |
+
#: includes/class-wcpdf-writepanels.php:192
|
341 |
+
msgid "PDF Invoice Number (unformatted!)"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/class-wcpdf-writepanels.php:195
|
345 |
+
#: templates/pdf/Simple/invoice.php:37
|
346 |
+
#, fuzzy
|
347 |
+
msgid "Invoice Date:"
|
348 |
+
msgstr "Fattura"
|
349 |
+
|
350 |
+
#: includes/class-wcpdf-writepanels.php:196
|
351 |
+
msgid "h"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/class-wcpdf-writepanels.php:196
|
355 |
+
msgid "m"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
359 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
360 |
msgid "Invoice"
|
361 |
msgstr "Fattura"
|
362 |
|
363 |
+
#: templates/pdf/Simple/html-document-wrapper.php:6
|
364 |
+
#: templates/pdf/Simple/packing-slip.php:9
|
365 |
+
#: templates/pdf/Simple/packing-slip.php:21
|
366 |
+
msgid "Packing Slip"
|
367 |
+
msgstr "Documento di trasporto"
|
368 |
+
|
369 |
+
#: templates/pdf/Simple/invoice.php:40
|
370 |
#: templates/pdf/Simple/packing-slip.php:30
|
371 |
msgid "Order Date:"
|
372 |
msgstr "Data fattura:"
|
373 |
|
374 |
+
#: templates/pdf/Simple/invoice.php:46
|
375 |
+
#, fuzzy
|
376 |
+
msgid "Invoice Number:"
|
377 |
+
msgstr "Fattura n.:"
|
378 |
+
|
379 |
+
#: templates/pdf/Simple/invoice.php:49
|
380 |
#: templates/pdf/Simple/packing-slip.php:32
|
381 |
msgid "Order Number:"
|
382 |
msgstr "Fattura n.:"
|
383 |
|
384 |
+
#: templates/pdf/Simple/invoice.php:56
|
385 |
msgid "Payment Method:"
|
386 |
msgstr "Metodo di pagamento:"
|
387 |
|
388 |
+
#: templates/pdf/Simple/invoice.php:69
|
389 |
#: templates/pdf/Simple/packing-slip.php:45
|
390 |
msgid "Product"
|
391 |
msgstr "Prodotto"
|
392 |
|
393 |
+
#: templates/pdf/Simple/invoice.php:70
|
394 |
#: templates/pdf/Simple/packing-slip.php:46
|
395 |
msgid "Quantity"
|
396 |
msgstr "Quantità"
|
397 |
|
398 |
+
#: templates/pdf/Simple/invoice.php:71
|
399 |
msgid "Price"
|
400 |
msgstr "Prezzo"
|
401 |
|
402 |
+
#: templates/pdf/Simple/invoice.php:77
|
403 |
+
msgid "Description"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: templates/pdf/Simple/invoice.php:80
|
407 |
+
msgid "SKU"
|
408 |
+
msgstr "Codice"
|
409 |
+
|
410 |
+
#: templates/pdf/Simple/invoice.php:81
|
411 |
#: templates/pdf/Simple/packing-slip.php:54
|
412 |
msgid "SKU:"
|
413 |
msgstr "Codice:"
|
414 |
|
415 |
+
#: templates/pdf/Simple/invoice.php:82
|
416 |
#: templates/pdf/Simple/packing-slip.php:55
|
417 |
msgid "Weight:"
|
418 |
msgstr "Peso:"
|
419 |
|
420 |
+
#: templates/pdf/Simple/invoice.php:114
|
421 |
#: templates/pdf/Simple/packing-slip.php:69
|
422 |
msgid "Customer Notes"
|
423 |
msgstr "Nota del Cliente"
|
424 |
|
425 |
+
#: woocommerce-pdf-invoices-packingslips.php:96
|
426 |
+
#, php-format
|
427 |
+
msgid ""
|
428 |
+
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
429 |
+
"installed & activated!"
|
430 |
+
msgstr ""
|
431 |
+
"WooCommerce PDF Invoices & Packing Slips richiede% sWooCommerce% s per "
|
432 |
+
"essere installato e attivato!"
|
433 |
+
|
434 |
+
#: woocommerce-pdf-invoices-packingslips.php:191
|
435 |
+
#: woocommerce-pdf-invoices-packingslips.php:227
|
436 |
+
msgid "N/A"
|
437 |
+
msgstr "N/A"
|
438 |
+
|
439 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
440 |
+
#, fuzzy
|
441 |
+
msgid "Payment method"
|
442 |
+
msgstr "Metodo di pagamento:"
|
443 |
+
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
445 |
+
#, fuzzy
|
446 |
+
msgid "Shipping method"
|
447 |
+
msgstr "Spedizione"
|
448 |
+
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
450 |
+
msgid "Subtotal"
|
451 |
+
msgstr "Totale parziale"
|
452 |
+
|
453 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
454 |
+
msgid "Shipping"
|
455 |
+
msgstr "Spedizione"
|
456 |
+
|
457 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
458 |
+
msgid "Discount"
|
459 |
+
msgstr "Sconto"
|
460 |
+
|
461 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
462 |
+
msgid "VAT"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
466 |
+
msgid "Total ex. VAT"
|
467 |
+
msgstr "Totale (IVA esclusa)"
|
468 |
+
|
469 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
470 |
+
msgid "Total"
|
471 |
+
msgstr "Totale"
|
472 |
+
|
473 |
+
#~ msgid "..."
|
474 |
+
#~ msgstr "..."
|
475 |
+
|
476 |
+
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
477 |
+
#~ msgstr "Email Fattura (allegare alla conferma dell'ordine o e-mail fattura)"
|
languages/wpo_wcpdf-nb_NO.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-nb_NO.po
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Aleksander Soltvedt <aleksander@filament.no>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.6.
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
16 |
-
"Language: nb\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:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Du har ikke nok rettigheter til denne siden"
|
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] "Fakturaer"
|
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] "Pakkseddel"
|
37 |
msgstr[1] "Pakksedler"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Faktura"
|
44 |
|
@@ -137,80 +137,80 @@ msgstr "Aktiver Faktura nummer kolonne i ordre listen"
|
|
137 |
msgid "PDF Template settings"
|
138 |
msgstr "PDF Template innstillinger"
|
139 |
|
140 |
-
#: includes/class-wcpdf-settings.php:
|
141 |
msgid "Choose a template"
|
142 |
msgstr "Velg din template"
|
143 |
|
144 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
145 |
msgid ""
|
146 |
-
"Want to use your own template? Copy all the files from <code>
|
147 |
-
"
|
148 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-wcpdf-settings.php:
|
152 |
msgid "Paper size"
|
153 |
msgstr "Papir størrelse"
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "A4"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "Letter"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Shop header/logo"
|
165 |
msgstr "Butikkens Header/Logo"
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Select or upload your invoice header/logo"
|
169 |
msgstr "Velg eller last opp din faktura header/logo"
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Set image"
|
173 |
msgstr "Velg bilde"
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Remove image"
|
177 |
msgstr "Fjern Bilde"
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Shop Name"
|
181 |
msgstr "Butikkens Navn"
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Shop Address"
|
185 |
msgstr "Butikkens Adresse"
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Footer: terms & conditions, policies, etc."
|
189 |
msgstr "Footer: Betingelser og Vilkår"
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Number to display on invoice"
|
193 |
msgstr "Nummer som skal vise på faktura"
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "WooCommerce order number"
|
197 |
msgstr "WooCommerce Ordre nummer"
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "Built-in sequential invoice number"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
msgid ""
|
205 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
206 |
"WooCommerce order number"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/class-wcpdf-settings.php:
|
210 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/class-wcpdf-settings.php:
|
214 |
msgid ""
|
215 |
"This is the number that will be used on the next invoice that is created. By "
|
216 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -219,83 +219,83 @@ msgid ""
|
|
219 |
"this could create double invoice numbers!"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid "Invoice number format"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/class-wcpdf-settings.php:
|
227 |
msgid "Prefix"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/class-wcpdf-settings.php:
|
231 |
msgid ""
|
232 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
233 |
"respectively"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "Suffix"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-wcpdf-settings.php:
|
241 |
msgid "Padding"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: includes/class-wcpdf-settings.php:
|
245 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/class-wcpdf-settings.php:
|
249 |
msgid ""
|
250 |
"note: if you have already created a custom invoice number format with a "
|
251 |
"filter, the above settings will be ignored"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/class-wcpdf-settings.php:
|
255 |
msgid "Date to display on invoice"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/class-wcpdf-settings.php:
|
259 |
msgid "Order date"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/class-wcpdf-settings.php:
|
263 |
msgid "Invoice date"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/class-wcpdf-settings.php:
|
267 |
msgid "Extra template fields"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/class-wcpdf-settings.php:
|
271 |
msgid "Extra field 1"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/class-wcpdf-settings.php:
|
275 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/class-wcpdf-settings.php:
|
279 |
msgid "Extra field 2"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-wcpdf-settings.php:
|
283 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-wcpdf-settings.php:
|
287 |
msgid "Extra field 3"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/class-wcpdf-settings.php:
|
291 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
295 |
msgid "Image resolution"
|
296 |
msgstr "Bilde oppløsning"
|
297 |
|
298 |
-
#: includes/class-wcpdf-settings.php:
|
299 |
msgid ""
|
300 |
"These are used for the (optional) footer columns in the <em>Modern "
|
301 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -306,31 +306,44 @@ msgstr ""
|
|
306 |
msgid "Invoice Number"
|
307 |
msgstr "Faktura nummer"
|
308 |
|
309 |
-
#: includes/class-wcpdf-writepanels.php:
|
310 |
-
msgid "Create PDF"
|
311 |
-
msgstr "Opprett PDF"
|
312 |
-
|
313 |
-
#: includes/class-wcpdf-writepanels.php:143
|
314 |
msgid "Download invoice (PDF)"
|
315 |
msgstr "Last ned faktura (PDF)"
|
316 |
|
317 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
318 |
msgid "PDF invoice"
|
319 |
msgstr "PDF Faktura"
|
320 |
|
321 |
-
#: includes/class-wcpdf-writepanels.php:
|
322 |
msgid "PDF Packing Slip"
|
323 |
msgstr "PDF Pakkseddel"
|
324 |
|
325 |
-
#: includes/class-wcpdf-writepanels.php:
|
326 |
-
#: includes/class-wcpdf-writepanels.php:
|
327 |
msgid "PDF Packing Slips"
|
328 |
msgstr "PDF Pakksedler"
|
329 |
|
330 |
-
#: includes/class-wcpdf-writepanels.php:
|
331 |
msgid "PDF Invoice Number (unformatted!)"
|
332 |
msgstr ""
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
335 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
336 |
msgid "Invoice"
|
@@ -342,10 +355,6 @@ msgstr "Faktura"
|
|
342 |
msgid "Packing Slip"
|
343 |
msgstr "Pakkseddel"
|
344 |
|
345 |
-
#: templates/pdf/Simple/invoice.php:37
|
346 |
-
msgid "Invoice Date:"
|
347 |
-
msgstr "Faktura Dato"
|
348 |
-
|
349 |
#: templates/pdf/Simple/invoice.php:40
|
350 |
#: templates/pdf/Simple/packing-slip.php:30
|
351 |
msgid "Order Date:"
|
@@ -383,16 +392,21 @@ msgid "Description"
|
|
383 |
msgstr "Beskrivelse"
|
384 |
|
385 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
|
|
386 |
#: templates/pdf/Simple/packing-slip.php:54
|
387 |
msgid "SKU:"
|
388 |
msgstr "Art.nr"
|
389 |
|
390 |
-
#: templates/pdf/Simple/invoice.php:
|
391 |
#: templates/pdf/Simple/packing-slip.php:55
|
392 |
msgid "Weight:"
|
393 |
msgstr "Vekt"
|
394 |
|
395 |
-
#: templates/pdf/Simple/invoice.php:
|
396 |
#: templates/pdf/Simple/packing-slip.php:69
|
397 |
msgid "Customer Notes"
|
398 |
msgstr "Kundenotat"
|
@@ -409,35 +423,34 @@ msgstr ""
|
|
409 |
msgid "N/A"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
413 |
msgid "Payment method"
|
414 |
msgstr "Betalingsmåte"
|
415 |
|
416 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
417 |
msgid "Shipping method"
|
418 |
msgstr "Leveringsmåte"
|
419 |
|
420 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
421 |
msgid "Subtotal"
|
422 |
msgstr "Total"
|
423 |
|
424 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
425 |
msgid "Shipping"
|
426 |
msgstr "Frakt"
|
427 |
|
428 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
429 |
msgid "Discount"
|
430 |
msgstr "Avslag"
|
431 |
|
432 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
433 |
msgid "VAT"
|
434 |
msgstr "MVA"
|
435 |
|
436 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
437 |
msgid "Total ex. VAT"
|
438 |
msgstr "Totalt ex.MVA"
|
439 |
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
msgid "Total"
|
442 |
msgstr "Totalt"
|
443 |
-
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:07+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:07+0100\n"
|
6 |
"Last-Translator: Aleksander Soltvedt <aleksander@filament.no>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
+
"Language: nb\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Du har ikke nok rettigheter til denne siden"
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "Faktura"
|
30 |
msgstr[1] "Fakturaer"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:225
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Pakkseddel"
|
37 |
msgstr[1] "Pakksedler"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Faktura"
|
44 |
|
137 |
msgid "PDF Template settings"
|
138 |
msgstr "PDF Template innstillinger"
|
139 |
|
140 |
+
#: includes/class-wcpdf-settings.php:271
|
141 |
msgid "Choose a template"
|
142 |
msgstr "Velg din template"
|
143 |
|
144 |
+
#: includes/class-wcpdf-settings.php:279
|
145 |
+
#, php-format
|
146 |
msgid ""
|
147 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
148 |
+
"<code>%s</code> to customize them"
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-wcpdf-settings.php:285
|
152 |
msgid "Paper size"
|
153 |
msgstr "Papir størrelse"
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:293
|
156 |
msgid "A4"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:294
|
160 |
msgid "Letter"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:301
|
164 |
msgid "Shop header/logo"
|
165 |
msgstr "Butikkens Header/Logo"
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:308
|
168 |
msgid "Select or upload your invoice header/logo"
|
169 |
msgstr "Velg eller last opp din faktura header/logo"
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:309
|
172 |
msgid "Set image"
|
173 |
msgstr "Velg bilde"
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:310
|
176 |
msgid "Remove image"
|
177 |
msgstr "Fjern Bilde"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:317
|
180 |
msgid "Shop Name"
|
181 |
msgstr "Butikkens Navn"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:330
|
184 |
msgid "Shop Address"
|
185 |
msgstr "Butikkens Adresse"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:362
|
188 |
msgid "Footer: terms & conditions, policies, etc."
|
189 |
msgstr "Footer: Betingelser og Vilkår"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:377
|
192 |
msgid "Number to display on invoice"
|
193 |
msgstr "Nummer som skal vise på faktura"
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:385
|
196 |
msgid "WooCommerce order number"
|
197 |
msgstr "WooCommerce Ordre nummer"
|
198 |
|
199 |
+
#: includes/class-wcpdf-settings.php:386
|
200 |
msgid "Built-in sequential invoice number"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:388
|
204 |
msgid ""
|
205 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
206 |
"WooCommerce order number"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/class-wcpdf-settings.php:394
|
210 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/class-wcpdf-settings.php:402
|
214 |
msgid ""
|
215 |
"This is the number that will be used on the next invoice that is created. By "
|
216 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
219 |
"this could create double invoice numbers!"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/class-wcpdf-settings.php:408
|
223 |
msgid "Invoice number format"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/class-wcpdf-settings.php:417
|
227 |
msgid "Prefix"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/class-wcpdf-settings.php:419
|
231 |
msgid ""
|
232 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
233 |
"respectively"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:422
|
237 |
msgid "Suffix"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:427
|
241 |
msgid "Padding"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:429
|
245 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:432
|
249 |
msgid ""
|
250 |
"note: if you have already created a custom invoice number format with a "
|
251 |
"filter, the above settings will be ignored"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:440
|
255 |
msgid "Date to display on invoice"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:448
|
259 |
msgid "Order date"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:449
|
263 |
msgid "Invoice date"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:457
|
267 |
msgid "Extra template fields"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:464
|
271 |
msgid "Extra field 1"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:473
|
275 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:479
|
279 |
msgid "Extra field 2"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:488
|
283 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/class-wcpdf-settings.php:494
|
287 |
msgid "Extra field 3"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:503
|
291 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/class-wcpdf-settings.php:760
|
295 |
msgid "Image resolution"
|
296 |
msgstr "Bilde oppløsning"
|
297 |
|
298 |
+
#: includes/class-wcpdf-settings.php:871
|
299 |
msgid ""
|
300 |
"These are used for the (optional) footer columns in the <em>Modern "
|
301 |
"(Premium)</em> template, but can also be used for other elements in your "
|
306 |
msgid "Invoice Number"
|
307 |
msgstr "Faktura nummer"
|
308 |
|
309 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
310 |
msgid "Download invoice (PDF)"
|
311 |
msgstr "Last ned faktura (PDF)"
|
312 |
|
313 |
+
#: includes/class-wcpdf-writepanels.php:150
|
314 |
+
msgid "Create PDF"
|
315 |
+
msgstr "Opprett PDF"
|
316 |
+
|
317 |
+
#: includes/class-wcpdf-writepanels.php:160
|
318 |
msgid "PDF invoice"
|
319 |
msgstr "PDF Faktura"
|
320 |
|
321 |
+
#: includes/class-wcpdf-writepanels.php:161
|
322 |
msgid "PDF Packing Slip"
|
323 |
msgstr "PDF Pakkseddel"
|
324 |
|
325 |
+
#: includes/class-wcpdf-writepanels.php:178
|
326 |
+
#: includes/class-wcpdf-writepanels.php:179
|
327 |
msgid "PDF Packing Slips"
|
328 |
msgstr "PDF Pakksedler"
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:192
|
331 |
msgid "PDF Invoice Number (unformatted!)"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/class-wcpdf-writepanels.php:195
|
335 |
+
#: templates/pdf/Simple/invoice.php:37
|
336 |
+
msgid "Invoice Date:"
|
337 |
+
msgstr "Faktura Dato"
|
338 |
+
|
339 |
+
#: includes/class-wcpdf-writepanels.php:196
|
340 |
+
msgid "h"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: includes/class-wcpdf-writepanels.php:196
|
344 |
+
msgid "m"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
348 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
349 |
msgid "Invoice"
|
355 |
msgid "Packing Slip"
|
356 |
msgstr "Pakkseddel"
|
357 |
|
|
|
|
|
|
|
|
|
358 |
#: templates/pdf/Simple/invoice.php:40
|
359 |
#: templates/pdf/Simple/packing-slip.php:30
|
360 |
msgid "Order Date:"
|
392 |
msgstr "Beskrivelse"
|
393 |
|
394 |
#: templates/pdf/Simple/invoice.php:80
|
395 |
+
#, fuzzy
|
396 |
+
msgid "SKU"
|
397 |
+
msgstr "Art.nr"
|
398 |
+
|
399 |
+
#: templates/pdf/Simple/invoice.php:81
|
400 |
#: templates/pdf/Simple/packing-slip.php:54
|
401 |
msgid "SKU:"
|
402 |
msgstr "Art.nr"
|
403 |
|
404 |
+
#: templates/pdf/Simple/invoice.php:82
|
405 |
#: templates/pdf/Simple/packing-slip.php:55
|
406 |
msgid "Weight:"
|
407 |
msgstr "Vekt"
|
408 |
|
409 |
+
#: templates/pdf/Simple/invoice.php:114
|
410 |
#: templates/pdf/Simple/packing-slip.php:69
|
411 |
msgid "Customer Notes"
|
412 |
msgstr "Kundenotat"
|
423 |
msgid "N/A"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
427 |
msgid "Payment method"
|
428 |
msgstr "Betalingsmåte"
|
429 |
|
430 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
431 |
msgid "Shipping method"
|
432 |
msgstr "Leveringsmåte"
|
433 |
|
434 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
435 |
msgid "Subtotal"
|
436 |
msgstr "Total"
|
437 |
|
438 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
439 |
msgid "Shipping"
|
440 |
msgstr "Frakt"
|
441 |
|
442 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
443 |
msgid "Discount"
|
444 |
msgstr "Avslag"
|
445 |
|
446 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
447 |
msgid "VAT"
|
448 |
msgstr "MVA"
|
449 |
|
450 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
451 |
msgid "Total ex. VAT"
|
452 |
msgstr "Totalt ex.MVA"
|
453 |
|
454 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
455 |
msgid "Total"
|
456 |
msgstr "Totalt"
|
|
languages/wpo_wcpdf-nl_NL.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -16,30 +16,30 @@ msgstr ""
|
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Generator: Poedit 1.6.
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: includes/class-wcpdf-export.php:
|
23 |
-
#: includes/class-wcpdf-export.php:
|
24 |
-
#: includes/class-wcpdf-export.php:
|
25 |
msgid "You do not have sufficient permissions to access this page."
|
26 |
msgstr "Je hebt onvoldoende rechten voor deze pagina."
|
27 |
|
28 |
-
#: includes/class-wcpdf-export.php:
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "factuur"
|
32 |
msgstr[1] "facturen"
|
33 |
|
34 |
-
#: includes/class-wcpdf-export.php:
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "pakbon"
|
38 |
msgstr[1] "pakbonnen"
|
39 |
|
40 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
-
#: includes/class-wcpdf-writepanels.php:
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr "PDF facturen"
|
45 |
|
@@ -140,74 +140,72 @@ msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
|
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "PDF Template instellingen"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Kies een template"
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
148 |
msgid ""
|
149 |
-
"Want to use your own template? Copy all the files from <code>
|
150 |
-
"
|
151 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
152 |
msgstr ""
|
153 |
-
"Wil je je eigen template gebruiken? Kopieer alle bestanden van "
|
154 |
-
"
|
155 |
-
"naar <code>jouwtheme/woocommerce/pdf/jouwtemplate/</code> en pas ze aan naar "
|
156 |
-
"je wensen."
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Paper size"
|
160 |
msgstr "Papier formaat"
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "A4"
|
164 |
msgstr "A4"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Letter"
|
168 |
msgstr "Letter (US)"
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Shop header/logo"
|
172 |
msgstr "Shop header/logo"
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
msgstr "Selecteer of upload je factuur header/logo"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Set image"
|
180 |
msgstr "Stel afbeelding in"
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Remove image"
|
184 |
msgstr "Verwijder afbeelding"
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Name"
|
188 |
msgstr "Shop Naam"
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Shop Address"
|
192 |
msgstr "Shop Adres"
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Footer: terms & conditions, policies, etc."
|
196 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
199 |
msgid "Number to display on invoice"
|
200 |
msgstr "Nummer op de factuur"
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "WooCommerce order number"
|
204 |
msgstr "WooCommerce ordernummer"
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Built-in sequential invoice number"
|
208 |
msgstr "Ingebouwde sequentiële factuurnummers"
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid ""
|
212 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
213 |
"WooCommerce order number"
|
@@ -215,11 +213,11 @@ msgstr ""
|
|
215 |
"Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
216 |
"dan WooCommerce ordernummer"
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
220 |
msgstr "Volgende factuurnummer (zonder voorvoegsel/achtervoegsel etc.)"
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid ""
|
224 |
"This is the number that will be used on the next invoice that is created. By "
|
225 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -234,15 +232,15 @@ msgstr ""
|
|
234 |
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
235 |
"gevolg hebben!"
|
236 |
|
237 |
-
#: includes/class-wcpdf-settings.php:
|
238 |
msgid "Invoice number format"
|
239 |
msgstr "Factuurnummer format"
|
240 |
|
241 |
-
#: includes/class-wcpdf-settings.php:
|
242 |
msgid "Prefix"
|
243 |
msgstr "Voorvoegsel"
|
244 |
|
245 |
-
#: includes/class-wcpdf-settings.php:
|
246 |
msgid ""
|
247 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
248 |
"respectively"
|
@@ -250,21 +248,21 @@ msgstr ""
|
|
250 |
"gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
|
251 |
"te geven"
|
252 |
|
253 |
-
#: includes/class-wcpdf-settings.php:
|
254 |
msgid "Suffix"
|
255 |
msgstr "Achtervoegsel"
|
256 |
|
257 |
-
#: includes/class-wcpdf-settings.php:
|
258 |
msgid "Padding"
|
259 |
msgstr "Vulling"
|
260 |
|
261 |
-
#: includes/class-wcpdf-settings.php:
|
262 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
263 |
msgstr ""
|
264 |
"voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
|
265 |
"geven"
|
266 |
|
267 |
-
#: includes/class-wcpdf-settings.php:
|
268 |
msgid ""
|
269 |
"note: if you have already created a custom invoice number format with a "
|
270 |
"filter, the above settings will be ignored"
|
@@ -272,51 +270,51 @@ msgstr ""
|
|
272 |
"let op: als je al een format voor een factuurnummer hebt gemaakt met een "
|
273 |
"filter, worden de bovenstaande instellingen genegeerd"
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
msgid "Date to display on invoice"
|
277 |
msgstr "Datum op de factuur"
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
msgid "Order date"
|
281 |
msgstr "Orderdatum"
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "Invoice date"
|
285 |
msgstr "Factuurdatum"
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid "Extra template fields"
|
289 |
msgstr "Extra templatevelden"
|
290 |
|
291 |
-
#: includes/class-wcpdf-settings.php:
|
292 |
msgid "Extra field 1"
|
293 |
msgstr "Extra veld 1"
|
294 |
|
295 |
-
#: includes/class-wcpdf-settings.php:
|
296 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
297 |
msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid "Extra field 2"
|
301 |
msgstr "Extra veld 2"
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
305 |
msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid "Extra field 3"
|
309 |
msgstr "Extra veld 3"
|
310 |
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
312 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
313 |
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
|
314 |
|
315 |
-
#: includes/class-wcpdf-settings.php:
|
316 |
msgid "Image resolution"
|
317 |
msgstr "Afbeeldings resolutie"
|
318 |
|
319 |
-
#: includes/class-wcpdf-settings.php:
|
320 |
msgid ""
|
321 |
"These are used for the (optional) footer columns in the <em>Modern "
|
322 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -330,31 +328,44 @@ msgstr ""
|
|
330 |
msgid "Invoice Number"
|
331 |
msgstr "Factuurnummer"
|
332 |
|
333 |
-
#: includes/class-wcpdf-writepanels.php:
|
334 |
-
msgid "Create PDF"
|
335 |
-
msgstr "Maak PDF"
|
336 |
-
|
337 |
-
#: includes/class-wcpdf-writepanels.php:143
|
338 |
msgid "Download invoice (PDF)"
|
339 |
msgstr "Download factuur (PDF)"
|
340 |
|
341 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
342 |
msgid "PDF invoice"
|
343 |
msgstr "PDF factuur"
|
344 |
|
345 |
-
#: includes/class-wcpdf-writepanels.php:
|
346 |
msgid "PDF Packing Slip"
|
347 |
msgstr "PDF Pakbon"
|
348 |
|
349 |
-
#: includes/class-wcpdf-writepanels.php:
|
350 |
-
#: includes/class-wcpdf-writepanels.php:
|
351 |
msgid "PDF Packing Slips"
|
352 |
msgstr "PDF Pakbonnen"
|
353 |
|
354 |
-
#: includes/class-wcpdf-writepanels.php:
|
355 |
msgid "PDF Invoice Number (unformatted!)"
|
356 |
msgstr "PDF Factuurnummer (zonder formatting!)"
|
357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
359 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
360 |
msgid "Invoice"
|
@@ -366,10 +377,6 @@ msgstr "Factuur"
|
|
366 |
msgid "Packing Slip"
|
367 |
msgstr "Pakbon"
|
368 |
|
369 |
-
#: templates/pdf/Simple/invoice.php:37
|
370 |
-
msgid "Invoice Date:"
|
371 |
-
msgstr "Factuurdatum:"
|
372 |
-
|
373 |
#: templates/pdf/Simple/invoice.php:40
|
374 |
#: templates/pdf/Simple/packing-slip.php:30
|
375 |
msgid "Order Date:"
|
@@ -407,16 +414,20 @@ msgid "Description"
|
|
407 |
msgstr "Omschrijving"
|
408 |
|
409 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
410 |
#: templates/pdf/Simple/packing-slip.php:54
|
411 |
msgid "SKU:"
|
412 |
msgstr "SKU:"
|
413 |
|
414 |
-
#: templates/pdf/Simple/invoice.php:
|
415 |
#: templates/pdf/Simple/packing-slip.php:55
|
416 |
msgid "Weight:"
|
417 |
msgstr "Gewicht:"
|
418 |
|
419 |
-
#: templates/pdf/Simple/invoice.php:
|
420 |
#: templates/pdf/Simple/packing-slip.php:69
|
421 |
msgid "Customer Notes"
|
422 |
msgstr "Opmerking klant:"
|
@@ -435,35 +446,35 @@ msgstr ""
|
|
435 |
msgid "N/A"
|
436 |
msgstr "N/A"
|
437 |
|
438 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
439 |
msgid "Payment method"
|
440 |
msgstr "Betaalmethode"
|
441 |
|
442 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
443 |
msgid "Shipping method"
|
444 |
msgstr "Verzendmethode"
|
445 |
|
446 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
447 |
msgid "Subtotal"
|
448 |
msgstr "Subtotaal"
|
449 |
|
450 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
451 |
msgid "Shipping"
|
452 |
msgstr "Verzendkosten"
|
453 |
|
454 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
455 |
msgid "Discount"
|
456 |
msgstr "Korting"
|
457 |
|
458 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
459 |
msgid "VAT"
|
460 |
msgstr "BTW"
|
461 |
|
462 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
463 |
msgid "Total ex. VAT"
|
464 |
msgstr "Totaal excl. BTW"
|
465 |
|
466 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
467 |
msgid "Total"
|
468 |
msgstr "Totaal"
|
469 |
|
@@ -480,9 +491,6 @@ msgstr "Totaal"
|
|
480 |
#~ msgstr ""
|
481 |
#~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
|
482 |
|
483 |
-
#~ msgid "SKU"
|
484 |
-
#~ msgstr "Artikelnummer"
|
485 |
-
|
486 |
#~ msgid "Order number"
|
487 |
#~ msgstr "Factuurnummer"
|
488 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-18 15:07+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-18 15:07+0100\n"
|
7 |
"Last-Translator: Ewout Fernhout <chocolade@extrapuur.nl>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Generator: Poedit 1.6.9\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: includes/class-wcpdf-export.php:168 includes/class-wcpdf-export.php:173
|
23 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
24 |
+
#: includes/class-wcpdf-export.php:202
|
25 |
msgid "You do not have sufficient permissions to access this page."
|
26 |
msgstr "Je hebt onvoldoende rechten voor deze pagina."
|
27 |
|
28 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "factuur"
|
32 |
msgstr[1] "facturen"
|
33 |
|
34 |
+
#: includes/class-wcpdf-export.php:225
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "pakbon"
|
38 |
msgstr[1] "pakbonnen"
|
39 |
|
40 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
41 |
+
#: includes/class-wcpdf-writepanels.php:176
|
42 |
+
#: includes/class-wcpdf-writepanels.php:177
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr "PDF facturen"
|
45 |
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "PDF Template instellingen"
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:271
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Kies een template"
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:279
|
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 |
+
"Wil je je eigen template gebruiken? Kopieer alle bestanden van <code>%s</"
|
154 |
+
"code> naar <code>%s</code> en pas ze aan naar je wensen."
|
|
|
|
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:285
|
157 |
msgid "Paper size"
|
158 |
msgstr "Papier formaat"
|
159 |
|
160 |
+
#: includes/class-wcpdf-settings.php:293
|
161 |
msgid "A4"
|
162 |
msgstr "A4"
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:294
|
165 |
msgid "Letter"
|
166 |
msgstr "Letter (US)"
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:301
|
169 |
msgid "Shop header/logo"
|
170 |
msgstr "Shop header/logo"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:308
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
msgstr "Selecteer of upload je factuur header/logo"
|
175 |
|
176 |
+
#: includes/class-wcpdf-settings.php:309
|
177 |
msgid "Set image"
|
178 |
msgstr "Stel afbeelding in"
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:310
|
181 |
msgid "Remove image"
|
182 |
msgstr "Verwijder afbeelding"
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:317
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Shop Naam"
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:330
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Shop Adres"
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:362
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
194 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:377
|
197 |
msgid "Number to display on invoice"
|
198 |
msgstr "Nummer op de factuur"
|
199 |
|
200 |
+
#: includes/class-wcpdf-settings.php:385
|
201 |
msgid "WooCommerce order number"
|
202 |
msgstr "WooCommerce ordernummer"
|
203 |
|
204 |
+
#: includes/class-wcpdf-settings.php:386
|
205 |
msgid "Built-in sequential invoice number"
|
206 |
msgstr "Ingebouwde sequentiële factuurnummers"
|
207 |
|
208 |
+
#: includes/class-wcpdf-settings.php:388
|
209 |
msgid ""
|
210 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
211 |
"WooCommerce order number"
|
213 |
"Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
214 |
"dan WooCommerce ordernummer"
|
215 |
|
216 |
+
#: includes/class-wcpdf-settings.php:394
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
msgstr "Volgende factuurnummer (zonder voorvoegsel/achtervoegsel etc.)"
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:402
|
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 |
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
233 |
"gevolg hebben!"
|
234 |
|
235 |
+
#: includes/class-wcpdf-settings.php:408
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Factuurnummer format"
|
238 |
|
239 |
+
#: includes/class-wcpdf-settings.php:417
|
240 |
msgid "Prefix"
|
241 |
msgstr "Voorvoegsel"
|
242 |
|
243 |
+
#: includes/class-wcpdf-settings.php:419
|
244 |
msgid ""
|
245 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
246 |
"respectively"
|
248 |
"gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
|
249 |
"te geven"
|
250 |
|
251 |
+
#: includes/class-wcpdf-settings.php:422
|
252 |
msgid "Suffix"
|
253 |
msgstr "Achtervoegsel"
|
254 |
|
255 |
+
#: includes/class-wcpdf-settings.php:427
|
256 |
msgid "Padding"
|
257 |
msgstr "Vulling"
|
258 |
|
259 |
+
#: includes/class-wcpdf-settings.php:429
|
260 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
261 |
msgstr ""
|
262 |
"voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
|
263 |
"geven"
|
264 |
|
265 |
+
#: includes/class-wcpdf-settings.php:432
|
266 |
msgid ""
|
267 |
"note: if you have already created a custom invoice number format with a "
|
268 |
"filter, the above settings will be ignored"
|
270 |
"let op: als je al een format voor een factuurnummer hebt gemaakt met een "
|
271 |
"filter, worden de bovenstaande instellingen genegeerd"
|
272 |
|
273 |
+
#: includes/class-wcpdf-settings.php:440
|
274 |
msgid "Date to display on invoice"
|
275 |
msgstr "Datum op de factuur"
|
276 |
|
277 |
+
#: includes/class-wcpdf-settings.php:448
|
278 |
msgid "Order date"
|
279 |
msgstr "Orderdatum"
|
280 |
|
281 |
+
#: includes/class-wcpdf-settings.php:449
|
282 |
msgid "Invoice date"
|
283 |
msgstr "Factuurdatum"
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:457
|
286 |
msgid "Extra template fields"
|
287 |
msgstr "Extra templatevelden"
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:464
|
290 |
msgid "Extra field 1"
|
291 |
msgstr "Extra veld 1"
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:473
|
294 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
295 |
msgstr "Dit is voettekst kolom 1 in het <i>Modern (Premium)</i> template"
|
296 |
|
297 |
+
#: includes/class-wcpdf-settings.php:479
|
298 |
msgid "Extra field 2"
|
299 |
msgstr "Extra veld 2"
|
300 |
|
301 |
+
#: includes/class-wcpdf-settings.php:488
|
302 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
303 |
msgstr "Dit is voettekst kolom 2 in het <i>Modern (Premium)</i> template"
|
304 |
|
305 |
+
#: includes/class-wcpdf-settings.php:494
|
306 |
msgid "Extra field 3"
|
307 |
msgstr "Extra veld 3"
|
308 |
|
309 |
+
#: includes/class-wcpdf-settings.php:503
|
310 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
311 |
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
|
312 |
|
313 |
+
#: includes/class-wcpdf-settings.php:760
|
314 |
msgid "Image resolution"
|
315 |
msgstr "Afbeeldings resolutie"
|
316 |
|
317 |
+
#: includes/class-wcpdf-settings.php:871
|
318 |
msgid ""
|
319 |
"These are used for the (optional) footer columns in the <em>Modern "
|
320 |
"(Premium)</em> template, but can also be used for other elements in your "
|
328 |
msgid "Invoice Number"
|
329 |
msgstr "Factuurnummer"
|
330 |
|
331 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
332 |
msgid "Download invoice (PDF)"
|
333 |
msgstr "Download factuur (PDF)"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:150
|
336 |
+
msgid "Create PDF"
|
337 |
+
msgstr "Maak PDF"
|
338 |
+
|
339 |
+
#: includes/class-wcpdf-writepanels.php:160
|
340 |
msgid "PDF invoice"
|
341 |
msgstr "PDF factuur"
|
342 |
|
343 |
+
#: includes/class-wcpdf-writepanels.php:161
|
344 |
msgid "PDF Packing Slip"
|
345 |
msgstr "PDF Pakbon"
|
346 |
|
347 |
+
#: includes/class-wcpdf-writepanels.php:178
|
348 |
+
#: includes/class-wcpdf-writepanels.php:179
|
349 |
msgid "PDF Packing Slips"
|
350 |
msgstr "PDF Pakbonnen"
|
351 |
|
352 |
+
#: includes/class-wcpdf-writepanels.php:192
|
353 |
msgid "PDF Invoice Number (unformatted!)"
|
354 |
msgstr "PDF Factuurnummer (zonder formatting!)"
|
355 |
|
356 |
+
#: includes/class-wcpdf-writepanels.php:195
|
357 |
+
#: templates/pdf/Simple/invoice.php:37
|
358 |
+
msgid "Invoice Date:"
|
359 |
+
msgstr "Factuurdatum:"
|
360 |
+
|
361 |
+
#: includes/class-wcpdf-writepanels.php:196
|
362 |
+
msgid "h"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/class-wcpdf-writepanels.php:196
|
366 |
+
msgid "m"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
370 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
371 |
msgid "Invoice"
|
377 |
msgid "Packing Slip"
|
378 |
msgstr "Pakbon"
|
379 |
|
|
|
|
|
|
|
|
|
380 |
#: templates/pdf/Simple/invoice.php:40
|
381 |
#: templates/pdf/Simple/packing-slip.php:30
|
382 |
msgid "Order Date:"
|
414 |
msgstr "Omschrijving"
|
415 |
|
416 |
#: templates/pdf/Simple/invoice.php:80
|
417 |
+
msgid "SKU"
|
418 |
+
msgstr "Artikelnummer"
|
419 |
+
|
420 |
+
#: templates/pdf/Simple/invoice.php:81
|
421 |
#: templates/pdf/Simple/packing-slip.php:54
|
422 |
msgid "SKU:"
|
423 |
msgstr "SKU:"
|
424 |
|
425 |
+
#: templates/pdf/Simple/invoice.php:82
|
426 |
#: templates/pdf/Simple/packing-slip.php:55
|
427 |
msgid "Weight:"
|
428 |
msgstr "Gewicht:"
|
429 |
|
430 |
+
#: templates/pdf/Simple/invoice.php:114
|
431 |
#: templates/pdf/Simple/packing-slip.php:69
|
432 |
msgid "Customer Notes"
|
433 |
msgstr "Opmerking klant:"
|
446 |
msgid "N/A"
|
447 |
msgstr "N/A"
|
448 |
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
450 |
msgid "Payment method"
|
451 |
msgstr "Betaalmethode"
|
452 |
|
453 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
454 |
msgid "Shipping method"
|
455 |
msgstr "Verzendmethode"
|
456 |
|
457 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
458 |
msgid "Subtotal"
|
459 |
msgstr "Subtotaal"
|
460 |
|
461 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
462 |
msgid "Shipping"
|
463 |
msgstr "Verzendkosten"
|
464 |
|
465 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
466 |
msgid "Discount"
|
467 |
msgstr "Korting"
|
468 |
|
469 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
470 |
msgid "VAT"
|
471 |
msgstr "BTW"
|
472 |
|
473 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
474 |
msgid "Total ex. VAT"
|
475 |
msgstr "Totaal excl. BTW"
|
476 |
|
477 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
478 |
msgid "Total"
|
479 |
msgstr "Totaal"
|
480 |
|
491 |
#~ msgstr ""
|
492 |
#~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
|
493 |
|
|
|
|
|
|
|
494 |
#~ msgid "Order number"
|
495 |
#~ msgstr "Factuurnummer"
|
496 |
|
languages/wpo_wcpdf-pl_PL.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-pl_PL.po
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Michał Dybczak <michal.dybczak@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: pl_PL\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.6.
|
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:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Nie masz wystarczającyh praw dostępu do tej strony."
|
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] "Zamówienie"
|
30 |
msgstr[1] "Zamówienia"
|
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] "Dowód wysyłki"
|
37 |
msgstr[1] "Dowody wysyłki"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "Zamówienie do PDF"
|
44 |
|
@@ -140,74 +140,72 @@ msgstr "Włącz numer zamówień w kolumnie zamówień"
|
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "Ustawienia szablonu PDF"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Wybierz szablon"
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
148 |
msgid ""
|
149 |
-
"Want to use your own template? Copy all the files from <code>
|
150 |
-
"
|
151 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
152 |
msgstr ""
|
153 |
-
"Chcesz użyć własnego szablonu? Skopiuj wszystkie pliki z <code>
|
154 |
-
"
|
155 |
-
"<code>twój_szablon_strony/woocommerce/pdf/twój_szablon_PDF/</code> i dopasuj "
|
156 |
-
"je."
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Paper size"
|
160 |
msgstr "Rozmiar wydruku"
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "A4"
|
164 |
msgstr "A4"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Letter"
|
168 |
msgstr "List"
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Shop header/logo"
|
172 |
msgstr "Logo/nagłówek"
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
msgstr "Wybierz albo załaduj logo/nagłówek zamówienia"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Set image"
|
180 |
msgstr "Wybierz obraz"
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Remove image"
|
184 |
msgstr "Usuń logo"
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Name"
|
188 |
msgstr "Nazwa sklepu"
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Shop Address"
|
192 |
msgstr "Adres sklepu"
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Footer: terms & conditions, policies, etc."
|
196 |
msgstr "Stopka: ogólne postanowienia, itp."
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
199 |
msgid "Number to display on invoice"
|
200 |
msgstr "Numer wyświetlany na zamówieniu"
|
201 |
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "WooCommerce order number"
|
204 |
msgstr "Numer zamówienia WooCommerce"
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Built-in sequential invoice number"
|
208 |
msgstr "Wbudowany mechanizm nadawania numerów zamówieniom"
|
209 |
|
210 |
-
#: includes/class-wcpdf-settings.php:
|
211 |
msgid ""
|
212 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
213 |
"WooCommerce order number"
|
@@ -215,11 +213,11 @@ msgstr ""
|
|
215 |
"Jeśli używasz WooCommerce Sequential Order Numbers plugin, wybierz numer "
|
216 |
"zamówienia WooCommerce"
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
220 |
msgstr "Następny numer zamówienia (bez prefiksu/sufiksu itd.)"
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid ""
|
224 |
"This is the number that will be used on the next invoice that is created. By "
|
225 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -233,7 +231,7 @@ msgstr ""
|
|
233 |
"i usawisz numer niższy niż najwyższy numer zamówienia (PDF), to może "
|
234 |
"zdublować numery zamówień!"
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "Invoice number format"
|
238 |
msgstr "Format zamówienia"
|
239 |
|
@@ -272,11 +270,11 @@ msgstr "Format zamówienia"
|
|
272 |
# r) w przypadku gdy ma to zastosowanie – funkcjonalność treści cyfrowych, w tym również mające zastosowanie techniczne środki ich ochrony;
|
273 |
# s) w przypadku gdy ma to zastosowanie – każda mająca znaczenie interoperacyjność treści cyfrowych ze sprzętem komputerowym i oprogramowaniem, o którym przedsiębiorca wie lub, racjonalnie oczekując, powinien był wiedzieć;
|
274 |
# t) w przypadku gdy ma to zastosowanie – możliwość skorzystania z pozasądowych mechanizmów rozpatrywania reklamacji i dochodzenia roszczeń, którym podlega przedsiębiorca, oraz możliwości dostępu do tych procedur.
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
msgid "Prefix"
|
277 |
msgstr "Prefiks"
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
msgid ""
|
281 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
282 |
"respectively"
|
@@ -284,19 +282,19 @@ msgstr ""
|
|
284 |
"żeby użyć roku i/albo miesiąca zamówienia, użyj odpowiednio [order_year] "
|
285 |
"albo [order_month]"
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid "Suffix"
|
289 |
msgstr "Sufiks"
|
290 |
|
291 |
-
#: includes/class-wcpdf-settings.php:
|
292 |
msgid "Padding"
|
293 |
msgstr "Padding"
|
294 |
|
295 |
-
#: includes/class-wcpdf-settings.php:
|
296 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
297 |
msgstr "wpisz tutaj liczbę cyfr - wpisz \"6\" żeby wyświetlić 42 jako 000042"
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid ""
|
301 |
"note: if you have already created a custom invoice number format with a "
|
302 |
"filter, the above settings will be ignored"
|
@@ -304,51 +302,51 @@ msgstr ""
|
|
304 |
"Uwaga: Jeśli już stworzyłeś własny format zamówienia z filtrem, powyższe "
|
305 |
"ustawienia będą zignorowane."
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid "Date to display on invoice"
|
309 |
msgstr "Data wyświetlana na zamówieniu"
|
310 |
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
312 |
msgid "Order date"
|
313 |
msgstr "Data zamówienia"
|
314 |
|
315 |
-
#: includes/class-wcpdf-settings.php:
|
316 |
msgid "Invoice date"
|
317 |
msgstr "Data rachunku"
|
318 |
|
319 |
-
#: includes/class-wcpdf-settings.php:
|
320 |
msgid "Extra template fields"
|
321 |
msgstr "Dodatkowe pola szablonu"
|
322 |
|
323 |
-
#: includes/class-wcpdf-settings.php:
|
324 |
msgid "Extra field 1"
|
325 |
msgstr "Dodatkowe pole 1"
|
326 |
|
327 |
-
#: includes/class-wcpdf-settings.php:
|
328 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
329 |
msgstr "To jest kolumna 1 w szablonie <i>Modern (Premium)</i>"
|
330 |
|
331 |
-
#: includes/class-wcpdf-settings.php:
|
332 |
msgid "Extra field 2"
|
333 |
msgstr "Dodatkowe pole 2"
|
334 |
|
335 |
-
#: includes/class-wcpdf-settings.php:
|
336 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
337 |
msgstr "To jest kolumna 2 w szablonie <i>Modern (Premium)</i>"
|
338 |
|
339 |
-
#: includes/class-wcpdf-settings.php:
|
340 |
msgid "Extra field 3"
|
341 |
msgstr "Dodatkowe pole 3"
|
342 |
|
343 |
-
#: includes/class-wcpdf-settings.php:
|
344 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
345 |
msgstr "To jest kolumna 3 w szablonie <i>Modern (Premium)</i>"
|
346 |
|
347 |
-
#: includes/class-wcpdf-settings.php:
|
348 |
msgid "Image resolution"
|
349 |
msgstr "Rozdzielczość obrazka"
|
350 |
|
351 |
-
#: includes/class-wcpdf-settings.php:
|
352 |
msgid ""
|
353 |
"These are used for the (optional) footer columns in the <em>Modern "
|
354 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -362,31 +360,44 @@ msgstr ""
|
|
362 |
msgid "Invoice Number"
|
363 |
msgstr "Numer zamówienia"
|
364 |
|
365 |
-
#: includes/class-wcpdf-writepanels.php:
|
366 |
-
msgid "Create PDF"
|
367 |
-
msgstr "Stwórz PDF"
|
368 |
-
|
369 |
-
#: includes/class-wcpdf-writepanels.php:143
|
370 |
msgid "Download invoice (PDF)"
|
371 |
msgstr "Podsumowanie zamówienia (PDF)"
|
372 |
|
373 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
374 |
msgid "PDF invoice"
|
375 |
msgstr "PDF Zamówienie"
|
376 |
|
377 |
-
#: includes/class-wcpdf-writepanels.php:
|
378 |
msgid "PDF Packing Slip"
|
379 |
msgstr "PDF Zawartość paczki"
|
380 |
|
381 |
-
#: includes/class-wcpdf-writepanels.php:
|
382 |
-
#: includes/class-wcpdf-writepanels.php:
|
383 |
msgid "PDF Packing Slips"
|
384 |
msgstr "PDF Zawartość paczek"
|
385 |
|
386 |
-
#: includes/class-wcpdf-writepanels.php:
|
387 |
msgid "PDF Invoice Number (unformatted!)"
|
388 |
msgstr "Numer zamówienia PDF (niesformatowany)"
|
389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
391 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
392 |
msgid "Invoice"
|
@@ -398,10 +409,6 @@ msgstr "Podsumowanie zamówienia:"
|
|
398 |
msgid "Packing Slip"
|
399 |
msgstr "Zawartość paczki"
|
400 |
|
401 |
-
#: templates/pdf/Simple/invoice.php:37
|
402 |
-
msgid "Invoice Date:"
|
403 |
-
msgstr "Data rachunku:"
|
404 |
-
|
405 |
#: templates/pdf/Simple/invoice.php:40
|
406 |
#: templates/pdf/Simple/packing-slip.php:30
|
407 |
msgid "Order Date:"
|
@@ -439,16 +446,20 @@ msgid "Description"
|
|
439 |
msgstr "Opis"
|
440 |
|
441 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
442 |
#: templates/pdf/Simple/packing-slip.php:54
|
443 |
msgid "SKU:"
|
444 |
msgstr "Kod:"
|
445 |
|
446 |
-
#: templates/pdf/Simple/invoice.php:
|
447 |
#: templates/pdf/Simple/packing-slip.php:55
|
448 |
msgid "Weight:"
|
449 |
msgstr "Waga:"
|
450 |
|
451 |
-
#: templates/pdf/Simple/invoice.php:
|
452 |
#: templates/pdf/Simple/packing-slip.php:69
|
453 |
msgid "Customer Notes"
|
454 |
msgstr "Notatki dla klienta"
|
@@ -465,35 +476,35 @@ msgstr "WooCommerce PDF Invoices & Packing Slips potrzebuje %sWooCommerce%s !"
|
|
465 |
msgid "N/A"
|
466 |
msgstr "nie dotyczy"
|
467 |
|
468 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
469 |
msgid "Payment method"
|
470 |
msgstr "Metoda płatności"
|
471 |
|
472 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
473 |
msgid "Shipping method"
|
474 |
msgstr "Rodzaj wysyłki"
|
475 |
|
476 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
477 |
msgid "Subtotal"
|
478 |
msgstr "Suma produktów"
|
479 |
|
480 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
481 |
msgid "Shipping"
|
482 |
msgstr "Wysyłka"
|
483 |
|
484 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
485 |
msgid "Discount"
|
486 |
msgstr "Rabat"
|
487 |
|
488 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
489 |
msgid "VAT"
|
490 |
msgstr "VAT"
|
491 |
|
492 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
493 |
msgid "Total ex. VAT"
|
494 |
msgstr "Suma bez Vat (netto)"
|
495 |
|
496 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
497 |
msgid "Total"
|
498 |
msgstr "Suma"
|
499 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:08+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:08+0100\n"
|
6 |
"Last-Translator: Michał Dybczak <michal.dybczak@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: pl_PL\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Nie masz wystarczającyh praw dostępu do tej strony."
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "Zamówienie"
|
30 |
msgstr[1] "Zamówienia"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:225
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Dowód wysyłki"
|
37 |
msgstr[1] "Dowody wysyłki"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "Zamówienie do PDF"
|
44 |
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "Ustawienia szablonu PDF"
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:271
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Wybierz szablon"
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:279
|
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 |
+
"Chcesz użyć własnego szablonu? Skopiuj wszystkie pliki z <code>%s</code> do "
|
154 |
+
"<code>%s</code> i dopasuj je."
|
|
|
|
|
155 |
|
156 |
+
#: includes/class-wcpdf-settings.php:285
|
157 |
msgid "Paper size"
|
158 |
msgstr "Rozmiar wydruku"
|
159 |
|
160 |
+
#: includes/class-wcpdf-settings.php:293
|
161 |
msgid "A4"
|
162 |
msgstr "A4"
|
163 |
|
164 |
+
#: includes/class-wcpdf-settings.php:294
|
165 |
msgid "Letter"
|
166 |
msgstr "List"
|
167 |
|
168 |
+
#: includes/class-wcpdf-settings.php:301
|
169 |
msgid "Shop header/logo"
|
170 |
msgstr "Logo/nagłówek"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:308
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
msgstr "Wybierz albo załaduj logo/nagłówek zamówienia"
|
175 |
|
176 |
+
#: includes/class-wcpdf-settings.php:309
|
177 |
msgid "Set image"
|
178 |
msgstr "Wybierz obraz"
|
179 |
|
180 |
+
#: includes/class-wcpdf-settings.php:310
|
181 |
msgid "Remove image"
|
182 |
msgstr "Usuń logo"
|
183 |
|
184 |
+
#: includes/class-wcpdf-settings.php:317
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Nazwa sklepu"
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:330
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Adres sklepu"
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:362
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
194 |
msgstr "Stopka: ogólne postanowienia, itp."
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:377
|
197 |
msgid "Number to display on invoice"
|
198 |
msgstr "Numer wyświetlany na zamówieniu"
|
199 |
|
200 |
+
#: includes/class-wcpdf-settings.php:385
|
201 |
msgid "WooCommerce order number"
|
202 |
msgstr "Numer zamówienia WooCommerce"
|
203 |
|
204 |
+
#: includes/class-wcpdf-settings.php:386
|
205 |
msgid "Built-in sequential invoice number"
|
206 |
msgstr "Wbudowany mechanizm nadawania numerów zamówieniom"
|
207 |
|
208 |
+
#: includes/class-wcpdf-settings.php:388
|
209 |
msgid ""
|
210 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
211 |
"WooCommerce order number"
|
213 |
"Jeśli używasz WooCommerce Sequential Order Numbers plugin, wybierz numer "
|
214 |
"zamówienia WooCommerce"
|
215 |
|
216 |
+
#: includes/class-wcpdf-settings.php:394
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
msgstr "Następny numer zamówienia (bez prefiksu/sufiksu itd.)"
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:402
|
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 "
|
231 |
"i usawisz numer niższy niż najwyższy numer zamówienia (PDF), to może "
|
232 |
"zdublować numery zamówień!"
|
233 |
|
234 |
+
#: includes/class-wcpdf-settings.php:408
|
235 |
msgid "Invoice number format"
|
236 |
msgstr "Format zamówienia"
|
237 |
|
270 |
# r) w przypadku gdy ma to zastosowanie – funkcjonalność treści cyfrowych, w tym również mające zastosowanie techniczne środki ich ochrony;
|
271 |
# s) w przypadku gdy ma to zastosowanie – każda mająca znaczenie interoperacyjność treści cyfrowych ze sprzętem komputerowym i oprogramowaniem, o którym przedsiębiorca wie lub, racjonalnie oczekując, powinien był wiedzieć;
|
272 |
# t) w przypadku gdy ma to zastosowanie – możliwość skorzystania z pozasądowych mechanizmów rozpatrywania reklamacji i dochodzenia roszczeń, którym podlega przedsiębiorca, oraz możliwości dostępu do tych procedur.
|
273 |
+
#: includes/class-wcpdf-settings.php:417
|
274 |
msgid "Prefix"
|
275 |
msgstr "Prefiks"
|
276 |
|
277 |
+
#: includes/class-wcpdf-settings.php:419
|
278 |
msgid ""
|
279 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
280 |
"respectively"
|
282 |
"żeby użyć roku i/albo miesiąca zamówienia, użyj odpowiednio [order_year] "
|
283 |
"albo [order_month]"
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:422
|
286 |
msgid "Suffix"
|
287 |
msgstr "Sufiks"
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:427
|
290 |
msgid "Padding"
|
291 |
msgstr "Padding"
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:429
|
294 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
295 |
msgstr "wpisz tutaj liczbę cyfr - wpisz \"6\" żeby wyświetlić 42 jako 000042"
|
296 |
|
297 |
+
#: includes/class-wcpdf-settings.php:432
|
298 |
msgid ""
|
299 |
"note: if you have already created a custom invoice number format with a "
|
300 |
"filter, the above settings will be ignored"
|
302 |
"Uwaga: Jeśli już stworzyłeś własny format zamówienia z filtrem, powyższe "
|
303 |
"ustawienia będą zignorowane."
|
304 |
|
305 |
+
#: includes/class-wcpdf-settings.php:440
|
306 |
msgid "Date to display on invoice"
|
307 |
msgstr "Data wyświetlana na zamówieniu"
|
308 |
|
309 |
+
#: includes/class-wcpdf-settings.php:448
|
310 |
msgid "Order date"
|
311 |
msgstr "Data zamówienia"
|
312 |
|
313 |
+
#: includes/class-wcpdf-settings.php:449
|
314 |
msgid "Invoice date"
|
315 |
msgstr "Data rachunku"
|
316 |
|
317 |
+
#: includes/class-wcpdf-settings.php:457
|
318 |
msgid "Extra template fields"
|
319 |
msgstr "Dodatkowe pola szablonu"
|
320 |
|
321 |
+
#: includes/class-wcpdf-settings.php:464
|
322 |
msgid "Extra field 1"
|
323 |
msgstr "Dodatkowe pole 1"
|
324 |
|
325 |
+
#: includes/class-wcpdf-settings.php:473
|
326 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
327 |
msgstr "To jest kolumna 1 w szablonie <i>Modern (Premium)</i>"
|
328 |
|
329 |
+
#: includes/class-wcpdf-settings.php:479
|
330 |
msgid "Extra field 2"
|
331 |
msgstr "Dodatkowe pole 2"
|
332 |
|
333 |
+
#: includes/class-wcpdf-settings.php:488
|
334 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
335 |
msgstr "To jest kolumna 2 w szablonie <i>Modern (Premium)</i>"
|
336 |
|
337 |
+
#: includes/class-wcpdf-settings.php:494
|
338 |
msgid "Extra field 3"
|
339 |
msgstr "Dodatkowe pole 3"
|
340 |
|
341 |
+
#: includes/class-wcpdf-settings.php:503
|
342 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
343 |
msgstr "To jest kolumna 3 w szablonie <i>Modern (Premium)</i>"
|
344 |
|
345 |
+
#: includes/class-wcpdf-settings.php:760
|
346 |
msgid "Image resolution"
|
347 |
msgstr "Rozdzielczość obrazka"
|
348 |
|
349 |
+
#: includes/class-wcpdf-settings.php:871
|
350 |
msgid ""
|
351 |
"These are used for the (optional) footer columns in the <em>Modern "
|
352 |
"(Premium)</em> template, but can also be used for other elements in your "
|
360 |
msgid "Invoice Number"
|
361 |
msgstr "Numer zamówienia"
|
362 |
|
363 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
364 |
msgid "Download invoice (PDF)"
|
365 |
msgstr "Podsumowanie zamówienia (PDF)"
|
366 |
|
367 |
+
#: includes/class-wcpdf-writepanels.php:150
|
368 |
+
msgid "Create PDF"
|
369 |
+
msgstr "Stwórz PDF"
|
370 |
+
|
371 |
+
#: includes/class-wcpdf-writepanels.php:160
|
372 |
msgid "PDF invoice"
|
373 |
msgstr "PDF Zamówienie"
|
374 |
|
375 |
+
#: includes/class-wcpdf-writepanels.php:161
|
376 |
msgid "PDF Packing Slip"
|
377 |
msgstr "PDF Zawartość paczki"
|
378 |
|
379 |
+
#: includes/class-wcpdf-writepanels.php:178
|
380 |
+
#: includes/class-wcpdf-writepanels.php:179
|
381 |
msgid "PDF Packing Slips"
|
382 |
msgstr "PDF Zawartość paczek"
|
383 |
|
384 |
+
#: includes/class-wcpdf-writepanels.php:192
|
385 |
msgid "PDF Invoice Number (unformatted!)"
|
386 |
msgstr "Numer zamówienia PDF (niesformatowany)"
|
387 |
|
388 |
+
#: includes/class-wcpdf-writepanels.php:195
|
389 |
+
#: templates/pdf/Simple/invoice.php:37
|
390 |
+
msgid "Invoice Date:"
|
391 |
+
msgstr "Data rachunku:"
|
392 |
+
|
393 |
+
#: includes/class-wcpdf-writepanels.php:196
|
394 |
+
msgid "h"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/class-wcpdf-writepanels.php:196
|
398 |
+
msgid "m"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
402 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
403 |
msgid "Invoice"
|
409 |
msgid "Packing Slip"
|
410 |
msgstr "Zawartość paczki"
|
411 |
|
|
|
|
|
|
|
|
|
412 |
#: templates/pdf/Simple/invoice.php:40
|
413 |
#: templates/pdf/Simple/packing-slip.php:30
|
414 |
msgid "Order Date:"
|
446 |
msgstr "Opis"
|
447 |
|
448 |
#: templates/pdf/Simple/invoice.php:80
|
449 |
+
msgid "SKU"
|
450 |
+
msgstr "Kod"
|
451 |
+
|
452 |
+
#: templates/pdf/Simple/invoice.php:81
|
453 |
#: templates/pdf/Simple/packing-slip.php:54
|
454 |
msgid "SKU:"
|
455 |
msgstr "Kod:"
|
456 |
|
457 |
+
#: templates/pdf/Simple/invoice.php:82
|
458 |
#: templates/pdf/Simple/packing-slip.php:55
|
459 |
msgid "Weight:"
|
460 |
msgstr "Waga:"
|
461 |
|
462 |
+
#: templates/pdf/Simple/invoice.php:114
|
463 |
#: templates/pdf/Simple/packing-slip.php:69
|
464 |
msgid "Customer Notes"
|
465 |
msgstr "Notatki dla klienta"
|
476 |
msgid "N/A"
|
477 |
msgstr "nie dotyczy"
|
478 |
|
479 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
480 |
msgid "Payment method"
|
481 |
msgstr "Metoda płatności"
|
482 |
|
483 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
484 |
msgid "Shipping method"
|
485 |
msgstr "Rodzaj wysyłki"
|
486 |
|
487 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
488 |
msgid "Subtotal"
|
489 |
msgstr "Suma produktów"
|
490 |
|
491 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
492 |
msgid "Shipping"
|
493 |
msgstr "Wysyłka"
|
494 |
|
495 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
496 |
msgid "Discount"
|
497 |
msgstr "Rabat"
|
498 |
|
499 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
500 |
msgid "VAT"
|
501 |
msgstr "VAT"
|
502 |
|
503 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
504 |
msgid "Total ex. VAT"
|
505 |
msgstr "Suma bez Vat (netto)"
|
506 |
|
507 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
508 |
msgid "Total"
|
509 |
msgstr "Suma"
|
510 |
|
languages/wpo_wcpdf-ro_RO.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-ro_RO.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.2.13\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: afternoon <zicevrei@afternoon.ro>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: ro_RO\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
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-Generator: Poedit 1.6.
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
@@ -20,21 +20,21 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ wpo_wcpdf
|
23 |
-
#: includes/class-wcpdf-export.php:
|
24 |
-
#: includes/class-wcpdf-export.php:
|
25 |
-
#: includes/class-wcpdf-export.php:
|
26 |
msgid "You do not have sufficient permissions to access this page."
|
27 |
msgstr "Nu aveți permisiunea pentru a accesa această pagină."
|
28 |
|
29 |
# @ wpo_wcpdf
|
30 |
-
#: includes/class-wcpdf-export.php:
|
31 |
msgid "invoice"
|
32 |
msgid_plural "invoices"
|
33 |
msgstr[0] ""
|
34 |
msgstr[1] ""
|
35 |
|
36 |
# @ wpo_wcpdf
|
37 |
-
#: includes/class-wcpdf-export.php:
|
38 |
msgid "packing-slip"
|
39 |
msgid_plural "packing-slips"
|
40 |
msgstr[0] ""
|
@@ -42,8 +42,8 @@ msgstr[1] ""
|
|
42 |
|
43 |
# @ wpo_wcpdf
|
44 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
45 |
-
#: includes/class-wcpdf-writepanels.php:
|
46 |
-
#: includes/class-wcpdf-writepanels.php:
|
47 |
msgid "PDF Invoices"
|
48 |
msgstr "Factură PDF"
|
49 |
|
@@ -162,90 +162,88 @@ msgid "PDF Template settings"
|
|
162 |
msgstr "Setări șablon PDF"
|
163 |
|
164 |
# @ wpo_wcpdf
|
165 |
-
#: includes/class-wcpdf-settings.php:
|
166 |
msgid "Choose a template"
|
167 |
msgstr "Alege un șablon"
|
168 |
|
169 |
# @ wpo_wcpdf
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
171 |
msgid ""
|
172 |
-
"Want to use your own template? Copy all the files from <code>
|
173 |
-
"
|
174 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
175 |
msgstr ""
|
176 |
-
"Vreți sa utilizați propriul șablon? Copiați toate fișierele din "
|
177 |
-
"
|
178 |
-
"în <code>yourtheme/woocommerce/pdf/yourtemplate/</ code> pentru a le "
|
179 |
-
"personaliza"
|
180 |
|
181 |
# @ wpo_wcpdf
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Paper size"
|
184 |
msgstr "Dimensiune hârtie"
|
185 |
|
186 |
# @ wpo_wcpdf
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "A4"
|
189 |
msgstr "A4"
|
190 |
|
191 |
# @ wpo_wcpdf
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
193 |
msgid "Letter"
|
194 |
msgstr "Letter"
|
195 |
|
196 |
# @ wpo_wcpdf
|
197 |
-
#: includes/class-wcpdf-settings.php:
|
198 |
msgid "Shop header/logo"
|
199 |
msgstr "Antet/Logo"
|
200 |
|
201 |
# @ wpo_wcpdf
|
202 |
-
#: includes/class-wcpdf-settings.php:
|
203 |
msgid "Select or upload your invoice header/logo"
|
204 |
msgstr "Selectați sau încărcați propriul dvs. antet sau logo"
|
205 |
|
206 |
# @ wpo_wcpdf
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid "Set image"
|
209 |
msgstr "Setare imagine"
|
210 |
|
211 |
# @ wpo_wcpdf
|
212 |
-
#: includes/class-wcpdf-settings.php:
|
213 |
msgid "Remove image"
|
214 |
msgstr "Șterge imagine"
|
215 |
|
216 |
# @ wpo_wcpdf
|
217 |
-
#: includes/class-wcpdf-settings.php:
|
218 |
msgid "Shop Name"
|
219 |
msgstr "Nume magazin"
|
220 |
|
221 |
# @ wpo_wcpdf
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid "Shop Address"
|
224 |
msgstr "Adresă magazin"
|
225 |
|
226 |
# @ wpo_wcpdf
|
227 |
-
#: includes/class-wcpdf-settings.php:
|
228 |
msgid "Footer: terms & conditions, policies, etc."
|
229 |
msgstr ""
|
230 |
"Notă de subsol: termeni și condiții, politică de confidențialitate, etc."
|
231 |
|
232 |
# @ wpo_wcpdf
|
233 |
-
#: includes/class-wcpdf-settings.php:
|
234 |
msgid "Number to display on invoice"
|
235 |
msgstr "Număr pentru a fi afișat pe factură"
|
236 |
|
237 |
# @ wpo_wcpdf
|
238 |
-
#: includes/class-wcpdf-settings.php:
|
239 |
msgid "WooCommerce order number"
|
240 |
msgstr "Numărul de comandă WooCommerce"
|
241 |
|
242 |
# @ wpo_wcpdf
|
243 |
-
#: includes/class-wcpdf-settings.php:
|
244 |
msgid "Built-in sequential invoice number"
|
245 |
msgstr "Număr de factură secvențial"
|
246 |
|
247 |
# @ wpo_wcpdf
|
248 |
-
#: includes/class-wcpdf-settings.php:
|
249 |
msgid ""
|
250 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
251 |
"WooCommerce order number"
|
@@ -254,12 +252,12 @@ msgstr ""
|
|
254 |
"Numărul de comandă WooCommerce"
|
255 |
|
256 |
# @ wpo_wcpdf
|
257 |
-
#: includes/class-wcpdf-settings.php:
|
258 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
259 |
msgstr "Următorul număr de factură (fără prefix/sufix etc.)"
|
260 |
|
261 |
# @ wpo_wcpdf
|
262 |
-
#: includes/class-wcpdf-settings.php:
|
263 |
msgid ""
|
264 |
"This is the number that will be used on the next invoice that is created. By "
|
265 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -274,102 +272,102 @@ msgstr ""
|
|
274 |
"factură (PDF), acest lucru ar putea crea un număr duplicat la factură!"
|
275 |
|
276 |
# @ wpo_wcpdf
|
277 |
-
#: includes/class-wcpdf-settings.php:
|
278 |
#, fuzzy
|
279 |
msgid "Invoice number format"
|
280 |
msgstr "Număr factură"
|
281 |
|
282 |
-
#: includes/class-wcpdf-settings.php:
|
283 |
msgid "Prefix"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-wcpdf-settings.php:
|
287 |
msgid ""
|
288 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
289 |
"respectively"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: includes/class-wcpdf-settings.php:
|
293 |
msgid "Suffix"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/class-wcpdf-settings.php:
|
297 |
msgid "Padding"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/class-wcpdf-settings.php:
|
301 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-wcpdf-settings.php:
|
305 |
msgid ""
|
306 |
"note: if you have already created a custom invoice number format with a "
|
307 |
"filter, the above settings will be ignored"
|
308 |
msgstr ""
|
309 |
|
310 |
# @ wpo_wcpdf
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
312 |
msgid "Date to display on invoice"
|
313 |
msgstr "Dată pentru a afișa pe factură"
|
314 |
|
315 |
# @ wpo_wcpdf
|
316 |
-
#: includes/class-wcpdf-settings.php:
|
317 |
msgid "Order date"
|
318 |
msgstr "Dată comandă"
|
319 |
|
320 |
# @ wpo_wcpdf
|
321 |
-
#: includes/class-wcpdf-settings.php:
|
322 |
msgid "Invoice date"
|
323 |
msgstr "Dată factură"
|
324 |
|
325 |
# @ wpo_wcpdf
|
326 |
-
#: includes/class-wcpdf-settings.php:
|
327 |
msgid "Extra template fields"
|
328 |
msgstr "Câmpuri suplimentare pentru șablon"
|
329 |
|
330 |
# @ wpo_wcpdf
|
331 |
-
#: includes/class-wcpdf-settings.php:
|
332 |
msgid "Extra field 1"
|
333 |
msgstr "Câmp suplimentar 1"
|
334 |
|
335 |
# @ wpo_wcpdf
|
336 |
-
#: includes/class-wcpdf-settings.php:
|
337 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
338 |
msgstr ""
|
339 |
"Aceasta este coloana 1 pentru nota de subsol, disponibilă în șablonul "
|
340 |
"<i>Modern (Premium)</ i>"
|
341 |
|
342 |
# @ wpo_wcpdf
|
343 |
-
#: includes/class-wcpdf-settings.php:
|
344 |
msgid "Extra field 2"
|
345 |
msgstr "Câmp suplimentar 2"
|
346 |
|
347 |
# @ wpo_wcpdf
|
348 |
-
#: includes/class-wcpdf-settings.php:
|
349 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
350 |
msgstr ""
|
351 |
"Aceasta este coloana 2 pentru nota de subsol, disponibilă în șablonul "
|
352 |
"<i>Modern (Premium)</ i>"
|
353 |
|
354 |
# @ wpo_wcpdf
|
355 |
-
#: includes/class-wcpdf-settings.php:
|
356 |
msgid "Extra field 3"
|
357 |
msgstr "Câmp suplimentar 3"
|
358 |
|
359 |
# @ wpo_wcpdf
|
360 |
-
#: includes/class-wcpdf-settings.php:
|
361 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
362 |
msgstr ""
|
363 |
"Aceasta este coloana 3 pentru nota de subsol, disponibilă în șablonul "
|
364 |
"<i>Modern (Premium)</ i>"
|
365 |
|
366 |
# @ default
|
367 |
-
#: includes/class-wcpdf-settings.php:
|
368 |
msgid "Image resolution"
|
369 |
msgstr ""
|
370 |
|
371 |
# @ wpo_wcpdf
|
372 |
-
#: includes/class-wcpdf-settings.php:
|
373 |
msgid ""
|
374 |
"These are used for the (optional) footer columns in the <em>Modern "
|
375 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -385,36 +383,50 @@ msgid "Invoice Number"
|
|
385 |
msgstr "Număr factură"
|
386 |
|
387 |
# @ wpo_wcpdf
|
388 |
-
#: includes/class-wcpdf-writepanels.php:
|
389 |
-
msgid "Create PDF"
|
390 |
-
msgstr "Crează PDF"
|
391 |
-
|
392 |
-
# @ wpo_wcpdf
|
393 |
-
#: includes/class-wcpdf-writepanels.php:143
|
394 |
msgid "Download invoice (PDF)"
|
395 |
msgstr "Descarcă factură (PDF)"
|
396 |
|
397 |
# @ wpo_wcpdf
|
398 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid "PDF invoice"
|
400 |
msgstr "Factură PDF"
|
401 |
|
402 |
# @ wpo_wcpdf
|
403 |
-
#: includes/class-wcpdf-writepanels.php:
|
404 |
msgid "PDF Packing Slip"
|
405 |
msgstr "Ordin de comandă PDF"
|
406 |
|
407 |
# @ wpo_wcpdf
|
408 |
-
#: includes/class-wcpdf-writepanels.php:
|
409 |
-
#: includes/class-wcpdf-writepanels.php:
|
410 |
msgid "PDF Packing Slips"
|
411 |
msgstr "Ordine de comandă PDF"
|
412 |
|
413 |
# @ wpo_wcpdf
|
414 |
-
#: includes/class-wcpdf-writepanels.php:
|
415 |
msgid "PDF Invoice Number (unformatted!)"
|
416 |
msgstr "Număr factură PDF (neformatat!)"
|
417 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
# @ wpo_wcpdf
|
419 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
420 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
@@ -428,11 +440,6 @@ msgstr "Factură"
|
|
428 |
msgid "Packing Slip"
|
429 |
msgstr "Ordin de comandă"
|
430 |
|
431 |
-
# @ wpo_wcpdf
|
432 |
-
#: templates/pdf/Simple/invoice.php:37
|
433 |
-
msgid "Invoice Date:"
|
434 |
-
msgstr "Dată factură:"
|
435 |
-
|
436 |
# @ wpo_wcpdf
|
437 |
#: templates/pdf/Simple/invoice.php:40
|
438 |
#: templates/pdf/Simple/packing-slip.php:30
|
@@ -479,18 +486,23 @@ msgstr "Descriere"
|
|
479 |
|
480 |
# @ wpo_wcpdf
|
481 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
|
|
482 |
#: templates/pdf/Simple/packing-slip.php:54
|
483 |
msgid "SKU:"
|
484 |
msgstr "Cod produs (SKU):"
|
485 |
|
486 |
# @ wpo_wcpdf
|
487 |
-
#: templates/pdf/Simple/invoice.php:
|
488 |
#: templates/pdf/Simple/packing-slip.php:55
|
489 |
msgid "Weight:"
|
490 |
msgstr "Greutate:"
|
491 |
|
492 |
# @ wpo_wcpdf
|
493 |
-
#: templates/pdf/Simple/invoice.php:
|
494 |
#: templates/pdf/Simple/packing-slip.php:69
|
495 |
msgid "Customer Notes"
|
496 |
msgstr "Notiță client"
|
@@ -512,41 +524,41 @@ msgid "N/A"
|
|
512 |
msgstr "Nu se aplică (N/A)"
|
513 |
|
514 |
# @ wpo_wcpdf
|
515 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
516 |
msgid "Payment method"
|
517 |
msgstr "Metodă de plată"
|
518 |
|
519 |
# @ wpo_wcpdf
|
520 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
521 |
msgid "Shipping method"
|
522 |
msgstr "Metodă de livrare"
|
523 |
|
524 |
# @ wpo_wcpdf
|
525 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
526 |
msgid "Subtotal"
|
527 |
msgstr "Subtotal"
|
528 |
|
529 |
# @ wpo_wcpdf
|
530 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
531 |
msgid "Shipping"
|
532 |
msgstr "Transport"
|
533 |
|
534 |
# @ wpo_wcpdf
|
535 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
536 |
msgid "Discount"
|
537 |
msgstr "Reducere"
|
538 |
|
539 |
# @ wpo_wcpdf
|
540 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
541 |
msgid "VAT"
|
542 |
msgstr "TVA"
|
543 |
|
544 |
# @ default
|
545 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
546 |
msgid "Total ex. VAT"
|
547 |
msgstr ""
|
548 |
|
549 |
# @ default
|
550 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
551 |
msgid "Total"
|
552 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.2.13\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-18 15:08+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-18 15:09+0100\n"
|
7 |
"Last-Translator: afternoon <zicevrei@afternoon.ro>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: ro_RO\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-Generator: Poedit 1.6.9\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ wpo_wcpdf
|
23 |
+
#: includes/class-wcpdf-export.php:168 includes/class-wcpdf-export.php:173
|
24 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
25 |
+
#: includes/class-wcpdf-export.php:202
|
26 |
msgid "You do not have sufficient permissions to access this page."
|
27 |
msgstr "Nu aveți permisiunea pentru a accesa această pagină."
|
28 |
|
29 |
# @ wpo_wcpdf
|
30 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
31 |
msgid "invoice"
|
32 |
msgid_plural "invoices"
|
33 |
msgstr[0] ""
|
34 |
msgstr[1] ""
|
35 |
|
36 |
# @ wpo_wcpdf
|
37 |
+
#: includes/class-wcpdf-export.php:225
|
38 |
msgid "packing-slip"
|
39 |
msgid_plural "packing-slips"
|
40 |
msgstr[0] ""
|
42 |
|
43 |
# @ wpo_wcpdf
|
44 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
45 |
+
#: includes/class-wcpdf-writepanels.php:176
|
46 |
+
#: includes/class-wcpdf-writepanels.php:177
|
47 |
msgid "PDF Invoices"
|
48 |
msgstr "Factură PDF"
|
49 |
|
162 |
msgstr "Setări șablon PDF"
|
163 |
|
164 |
# @ wpo_wcpdf
|
165 |
+
#: includes/class-wcpdf-settings.php:271
|
166 |
msgid "Choose a template"
|
167 |
msgstr "Alege un șablon"
|
168 |
|
169 |
# @ wpo_wcpdf
|
170 |
+
#: includes/class-wcpdf-settings.php:279
|
171 |
+
#, php-format
|
172 |
msgid ""
|
173 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
174 |
+
"<code>%s</code> to customize them"
|
|
|
175 |
msgstr ""
|
176 |
+
"Vreți sa utilizați propriul șablon? Copiați toate fișierele din <code>%s</ "
|
177 |
+
"code> în <code>%s</ code> pentru a le personaliza"
|
|
|
|
|
178 |
|
179 |
# @ wpo_wcpdf
|
180 |
+
#: includes/class-wcpdf-settings.php:285
|
181 |
msgid "Paper size"
|
182 |
msgstr "Dimensiune hârtie"
|
183 |
|
184 |
# @ wpo_wcpdf
|
185 |
+
#: includes/class-wcpdf-settings.php:293
|
186 |
msgid "A4"
|
187 |
msgstr "A4"
|
188 |
|
189 |
# @ wpo_wcpdf
|
190 |
+
#: includes/class-wcpdf-settings.php:294
|
191 |
msgid "Letter"
|
192 |
msgstr "Letter"
|
193 |
|
194 |
# @ wpo_wcpdf
|
195 |
+
#: includes/class-wcpdf-settings.php:301
|
196 |
msgid "Shop header/logo"
|
197 |
msgstr "Antet/Logo"
|
198 |
|
199 |
# @ wpo_wcpdf
|
200 |
+
#: includes/class-wcpdf-settings.php:308
|
201 |
msgid "Select or upload your invoice header/logo"
|
202 |
msgstr "Selectați sau încărcați propriul dvs. antet sau logo"
|
203 |
|
204 |
# @ wpo_wcpdf
|
205 |
+
#: includes/class-wcpdf-settings.php:309
|
206 |
msgid "Set image"
|
207 |
msgstr "Setare imagine"
|
208 |
|
209 |
# @ wpo_wcpdf
|
210 |
+
#: includes/class-wcpdf-settings.php:310
|
211 |
msgid "Remove image"
|
212 |
msgstr "Șterge imagine"
|
213 |
|
214 |
# @ wpo_wcpdf
|
215 |
+
#: includes/class-wcpdf-settings.php:317
|
216 |
msgid "Shop Name"
|
217 |
msgstr "Nume magazin"
|
218 |
|
219 |
# @ wpo_wcpdf
|
220 |
+
#: includes/class-wcpdf-settings.php:330
|
221 |
msgid "Shop Address"
|
222 |
msgstr "Adresă magazin"
|
223 |
|
224 |
# @ wpo_wcpdf
|
225 |
+
#: includes/class-wcpdf-settings.php:362
|
226 |
msgid "Footer: terms & conditions, policies, etc."
|
227 |
msgstr ""
|
228 |
"Notă de subsol: termeni și condiții, politică de confidențialitate, etc."
|
229 |
|
230 |
# @ wpo_wcpdf
|
231 |
+
#: includes/class-wcpdf-settings.php:377
|
232 |
msgid "Number to display on invoice"
|
233 |
msgstr "Număr pentru a fi afișat pe factură"
|
234 |
|
235 |
# @ wpo_wcpdf
|
236 |
+
#: includes/class-wcpdf-settings.php:385
|
237 |
msgid "WooCommerce order number"
|
238 |
msgstr "Numărul de comandă WooCommerce"
|
239 |
|
240 |
# @ wpo_wcpdf
|
241 |
+
#: includes/class-wcpdf-settings.php:386
|
242 |
msgid "Built-in sequential invoice number"
|
243 |
msgstr "Număr de factură secvențial"
|
244 |
|
245 |
# @ wpo_wcpdf
|
246 |
+
#: includes/class-wcpdf-settings.php:388
|
247 |
msgid ""
|
248 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
249 |
"WooCommerce order number"
|
252 |
"Numărul de comandă WooCommerce"
|
253 |
|
254 |
# @ wpo_wcpdf
|
255 |
+
#: includes/class-wcpdf-settings.php:394
|
256 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
257 |
msgstr "Următorul număr de factură (fără prefix/sufix etc.)"
|
258 |
|
259 |
# @ wpo_wcpdf
|
260 |
+
#: includes/class-wcpdf-settings.php:402
|
261 |
msgid ""
|
262 |
"This is the number that will be used on the next invoice that is created. By "
|
263 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
272 |
"factură (PDF), acest lucru ar putea crea un număr duplicat la factură!"
|
273 |
|
274 |
# @ wpo_wcpdf
|
275 |
+
#: includes/class-wcpdf-settings.php:408
|
276 |
#, fuzzy
|
277 |
msgid "Invoice number format"
|
278 |
msgstr "Număr factură"
|
279 |
|
280 |
+
#: includes/class-wcpdf-settings.php:417
|
281 |
msgid "Prefix"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/class-wcpdf-settings.php:419
|
285 |
msgid ""
|
286 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
287 |
"respectively"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:422
|
291 |
msgid "Suffix"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/class-wcpdf-settings.php:427
|
295 |
msgid "Padding"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/class-wcpdf-settings.php:429
|
299 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/class-wcpdf-settings.php:432
|
303 |
msgid ""
|
304 |
"note: if you have already created a custom invoice number format with a "
|
305 |
"filter, the above settings will be ignored"
|
306 |
msgstr ""
|
307 |
|
308 |
# @ wpo_wcpdf
|
309 |
+
#: includes/class-wcpdf-settings.php:440
|
310 |
msgid "Date to display on invoice"
|
311 |
msgstr "Dată pentru a afișa pe factură"
|
312 |
|
313 |
# @ wpo_wcpdf
|
314 |
+
#: includes/class-wcpdf-settings.php:448
|
315 |
msgid "Order date"
|
316 |
msgstr "Dată comandă"
|
317 |
|
318 |
# @ wpo_wcpdf
|
319 |
+
#: includes/class-wcpdf-settings.php:449
|
320 |
msgid "Invoice date"
|
321 |
msgstr "Dată factură"
|
322 |
|
323 |
# @ wpo_wcpdf
|
324 |
+
#: includes/class-wcpdf-settings.php:457
|
325 |
msgid "Extra template fields"
|
326 |
msgstr "Câmpuri suplimentare pentru șablon"
|
327 |
|
328 |
# @ wpo_wcpdf
|
329 |
+
#: includes/class-wcpdf-settings.php:464
|
330 |
msgid "Extra field 1"
|
331 |
msgstr "Câmp suplimentar 1"
|
332 |
|
333 |
# @ wpo_wcpdf
|
334 |
+
#: includes/class-wcpdf-settings.php:473
|
335 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
336 |
msgstr ""
|
337 |
"Aceasta este coloana 1 pentru nota de subsol, disponibilă în șablonul "
|
338 |
"<i>Modern (Premium)</ i>"
|
339 |
|
340 |
# @ wpo_wcpdf
|
341 |
+
#: includes/class-wcpdf-settings.php:479
|
342 |
msgid "Extra field 2"
|
343 |
msgstr "Câmp suplimentar 2"
|
344 |
|
345 |
# @ wpo_wcpdf
|
346 |
+
#: includes/class-wcpdf-settings.php:488
|
347 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
348 |
msgstr ""
|
349 |
"Aceasta este coloana 2 pentru nota de subsol, disponibilă în șablonul "
|
350 |
"<i>Modern (Premium)</ i>"
|
351 |
|
352 |
# @ wpo_wcpdf
|
353 |
+
#: includes/class-wcpdf-settings.php:494
|
354 |
msgid "Extra field 3"
|
355 |
msgstr "Câmp suplimentar 3"
|
356 |
|
357 |
# @ wpo_wcpdf
|
358 |
+
#: includes/class-wcpdf-settings.php:503
|
359 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
360 |
msgstr ""
|
361 |
"Aceasta este coloana 3 pentru nota de subsol, disponibilă în șablonul "
|
362 |
"<i>Modern (Premium)</ i>"
|
363 |
|
364 |
# @ default
|
365 |
+
#: includes/class-wcpdf-settings.php:760
|
366 |
msgid "Image resolution"
|
367 |
msgstr ""
|
368 |
|
369 |
# @ wpo_wcpdf
|
370 |
+
#: includes/class-wcpdf-settings.php:871
|
371 |
msgid ""
|
372 |
"These are used for the (optional) footer columns in the <em>Modern "
|
373 |
"(Premium)</em> template, but can also be used for other elements in your "
|
383 |
msgstr "Număr factură"
|
384 |
|
385 |
# @ wpo_wcpdf
|
386 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
|
|
387 |
msgid "Download invoice (PDF)"
|
388 |
msgstr "Descarcă factură (PDF)"
|
389 |
|
390 |
# @ wpo_wcpdf
|
391 |
+
#: includes/class-wcpdf-writepanels.php:150
|
392 |
+
msgid "Create PDF"
|
393 |
+
msgstr "Crează PDF"
|
394 |
+
|
395 |
+
# @ wpo_wcpdf
|
396 |
+
#: includes/class-wcpdf-writepanels.php:160
|
397 |
msgid "PDF invoice"
|
398 |
msgstr "Factură PDF"
|
399 |
|
400 |
# @ wpo_wcpdf
|
401 |
+
#: includes/class-wcpdf-writepanels.php:161
|
402 |
msgid "PDF Packing Slip"
|
403 |
msgstr "Ordin de comandă PDF"
|
404 |
|
405 |
# @ wpo_wcpdf
|
406 |
+
#: includes/class-wcpdf-writepanels.php:178
|
407 |
+
#: includes/class-wcpdf-writepanels.php:179
|
408 |
msgid "PDF Packing Slips"
|
409 |
msgstr "Ordine de comandă PDF"
|
410 |
|
411 |
# @ wpo_wcpdf
|
412 |
+
#: includes/class-wcpdf-writepanels.php:192
|
413 |
msgid "PDF Invoice Number (unformatted!)"
|
414 |
msgstr "Număr factură PDF (neformatat!)"
|
415 |
|
416 |
+
# @ wpo_wcpdf
|
417 |
+
#: includes/class-wcpdf-writepanels.php:195
|
418 |
+
#: templates/pdf/Simple/invoice.php:37
|
419 |
+
msgid "Invoice Date:"
|
420 |
+
msgstr "Dată factură:"
|
421 |
+
|
422 |
+
#: includes/class-wcpdf-writepanels.php:196
|
423 |
+
msgid "h"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: includes/class-wcpdf-writepanels.php:196
|
427 |
+
msgid "m"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
# @ wpo_wcpdf
|
431 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
432 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
440 |
msgid "Packing Slip"
|
441 |
msgstr "Ordin de comandă"
|
442 |
|
|
|
|
|
|
|
|
|
|
|
443 |
# @ wpo_wcpdf
|
444 |
#: templates/pdf/Simple/invoice.php:40
|
445 |
#: templates/pdf/Simple/packing-slip.php:30
|
486 |
|
487 |
# @ wpo_wcpdf
|
488 |
#: templates/pdf/Simple/invoice.php:80
|
489 |
+
msgid "SKU"
|
490 |
+
msgstr "Cod produs (SKU)"
|
491 |
+
|
492 |
+
# @ wpo_wcpdf
|
493 |
+
#: templates/pdf/Simple/invoice.php:81
|
494 |
#: templates/pdf/Simple/packing-slip.php:54
|
495 |
msgid "SKU:"
|
496 |
msgstr "Cod produs (SKU):"
|
497 |
|
498 |
# @ wpo_wcpdf
|
499 |
+
#: templates/pdf/Simple/invoice.php:82
|
500 |
#: templates/pdf/Simple/packing-slip.php:55
|
501 |
msgid "Weight:"
|
502 |
msgstr "Greutate:"
|
503 |
|
504 |
# @ wpo_wcpdf
|
505 |
+
#: templates/pdf/Simple/invoice.php:114
|
506 |
#: templates/pdf/Simple/packing-slip.php:69
|
507 |
msgid "Customer Notes"
|
508 |
msgstr "Notiță client"
|
524 |
msgstr "Nu se aplică (N/A)"
|
525 |
|
526 |
# @ wpo_wcpdf
|
527 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
528 |
msgid "Payment method"
|
529 |
msgstr "Metodă de plată"
|
530 |
|
531 |
# @ wpo_wcpdf
|
532 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
533 |
msgid "Shipping method"
|
534 |
msgstr "Metodă de livrare"
|
535 |
|
536 |
# @ wpo_wcpdf
|
537 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
538 |
msgid "Subtotal"
|
539 |
msgstr "Subtotal"
|
540 |
|
541 |
# @ wpo_wcpdf
|
542 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
543 |
msgid "Shipping"
|
544 |
msgstr "Transport"
|
545 |
|
546 |
# @ wpo_wcpdf
|
547 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
548 |
msgid "Discount"
|
549 |
msgstr "Reducere"
|
550 |
|
551 |
# @ wpo_wcpdf
|
552 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
553 |
msgid "VAT"
|
554 |
msgstr "TVA"
|
555 |
|
556 |
# @ default
|
557 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
558 |
msgid "Total ex. VAT"
|
559 |
msgstr ""
|
560 |
|
561 |
# @ default
|
562 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
563 |
msgid "Total"
|
564 |
msgstr ""
|
languages/wpo_wcpdf-ru_RU.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-ru_RU.po
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: de_DE\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.6.
|
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:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Вы не имеете достаточно прав для доступа к этой странице."
|
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] "накладная"
|
30 |
msgstr[1] "накладные"
|
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] "Счет-Фактура"
|
37 |
msgstr[1] "Счета-Фактуры"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Накладные"
|
44 |
|
@@ -138,73 +138,72 @@ msgstr ""
|
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF Настройки шаблона"
|
140 |
|
141 |
-
#: includes/class-wcpdf-settings.php:
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Выберите шаблон"
|
144 |
|
145 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
146 |
msgid ""
|
147 |
-
"Want to use your own template? Copy all the files from <code>
|
148 |
-
"
|
149 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
150 |
msgstr ""
|
151 |
-
"Хотите свой собственный шаблон? Скопируйте файлы с папки <code>
|
152 |
-
"
|
153 |
-
"woocommerce/pdf/название_шаблона/</code> и настройте по своему усмотрению."
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Paper size"
|
157 |
msgstr "Размер бумаги"
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Letter"
|
165 |
msgstr "Письмо"
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Логотип в шапке документа"
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Выберите чтобы загрузить шапку/логотип для накладной"
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Set image"
|
177 |
msgstr "Установить изображение"
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Remove image"
|
181 |
msgstr "Удалить изображение"
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Название магазина"
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Адрес магазина"
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Подвал: термины, условия, политика и тд."
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Number to display on invoice"
|
197 |
msgstr "Номер для отображения в накладной"
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "WooCommerce order number"
|
201 |
msgstr "WooCommerce номер заказа"
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
msgid "Built-in sequential invoice number"
|
205 |
msgstr "Встроенный секвенсор номеров накладной"
|
206 |
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid ""
|
209 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
210 |
"WooCommerce order number"
|
@@ -212,11 +211,11 @@ msgstr ""
|
|
212 |
"Если вы используете WooCommerce Sequential Order Numbers плагин, выберите "
|
213 |
"WooCommerce номер заказа"
|
214 |
|
215 |
-
#: includes/class-wcpdf-settings.php:
|
216 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
217 |
msgstr "Следующий номер накладной (без префикса/суффикса и тд.)"
|
218 |
|
219 |
-
#: includes/class-wcpdf-settings.php:
|
220 |
msgid ""
|
221 |
"This is the number that will be used on the next invoice that is created. By "
|
222 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -231,84 +230,84 @@ msgstr ""
|
|
231 |
"значение ниже чем самый большой номер (PDF) накладной, это может привести к "
|
232 |
"созданию дублированной накладной!"
|
233 |
|
234 |
-
#: includes/class-wcpdf-settings.php:
|
235 |
#, fuzzy
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Номер накладной:"
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Prefix"
|
241 |
msgstr ""
|
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 |
|
249 |
-
#: includes/class-wcpdf-settings.php:
|
250 |
msgid "Suffix"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-wcpdf-settings.php:
|
254 |
msgid "Padding"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-wcpdf-settings.php:
|
258 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/class-wcpdf-settings.php:
|
262 |
msgid ""
|
263 |
"note: if you have already created a custom invoice number format with a "
|
264 |
"filter, the above settings will be ignored"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-wcpdf-settings.php:
|
268 |
msgid "Date to display on invoice"
|
269 |
msgstr "Дата для отображения в накладной"
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
msgid "Order date"
|
273 |
msgstr "Дата заказа"
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
msgid "Invoice date"
|
277 |
msgstr "Дата накладной"
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
msgid "Extra template fields"
|
281 |
msgstr "Дополнительные поля шаблона"
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "Extra field 1"
|
285 |
msgstr "Дополнительное поле 1"
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
289 |
msgstr "Это колонка 1 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
290 |
|
291 |
-
#: includes/class-wcpdf-settings.php:
|
292 |
msgid "Extra field 2"
|
293 |
msgstr "Дополнительное поле 2"
|
294 |
|
295 |
-
#: includes/class-wcpdf-settings.php:
|
296 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
297 |
msgstr "Это колонка 2 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid "Extra field 3"
|
301 |
msgstr "Дополнительное поле 3"
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
305 |
msgstr "Это колонка 3 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid "Image resolution"
|
309 |
msgstr "Разрешение изображения"
|
310 |
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
312 |
msgid ""
|
313 |
"These are used for the (optional) footer columns in the <em>Modern "
|
314 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -323,32 +322,45 @@ msgstr ""
|
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Номер накладной:"
|
325 |
|
326 |
-
#: includes/class-wcpdf-writepanels.php:
|
327 |
-
msgid "Create PDF"
|
328 |
-
msgstr "Создать PDF"
|
329 |
-
|
330 |
-
#: includes/class-wcpdf-writepanels.php:143
|
331 |
msgid "Download invoice (PDF)"
|
332 |
msgstr "Скачать накладную (PDF)"
|
333 |
|
334 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
335 |
msgid "PDF invoice"
|
336 |
msgstr "PDF Накладная"
|
337 |
|
338 |
-
#: includes/class-wcpdf-writepanels.php:
|
339 |
msgid "PDF Packing Slip"
|
340 |
msgstr "PDF Счет-Фактура"
|
341 |
|
342 |
-
#: includes/class-wcpdf-writepanels.php:
|
343 |
-
#: includes/class-wcpdf-writepanels.php:
|
344 |
msgid "PDF Packing Slips"
|
345 |
msgstr "PDF Счета-Фактуры"
|
346 |
|
347 |
-
#: includes/class-wcpdf-writepanels.php:
|
348 |
#, fuzzy
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
msgstr "PDF Номер накладной"
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
353 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
354 |
msgid "Invoice"
|
@@ -360,10 +372,6 @@ msgstr "Накладная"
|
|
360 |
msgid "Packing Slip"
|
361 |
msgstr "Счет-Фактура"
|
362 |
|
363 |
-
#: templates/pdf/Simple/invoice.php:37
|
364 |
-
msgid "Invoice Date:"
|
365 |
-
msgstr "Дата накладной"
|
366 |
-
|
367 |
#: templates/pdf/Simple/invoice.php:40
|
368 |
#: templates/pdf/Simple/packing-slip.php:30
|
369 |
msgid "Order Date:"
|
@@ -401,16 +409,20 @@ msgid "Description"
|
|
401 |
msgstr ""
|
402 |
|
403 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
404 |
#: templates/pdf/Simple/packing-slip.php:54
|
405 |
msgid "SKU:"
|
406 |
msgstr "ИТП:"
|
407 |
|
408 |
-
#: templates/pdf/Simple/invoice.php:
|
409 |
#: templates/pdf/Simple/packing-slip.php:55
|
410 |
msgid "Weight:"
|
411 |
msgstr "Вес:"
|
412 |
|
413 |
-
#: templates/pdf/Simple/invoice.php:
|
414 |
#: templates/pdf/Simple/packing-slip.php:69
|
415 |
msgid "Customer Notes"
|
416 |
msgstr "Примечания клиента"
|
@@ -429,37 +441,37 @@ msgstr ""
|
|
429 |
msgid "N/A"
|
430 |
msgstr "N/A"
|
431 |
|
432 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
433 |
#, fuzzy
|
434 |
msgid "Payment method"
|
435 |
msgstr "Метод оплаты:"
|
436 |
|
437 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
438 |
#, fuzzy
|
439 |
msgid "Shipping method"
|
440 |
msgstr "Доставка"
|
441 |
|
442 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
443 |
msgid "Subtotal"
|
444 |
msgstr "Промежуточный итог"
|
445 |
|
446 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
447 |
msgid "Shipping"
|
448 |
msgstr "Доставка"
|
449 |
|
450 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
451 |
msgid "Discount"
|
452 |
msgstr "Скидка"
|
453 |
|
454 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
455 |
msgid "VAT"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
459 |
msgid "Total ex. VAT"
|
460 |
msgstr "Всего отл. НДС"
|
461 |
|
462 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
463 |
msgid "Total"
|
464 |
msgstr "Итого"
|
465 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:09+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:10+0100\n"
|
6 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: de_DE\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Вы не имеете достаточно прав для доступа к этой странице."
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "накладная"
|
30 |
msgstr[1] "накладные"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:225
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Счет-Фактура"
|
37 |
msgstr[1] "Счета-Фактуры"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Накладные"
|
44 |
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF Настройки шаблона"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:271
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Выберите шаблон"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:279
|
146 |
+
#, php-format
|
147 |
msgid ""
|
148 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
149 |
+
"<code>%s</code> to customize them"
|
|
|
150 |
msgstr ""
|
151 |
+
"Хотите свой собственный шаблон? Скопируйте файлы с папки <code>%s</code> в "
|
152 |
+
"<code>%s</code> и настройте по своему усмотрению."
|
|
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:285
|
155 |
msgid "Paper size"
|
156 |
msgstr "Размер бумаги"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:293
|
159 |
msgid "A4"
|
160 |
msgstr "A4"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:294
|
163 |
msgid "Letter"
|
164 |
msgstr "Письмо"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:301
|
167 |
msgid "Shop header/logo"
|
168 |
msgstr "Логотип в шапке документа"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:308
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
msgstr "Выберите чтобы загрузить шапку/логотип для накладной"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:309
|
175 |
msgid "Set image"
|
176 |
msgstr "Установить изображение"
|
177 |
|
178 |
+
#: includes/class-wcpdf-settings.php:310
|
179 |
msgid "Remove image"
|
180 |
msgstr "Удалить изображение"
|
181 |
|
182 |
+
#: includes/class-wcpdf-settings.php:317
|
183 |
msgid "Shop Name"
|
184 |
msgstr "Название магазина"
|
185 |
|
186 |
+
#: includes/class-wcpdf-settings.php:330
|
187 |
msgid "Shop Address"
|
188 |
msgstr "Адрес магазина"
|
189 |
|
190 |
+
#: includes/class-wcpdf-settings.php:362
|
191 |
msgid "Footer: terms & conditions, policies, etc."
|
192 |
msgstr "Подвал: термины, условия, политика и тд."
|
193 |
|
194 |
+
#: includes/class-wcpdf-settings.php:377
|
195 |
msgid "Number to display on invoice"
|
196 |
msgstr "Номер для отображения в накладной"
|
197 |
|
198 |
+
#: includes/class-wcpdf-settings.php:385
|
199 |
msgid "WooCommerce order number"
|
200 |
msgstr "WooCommerce номер заказа"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:386
|
203 |
msgid "Built-in sequential invoice number"
|
204 |
msgstr "Встроенный секвенсор номеров накладной"
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:388
|
207 |
msgid ""
|
208 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
209 |
"WooCommerce order number"
|
211 |
"Если вы используете WooCommerce Sequential Order Numbers плагин, выберите "
|
212 |
"WooCommerce номер заказа"
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:394
|
215 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
216 |
msgstr "Следующий номер накладной (без префикса/суффикса и тд.)"
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:402
|
219 |
msgid ""
|
220 |
"This is the number that will be used on the next invoice that is created. By "
|
221 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
230 |
"значение ниже чем самый большой номер (PDF) накладной, это может привести к "
|
231 |
"созданию дублированной накладной!"
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:408
|
234 |
#, fuzzy
|
235 |
msgid "Invoice number format"
|
236 |
msgstr "Номер накладной:"
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:417
|
239 |
msgid "Prefix"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: includes/class-wcpdf-settings.php:419
|
243 |
msgid ""
|
244 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
245 |
"respectively"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:422
|
249 |
msgid "Suffix"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:427
|
253 |
msgid "Padding"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/class-wcpdf-settings.php:429
|
257 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/class-wcpdf-settings.php:432
|
261 |
msgid ""
|
262 |
"note: if you have already created a custom invoice number format with a "
|
263 |
"filter, the above settings will be ignored"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:440
|
267 |
msgid "Date to display on invoice"
|
268 |
msgstr "Дата для отображения в накладной"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:448
|
271 |
msgid "Order date"
|
272 |
msgstr "Дата заказа"
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:449
|
275 |
msgid "Invoice date"
|
276 |
msgstr "Дата накладной"
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:457
|
279 |
msgid "Extra template fields"
|
280 |
msgstr "Дополнительные поля шаблона"
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:464
|
283 |
msgid "Extra field 1"
|
284 |
msgstr "Дополнительное поле 1"
|
285 |
|
286 |
+
#: includes/class-wcpdf-settings.php:473
|
287 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
288 |
msgstr "Это колонка 1 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:479
|
291 |
msgid "Extra field 2"
|
292 |
msgstr "Дополнительное поле 2"
|
293 |
|
294 |
+
#: includes/class-wcpdf-settings.php:488
|
295 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
296 |
msgstr "Это колонка 2 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
297 |
|
298 |
+
#: includes/class-wcpdf-settings.php:494
|
299 |
msgid "Extra field 3"
|
300 |
msgstr "Дополнительное поле 3"
|
301 |
|
302 |
+
#: includes/class-wcpdf-settings.php:503
|
303 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
304 |
msgstr "Это колонка 3 в подвале документа для <i>Modern (Premium)</i> шаблонов"
|
305 |
|
306 |
+
#: includes/class-wcpdf-settings.php:760
|
307 |
msgid "Image resolution"
|
308 |
msgstr "Разрешение изображения"
|
309 |
|
310 |
+
#: includes/class-wcpdf-settings.php:871
|
311 |
msgid ""
|
312 |
"These are used for the (optional) footer columns in the <em>Modern "
|
313 |
"(Premium)</em> template, but can also be used for other elements in your "
|
322 |
msgid "Invoice Number"
|
323 |
msgstr "Номер накладной:"
|
324 |
|
325 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
326 |
msgid "Download invoice (PDF)"
|
327 |
msgstr "Скачать накладную (PDF)"
|
328 |
|
329 |
+
#: includes/class-wcpdf-writepanels.php:150
|
330 |
+
msgid "Create PDF"
|
331 |
+
msgstr "Создать PDF"
|
332 |
+
|
333 |
+
#: includes/class-wcpdf-writepanels.php:160
|
334 |
msgid "PDF invoice"
|
335 |
msgstr "PDF Накладная"
|
336 |
|
337 |
+
#: includes/class-wcpdf-writepanels.php:161
|
338 |
msgid "PDF Packing Slip"
|
339 |
msgstr "PDF Счет-Фактура"
|
340 |
|
341 |
+
#: includes/class-wcpdf-writepanels.php:178
|
342 |
+
#: includes/class-wcpdf-writepanels.php:179
|
343 |
msgid "PDF Packing Slips"
|
344 |
msgstr "PDF Счета-Фактуры"
|
345 |
|
346 |
+
#: includes/class-wcpdf-writepanels.php:192
|
347 |
#, fuzzy
|
348 |
msgid "PDF Invoice Number (unformatted!)"
|
349 |
msgstr "PDF Номер накладной"
|
350 |
|
351 |
+
#: includes/class-wcpdf-writepanels.php:195
|
352 |
+
#: templates/pdf/Simple/invoice.php:37
|
353 |
+
msgid "Invoice Date:"
|
354 |
+
msgstr "Дата накладной"
|
355 |
+
|
356 |
+
#: includes/class-wcpdf-writepanels.php:196
|
357 |
+
msgid "h"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/class-wcpdf-writepanels.php:196
|
361 |
+
msgid "m"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
365 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
366 |
msgid "Invoice"
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Счет-Фактура"
|
374 |
|
|
|
|
|
|
|
|
|
375 |
#: templates/pdf/Simple/invoice.php:40
|
376 |
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
msgid "Order Date:"
|
409 |
msgstr ""
|
410 |
|
411 |
#: templates/pdf/Simple/invoice.php:80
|
412 |
+
msgid "SKU"
|
413 |
+
msgstr "ИТП"
|
414 |
+
|
415 |
+
#: templates/pdf/Simple/invoice.php:81
|
416 |
#: templates/pdf/Simple/packing-slip.php:54
|
417 |
msgid "SKU:"
|
418 |
msgstr "ИТП:"
|
419 |
|
420 |
+
#: templates/pdf/Simple/invoice.php:82
|
421 |
#: templates/pdf/Simple/packing-slip.php:55
|
422 |
msgid "Weight:"
|
423 |
msgstr "Вес:"
|
424 |
|
425 |
+
#: templates/pdf/Simple/invoice.php:114
|
426 |
#: templates/pdf/Simple/packing-slip.php:69
|
427 |
msgid "Customer Notes"
|
428 |
msgstr "Примечания клиента"
|
441 |
msgid "N/A"
|
442 |
msgstr "N/A"
|
443 |
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
445 |
#, fuzzy
|
446 |
msgid "Payment method"
|
447 |
msgstr "Метод оплаты:"
|
448 |
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
450 |
#, fuzzy
|
451 |
msgid "Shipping method"
|
452 |
msgstr "Доставка"
|
453 |
|
454 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
455 |
msgid "Subtotal"
|
456 |
msgstr "Промежуточный итог"
|
457 |
|
458 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
459 |
msgid "Shipping"
|
460 |
msgstr "Доставка"
|
461 |
|
462 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
463 |
msgid "Discount"
|
464 |
msgstr "Скидка"
|
465 |
|
466 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
467 |
msgid "VAT"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
471 |
msgid "Total ex. VAT"
|
472 |
msgstr "Всего отл. НДС"
|
473 |
|
474 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
475 |
msgid "Total"
|
476 |
msgstr "Итого"
|
477 |
|
languages/wpo_wcpdf-sk_SK.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-sk_SK.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
8 |
"Language-Team: KubiQ <7kubiq7@gmail.com>\n"
|
9 |
"Language: sk_SK\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
|
14 |
-
"X-Generator: Poedit 1.6.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
@@ -20,15 +20,15 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ wpo_wcpdf
|
23 |
-
#: includes/class-wcpdf-export.php:
|
24 |
-
#: includes/class-wcpdf-export.php:
|
25 |
-
#: includes/class-wcpdf-export.php:
|
26 |
msgid "You do not have sufficient permissions to access this page."
|
27 |
msgstr "Nemáte dostatočné oprávnenia na prístup k tejto stránke."
|
28 |
|
29 |
# This is a filename (prefix). do not use spaces or special characters!
|
30 |
# @ wpo_wcpdf
|
31 |
-
#: includes/class-wcpdf-export.php:
|
32 |
msgid "invoice"
|
33 |
msgid_plural "invoices"
|
34 |
msgstr[0] "faktury"
|
@@ -37,7 +37,7 @@ msgstr[2] "faktury"
|
|
37 |
|
38 |
# This is a filename (prefix). do not use spaces or special characters!
|
39 |
# @ wpo_wcpdf
|
40 |
-
#: includes/class-wcpdf-export.php:
|
41 |
msgid "packing-slip"
|
42 |
msgid_plural "packing-slips"
|
43 |
msgstr[0] "dodacie-listy"
|
@@ -46,8 +46,8 @@ msgstr[2] "dodacie-listy"
|
|
46 |
|
47 |
# @ wpo_wcpdf
|
48 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
49 |
-
#: includes/class-wcpdf-writepanels.php:
|
50 |
-
#: includes/class-wcpdf-writepanels.php:
|
51 |
msgid "PDF Invoices"
|
52 |
msgstr "PDF faktúry"
|
53 |
|
@@ -167,88 +167,87 @@ msgid "PDF Template settings"
|
|
167 |
msgstr "Nastavenia PDF šablón"
|
168 |
|
169 |
# @ wpo_wcpdf
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Choose a template"
|
172 |
msgstr "Zvoľte šablónu"
|
173 |
|
174 |
# @ wpo_wcpdf
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
176 |
msgid ""
|
177 |
-
"Want to use your own template? Copy all the files from <code>
|
178 |
-
"
|
179 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
180 |
msgstr ""
|
181 |
-
"Chcete použiť vlastnú šablónu? Skopírujte všetky súbory z <code>
|
182 |
-
"
|
183 |
-
"woocommerce/pdf/yourtemplate/</code> a upravte ich podľa potreby"
|
184 |
|
185 |
# @ wpo_wcpdf
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Paper size"
|
188 |
msgstr "Veľkosť papiera"
|
189 |
|
190 |
# @ wpo_wcpdf
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "A4"
|
193 |
msgstr "A4"
|
194 |
|
195 |
# @ wpo_wcpdf
|
196 |
-
#: includes/class-wcpdf-settings.php:
|
197 |
msgid "Letter"
|
198 |
msgstr "Letter"
|
199 |
|
200 |
# @ wpo_wcpdf
|
201 |
-
#: includes/class-wcpdf-settings.php:
|
202 |
msgid "Shop header/logo"
|
203 |
msgstr "Hlavička / logo"
|
204 |
|
205 |
# @ wpo_wcpdf
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
msgid "Select or upload your invoice header/logo"
|
208 |
msgstr "Vyberte alebo nahrajte hlavičku / logo vo faktúre"
|
209 |
|
210 |
# @ wpo_wcpdf
|
211 |
-
#: includes/class-wcpdf-settings.php:
|
212 |
msgid "Set image"
|
213 |
msgstr "Zvoliť obrázok"
|
214 |
|
215 |
# @ wpo_wcpdf
|
216 |
-
#: includes/class-wcpdf-settings.php:
|
217 |
msgid "Remove image"
|
218 |
msgstr "Odstrániť obrázok"
|
219 |
|
220 |
# @ wpo_wcpdf
|
221 |
-
#: includes/class-wcpdf-settings.php:
|
222 |
msgid "Shop Name"
|
223 |
msgstr "Názov obchodu"
|
224 |
|
225 |
# @ wpo_wcpdf
|
226 |
-
#: includes/class-wcpdf-settings.php:
|
227 |
msgid "Shop Address"
|
228 |
msgstr "Adresa obchodu"
|
229 |
|
230 |
# @ wpo_wcpdf
|
231 |
-
#: includes/class-wcpdf-settings.php:
|
232 |
msgid "Footer: terms & conditions, policies, etc."
|
233 |
msgstr "Pätička: obchodné podmienky, ochrana osobných údajov, atď."
|
234 |
|
235 |
# @ wpo_wcpdf
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "Number to display on invoice"
|
238 |
msgstr "Číslo zobrazené vo faktúre"
|
239 |
|
240 |
# @ wpo_wcpdf
|
241 |
-
#: includes/class-wcpdf-settings.php:
|
242 |
msgid "WooCommerce order number"
|
243 |
msgstr "Číslo objednávky"
|
244 |
|
245 |
# @ wpo_wcpdf
|
246 |
-
#: includes/class-wcpdf-settings.php:
|
247 |
msgid "Built-in sequential invoice number"
|
248 |
msgstr "Poradové číslo faktúry"
|
249 |
|
250 |
# @ wpo_wcpdf
|
251 |
-
#: includes/class-wcpdf-settings.php:
|
252 |
msgid ""
|
253 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
254 |
"WooCommerce order number"
|
@@ -257,12 +256,12 @@ msgstr ""
|
|
257 |
"Číslo objednávky"
|
258 |
|
259 |
# @ wpo_wcpdf
|
260 |
-
#: includes/class-wcpdf-settings.php:
|
261 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
262 |
msgstr "Ďalšie číslo faktúry (bez predpony/prípony)"
|
263 |
|
264 |
# @ wpo_wcpdf
|
265 |
-
#: includes/class-wcpdf-settings.php:
|
266 |
msgid ""
|
267 |
"This is the number that will be used on the next invoice that is created. By "
|
268 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -276,96 +275,96 @@ msgstr ""
|
|
276 |
"faktúra, môže dôjsť k zdvojeniu číslovania vo faktúrach!"
|
277 |
|
278 |
# @ wpo_wcpdf
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
#, fuzzy
|
281 |
msgid "Invoice number format"
|
282 |
msgstr "Číslo faktúry"
|
283 |
|
284 |
-
#: includes/class-wcpdf-settings.php:
|
285 |
msgid "Prefix"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: includes/class-wcpdf-settings.php:
|
289 |
msgid ""
|
290 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
291 |
"respectively"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
295 |
msgid "Suffix"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/class-wcpdf-settings.php:
|
299 |
msgid "Padding"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/class-wcpdf-settings.php:
|
303 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/class-wcpdf-settings.php:
|
307 |
msgid ""
|
308 |
"note: if you have already created a custom invoice number format with a "
|
309 |
"filter, the above settings will be ignored"
|
310 |
msgstr ""
|
311 |
|
312 |
# @ wpo_wcpdf
|
313 |
-
#: includes/class-wcpdf-settings.php:
|
314 |
msgid "Date to display on invoice"
|
315 |
msgstr "Dátum zobrazený vo faktúre"
|
316 |
|
317 |
# @ wpo_wcpdf
|
318 |
-
#: includes/class-wcpdf-settings.php:
|
319 |
msgid "Order date"
|
320 |
msgstr "Dátum objednávky"
|
321 |
|
322 |
# @ wpo_wcpdf
|
323 |
-
#: includes/class-wcpdf-settings.php:
|
324 |
msgid "Invoice date"
|
325 |
msgstr "Dátum vystavenia faktúry"
|
326 |
|
327 |
# @ wpo_wcpdf
|
328 |
-
#: includes/class-wcpdf-settings.php:
|
329 |
msgid "Extra template fields"
|
330 |
msgstr "Extra políčka v šablóne"
|
331 |
|
332 |
# @ wpo_wcpdf
|
333 |
-
#: includes/class-wcpdf-settings.php:
|
334 |
msgid "Extra field 1"
|
335 |
msgstr "Extra políčko 1"
|
336 |
|
337 |
# @ wpo_wcpdf
|
338 |
-
#: includes/class-wcpdf-settings.php:
|
339 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
340 |
msgstr "Toto je 1. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
341 |
|
342 |
# @ wpo_wcpdf
|
343 |
-
#: includes/class-wcpdf-settings.php:
|
344 |
msgid "Extra field 2"
|
345 |
msgstr "Extra políčko 2"
|
346 |
|
347 |
# @ wpo_wcpdf
|
348 |
-
#: includes/class-wcpdf-settings.php:
|
349 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
350 |
msgstr "Toto je 2. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
351 |
|
352 |
# @ wpo_wcpdf
|
353 |
-
#: includes/class-wcpdf-settings.php:
|
354 |
msgid "Extra field 3"
|
355 |
msgstr "Extra políčko 3"
|
356 |
|
357 |
# @ wpo_wcpdf
|
358 |
-
#: includes/class-wcpdf-settings.php:
|
359 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
360 |
msgstr "Toto je 3. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
361 |
|
362 |
# @ default
|
363 |
-
#: includes/class-wcpdf-settings.php:
|
364 |
msgid "Image resolution"
|
365 |
msgstr "Rozlíšenie obrázka"
|
366 |
|
367 |
# @ wpo_wcpdf
|
368 |
-
#: includes/class-wcpdf-settings.php:
|
369 |
msgid ""
|
370 |
"These are used for the (optional) footer columns in the <em>Modern "
|
371 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -381,36 +380,50 @@ msgid "Invoice Number"
|
|
381 |
msgstr "Číslo faktúry"
|
382 |
|
383 |
# @ wpo_wcpdf
|
384 |
-
#: includes/class-wcpdf-writepanels.php:
|
385 |
-
msgid "Create PDF"
|
386 |
-
msgstr "Vytvoriť PDF"
|
387 |
-
|
388 |
-
# @ wpo_wcpdf
|
389 |
-
#: includes/class-wcpdf-writepanels.php:143
|
390 |
msgid "Download invoice (PDF)"
|
391 |
msgstr "Stiahnuť faktúru (PDF)"
|
392 |
|
393 |
# @ wpo_wcpdf
|
394 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "PDF invoice"
|
396 |
msgstr "PDF faktúra"
|
397 |
|
398 |
# @ wpo_wcpdf
|
399 |
-
#: includes/class-wcpdf-writepanels.php:
|
400 |
msgid "PDF Packing Slip"
|
401 |
msgstr "PDF dodací list"
|
402 |
|
403 |
# @ wpo_wcpdf
|
404 |
-
#: includes/class-wcpdf-writepanels.php:
|
405 |
-
#: includes/class-wcpdf-writepanels.php:
|
406 |
msgid "PDF Packing Slips"
|
407 |
msgstr "PDF dodacie listy"
|
408 |
|
409 |
# @ wpo_wcpdf
|
410 |
-
#: includes/class-wcpdf-writepanels.php:
|
411 |
msgid "PDF Invoice Number (unformatted!)"
|
412 |
msgstr "Číslo faktúry (mimo formátovania!)"
|
413 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
# @ wpo_wcpdf
|
415 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
416 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
@@ -424,11 +437,6 @@ msgstr "Faktúra"
|
|
424 |
msgid "Packing Slip"
|
425 |
msgstr "Dodací list"
|
426 |
|
427 |
-
# @ wpo_wcpdf
|
428 |
-
#: templates/pdf/Simple/invoice.php:37
|
429 |
-
msgid "Invoice Date:"
|
430 |
-
msgstr "Dátum vystavenia faktúry:"
|
431 |
-
|
432 |
# @ wpo_wcpdf
|
433 |
#: templates/pdf/Simple/invoice.php:40
|
434 |
#: templates/pdf/Simple/packing-slip.php:30
|
@@ -475,18 +483,23 @@ msgstr "Popis"
|
|
475 |
|
476 |
# @ wpo_wcpdf
|
477 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
|
|
478 |
#: templates/pdf/Simple/packing-slip.php:54
|
479 |
msgid "SKU:"
|
480 |
msgstr "Kód:"
|
481 |
|
482 |
# @ wpo_wcpdf
|
483 |
-
#: templates/pdf/Simple/invoice.php:
|
484 |
#: templates/pdf/Simple/packing-slip.php:55
|
485 |
msgid "Weight:"
|
486 |
msgstr "Hmotnosť:"
|
487 |
|
488 |
# @ wpo_wcpdf
|
489 |
-
#: templates/pdf/Simple/invoice.php:
|
490 |
#: templates/pdf/Simple/packing-slip.php:69
|
491 |
msgid "Customer Notes"
|
492 |
msgstr "Poznámky"
|
@@ -508,41 +521,41 @@ msgid "N/A"
|
|
508 |
msgstr "N/A"
|
509 |
|
510 |
# @ wpo_wcpdf
|
511 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
512 |
msgid "Payment method"
|
513 |
msgstr "Spôsob platby"
|
514 |
|
515 |
# @ wpo_wcpdf
|
516 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
517 |
msgid "Shipping method"
|
518 |
msgstr "Doprava"
|
519 |
|
520 |
# @ wpo_wcpdf
|
521 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
522 |
msgid "Subtotal"
|
523 |
msgstr "Medzisúčet"
|
524 |
|
525 |
# @ wpo_wcpdf
|
526 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
527 |
msgid "Shipping"
|
528 |
msgstr "Doprava"
|
529 |
|
530 |
# @ wpo_wcpdf
|
531 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
532 |
msgid "Discount"
|
533 |
msgstr "Zľava"
|
534 |
|
535 |
# @ wpo_wcpdf
|
536 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
537 |
msgid "VAT"
|
538 |
msgstr "DPH"
|
539 |
|
540 |
# @ default
|
541 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
542 |
msgid "Total ex. VAT"
|
543 |
msgstr "Spolu bez DPH"
|
544 |
|
545 |
# @ default
|
546 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
547 |
msgid "Total"
|
548 |
msgstr "Spolu"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-18 15:10+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-18 15:10+0100\n"
|
7 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
8 |
"Language-Team: KubiQ <7kubiq7@gmail.com>\n"
|
9 |
"Language: sk_SK\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
|
14 |
+
"X-Generator: Poedit 1.6.9\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ wpo_wcpdf
|
23 |
+
#: includes/class-wcpdf-export.php:168 includes/class-wcpdf-export.php:173
|
24 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
25 |
+
#: includes/class-wcpdf-export.php:202
|
26 |
msgid "You do not have sufficient permissions to access this page."
|
27 |
msgstr "Nemáte dostatočné oprávnenia na prístup k tejto stránke."
|
28 |
|
29 |
# This is a filename (prefix). do not use spaces or special characters!
|
30 |
# @ wpo_wcpdf
|
31 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
32 |
msgid "invoice"
|
33 |
msgid_plural "invoices"
|
34 |
msgstr[0] "faktury"
|
37 |
|
38 |
# This is a filename (prefix). do not use spaces or special characters!
|
39 |
# @ wpo_wcpdf
|
40 |
+
#: includes/class-wcpdf-export.php:225
|
41 |
msgid "packing-slip"
|
42 |
msgid_plural "packing-slips"
|
43 |
msgstr[0] "dodacie-listy"
|
46 |
|
47 |
# @ wpo_wcpdf
|
48 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
49 |
+
#: includes/class-wcpdf-writepanels.php:176
|
50 |
+
#: includes/class-wcpdf-writepanels.php:177
|
51 |
msgid "PDF Invoices"
|
52 |
msgstr "PDF faktúry"
|
53 |
|
167 |
msgstr "Nastavenia PDF šablón"
|
168 |
|
169 |
# @ wpo_wcpdf
|
170 |
+
#: includes/class-wcpdf-settings.php:271
|
171 |
msgid "Choose a template"
|
172 |
msgstr "Zvoľte šablónu"
|
173 |
|
174 |
# @ wpo_wcpdf
|
175 |
+
#: includes/class-wcpdf-settings.php:279
|
176 |
+
#, php-format
|
177 |
msgid ""
|
178 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
179 |
+
"<code>%s</code> to customize them"
|
|
|
180 |
msgstr ""
|
181 |
+
"Chcete použiť vlastnú šablónu? Skopírujte všetky súbory z <code>%s</code> do "
|
182 |
+
"<code>%s</code> a upravte ich podľa potreby"
|
|
|
183 |
|
184 |
# @ wpo_wcpdf
|
185 |
+
#: includes/class-wcpdf-settings.php:285
|
186 |
msgid "Paper size"
|
187 |
msgstr "Veľkosť papiera"
|
188 |
|
189 |
# @ wpo_wcpdf
|
190 |
+
#: includes/class-wcpdf-settings.php:293
|
191 |
msgid "A4"
|
192 |
msgstr "A4"
|
193 |
|
194 |
# @ wpo_wcpdf
|
195 |
+
#: includes/class-wcpdf-settings.php:294
|
196 |
msgid "Letter"
|
197 |
msgstr "Letter"
|
198 |
|
199 |
# @ wpo_wcpdf
|
200 |
+
#: includes/class-wcpdf-settings.php:301
|
201 |
msgid "Shop header/logo"
|
202 |
msgstr "Hlavička / logo"
|
203 |
|
204 |
# @ wpo_wcpdf
|
205 |
+
#: includes/class-wcpdf-settings.php:308
|
206 |
msgid "Select or upload your invoice header/logo"
|
207 |
msgstr "Vyberte alebo nahrajte hlavičku / logo vo faktúre"
|
208 |
|
209 |
# @ wpo_wcpdf
|
210 |
+
#: includes/class-wcpdf-settings.php:309
|
211 |
msgid "Set image"
|
212 |
msgstr "Zvoliť obrázok"
|
213 |
|
214 |
# @ wpo_wcpdf
|
215 |
+
#: includes/class-wcpdf-settings.php:310
|
216 |
msgid "Remove image"
|
217 |
msgstr "Odstrániť obrázok"
|
218 |
|
219 |
# @ wpo_wcpdf
|
220 |
+
#: includes/class-wcpdf-settings.php:317
|
221 |
msgid "Shop Name"
|
222 |
msgstr "Názov obchodu"
|
223 |
|
224 |
# @ wpo_wcpdf
|
225 |
+
#: includes/class-wcpdf-settings.php:330
|
226 |
msgid "Shop Address"
|
227 |
msgstr "Adresa obchodu"
|
228 |
|
229 |
# @ wpo_wcpdf
|
230 |
+
#: includes/class-wcpdf-settings.php:362
|
231 |
msgid "Footer: terms & conditions, policies, etc."
|
232 |
msgstr "Pätička: obchodné podmienky, ochrana osobných údajov, atď."
|
233 |
|
234 |
# @ wpo_wcpdf
|
235 |
+
#: includes/class-wcpdf-settings.php:377
|
236 |
msgid "Number to display on invoice"
|
237 |
msgstr "Číslo zobrazené vo faktúre"
|
238 |
|
239 |
# @ wpo_wcpdf
|
240 |
+
#: includes/class-wcpdf-settings.php:385
|
241 |
msgid "WooCommerce order number"
|
242 |
msgstr "Číslo objednávky"
|
243 |
|
244 |
# @ wpo_wcpdf
|
245 |
+
#: includes/class-wcpdf-settings.php:386
|
246 |
msgid "Built-in sequential invoice number"
|
247 |
msgstr "Poradové číslo faktúry"
|
248 |
|
249 |
# @ wpo_wcpdf
|
250 |
+
#: includes/class-wcpdf-settings.php:388
|
251 |
msgid ""
|
252 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
253 |
"WooCommerce order number"
|
256 |
"Číslo objednávky"
|
257 |
|
258 |
# @ wpo_wcpdf
|
259 |
+
#: includes/class-wcpdf-settings.php:394
|
260 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
261 |
msgstr "Ďalšie číslo faktúry (bez predpony/prípony)"
|
262 |
|
263 |
# @ wpo_wcpdf
|
264 |
+
#: includes/class-wcpdf-settings.php:402
|
265 |
msgid ""
|
266 |
"This is the number that will be used on the next invoice that is created. By "
|
267 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
275 |
"faktúra, môže dôjsť k zdvojeniu číslovania vo faktúrach!"
|
276 |
|
277 |
# @ wpo_wcpdf
|
278 |
+
#: includes/class-wcpdf-settings.php:408
|
279 |
#, fuzzy
|
280 |
msgid "Invoice number format"
|
281 |
msgstr "Číslo faktúry"
|
282 |
|
283 |
+
#: includes/class-wcpdf-settings.php:417
|
284 |
msgid "Prefix"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/class-wcpdf-settings.php:419
|
288 |
msgid ""
|
289 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
290 |
"respectively"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:422
|
294 |
msgid "Suffix"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-wcpdf-settings.php:427
|
298 |
msgid "Padding"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-wcpdf-settings.php:429
|
302 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-wcpdf-settings.php:432
|
306 |
msgid ""
|
307 |
"note: if you have already created a custom invoice number format with a "
|
308 |
"filter, the above settings will be ignored"
|
309 |
msgstr ""
|
310 |
|
311 |
# @ wpo_wcpdf
|
312 |
+
#: includes/class-wcpdf-settings.php:440
|
313 |
msgid "Date to display on invoice"
|
314 |
msgstr "Dátum zobrazený vo faktúre"
|
315 |
|
316 |
# @ wpo_wcpdf
|
317 |
+
#: includes/class-wcpdf-settings.php:448
|
318 |
msgid "Order date"
|
319 |
msgstr "Dátum objednávky"
|
320 |
|
321 |
# @ wpo_wcpdf
|
322 |
+
#: includes/class-wcpdf-settings.php:449
|
323 |
msgid "Invoice date"
|
324 |
msgstr "Dátum vystavenia faktúry"
|
325 |
|
326 |
# @ wpo_wcpdf
|
327 |
+
#: includes/class-wcpdf-settings.php:457
|
328 |
msgid "Extra template fields"
|
329 |
msgstr "Extra políčka v šablóne"
|
330 |
|
331 |
# @ wpo_wcpdf
|
332 |
+
#: includes/class-wcpdf-settings.php:464
|
333 |
msgid "Extra field 1"
|
334 |
msgstr "Extra políčko 1"
|
335 |
|
336 |
# @ wpo_wcpdf
|
337 |
+
#: includes/class-wcpdf-settings.php:473
|
338 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
339 |
msgstr "Toto je 1. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
340 |
|
341 |
# @ wpo_wcpdf
|
342 |
+
#: includes/class-wcpdf-settings.php:479
|
343 |
msgid "Extra field 2"
|
344 |
msgstr "Extra políčko 2"
|
345 |
|
346 |
# @ wpo_wcpdf
|
347 |
+
#: includes/class-wcpdf-settings.php:488
|
348 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
349 |
msgstr "Toto je 2. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
350 |
|
351 |
# @ wpo_wcpdf
|
352 |
+
#: includes/class-wcpdf-settings.php:494
|
353 |
msgid "Extra field 3"
|
354 |
msgstr "Extra políčko 3"
|
355 |
|
356 |
# @ wpo_wcpdf
|
357 |
+
#: includes/class-wcpdf-settings.php:503
|
358 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
359 |
msgstr "Toto je 3. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
360 |
|
361 |
# @ default
|
362 |
+
#: includes/class-wcpdf-settings.php:760
|
363 |
msgid "Image resolution"
|
364 |
msgstr "Rozlíšenie obrázka"
|
365 |
|
366 |
# @ wpo_wcpdf
|
367 |
+
#: includes/class-wcpdf-settings.php:871
|
368 |
msgid ""
|
369 |
"These are used for the (optional) footer columns in the <em>Modern "
|
370 |
"(Premium)</em> template, but can also be used for other elements in your "
|
380 |
msgstr "Číslo faktúry"
|
381 |
|
382 |
# @ wpo_wcpdf
|
383 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
|
|
384 |
msgid "Download invoice (PDF)"
|
385 |
msgstr "Stiahnuť faktúru (PDF)"
|
386 |
|
387 |
# @ wpo_wcpdf
|
388 |
+
#: includes/class-wcpdf-writepanels.php:150
|
389 |
+
msgid "Create PDF"
|
390 |
+
msgstr "Vytvoriť PDF"
|
391 |
+
|
392 |
+
# @ wpo_wcpdf
|
393 |
+
#: includes/class-wcpdf-writepanels.php:160
|
394 |
msgid "PDF invoice"
|
395 |
msgstr "PDF faktúra"
|
396 |
|
397 |
# @ wpo_wcpdf
|
398 |
+
#: includes/class-wcpdf-writepanels.php:161
|
399 |
msgid "PDF Packing Slip"
|
400 |
msgstr "PDF dodací list"
|
401 |
|
402 |
# @ wpo_wcpdf
|
403 |
+
#: includes/class-wcpdf-writepanels.php:178
|
404 |
+
#: includes/class-wcpdf-writepanels.php:179
|
405 |
msgid "PDF Packing Slips"
|
406 |
msgstr "PDF dodacie listy"
|
407 |
|
408 |
# @ wpo_wcpdf
|
409 |
+
#: includes/class-wcpdf-writepanels.php:192
|
410 |
msgid "PDF Invoice Number (unformatted!)"
|
411 |
msgstr "Číslo faktúry (mimo formátovania!)"
|
412 |
|
413 |
+
# @ wpo_wcpdf
|
414 |
+
#: includes/class-wcpdf-writepanels.php:195
|
415 |
+
#: templates/pdf/Simple/invoice.php:37
|
416 |
+
msgid "Invoice Date:"
|
417 |
+
msgstr "Dátum vystavenia faktúry:"
|
418 |
+
|
419 |
+
#: includes/class-wcpdf-writepanels.php:196
|
420 |
+
msgid "h"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: includes/class-wcpdf-writepanels.php:196
|
424 |
+
msgid "m"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
# @ wpo_wcpdf
|
428 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
429 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
437 |
msgid "Packing Slip"
|
438 |
msgstr "Dodací list"
|
439 |
|
|
|
|
|
|
|
|
|
|
|
440 |
# @ wpo_wcpdf
|
441 |
#: templates/pdf/Simple/invoice.php:40
|
442 |
#: templates/pdf/Simple/packing-slip.php:30
|
483 |
|
484 |
# @ wpo_wcpdf
|
485 |
#: templates/pdf/Simple/invoice.php:80
|
486 |
+
msgid "SKU"
|
487 |
+
msgstr "Kód"
|
488 |
+
|
489 |
+
# @ wpo_wcpdf
|
490 |
+
#: templates/pdf/Simple/invoice.php:81
|
491 |
#: templates/pdf/Simple/packing-slip.php:54
|
492 |
msgid "SKU:"
|
493 |
msgstr "Kód:"
|
494 |
|
495 |
# @ wpo_wcpdf
|
496 |
+
#: templates/pdf/Simple/invoice.php:82
|
497 |
#: templates/pdf/Simple/packing-slip.php:55
|
498 |
msgid "Weight:"
|
499 |
msgstr "Hmotnosť:"
|
500 |
|
501 |
# @ wpo_wcpdf
|
502 |
+
#: templates/pdf/Simple/invoice.php:114
|
503 |
#: templates/pdf/Simple/packing-slip.php:69
|
504 |
msgid "Customer Notes"
|
505 |
msgstr "Poznámky"
|
521 |
msgstr "N/A"
|
522 |
|
523 |
# @ wpo_wcpdf
|
524 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
525 |
msgid "Payment method"
|
526 |
msgstr "Spôsob platby"
|
527 |
|
528 |
# @ wpo_wcpdf
|
529 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
530 |
msgid "Shipping method"
|
531 |
msgstr "Doprava"
|
532 |
|
533 |
# @ wpo_wcpdf
|
534 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
535 |
msgid "Subtotal"
|
536 |
msgstr "Medzisúčet"
|
537 |
|
538 |
# @ wpo_wcpdf
|
539 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
540 |
msgid "Shipping"
|
541 |
msgstr "Doprava"
|
542 |
|
543 |
# @ wpo_wcpdf
|
544 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
545 |
msgid "Discount"
|
546 |
msgstr "Zľava"
|
547 |
|
548 |
# @ wpo_wcpdf
|
549 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
550 |
msgid "VAT"
|
551 |
msgstr "DPH"
|
552 |
|
553 |
# @ default
|
554 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
555 |
msgid "Total ex. VAT"
|
556 |
msgstr "Spolu bez DPH"
|
557 |
|
558 |
# @ default
|
559 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
560 |
msgid "Total"
|
561 |
msgstr "Spolu"
|
languages/wpo_wcpdf-sv_SE.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-sv_SE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Fredrik Rudin <fredrik.rudin@outlook.com>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -16,30 +16,30 @@ msgstr ""
|
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Generator: Poedit 1.6.
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: includes/class-wcpdf-export.php:
|
23 |
-
#: includes/class-wcpdf-export.php:
|
24 |
-
#: includes/class-wcpdf-export.php:
|
25 |
msgid "You do not have sufficient permissions to access this page."
|
26 |
msgstr "Du har inte behörighet att komma åt den här sidan."
|
27 |
|
28 |
-
#: includes/class-wcpdf-export.php:
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "faktura"
|
32 |
msgstr[1] "fakturor"
|
33 |
|
34 |
-
#: includes/class-wcpdf-export.php:
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "följesedel"
|
38 |
msgstr[1] "följesedlarna"
|
39 |
|
40 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
-
#: includes/class-wcpdf-writepanels.php:
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr "E-fakturor"
|
45 |
|
@@ -138,73 +138,72 @@ msgstr "Aktivera fakturanummer i orderlistan."
|
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF-mall inställningar"
|
140 |
|
141 |
-
#: includes/class-wcpdf-settings.php:
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Välj en mall"
|
144 |
|
145 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
146 |
msgid ""
|
147 |
-
"Want to use your own template? Copy all the files from <code>
|
148 |
-
"
|
149 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
150 |
msgstr ""
|
151 |
-
"Vill du använda en egen mall? Kopiera alla filer från <code>
|
152 |
-
"
|
153 |
-
"woocommerce/pdf/yourtemplate/</code> för att redigera dem"
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Paper size"
|
157 |
msgstr "Pappersstorlek"
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Letter"
|
165 |
msgstr "Letter (US)"
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Shop header/logo"
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Välj eller ladda upp din faktura header/logo"
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Set image"
|
177 |
msgstr "Välj bild"
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Remove image"
|
181 |
msgstr "Ta bort bild"
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Shop namn"
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Shop adress"
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Sidfot: villkor, policy, osv."
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Number to display on invoice"
|
197 |
msgstr "Nummer att visa på faktura"
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "WooCommerce order number"
|
201 |
msgstr "WooCommerce ordernummer"
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
msgid "Built-in sequential invoice number"
|
205 |
msgstr "Inbyggda sekvensnummer för order"
|
206 |
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid ""
|
209 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
210 |
"WooCommerce order number"
|
@@ -212,11 +211,11 @@ msgstr ""
|
|
212 |
"Om du använder WooCommerce \"Sequential Order Numbers plugin\", välj "
|
213 |
"WooCommerce ordernummer."
|
214 |
|
215 |
-
#: includes/class-wcpdf-settings.php:
|
216 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
217 |
msgstr "Nästa ordernummer (utan prefix/suffix etc.)"
|
218 |
|
219 |
-
#: includes/class-wcpdf-settings.php:
|
220 |
msgid ""
|
221 |
"This is the number that will be used on the next invoice that is created. By "
|
222 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -230,84 +229,84 @@ msgstr ""
|
|
230 |
"skriver över detta och sätter ett lägre värde än det högsta (PDF) faktura "
|
231 |
"nummret så kan det resultera i dubbla fakturanummer."
|
232 |
|
233 |
-
#: includes/class-wcpdf-settings.php:
|
234 |
#, fuzzy
|
235 |
msgid "Invoice number format"
|
236 |
msgstr "Fakturanummer"
|
237 |
|
238 |
-
#: includes/class-wcpdf-settings.php:
|
239 |
msgid "Prefix"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-wcpdf-settings.php:
|
243 |
msgid ""
|
244 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
245 |
"respectively"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/class-wcpdf-settings.php:
|
249 |
msgid "Suffix"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/class-wcpdf-settings.php:
|
253 |
msgid "Padding"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/class-wcpdf-settings.php:
|
257 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/class-wcpdf-settings.php:
|
261 |
msgid ""
|
262 |
"note: if you have already created a custom invoice number format with a "
|
263 |
"filter, the above settings will be ignored"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/class-wcpdf-settings.php:
|
267 |
msgid "Date to display on invoice"
|
268 |
msgstr "Datum att visa på faktura"
|
269 |
|
270 |
-
#: includes/class-wcpdf-settings.php:
|
271 |
msgid "Order date"
|
272 |
msgstr "Orderdatum"
|
273 |
|
274 |
-
#: includes/class-wcpdf-settings.php:
|
275 |
msgid "Invoice date"
|
276 |
msgstr "Fakturadatum"
|
277 |
|
278 |
-
#: includes/class-wcpdf-settings.php:
|
279 |
msgid "Extra template fields"
|
280 |
msgstr "Extra mallfält"
|
281 |
|
282 |
-
#: includes/class-wcpdf-settings.php:
|
283 |
msgid "Extra field 1"
|
284 |
msgstr "Extra fält 1"
|
285 |
|
286 |
-
#: includes/class-wcpdf-settings.php:
|
287 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
288 |
msgstr "Kolumn nummer 1 i footer <i>Modern (Premium)</i> mallen"
|
289 |
|
290 |
-
#: includes/class-wcpdf-settings.php:
|
291 |
msgid "Extra field 2"
|
292 |
msgstr "Extra fält 2"
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
295 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
296 |
msgstr "Kolumn nummer 2 i footer <i>Modern (Premium)</i> mallen"
|
297 |
|
298 |
-
#: includes/class-wcpdf-settings.php:
|
299 |
msgid "Extra field 3"
|
300 |
msgstr "Extra fält 3"
|
301 |
|
302 |
-
#: includes/class-wcpdf-settings.php:
|
303 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
304 |
msgstr "Kolumn nummer 3 i footer <i>Modern (Premium)</i> mallen"
|
305 |
|
306 |
-
#: includes/class-wcpdf-settings.php:
|
307 |
msgid "Image resolution"
|
308 |
msgstr "Bildupplösning"
|
309 |
|
310 |
-
#: includes/class-wcpdf-settings.php:
|
311 |
msgid ""
|
312 |
"These are used for the (optional) footer columns in the <em>Modern "
|
313 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -321,31 +320,44 @@ msgstr ""
|
|
321 |
msgid "Invoice Number"
|
322 |
msgstr "Fakturanummer"
|
323 |
|
324 |
-
#: includes/class-wcpdf-writepanels.php:
|
325 |
-
msgid "Create PDF"
|
326 |
-
msgstr "Skapa PDF"
|
327 |
-
|
328 |
-
#: includes/class-wcpdf-writepanels.php:143
|
329 |
msgid "Download invoice (PDF)"
|
330 |
msgstr "Ladda ner E-faktura"
|
331 |
|
332 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
333 |
msgid "PDF invoice"
|
334 |
msgstr "E-faktura"
|
335 |
|
336 |
-
#: includes/class-wcpdf-writepanels.php:
|
337 |
msgid "PDF Packing Slip"
|
338 |
msgstr "följesedel (PDF)"
|
339 |
|
340 |
-
#: includes/class-wcpdf-writepanels.php:
|
341 |
-
#: includes/class-wcpdf-writepanels.php:
|
342 |
msgid "PDF Packing Slips"
|
343 |
msgstr "följesedlar (PDF)"
|
344 |
|
345 |
-
#: includes/class-wcpdf-writepanels.php:
|
346 |
msgid "PDF Invoice Number (unformatted!)"
|
347 |
msgstr "E-fakturanummer (oformaterat!)"
|
348 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
350 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
351 |
msgid "Invoice"
|
@@ -357,10 +369,6 @@ msgstr "Faktura"
|
|
357 |
msgid "Packing Slip"
|
358 |
msgstr "Följesedel"
|
359 |
|
360 |
-
#: templates/pdf/Simple/invoice.php:37
|
361 |
-
msgid "Invoice Date:"
|
362 |
-
msgstr "Fakturadatum:"
|
363 |
-
|
364 |
#: templates/pdf/Simple/invoice.php:40
|
365 |
#: templates/pdf/Simple/packing-slip.php:30
|
366 |
msgid "Order Date:"
|
@@ -398,16 +406,20 @@ msgid "Description"
|
|
398 |
msgstr "Beskrivning"
|
399 |
|
400 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
401 |
#: templates/pdf/Simple/packing-slip.php:54
|
402 |
msgid "SKU:"
|
403 |
msgstr "SKU:"
|
404 |
|
405 |
-
#: templates/pdf/Simple/invoice.php:
|
406 |
#: templates/pdf/Simple/packing-slip.php:55
|
407 |
msgid "Weight:"
|
408 |
msgstr "Vikt:"
|
409 |
|
410 |
-
#: templates/pdf/Simple/invoice.php:
|
411 |
#: templates/pdf/Simple/packing-slip.php:69
|
412 |
msgid "Customer Notes"
|
413 |
msgstr "Kundnoteringar"
|
@@ -426,35 +438,35 @@ msgstr ""
|
|
426 |
msgid "N/A"
|
427 |
msgstr "N/A"
|
428 |
|
429 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
430 |
msgid "Payment method"
|
431 |
msgstr "Betalningsätt"
|
432 |
|
433 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
434 |
msgid "Shipping method"
|
435 |
msgstr "Fraktmetod"
|
436 |
|
437 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
438 |
msgid "Subtotal"
|
439 |
msgstr "Totalt"
|
440 |
|
441 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
442 |
msgid "Shipping"
|
443 |
msgstr "Frakt"
|
444 |
|
445 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
446 |
msgid "Discount"
|
447 |
msgstr "Rabatt"
|
448 |
|
449 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
450 |
msgid "VAT"
|
451 |
msgstr "MOMS"
|
452 |
|
453 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
454 |
msgid "Total ex. VAT"
|
455 |
msgstr "Totalt ex. MOMS"
|
456 |
|
457 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
458 |
msgid "Total"
|
459 |
msgstr "Totalt"
|
460 |
|
@@ -471,9 +483,6 @@ msgstr "Totalt"
|
|
471 |
#~ msgstr ""
|
472 |
#~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
|
473 |
|
474 |
-
#~ msgid "SKU"
|
475 |
-
#~ msgstr "Artikelnummer"
|
476 |
-
|
477 |
#~ msgid "Order number"
|
478 |
#~ msgstr "Factuurnummer"
|
479 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-18 15:10+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-18 15:10+0100\n"
|
7 |
"Last-Translator: Fredrik Rudin <fredrik.rudin@outlook.com>\n"
|
8 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
9 |
"Language: nl_NL\n"
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Generator: Poedit 1.6.9\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: includes/class-wcpdf-export.php:168 includes/class-wcpdf-export.php:173
|
23 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
24 |
+
#: includes/class-wcpdf-export.php:202
|
25 |
msgid "You do not have sufficient permissions to access this page."
|
26 |
msgstr "Du har inte behörighet att komma åt den här sidan."
|
27 |
|
28 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "faktura"
|
32 |
msgstr[1] "fakturor"
|
33 |
|
34 |
+
#: includes/class-wcpdf-export.php:225
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "följesedel"
|
38 |
msgstr[1] "följesedlarna"
|
39 |
|
40 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
41 |
+
#: includes/class-wcpdf-writepanels.php:176
|
42 |
+
#: includes/class-wcpdf-writepanels.php:177
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr "E-fakturor"
|
45 |
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF-mall inställningar"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:271
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Välj en mall"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:279
|
146 |
+
#, php-format
|
147 |
msgid ""
|
148 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
149 |
+
"<code>%s</code> to customize them"
|
|
|
150 |
msgstr ""
|
151 |
+
"Vill du använda en egen mall? Kopiera alla filer från <code>%s</code> till "
|
152 |
+
"<code>%s</code> för att redigera dem"
|
|
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:285
|
155 |
msgid "Paper size"
|
156 |
msgstr "Pappersstorlek"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:293
|
159 |
msgid "A4"
|
160 |
msgstr "A4"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:294
|
163 |
msgid "Letter"
|
164 |
msgstr "Letter (US)"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:301
|
167 |
msgid "Shop header/logo"
|
168 |
msgstr "Shop header/logo"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:308
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
msgstr "Välj eller ladda upp din faktura header/logo"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:309
|
175 |
msgid "Set image"
|
176 |
msgstr "Välj bild"
|
177 |
|
178 |
+
#: includes/class-wcpdf-settings.php:310
|
179 |
msgid "Remove image"
|
180 |
msgstr "Ta bort bild"
|
181 |
|
182 |
+
#: includes/class-wcpdf-settings.php:317
|
183 |
msgid "Shop Name"
|
184 |
msgstr "Shop namn"
|
185 |
|
186 |
+
#: includes/class-wcpdf-settings.php:330
|
187 |
msgid "Shop Address"
|
188 |
msgstr "Shop adress"
|
189 |
|
190 |
+
#: includes/class-wcpdf-settings.php:362
|
191 |
msgid "Footer: terms & conditions, policies, etc."
|
192 |
msgstr "Sidfot: villkor, policy, osv."
|
193 |
|
194 |
+
#: includes/class-wcpdf-settings.php:377
|
195 |
msgid "Number to display on invoice"
|
196 |
msgstr "Nummer att visa på faktura"
|
197 |
|
198 |
+
#: includes/class-wcpdf-settings.php:385
|
199 |
msgid "WooCommerce order number"
|
200 |
msgstr "WooCommerce ordernummer"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:386
|
203 |
msgid "Built-in sequential invoice number"
|
204 |
msgstr "Inbyggda sekvensnummer för order"
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:388
|
207 |
msgid ""
|
208 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
209 |
"WooCommerce order number"
|
211 |
"Om du använder WooCommerce \"Sequential Order Numbers plugin\", välj "
|
212 |
"WooCommerce ordernummer."
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:394
|
215 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
216 |
msgstr "Nästa ordernummer (utan prefix/suffix etc.)"
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:402
|
219 |
msgid ""
|
220 |
"This is the number that will be used on the next invoice that is created. By "
|
221 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
229 |
"skriver över detta och sätter ett lägre värde än det högsta (PDF) faktura "
|
230 |
"nummret så kan det resultera i dubbla fakturanummer."
|
231 |
|
232 |
+
#: includes/class-wcpdf-settings.php:408
|
233 |
#, fuzzy
|
234 |
msgid "Invoice number format"
|
235 |
msgstr "Fakturanummer"
|
236 |
|
237 |
+
#: includes/class-wcpdf-settings.php:417
|
238 |
msgid "Prefix"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/class-wcpdf-settings.php:419
|
242 |
msgid ""
|
243 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
244 |
"respectively"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/class-wcpdf-settings.php:422
|
248 |
msgid "Suffix"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/class-wcpdf-settings.php:427
|
252 |
msgid "Padding"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/class-wcpdf-settings.php:429
|
256 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/class-wcpdf-settings.php:432
|
260 |
msgid ""
|
261 |
"note: if you have already created a custom invoice number format with a "
|
262 |
"filter, the above settings will be ignored"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/class-wcpdf-settings.php:440
|
266 |
msgid "Date to display on invoice"
|
267 |
msgstr "Datum att visa på faktura"
|
268 |
|
269 |
+
#: includes/class-wcpdf-settings.php:448
|
270 |
msgid "Order date"
|
271 |
msgstr "Orderdatum"
|
272 |
|
273 |
+
#: includes/class-wcpdf-settings.php:449
|
274 |
msgid "Invoice date"
|
275 |
msgstr "Fakturadatum"
|
276 |
|
277 |
+
#: includes/class-wcpdf-settings.php:457
|
278 |
msgid "Extra template fields"
|
279 |
msgstr "Extra mallfält"
|
280 |
|
281 |
+
#: includes/class-wcpdf-settings.php:464
|
282 |
msgid "Extra field 1"
|
283 |
msgstr "Extra fält 1"
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:473
|
286 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
287 |
msgstr "Kolumn nummer 1 i footer <i>Modern (Premium)</i> mallen"
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:479
|
290 |
msgid "Extra field 2"
|
291 |
msgstr "Extra fält 2"
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:488
|
294 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
295 |
msgstr "Kolumn nummer 2 i footer <i>Modern (Premium)</i> mallen"
|
296 |
|
297 |
+
#: includes/class-wcpdf-settings.php:494
|
298 |
msgid "Extra field 3"
|
299 |
msgstr "Extra fält 3"
|
300 |
|
301 |
+
#: includes/class-wcpdf-settings.php:503
|
302 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
303 |
msgstr "Kolumn nummer 3 i footer <i>Modern (Premium)</i> mallen"
|
304 |
|
305 |
+
#: includes/class-wcpdf-settings.php:760
|
306 |
msgid "Image resolution"
|
307 |
msgstr "Bildupplösning"
|
308 |
|
309 |
+
#: includes/class-wcpdf-settings.php:871
|
310 |
msgid ""
|
311 |
"These are used for the (optional) footer columns in the <em>Modern "
|
312 |
"(Premium)</em> template, but can also be used for other elements in your "
|
320 |
msgid "Invoice Number"
|
321 |
msgstr "Fakturanummer"
|
322 |
|
323 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
324 |
msgid "Download invoice (PDF)"
|
325 |
msgstr "Ladda ner E-faktura"
|
326 |
|
327 |
+
#: includes/class-wcpdf-writepanels.php:150
|
328 |
+
msgid "Create PDF"
|
329 |
+
msgstr "Skapa PDF"
|
330 |
+
|
331 |
+
#: includes/class-wcpdf-writepanels.php:160
|
332 |
msgid "PDF invoice"
|
333 |
msgstr "E-faktura"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:161
|
336 |
msgid "PDF Packing Slip"
|
337 |
msgstr "följesedel (PDF)"
|
338 |
|
339 |
+
#: includes/class-wcpdf-writepanels.php:178
|
340 |
+
#: includes/class-wcpdf-writepanels.php:179
|
341 |
msgid "PDF Packing Slips"
|
342 |
msgstr "följesedlar (PDF)"
|
343 |
|
344 |
+
#: includes/class-wcpdf-writepanels.php:192
|
345 |
msgid "PDF Invoice Number (unformatted!)"
|
346 |
msgstr "E-fakturanummer (oformaterat!)"
|
347 |
|
348 |
+
#: includes/class-wcpdf-writepanels.php:195
|
349 |
+
#: templates/pdf/Simple/invoice.php:37
|
350 |
+
msgid "Invoice Date:"
|
351 |
+
msgstr "Fakturadatum:"
|
352 |
+
|
353 |
+
#: includes/class-wcpdf-writepanels.php:196
|
354 |
+
msgid "h"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: includes/class-wcpdf-writepanels.php:196
|
358 |
+
msgid "m"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
362 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
363 |
msgid "Invoice"
|
369 |
msgid "Packing Slip"
|
370 |
msgstr "Följesedel"
|
371 |
|
|
|
|
|
|
|
|
|
372 |
#: templates/pdf/Simple/invoice.php:40
|
373 |
#: templates/pdf/Simple/packing-slip.php:30
|
374 |
msgid "Order Date:"
|
406 |
msgstr "Beskrivning"
|
407 |
|
408 |
#: templates/pdf/Simple/invoice.php:80
|
409 |
+
msgid "SKU"
|
410 |
+
msgstr "Artikelnummer"
|
411 |
+
|
412 |
+
#: templates/pdf/Simple/invoice.php:81
|
413 |
#: templates/pdf/Simple/packing-slip.php:54
|
414 |
msgid "SKU:"
|
415 |
msgstr "SKU:"
|
416 |
|
417 |
+
#: templates/pdf/Simple/invoice.php:82
|
418 |
#: templates/pdf/Simple/packing-slip.php:55
|
419 |
msgid "Weight:"
|
420 |
msgstr "Vikt:"
|
421 |
|
422 |
+
#: templates/pdf/Simple/invoice.php:114
|
423 |
#: templates/pdf/Simple/packing-slip.php:69
|
424 |
msgid "Customer Notes"
|
425 |
msgstr "Kundnoteringar"
|
438 |
msgid "N/A"
|
439 |
msgstr "N/A"
|
440 |
|
441 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
442 |
msgid "Payment method"
|
443 |
msgstr "Betalningsätt"
|
444 |
|
445 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
446 |
msgid "Shipping method"
|
447 |
msgstr "Fraktmetod"
|
448 |
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
450 |
msgid "Subtotal"
|
451 |
msgstr "Totalt"
|
452 |
|
453 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
454 |
msgid "Shipping"
|
455 |
msgstr "Frakt"
|
456 |
|
457 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
458 |
msgid "Discount"
|
459 |
msgstr "Rabatt"
|
460 |
|
461 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
462 |
msgid "VAT"
|
463 |
msgstr "MOMS"
|
464 |
|
465 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
466 |
msgid "Total ex. VAT"
|
467 |
msgstr "Totalt ex. MOMS"
|
468 |
|
469 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
470 |
msgid "Total"
|
471 |
msgstr "Totalt"
|
472 |
|
483 |
#~ msgstr ""
|
484 |
#~ "Email factuur (voeg toe aan orderbevestigings-email of factuur email)"
|
485 |
|
|
|
|
|
|
|
486 |
#~ msgid "Order number"
|
487 |
#~ msgstr "Factuurnummer"
|
488 |
|
languages/wpo_wcpdf-uk.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-uk.po
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: de_DE\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.6.
|
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:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Ви не маєте достатньо прав для доступу до цієї сторінки."
|
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] "накладна"
|
30 |
msgstr[1] "накладні"
|
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] "Рахунок-Фактура"
|
37 |
msgstr[1] "Рахунки-Фактури"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Накладні"
|
44 |
|
@@ -138,73 +138,72 @@ msgstr ""
|
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF Налаштування шаблону"
|
140 |
|
141 |
-
#: includes/class-wcpdf-settings.php:
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Виберіть шаблон"
|
144 |
|
145 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
146 |
msgid ""
|
147 |
-
"Want to use your own template? Copy all the files from <code>
|
148 |
-
"
|
149 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
150 |
msgstr ""
|
151 |
-
"Хочете свій власний шаблон? Скопіюйте файли з папки <code>
|
152 |
-
"
|
153 |
-
"woocommerce/pdf/назва_шаблону/</code> і налаштуйте на свій розсуд."
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Paper size"
|
157 |
msgstr "Розмір паперу"
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "A4"
|
161 |
msgstr "А4"
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Letter"
|
165 |
msgstr "Лист"
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Логотип в шапці документа"
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Виберіть, щоб завантажити шапку/логотип для накладної"
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Set image"
|
177 |
msgstr "Встановити зображення"
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Remove image"
|
181 |
msgstr "Видалити зображення"
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Назва магазину"
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Адреса магазину"
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Підвал: терміни, умови, політика і тд."
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Number to display on invoice"
|
197 |
msgstr "Номер для відображення в накладній"
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid "WooCommerce order number"
|
201 |
msgstr "WooCommerce номер замовлення"
|
202 |
|
203 |
-
#: includes/class-wcpdf-settings.php:
|
204 |
msgid "Built-in sequential invoice number"
|
205 |
msgstr "Вбудований секвенсор номерів накладної"
|
206 |
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid ""
|
209 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
210 |
"WooCommerce order number"
|
@@ -212,11 +211,11 @@ msgstr ""
|
|
212 |
"Якщо ви використовуєте WooCommerce Sequential Order Numbers плагін, виберіть "
|
213 |
"WooCommerce номер замовлення"
|
214 |
|
215 |
-
#: includes/class-wcpdf-settings.php:
|
216 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
217 |
msgstr "Наступний номер накладної (без префікса/суфікса і тд.)"
|
218 |
|
219 |
-
#: includes/class-wcpdf-settings.php:
|
220 |
msgid ""
|
221 |
"This is the number that will be used on the next invoice that is created. By "
|
222 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -231,84 +230,84 @@ msgstr ""
|
|
231 |
"встановлюєте значення нижче ніж найбільший номер (PDF) накладної, це може "
|
232 |
"привести до створення дубльованої накладної!"
|
233 |
|
234 |
-
#: includes/class-wcpdf-settings.php:
|
235 |
#, fuzzy
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Номер накладної:"
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Prefix"
|
241 |
msgstr ""
|
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 |
|
249 |
-
#: includes/class-wcpdf-settings.php:
|
250 |
msgid "Suffix"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-wcpdf-settings.php:
|
254 |
msgid "Padding"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-wcpdf-settings.php:
|
258 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/class-wcpdf-settings.php:
|
262 |
msgid ""
|
263 |
"note: if you have already created a custom invoice number format with a "
|
264 |
"filter, the above settings will be ignored"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-wcpdf-settings.php:
|
268 |
msgid "Date to display on invoice"
|
269 |
msgstr "Дата для відображення в накладній"
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
msgid "Order date"
|
273 |
msgstr "Дата замовлення"
|
274 |
|
275 |
-
#: includes/class-wcpdf-settings.php:
|
276 |
msgid "Invoice date"
|
277 |
msgstr "Дата накладної"
|
278 |
|
279 |
-
#: includes/class-wcpdf-settings.php:
|
280 |
msgid "Extra template fields"
|
281 |
msgstr "Додаткові поля шаблону"
|
282 |
|
283 |
-
#: includes/class-wcpdf-settings.php:
|
284 |
msgid "Extra field 1"
|
285 |
msgstr "Додаткове поле 1"
|
286 |
|
287 |
-
#: includes/class-wcpdf-settings.php:
|
288 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
289 |
msgstr "Це колонка 1 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
290 |
|
291 |
-
#: includes/class-wcpdf-settings.php:
|
292 |
msgid "Extra field 2"
|
293 |
msgstr "Додаткове поле 2"
|
294 |
|
295 |
-
#: includes/class-wcpdf-settings.php:
|
296 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
297 |
msgstr "Це колонка 2 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
298 |
|
299 |
-
#: includes/class-wcpdf-settings.php:
|
300 |
msgid "Extra field 3"
|
301 |
msgstr "Додаткове поле 3"
|
302 |
|
303 |
-
#: includes/class-wcpdf-settings.php:
|
304 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
305 |
msgstr "Це колонка 3 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
306 |
|
307 |
-
#: includes/class-wcpdf-settings.php:
|
308 |
msgid "Image resolution"
|
309 |
msgstr "Дозвіл зображення"
|
310 |
|
311 |
-
#: includes/class-wcpdf-settings.php:
|
312 |
msgid ""
|
313 |
"These are used for the (optional) footer columns in the <em>Modern "
|
314 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -323,32 +322,45 @@ msgstr ""
|
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Номер накладної:"
|
325 |
|
326 |
-
#: includes/class-wcpdf-writepanels.php:
|
327 |
-
msgid "Create PDF"
|
328 |
-
msgstr "Створити PDF"
|
329 |
-
|
330 |
-
#: includes/class-wcpdf-writepanels.php:143
|
331 |
msgid "Download invoice (PDF)"
|
332 |
msgstr "Завантажити накладну (PDF)"
|
333 |
|
334 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
335 |
msgid "PDF invoice"
|
336 |
msgstr "PDF Накладна"
|
337 |
|
338 |
-
#: includes/class-wcpdf-writepanels.php:
|
339 |
msgid "PDF Packing Slip"
|
340 |
msgstr "PDF Рахунок-Фактура"
|
341 |
|
342 |
-
#: includes/class-wcpdf-writepanels.php:
|
343 |
-
#: includes/class-wcpdf-writepanels.php:
|
344 |
msgid "PDF Packing Slips"
|
345 |
msgstr "PDF Рахунки-Фактур"
|
346 |
|
347 |
-
#: includes/class-wcpdf-writepanels.php:
|
348 |
#, fuzzy
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
msgstr "PDF Номер накладної"
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
353 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
354 |
msgid "Invoice"
|
@@ -360,10 +372,6 @@ msgstr "Накладна"
|
|
360 |
msgid "Packing Slip"
|
361 |
msgstr "Рахунок-Фактура"
|
362 |
|
363 |
-
#: templates/pdf/Simple/invoice.php:37
|
364 |
-
msgid "Invoice Date:"
|
365 |
-
msgstr "Дата накладної"
|
366 |
-
|
367 |
#: templates/pdf/Simple/invoice.php:40
|
368 |
#: templates/pdf/Simple/packing-slip.php:30
|
369 |
msgid "Order Date:"
|
@@ -401,16 +409,21 @@ msgid "Description"
|
|
401 |
msgstr ""
|
402 |
|
403 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
|
|
|
|
|
|
|
|
404 |
#: templates/pdf/Simple/packing-slip.php:54
|
405 |
msgid "SKU:"
|
406 |
msgstr "ІТП:"
|
407 |
|
408 |
-
#: templates/pdf/Simple/invoice.php:
|
409 |
#: templates/pdf/Simple/packing-slip.php:55
|
410 |
msgid "Weight:"
|
411 |
msgstr "Вага:"
|
412 |
|
413 |
-
#: templates/pdf/Simple/invoice.php:
|
414 |
#: templates/pdf/Simple/packing-slip.php:69
|
415 |
msgid "Customer Notes"
|
416 |
msgstr "Примітки клієнта"
|
@@ -429,37 +442,37 @@ msgstr ""
|
|
429 |
msgid "N/A"
|
430 |
msgstr "N/A"
|
431 |
|
432 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
433 |
#, fuzzy
|
434 |
msgid "Payment method"
|
435 |
msgstr "Метод оплати:"
|
436 |
|
437 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
438 |
#, fuzzy
|
439 |
msgid "Shipping method"
|
440 |
msgstr "Доставка"
|
441 |
|
442 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
443 |
msgid "Subtotal"
|
444 |
msgstr "Проміжний підсумок"
|
445 |
|
446 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
447 |
msgid "Shipping"
|
448 |
msgstr "Доставка"
|
449 |
|
450 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
451 |
msgid "Discount"
|
452 |
msgstr "Знижка"
|
453 |
|
454 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
455 |
msgid "VAT"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
459 |
msgid "Total ex. VAT"
|
460 |
msgstr "Всього отл. ПДВ"
|
461 |
|
462 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
463 |
msgid "Total"
|
464 |
msgstr "Разом"
|
465 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:11+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:11+0100\n"
|
6 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: de_DE\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.6.9\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:168 includes/class-wcpdf-export.php:173
|
20 |
+
#: includes/class-wcpdf-export.php:178 includes/class-wcpdf-export.php:189
|
21 |
+
#: includes/class-wcpdf-export.php:202
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Ви не маєте достатньо прав для доступу до цієї сторінки."
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "накладна"
|
30 |
msgstr[1] "накладні"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:225
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Рахунок-Фактура"
|
37 |
msgstr[1] "Рахунки-Фактури"
|
38 |
|
39 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
40 |
+
#: includes/class-wcpdf-writepanels.php:176
|
41 |
+
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Накладні"
|
44 |
|
138 |
msgid "PDF Template settings"
|
139 |
msgstr "PDF Налаштування шаблону"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:271
|
142 |
msgid "Choose a template"
|
143 |
msgstr "Виберіть шаблон"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:279
|
146 |
+
#, php-format
|
147 |
msgid ""
|
148 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
149 |
+
"<code>%s</code> to customize them"
|
|
|
150 |
msgstr ""
|
151 |
+
"Хочете свій власний шаблон? Скопіюйте файли з папки <code>%s</code> в <code>"
|
152 |
+
"%s</code> і налаштуйте на свій розсуд."
|
|
|
153 |
|
154 |
+
#: includes/class-wcpdf-settings.php:285
|
155 |
msgid "Paper size"
|
156 |
msgstr "Розмір паперу"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:293
|
159 |
msgid "A4"
|
160 |
msgstr "А4"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:294
|
163 |
msgid "Letter"
|
164 |
msgstr "Лист"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:301
|
167 |
msgid "Shop header/logo"
|
168 |
msgstr "Логотип в шапці документа"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:308
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
msgstr "Виберіть, щоб завантажити шапку/логотип для накладної"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:309
|
175 |
msgid "Set image"
|
176 |
msgstr "Встановити зображення"
|
177 |
|
178 |
+
#: includes/class-wcpdf-settings.php:310
|
179 |
msgid "Remove image"
|
180 |
msgstr "Видалити зображення"
|
181 |
|
182 |
+
#: includes/class-wcpdf-settings.php:317
|
183 |
msgid "Shop Name"
|
184 |
msgstr "Назва магазину"
|
185 |
|
186 |
+
#: includes/class-wcpdf-settings.php:330
|
187 |
msgid "Shop Address"
|
188 |
msgstr "Адреса магазину"
|
189 |
|
190 |
+
#: includes/class-wcpdf-settings.php:362
|
191 |
msgid "Footer: terms & conditions, policies, etc."
|
192 |
msgstr "Підвал: терміни, умови, політика і тд."
|
193 |
|
194 |
+
#: includes/class-wcpdf-settings.php:377
|
195 |
msgid "Number to display on invoice"
|
196 |
msgstr "Номер для відображення в накладній"
|
197 |
|
198 |
+
#: includes/class-wcpdf-settings.php:385
|
199 |
msgid "WooCommerce order number"
|
200 |
msgstr "WooCommerce номер замовлення"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:386
|
203 |
msgid "Built-in sequential invoice number"
|
204 |
msgstr "Вбудований секвенсор номерів накладної"
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:388
|
207 |
msgid ""
|
208 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
209 |
"WooCommerce order number"
|
211 |
"Якщо ви використовуєте WooCommerce Sequential Order Numbers плагін, виберіть "
|
212 |
"WooCommerce номер замовлення"
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:394
|
215 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
216 |
msgstr "Наступний номер накладної (без префікса/суфікса і тд.)"
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:402
|
219 |
msgid ""
|
220 |
"This is the number that will be used on the next invoice that is created. By "
|
221 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
230 |
"встановлюєте значення нижче ніж найбільший номер (PDF) накладної, це може "
|
231 |
"привести до створення дубльованої накладної!"
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:408
|
234 |
#, fuzzy
|
235 |
msgid "Invoice number format"
|
236 |
msgstr "Номер накладної:"
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:417
|
239 |
msgid "Prefix"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: includes/class-wcpdf-settings.php:419
|
243 |
msgid ""
|
244 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
245 |
"respectively"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:422
|
249 |
msgid "Suffix"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:427
|
253 |
msgid "Padding"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/class-wcpdf-settings.php:429
|
257 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/class-wcpdf-settings.php:432
|
261 |
msgid ""
|
262 |
"note: if you have already created a custom invoice number format with a "
|
263 |
"filter, the above settings will be ignored"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:440
|
267 |
msgid "Date to display on invoice"
|
268 |
msgstr "Дата для відображення в накладній"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:448
|
271 |
msgid "Order date"
|
272 |
msgstr "Дата замовлення"
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:449
|
275 |
msgid "Invoice date"
|
276 |
msgstr "Дата накладної"
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:457
|
279 |
msgid "Extra template fields"
|
280 |
msgstr "Додаткові поля шаблону"
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:464
|
283 |
msgid "Extra field 1"
|
284 |
msgstr "Додаткове поле 1"
|
285 |
|
286 |
+
#: includes/class-wcpdf-settings.php:473
|
287 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
288 |
msgstr "Це колонка 1 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:479
|
291 |
msgid "Extra field 2"
|
292 |
msgstr "Додаткове поле 2"
|
293 |
|
294 |
+
#: includes/class-wcpdf-settings.php:488
|
295 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
296 |
msgstr "Це колонка 2 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
297 |
|
298 |
+
#: includes/class-wcpdf-settings.php:494
|
299 |
msgid "Extra field 3"
|
300 |
msgstr "Додаткове поле 3"
|
301 |
|
302 |
+
#: includes/class-wcpdf-settings.php:503
|
303 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
304 |
msgstr "Це колонка 3 в підвалі документа для <i>Modern (Premium)</i> шаблонів"
|
305 |
|
306 |
+
#: includes/class-wcpdf-settings.php:760
|
307 |
msgid "Image resolution"
|
308 |
msgstr "Дозвіл зображення"
|
309 |
|
310 |
+
#: includes/class-wcpdf-settings.php:871
|
311 |
msgid ""
|
312 |
"These are used for the (optional) footer columns in the <em>Modern "
|
313 |
"(Premium)</em> template, but can also be used for other elements in your "
|
322 |
msgid "Invoice Number"
|
323 |
msgstr "Номер накладної:"
|
324 |
|
325 |
+
#: includes/class-wcpdf-writepanels.php:139
|
|
|
|
|
|
|
|
|
326 |
msgid "Download invoice (PDF)"
|
327 |
msgstr "Завантажити накладну (PDF)"
|
328 |
|
329 |
+
#: includes/class-wcpdf-writepanels.php:150
|
330 |
+
msgid "Create PDF"
|
331 |
+
msgstr "Створити PDF"
|
332 |
+
|
333 |
+
#: includes/class-wcpdf-writepanels.php:160
|
334 |
msgid "PDF invoice"
|
335 |
msgstr "PDF Накладна"
|
336 |
|
337 |
+
#: includes/class-wcpdf-writepanels.php:161
|
338 |
msgid "PDF Packing Slip"
|
339 |
msgstr "PDF Рахунок-Фактура"
|
340 |
|
341 |
+
#: includes/class-wcpdf-writepanels.php:178
|
342 |
+
#: includes/class-wcpdf-writepanels.php:179
|
343 |
msgid "PDF Packing Slips"
|
344 |
msgstr "PDF Рахунки-Фактур"
|
345 |
|
346 |
+
#: includes/class-wcpdf-writepanels.php:192
|
347 |
#, fuzzy
|
348 |
msgid "PDF Invoice Number (unformatted!)"
|
349 |
msgstr "PDF Номер накладної"
|
350 |
|
351 |
+
#: includes/class-wcpdf-writepanels.php:195
|
352 |
+
#: templates/pdf/Simple/invoice.php:37
|
353 |
+
msgid "Invoice Date:"
|
354 |
+
msgstr "Дата накладної"
|
355 |
+
|
356 |
+
#: includes/class-wcpdf-writepanels.php:196
|
357 |
+
msgid "h"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/class-wcpdf-writepanels.php:196
|
361 |
+
msgid "m"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
365 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
366 |
msgid "Invoice"
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Рахунок-Фактура"
|
374 |
|
|
|
|
|
|
|
|
|
375 |
#: templates/pdf/Simple/invoice.php:40
|
376 |
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
msgid "Order Date:"
|
409 |
msgstr ""
|
410 |
|
411 |
#: templates/pdf/Simple/invoice.php:80
|
412 |
+
#, fuzzy
|
413 |
+
msgid "SKU"
|
414 |
+
msgstr "ІТП:"
|
415 |
+
|
416 |
+
#: templates/pdf/Simple/invoice.php:81
|
417 |
#: templates/pdf/Simple/packing-slip.php:54
|
418 |
msgid "SKU:"
|
419 |
msgstr "ІТП:"
|
420 |
|
421 |
+
#: templates/pdf/Simple/invoice.php:82
|
422 |
#: templates/pdf/Simple/packing-slip.php:55
|
423 |
msgid "Weight:"
|
424 |
msgstr "Вага:"
|
425 |
|
426 |
+
#: templates/pdf/Simple/invoice.php:114
|
427 |
#: templates/pdf/Simple/packing-slip.php:69
|
428 |
msgid "Customer Notes"
|
429 |
msgstr "Примітки клієнта"
|
442 |
msgid "N/A"
|
443 |
msgstr "N/A"
|
444 |
|
445 |
+
#: woocommerce-pdf-invoices-packingslips.php:264
|
446 |
#, fuzzy
|
447 |
msgid "Payment method"
|
448 |
msgstr "Метод оплати:"
|
449 |
|
450 |
+
#: woocommerce-pdf-invoices-packingslips.php:275
|
451 |
#, fuzzy
|
452 |
msgid "Shipping method"
|
453 |
msgstr "Доставка"
|
454 |
|
455 |
+
#: woocommerce-pdf-invoices-packingslips.php:375
|
456 |
msgid "Subtotal"
|
457 |
msgstr "Проміжний підсумок"
|
458 |
|
459 |
+
#: woocommerce-pdf-invoices-packingslips.php:397
|
460 |
msgid "Shipping"
|
461 |
msgstr "Доставка"
|
462 |
|
463 |
+
#: woocommerce-pdf-invoices-packingslips.php:431
|
464 |
msgid "Discount"
|
465 |
msgstr "Знижка"
|
466 |
|
467 |
+
#: woocommerce-pdf-invoices-packingslips.php:470
|
468 |
msgid "VAT"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: woocommerce-pdf-invoices-packingslips.php:507
|
472 |
msgid "Total ex. VAT"
|
473 |
msgstr "Всього отл. ПДВ"
|
474 |
|
475 |
+
#: woocommerce-pdf-invoices-packingslips.php:510
|
476 |
msgid "Total"
|
477 |
msgstr "Разом"
|
478 |
|
languages/wpo_wcpdf.pot
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
-
"POT-Creation-Date: 2014-09-
|
5 |
-
"PO-Revision-Date: 2014-09-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\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.6.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -133,80 +133,80 @@ msgstr ""
|
|
133 |
msgid "PDF Template settings"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/class-wcpdf-settings.php:
|
137 |
msgid "Choose a template"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
141 |
msgid ""
|
142 |
-
"Want to use your own template? Copy all the files from <code>
|
143 |
-
"
|
144 |
-
"woocommerce/pdf/yourtemplate/</code> to customize them"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-wcpdf-settings.php:
|
148 |
msgid "Paper size"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-wcpdf-settings.php:
|
152 |
msgid "A4"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/class-wcpdf-settings.php:
|
156 |
msgid "Letter"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/class-wcpdf-settings.php:
|
160 |
msgid "Shop header/logo"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-wcpdf-settings.php:
|
164 |
msgid "Select or upload your invoice header/logo"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-wcpdf-settings.php:
|
168 |
msgid "Set image"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-wcpdf-settings.php:
|
172 |
msgid "Remove image"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-wcpdf-settings.php:
|
176 |
msgid "Shop Name"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/class-wcpdf-settings.php:
|
180 |
msgid "Shop Address"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: includes/class-wcpdf-settings.php:
|
184 |
msgid "Footer: terms & conditions, policies, etc."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/class-wcpdf-settings.php:
|
188 |
msgid "Number to display on invoice"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/class-wcpdf-settings.php:
|
192 |
msgid "WooCommerce order number"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Built-in sequential invoice number"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/class-wcpdf-settings.php:
|
200 |
msgid ""
|
201 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
202 |
"WooCommerce order number"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/class-wcpdf-settings.php:
|
206 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/class-wcpdf-settings.php:
|
210 |
msgid ""
|
211 |
"This is the number that will be used on the next invoice that is created. By "
|
212 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -215,83 +215,83 @@ msgid ""
|
|
215 |
"this could create double invoice numbers!"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-wcpdf-settings.php:
|
219 |
msgid "Invoice number format"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/class-wcpdf-settings.php:
|
223 |
msgid "Prefix"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/class-wcpdf-settings.php:
|
227 |
msgid ""
|
228 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
229 |
"respectively"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-wcpdf-settings.php:
|
233 |
msgid "Suffix"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-wcpdf-settings.php:
|
237 |
msgid "Padding"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-wcpdf-settings.php:
|
241 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: includes/class-wcpdf-settings.php:
|
245 |
msgid ""
|
246 |
"note: if you have already created a custom invoice number format with a "
|
247 |
"filter, the above settings will be ignored"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/class-wcpdf-settings.php:
|
251 |
msgid "Date to display on invoice"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/class-wcpdf-settings.php:
|
255 |
msgid "Order date"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/class-wcpdf-settings.php:
|
259 |
msgid "Invoice date"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/class-wcpdf-settings.php:
|
263 |
msgid "Extra template fields"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/class-wcpdf-settings.php:
|
267 |
msgid "Extra field 1"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/class-wcpdf-settings.php:
|
271 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/class-wcpdf-settings.php:
|
275 |
msgid "Extra field 2"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/class-wcpdf-settings.php:
|
279 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-wcpdf-settings.php:
|
283 |
msgid "Extra field 3"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-wcpdf-settings.php:
|
287 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/class-wcpdf-settings.php:
|
291 |
msgid "Image resolution"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
295 |
msgid ""
|
296 |
"These are used for the (optional) footer columns in the <em>Modern "
|
297 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -328,7 +328,8 @@ msgid "PDF Invoice Number (unformatted!)"
|
|
328 |
msgstr ""
|
329 |
|
330 |
#: includes/class-wcpdf-writepanels.php:195
|
331 |
-
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
#: includes/class-wcpdf-writepanels.php:196
|
@@ -350,10 +351,6 @@ msgstr ""
|
|
350 |
msgid "Packing Slip"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: templates/pdf/Simple/invoice.php:37
|
354 |
-
msgid "Invoice Date:"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
#: templates/pdf/Simple/invoice.php:40
|
358 |
#: templates/pdf/Simple/packing-slip.php:30
|
359 |
msgid "Order Date:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-09-18 15:11+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-09-18 15:11+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\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.6.9\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
133 |
msgid "PDF Template settings"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/class-wcpdf-settings.php:271
|
137 |
msgid "Choose a template"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: includes/class-wcpdf-settings.php:279
|
141 |
+
#, php-format
|
142 |
msgid ""
|
143 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
144 |
+
"<code>%s</code> to customize them"
|
|
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:285
|
148 |
msgid "Paper size"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-wcpdf-settings.php:293
|
152 |
msgid "A4"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:294
|
156 |
msgid "Letter"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:301
|
160 |
msgid "Shop header/logo"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:308
|
164 |
msgid "Select or upload your invoice header/logo"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:309
|
168 |
msgid "Set image"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:310
|
172 |
msgid "Remove image"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:317
|
176 |
msgid "Shop Name"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:330
|
180 |
msgid "Shop Address"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:362
|
184 |
msgid "Footer: terms & conditions, policies, etc."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:377
|
188 |
msgid "Number to display on invoice"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:385
|
192 |
msgid "WooCommerce order number"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:386
|
196 |
msgid "Built-in sequential invoice number"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/class-wcpdf-settings.php:388
|
200 |
msgid ""
|
201 |
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
202 |
"WooCommerce order number"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/class-wcpdf-settings.php:394
|
206 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/class-wcpdf-settings.php:402
|
210 |
msgid ""
|
211 |
"This is the number that will be used on the next invoice that is created. By "
|
212 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
215 |
"this could create double invoice numbers!"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:408
|
219 |
msgid "Invoice number format"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/class-wcpdf-settings.php:417
|
223 |
msgid "Prefix"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/class-wcpdf-settings.php:419
|
227 |
msgid ""
|
228 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
229 |
"respectively"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-wcpdf-settings.php:422
|
233 |
msgid "Suffix"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:427
|
237 |
msgid "Padding"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:429
|
241 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:432
|
245 |
msgid ""
|
246 |
"note: if you have already created a custom invoice number format with a "
|
247 |
"filter, the above settings will be ignored"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: includes/class-wcpdf-settings.php:440
|
251 |
msgid "Date to display on invoice"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:448
|
255 |
msgid "Order date"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:449
|
259 |
msgid "Invoice date"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:457
|
263 |
msgid "Extra template fields"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:464
|
267 |
msgid "Extra field 1"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:473
|
271 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:479
|
275 |
msgid "Extra field 2"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:488
|
279 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:494
|
283 |
msgid "Extra field 3"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/class-wcpdf-settings.php:503
|
287 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:760
|
291 |
msgid "Image resolution"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/class-wcpdf-settings.php:871
|
295 |
msgid ""
|
296 |
"These are used for the (optional) footer columns in the <em>Modern "
|
297 |
"(Premium)</em> template, but can also be used for other elements in your "
|
328 |
msgstr ""
|
329 |
|
330 |
#: includes/class-wcpdf-writepanels.php:195
|
331 |
+
#: templates/pdf/Simple/invoice.php:37
|
332 |
+
msgid "Invoice Date:"
|
333 |
msgstr ""
|
334 |
|
335 |
#: includes/class-wcpdf-writepanels.php:196
|
351 |
msgid "Packing Slip"
|
352 |
msgstr ""
|
353 |
|
|
|
|
|
|
|
|
|
354 |
#: templates/pdf/Simple/invoice.php:40
|
355 |
#: templates/pdf/Simple/packing-slip.php:30
|
356 |
msgid "Order Date:"
|
lib/dompdf/dompdf.php
CHANGED
@@ -227,6 +227,10 @@ switch ( $sapi ) {
|
|
227 |
}
|
228 |
}
|
229 |
|
|
|
|
|
|
|
|
|
230 |
$outfile = "dompdf_out.pdf"; # Don't allow them to set the output file
|
231 |
$save_file = false; # Don't save the file
|
232 |
|
227 |
}
|
228 |
}
|
229 |
|
230 |
+
if($file_parts['protocol'] === 'php://') {
|
231 |
+
throw new DOMPDF_Exception("Permission denied on $file. This script does not allow PHP streams.");
|
232 |
+
}
|
233 |
+
|
234 |
$outfile = "dompdf_out.pdf"; # Don't allow them to set the output file
|
235 |
$save_file = false; # Don't save the file
|
236 |
|
lib/dompdf/include/dompdf.cls.php
CHANGED
@@ -580,13 +580,6 @@ class DOMPDF {
|
|
580 |
$str = substr($str, 3);
|
581 |
}
|
582 |
|
583 |
-
// Parse embedded php, first-pass
|
584 |
-
if ( $this->get_option("enable_php") ) {
|
585 |
-
ob_start();
|
586 |
-
eval("?" . ">$str");
|
587 |
-
$str = ob_get_clean();
|
588 |
-
}
|
589 |
-
|
590 |
// if the document contains non utf-8 with a utf-8 meta tag chars and was
|
591 |
// detected as utf-8 by mbstring, problems could happen.
|
592 |
// http://devzone.zend.com/article/8855
|
580 |
$str = substr($str, 3);
|
581 |
}
|
582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
// if the document contains non utf-8 with a utf-8 meta tag chars and was
|
584 |
// detected as utf-8 by mbstring, problems could happen.
|
585 |
// http://devzone.zend.com/article/8855
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: pomegranate
|
|
3 |
Tags: woocommerce, print, pdf, bulk, packing slips, invoices, delivery notes, invoice, packing slip, export, email
|
4 |
Requires at least: 3.5 and WooCommerce 2.0
|
5 |
Tested up to: 4.0 and WooCommerce 2.2
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -182,6 +182,17 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
182 |
|
183 |
== Changelog ==
|
184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
= 1.4.6 =
|
186 |
* HOTFIX: WooCommerce 2.2 compatibility fix
|
187 |
* Filter for PDF temp folder (wpo_wcpdf_tmp_path)
|
3 |
Tags: woocommerce, print, pdf, bulk, packing slips, invoices, delivery notes, invoice, packing slip, export, email
|
4 |
Requires at least: 3.5 and WooCommerce 2.0
|
5 |
Tested up to: 4.0 and WooCommerce 2.2
|
6 |
+
Stable tag: 1.4.7
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
182 |
|
183 |
== Changelog ==
|
184 |
|
185 |
+
= 1.4.7 =
|
186 |
+
* Fix: check if image file exists locally, fallback to url if not (CDN compatibility)
|
187 |
+
* Fix: make deleting invoice date possible
|
188 |
+
* Fix: correct tmp folder check on status page
|
189 |
+
* Translations: updated po/mo files
|
190 |
+
* Tweak: changed settings capability requirement to `manage_woocommerce` (was: `manage_options`)
|
191 |
+
* Tweak: better email attachment function
|
192 |
+
* Tweak: prevent footer overlap (Simple template)
|
193 |
+
* Tweak: fallback if `glob()` is not allowed on the server
|
194 |
+
* Tweak: better custom template instructions (reflects path to actual (child-)theme)
|
195 |
+
|
196 |
= 1.4.6 =
|
197 |
* HOTFIX: WooCommerce 2.2 compatibility fix
|
198 |
* Filter for PDF temp folder (wpo_wcpdf_tmp_path)
|
templates/pdf/Simple/style.css
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
|
27 |
@page {
|
28 |
margin-top: 1cm;
|
29 |
-
margin-bottom:
|
30 |
margin-left: 2cm;
|
31 |
margin-right: 2cm;
|
32 |
}
|
@@ -230,7 +230,7 @@ table.totals td.price span:first-child {
|
|
230 |
/* Footer Imprint */
|
231 |
#footer {
|
232 |
position: absolute;
|
233 |
-
bottom:
|
234 |
left: 0;
|
235 |
right: 0;
|
236 |
height: 2cm;
|
26 |
|
27 |
@page {
|
28 |
margin-top: 1cm;
|
29 |
+
margin-bottom: 3cm;
|
30 |
margin-left: 2cm;
|
31 |
margin-right: 2cm;
|
32 |
}
|
230 |
/* Footer Imprint */
|
231 |
#footer {
|
232 |
position: absolute;
|
233 |
+
bottom: -2cm;
|
234 |
left: 0;
|
235 |
right: 0;
|
236 |
height: 2cm;
|
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.4.
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
@@ -143,13 +143,13 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices' ) ) {
|
|
143 |
$attachment_width = $attachment[1];
|
144 |
$attachment_height = $attachment[2];
|
145 |
|
146 |
-
|
147 |
-
|
|
|
|
|
148 |
} else {
|
149 |
$src = $attachment_src;
|
150 |
}
|
151 |
-
|
152 |
-
$attachment_path =
|
153 |
|
154 |
printf('<img src="%1$s" width="%2$d" height="%3$d" alt="%4$s" />', $src, $attachment_width, $attachment_height, esc_attr( $company ) );
|
155 |
}
|
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.4.7
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|
143 |
$attachment_width = $attachment[1];
|
144 |
$attachment_height = $attachment[2];
|
145 |
|
146 |
+
$attachment_path = get_attached_file( $attachment_id );
|
147 |
+
|
148 |
+
if ( apply_filters('wpo_wcpdf_use_path', true) && file_exists($attachment_path) ) {
|
149 |
+
$src = $attachment_path;
|
150 |
} else {
|
151 |
$src = $attachment_src;
|
152 |
}
|
|
|
|
|
153 |
|
154 |
printf('<img src="%1$s" width="%2$d" height="%3$d" alt="%4$s" />', $src, $attachment_width, $attachment_height, esc_attr( $company ) );
|
155 |
}
|