Version Description
- Fix: Invoice not attaching
- Translations: Updated POT file
- Translations: Updated Dutch, Norwegian, Polish, Brazilian Portugese, Romanian, Russian, Slovak, Spanish & Ukrainian (Many thanks to all the translators!)
- Templates: added action hooks for easier customizations (
wpo_wcpdf_before_order_details
,wpo_wcpdf_after_order_details
,wpo_wcpdf_invoice_title
&wpo_wcpdf_packing_slip_title
)
Download this release
Release Info
Developer | pomegranate |
Plugin | WooCommerce PDF Invoices & Packing Slips |
Version | 1.4.10 |
Comparing to | |
See all releases |
Code changes from version 1.4.9 to 1.4.10
- css/style.css +69 -0
- images/wpo-helper.png +0 -0
- includes/class-wcpdf-export.php +6 -7
- includes/class-wcpdf-settings.php +11 -23
- includes/class-wcpdf-writepanels.php +2 -2
- includes/wcpdf-extensions.php +74 -0
- languages/wpo_wcpdf-es_ES.mo +0 -0
- languages/wpo_wcpdf-es_ES.po +149 -145
- languages/wpo_wcpdf-nb_NO.mo +0 -0
- languages/wpo_wcpdf-nb_NO.po +62 -43
- languages/wpo_wcpdf-nl_NL.mo +0 -0
- languages/wpo_wcpdf-nl_NL.po +138 -142
- languages/wpo_wcpdf-pl_PL.mo +0 -0
- languages/wpo_wcpdf-pl_PL.po +32 -28
- languages/wpo_wcpdf-pt_BR.mo +0 -0
- languages/wpo_wcpdf-pt_BR.po +145 -150
- languages/wpo_wcpdf-ro_RO.mo +0 -0
- languages/wpo_wcpdf-ro_RO.po +240 -298
- languages/wpo_wcpdf-ru_RU.mo +0 -0
- languages/wpo_wcpdf-ru_RU.po +185 -214
- languages/wpo_wcpdf-sk_SK.mo +0 -0
- languages/wpo_wcpdf-sk_SK.po +153 -151
- languages/wpo_wcpdf-uk.mo +0 -0
- languages/wpo_wcpdf-uk.po +184 -215
- languages/wpo_wcpdf.pot +157 -87
- readme.txt +29 -11
- templates/pdf/Simple/invoice.php +6 -2
- templates/pdf/Simple/packing-slip.php +5 -2
- woocommerce-pdf-invoices-packingslips.php +1 -1
css/style.css
CHANGED
@@ -63,4 +63,73 @@ span.wpo-warning {
|
|
63 |
border-left: 4px solid red;
|
64 |
padding: 5px 15px;
|
65 |
background-color: white;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
63 |
border-left: 4px solid red;
|
64 |
padding: 5px 15px;
|
65 |
background-color: white;
|
66 |
+
}
|
67 |
+
.wcpdf-extensions-ad {
|
68 |
+
position: relative;
|
69 |
+
min-height: 90px;
|
70 |
+
border: 1px solid #3D5C99;
|
71 |
+
background-color: #EBF5FF;
|
72 |
+
border-radius: 5px;
|
73 |
+
padding: 15px;
|
74 |
+
padding-left: 100px;
|
75 |
+
margin-top: 15px;
|
76 |
+
}
|
77 |
+
|
78 |
+
img.wpo-helper {
|
79 |
+
position: absolute;
|
80 |
+
top: -20px;
|
81 |
+
left: 3px;
|
82 |
+
}
|
83 |
+
|
84 |
+
.wcpdf-extensions-ad h3 {
|
85 |
+
margin: 0;
|
86 |
+
}
|
87 |
+
|
88 |
+
.wcpdf-extensions-ad ul {
|
89 |
+
margin: 0;
|
90 |
+
margin-left: 1.5em;
|
91 |
+
}
|
92 |
+
|
93 |
+
.extensions li {
|
94 |
+
margin: 0;
|
95 |
+
}
|
96 |
+
|
97 |
+
.extensions li ul {
|
98 |
+
list-style-type: square;
|
99 |
+
margin-top: 0.5em;
|
100 |
+
margin-bottom: 0.5em;
|
101 |
+
}
|
102 |
+
|
103 |
+
.extensions > li:before {
|
104 |
+
content: "";
|
105 |
+
border-color: transparent transparent transparent #111;
|
106 |
+
border-style: solid;
|
107 |
+
border-width: 0.35em 0.35em 0.35em 0.45em;
|
108 |
+
display: block;
|
109 |
+
height: 0;
|
110 |
+
width: 0;
|
111 |
+
left: -1em;
|
112 |
+
top: 0.9em;
|
113 |
+
position: relative;
|
114 |
+
}
|
115 |
+
|
116 |
+
.extensions .expanded:before {
|
117 |
+
border-color: #111 transparent transparent transparent;
|
118 |
+
left: -1.17em;
|
119 |
+
border-width: 0.45em 0.45em 0.35em 0.35em !important;
|
120 |
+
}
|
121 |
+
|
122 |
+
.extensions .more {
|
123 |
+
padding: 10px;
|
124 |
+
background-color: white;
|
125 |
+
border: 1px solid #ccc;
|
126 |
+
border-radius: 5px;
|
127 |
+
}
|
128 |
+
|
129 |
+
.extensions table td {
|
130 |
+
vertical-align: top;
|
131 |
+
}
|
132 |
+
.dropbox-logo {
|
133 |
+
margin-bottom: -10px;
|
134 |
+
margin-right: 10px;
|
135 |
}
|
images/wpo-helper.png
ADDED
Binary file
|
includes/class-wcpdf-export.php
CHANGED
@@ -148,8 +148,8 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
148 |
* Stream PDF
|
149 |
*/
|
150 |
public function stream_pdf( $template_type, $order_ids, $filename ) {
|
151 |
-
$
|
152 |
-
$
|
153 |
}
|
154 |
|
155 |
/**
|
@@ -157,8 +157,8 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
157 |
*/
|
158 |
public function get_pdf( $template_type, $order_ids ) {
|
159 |
try {
|
160 |
-
$
|
161 |
-
return $
|
162 |
} catch (Exception $e) {
|
163 |
echo $e->getMessage();
|
164 |
return false;
|
@@ -299,11 +299,10 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Export' ) ) {
|
|
299 |
* Attach invoice to completed order or customer invoice email
|
300 |
*/
|
301 |
public function attach_pdf_to_email ( $attachments, $status, $order ) {
|
302 |
-
$
|
303 |
-
|
304 |
-
if ($order->post->post_type != 'shop_order') {
|
305 |
return; // do not process low stock notifications etc!
|
306 |
}
|
|
|
307 |
|
308 |
if (!isset($this->general_settings['email_pdf']) || !isset( $status ) ) {
|
309 |
return;
|
148 |
* Stream PDF
|
149 |
*/
|
150 |
public function stream_pdf( $template_type, $order_ids, $filename ) {
|
151 |
+
$dompdf = $this->generate_pdf( $template_type, $order_ids );
|
152 |
+
$dompdf->stream($filename);
|
153 |
}
|
154 |
|
155 |
/**
|
157 |
*/
|
158 |
public function get_pdf( $template_type, $order_ids ) {
|
159 |
try {
|
160 |
+
$dompdf = $this->generate_pdf( $template_type, $order_ids );
|
161 |
+
return $dompdf->output();
|
162 |
} catch (Exception $e) {
|
163 |
echo $e->getMessage();
|
164 |
return false;
|
299 |
* Attach invoice to completed order or customer invoice email
|
300 |
*/
|
301 |
public function attach_pdf_to_email ( $attachments, $status, $order ) {
|
302 |
+
if ( in_array( $status, array( 'no_stock', 'low_stock', 'backorder' ) ) ) {
|
|
|
|
|
303 |
return; // do not process low stock notifications etc!
|
304 |
}
|
305 |
+
$this->order = $order;
|
306 |
|
307 |
if (!isset($this->general_settings['email_pdf']) || !isset( $status ) ) {
|
308 |
return;
|
includes/class-wcpdf-settings.php
CHANGED
@@ -107,28 +107,11 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
107 |
<a href="?page=wpo_wcpdf_options_page&tab=status" class="nav-tab <?php echo (($active_tab == 'status') ? 'nav-tab-active' : ''); ?>"><?php _e('Status','wpo_wcpdf'); ?></a>
|
108 |
</h2>
|
109 |
|
110 |
-
<?php do_action( 'wpo_wcpdf_before_settings_page', $active_tab ); ?>
|
111 |
-
|
112 |
<?php
|
113 |
-
|
114 |
-
$dropbox_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-dropbox/" target="_blank">WooCommerce PDF Invoices & Packing Slips to Dropbox</a>';
|
115 |
-
?>
|
116 |
-
<div class="wcpdf-dropbox" style="border: 1px solid #3D5C99; border-radius: 5px; padding: 15px 10px; margin-top: 15px; background-color: #EBF5FF;">
|
117 |
-
<img src="<?php echo WooCommerce_PDF_Invoices::$plugin_url . 'images/dropbox_logo.png'; ?>" style="float:left;margin-right:10px;margin-top:-5px;">
|
118 |
-
<?php printf( __("Upload all invoices automatically to your dropbox!<br/>Check out the %s extension.", 'wpo_wcpdf'), $dropbox_link );?> <br />
|
119 |
-
</div>
|
120 |
-
<?php
|
121 |
-
}
|
122 |
|
123 |
-
if (!class_exists('
|
124 |
-
|
125 |
-
$email_link = '<a href="mailto:support@wpovernight.com">support@wpovernight.com</a>'
|
126 |
-
?>
|
127 |
-
<div class="wcpdf-pro-templates" style="border: 1px solid #ccc; border-radius: 5px; padding: 10px; margin-top: 15px; background-color: #eee;">
|
128 |
-
<?php printf( __("Looking for more advanced templates? Check out the Premium PDF Invoice & Packing Slips templates at %s.", 'wpo_wcpdf'), $template_link );?> <br />
|
129 |
-
<?php printf( __("For custom templates, contact us at %s.", 'wpo_wcpdf'), $email_link );?>
|
130 |
-
</div>
|
131 |
-
<?php
|
132 |
}
|
133 |
|
134 |
if ( $active_tab=='status' ) {
|
@@ -285,7 +268,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
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 |
|
@@ -786,6 +769,7 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
786 |
$fields = $args['fields'];
|
787 |
$options = get_option( $menu );
|
788 |
|
|
|
789 |
foreach ($fields as $key => $field) {
|
790 |
$id = $args['id'] . '_' . $key;
|
791 |
|
@@ -797,10 +781,14 @@ if ( ! class_exists( 'WooCommerce_PDF_Invoices_Settings' ) ) {
|
|
797 |
|
798 |
$title = $field['title'];
|
799 |
$size = $field['size'];
|
800 |
-
$description = isset( $field['description'] ) ? '<span style="font-style:italic;
|
801 |
|
802 |
-
|
|
|
|
|
803 |
}
|
|
|
|
|
804 |
|
805 |
// Displays option description.
|
806 |
if ( isset( $args['description'] ) ) {
|
107 |
<a href="?page=wpo_wcpdf_options_page&tab=status" class="nav-tab <?php echo (($active_tab == 'status') ? 'nav-tab-active' : ''); ?>"><?php _e('Status','wpo_wcpdf'); ?></a>
|
108 |
</h2>
|
109 |
|
|
|
|
|
110 |
<?php
|
111 |
+
do_action( 'wpo_wcpdf_before_settings_page', $active_tab );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
+
if ( !( class_exists('WooCommerce_PDF_IPS_Pro') && class_exists('WooCommerce_PDF_IPS_Dropbox') && class_exists('WooCommerce_PDF_IPS_Templates') ) ) {
|
114 |
+
include('wcpdf-extensions.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
}
|
116 |
|
117 |
if ( $active_tab=='status' ) {
|
268 |
'menu' => $option,
|
269 |
'id' => 'template_path',
|
270 |
'options' => $this->find_templates(),
|
271 |
+
'description' => sprintf( __( 'Want to use your own template? Copy all the files from <code>%s</code> to your (child) theme in <code>%s</code> to customize them' , 'wpo_wcpdf' ), $plugin_template_path, $theme_template_path),
|
272 |
)
|
273 |
);
|
274 |
|
769 |
$fields = $args['fields'];
|
770 |
$options = get_option( $menu );
|
771 |
|
772 |
+
echo '<table>';
|
773 |
foreach ($fields as $key => $field) {
|
774 |
$id = $args['id'] . '_' . $key;
|
775 |
|
781 |
|
782 |
$title = $field['title'];
|
783 |
$size = $field['size'];
|
784 |
+
$description = isset( $field['description'] ) ? '<span style="font-style:italic;">'.$field['description'].'</span>' : '';
|
785 |
|
786 |
+
echo '<tr>';
|
787 |
+
printf( '<td style="padding:0 1em 0 0; ">%1$s:</td><td style="padding:0;"><input type="text" id="%2$s" name="%3$s[%2$s]" value="%4$s" size="%5$s"/></td><td style="padding:0 0 0 1em;">%6$s</td>', $title, $id, $menu, $current, $size, $description );
|
788 |
+
echo '</tr>';
|
789 |
}
|
790 |
+
echo '</table>';
|
791 |
+
|
792 |
|
793 |
// Displays option description.
|
794 |
if ( isset( $args['description'] ) ) {
|
includes/class-wcpdf-writepanels.php
CHANGED
@@ -88,12 +88,12 @@ if ( !class_exists( 'WooCommerce_PDF_Invoices_Writepanels' ) ) {
|
|
88 |
'invoice' => array (
|
89 |
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_wpo_wcpdf&template_type=invoice&order_ids=' . $order->id ), 'generate_wpo_wcpdf' ),
|
90 |
'img' => WooCommerce_PDF_Invoices::$plugin_url . 'images/invoice.png',
|
91 |
-
'alt' =>
|
92 |
),
|
93 |
'packing-slip' => array (
|
94 |
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_wpo_wcpdf&template_type=packing-slip&order_ids=' . $order->id ), 'generate_wpo_wcpdf' ),
|
95 |
'img' => WooCommerce_PDF_Invoices::$plugin_url . 'images/packing-slip.png',
|
96 |
-
'alt' =>
|
97 |
),
|
98 |
);
|
99 |
|
88 |
'invoice' => array (
|
89 |
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_wpo_wcpdf&template_type=invoice&order_ids=' . $order->id ), 'generate_wpo_wcpdf' ),
|
90 |
'img' => WooCommerce_PDF_Invoices::$plugin_url . 'images/invoice.png',
|
91 |
+
'alt' => __( 'PDF Invoice', 'wpo_wcpdf' ),
|
92 |
),
|
93 |
'packing-slip' => array (
|
94 |
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=generate_wpo_wcpdf&template_type=packing-slip&order_ids=' . $order->id ), 'generate_wpo_wcpdf' ),
|
95 |
'img' => WooCommerce_PDF_Invoices::$plugin_url . 'images/packing-slip.png',
|
96 |
+
'alt' => __( 'PDF Packing Slip', 'wpo_wcpdf' ),
|
97 |
),
|
98 |
);
|
99 |
|
includes/wcpdf-extensions.php
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<script type="text/javascript">
|
2 |
+
jQuery(document).ready(function() {
|
3 |
+
jQuery('.extensions .more').hide();
|
4 |
+
|
5 |
+
jQuery('.extensions > li').click(function() {
|
6 |
+
jQuery(this).toggleClass('expanded');
|
7 |
+
jQuery(this).find('.more').slideToggle();
|
8 |
+
});
|
9 |
+
});
|
10 |
+
</script>
|
11 |
+
|
12 |
+
<div class="wcpdf-extensions-ad">
|
13 |
+
|
14 |
+
<img src="<?php echo WooCommerce_PDF_Invoices::$plugin_url . 'images/wpo-helper.png'; ?>" class="wpo-helper">
|
15 |
+
<h3><?php _e( 'Check out these premium extensions!', 'wpo_wcpdf' ); ?></h3>
|
16 |
+
<i>(<?php _e( 'click items to read more', 'wpo_wcpdf' ); ?>)</i>
|
17 |
+
<ul class="extensions">
|
18 |
+
|
19 |
+
<?php
|
20 |
+
if (!class_exists('WooCommerce_PDF_IPS_Pro')) {
|
21 |
+
?>
|
22 |
+
<li>
|
23 |
+
<?php _e('Go Pro: Proforma invoices, credit notes & more!', 'wpo_wcpdf')?>
|
24 |
+
<div class="more" style="display:none;">
|
25 |
+
<?php _e( 'Supercharge WooCommerce PDF Invoices & Packing Slips with the following features:', 'wpo_wcpdf' ); ?>
|
26 |
+
<ul>
|
27 |
+
<li><?php _e( 'Email/print/download <b>PDF Credit Notes & Proforma invoices</b>', 'wpo_wcpdf' ); ?></li>
|
28 |
+
<li><?php _e( 'Attach a <b>static file</b> (for example a terms & conditions document) to the WooCommerce emails of your choice.', 'wpo_wcpdf' ); ?></li>
|
29 |
+
<li><?php _e( 'Use <b>separate numbering systems</b> and/or format for proforma invoices and credit notes or utilize the main invoice numbering system', 'wpo_wcpdf' ); ?></li>
|
30 |
+
<li><?php _e( '<b>Customize</b> the <b>shipping & billing address</b> format to include additional custom fields, font sizes etc. without the need to create a custom template.', 'wpo_wcpdf' ); ?></li>
|
31 |
+
<li><?php _e( 'Use the plugin in multilingual <b>WPML</b> setups', 'wpo_wcpdf' ); ?></li>
|
32 |
+
</ul>
|
33 |
+
<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-professional/" target="_blank"><?php _e("Get WooCommerce PDF Invoices & Packing Slips Professional!", 'wpo_wcpdf'); ?></a>
|
34 |
+
</li>
|
35 |
+
<?php } ?>
|
36 |
+
|
37 |
+
<?php
|
38 |
+
if (!class_exists('WooCommerce_PDF_IPS_Dropbox')) {
|
39 |
+
?>
|
40 |
+
<li>
|
41 |
+
<?php _e('Upload all invoices automatically to your dropbox', 'wpo_wcpdf')?>
|
42 |
+
<div class="more" style="display:none;">
|
43 |
+
<table>
|
44 |
+
<tr>
|
45 |
+
<td><img src="<?php echo WooCommerce_PDF_Invoices::$plugin_url . 'images/dropbox_logo.png'; ?>" class="dropbox-logo"></td>
|
46 |
+
<td>
|
47 |
+
<?php _e( 'This extension conveniently uploads all the invoices (and other pdf documents from the professional extension) that are emailed to your customers to Dropbox. The best way to keep your invoice administration up to date!', 'wpo_wcpdf' ); ?><br/>
|
48 |
+
<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-dropbox/" target="_blank"><?php _e("Get WooCommerce PDF Invoices & Packing Slips to dropbox!", 'wpo_wcpdf'); ?></a>
|
49 |
+
</td>
|
50 |
+
</tr>
|
51 |
+
</table>
|
52 |
+
</div>
|
53 |
+
</li>
|
54 |
+
<?php } ?>
|
55 |
+
|
56 |
+
<?php
|
57 |
+
if (!class_exists('WooCommerce_PDF_IPS_Templates')) {
|
58 |
+
$template_link = '<a href="https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/" target="_blank">wpovernight.com</a>';
|
59 |
+
$email_link = '<a href="mailto:support@wpovernight.com">support@wpovernight.com</a>'
|
60 |
+
?>
|
61 |
+
<li>
|
62 |
+
<?php _e('More advanced templates', 'wpo_wcpdf')?>
|
63 |
+
<div class="more" style="display:none;">
|
64 |
+
<ul>
|
65 |
+
<li><?php _e( 'Stylish modern invoices & packing slips with product thumbnails!', 'wpo_wcpdf' ); ?></li>
|
66 |
+
<li><?php _e( 'More tax details on the invoices!', 'wpo_wcpdf' ); ?></li>
|
67 |
+
<li><?php printf( __("Check out the Premium PDF Invoice & Packing Slips templates at %s.", 'wpo_wcpdf'), $template_link );?></li>
|
68 |
+
<li><?php printf( __("For custom templates, contact us at %s.", 'wpo_wcpdf'), $email_link );?></li>
|
69 |
+
</ul>
|
70 |
+
</div>
|
71 |
+
</li>
|
72 |
+
<?php } ?>
|
73 |
+
</ul>
|
74 |
+
</div>
|
languages/wpo_wcpdf-es_ES.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-es_ES.po
CHANGED
@@ -1,73 +1,73 @@
|
|
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:
|
38 |
-
#: includes/class-wcpdf-writepanels.php:
|
39 |
-
#: includes/class-wcpdf-writepanels.php:177
|
40 |
msgid "PDF Invoices"
|
41 |
msgstr "Facturas PDF"
|
42 |
|
43 |
-
#: includes/class-wcpdf-settings.php:
|
44 |
msgid "Settings"
|
45 |
msgstr "Ajustes"
|
46 |
|
47 |
-
#: includes/class-wcpdf-settings.php:
|
48 |
msgid "General"
|
49 |
msgstr "General"
|
50 |
|
51 |
-
#: includes/class-wcpdf-settings.php:
|
52 |
msgid "Template"
|
53 |
msgstr "Plantilla"
|
54 |
|
55 |
-
#: includes/class-wcpdf-settings.php:
|
56 |
msgid "WooCommerce PDF Invoices"
|
57 |
msgstr "WooCommerce Facturas PDF"
|
58 |
|
59 |
-
#: includes/class-wcpdf-settings.php:
|
60 |
msgid "Status"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/class-wcpdf-settings.php:
|
64 |
#, php-format
|
65 |
msgid ""
|
66 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
67 |
"extension."
|
68 |
msgstr ""
|
|
|
69 |
|
70 |
-
#: includes/class-wcpdf-settings.php:
|
71 |
#, php-format
|
72 |
msgid ""
|
73 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
@@ -76,48 +76,48 @@ msgstr ""
|
|
76 |
"¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas premium "
|
77 |
"de PDF Invoice & Packing Slips en %s."
|
78 |
|
79 |
-
#: includes/class-wcpdf-settings.php:
|
80 |
#, php-format
|
81 |
msgid "For custom templates, contact us at %s."
|
82 |
msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
|
83 |
|
84 |
-
#: includes/class-wcpdf-settings.php:
|
85 |
msgid "General settings"
|
86 |
msgstr "Ajustes generales"
|
87 |
|
88 |
-
#: includes/class-wcpdf-settings.php:
|
89 |
msgid "How do you want to view the PDF?"
|
90 |
msgstr "¿Cómo desea visualizar el PDF?"
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "Download the PDF"
|
94 |
msgstr "Descargándolo."
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Open the PDF in a new browser tab/window"
|
98 |
msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
101 |
msgid "Attach invoice to:"
|
102 |
msgstr "Adjuntar factura a:"
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
msgid "Admin New Order email"
|
106 |
msgstr "Correo electrónico del administrador al crear un nuevo pedido."
|
107 |
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
109 |
msgid "Customer Processing Order email"
|
110 |
msgstr "Correo electrónico del cliente al procesar el pedido."
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Customer Completed Order email"
|
114 |
msgstr "Correo electrónico del cliente al completar el pedido."
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Customer Invoice email"
|
118 |
msgstr "Correo electrónico de la factura del cliente."
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -128,92 +128,81 @@ msgstr ""
|
|
128 |
"¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
|
129 |
"carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
|
130 |
|
131 |
-
#: includes/class-wcpdf-settings.php:
|
132 |
msgid "Enable invoice number column in the orders list"
|
133 |
msgstr "Activar la columna de número de factura en pedidos"
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
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 |
#, 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 |
-
"¿
|
150 |
-
"a <code>%s</code>
|
|
|
151 |
|
152 |
-
#: includes/class-wcpdf-settings.php:
|
153 |
msgid "Paper size"
|
154 |
msgstr "Tamaño del papel"
|
155 |
|
156 |
-
#: includes/class-wcpdf-settings.php:
|
157 |
msgid "A4"
|
158 |
msgstr "A4"
|
159 |
|
160 |
-
#: includes/class-wcpdf-settings.php:
|
161 |
msgid "Letter"
|
162 |
msgstr "Carta"
|
163 |
|
164 |
-
#: includes/class-wcpdf-settings.php:
|
165 |
msgid "Shop header/logo"
|
166 |
msgstr "Logotipo de la tienda"
|
167 |
|
168 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
173 |
msgid "Set image"
|
174 |
msgstr "Añadir imagen"
|
175 |
|
176 |
-
#: includes/class-wcpdf-settings.php:
|
177 |
msgid "Remove image"
|
178 |
msgstr "Eliminar la imagen"
|
179 |
|
180 |
-
#: includes/class-wcpdf-settings.php:
|
181 |
msgid "Shop Name"
|
182 |
msgstr "Nombre de la tienda"
|
183 |
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
185 |
msgid "Shop Address"
|
186 |
msgstr "Dirección de la tienda"
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
202 |
-
msgstr "
|
203 |
|
204 |
-
#: includes/class-wcpdf-settings.php:
|
205 |
-
msgid ""
|
206 |
-
"
|
207 |
-
"WooCommerce order number"
|
208 |
-
msgstr ""
|
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:
|
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:
|
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,50 +215,42 @@ msgstr ""
|
|
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:
|
230 |
-
#, fuzzy
|
231 |
msgid "Invoice number format"
|
232 |
-
msgstr "
|
233 |
|
234 |
-
#: includes/class-wcpdf-settings.php:
|
235 |
msgid "Prefix"
|
236 |
-
msgstr ""
|
237 |
|
238 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
245 |
msgid "Suffix"
|
246 |
-
msgstr ""
|
247 |
|
248 |
-
#: includes/class-wcpdf-settings.php:
|
249 |
msgid "Padding"
|
250 |
-
msgstr ""
|
251 |
|
252 |
-
#: includes/class-wcpdf-settings.php:
|
253 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
254 |
msgstr ""
|
|
|
|
|
255 |
|
256 |
-
#: includes/class-wcpdf-settings.php:
|
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 |
-
|
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"
|
@@ -305,11 +286,11 @@ 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:
|
309 |
msgid "Image resolution"
|
310 |
msgstr "Resolución de la imagen"
|
311 |
|
312 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
@@ -319,45 +300,46 @@ msgstr ""
|
|
319 |
"plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
|
320 |
"plantilla personalizada:"
|
321 |
|
322 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
msgid "Invoice Number"
|
324 |
msgstr "Nº de la factura"
|
325 |
|
326 |
-
#: includes/class-wcpdf-writepanels.php:
|
327 |
msgid "Download invoice (PDF)"
|
328 |
msgstr "Descargar factura (PDF)"
|
329 |
|
330 |
-
#: includes/class-wcpdf-writepanels.php:
|
331 |
msgid "Create PDF"
|
332 |
msgstr "Crear PDF"
|
333 |
|
334 |
-
#: includes/class-wcpdf-writepanels.php:
|
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:
|
352 |
-
#: templates/pdf/Simple/invoice.php:
|
353 |
msgid "Invoice Date:"
|
354 |
msgstr "Fecha de la factura:"
|
355 |
|
356 |
-
#: includes/class-wcpdf-writepanels.php:
|
357 |
msgid "h"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/class-wcpdf-writepanels.php:
|
361 |
msgid "m"
|
362 |
msgstr ""
|
363 |
|
@@ -372,62 +354,62 @@ msgstr "Factura"
|
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Albarán de entrega"
|
374 |
|
375 |
-
#: templates/pdf/Simple/invoice.php:
|
376 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
-
msgid "Order Date:"
|
378 |
-
msgstr "Fecha del pedido:"
|
379 |
-
|
380 |
-
#: templates/pdf/Simple/invoice.php:46
|
381 |
msgid "Invoice Number:"
|
382 |
msgstr "Nº de la factura:"
|
383 |
|
384 |
-
#: templates/pdf/Simple/invoice.php:
|
385 |
-
#: templates/pdf/Simple/packing-slip.php:
|
386 |
msgid "Order Number:"
|
387 |
msgstr "Orden número:"
|
388 |
|
389 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Payment Method:"
|
391 |
msgstr "Forma de pago:"
|
392 |
|
393 |
-
#: templates/pdf/Simple/invoice.php:
|
394 |
-
#: templates/pdf/Simple/packing-slip.php:
|
395 |
msgid "Product"
|
396 |
msgstr "Producto"
|
397 |
|
398 |
-
#: templates/pdf/Simple/invoice.php:
|
399 |
-
#: templates/pdf/Simple/packing-slip.php:
|
400 |
msgid "Quantity"
|
401 |
msgstr "Cantidad"
|
402 |
|
403 |
-
#: templates/pdf/Simple/invoice.php:
|
404 |
msgid "Price"
|
405 |
msgstr "Precio"
|
406 |
|
407 |
-
#: templates/pdf/Simple/invoice.php:
|
408 |
msgid "Description"
|
409 |
msgstr "Descripción"
|
410 |
|
411 |
-
#: templates/pdf/Simple/invoice.php:
|
412 |
msgid "SKU"
|
413 |
msgstr "Nº Referencia"
|
414 |
|
415 |
-
#: templates/pdf/Simple/invoice.php:
|
416 |
-
#: templates/pdf/Simple/packing-slip.php:
|
417 |
msgid "SKU:"
|
418 |
msgstr "Nº Referencia:"
|
419 |
|
420 |
-
#: templates/pdf/Simple/invoice.php:
|
421 |
-
#: templates/pdf/Simple/packing-slip.php:
|
422 |
msgid "Weight:"
|
423 |
msgstr "Peso:"
|
424 |
|
425 |
-
#: templates/pdf/Simple/invoice.php:
|
426 |
-
#: templates/pdf/Simple/packing-slip.php:
|
427 |
msgid "Customer Notes"
|
428 |
msgstr "Notas del cliente"
|
429 |
|
430 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
431 |
#, php-format
|
432 |
msgid ""
|
433 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -436,43 +418,65 @@ msgstr ""
|
|
436 |
"¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
|
437 |
"instalado y activado!"
|
438 |
|
439 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
msgid "N/A"
|
442 |
msgstr "No disponible"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
msgid "Payment method"
|
446 |
msgstr "Forma de pago"
|
447 |
|
448 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
449 |
msgid "Shipping method"
|
450 |
msgstr "Envío"
|
451 |
|
452 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
453 |
msgid "Subtotal"
|
454 |
msgstr "Subtotal"
|
455 |
|
456 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Envío"
|
459 |
|
460 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
461 |
msgid "Discount"
|
462 |
msgstr "Descuento"
|
463 |
|
464 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
465 |
msgid "VAT"
|
466 |
msgstr "IVA"
|
467 |
|
468 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
469 |
msgid "Total ex. VAT"
|
470 |
msgstr "Total (Sin IVA)"
|
471 |
|
472 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
473 |
msgid "Total"
|
474 |
msgstr "Total"
|
475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
#~ msgid ""
|
477 |
#~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
|
478 |
#~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-04 19:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-06 14:50+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.10\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:175 includes/class-wcpdf-export.php:180
|
20 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
21 |
+
#: includes/class-wcpdf-export.php:204
|
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:263
|
26 |
msgid "invoice"
|
27 |
msgid_plural "invoices"
|
28 |
msgstr[0] "factura"
|
29 |
msgstr[1] "facturas"
|
30 |
|
31 |
+
#: includes/class-wcpdf-export.php:267
|
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:38 includes/class-wcpdf-settings.php:39
|
38 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
39 |
msgid "PDF Invoices"
|
40 |
msgstr "Facturas PDF"
|
41 |
|
42 |
+
#: includes/class-wcpdf-settings.php:69
|
43 |
msgid "Settings"
|
44 |
msgstr "Ajustes"
|
45 |
|
46 |
+
#: includes/class-wcpdf-settings.php:91
|
47 |
msgid "General"
|
48 |
msgstr "General"
|
49 |
|
50 |
+
#: includes/class-wcpdf-settings.php:92
|
51 |
msgid "Template"
|
52 |
msgstr "Plantilla"
|
53 |
|
54 |
+
#: includes/class-wcpdf-settings.php:101
|
55 |
msgid "WooCommerce PDF Invoices"
|
56 |
msgstr "WooCommerce Facturas PDF"
|
57 |
|
58 |
+
#: includes/class-wcpdf-settings.php:107
|
59 |
msgid "Status"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/class-wcpdf-settings.php:118
|
63 |
#, php-format
|
64 |
msgid ""
|
65 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
66 |
"extension."
|
67 |
msgstr ""
|
68 |
+
"¡Sube tus facturas automáticamente a dropbox!<br/>Visita la extensión %s."
|
69 |
|
70 |
+
#: includes/class-wcpdf-settings.php:128
|
71 |
#, php-format
|
72 |
msgid ""
|
73 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
76 |
"¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas premium "
|
77 |
"de PDF Invoice & Packing Slips en %s."
|
78 |
|
79 |
+
#: includes/class-wcpdf-settings.php:129
|
80 |
#, php-format
|
81 |
msgid "For custom templates, contact us at %s."
|
82 |
msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
|
83 |
|
84 |
+
#: includes/class-wcpdf-settings.php:184
|
85 |
msgid "General settings"
|
86 |
msgstr "Ajustes generales"
|
87 |
|
88 |
+
#: includes/class-wcpdf-settings.php:191
|
89 |
msgid "How do you want to view the PDF?"
|
90 |
msgstr "¿Cómo desea visualizar el PDF?"
|
91 |
|
92 |
+
#: includes/class-wcpdf-settings.php:199
|
93 |
msgid "Download the PDF"
|
94 |
msgstr "Descargándolo."
|
95 |
|
96 |
+
#: includes/class-wcpdf-settings.php:200
|
97 |
msgid "Open the PDF in a new browser tab/window"
|
98 |
msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
|
99 |
|
100 |
+
#: includes/class-wcpdf-settings.php:210
|
101 |
msgid "Attach invoice to:"
|
102 |
msgstr "Adjuntar factura a:"
|
103 |
|
104 |
+
#: includes/class-wcpdf-settings.php:218
|
105 |
msgid "Admin New Order email"
|
106 |
msgstr "Correo electrónico del administrador al crear un nuevo pedido."
|
107 |
|
108 |
+
#: includes/class-wcpdf-settings.php:219
|
109 |
msgid "Customer Processing Order email"
|
110 |
msgstr "Correo electrónico del cliente al procesar el pedido."
|
111 |
|
112 |
+
#: includes/class-wcpdf-settings.php:220
|
113 |
msgid "Customer Completed Order email"
|
114 |
msgstr "Correo electrónico del cliente al completar el pedido."
|
115 |
|
116 |
+
#: includes/class-wcpdf-settings.php:221
|
117 |
msgid "Customer Invoice email"
|
118 |
msgstr "Correo electrónico de la factura del cliente."
|
119 |
|
120 |
+
#: includes/class-wcpdf-settings.php:223
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
128 |
"¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
|
129 |
"carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
|
130 |
|
131 |
+
#: includes/class-wcpdf-settings.php:229
|
132 |
msgid "Enable invoice number column in the orders list"
|
133 |
msgstr "Activar la columna de número de factura en pedidos"
|
134 |
|
135 |
+
#: includes/class-wcpdf-settings.php:268
|
136 |
msgid "PDF Template settings"
|
137 |
msgstr "Ajustes de la plantilla PDF"
|
138 |
|
139 |
+
#: includes/class-wcpdf-settings.php:280
|
140 |
msgid "Choose a template"
|
141 |
msgstr "Elige una plantilla"
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:288
|
144 |
#, php-format
|
145 |
msgid ""
|
146 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
147 |
+
"your (child) theme in <code>%s</code> to customize them"
|
148 |
msgstr ""
|
149 |
+
"¿Quieres usar tu propia plantilla? Copia los archivos de la carpeta <code>"
|
150 |
+
"%s</code> a tu \"theme\" (o child theme) en <code>%s</code> para "
|
151 |
+
"personalizarlos."
|
152 |
|
153 |
+
#: includes/class-wcpdf-settings.php:294
|
154 |
msgid "Paper size"
|
155 |
msgstr "Tamaño del papel"
|
156 |
|
157 |
+
#: includes/class-wcpdf-settings.php:302
|
158 |
msgid "A4"
|
159 |
msgstr "A4"
|
160 |
|
161 |
+
#: includes/class-wcpdf-settings.php:303
|
162 |
msgid "Letter"
|
163 |
msgstr "Carta"
|
164 |
|
165 |
+
#: includes/class-wcpdf-settings.php:310
|
166 |
msgid "Shop header/logo"
|
167 |
msgstr "Logotipo de la tienda"
|
168 |
|
169 |
+
#: includes/class-wcpdf-settings.php:317
|
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:318
|
174 |
msgid "Set image"
|
175 |
msgstr "Añadir imagen"
|
176 |
|
177 |
+
#: includes/class-wcpdf-settings.php:319
|
178 |
msgid "Remove image"
|
179 |
msgstr "Eliminar la imagen"
|
180 |
|
181 |
+
#: includes/class-wcpdf-settings.php:326
|
182 |
msgid "Shop Name"
|
183 |
msgstr "Nombre de la tienda"
|
184 |
|
185 |
+
#: includes/class-wcpdf-settings.php:339
|
186 |
msgid "Shop Address"
|
187 |
msgstr "Dirección de la tienda"
|
188 |
|
189 |
+
#: includes/class-wcpdf-settings.php:371
|
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:386
|
194 |
+
msgid "Display invoice date"
|
195 |
+
msgstr "Mostrar fecha de la factura"
|
196 |
|
197 |
+
#: includes/class-wcpdf-settings.php:399
|
198 |
+
msgid "Display built-in sequential invoice number"
|
199 |
+
msgstr "Mostrar numeración secuencial en las facturas"
|
|
|
|
|
|
|
|
|
200 |
|
201 |
+
#: includes/class-wcpdf-settings.php:412
|
202 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
203 |
msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
|
204 |
|
205 |
+
#: includes/class-wcpdf-settings.php:420
|
206 |
msgid ""
|
207 |
"This is the number that will be used on the next invoice that is created. By "
|
208 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
215 |
"y se incrementa por cada nueva. Tenga en cuenta que si lo reemplaza y lo "
|
216 |
"ajusta a uno inferior podría crear facturas con números duplicados."
|
217 |
|
218 |
+
#: includes/class-wcpdf-settings.php:426
|
|
|
219 |
msgid "Invoice number format"
|
220 |
+
msgstr "Fomato en la numeración de las facturas"
|
221 |
|
222 |
+
#: includes/class-wcpdf-settings.php:435
|
223 |
msgid "Prefix"
|
224 |
+
msgstr "Prefijo"
|
225 |
|
226 |
+
#: includes/class-wcpdf-settings.php:437
|
227 |
msgid ""
|
228 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
229 |
"respectively"
|
230 |
msgstr ""
|
231 |
+
"para usar el año y/o el mes, usa [order_year] o [order_month] respectivamente"
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:440
|
234 |
msgid "Suffix"
|
235 |
+
msgstr "Sufijo"
|
236 |
|
237 |
+
#: includes/class-wcpdf-settings.php:445
|
238 |
msgid "Padding"
|
239 |
+
msgstr "Número de dígitos"
|
240 |
|
241 |
+
#: includes/class-wcpdf-settings.php:447
|
242 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
243 |
msgstr ""
|
244 |
+
"Introduzca el número de dígitos aquí - introduzca \"6\" para mostrar 42 como "
|
245 |
+
"000042"
|
246 |
|
247 |
+
#: includes/class-wcpdf-settings.php:450
|
248 |
msgid ""
|
249 |
"note: if you have already created a custom invoice number format with a "
|
250 |
"filter, the above settings will be ignored"
|
251 |
msgstr ""
|
252 |
+
"Nota: si ya ha creado un formato personalizado de numeración de facturas con "
|
253 |
+
"un filtro, los ajustes anteriores serán ignorados"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
|
255 |
#: includes/class-wcpdf-settings.php:457
|
256 |
msgid "Extra template fields"
|
286 |
"Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
|
287 |
"i>."
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:761
|
290 |
msgid "Image resolution"
|
291 |
msgstr "Resolución de la imagen"
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:877
|
294 |
msgid ""
|
295 |
"These are used for the (optional) footer columns in the <em>Modern "
|
296 |
"(Premium)</em> template, but can also be used for other elements in your "
|
300 |
"plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
|
301 |
"plantilla personalizada:"
|
302 |
|
303 |
+
#: includes/class-wcpdf-writepanels.php:32
|
304 |
+
msgid "PDF Packing Slips"
|
305 |
+
msgstr "Albaranes de entrega PDF"
|
306 |
+
|
307 |
+
#: includes/class-wcpdf-writepanels.php:91
|
308 |
+
#: includes/class-wcpdf-writepanels.php:184
|
309 |
+
msgid "PDF Invoice"
|
310 |
+
msgstr "Factura PDF"
|
311 |
+
|
312 |
+
#: includes/class-wcpdf-writepanels.php:96
|
313 |
+
#: includes/class-wcpdf-writepanels.php:189
|
314 |
+
msgid "PDF Packing Slip"
|
315 |
+
msgstr "Albarán de entrega PDF"
|
316 |
+
|
317 |
+
#: includes/class-wcpdf-writepanels.php:123
|
318 |
msgid "Invoice Number"
|
319 |
msgstr "Nº de la factura"
|
320 |
|
321 |
+
#: includes/class-wcpdf-writepanels.php:160
|
322 |
msgid "Download invoice (PDF)"
|
323 |
msgstr "Descargar factura (PDF)"
|
324 |
|
325 |
+
#: includes/class-wcpdf-writepanels.php:171
|
326 |
msgid "Create PDF"
|
327 |
msgstr "Crear PDF"
|
328 |
|
329 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
msgid "PDF Invoice Number (unformatted!)"
|
331 |
msgstr "Nº de la factura PDF (¡sin formato!)"
|
332 |
|
333 |
+
#: includes/class-wcpdf-writepanels.php:235
|
334 |
+
#: templates/pdf/Simple/invoice.php:36
|
335 |
msgid "Invoice Date:"
|
336 |
msgstr "Fecha de la factura:"
|
337 |
|
338 |
+
#: includes/class-wcpdf-writepanels.php:236
|
339 |
msgid "h"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/class-wcpdf-writepanels.php:236
|
343 |
msgid "m"
|
344 |
msgstr ""
|
345 |
|
354 |
msgid "Packing Slip"
|
355 |
msgstr "Albarán de entrega"
|
356 |
|
357 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
358 |
msgid "Invoice Number:"
|
359 |
msgstr "Nº de la factura:"
|
360 |
|
361 |
+
#: templates/pdf/Simple/invoice.php:39
|
362 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
363 |
msgid "Order Number:"
|
364 |
msgstr "Orden número:"
|
365 |
|
366 |
+
#: templates/pdf/Simple/invoice.php:41
|
367 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
368 |
+
msgid "Order Date:"
|
369 |
+
msgstr "Fecha del pedido:"
|
370 |
+
|
371 |
+
#: templates/pdf/Simple/invoice.php:43
|
372 |
msgid "Payment Method:"
|
373 |
msgstr "Forma de pago:"
|
374 |
|
375 |
+
#: templates/pdf/Simple/invoice.php:58
|
376 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
377 |
msgid "Product"
|
378 |
msgstr "Producto"
|
379 |
|
380 |
+
#: templates/pdf/Simple/invoice.php:59
|
381 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
382 |
msgid "Quantity"
|
383 |
msgstr "Cantidad"
|
384 |
|
385 |
+
#: templates/pdf/Simple/invoice.php:60
|
386 |
msgid "Price"
|
387 |
msgstr "Precio"
|
388 |
|
389 |
+
#: templates/pdf/Simple/invoice.php:66
|
390 |
msgid "Description"
|
391 |
msgstr "Descripción"
|
392 |
|
393 |
+
#: templates/pdf/Simple/invoice.php:69
|
394 |
msgid "SKU"
|
395 |
msgstr "Nº Referencia"
|
396 |
|
397 |
+
#: templates/pdf/Simple/invoice.php:70
|
398 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
399 |
msgid "SKU:"
|
400 |
msgstr "Nº Referencia:"
|
401 |
|
402 |
+
#: templates/pdf/Simple/invoice.php:71
|
403 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
404 |
msgid "Weight:"
|
405 |
msgstr "Peso:"
|
406 |
|
407 |
+
#: templates/pdf/Simple/invoice.php:105
|
408 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
409 |
msgid "Customer Notes"
|
410 |
msgstr "Notas del cliente"
|
411 |
|
412 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
413 |
#, php-format
|
414 |
msgid ""
|
415 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
418 |
"¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
|
419 |
"instalado y activado!"
|
420 |
|
421 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
422 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
423 |
msgid "N/A"
|
424 |
msgstr "No disponible"
|
425 |
|
426 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
427 |
msgid "Payment method"
|
428 |
msgstr "Forma de pago"
|
429 |
|
430 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
431 |
msgid "Shipping method"
|
432 |
msgstr "Envío"
|
433 |
|
434 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
435 |
msgid "Subtotal"
|
436 |
msgstr "Subtotal"
|
437 |
|
438 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
439 |
msgid "Shipping"
|
440 |
msgstr "Envío"
|
441 |
|
442 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
443 |
msgid "Discount"
|
444 |
msgstr "Descuento"
|
445 |
|
446 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
447 |
msgid "VAT"
|
448 |
msgstr "IVA"
|
449 |
|
450 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
451 |
msgid "Total ex. VAT"
|
452 |
msgstr "Total (Sin IVA)"
|
453 |
|
454 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
455 |
msgid "Total"
|
456 |
msgstr "Total"
|
457 |
|
458 |
+
#~ msgid "Number to display on invoice"
|
459 |
+
#~ msgstr "Número a mostrar en la factura"
|
460 |
+
|
461 |
+
#~ msgid "WooCommerce order number"
|
462 |
+
#~ msgstr "Número de pedido de WooCommerce "
|
463 |
+
|
464 |
+
#~ msgid ""
|
465 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
466 |
+
#~ "the WooCommerce order number"
|
467 |
+
#~ msgstr ""
|
468 |
+
#~ "Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
|
469 |
+
#~ "seleccione el número de pedido de WooCommerce."
|
470 |
+
|
471 |
+
#~ msgid "Date to display on invoice"
|
472 |
+
#~ msgstr "Fecha a mostrar en la factura"
|
473 |
+
|
474 |
+
#~ msgid "Order date"
|
475 |
+
#~ msgstr "Fecha del pedido"
|
476 |
+
|
477 |
+
#~ msgid "PDF invoice"
|
478 |
+
#~ msgstr "Factura PDF "
|
479 |
+
|
480 |
#~ msgid ""
|
481 |
#~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
|
482 |
#~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
|
languages/wpo_wcpdf-nb_NO.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-nb_NO.po
CHANGED
@@ -2,14 +2,14 @@ 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-
|
6 |
-
"Last-Translator:
|
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.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -40,7 +40,7 @@ msgstr[1] "Pakksedler"
|
|
40 |
#: includes/class-wcpdf-writepanels.php:176
|
41 |
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
-
msgstr "PDF
|
44 |
|
45 |
#: includes/class-wcpdf-settings.php:60
|
46 |
msgid "Settings"
|
@@ -48,11 +48,11 @@ msgstr "Innstillinger"
|
|
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"
|
@@ -60,7 +60,7 @@ msgstr "WooCommerce PDF Faktura"
|
|
60 |
|
61 |
#: includes/class-wcpdf-settings.php:98
|
62 |
msgid "Status"
|
63 |
-
msgstr ""
|
64 |
|
65 |
#: includes/class-wcpdf-settings.php:109
|
66 |
#, php-format
|
@@ -68,7 +68,7 @@ msgid ""
|
|
68 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
"extension."
|
70 |
msgstr ""
|
71 |
-
"Last opp alle fakturaer automatisk til din dropbox! br/>Sjekk ut %s "
|
72 |
"utvidelsen."
|
73 |
|
74 |
#: includes/class-wcpdf-settings.php:119
|
@@ -128,14 +128,17 @@ msgid ""
|
|
128 |
"permissions for this folder! Without having write access to this folder, the "
|
129 |
"plugin will not be able to email invoices."
|
130 |
msgstr ""
|
|
|
|
|
|
|
131 |
|
132 |
#: includes/class-wcpdf-settings.php:220
|
133 |
msgid "Enable invoice number column in the orders list"
|
134 |
-
msgstr "Aktiver
|
135 |
|
136 |
#: includes/class-wcpdf-settings.php:259
|
137 |
msgid "PDF Template settings"
|
138 |
-
msgstr "PDF Template
|
139 |
|
140 |
#: includes/class-wcpdf-settings.php:271
|
141 |
msgid "Choose a template"
|
@@ -147,22 +150,24 @@ 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 "
|
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
|
166 |
|
167 |
#: includes/class-wcpdf-settings.php:308
|
168 |
msgid "Select or upload your invoice header/logo"
|
@@ -174,15 +179,15 @@ msgstr "Velg bilde"
|
|
174 |
|
175 |
#: includes/class-wcpdf-settings.php:310
|
176 |
msgid "Remove image"
|
177 |
-
msgstr "Fjern
|
178 |
|
179 |
#: includes/class-wcpdf-settings.php:317
|
180 |
msgid "Shop Name"
|
181 |
-
msgstr "Butikkens
|
182 |
|
183 |
#: includes/class-wcpdf-settings.php:330
|
184 |
msgid "Shop Address"
|
185 |
-
msgstr "Butikkens
|
186 |
|
187 |
#: includes/class-wcpdf-settings.php:362
|
188 |
msgid "Footer: terms & conditions, policies, etc."
|
@@ -194,21 +199,23 @@ msgstr "Nummer som skal vise på faktura"
|
|
194 |
|
195 |
#: includes/class-wcpdf-settings.php:385
|
196 |
msgid "WooCommerce order number"
|
197 |
-
msgstr "WooCommerce
|
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 ""
|
@@ -218,82 +225,91 @@ msgid ""
|
|
218 |
"you override this and set it lower than the highest (PDF) invoice number, "
|
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 "
|
297 |
|
298 |
#: includes/class-wcpdf-settings.php:871
|
299 |
msgid ""
|
@@ -301,6 +317,8 @@ msgid ""
|
|
301 |
"(Premium)</em> template, but can also be used for other elements in your "
|
302 |
"custom template"
|
303 |
msgstr ""
|
|
|
|
|
304 |
|
305 |
#: includes/class-wcpdf-writepanels.php:102
|
306 |
msgid "Invoice Number"
|
@@ -329,20 +347,20 @@ 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 "
|
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
|
@@ -358,7 +376,7 @@ msgstr "Pakkseddel"
|
|
358 |
#: templates/pdf/Simple/invoice.php:40
|
359 |
#: templates/pdf/Simple/packing-slip.php:30
|
360 |
msgid "Order Date:"
|
361 |
-
msgstr "
|
362 |
|
363 |
#: templates/pdf/Simple/invoice.php:46
|
364 |
msgid "Invoice Number:"
|
@@ -392,7 +410,6 @@ msgid "Description"
|
|
392 |
msgstr "Beskrivelse"
|
393 |
|
394 |
#: templates/pdf/Simple/invoice.php:80
|
395 |
-
#, fuzzy
|
396 |
msgid "SKU"
|
397 |
msgstr "Art.nr"
|
398 |
|
@@ -417,11 +434,13 @@ msgid ""
|
|
417 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
418 |
"installed & activated!"
|
419 |
msgstr ""
|
|
|
|
|
420 |
|
421 |
#: woocommerce-pdf-invoices-packingslips.php:191
|
422 |
#: woocommerce-pdf-invoices-packingslips.php:227
|
423 |
msgid "N/A"
|
424 |
-
msgstr ""
|
425 |
|
426 |
#: woocommerce-pdf-invoices-packingslips.php:264
|
427 |
msgid "Payment method"
|
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-10-28 10:40+0100\n"
|
6 |
+
"Last-Translator: Eirik Opsanger <eirik.opsanger@gmail.com>\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.10\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
40 |
#: includes/class-wcpdf-writepanels.php:176
|
41 |
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
+
msgstr "PDF-faktura"
|
44 |
|
45 |
#: includes/class-wcpdf-settings.php:60
|
46 |
msgid "Settings"
|
48 |
|
49 |
#: includes/class-wcpdf-settings.php:82
|
50 |
msgid "General"
|
51 |
+
msgstr "Generelt"
|
52 |
|
53 |
#: includes/class-wcpdf-settings.php:83
|
54 |
msgid "Template"
|
55 |
+
msgstr "Template"
|
56 |
|
57 |
#: includes/class-wcpdf-settings.php:92
|
58 |
msgid "WooCommerce PDF Invoices"
|
60 |
|
61 |
#: includes/class-wcpdf-settings.php:98
|
62 |
msgid "Status"
|
63 |
+
msgstr "Status"
|
64 |
|
65 |
#: includes/class-wcpdf-settings.php:109
|
66 |
#, php-format
|
68 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
69 |
"extension."
|
70 |
msgstr ""
|
71 |
+
"Last opp alle fakturaer automatisk til din dropbox! <br/>Sjekk ut %s "
|
72 |
"utvidelsen."
|
73 |
|
74 |
#: includes/class-wcpdf-settings.php:119
|
128 |
"permissions for this folder! Without having write access to this folder, the "
|
129 |
"plugin will not be able to email invoices."
|
130 |
msgstr ""
|
131 |
+
"Det ser ut til at mappen for midlertidlige filer (<code>%s</code>) ikke er "
|
132 |
+
"skrivbar, sjekk rettighetene på denne mappen! Uten skrivetilgang til denne "
|
133 |
+
"mappen vil ikke denne plugin kunne sende pdf-faktura."
|
134 |
|
135 |
#: includes/class-wcpdf-settings.php:220
|
136 |
msgid "Enable invoice number column in the orders list"
|
137 |
+
msgstr "Aktiver kolonne for fakturanummer i ordrelisten"
|
138 |
|
139 |
#: includes/class-wcpdf-settings.php:259
|
140 |
msgid "PDF Template settings"
|
141 |
+
msgstr "PDF Template-innstillinger"
|
142 |
|
143 |
#: includes/class-wcpdf-settings.php:271
|
144 |
msgid "Choose a template"
|
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 |
+
"Vil du bruke din egen template? Kopier alle filer fra <code>%s</code> til "
|
154 |
+
"<code>%s</code>for å endre de."
|
155 |
|
156 |
#: includes/class-wcpdf-settings.php:285
|
157 |
msgid "Paper size"
|
158 |
+
msgstr "Papirstørrelse"
|
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"
|
167 |
|
168 |
#: includes/class-wcpdf-settings.php:301
|
169 |
msgid "Shop header/logo"
|
170 |
+
msgstr "Butikkens header/logo"
|
171 |
|
172 |
#: includes/class-wcpdf-settings.php:308
|
173 |
msgid "Select or upload your invoice header/logo"
|
179 |
|
180 |
#: includes/class-wcpdf-settings.php:310
|
181 |
msgid "Remove image"
|
182 |
+
msgstr "Fjern bilde"
|
183 |
|
184 |
#: includes/class-wcpdf-settings.php:317
|
185 |
msgid "Shop Name"
|
186 |
+
msgstr "Butikkens navn"
|
187 |
|
188 |
#: includes/class-wcpdf-settings.php:330
|
189 |
msgid "Shop Address"
|
190 |
+
msgstr "Butikkens adresse"
|
191 |
|
192 |
#: includes/class-wcpdf-settings.php:362
|
193 |
msgid "Footer: terms & conditions, policies, etc."
|
199 |
|
200 |
#: includes/class-wcpdf-settings.php:385
|
201 |
msgid "WooCommerce order number"
|
202 |
+
msgstr "WooCommerce ordrenummer"
|
203 |
|
204 |
#: includes/class-wcpdf-settings.php:386
|
205 |
msgid "Built-in sequential invoice number"
|
206 |
+
msgstr "Sekvensielt fakturanummer"
|
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 |
+
"Hvis du bruker \"WooCommerce Sequential Order Numbers plugin\", velg "
|
214 |
+
"WooCommerce ordrenummer"
|
215 |
|
216 |
#: includes/class-wcpdf-settings.php:394
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
+
msgstr "Neste fakturanummer (uten prefix/suffix etc.)"
|
219 |
|
220 |
#: includes/class-wcpdf-settings.php:402
|
221 |
msgid ""
|
225 |
"you override this and set it lower than the highest (PDF) invoice number, "
|
226 |
"this could create double invoice numbers!"
|
227 |
msgstr ""
|
228 |
+
"Dette nummeret er fakturanummer for den neste fakturaen som blir generert. "
|
229 |
+
"Som standard, starter dette fra WooCommerce ordrenummer på den første "
|
230 |
+
"fakturaen som blir generert, for så å øke for hver ny faktura. Merk at "
|
231 |
+
"dersom du endrer denne og setter et lavere tall enn høyeste (PDF) "
|
232 |
+
"fakturanummer, vil du få flere fakturaer med samme nummer!"
|
233 |
|
234 |
#: includes/class-wcpdf-settings.php:408
|
235 |
msgid "Invoice number format"
|
236 |
+
msgstr "Format på fakturanummer"
|
237 |
|
238 |
#: includes/class-wcpdf-settings.php:417
|
239 |
msgid "Prefix"
|
240 |
+
msgstr "Prefix"
|
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 |
+
"for å bruke år og/eller måned, kan du bruker [order_year] og/eller "
|
248 |
+
"[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 "Siffer"
|
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 "skriv antall siffer her - skriv \"6\" for å vise 42 som 000042"
|
261 |
|
262 |
#: includes/class-wcpdf-settings.php:432
|
263 |
msgid ""
|
264 |
"note: if you have already created a custom invoice number format with a "
|
265 |
"filter, the above settings will be ignored"
|
266 |
msgstr ""
|
267 |
+
"merk: hvis du allerede har laget et eget nummerformat for fakuranummer med "
|
268 |
+
"et filter, vil innstillingene over bli ignorert"
|
269 |
|
270 |
#: includes/class-wcpdf-settings.php:440
|
271 |
msgid "Date to display on invoice"
|
272 |
+
msgstr "Dato som vises på faktura"
|
273 |
|
274 |
#: includes/class-wcpdf-settings.php:448
|
275 |
msgid "Order date"
|
276 |
+
msgstr "Bestillingsdato"
|
277 |
|
278 |
#: includes/class-wcpdf-settings.php:449
|
279 |
msgid "Invoice date"
|
280 |
+
msgstr "Fakturadato"
|
281 |
|
282 |
#: includes/class-wcpdf-settings.php:457
|
283 |
msgid "Extra template fields"
|
284 |
+
msgstr "Ekstrafelt"
|
285 |
|
286 |
#: includes/class-wcpdf-settings.php:464
|
287 |
msgid "Extra field 1"
|
288 |
+
msgstr "Ekstrafelt 1"
|
289 |
|
290 |
#: includes/class-wcpdf-settings.php:473
|
291 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
292 |
+
msgstr "Dette er footer, kolonne 1 i <i>Modern (Premium)</i> template"
|
293 |
|
294 |
#: includes/class-wcpdf-settings.php:479
|
295 |
msgid "Extra field 2"
|
296 |
+
msgstr "Ekstrafelt 2"
|
297 |
|
298 |
#: includes/class-wcpdf-settings.php:488
|
299 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
300 |
+
msgstr "Dette er footer, kolonne 2 i <i>Modern (Premium)</i> template"
|
301 |
|
302 |
#: includes/class-wcpdf-settings.php:494
|
303 |
msgid "Extra field 3"
|
304 |
+
msgstr "Ekstrafelt 3"
|
305 |
|
306 |
#: includes/class-wcpdf-settings.php:503
|
307 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
308 |
+
msgstr "Dette er footer, kolonne 3 i <i>Modern (Premium)</i> template"
|
309 |
|
310 |
#: includes/class-wcpdf-settings.php:760
|
311 |
msgid "Image resolution"
|
312 |
+
msgstr "Bildeoppløsning"
|
313 |
|
314 |
#: includes/class-wcpdf-settings.php:871
|
315 |
msgid ""
|
317 |
"(Premium)</em> template, but can also be used for other elements in your "
|
318 |
"custom template"
|
319 |
msgstr ""
|
320 |
+
"Disse brukes for (valgfri) fotnote-kolonner i <em>Modern (Premium)</em> "
|
321 |
+
"template, men kan også brukes for andre elementer i din template"
|
322 |
|
323 |
#: includes/class-wcpdf-writepanels.php:102
|
324 |
msgid "Invoice Number"
|
347 |
|
348 |
#: includes/class-wcpdf-writepanels.php:192
|
349 |
msgid "PDF Invoice Number (unformatted!)"
|
350 |
+
msgstr "PDF fakturanummer (uformatert)"
|
351 |
|
352 |
#: includes/class-wcpdf-writepanels.php:195
|
353 |
#: templates/pdf/Simple/invoice.php:37
|
354 |
msgid "Invoice Date:"
|
355 |
+
msgstr "Fakturadato:"
|
356 |
|
357 |
#: includes/class-wcpdf-writepanels.php:196
|
358 |
msgid "h"
|
359 |
+
msgstr "h"
|
360 |
|
361 |
#: includes/class-wcpdf-writepanels.php:196
|
362 |
msgid "m"
|
363 |
+
msgstr "m"
|
364 |
|
365 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
366 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
376 |
#: templates/pdf/Simple/invoice.php:40
|
377 |
#: templates/pdf/Simple/packing-slip.php:30
|
378 |
msgid "Order Date:"
|
379 |
+
msgstr "Ordredato:"
|
380 |
|
381 |
#: templates/pdf/Simple/invoice.php:46
|
382 |
msgid "Invoice Number:"
|
410 |
msgstr "Beskrivelse"
|
411 |
|
412 |
#: templates/pdf/Simple/invoice.php:80
|
|
|
413 |
msgid "SKU"
|
414 |
msgstr "Art.nr"
|
415 |
|
434 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
435 |
"installed & activated!"
|
436 |
msgstr ""
|
437 |
+
"WooCommerce PDF Invoices & Packing Slips krever %sWooCommerce%s for å bli "
|
438 |
+
"installert og aktivert!"
|
439 |
|
440 |
#: woocommerce-pdf-invoices-packingslips.php:191
|
441 |
#: woocommerce-pdf-invoices-packingslips.php:227
|
442 |
msgid "N/A"
|
443 |
+
msgstr "N/A"
|
444 |
|
445 |
#: woocommerce-pdf-invoices-packingslips.php:264
|
446 |
msgid "Payment method"
|
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,54 +16,53 @@ 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:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:
|
42 |
-
#: includes/class-wcpdf-writepanels.php:177
|
43 |
msgid "PDF Invoices"
|
44 |
msgstr "PDF facturen"
|
45 |
|
46 |
-
#: includes/class-wcpdf-settings.php:
|
47 |
msgid "Settings"
|
48 |
msgstr "Instellingen"
|
49 |
|
50 |
-
#: includes/class-wcpdf-settings.php:
|
51 |
msgid "General"
|
52 |
msgstr "Algemeen"
|
53 |
|
54 |
-
#: includes/class-wcpdf-settings.php:
|
55 |
msgid "Template"
|
56 |
msgstr "Template"
|
57 |
|
58 |
-
#: includes/class-wcpdf-settings.php:
|
59 |
msgid "WooCommerce PDF Invoices"
|
60 |
msgstr "WooCommerce PDF Facturen"
|
61 |
|
62 |
-
#: includes/class-wcpdf-settings.php:
|
63 |
msgid "Status"
|
64 |
msgstr "Status"
|
65 |
|
66 |
-
#: includes/class-wcpdf-settings.php:
|
67 |
#, php-format
|
68 |
msgid ""
|
69 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
@@ -71,57 +70,57 @@ msgid ""
|
|
71 |
msgstr ""
|
72 |
"Upload alle facturen automatisch naar je Dropbox!<br/>Bekijk de %s extensie."
|
73 |
|
74 |
-
#: includes/class-wcpdf-settings.php:
|
75 |
#, php-format
|
76 |
msgid ""
|
77 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
78 |
"Packing Slips templates at %s."
|
79 |
msgstr ""
|
80 |
-
"Op zoek naar geavanceerdere
|
81 |
-
"Packing Slips
|
82 |
|
83 |
-
#: includes/class-wcpdf-settings.php:
|
84 |
#, php-format
|
85 |
msgid "For custom templates, contact us at %s."
|
86 |
msgstr "Neem voor custom templates contact met ons op via %s"
|
87 |
|
88 |
-
#: includes/class-wcpdf-settings.php:
|
89 |
msgid "General settings"
|
90 |
msgstr "Algemene instellingen"
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "How do you want to view the PDF?"
|
94 |
msgstr "Hoe wil je de PDF bekijken?"
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Download the PDF"
|
98 |
msgstr "Download de PDF"
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
101 |
msgid "Open the PDF in a new browser tab/window"
|
102 |
msgstr "Open de PDF in een nieuwe browser tab/venster"
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
msgid "Attach invoice to:"
|
106 |
msgstr "Factuur als bijlage toevoegen aan:"
|
107 |
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
109 |
msgid "Admin New Order email"
|
110 |
-
msgstr "Nieuwe bestelling admin email"
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Customer Processing Order email"
|
114 |
-
msgstr "Bestelling in
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Customer Completed Order email"
|
118 |
-
msgstr "Bestelling
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Customer Invoice email"
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -132,92 +131,80 @@ msgstr ""
|
|
132 |
"controleer de rechten op deze folder! Zonder schrijfrechten kan de plugin "
|
133 |
"geen facturen emailen."
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
136 |
msgid "Enable invoice number column in the orders list"
|
137 |
msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
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 |
#, 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:
|
157 |
msgid "Paper size"
|
158 |
-
msgstr "
|
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 "Shop header/logo"
|
171 |
|
172 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
177 |
msgid "Set image"
|
178 |
msgstr "Stel afbeelding in"
|
179 |
|
180 |
-
#: includes/class-wcpdf-settings.php:
|
181 |
msgid "Remove image"
|
182 |
msgstr "Verwijder afbeelding"
|
183 |
|
184 |
-
#: includes/class-wcpdf-settings.php:
|
185 |
msgid "Shop Name"
|
186 |
msgstr "Shop Naam"
|
187 |
|
188 |
-
#: includes/class-wcpdf-settings.php:
|
189 |
msgid "Shop Address"
|
190 |
msgstr "Shop Adres"
|
191 |
|
192 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#: includes/class-wcpdf-settings.php:
|
209 |
-
msgid ""
|
210 |
-
"
|
211 |
-
"WooCommerce order number"
|
212 |
-
msgstr ""
|
213 |
-
"Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
214 |
-
"dan WooCommerce ordernummer"
|
215 |
|
216 |
-
#: includes/class-wcpdf-settings.php:
|
217 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
218 |
-
msgstr "
|
219 |
|
220 |
-
#: includes/class-wcpdf-settings.php:
|
221 |
msgid ""
|
222 |
"This is the number that will be used on the next invoice that is created. By "
|
223 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -232,15 +219,15 @@ msgstr ""
|
|
232 |
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
233 |
"gevolg hebben!"
|
234 |
|
235 |
-
#: includes/class-wcpdf-settings.php:
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Factuurnummer format"
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Prefix"
|
241 |
msgstr "Voorvoegsel"
|
242 |
|
243 |
-
#: includes/class-wcpdf-settings.php:
|
244 |
msgid ""
|
245 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
246 |
"respectively"
|
@@ -248,21 +235,21 @@ msgstr ""
|
|
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:
|
252 |
msgid "Suffix"
|
253 |
msgstr "Achtervoegsel"
|
254 |
|
255 |
-
#: includes/class-wcpdf-settings.php:
|
256 |
msgid "Padding"
|
257 |
msgstr "Vulling"
|
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 |
"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:
|
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,18 +257,6 @@ msgstr ""
|
|
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"
|
@@ -310,11 +285,11 @@ msgstr "Extra veld 3"
|
|
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:
|
314 |
msgid "Image resolution"
|
315 |
msgstr "Afbeeldings resolutie"
|
316 |
|
317 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
@@ -324,45 +299,44 @@ msgstr ""
|
|
324 |
"<em>Modern (Premium)</em> template, maar kunnen ook gebruikt worden voor "
|
325 |
"andere elementen in je eigen custom sjabloon."
|
326 |
|
327 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
328 |
msgid "Invoice Number"
|
329 |
msgstr "Factuurnummer"
|
330 |
|
331 |
-
#: includes/class-wcpdf-writepanels.php:
|
332 |
msgid "Download invoice (PDF)"
|
333 |
msgstr "Download factuur (PDF)"
|
334 |
|
335 |
-
#: includes/class-wcpdf-writepanels.php:
|
336 |
msgid "Create PDF"
|
337 |
msgstr "Maak PDF"
|
338 |
|
339 |
-
#: includes/class-wcpdf-writepanels.php:
|
340 |
-
msgid "PDF
|
341 |
msgstr "PDF factuur"
|
342 |
|
343 |
-
#: includes/class-wcpdf-writepanels.php:
|
344 |
msgid "PDF Packing Slip"
|
345 |
msgstr "PDF Pakbon"
|
346 |
|
347 |
-
#: includes/class-wcpdf-writepanels.php:
|
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:
|
357 |
-
#: templates/pdf/Simple/invoice.php:
|
358 |
msgid "Invoice Date:"
|
359 |
msgstr "Factuurdatum:"
|
360 |
|
361 |
-
#: includes/class-wcpdf-writepanels.php:
|
362 |
msgid "h"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: includes/class-wcpdf-writepanels.php:
|
366 |
msgid "m"
|
367 |
msgstr ""
|
368 |
|
@@ -377,62 +351,62 @@ msgstr "Factuur"
|
|
377 |
msgid "Packing Slip"
|
378 |
msgstr "Pakbon"
|
379 |
|
380 |
-
#: templates/pdf/Simple/invoice.php:
|
381 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
382 |
-
msgid "Order Date:"
|
383 |
-
msgstr "Orderdatum:"
|
384 |
-
|
385 |
-
#: templates/pdf/Simple/invoice.php:46
|
386 |
msgid "Invoice Number:"
|
387 |
msgstr "Factuurnummer:"
|
388 |
|
389 |
-
#: templates/pdf/Simple/invoice.php:
|
390 |
-
#: templates/pdf/Simple/packing-slip.php:
|
391 |
msgid "Order Number:"
|
392 |
msgstr "Ordernummer:"
|
393 |
|
394 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "Payment Method:"
|
396 |
msgstr "Betaalmethode:"
|
397 |
|
398 |
-
#: templates/pdf/Simple/invoice.php:
|
399 |
-
#: templates/pdf/Simple/packing-slip.php:
|
400 |
msgid "Product"
|
401 |
msgstr "Product"
|
402 |
|
403 |
-
#: templates/pdf/Simple/invoice.php:
|
404 |
-
#: templates/pdf/Simple/packing-slip.php:
|
405 |
msgid "Quantity"
|
406 |
msgstr "Hoeveelheid"
|
407 |
|
408 |
-
#: templates/pdf/Simple/invoice.php:
|
409 |
msgid "Price"
|
410 |
msgstr "Prijs"
|
411 |
|
412 |
-
#: templates/pdf/Simple/invoice.php:
|
413 |
msgid "Description"
|
414 |
msgstr "Omschrijving"
|
415 |
|
416 |
-
#: templates/pdf/Simple/invoice.php:
|
417 |
msgid "SKU"
|
418 |
msgstr "Artikelnummer"
|
419 |
|
420 |
-
#: templates/pdf/Simple/invoice.php:
|
421 |
-
#: templates/pdf/Simple/packing-slip.php:
|
422 |
msgid "SKU:"
|
423 |
msgstr "SKU:"
|
424 |
|
425 |
-
#: templates/pdf/Simple/invoice.php:
|
426 |
-
#: templates/pdf/Simple/packing-slip.php:
|
427 |
msgid "Weight:"
|
428 |
msgstr "Gewicht:"
|
429 |
|
430 |
-
#: templates/pdf/Simple/invoice.php:
|
431 |
-
#: templates/pdf/Simple/packing-slip.php:
|
432 |
msgid "Customer Notes"
|
433 |
msgstr "Opmerking klant:"
|
434 |
|
435 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
436 |
#, php-format
|
437 |
msgid ""
|
438 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -441,43 +415,65 @@ msgstr ""
|
|
441 |
"WooCommerce PDF Invoices & Packing Slips vereist dat %sWooCommerce%s is "
|
442 |
"geïnstalleerd & geactiveerd!"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
446 |
msgid "N/A"
|
447 |
msgstr "N/A"
|
448 |
|
449 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
450 |
msgid "Payment method"
|
451 |
msgstr "Betaalmethode"
|
452 |
|
453 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
454 |
msgid "Shipping method"
|
455 |
msgstr "Verzendmethode"
|
456 |
|
457 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
458 |
msgid "Subtotal"
|
459 |
msgstr "Subtotaal"
|
460 |
|
461 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
462 |
msgid "Shipping"
|
463 |
msgstr "Verzendkosten"
|
464 |
|
465 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
466 |
msgid "Discount"
|
467 |
msgstr "Korting"
|
468 |
|
469 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
470 |
msgid "VAT"
|
471 |
msgstr "BTW"
|
472 |
|
473 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
474 |
msgid "Total ex. VAT"
|
475 |
msgstr "Totaal excl. BTW"
|
476 |
|
477 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
478 |
msgid "Total"
|
479 |
msgstr "Totaal"
|
480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
#~ msgid ""
|
482 |
#~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
|
483 |
#~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-11-02 09:55+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-11-02 09:57+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.10\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
23 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
24 |
+
#: includes/class-wcpdf-export.php:204
|
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:263
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
msgstr[0] "factuur"
|
32 |
msgstr[1] "facturen"
|
33 |
|
34 |
+
#: includes/class-wcpdf-export.php:267
|
35 |
msgid "packing-slip"
|
36 |
msgid_plural "packing-slips"
|
37 |
msgstr[0] "pakbon"
|
38 |
msgstr[1] "pakbonnen"
|
39 |
|
40 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
41 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF facturen"
|
44 |
|
45 |
+
#: includes/class-wcpdf-settings.php:69
|
46 |
msgid "Settings"
|
47 |
msgstr "Instellingen"
|
48 |
|
49 |
+
#: includes/class-wcpdf-settings.php:91
|
50 |
msgid "General"
|
51 |
msgstr "Algemeen"
|
52 |
|
53 |
+
#: includes/class-wcpdf-settings.php:92
|
54 |
msgid "Template"
|
55 |
msgstr "Template"
|
56 |
|
57 |
+
#: includes/class-wcpdf-settings.php:101
|
58 |
msgid "WooCommerce PDF Invoices"
|
59 |
msgstr "WooCommerce PDF Facturen"
|
60 |
|
61 |
+
#: includes/class-wcpdf-settings.php:107
|
62 |
msgid "Status"
|
63 |
msgstr "Status"
|
64 |
|
65 |
+
#: includes/class-wcpdf-settings.php:118
|
66 |
#, php-format
|
67 |
msgid ""
|
68 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
70 |
msgstr ""
|
71 |
"Upload alle facturen automatisch naar je Dropbox!<br/>Bekijk de %s extensie."
|
72 |
|
73 |
+
#: includes/class-wcpdf-settings.php:128
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
77 |
"Packing Slips templates at %s."
|
78 |
msgstr ""
|
79 |
+
"Op zoek naar geavanceerdere templates? Bekijk de Premium PDF Invoice & "
|
80 |
+
"Packing Slips templates op %s."
|
81 |
|
82 |
+
#: includes/class-wcpdf-settings.php:129
|
83 |
#, php-format
|
84 |
msgid "For custom templates, contact us at %s."
|
85 |
msgstr "Neem voor custom templates contact met ons op via %s"
|
86 |
|
87 |
+
#: includes/class-wcpdf-settings.php:184
|
88 |
msgid "General settings"
|
89 |
msgstr "Algemene instellingen"
|
90 |
|
91 |
+
#: includes/class-wcpdf-settings.php:191
|
92 |
msgid "How do you want to view the PDF?"
|
93 |
msgstr "Hoe wil je de PDF bekijken?"
|
94 |
|
95 |
+
#: includes/class-wcpdf-settings.php:199
|
96 |
msgid "Download the PDF"
|
97 |
msgstr "Download de PDF"
|
98 |
|
99 |
+
#: includes/class-wcpdf-settings.php:200
|
100 |
msgid "Open the PDF in a new browser tab/window"
|
101 |
msgstr "Open de PDF in een nieuwe browser tab/venster"
|
102 |
|
103 |
+
#: includes/class-wcpdf-settings.php:210
|
104 |
msgid "Attach invoice to:"
|
105 |
msgstr "Factuur als bijlage toevoegen aan:"
|
106 |
|
107 |
+
#: includes/class-wcpdf-settings.php:218
|
108 |
msgid "Admin New Order email"
|
109 |
+
msgstr "Nieuwe bestelling (admin email)"
|
110 |
|
111 |
+
#: includes/class-wcpdf-settings.php:219
|
112 |
msgid "Customer Processing Order email"
|
113 |
+
msgstr "Bestelling in behandeling (klant email)"
|
114 |
|
115 |
+
#: includes/class-wcpdf-settings.php:220
|
116 |
msgid "Customer Completed Order email"
|
117 |
+
msgstr "Bestelling afgerond (klant email)"
|
118 |
|
119 |
+
#: includes/class-wcpdf-settings.php:221
|
120 |
msgid "Customer Invoice email"
|
121 |
+
msgstr "Factuur (klant email)"
|
122 |
|
123 |
+
#: includes/class-wcpdf-settings.php:223
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
131 |
"controleer de rechten op deze folder! Zonder schrijfrechten kan de plugin "
|
132 |
"geen facturen emailen."
|
133 |
|
134 |
+
#: includes/class-wcpdf-settings.php:229
|
135 |
msgid "Enable invoice number column in the orders list"
|
136 |
msgstr "Schakel factuurnummer kolom in het bestellingen overzicht in"
|
137 |
|
138 |
+
#: includes/class-wcpdf-settings.php:268
|
139 |
msgid "PDF Template settings"
|
140 |
msgstr "PDF Template instellingen"
|
141 |
|
142 |
+
#: includes/class-wcpdf-settings.php:280
|
143 |
msgid "Choose a template"
|
144 |
msgstr "Kies een template"
|
145 |
|
146 |
+
#: includes/class-wcpdf-settings.php:288
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
150 |
+
"your (child) theme in <code>%s</code> to customize them"
|
151 |
msgstr ""
|
152 |
"Wil je je eigen template gebruiken? Kopieer alle bestanden van <code>%s</"
|
153 |
+
"code> naar je (child-) theme in <code>%s</code> en pas ze aan naar je wensen."
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:294
|
156 |
msgid "Paper size"
|
157 |
+
msgstr "Papierformaat"
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:302
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:303
|
164 |
msgid "Letter"
|
165 |
msgstr "Letter (US)"
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:310
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Shop header/logo"
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:317
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Selecteer of upload je factuur header/logo"
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:318
|
176 |
msgid "Set image"
|
177 |
msgstr "Stel afbeelding in"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:319
|
180 |
msgid "Remove image"
|
181 |
msgstr "Verwijder afbeelding"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:326
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Shop Naam"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:339
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Shop Adres"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:371
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Voettekst: algemene voorwaarden, retourenbeleid, etc."
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
#: includes/class-wcpdf-settings.php:386
|
196 |
+
msgid "Display invoice date"
|
197 |
+
msgstr "Geef factuurdatum weer"
|
198 |
|
199 |
+
#: includes/class-wcpdf-settings.php:399
|
200 |
+
msgid "Display built-in sequential invoice number"
|
201 |
+
msgstr "Geef ingebouwde doorlopende factuurnummers weer"
|
|
|
|
|
|
|
|
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:412
|
204 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
205 |
+
msgstr "Volgend factuurnummer (zonder voor- of achtervoegsel etc.)"
|
206 |
|
207 |
+
#: includes/class-wcpdf-settings.php:420
|
208 |
msgid ""
|
209 |
"This is the number that will be used on the next invoice that is created. By "
|
210 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
219 |
"hoogste huidige (PDF) factuurnummer zet, kan dit dubbele factuurnummers tot "
|
220 |
"gevolg hebben!"
|
221 |
|
222 |
+
#: includes/class-wcpdf-settings.php:426
|
223 |
msgid "Invoice number format"
|
224 |
msgstr "Factuurnummer format"
|
225 |
|
226 |
+
#: includes/class-wcpdf-settings.php:435
|
227 |
msgid "Prefix"
|
228 |
msgstr "Voorvoegsel"
|
229 |
|
230 |
+
#: includes/class-wcpdf-settings.php:437
|
231 |
msgid ""
|
232 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
233 |
"respectively"
|
235 |
"gebruik [order_year] of [order_month] om het order jaar en/of maand te weer "
|
236 |
"te geven"
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:440
|
239 |
msgid "Suffix"
|
240 |
msgstr "Achtervoegsel"
|
241 |
|
242 |
+
#: includes/class-wcpdf-settings.php:445
|
243 |
msgid "Padding"
|
244 |
msgstr "Vulling"
|
245 |
|
246 |
+
#: includes/class-wcpdf-settings.php:447
|
247 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
248 |
msgstr ""
|
249 |
"voer hier het aantal cijfers in - vul hier \"6\" in om 42 als 000042 weer te "
|
250 |
"geven"
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:450
|
253 |
msgid ""
|
254 |
"note: if you have already created a custom invoice number format with a "
|
255 |
"filter, the above settings will be ignored"
|
257 |
"let op: als je al een format voor een factuurnummer hebt gemaakt met een "
|
258 |
"filter, worden de bovenstaande instellingen genegeerd"
|
259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
#: includes/class-wcpdf-settings.php:457
|
261 |
msgid "Extra template fields"
|
262 |
msgstr "Extra templatevelden"
|
285 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
286 |
msgstr "Dit is voettekst kolom 3 in het <i>Modern (Premium)</i> template"
|
287 |
|
288 |
+
#: includes/class-wcpdf-settings.php:761
|
289 |
msgid "Image resolution"
|
290 |
msgstr "Afbeeldings resolutie"
|
291 |
|
292 |
+
#: includes/class-wcpdf-settings.php:877
|
293 |
msgid ""
|
294 |
"These are used for the (optional) footer columns in the <em>Modern "
|
295 |
"(Premium)</em> template, but can also be used for other elements in your "
|
299 |
"<em>Modern (Premium)</em> template, maar kunnen ook gebruikt worden voor "
|
300 |
"andere elementen in je eigen custom sjabloon."
|
301 |
|
302 |
+
#: includes/class-wcpdf-writepanels.php:32
|
303 |
+
msgid "PDF Packing Slips"
|
304 |
+
msgstr "PDF Pakbonnen"
|
305 |
+
|
306 |
+
#: includes/class-wcpdf-writepanels.php:123
|
307 |
msgid "Invoice Number"
|
308 |
msgstr "Factuurnummer"
|
309 |
|
310 |
+
#: includes/class-wcpdf-writepanels.php:160
|
311 |
msgid "Download invoice (PDF)"
|
312 |
msgstr "Download factuur (PDF)"
|
313 |
|
314 |
+
#: includes/class-wcpdf-writepanels.php:171
|
315 |
msgid "Create PDF"
|
316 |
msgstr "Maak PDF"
|
317 |
|
318 |
+
#: includes/class-wcpdf-writepanels.php:184
|
319 |
+
msgid "PDF Invoice"
|
320 |
msgstr "PDF factuur"
|
321 |
|
322 |
+
#: includes/class-wcpdf-writepanels.php:189
|
323 |
msgid "PDF Packing Slip"
|
324 |
msgstr "PDF Pakbon"
|
325 |
|
326 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
327 |
msgid "PDF Invoice Number (unformatted!)"
|
328 |
msgstr "PDF Factuurnummer (zonder formatting!)"
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:235
|
331 |
+
#: templates/pdf/Simple/invoice.php:36
|
332 |
msgid "Invoice Date:"
|
333 |
msgstr "Factuurdatum:"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:236
|
336 |
msgid "h"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/class-wcpdf-writepanels.php:236
|
340 |
msgid "m"
|
341 |
msgstr ""
|
342 |
|
351 |
msgid "Packing Slip"
|
352 |
msgstr "Pakbon"
|
353 |
|
354 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Invoice Number:"
|
356 |
msgstr "Factuurnummer:"
|
357 |
|
358 |
+
#: templates/pdf/Simple/invoice.php:39
|
359 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
360 |
msgid "Order Number:"
|
361 |
msgstr "Ordernummer:"
|
362 |
|
363 |
+
#: templates/pdf/Simple/invoice.php:41
|
364 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
365 |
+
msgid "Order Date:"
|
366 |
+
msgstr "Orderdatum:"
|
367 |
+
|
368 |
+
#: templates/pdf/Simple/invoice.php:43
|
369 |
msgid "Payment Method:"
|
370 |
msgstr "Betaalmethode:"
|
371 |
|
372 |
+
#: templates/pdf/Simple/invoice.php:58
|
373 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
374 |
msgid "Product"
|
375 |
msgstr "Product"
|
376 |
|
377 |
+
#: templates/pdf/Simple/invoice.php:59
|
378 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
379 |
msgid "Quantity"
|
380 |
msgstr "Hoeveelheid"
|
381 |
|
382 |
+
#: templates/pdf/Simple/invoice.php:60
|
383 |
msgid "Price"
|
384 |
msgstr "Prijs"
|
385 |
|
386 |
+
#: templates/pdf/Simple/invoice.php:66
|
387 |
msgid "Description"
|
388 |
msgstr "Omschrijving"
|
389 |
|
390 |
+
#: templates/pdf/Simple/invoice.php:69
|
391 |
msgid "SKU"
|
392 |
msgstr "Artikelnummer"
|
393 |
|
394 |
+
#: templates/pdf/Simple/invoice.php:70
|
395 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
396 |
msgid "SKU:"
|
397 |
msgstr "SKU:"
|
398 |
|
399 |
+
#: templates/pdf/Simple/invoice.php:71
|
400 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
401 |
msgid "Weight:"
|
402 |
msgstr "Gewicht:"
|
403 |
|
404 |
+
#: templates/pdf/Simple/invoice.php:105
|
405 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
406 |
msgid "Customer Notes"
|
407 |
msgstr "Opmerking klant:"
|
408 |
|
409 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
410 |
#, php-format
|
411 |
msgid ""
|
412 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
415 |
"WooCommerce PDF Invoices & Packing Slips vereist dat %sWooCommerce%s is "
|
416 |
"geïnstalleerd & geactiveerd!"
|
417 |
|
418 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
419 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
420 |
msgid "N/A"
|
421 |
msgstr "N/A"
|
422 |
|
423 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
424 |
msgid "Payment method"
|
425 |
msgstr "Betaalmethode"
|
426 |
|
427 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
428 |
msgid "Shipping method"
|
429 |
msgstr "Verzendmethode"
|
430 |
|
431 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
432 |
msgid "Subtotal"
|
433 |
msgstr "Subtotaal"
|
434 |
|
435 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
436 |
msgid "Shipping"
|
437 |
msgstr "Verzendkosten"
|
438 |
|
439 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
440 |
msgid "Discount"
|
441 |
msgstr "Korting"
|
442 |
|
443 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
444 |
msgid "VAT"
|
445 |
msgstr "BTW"
|
446 |
|
447 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
448 |
msgid "Total ex. VAT"
|
449 |
msgstr "Totaal excl. BTW"
|
450 |
|
451 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
452 |
msgid "Total"
|
453 |
msgstr "Totaal"
|
454 |
|
455 |
+
#~ msgid "Number to display on invoice"
|
456 |
+
#~ msgstr "Nummer op de factuur"
|
457 |
+
|
458 |
+
#~ msgid "WooCommerce order number"
|
459 |
+
#~ msgstr "WooCommerce ordernummer"
|
460 |
+
|
461 |
+
#~ msgid ""
|
462 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
463 |
+
#~ "the WooCommerce order number"
|
464 |
+
#~ msgstr ""
|
465 |
+
#~ "Als je de WooCommerce Sequential Order Numbers plugin gebruikt, selecteer "
|
466 |
+
#~ "dan WooCommerce ordernummer"
|
467 |
+
|
468 |
+
#~ msgid "Date to display on invoice"
|
469 |
+
#~ msgstr "Datum op de factuur"
|
470 |
+
|
471 |
+
#~ msgid "Order date"
|
472 |
+
#~ msgstr "Orderdatum"
|
473 |
+
|
474 |
+
#~ msgid "PDF invoice"
|
475 |
+
#~ msgstr "PDF factuur"
|
476 |
+
|
477 |
#~ msgid ""
|
478 |
#~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
|
479 |
#~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
|
languages/wpo_wcpdf-pl_PL.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-pl_PL.po
CHANGED
@@ -2,16 +2,17 @@ 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-
|
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=
|
|
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
@@ -23,24 +24,27 @@ 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] "
|
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 "Zamówienie
|
44 |
|
45 |
#: includes/class-wcpdf-settings.php:60
|
46 |
msgid "Settings"
|
@@ -56,7 +60,7 @@ msgstr "Szablon"
|
|
56 |
|
57 |
#: includes/class-wcpdf-settings.php:92
|
58 |
msgid "WooCommerce PDF Invoices"
|
59 |
-
msgstr "WooCommerce Zmówienie PDF"
|
60 |
|
61 |
#: includes/class-wcpdf-settings.php:98
|
62 |
msgid "Status"
|
@@ -83,7 +87,7 @@ msgstr ""
|
|
83 |
#: includes/class-wcpdf-settings.php:120
|
84 |
#, php-format
|
85 |
msgid "For custom templates, contact us at %s."
|
86 |
-
msgstr "Jeśli potrzebujesz własnych szablonów,
|
87 |
|
88 |
#: includes/class-wcpdf-settings.php:175
|
89 |
msgid "General settings"
|
@@ -99,7 +103,7 @@ msgstr "Ściągnij PDF"
|
|
99 |
|
100 |
#: includes/class-wcpdf-settings.php:191
|
101 |
msgid "Open the PDF in a new browser tab/window"
|
102 |
-
msgstr "PDF w nowej zakładce/okienku przeglądarki"
|
103 |
|
104 |
#: includes/class-wcpdf-settings.php:201
|
105 |
msgid "Attach invoice to:"
|
@@ -129,7 +133,7 @@ msgid ""
|
|
129 |
"plugin will not be able to email invoices."
|
130 |
msgstr ""
|
131 |
"Folder tymczasowy (<code>%s</code>) nie może być zapisany, proszę sprawdzić "
|
132 |
-
"atrybuty tego folderu. Bez prawa do zapisu E-Maile
|
133 |
"być wysłane."
|
134 |
|
135 |
#: includes/class-wcpdf-settings.php:220
|
@@ -167,19 +171,19 @@ msgstr "List"
|
|
167 |
|
168 |
#: includes/class-wcpdf-settings.php:301
|
169 |
msgid "Shop header/logo"
|
170 |
-
msgstr "
|
171 |
|
172 |
#: includes/class-wcpdf-settings.php:308
|
173 |
msgid "Select or upload your invoice header/logo"
|
174 |
-
msgstr "Wybierz albo załaduj logo
|
175 |
|
176 |
#: includes/class-wcpdf-settings.php:309
|
177 |
msgid "Set image"
|
178 |
-
msgstr "
|
179 |
|
180 |
#: includes/class-wcpdf-settings.php:310
|
181 |
msgid "Remove image"
|
182 |
-
msgstr "Usuń
|
183 |
|
184 |
#: includes/class-wcpdf-settings.php:317
|
185 |
msgid "Shop Name"
|
@@ -191,7 +195,7 @@ 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"
|
@@ -227,8 +231,8 @@ msgid ""
|
|
227 |
msgstr ""
|
228 |
"To jest numer, który będzie użyty na następnym zamówieniu. Domyślnie numer "
|
229 |
"startowy jest brany z zamówienia pierwszego zamówienia WooCommerce i który "
|
230 |
-
"zwiększa się z każdym nowym
|
231 |
-
"i
|
232 |
"zdublować numery zamówień!"
|
233 |
|
234 |
#: includes/class-wcpdf-settings.php:408
|
@@ -352,7 +356,7 @@ msgid ""
|
|
352 |
"(Premium)</em> template, but can also be used for other elements in your "
|
353 |
"custom template"
|
354 |
msgstr ""
|
355 |
-
"Te pola zostaną użyte (opcjonalnie) dla stopki
|
356 |
"(Premium)</em>,mogą jedna być też użyte dla innych elementów własnego "
|
357 |
"szablonu."
|
358 |
|
@@ -370,16 +374,16 @@ msgstr "Stwórz PDF"
|
|
370 |
|
371 |
#: includes/class-wcpdf-writepanels.php:160
|
372 |
msgid "PDF invoice"
|
373 |
-
msgstr "PDF
|
374 |
|
375 |
#: includes/class-wcpdf-writepanels.php:161
|
376 |
msgid "PDF Packing Slip"
|
377 |
-
msgstr "
|
378 |
|
379 |
#: includes/class-wcpdf-writepanels.php:178
|
380 |
#: includes/class-wcpdf-writepanels.php:179
|
381 |
msgid "PDF Packing Slips"
|
382 |
-
msgstr "
|
383 |
|
384 |
#: includes/class-wcpdf-writepanels.php:192
|
385 |
msgid "PDF Invoice Number (unformatted!)"
|
@@ -388,20 +392,20 @@ msgstr "Numer zamówienia PDF (niesformatowany)"
|
|
388 |
#: includes/class-wcpdf-writepanels.php:195
|
389 |
#: templates/pdf/Simple/invoice.php:37
|
390 |
msgid "Invoice Date:"
|
391 |
-
msgstr "Data
|
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"
|
404 |
-
msgstr "
|
405 |
|
406 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
407 |
#: templates/pdf/Simple/packing-slip.php:9
|
@@ -486,7 +490,7 @@ msgstr "Rodzaj wysyłki"
|
|
486 |
|
487 |
#: woocommerce-pdf-invoices-packingslips.php:375
|
488 |
msgid "Subtotal"
|
489 |
-
msgstr "
|
490 |
|
491 |
#: woocommerce-pdf-invoices-packingslips.php:397
|
492 |
msgid "Shipping"
|
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-11-04 16:11+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.8\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
15 |
+
"|| n%100>=20) ? 1 : 2);\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
msgstr "Nie masz wystarczającyh praw dostępu do tej strony."
|
25 |
|
26 |
# This is a filename (prefix). do not use spaces or special characters!
|
27 |
+
# Additional polish commentary: Ze względu na polskie prawo wtyczka ta nie jest odpowiednia do wystawiania faktur, dlatego "invoice" zamiast słowa "faktura" jest tłumaczone jako "zamówienie".
|
28 |
#: includes/class-wcpdf-export.php:223 includes/class-wcpdf-export.php:303
|
29 |
msgid "invoice"
|
30 |
msgid_plural "invoices"
|
31 |
+
msgstr[0] "zamówienie"
|
32 |
+
msgstr[1] "zamówienia"
|
33 |
+
msgstr[2] "zamówień"
|
34 |
|
35 |
# This is a filename (prefix). do not use spaces or special characters!
|
36 |
#: includes/class-wcpdf-export.php:225
|
37 |
msgid "packing-slip"
|
38 |
msgid_plural "packing-slips"
|
39 |
+
msgstr[0] "dowód wysyłki"
|
40 |
+
msgstr[1] "dowody wysyłki"
|
41 |
+
msgstr[2] "dowodów wysyłki"
|
42 |
|
43 |
#: includes/class-wcpdf-settings.php:36 includes/class-wcpdf-settings.php:37
|
44 |
#: includes/class-wcpdf-writepanels.php:176
|
45 |
#: includes/class-wcpdf-writepanels.php:177
|
46 |
msgid "PDF Invoices"
|
47 |
+
msgstr "Zamówienie jako PDF"
|
48 |
|
49 |
#: includes/class-wcpdf-settings.php:60
|
50 |
msgid "Settings"
|
60 |
|
61 |
#: includes/class-wcpdf-settings.php:92
|
62 |
msgid "WooCommerce PDF Invoices"
|
63 |
+
msgstr "WooCommerce Zmówienie jako PDF"
|
64 |
|
65 |
#: includes/class-wcpdf-settings.php:98
|
66 |
msgid "Status"
|
87 |
#: includes/class-wcpdf-settings.php:120
|
88 |
#, php-format
|
89 |
msgid "For custom templates, contact us at %s."
|
90 |
+
msgstr "Jeśli potrzebujesz własnych szablonów, skontaktuj się z nami na %s."
|
91 |
|
92 |
#: includes/class-wcpdf-settings.php:175
|
93 |
msgid "General settings"
|
103 |
|
104 |
#: includes/class-wcpdf-settings.php:191
|
105 |
msgid "Open the PDF in a new browser tab/window"
|
106 |
+
msgstr "Otwórz PDF w nowej zakładce/okienku przeglądarki"
|
107 |
|
108 |
#: includes/class-wcpdf-settings.php:201
|
109 |
msgid "Attach invoice to:"
|
133 |
"plugin will not be able to email invoices."
|
134 |
msgstr ""
|
135 |
"Folder tymczasowy (<code>%s</code>) nie może być zapisany, proszę sprawdzić "
|
136 |
+
"atrybuty tego folderu. Bez prawa do zapisu E-Maile do zamówienia nie mogą "
|
137 |
"być wysłane."
|
138 |
|
139 |
#: includes/class-wcpdf-settings.php:220
|
171 |
|
172 |
#: includes/class-wcpdf-settings.php:301
|
173 |
msgid "Shop header/logo"
|
174 |
+
msgstr "Nagłówek/logo"
|
175 |
|
176 |
#: includes/class-wcpdf-settings.php:308
|
177 |
msgid "Select or upload your invoice header/logo"
|
178 |
+
msgstr "Wybierz albo załaduj nagłówek/logo zamówienia"
|
179 |
|
180 |
#: includes/class-wcpdf-settings.php:309
|
181 |
msgid "Set image"
|
182 |
+
msgstr "Ustaw obraz"
|
183 |
|
184 |
#: includes/class-wcpdf-settings.php:310
|
185 |
msgid "Remove image"
|
186 |
+
msgstr "Usuń obraz"
|
187 |
|
188 |
#: includes/class-wcpdf-settings.php:317
|
189 |
msgid "Shop Name"
|
195 |
|
196 |
#: includes/class-wcpdf-settings.php:362
|
197 |
msgid "Footer: terms & conditions, policies, etc."
|
198 |
+
msgstr "Stopka: ogólne postanowienia, regulamin, itp."
|
199 |
|
200 |
#: includes/class-wcpdf-settings.php:377
|
201 |
msgid "Number to display on invoice"
|
231 |
msgstr ""
|
232 |
"To jest numer, który będzie użyty na następnym zamówieniu. Domyślnie numer "
|
233 |
"startowy jest brany z zamówienia pierwszego zamówienia WooCommerce i który "
|
234 |
+
"zwiększa się z każdym nowym zamówienia. Zwróć uwagę, że jeśli nadpiszesz to "
|
235 |
+
"i ustawisz numer niższy niż najwyższy numer zamówienia (PDF), to może "
|
236 |
"zdublować numery zamówień!"
|
237 |
|
238 |
#: includes/class-wcpdf-settings.php:408
|
356 |
"(Premium)</em> template, but can also be used for other elements in your "
|
357 |
"custom template"
|
358 |
msgstr ""
|
359 |
+
"Te pola zostaną użyte (opcjonalnie) dla stopki szablonu <em>Modern "
|
360 |
"(Premium)</em>,mogą jedna być też użyte dla innych elementów własnego "
|
361 |
"szablonu."
|
362 |
|
374 |
|
375 |
#: includes/class-wcpdf-writepanels.php:160
|
376 |
msgid "PDF invoice"
|
377 |
+
msgstr "Zamówienie-PDF"
|
378 |
|
379 |
#: includes/class-wcpdf-writepanels.php:161
|
380 |
msgid "PDF Packing Slip"
|
381 |
+
msgstr "Zawartość paczki-PDF"
|
382 |
|
383 |
#: includes/class-wcpdf-writepanels.php:178
|
384 |
#: includes/class-wcpdf-writepanels.php:179
|
385 |
msgid "PDF Packing Slips"
|
386 |
+
msgstr "Zawartość paczek-PDF"
|
387 |
|
388 |
#: includes/class-wcpdf-writepanels.php:192
|
389 |
msgid "PDF Invoice Number (unformatted!)"
|
392 |
#: includes/class-wcpdf-writepanels.php:195
|
393 |
#: templates/pdf/Simple/invoice.php:37
|
394 |
msgid "Invoice Date:"
|
395 |
+
msgstr "Data zamówienia:"
|
396 |
|
397 |
#: includes/class-wcpdf-writepanels.php:196
|
398 |
msgid "h"
|
399 |
+
msgstr "godz."
|
400 |
|
401 |
#: includes/class-wcpdf-writepanels.php:196
|
402 |
msgid "m"
|
403 |
+
msgstr "min."
|
404 |
|
405 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
406 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
407 |
msgid "Invoice"
|
408 |
+
msgstr "Zamówienie"
|
409 |
|
410 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
411 |
#: templates/pdf/Simple/packing-slip.php:9
|
490 |
|
491 |
#: woocommerce-pdf-invoices-packingslips.php:375
|
492 |
msgid "Subtotal"
|
493 |
+
msgstr "Podsuma produktów"
|
494 |
|
495 |
#: woocommerce-pdf-invoices-packingslips.php:397
|
496 |
msgid "Shipping"
|
languages/wpo_wcpdf-pt_BR.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-pt_BR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
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: Victor Debone <victor@debone.com.br>\n"
|
7 |
"Language-Team: Victor Debone <victor@debone.com.br>\n"
|
8 |
"Language: pt_BR\n"
|
@@ -16,53 +16,52 @@ msgstr ""
|
|
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 "Você não tem permissões o bastante para acessar essa página."
|
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] "fatura"
|
30 |
msgstr[1] "faturas"
|
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] "Etiqueta do Pacote"
|
37 |
msgstr[1] "Etiquetas do pacote"
|
38 |
|
39 |
-
#: includes/class-wcpdf-settings.php:
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "Faturas em PDF"
|
44 |
|
45 |
-
#: includes/class-wcpdf-settings.php:
|
46 |
msgid "Settings"
|
47 |
msgstr "Opções"
|
48 |
|
49 |
-
#: includes/class-wcpdf-settings.php:
|
50 |
msgid "General"
|
51 |
msgstr "Geral"
|
52 |
|
53 |
-
#: includes/class-wcpdf-settings.php:
|
54 |
msgid "Template"
|
55 |
msgstr "Modelo"
|
56 |
|
57 |
-
#: includes/class-wcpdf-settings.php:
|
58 |
msgid "WooCommerce PDF Invoices"
|
59 |
msgstr "Faturas em PDF do WooCommerce"
|
60 |
|
61 |
-
#: includes/class-wcpdf-settings.php:
|
62 |
msgid "Status"
|
63 |
msgstr "Status"
|
64 |
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
66 |
#, php-format
|
67 |
msgid ""
|
68 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
@@ -71,7 +70,7 @@ msgstr ""
|
|
71 |
"Envie todas as faturas automaticamente para o seu dropbox! <br/> Dê uma "
|
72 |
"olhada na extensão %s."
|
73 |
|
74 |
-
#: includes/class-wcpdf-settings.php:
|
75 |
#, php-format
|
76 |
msgid ""
|
77 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
@@ -80,48 +79,48 @@ msgstr ""
|
|
80 |
"Está procurando por modelos mais avançados? Confira os modelos Premiums em "
|
81 |
"%s."
|
82 |
|
83 |
-
#: includes/class-wcpdf-settings.php:
|
84 |
#, php-format
|
85 |
msgid "For custom templates, contact us at %s."
|
86 |
msgstr "Para modelos personalizados, nos contate em %s."
|
87 |
|
88 |
-
#: includes/class-wcpdf-settings.php:
|
89 |
msgid "General settings"
|
90 |
msgstr "Opções Gerais"
|
91 |
|
92 |
-
#: includes/class-wcpdf-settings.php:
|
93 |
msgid "How do you want to view the PDF?"
|
94 |
msgstr "Como você deseja visualizar o PDF?"
|
95 |
|
96 |
-
#: includes/class-wcpdf-settings.php:
|
97 |
msgid "Download the PDF"
|
98 |
msgstr "Baixar o PDF"
|
99 |
|
100 |
-
#: includes/class-wcpdf-settings.php:
|
101 |
msgid "Open the PDF in a new browser tab/window"
|
102 |
msgstr "Abrir o PDF em uma nova aba/janela"
|
103 |
|
104 |
-
#: includes/class-wcpdf-settings.php:
|
105 |
msgid "Attach invoice to:"
|
106 |
msgstr "Anexar Fatura para:"
|
107 |
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
109 |
msgid "Admin New Order email"
|
110 |
msgstr "Email de Novo Pedido do Administrador"
|
111 |
|
112 |
-
#: includes/class-wcpdf-settings.php:
|
113 |
msgid "Customer Processing Order email"
|
114 |
msgstr "Email de Processando Ordem do Cliente"
|
115 |
|
116 |
-
#: includes/class-wcpdf-settings.php:
|
117 |
msgid "Customer Completed Order email"
|
118 |
msgstr "Email de Pedido Completo do Cliente"
|
119 |
|
120 |
-
#: includes/class-wcpdf-settings.php:
|
121 |
msgid "Customer Invoice email"
|
122 |
msgstr "Email de Fatura do Cliente"
|
123 |
|
124 |
-
#: includes/class-wcpdf-settings.php:
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -132,93 +131,80 @@ msgstr ""
|
|
132 |
"escrita! Sem a permissão de escrita nessa pasta o plugin não poderá enviar "
|
133 |
"as faturas por email."
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
136 |
msgid "Enable invoice number column in the orders list"
|
137 |
msgstr "Permitir coluna do número da Fatura na lista de Pedidos"
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
msgid "PDF Template settings"
|
141 |
msgstr "Opções do Template em PDF"
|
142 |
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Choose a template"
|
145 |
msgstr "Escolha um modelo"
|
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 |
-
"Quer usar o seu próprio modelo? Copie todos os arquivos de <code>
|
154 |
-
"
|
155 |
-
"woocommerce/pdf/seumodelo/</code> para personalizar ele"
|
156 |
|
157 |
-
#: includes/class-wcpdf-settings.php:
|
158 |
msgid "Paper size"
|
159 |
msgstr "Tamanho do Papel"
|
160 |
|
161 |
-
#: includes/class-wcpdf-settings.php:
|
162 |
msgid "A4"
|
163 |
msgstr "A4"
|
164 |
|
165 |
-
#: includes/class-wcpdf-settings.php:
|
166 |
msgid "Letter"
|
167 |
msgstr "Carta"
|
168 |
|
169 |
-
#: includes/class-wcpdf-settings.php:
|
170 |
msgid "Shop header/logo"
|
171 |
msgstr "Logo/Cabeçalho do Loja"
|
172 |
|
173 |
-
#: includes/class-wcpdf-settings.php:
|
174 |
msgid "Select or upload your invoice header/logo"
|
175 |
msgstr "Selecione ou envie o seu logo/cabeçalho"
|
176 |
|
177 |
-
#: includes/class-wcpdf-settings.php:
|
178 |
msgid "Set image"
|
179 |
msgstr "Definir Imagem"
|
180 |
|
181 |
-
#: includes/class-wcpdf-settings.php:
|
182 |
msgid "Remove image"
|
183 |
msgstr "Remover Imagem"
|
184 |
|
185 |
-
#: includes/class-wcpdf-settings.php:
|
186 |
msgid "Shop Name"
|
187 |
msgstr "Nome da Loja"
|
188 |
|
189 |
-
#: includes/class-wcpdf-settings.php:
|
190 |
msgid "Shop Address"
|
191 |
msgstr "Endereço da Loja"
|
192 |
|
193 |
-
#: includes/class-wcpdf-settings.php:
|
194 |
msgid "Footer: terms & conditions, policies, etc."
|
195 |
msgstr "Rodapé: Termos e condições, políticas, etc..."
|
196 |
|
197 |
-
#: includes/class-wcpdf-settings.php:
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
|
201 |
-
#: includes/class-wcpdf-settings.php:
|
202 |
-
msgid "
|
203 |
-
msgstr "
|
204 |
|
205 |
-
#: includes/class-wcpdf-settings.php:
|
206 |
-
msgid "Built-in sequential invoice number"
|
207 |
-
msgstr "Número da Fatura sequencial embutida"
|
208 |
-
|
209 |
-
#: includes/class-wcpdf-settings.php:383
|
210 |
-
msgid ""
|
211 |
-
"If you are using the WooCommerce Sequential Order Numbers plugin, select the "
|
212 |
-
"WooCommerce order number"
|
213 |
-
msgstr ""
|
214 |
-
"Se você estiver usando o plugin de Sequência Numérica de Pedidos do "
|
215 |
-
"WooCommerce, por favor selecione o número do pedido do WooCommerce."
|
216 |
-
|
217 |
-
#: includes/class-wcpdf-settings.php:389
|
218 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
219 |
msgstr "Próximo número da fatura (sem prefixo/sufixo etc.)"
|
220 |
|
221 |
-
#: includes/class-wcpdf-settings.php:
|
222 |
msgid ""
|
223 |
"This is the number that will be used on the next invoice that is created. By "
|
224 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -232,15 +218,15 @@ msgstr ""
|
|
232 |
"você sobrescrever isso e definir um número menor que o atual pode criar "
|
233 |
"duplicidades nas faturas!"
|
234 |
|
235 |
-
#: includes/class-wcpdf-settings.php:
|
236 |
msgid "Invoice number format"
|
237 |
msgstr "Formato do Número da Fatura"
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Prefix"
|
241 |
msgstr "Prefixo"
|
242 |
|
243 |
-
#: includes/class-wcpdf-settings.php:
|
244 |
msgid ""
|
245 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
246 |
"respectively"
|
@@ -248,20 +234,20 @@ msgstr ""
|
|
248 |
"para usar o ano e/ou o mês do pedido, use [order_year] ou [order_month] "
|
249 |
"respectivamente"
|
250 |
|
251 |
-
#: includes/class-wcpdf-settings.php:
|
252 |
msgid "Suffix"
|
253 |
msgstr "Sufixo"
|
254 |
|
255 |
-
#: includes/class-wcpdf-settings.php:
|
256 |
msgid "Padding"
|
257 |
msgstr "Margem"
|
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 |
"insira o número de dígitos aqui - insira \"6\" para mostra 42 como 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 +255,39 @@ msgstr ""
|
|
269 |
"nota: se você já criou um formato de número personalizado de fatura com um "
|
270 |
"filtro, as opções acima serão ignoradas"
|
271 |
|
272 |
-
#: includes/class-wcpdf-settings.php:
|
273 |
-
msgid "Date to display on invoice"
|
274 |
-
msgstr "Data para mostrar na fatura"
|
275 |
-
|
276 |
-
#: includes/class-wcpdf-settings.php:443
|
277 |
-
msgid "Order date"
|
278 |
-
msgstr "Data do Pedido"
|
279 |
-
|
280 |
-
#: includes/class-wcpdf-settings.php:444
|
281 |
-
msgid "Invoice date"
|
282 |
-
msgstr "Data da Fatura"
|
283 |
-
|
284 |
-
#: includes/class-wcpdf-settings.php:452
|
285 |
msgid "Extra template fields"
|
286 |
msgstr "Campos Extras de Modelos"
|
287 |
|
288 |
-
#: includes/class-wcpdf-settings.php:
|
289 |
msgid "Extra field 1"
|
290 |
msgstr "Campo extra 1"
|
291 |
|
292 |
-
#: includes/class-wcpdf-settings.php:
|
293 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
294 |
msgstr "Essa é a primeira coluna do rodapé"
|
295 |
|
296 |
-
#: includes/class-wcpdf-settings.php:
|
297 |
msgid "Extra field 2"
|
298 |
msgstr "Campo extra 2"
|
299 |
|
300 |
-
#: includes/class-wcpdf-settings.php:
|
301 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
302 |
msgstr "Essa é a primeira coluna do rodapé"
|
303 |
|
304 |
-
#: includes/class-wcpdf-settings.php:
|
305 |
msgid "Extra field 3"
|
306 |
msgstr "Campo extra 3"
|
307 |
|
308 |
-
#: includes/class-wcpdf-settings.php:
|
309 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
310 |
msgstr "Essa é a primeira coluna do rodapé"
|
311 |
|
312 |
-
#: includes/class-wcpdf-settings.php:
|
313 |
msgid "Image resolution"
|
314 |
msgstr "Resolução da Imagem"
|
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 "
|
@@ -322,44 +296,44 @@ msgstr ""
|
|
322 |
"Esses são usados para colunas opcionais do rodapé no modelo <em>Premium</"
|
323 |
"em>, mas também podem ser usados no seu modelo personalizado"
|
324 |
|
325 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
326 |
msgid "Invoice Number"
|
327 |
msgstr "Número da Fatura"
|
328 |
|
329 |
-
#: includes/class-wcpdf-writepanels.php:
|
330 |
msgid "Download invoice (PDF)"
|
331 |
msgstr "Baixar Fatura (PDF)"
|
332 |
|
333 |
-
#: includes/class-wcpdf-writepanels.php:
|
334 |
msgid "Create PDF"
|
335 |
msgstr "Criar PDF"
|
336 |
|
337 |
-
#: includes/class-wcpdf-writepanels.php:
|
338 |
-
msgid "PDF
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: includes/class-wcpdf-writepanels.php:
|
342 |
msgid "PDF Packing Slip"
|
343 |
msgstr "Etiqueta do Pacote em PDF"
|
344 |
|
345 |
-
#: includes/class-wcpdf-writepanels.php:
|
346 |
-
#: includes/class-wcpdf-writepanels.php:179
|
347 |
-
msgid "PDF Packing Slips"
|
348 |
-
msgstr "Etiquetas do Pacote em PDF"
|
349 |
-
|
350 |
-
#: includes/class-wcpdf-writepanels.php:192
|
351 |
msgid "PDF Invoice Number (unformatted!)"
|
352 |
msgstr "Número da Fatura em PDF (não formatado!)"
|
353 |
|
354 |
-
#: includes/class-wcpdf-writepanels.php:
|
355 |
-
|
|
|
356 |
msgstr "Data da Fatura:"
|
357 |
|
358 |
-
#: includes/class-wcpdf-writepanels.php:
|
359 |
msgid "h"
|
360 |
msgstr "h"
|
361 |
|
362 |
-
#: includes/class-wcpdf-writepanels.php:
|
363 |
msgid "m"
|
364 |
msgstr "m"
|
365 |
|
@@ -374,66 +348,62 @@ msgstr "Fatura"
|
|
374 |
msgid "Packing Slip"
|
375 |
msgstr "Etiqueta do pacote"
|
376 |
|
377 |
-
#: templates/pdf/Simple/invoice.php:
|
378 |
-
msgid "Invoice Date:"
|
379 |
-
msgstr "Data da Fatura:"
|
380 |
-
|
381 |
-
#: templates/pdf/Simple/invoice.php:40
|
382 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
383 |
-
msgid "Order Date:"
|
384 |
-
msgstr "Data do Pedido:"
|
385 |
-
|
386 |
-
#: templates/pdf/Simple/invoice.php:46
|
387 |
msgid "Invoice Number:"
|
388 |
msgstr "Número da Fatura:"
|
389 |
|
390 |
-
#: templates/pdf/Simple/invoice.php:
|
391 |
-
#: templates/pdf/Simple/packing-slip.php:
|
392 |
msgid "Order Number:"
|
393 |
msgstr "Número do Pedido:"
|
394 |
|
395 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
396 |
msgid "Payment Method:"
|
397 |
msgstr "Método de Pagamento:"
|
398 |
|
399 |
-
#: templates/pdf/Simple/invoice.php:
|
400 |
-
#: templates/pdf/Simple/packing-slip.php:
|
401 |
msgid "Product"
|
402 |
msgstr "Produto"
|
403 |
|
404 |
-
#: templates/pdf/Simple/invoice.php:
|
405 |
-
#: templates/pdf/Simple/packing-slip.php:
|
406 |
msgid "Quantity"
|
407 |
msgstr "Quantidade"
|
408 |
|
409 |
-
#: templates/pdf/Simple/invoice.php:
|
410 |
msgid "Price"
|
411 |
msgstr "Preço"
|
412 |
|
413 |
-
#: templates/pdf/Simple/invoice.php:
|
414 |
msgid "Description"
|
415 |
msgstr "Descrição"
|
416 |
|
417 |
-
#: templates/pdf/Simple/invoice.php:
|
418 |
msgid "SKU"
|
419 |
msgstr "SKU"
|
420 |
|
421 |
-
#: templates/pdf/Simple/invoice.php:
|
422 |
-
#: templates/pdf/Simple/packing-slip.php:
|
423 |
msgid "SKU:"
|
424 |
msgstr "SKU:"
|
425 |
|
426 |
-
#: templates/pdf/Simple/invoice.php:
|
427 |
-
#: templates/pdf/Simple/packing-slip.php:
|
428 |
msgid "Weight:"
|
429 |
msgstr "Peso:"
|
430 |
|
431 |
-
#: templates/pdf/Simple/invoice.php:
|
432 |
-
#: templates/pdf/Simple/packing-slip.php:
|
433 |
msgid "Customer Notes"
|
434 |
msgstr "Notas do Cliente"
|
435 |
|
436 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
437 |
#, php-format
|
438 |
msgid ""
|
439 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -442,39 +412,64 @@ msgstr ""
|
|
442 |
"WooCommerce PDF Invoices & Packing Slips precisa do %sWooCommerce%s "
|
443 |
"instalado e ativado para funcionar!"
|
444 |
|
445 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
446 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
447 |
msgid "N/A"
|
448 |
msgstr "N/A"
|
449 |
|
450 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
451 |
msgid "Payment method"
|
452 |
msgstr "Método de Pagamento"
|
453 |
|
454 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
455 |
msgid "Shipping method"
|
456 |
msgstr "Método de Entrega"
|
457 |
|
458 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
459 |
msgid "Subtotal"
|
460 |
msgstr "Sub-total"
|
461 |
|
462 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
463 |
msgid "Shipping"
|
464 |
msgstr "Frete"
|
465 |
|
466 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
467 |
msgid "Discount"
|
468 |
msgstr "Desconto"
|
469 |
|
470 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
471 |
msgid "VAT"
|
472 |
msgstr "Impostos"
|
473 |
|
474 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
475 |
msgid "Total ex. VAT"
|
476 |
msgstr "Total s/ impostos"
|
477 |
|
478 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
479 |
msgid "Total"
|
480 |
msgstr "Total"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-02 09:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-03 06:39-0300\n"
|
6 |
"Last-Translator: Victor Debone <victor@debone.com.br>\n"
|
7 |
"Language-Team: Victor Debone <victor@debone.com.br>\n"
|
8 |
"Language: pt_BR\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
20 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
21 |
+
#: includes/class-wcpdf-export.php:204
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr "Você não tem permissões o bastante para acessar essa página."
|
24 |
|
25 |
# This is a filename (prefix). do not use spaces or special characters!
|
26 |
+
#: includes/class-wcpdf-export.php:263
|
27 |
msgid "invoice"
|
28 |
msgid_plural "invoices"
|
29 |
msgstr[0] "fatura"
|
30 |
msgstr[1] "faturas"
|
31 |
|
32 |
# This is a filename (prefix). do not use spaces or special characters!
|
33 |
+
#: includes/class-wcpdf-export.php:267
|
34 |
msgid "packing-slip"
|
35 |
msgid_plural "packing-slips"
|
36 |
msgstr[0] "Etiqueta do Pacote"
|
37 |
msgstr[1] "Etiquetas do pacote"
|
38 |
|
39 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
40 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
41 |
msgid "PDF Invoices"
|
42 |
msgstr "Faturas em PDF"
|
43 |
|
44 |
+
#: includes/class-wcpdf-settings.php:69
|
45 |
msgid "Settings"
|
46 |
msgstr "Opções"
|
47 |
|
48 |
+
#: includes/class-wcpdf-settings.php:91
|
49 |
msgid "General"
|
50 |
msgstr "Geral"
|
51 |
|
52 |
+
#: includes/class-wcpdf-settings.php:92
|
53 |
msgid "Template"
|
54 |
msgstr "Modelo"
|
55 |
|
56 |
+
#: includes/class-wcpdf-settings.php:101
|
57 |
msgid "WooCommerce PDF Invoices"
|
58 |
msgstr "Faturas em PDF do WooCommerce"
|
59 |
|
60 |
+
#: includes/class-wcpdf-settings.php:107
|
61 |
msgid "Status"
|
62 |
msgstr "Status"
|
63 |
|
64 |
+
#: includes/class-wcpdf-settings.php:118
|
65 |
#, php-format
|
66 |
msgid ""
|
67 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
70 |
"Envie todas as faturas automaticamente para o seu dropbox! <br/> Dê uma "
|
71 |
"olhada na extensão %s."
|
72 |
|
73 |
+
#: includes/class-wcpdf-settings.php:128
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
79 |
"Está procurando por modelos mais avançados? Confira os modelos Premiums em "
|
80 |
"%s."
|
81 |
|
82 |
+
#: includes/class-wcpdf-settings.php:129
|
83 |
#, php-format
|
84 |
msgid "For custom templates, contact us at %s."
|
85 |
msgstr "Para modelos personalizados, nos contate em %s."
|
86 |
|
87 |
+
#: includes/class-wcpdf-settings.php:184
|
88 |
msgid "General settings"
|
89 |
msgstr "Opções Gerais"
|
90 |
|
91 |
+
#: includes/class-wcpdf-settings.php:191
|
92 |
msgid "How do you want to view the PDF?"
|
93 |
msgstr "Como você deseja visualizar o PDF?"
|
94 |
|
95 |
+
#: includes/class-wcpdf-settings.php:199
|
96 |
msgid "Download the PDF"
|
97 |
msgstr "Baixar o PDF"
|
98 |
|
99 |
+
#: includes/class-wcpdf-settings.php:200
|
100 |
msgid "Open the PDF in a new browser tab/window"
|
101 |
msgstr "Abrir o PDF em uma nova aba/janela"
|
102 |
|
103 |
+
#: includes/class-wcpdf-settings.php:210
|
104 |
msgid "Attach invoice to:"
|
105 |
msgstr "Anexar Fatura para:"
|
106 |
|
107 |
+
#: includes/class-wcpdf-settings.php:218
|
108 |
msgid "Admin New Order email"
|
109 |
msgstr "Email de Novo Pedido do Administrador"
|
110 |
|
111 |
+
#: includes/class-wcpdf-settings.php:219
|
112 |
msgid "Customer Processing Order email"
|
113 |
msgstr "Email de Processando Ordem do Cliente"
|
114 |
|
115 |
+
#: includes/class-wcpdf-settings.php:220
|
116 |
msgid "Customer Completed Order email"
|
117 |
msgstr "Email de Pedido Completo do Cliente"
|
118 |
|
119 |
+
#: includes/class-wcpdf-settings.php:221
|
120 |
msgid "Customer Invoice email"
|
121 |
msgstr "Email de Fatura do Cliente"
|
122 |
|
123 |
+
#: includes/class-wcpdf-settings.php:223
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
131 |
"escrita! Sem a permissão de escrita nessa pasta o plugin não poderá enviar "
|
132 |
"as faturas por email."
|
133 |
|
134 |
+
#: includes/class-wcpdf-settings.php:229
|
135 |
msgid "Enable invoice number column in the orders list"
|
136 |
msgstr "Permitir coluna do número da Fatura na lista de Pedidos"
|
137 |
|
138 |
+
#: includes/class-wcpdf-settings.php:268
|
139 |
msgid "PDF Template settings"
|
140 |
msgstr "Opções do Template em PDF"
|
141 |
|
142 |
+
#: includes/class-wcpdf-settings.php:280
|
143 |
msgid "Choose a template"
|
144 |
msgstr "Escolha um modelo"
|
145 |
|
146 |
+
#: includes/class-wcpdf-settings.php:288
|
147 |
+
#, php-format
|
148 |
msgid ""
|
149 |
+
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
150 |
+
"your (child) theme in <code>%s</code> to customize them"
|
|
|
151 |
msgstr ""
|
152 |
+
"Quer usar o seu próprio modelo? Copie todos os arquivos de <code>%s</code> "
|
153 |
+
"para o seu tema(-filho) em <code>%s</code> para personalizar ele"
|
|
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:294
|
156 |
msgid "Paper size"
|
157 |
msgstr "Tamanho do Papel"
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:302
|
160 |
msgid "A4"
|
161 |
msgstr "A4"
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:303
|
164 |
msgid "Letter"
|
165 |
msgstr "Carta"
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:310
|
168 |
msgid "Shop header/logo"
|
169 |
msgstr "Logo/Cabeçalho do Loja"
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:317
|
172 |
msgid "Select or upload your invoice header/logo"
|
173 |
msgstr "Selecione ou envie o seu logo/cabeçalho"
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:318
|
176 |
msgid "Set image"
|
177 |
msgstr "Definir Imagem"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:319
|
180 |
msgid "Remove image"
|
181 |
msgstr "Remover Imagem"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:326
|
184 |
msgid "Shop Name"
|
185 |
msgstr "Nome da Loja"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:339
|
188 |
msgid "Shop Address"
|
189 |
msgstr "Endereço da Loja"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:371
|
192 |
msgid "Footer: terms & conditions, policies, etc."
|
193 |
msgstr "Rodapé: Termos e condições, políticas, etc..."
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:386
|
196 |
+
msgid "Display invoice date"
|
197 |
+
msgstr "Mostrar a data da Fatura"
|
198 |
|
199 |
+
#: includes/class-wcpdf-settings.php:399
|
200 |
+
msgid "Display built-in sequential invoice number"
|
201 |
+
msgstr "Mostrar o número da Fatura sequencial embutida"
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:412
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
205 |
msgstr "Próximo número da fatura (sem prefixo/sufixo etc.)"
|
206 |
|
207 |
+
#: includes/class-wcpdf-settings.php:420
|
208 |
msgid ""
|
209 |
"This is the number that will be used on the next invoice that is created. By "
|
210 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
218 |
"você sobrescrever isso e definir um número menor que o atual pode criar "
|
219 |
"duplicidades nas faturas!"
|
220 |
|
221 |
+
#: includes/class-wcpdf-settings.php:426
|
222 |
msgid "Invoice number format"
|
223 |
msgstr "Formato do Número da Fatura"
|
224 |
|
225 |
+
#: includes/class-wcpdf-settings.php:435
|
226 |
msgid "Prefix"
|
227 |
msgstr "Prefixo"
|
228 |
|
229 |
+
#: includes/class-wcpdf-settings.php:437
|
230 |
msgid ""
|
231 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
232 |
"respectively"
|
234 |
"para usar o ano e/ou o mês do pedido, use [order_year] ou [order_month] "
|
235 |
"respectivamente"
|
236 |
|
237 |
+
#: includes/class-wcpdf-settings.php:440
|
238 |
msgid "Suffix"
|
239 |
msgstr "Sufixo"
|
240 |
|
241 |
+
#: includes/class-wcpdf-settings.php:445
|
242 |
msgid "Padding"
|
243 |
msgstr "Margem"
|
244 |
|
245 |
+
#: includes/class-wcpdf-settings.php:447
|
246 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
247 |
msgstr ""
|
248 |
"insira o número de dígitos aqui - insira \"6\" para mostra 42 como 000042"
|
249 |
|
250 |
+
#: includes/class-wcpdf-settings.php:450
|
251 |
msgid ""
|
252 |
"note: if you have already created a custom invoice number format with a "
|
253 |
"filter, the above settings will be ignored"
|
255 |
"nota: se você já criou um formato de número personalizado de fatura com um "
|
256 |
"filtro, as opções acima serão ignoradas"
|
257 |
|
258 |
+
#: includes/class-wcpdf-settings.php:457
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
msgid "Extra template fields"
|
260 |
msgstr "Campos Extras de Modelos"
|
261 |
|
262 |
+
#: includes/class-wcpdf-settings.php:464
|
263 |
msgid "Extra field 1"
|
264 |
msgstr "Campo extra 1"
|
265 |
|
266 |
+
#: includes/class-wcpdf-settings.php:473
|
267 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
268 |
msgstr "Essa é a primeira coluna do rodapé"
|
269 |
|
270 |
+
#: includes/class-wcpdf-settings.php:479
|
271 |
msgid "Extra field 2"
|
272 |
msgstr "Campo extra 2"
|
273 |
|
274 |
+
#: includes/class-wcpdf-settings.php:488
|
275 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
276 |
msgstr "Essa é a primeira coluna do rodapé"
|
277 |
|
278 |
+
#: includes/class-wcpdf-settings.php:494
|
279 |
msgid "Extra field 3"
|
280 |
msgstr "Campo extra 3"
|
281 |
|
282 |
+
#: includes/class-wcpdf-settings.php:503
|
283 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
284 |
msgstr "Essa é a primeira coluna do rodapé"
|
285 |
|
286 |
+
#: includes/class-wcpdf-settings.php:761
|
287 |
msgid "Image resolution"
|
288 |
msgstr "Resolução da Imagem"
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:877
|
291 |
msgid ""
|
292 |
"These are used for the (optional) footer columns in the <em>Modern "
|
293 |
"(Premium)</em> template, but can also be used for other elements in your "
|
296 |
"Esses são usados para colunas opcionais do rodapé no modelo <em>Premium</"
|
297 |
"em>, mas também podem ser usados no seu modelo personalizado"
|
298 |
|
299 |
+
#: includes/class-wcpdf-writepanels.php:32
|
300 |
+
msgid "PDF Packing Slips"
|
301 |
+
msgstr "Etiquetas do Pacote em PDF"
|
302 |
+
|
303 |
+
#: includes/class-wcpdf-writepanels.php:123
|
304 |
msgid "Invoice Number"
|
305 |
msgstr "Número da Fatura"
|
306 |
|
307 |
+
#: includes/class-wcpdf-writepanels.php:160
|
308 |
msgid "Download invoice (PDF)"
|
309 |
msgstr "Baixar Fatura (PDF)"
|
310 |
|
311 |
+
#: includes/class-wcpdf-writepanels.php:171
|
312 |
msgid "Create PDF"
|
313 |
msgstr "Criar PDF"
|
314 |
|
315 |
+
#: includes/class-wcpdf-writepanels.php:184
|
316 |
+
msgid "PDF Invoice"
|
317 |
+
msgstr "Faturas em PDF"
|
318 |
|
319 |
+
#: includes/class-wcpdf-writepanels.php:189
|
320 |
msgid "PDF Packing Slip"
|
321 |
msgstr "Etiqueta do Pacote em PDF"
|
322 |
|
323 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
324 |
msgid "PDF Invoice Number (unformatted!)"
|
325 |
msgstr "Número da Fatura em PDF (não formatado!)"
|
326 |
|
327 |
+
#: includes/class-wcpdf-writepanels.php:235
|
328 |
+
#: templates/pdf/Simple/invoice.php:36
|
329 |
+
msgid "Invoice Date:"
|
330 |
msgstr "Data da Fatura:"
|
331 |
|
332 |
+
#: includes/class-wcpdf-writepanels.php:236
|
333 |
msgid "h"
|
334 |
msgstr "h"
|
335 |
|
336 |
+
#: includes/class-wcpdf-writepanels.php:236
|
337 |
msgid "m"
|
338 |
msgstr "m"
|
339 |
|
348 |
msgid "Packing Slip"
|
349 |
msgstr "Etiqueta do pacote"
|
350 |
|
351 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
msgid "Invoice Number:"
|
353 |
msgstr "Número da Fatura:"
|
354 |
|
355 |
+
#: templates/pdf/Simple/invoice.php:39
|
356 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
357 |
msgid "Order Number:"
|
358 |
msgstr "Número do Pedido:"
|
359 |
|
360 |
+
#: templates/pdf/Simple/invoice.php:41
|
361 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
362 |
+
msgid "Order Date:"
|
363 |
+
msgstr "Data do Pedido:"
|
364 |
+
|
365 |
+
#: templates/pdf/Simple/invoice.php:43
|
366 |
msgid "Payment Method:"
|
367 |
msgstr "Método de Pagamento:"
|
368 |
|
369 |
+
#: templates/pdf/Simple/invoice.php:58
|
370 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
371 |
msgid "Product"
|
372 |
msgstr "Produto"
|
373 |
|
374 |
+
#: templates/pdf/Simple/invoice.php:59
|
375 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
376 |
msgid "Quantity"
|
377 |
msgstr "Quantidade"
|
378 |
|
379 |
+
#: templates/pdf/Simple/invoice.php:60
|
380 |
msgid "Price"
|
381 |
msgstr "Preço"
|
382 |
|
383 |
+
#: templates/pdf/Simple/invoice.php:66
|
384 |
msgid "Description"
|
385 |
msgstr "Descrição"
|
386 |
|
387 |
+
#: templates/pdf/Simple/invoice.php:69
|
388 |
msgid "SKU"
|
389 |
msgstr "SKU"
|
390 |
|
391 |
+
#: templates/pdf/Simple/invoice.php:70
|
392 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
393 |
msgid "SKU:"
|
394 |
msgstr "SKU:"
|
395 |
|
396 |
+
#: templates/pdf/Simple/invoice.php:71
|
397 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
398 |
msgid "Weight:"
|
399 |
msgstr "Peso:"
|
400 |
|
401 |
+
#: templates/pdf/Simple/invoice.php:105
|
402 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
403 |
msgid "Customer Notes"
|
404 |
msgstr "Notas do Cliente"
|
405 |
|
406 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
412 |
"WooCommerce PDF Invoices & Packing Slips precisa do %sWooCommerce%s "
|
413 |
"instalado e ativado para funcionar!"
|
414 |
|
415 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
416 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
417 |
msgid "N/A"
|
418 |
msgstr "N/A"
|
419 |
|
420 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
421 |
msgid "Payment method"
|
422 |
msgstr "Método de Pagamento"
|
423 |
|
424 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
425 |
msgid "Shipping method"
|
426 |
msgstr "Método de Entrega"
|
427 |
|
428 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
429 |
msgid "Subtotal"
|
430 |
msgstr "Sub-total"
|
431 |
|
432 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
433 |
msgid "Shipping"
|
434 |
msgstr "Frete"
|
435 |
|
436 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
437 |
msgid "Discount"
|
438 |
msgstr "Desconto"
|
439 |
|
440 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
441 |
msgid "VAT"
|
442 |
msgstr "Impostos"
|
443 |
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
445 |
msgid "Total ex. VAT"
|
446 |
msgstr "Total s/ impostos"
|
447 |
|
448 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
449 |
msgid "Total"
|
450 |
msgstr "Total"
|
451 |
+
|
452 |
+
#~ msgid "Number to display on invoice"
|
453 |
+
#~ msgstr "Número a ser mostrado na fatura"
|
454 |
+
|
455 |
+
#~ msgid "WooCommerce order number"
|
456 |
+
#~ msgstr "Número do Pedido do WooCommerce"
|
457 |
+
|
458 |
+
#~ msgid ""
|
459 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
460 |
+
#~ "the WooCommerce order number"
|
461 |
+
#~ msgstr ""
|
462 |
+
#~ "Se você estiver usando o plugin de Sequência Numérica de Pedidos do "
|
463 |
+
#~ "WooCommerce, por favor selecione o número do pedido do WooCommerce."
|
464 |
+
|
465 |
+
#~ msgid "Date to display on invoice"
|
466 |
+
#~ msgstr "Data para mostrar na fatura"
|
467 |
+
|
468 |
+
#~ msgid "Order date"
|
469 |
+
#~ msgstr "Data do Pedido"
|
470 |
+
|
471 |
+
#~ msgid "PDF invoice"
|
472 |
+
#~ msgstr "Fatura em PDF"
|
473 |
+
|
474 |
+
#~ msgid "Invoice date:"
|
475 |
+
#~ msgstr "Data da Fatura:"
|
languages/wpo_wcpdf-ro_RO.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-ro_RO.po
CHANGED
@@ -1,564 +1,506 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-09-18 15:08+0100\n"
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: afternoon <zicevrei@afternoon.ro>\n"
|
8 |
"Language-Team: \n"
|
9 |
-
"Language: ro_RO\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-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"
|
18 |
"X-Poedit-Basepath: ../\n"
|
19 |
-
"X-
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
|
22 |
-
|
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 |
-
|
30 |
-
|
31 |
msgid "invoice"
|
32 |
msgid_plural "invoices"
|
33 |
msgstr[0] ""
|
34 |
msgstr[1] ""
|
35 |
|
36 |
-
|
37 |
-
|
38 |
msgid "packing-slip"
|
39 |
msgid_plural "packing-slips"
|
40 |
msgstr[0] ""
|
41 |
msgstr[1] ""
|
42 |
|
43 |
-
|
44 |
-
#: includes/class-wcpdf-settings.php:
|
45 |
-
#: includes/class-wcpdf-writepanels.php:
|
46 |
-
|
47 |
msgid "PDF Invoices"
|
48 |
msgstr "Factură PDF"
|
49 |
|
50 |
-
|
51 |
-
|
52 |
msgid "Settings"
|
53 |
msgstr ""
|
54 |
|
55 |
-
|
56 |
-
|
57 |
msgid "General"
|
58 |
msgstr "General"
|
59 |
|
60 |
-
|
61 |
-
|
62 |
msgid "Template"
|
63 |
msgstr "Șablon"
|
64 |
|
65 |
-
|
66 |
-
|
67 |
msgid "WooCommerce PDF Invoices"
|
68 |
msgstr "Factură PDF WooCommerce"
|
69 |
|
70 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
71 |
msgid "Status"
|
72 |
-
msgstr ""
|
73 |
|
74 |
-
#: includes/class-wcpdf-settings.php:
|
75 |
#, php-format
|
76 |
-
|
77 |
-
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
78 |
-
"
|
79 |
-
msgstr ""
|
80 |
|
81 |
-
|
82 |
-
#: includes/class-wcpdf-settings.php:119
|
83 |
#, php-format
|
84 |
-
|
85 |
-
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
86 |
-
"
|
87 |
-
msgstr ""
|
88 |
-
"Căutați șabloane mai avansate? Vezi șabloanele Premium pentru Factură PDF și "
|
89 |
-
"pentru Ordinul de comandă la %s."
|
90 |
|
91 |
-
|
92 |
-
#: includes/class-wcpdf-settings.php:120
|
93 |
#, php-format
|
|
|
94 |
msgid "For custom templates, contact us at %s."
|
95 |
msgstr "Pentru șabloane personalizate, contactați-ne la %s."
|
96 |
|
97 |
-
|
98 |
-
|
99 |
msgid "General settings"
|
100 |
msgstr "Setări generale"
|
101 |
|
102 |
-
|
103 |
-
|
104 |
msgid "How do you want to view the PDF?"
|
105 |
msgstr "Cum doriți să vizualizați PDF-ul?"
|
106 |
|
107 |
-
|
108 |
-
|
109 |
msgid "Download the PDF"
|
110 |
msgstr "Descarcă PDF"
|
111 |
|
112 |
-
|
113 |
-
|
114 |
msgid "Open the PDF in a new browser tab/window"
|
115 |
msgstr "Deschideți PDF-ul într-o filă/fereastră nouă"
|
116 |
|
117 |
-
|
118 |
-
|
119 |
msgid "Attach invoice to:"
|
120 |
msgstr "Atașați factura la:"
|
121 |
|
122 |
-
|
123 |
-
|
124 |
msgid "Admin New Order email"
|
125 |
msgstr "Comanda nouă destinată Administratorului"
|
126 |
|
127 |
-
|
128 |
-
|
129 |
msgid "Customer Processing Order email"
|
130 |
msgstr "Comanda trimisă clientului în momentul procesării acesteia"
|
131 |
|
132 |
-
|
133 |
-
|
134 |
msgid "Customer Completed Order email"
|
135 |
msgstr "Comanda trimisă clientului în momentul finalizării acesteia"
|
136 |
|
137 |
-
|
138 |
-
|
139 |
msgid "Customer Invoice email"
|
140 |
msgstr "Email-ul trimis cu factura finală"
|
141 |
|
142 |
-
|
143 |
-
#: includes/class-wcpdf-settings.php:214
|
144 |
#, php-format
|
145 |
-
|
146 |
-
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
147 |
-
"
|
148 |
-
"plugin will not be able to email invoices."
|
149 |
-
msgstr ""
|
150 |
-
"Se pare că folderul Temp (<code>%s</ code>) nu poate fi scris, verificați "
|
151 |
-
"permisiunile pentru acest folder! Fără a avea acces de scriere la acest "
|
152 |
-
"folder, plugin-ul nu va fi în măsură să trimita email-ul cu facturi."
|
153 |
|
154 |
-
|
155 |
-
|
156 |
msgid "Enable invoice number column in the orders list"
|
157 |
msgstr "Activați coloana Număr de Factură din lista comenzilor"
|
158 |
|
159 |
-
|
160 |
-
|
161 |
msgid "PDF Template settings"
|
162 |
msgstr "Setări șablon PDF"
|
163 |
|
164 |
-
|
165 |
-
|
166 |
msgid "Choose a template"
|
167 |
msgstr "Alege un șablon"
|
168 |
|
169 |
-
|
170 |
-
|
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 |
-
|
185 |
-
|
186 |
msgid "A4"
|
187 |
msgstr "A4"
|
188 |
|
189 |
-
|
190 |
-
|
191 |
msgid "Letter"
|
192 |
msgstr "Letter"
|
193 |
|
194 |
-
|
195 |
-
|
196 |
msgid "Shop header/logo"
|
197 |
msgstr "Antet/Logo"
|
198 |
|
199 |
-
|
200 |
-
|
201 |
msgid "Select or upload your invoice header/logo"
|
202 |
msgstr "Selectați sau încărcați propriul dvs. antet sau logo"
|
203 |
|
204 |
-
|
205 |
-
|
206 |
msgid "Set image"
|
207 |
msgstr "Setare imagine"
|
208 |
|
209 |
-
|
210 |
-
|
211 |
msgid "Remove image"
|
212 |
msgstr "Șterge imagine"
|
213 |
|
214 |
-
|
215 |
-
|
216 |
msgid "Shop Name"
|
217 |
msgstr "Nume magazin"
|
218 |
|
219 |
-
|
220 |
-
|
221 |
msgid "Shop Address"
|
222 |
msgstr "Adresă magazin"
|
223 |
|
224 |
-
|
225 |
-
|
226 |
msgid "Footer: terms & conditions, policies, etc."
|
227 |
-
msgstr ""
|
228 |
-
"Notă de subsol: termeni și condiții, politică de confidențialitate, etc."
|
229 |
|
230 |
-
|
231 |
-
|
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"
|
250 |
-
msgstr ""
|
251 |
-
"Dacă utilizați plugin-ul WooCommerce Sequential Order Numbers, selectați "
|
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 |
-
|
260 |
-
|
261 |
-
msgid ""
|
262 |
-
"
|
263 |
-
|
264 |
-
|
265 |
-
"you override this and set it lower than the highest (PDF) invoice number, "
|
266 |
-
"this could create double invoice numbers!"
|
267 |
-
msgstr ""
|
268 |
-
"Acesta este numărul care va fi folosit la următoarea factură creată. În mod "
|
269 |
-
"implicit, numerotarea începe de la primul număr al Ordinului de comanda "
|
270 |
-
"WooCommerce creat și crește pentru fiecare nouă factură. Rețineți că, dacă "
|
271 |
-
"rescrieți factura și îi setați un număr mai mic decât cel mai mare număr de "
|
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:
|
|
|
281 |
msgid "Prefix"
|
282 |
-
msgstr ""
|
283 |
|
284 |
-
#: includes/class-wcpdf-settings.php:
|
285 |
-
|
286 |
-
"to use the order year and/or month, use [order_year] or [order_month] "
|
287 |
-
"
|
288 |
-
msgstr ""
|
289 |
|
290 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
291 |
msgid "Suffix"
|
292 |
-
msgstr ""
|
293 |
|
294 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
295 |
msgid "Padding"
|
296 |
-
msgstr ""
|
297 |
|
298 |
-
#: includes/class-wcpdf-settings.php:
|
|
|
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 |
-
|
319 |
-
|
320 |
-
msgid "
|
321 |
-
msgstr "
|
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 |
-
|
365 |
-
|
366 |
msgid "Image resolution"
|
367 |
msgstr ""
|
368 |
|
369 |
-
|
370 |
-
|
371 |
-
msgid ""
|
372 |
-
"
|
373 |
-
"(Premium)</em> template, but can also be used for other elements in your "
|
374 |
-
"custom template"
|
375 |
-
msgstr ""
|
376 |
-
"Acestea sunt utilizate pentru (opțional) coloanele notei de subsol din "
|
377 |
-
"șablonul <em>Modern (Premium)</ em>, dar poate fi de asemenea utilizat "
|
378 |
-
"pentru alte elemente în șablonul personalizat"
|
379 |
|
380 |
-
|
381 |
-
|
382 |
msgid "Invoice Number"
|
383 |
msgstr "Număr factură"
|
384 |
|
385 |
-
|
386 |
-
|
387 |
msgid "Download invoice (PDF)"
|
388 |
msgstr "Descarcă factură (PDF)"
|
389 |
|
390 |
-
|
391 |
-
|
392 |
msgid "Create PDF"
|
393 |
msgstr "Crează PDF"
|
394 |
|
395 |
-
|
396 |
-
#: includes/class-wcpdf-writepanels.php:
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
# @ wpo_wcpdf
|
401 |
-
#: includes/class-wcpdf-writepanels.php:161
|
402 |
msgid "PDF Packing Slip"
|
403 |
msgstr "Ordin de comandă PDF"
|
404 |
|
405 |
-
|
406 |
-
|
407 |
-
#: includes/class-wcpdf-writepanels.php:179
|
408 |
msgid "PDF Packing Slips"
|
409 |
msgstr "Ordine de comandă PDF"
|
410 |
|
411 |
-
|
412 |
-
|
413 |
msgid "PDF Invoice Number (unformatted!)"
|
414 |
msgstr "Număr factură PDF (neformatat!)"
|
415 |
|
416 |
-
|
417 |
-
#:
|
418 |
-
|
419 |
msgid "Invoice Date:"
|
420 |
msgstr "Dată factură:"
|
421 |
|
422 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
423 |
msgid "h"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
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
|
|
|
|
|
433 |
msgid "Invoice"
|
434 |
msgstr "Factură"
|
435 |
|
436 |
-
# @ wpo_wcpdf
|
437 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
438 |
#: templates/pdf/Simple/packing-slip.php:9
|
439 |
#: templates/pdf/Simple/packing-slip.php:21
|
|
|
440 |
msgid "Packing Slip"
|
441 |
msgstr "Ordin de comandă"
|
442 |
|
443 |
-
|
444 |
-
#: templates/pdf/Simple/
|
445 |
-
|
446 |
msgid "Order Date:"
|
447 |
msgstr "Dată comandă:"
|
448 |
|
449 |
-
|
450 |
-
|
451 |
msgid "Invoice Number:"
|
452 |
msgstr "Număr factură:"
|
453 |
|
454 |
-
|
455 |
-
#: templates/pdf/Simple/
|
456 |
-
|
457 |
msgid "Order Number:"
|
458 |
msgstr "Număr comandă:"
|
459 |
|
460 |
-
|
461 |
-
|
462 |
msgid "Payment Method:"
|
463 |
msgstr "Metodă de plată:"
|
464 |
|
465 |
-
|
466 |
-
#: templates/pdf/Simple/
|
467 |
-
|
468 |
msgid "Product"
|
469 |
msgstr "Produs"
|
470 |
|
471 |
-
|
472 |
-
#: templates/pdf/Simple/
|
473 |
-
|
474 |
msgid "Quantity"
|
475 |
msgstr "Cantitate"
|
476 |
|
477 |
-
|
478 |
-
|
479 |
msgid "Price"
|
480 |
msgstr "Preț"
|
481 |
|
482 |
-
|
483 |
-
|
484 |
msgid "Description"
|
485 |
msgstr "Descriere"
|
486 |
|
487 |
-
|
488 |
-
|
489 |
msgid "SKU"
|
490 |
msgstr "Cod produs (SKU)"
|
491 |
|
492 |
-
|
493 |
-
#: templates/pdf/Simple/
|
494 |
-
|
495 |
msgid "SKU:"
|
496 |
msgstr "Cod produs (SKU):"
|
497 |
|
498 |
-
|
499 |
-
#: templates/pdf/Simple/
|
500 |
-
|
501 |
msgid "Weight:"
|
502 |
msgstr "Greutate:"
|
503 |
|
504 |
-
|
505 |
-
#: templates/pdf/Simple/
|
506 |
-
|
507 |
msgid "Customer Notes"
|
508 |
msgstr "Notiță client"
|
509 |
|
510 |
-
|
511 |
-
#: woocommerce-pdf-invoices-packingslips.php:96
|
512 |
#, php-format
|
513 |
-
|
514 |
-
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
515 |
-
"
|
516 |
-
msgstr ""
|
517 |
-
"%sWooCommerce%s trebuie să fie instalat și activ pentru ca Factura PDF și "
|
518 |
-
"Ordinul de comandă WooCommerce să funcționeze."
|
519 |
|
520 |
-
|
521 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
522 |
-
|
523 |
msgid "N/A"
|
524 |
msgstr "Nu se aplică (N/A)"
|
525 |
|
526 |
-
|
527 |
-
|
528 |
msgid "Payment method"
|
529 |
msgstr "Metodă de plată"
|
530 |
|
531 |
-
|
532 |
-
|
533 |
msgid "Shipping method"
|
534 |
msgstr "Metodă de livrare"
|
535 |
|
536 |
-
|
537 |
-
|
538 |
msgid "Subtotal"
|
539 |
msgstr "Subtotal"
|
540 |
|
541 |
-
|
542 |
-
|
543 |
msgid "Shipping"
|
544 |
msgstr "Transport"
|
545 |
|
546 |
-
|
547 |
-
|
548 |
msgid "Discount"
|
549 |
msgstr "Reducere"
|
550 |
|
551 |
-
|
552 |
-
|
553 |
msgid "VAT"
|
554 |
msgstr "TVA"
|
555 |
|
556 |
-
|
557 |
-
|
558 |
msgid "Total ex. VAT"
|
559 |
msgstr ""
|
560 |
|
561 |
-
|
562 |
-
|
563 |
msgid "Total"
|
564 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.4.9\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-09-18 15:08+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-11-05 22:53:12+0000\n"
|
7 |
"Last-Translator: afternoon <zicevrei@afternoon.ro>\n"
|
8 |
"Language-Team: \n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
"X-Generator: Poedit 1.6.9\n"
|
14 |
+
"X-Poedit-Language: \n"
|
15 |
+
"X-Poedit-Country: \n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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"
|
|
|
18 |
"X-Poedit-Basepath: ../\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: includes/class-wcpdf-export.php:175
|
24 |
+
#: includes/class-wcpdf-export.php:180
|
25 |
+
#: includes/class-wcpdf-export.php:185
|
26 |
+
#: includes/class-wcpdf-export.php:196
|
27 |
+
#: includes/class-wcpdf-export.php:204
|
28 |
+
#@ wpo_wcpdf
|
29 |
msgid "You do not have sufficient permissions to access this page."
|
30 |
msgstr "Nu aveți permisiunea pentru a accesa această pagină."
|
31 |
|
32 |
+
#: includes/class-wcpdf-export.php:263
|
33 |
+
#@ wpo_wcpdf
|
34 |
msgid "invoice"
|
35 |
msgid_plural "invoices"
|
36 |
msgstr[0] ""
|
37 |
msgstr[1] ""
|
38 |
|
39 |
+
#: includes/class-wcpdf-export.php:267
|
40 |
+
#@ wpo_wcpdf
|
41 |
msgid "packing-slip"
|
42 |
msgid_plural "packing-slips"
|
43 |
msgstr[0] ""
|
44 |
msgstr[1] ""
|
45 |
|
46 |
+
#: includes/class-wcpdf-settings.php:38
|
47 |
+
#: includes/class-wcpdf-settings.php:39
|
48 |
+
#: includes/class-wcpdf-writepanels.php:31
|
49 |
+
#@ wpo_wcpdf
|
50 |
msgid "PDF Invoices"
|
51 |
msgstr "Factură PDF"
|
52 |
|
53 |
+
#: includes/class-wcpdf-settings.php:69
|
54 |
+
#@ woocommerce
|
55 |
msgid "Settings"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/class-wcpdf-settings.php:91
|
59 |
+
#@ wpo_wcpdf
|
60 |
msgid "General"
|
61 |
msgstr "General"
|
62 |
|
63 |
+
#: includes/class-wcpdf-settings.php:92
|
64 |
+
#@ wpo_wcpdf
|
65 |
msgid "Template"
|
66 |
msgstr "Șablon"
|
67 |
|
68 |
+
#: includes/class-wcpdf-settings.php:101
|
69 |
+
#@ wpo_wcpdf
|
70 |
msgid "WooCommerce PDF Invoices"
|
71 |
msgstr "Factură PDF WooCommerce"
|
72 |
|
73 |
+
#: includes/class-wcpdf-settings.php:107
|
74 |
+
#@ wpo_wcpdf
|
75 |
msgid "Status"
|
76 |
+
msgstr "Status"
|
77 |
|
78 |
+
#: includes/class-wcpdf-settings.php:118
|
79 |
#, php-format
|
80 |
+
#@ wpo_wcpdf
|
81 |
+
msgid "Upload all invoices automatically to your dropbox!<br/>Check out the %s extension."
|
82 |
+
msgstr "Încărcaţi automat toate facturile în contul dvs. de Dropbox!<br/>Verifică extensia %s."
|
|
|
83 |
|
84 |
+
#: includes/class-wcpdf-settings.php:128
|
|
|
85 |
#, php-format
|
86 |
+
#@ wpo_wcpdf
|
87 |
+
msgid "Looking for more advanced templates? Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
88 |
+
msgstr "Căutați șabloane mai avansate? Vezi șabloanele Premium pentru Factură PDF și pentru Ordinul de comandă la %s."
|
|
|
|
|
|
|
89 |
|
90 |
+
#: includes/class-wcpdf-settings.php:129
|
|
|
91 |
#, php-format
|
92 |
+
#@ wpo_wcpdf
|
93 |
msgid "For custom templates, contact us at %s."
|
94 |
msgstr "Pentru șabloane personalizate, contactați-ne la %s."
|
95 |
|
96 |
+
#: includes/class-wcpdf-settings.php:184
|
97 |
+
#@ wpo_wcpdf
|
98 |
msgid "General settings"
|
99 |
msgstr "Setări generale"
|
100 |
|
101 |
+
#: includes/class-wcpdf-settings.php:191
|
102 |
+
#@ wpo_wcpdf
|
103 |
msgid "How do you want to view the PDF?"
|
104 |
msgstr "Cum doriți să vizualizați PDF-ul?"
|
105 |
|
106 |
+
#: includes/class-wcpdf-settings.php:199
|
107 |
+
#@ wpo_wcpdf
|
108 |
msgid "Download the PDF"
|
109 |
msgstr "Descarcă PDF"
|
110 |
|
111 |
+
#: includes/class-wcpdf-settings.php:200
|
112 |
+
#@ wpo_wcpdf
|
113 |
msgid "Open the PDF in a new browser tab/window"
|
114 |
msgstr "Deschideți PDF-ul într-o filă/fereastră nouă"
|
115 |
|
116 |
+
#: includes/class-wcpdf-settings.php:210
|
117 |
+
#@ wpo_wcpdf
|
118 |
msgid "Attach invoice to:"
|
119 |
msgstr "Atașați factura la:"
|
120 |
|
121 |
+
#: includes/class-wcpdf-settings.php:218
|
122 |
+
#@ wpo_wcpdf
|
123 |
msgid "Admin New Order email"
|
124 |
msgstr "Comanda nouă destinată Administratorului"
|
125 |
|
126 |
+
#: includes/class-wcpdf-settings.php:219
|
127 |
+
#@ wpo_wcpdf
|
128 |
msgid "Customer Processing Order email"
|
129 |
msgstr "Comanda trimisă clientului în momentul procesării acesteia"
|
130 |
|
131 |
+
#: includes/class-wcpdf-settings.php:220
|
132 |
+
#@ wpo_wcpdf
|
133 |
msgid "Customer Completed Order email"
|
134 |
msgstr "Comanda trimisă clientului în momentul finalizării acesteia"
|
135 |
|
136 |
+
#: includes/class-wcpdf-settings.php:221
|
137 |
+
#@ wpo_wcpdf
|
138 |
msgid "Customer Invoice email"
|
139 |
msgstr "Email-ul trimis cu factura finală"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:223
|
|
|
142 |
#, php-format
|
143 |
+
#@ wpo_wcpdf
|
144 |
+
msgid "It looks like the temp folder (<code>%s</code>) is not writable, check the permissions for this folder! Without having write access to this folder, the plugin will not be able to email invoices."
|
145 |
+
msgstr "Se pare că folderul Temp (<code>%s</ code>) nu poate fi scris, verificați permisiunile pentru acest folder! Fără a avea acces de scriere la acest folder, plugin-ul nu va fi în măsură să trimita email-ul cu facturi."
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:229
|
148 |
+
#@ wpo_wcpdf
|
149 |
msgid "Enable invoice number column in the orders list"
|
150 |
msgstr "Activați coloana Număr de Factură din lista comenzilor"
|
151 |
|
152 |
+
#: includes/class-wcpdf-settings.php:268
|
153 |
+
#@ wpo_wcpdf
|
154 |
msgid "PDF Template settings"
|
155 |
msgstr "Setări șablon PDF"
|
156 |
|
157 |
+
#: includes/class-wcpdf-settings.php:280
|
158 |
+
#@ wpo_wcpdf
|
159 |
msgid "Choose a template"
|
160 |
msgstr "Alege un șablon"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:294
|
163 |
+
#@ wpo_wcpdf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
msgid "Paper size"
|
165 |
msgstr "Dimensiune hârtie"
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:302
|
168 |
+
#@ wpo_wcpdf
|
169 |
msgid "A4"
|
170 |
msgstr "A4"
|
171 |
|
172 |
+
#: includes/class-wcpdf-settings.php:303
|
173 |
+
#@ wpo_wcpdf
|
174 |
msgid "Letter"
|
175 |
msgstr "Letter"
|
176 |
|
177 |
+
#: includes/class-wcpdf-settings.php:310
|
178 |
+
#@ wpo_wcpdf
|
179 |
msgid "Shop header/logo"
|
180 |
msgstr "Antet/Logo"
|
181 |
|
182 |
+
#: includes/class-wcpdf-settings.php:317
|
183 |
+
#@ wpo_wcpdf
|
184 |
msgid "Select or upload your invoice header/logo"
|
185 |
msgstr "Selectați sau încărcați propriul dvs. antet sau logo"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:318
|
188 |
+
#@ wpo_wcpdf
|
189 |
msgid "Set image"
|
190 |
msgstr "Setare imagine"
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:319
|
193 |
+
#@ wpo_wcpdf
|
194 |
msgid "Remove image"
|
195 |
msgstr "Șterge imagine"
|
196 |
|
197 |
+
#: includes/class-wcpdf-settings.php:326
|
198 |
+
#@ wpo_wcpdf
|
199 |
msgid "Shop Name"
|
200 |
msgstr "Nume magazin"
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:339
|
203 |
+
#@ wpo_wcpdf
|
204 |
msgid "Shop Address"
|
205 |
msgstr "Adresă magazin"
|
206 |
|
207 |
+
#: includes/class-wcpdf-settings.php:371
|
208 |
+
#@ wpo_wcpdf
|
209 |
msgid "Footer: terms & conditions, policies, etc."
|
210 |
+
msgstr "Notă de subsol: termeni și condiții, politică de confidențialitate, etc."
|
|
|
211 |
|
212 |
+
#: includes/class-wcpdf-settings.php:412
|
213 |
+
#@ wpo_wcpdf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
215 |
msgstr "Următorul număr de factură (fără prefix/sufix etc.)"
|
216 |
|
217 |
+
#: includes/class-wcpdf-settings.php:420
|
218 |
+
#@ wpo_wcpdf
|
219 |
+
msgid "This is the number that will be used on the next invoice that is created. By default, numbering starts from the WooCommerce Order Number of the first invoice that is created and increases for every new invoice. Note that if you override this and set it lower than the highest (PDF) invoice number, this could create double invoice numbers!"
|
220 |
+
msgstr "Acesta este numărul care va fi folosit la următoarea factură creată. În mod implicit, numerotarea începe de la primul număr al Ordinului de comanda WooCommerce creat și crește pentru fiecare nouă factură. Rețineți că, dacă rescrieți factura și îi setați un număr mai mic decât cel mai mare număr de factură (PDF), acest lucru ar putea crea un număr duplicat la factură!"
|
221 |
+
|
222 |
+
#: includes/class-wcpdf-settings.php:426
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
#, fuzzy
|
224 |
+
#@ wpo_wcpdf
|
225 |
msgid "Invoice number format"
|
226 |
msgstr "Număr factură"
|
227 |
|
228 |
+
#: includes/class-wcpdf-settings.php:435
|
229 |
+
#@ wpo_wcpdf
|
230 |
msgid "Prefix"
|
231 |
+
msgstr "Prefix"
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:437
|
234 |
+
#@ wpo_wcpdf
|
235 |
+
msgid "to use the order year and/or month, use [order_year] or [order_month] respectively"
|
236 |
+
msgstr "Pentru a folosi sortarea după an și/sau lună, folosiţi [order_year] sau [order_month]"
|
|
|
237 |
|
238 |
+
#: includes/class-wcpdf-settings.php:440
|
239 |
+
#@ wpo_wcpdf
|
240 |
msgid "Suffix"
|
241 |
+
msgstr "Sufix"
|
242 |
|
243 |
+
#: includes/class-wcpdf-settings.php:445
|
244 |
+
#@ wpo_wcpdf
|
245 |
msgid "Padding"
|
246 |
+
msgstr "Umplutură"
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:447
|
249 |
+
#@ wpo_wcpdf
|
250 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
251 |
+
msgstr "introduceţi numărul aici - introduceţi \"6\" pentru a afișa 42 ca 000042"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
|
253 |
+
#: includes/class-wcpdf-settings.php:450
|
254 |
+
#@ wpo_wcpdf
|
255 |
+
msgid "note: if you have already created a custom invoice number format with a filter, the above settings will be ignored"
|
256 |
+
msgstr "Atenţie: dacă ați creat deja un număr personalizat de factură cu filtru, setările de mai sus vor fi ignorate"
|
257 |
|
|
|
258 |
#: includes/class-wcpdf-settings.php:457
|
259 |
+
#@ wpo_wcpdf
|
260 |
msgid "Extra template fields"
|
261 |
msgstr "Câmpuri suplimentare pentru șablon"
|
262 |
|
|
|
263 |
#: includes/class-wcpdf-settings.php:464
|
264 |
+
#@ wpo_wcpdf
|
265 |
msgid "Extra field 1"
|
266 |
msgstr "Câmp suplimentar 1"
|
267 |
|
|
|
268 |
#: includes/class-wcpdf-settings.php:473
|
269 |
+
#@ wpo_wcpdf
|
270 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
271 |
+
msgstr "Aceasta este coloana 1 pentru nota de subsol, disponibilă în șablonul <i>Modern (Premium)</ i>"
|
|
|
|
|
272 |
|
|
|
273 |
#: includes/class-wcpdf-settings.php:479
|
274 |
+
#@ wpo_wcpdf
|
275 |
msgid "Extra field 2"
|
276 |
msgstr "Câmp suplimentar 2"
|
277 |
|
|
|
278 |
#: includes/class-wcpdf-settings.php:488
|
279 |
+
#@ wpo_wcpdf
|
280 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
281 |
+
msgstr "Aceasta este coloana 2 pentru nota de subsol, disponibilă în șablonul <i>Modern (Premium)</ i>"
|
|
|
|
|
282 |
|
|
|
283 |
#: includes/class-wcpdf-settings.php:494
|
284 |
+
#@ wpo_wcpdf
|
285 |
msgid "Extra field 3"
|
286 |
msgstr "Câmp suplimentar 3"
|
287 |
|
|
|
288 |
#: includes/class-wcpdf-settings.php:503
|
289 |
+
#@ wpo_wcpdf
|
290 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
291 |
+
msgstr "Aceasta este coloana 3 pentru nota de subsol, disponibilă în șablonul <i>Modern (Premium)</ i>"
|
|
|
|
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:761
|
294 |
+
#@ default
|
295 |
msgid "Image resolution"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/class-wcpdf-settings.php:877
|
299 |
+
#@ wpo_wcpdf
|
300 |
+
msgid "These are used for the (optional) footer columns in the <em>Modern (Premium)</em> template, but can also be used for other elements in your custom template"
|
301 |
+
msgstr "Acestea sunt utilizate pentru (opțional) coloanele notei de subsol din șablonul <em>Modern (Premium)</ em>, dar poate fi de asemenea utilizat pentru alte elemente în șablonul personalizat"
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
|
303 |
+
#: includes/class-wcpdf-writepanels.php:123
|
304 |
+
#@ wpo_wcpdf
|
305 |
msgid "Invoice Number"
|
306 |
msgstr "Număr factură"
|
307 |
|
308 |
+
#: includes/class-wcpdf-writepanels.php:160
|
309 |
+
#@ wpo_wcpdf
|
310 |
msgid "Download invoice (PDF)"
|
311 |
msgstr "Descarcă factură (PDF)"
|
312 |
|
313 |
+
#: includes/class-wcpdf-writepanels.php:171
|
314 |
+
#@ wpo_wcpdf
|
315 |
msgid "Create PDF"
|
316 |
msgstr "Crează PDF"
|
317 |
|
318 |
+
#: includes/class-wcpdf-writepanels.php:96
|
319 |
+
#: includes/class-wcpdf-writepanels.php:188
|
320 |
+
#: includes/class-wcpdf-writepanels.php:189
|
321 |
+
#@ wpo_wcpdf
|
|
|
|
|
|
|
322 |
msgid "PDF Packing Slip"
|
323 |
msgstr "Ordin de comandă PDF"
|
324 |
|
325 |
+
#: includes/class-wcpdf-writepanels.php:32
|
326 |
+
#@ wpo_wcpdf
|
|
|
327 |
msgid "PDF Packing Slips"
|
328 |
msgstr "Ordine de comandă PDF"
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:232
|
331 |
+
#@ wpo_wcpdf
|
332 |
msgid "PDF Invoice Number (unformatted!)"
|
333 |
msgstr "Număr factură PDF (neformatat!)"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:235
|
336 |
+
#: templates/pdf/Simple/invoice.php:36
|
337 |
+
#@ wpo_wcpdf
|
338 |
msgid "Invoice Date:"
|
339 |
msgstr "Dată factură:"
|
340 |
|
341 |
+
#: includes/class-wcpdf-writepanels.php:236
|
342 |
+
#@ woocommerce
|
343 |
msgid "h"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/class-wcpdf-writepanels.php:236
|
347 |
+
#@ woocommerce
|
348 |
msgid "m"
|
349 |
msgstr ""
|
350 |
|
|
|
351 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
352 |
+
#: templates/pdf/Simple/invoice.php:9
|
353 |
+
#: templates/pdf/Simple/invoice.php:21
|
354 |
+
#@ wpo_wcpdf
|
355 |
msgid "Invoice"
|
356 |
msgstr "Factură"
|
357 |
|
|
|
358 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
359 |
#: templates/pdf/Simple/packing-slip.php:9
|
360 |
#: templates/pdf/Simple/packing-slip.php:21
|
361 |
+
#@ wpo_wcpdf
|
362 |
msgid "Packing Slip"
|
363 |
msgstr "Ordin de comandă"
|
364 |
|
365 |
+
#: templates/pdf/Simple/invoice.php:41
|
366 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
367 |
+
#@ wpo_wcpdf
|
368 |
msgid "Order Date:"
|
369 |
msgstr "Dată comandă:"
|
370 |
|
371 |
+
#: templates/pdf/Simple/invoice.php:32
|
372 |
+
#@ wpo_wcpdf
|
373 |
msgid "Invoice Number:"
|
374 |
msgstr "Număr factură:"
|
375 |
|
376 |
+
#: templates/pdf/Simple/invoice.php:39
|
377 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
378 |
+
#@ wpo_wcpdf
|
379 |
msgid "Order Number:"
|
380 |
msgstr "Număr comandă:"
|
381 |
|
382 |
+
#: templates/pdf/Simple/invoice.php:43
|
383 |
+
#@ wpo_wcpdf
|
384 |
msgid "Payment Method:"
|
385 |
msgstr "Metodă de plată:"
|
386 |
|
387 |
+
#: templates/pdf/Simple/invoice.php:59
|
388 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
389 |
+
#@ wpo_wcpdf
|
390 |
msgid "Product"
|
391 |
msgstr "Produs"
|
392 |
|
393 |
+
#: templates/pdf/Simple/invoice.php:60
|
394 |
+
#: templates/pdf/Simple/packing-slip.php:50
|
395 |
+
#@ wpo_wcpdf
|
396 |
msgid "Quantity"
|
397 |
msgstr "Cantitate"
|
398 |
|
399 |
+
#: templates/pdf/Simple/invoice.php:61
|
400 |
+
#@ wpo_wcpdf
|
401 |
msgid "Price"
|
402 |
msgstr "Preț"
|
403 |
|
404 |
+
#: templates/pdf/Simple/invoice.php:67
|
405 |
+
#@ wpo_wcpdf
|
406 |
msgid "Description"
|
407 |
msgstr "Descriere"
|
408 |
|
409 |
+
#: templates/pdf/Simple/invoice.php:70
|
410 |
+
#@ wpo_wcpdf
|
411 |
msgid "SKU"
|
412 |
msgstr "Cod produs (SKU)"
|
413 |
|
414 |
+
#: templates/pdf/Simple/invoice.php:71
|
415 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
416 |
+
#@ wpo_wcpdf
|
417 |
msgid "SKU:"
|
418 |
msgstr "Cod produs (SKU):"
|
419 |
|
420 |
+
#: templates/pdf/Simple/invoice.php:72
|
421 |
+
#: templates/pdf/Simple/packing-slip.php:59
|
422 |
+
#@ wpo_wcpdf
|
423 |
msgid "Weight:"
|
424 |
msgstr "Greutate:"
|
425 |
|
426 |
+
#: templates/pdf/Simple/invoice.php:106
|
427 |
+
#: templates/pdf/Simple/packing-slip.php:74
|
428 |
+
#@ wpo_wcpdf
|
429 |
msgid "Customer Notes"
|
430 |
msgstr "Notiță client"
|
431 |
|
432 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
|
|
433 |
#, php-format
|
434 |
+
#@ wpo_wcpdf
|
435 |
+
msgid "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be installed & activated!"
|
436 |
+
msgstr "%sWooCommerce%s trebuie să fie instalat și activ pentru ca Factura PDF și Ordinul de comandă WooCommerce să funcționeze."
|
|
|
|
|
|
|
437 |
|
438 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
439 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
440 |
+
#@ wpo_wcpdf
|
441 |
msgid "N/A"
|
442 |
msgstr "Nu se aplică (N/A)"
|
443 |
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
445 |
+
#@ wpo_wcpdf
|
446 |
msgid "Payment method"
|
447 |
msgstr "Metodă de plată"
|
448 |
|
449 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
450 |
+
#@ wpo_wcpdf
|
451 |
msgid "Shipping method"
|
452 |
msgstr "Metodă de livrare"
|
453 |
|
454 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
455 |
+
#@ wpo_wcpdf
|
456 |
msgid "Subtotal"
|
457 |
msgstr "Subtotal"
|
458 |
|
459 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
460 |
+
#@ wpo_wcpdf
|
461 |
msgid "Shipping"
|
462 |
msgstr "Transport"
|
463 |
|
464 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
465 |
+
#@ wpo_wcpdf
|
466 |
msgid "Discount"
|
467 |
msgstr "Reducere"
|
468 |
|
469 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
470 |
+
#@ wpo_wcpdf
|
471 |
msgid "VAT"
|
472 |
msgstr "TVA"
|
473 |
|
474 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
475 |
+
#@ default
|
476 |
msgid "Total ex. VAT"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
480 |
+
#@ default
|
481 |
msgid "Total"
|
482 |
msgstr ""
|
483 |
+
|
484 |
+
#: includes/class-wcpdf-settings.php:288
|
485 |
+
#, php-format
|
486 |
+
#@ wpo_wcpdf
|
487 |
+
msgid "Want to use your own template? Copy all the files from <code>%s</code> to your (child) theme in <code>%s</code> to customize them"
|
488 |
+
msgstr "Doriți să utilizați propriul șablon? Copiați toate fișierele din <code>%s</code> in folderul temei dvs. în <code>%s</code> pentru a le personaliza"
|
489 |
+
|
490 |
+
#: includes/class-wcpdf-settings.php:386
|
491 |
+
#@ wpo_wcpdf
|
492 |
+
msgid "Display invoice date"
|
493 |
+
msgstr "Afișează data facturii"
|
494 |
+
|
495 |
+
#: includes/class-wcpdf-settings.php:399
|
496 |
+
#@ wpo_wcpdf
|
497 |
+
msgid "Display built-in sequential invoice number"
|
498 |
+
msgstr "Afișează numărul de factură secvenţial standard"
|
499 |
+
|
500 |
+
#: includes/class-wcpdf-writepanels.php:91
|
501 |
+
#: includes/class-wcpdf-writepanels.php:183
|
502 |
+
#: includes/class-wcpdf-writepanels.php:184
|
503 |
+
#@ wpo_wcpdf
|
504 |
+
msgid "PDF Invoice"
|
505 |
+
msgstr "Factură PDF"
|
506 |
+
|
languages/wpo_wcpdf-ru_RU.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-ru_RU.po
CHANGED
@@ -1,221 +1,214 @@
|
|
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=
|
|
|
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:
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Накладные"
|
44 |
|
45 |
-
#: includes/class-wcpdf-settings.php:
|
46 |
msgid "Settings"
|
47 |
msgstr "Настройки"
|
48 |
|
49 |
-
#: includes/class-wcpdf-settings.php:
|
50 |
msgid "General"
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#: includes/class-wcpdf-settings.php:
|
54 |
msgid "Template"
|
55 |
msgstr "Шаблон"
|
56 |
|
57 |
-
#: includes/class-wcpdf-settings.php:
|
58 |
msgid "WooCommerce PDF Invoices"
|
59 |
msgstr "WooCommerce PDF Накладные"
|
60 |
|
61 |
-
#: includes/class-wcpdf-settings.php:
|
62 |
msgid "Status"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
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 |
-
"
|
80 |
|
81 |
-
#: includes/class-wcpdf-settings.php:
|
82 |
#, php-format
|
83 |
msgid "For custom templates, contact us at %s."
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#: includes/class-wcpdf-settings.php:
|
87 |
msgid "General settings"
|
88 |
msgstr "Основные настройки"
|
89 |
|
90 |
-
#: includes/class-wcpdf-settings.php:
|
91 |
msgid "How do you want to view the PDF?"
|
92 |
-
msgstr "Как вы хотите
|
93 |
|
94 |
-
#: includes/class-wcpdf-settings.php:
|
95 |
msgid "Download the PDF"
|
96 |
msgstr "Скачать PDF"
|
97 |
|
98 |
-
#: includes/class-wcpdf-settings.php:
|
99 |
msgid "Open the PDF in a new browser tab/window"
|
100 |
-
msgstr "Открыть PDF в
|
101 |
|
102 |
-
#: includes/class-wcpdf-settings.php:
|
103 |
msgid "Attach invoice to:"
|
104 |
msgstr "Прикрепить накладную к:"
|
105 |
|
106 |
-
#: includes/class-wcpdf-settings.php:
|
107 |
msgid "Admin New Order email"
|
108 |
-
msgstr "Email
|
109 |
|
110 |
-
#: includes/class-wcpdf-settings.php:
|
111 |
msgid "Customer Processing Order email"
|
112 |
-
msgstr "Email
|
113 |
|
114 |
-
#: includes/class-wcpdf-settings.php:
|
115 |
msgid "Customer Completed Order email"
|
116 |
-
msgstr "Email
|
117 |
|
118 |
-
#: includes/class-wcpdf-settings.php:
|
119 |
msgid "Customer Invoice email"
|
120 |
-
msgstr "Email
|
121 |
|
122 |
-
#: includes/class-wcpdf-settings.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
126 |
"permissions for this folder! Without having write access to this folder, the "
|
127 |
"plugin will not be able to email invoices."
|
128 |
msgstr ""
|
129 |
-
"
|
130 |
-
"
|
131 |
-
"накладные по
|
132 |
|
133 |
-
#: includes/class-wcpdf-settings.php:
|
134 |
msgid "Enable invoice number column in the orders list"
|
135 |
-
msgstr ""
|
136 |
|
137 |
-
#: includes/class-wcpdf-settings.php:
|
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 |
#, 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 |
-
"Хотите свой
|
152 |
-
"<code>%s</code> и
|
153 |
|
154 |
-
#: includes/class-wcpdf-settings.php:
|
155 |
msgid "Paper size"
|
156 |
msgstr "Размер бумаги"
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "A4"
|
160 |
-
msgstr "
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "Letter"
|
164 |
msgstr "Письмо"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Shop header/logo"
|
168 |
-
msgstr "Логотип в шапке
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
-
msgstr "
|
|
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Set image"
|
176 |
msgstr "Установить изображение"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Remove image"
|
180 |
msgstr "Удалить изображение"
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Shop Name"
|
184 |
-
msgstr "Название
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Address"
|
188 |
-
msgstr "Адрес
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
204 |
-
msgstr "
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
-
msgid ""
|
208 |
-
"
|
209 |
-
"WooCommerce order number"
|
210 |
-
msgstr ""
|
211 |
-
"Если вы используете WooCommerce Sequential Order Numbers плагин, выберите "
|
212 |
-
"WooCommerce номер заказа"
|
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 "
|
@@ -223,143 +216,130 @@ msgid ""
|
|
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 |
-
"
|
228 |
-
"
|
229 |
-
"
|
230 |
-
"
|
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:
|
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 |
-
|
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 "
|
285 |
|
286 |
#: includes/class-wcpdf-settings.php:473
|
287 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
288 |
-
msgstr "Это колонка
|
289 |
|
290 |
#: includes/class-wcpdf-settings.php:479
|
291 |
msgid "Extra field 2"
|
292 |
-
msgstr "
|
293 |
|
294 |
#: includes/class-wcpdf-settings.php:488
|
295 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
296 |
-
msgstr "Это колонка
|
297 |
|
298 |
#: includes/class-wcpdf-settings.php:494
|
299 |
msgid "Extra field 3"
|
300 |
-
msgstr "
|
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 |
|
306 |
-
#: includes/class-wcpdf-settings.php:
|
307 |
msgid "Image resolution"
|
308 |
msgstr "Разрешение изображения"
|
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 "
|
314 |
"custom template"
|
315 |
msgstr ""
|
316 |
-
"
|
317 |
-
"
|
318 |
-
"блок для вывода в индивидуальном шаблоне."
|
319 |
|
320 |
-
#: includes/class-wcpdf-writepanels.php:
|
321 |
-
|
|
|
|
|
|
|
322 |
msgid "Invoice Number"
|
323 |
-
msgstr "Номер
|
324 |
|
325 |
-
#: includes/class-wcpdf-writepanels.php:
|
326 |
msgid "Download invoice (PDF)"
|
327 |
msgstr "Скачать накладную (PDF)"
|
328 |
|
329 |
-
#: includes/class-wcpdf-writepanels.php:
|
330 |
msgid "Create PDF"
|
331 |
msgstr "Создать PDF"
|
332 |
|
333 |
-
#: includes/class-wcpdf-writepanels.php:
|
334 |
-
msgid "PDF
|
335 |
msgstr "PDF Накладная"
|
336 |
|
337 |
-
#: includes/class-wcpdf-writepanels.php:
|
338 |
msgid "PDF Packing Slip"
|
339 |
msgstr "PDF Счет-Фактура"
|
340 |
|
341 |
-
#: includes/class-wcpdf-writepanels.php:
|
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:
|
352 |
-
#: templates/pdf/Simple/invoice.php:
|
353 |
msgid "Invoice Date:"
|
354 |
-
msgstr "Дата
|
355 |
|
356 |
-
#: includes/class-wcpdf-writepanels.php:
|
357 |
msgid "h"
|
358 |
-
msgstr ""
|
359 |
|
360 |
-
#: includes/class-wcpdf-writepanels.php:
|
361 |
msgid "m"
|
362 |
-
msgstr ""
|
363 |
|
364 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
365 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
@@ -372,112 +352,103 @@ msgstr "Накладная"
|
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Счет-Фактура"
|
374 |
|
375 |
-
#: templates/pdf/Simple/invoice.php:
|
376 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
-
msgid "Order Date:"
|
378 |
-
msgstr "Дата заказа:"
|
379 |
-
|
380 |
-
#: templates/pdf/Simple/invoice.php:46
|
381 |
msgid "Invoice Number:"
|
382 |
-
msgstr "Номер
|
383 |
|
384 |
-
#: templates/pdf/Simple/invoice.php:
|
385 |
-
#: templates/pdf/Simple/packing-slip.php:
|
386 |
msgid "Order Number:"
|
387 |
-
msgstr "Номер
|
388 |
|
389 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Payment Method:"
|
391 |
-
msgstr "Метод
|
392 |
|
393 |
-
#: templates/pdf/Simple/invoice.php:
|
394 |
-
#: templates/pdf/Simple/packing-slip.php:
|
395 |
msgid "Product"
|
396 |
msgstr "Товар"
|
397 |
|
398 |
-
#: templates/pdf/Simple/invoice.php:
|
399 |
-
#: templates/pdf/Simple/packing-slip.php:
|
400 |
msgid "Quantity"
|
401 |
msgstr "Количество"
|
402 |
|
403 |
-
#: templates/pdf/Simple/invoice.php:
|
404 |
msgid "Price"
|
405 |
msgstr "Цена"
|
406 |
|
407 |
-
#: templates/pdf/Simple/invoice.php:
|
408 |
msgid "Description"
|
409 |
-
msgstr ""
|
410 |
|
411 |
-
#: templates/pdf/Simple/invoice.php:
|
412 |
msgid "SKU"
|
413 |
-
msgstr "
|
414 |
|
415 |
-
#: templates/pdf/Simple/invoice.php:
|
416 |
-
#: templates/pdf/Simple/packing-slip.php:
|
417 |
msgid "SKU:"
|
418 |
-
msgstr "
|
419 |
|
420 |
-
#: templates/pdf/Simple/invoice.php:
|
421 |
-
#: templates/pdf/Simple/packing-slip.php:
|
422 |
msgid "Weight:"
|
423 |
msgstr "Вес:"
|
424 |
|
425 |
-
#: templates/pdf/Simple/invoice.php:
|
426 |
-
#: templates/pdf/Simple/packing-slip.php:
|
427 |
msgid "Customer Notes"
|
428 |
-
msgstr "
|
429 |
|
430 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
431 |
#, php-format
|
432 |
msgid ""
|
433 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
434 |
"installed & activated!"
|
435 |
msgstr ""
|
436 |
-
"
|
437 |
-
"
|
438 |
|
439 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
msgid "N/A"
|
442 |
msgstr "N/A"
|
443 |
|
444 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
445 |
-
#, fuzzy
|
446 |
msgid "Payment method"
|
447 |
-
msgstr "Метод
|
448 |
|
449 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
450 |
-
#, fuzzy
|
451 |
msgid "Shipping method"
|
452 |
-
msgstr "
|
453 |
|
454 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
455 |
msgid "Subtotal"
|
456 |
msgstr "Промежуточный итог"
|
457 |
|
458 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
459 |
msgid "Shipping"
|
460 |
msgstr "Доставка"
|
461 |
|
462 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
463 |
msgid "Discount"
|
464 |
msgstr "Скидка"
|
465 |
|
466 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
467 |
msgid "VAT"
|
468 |
-
msgstr ""
|
469 |
|
470 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
471 |
msgid "Total ex. VAT"
|
472 |
-
msgstr "
|
473 |
|
474 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
475 |
msgid "Total"
|
476 |
msgstr "Итого"
|
477 |
-
|
478 |
-
#~ msgid "..."
|
479 |
-
#~ msgstr "..."
|
480 |
-
|
481 |
-
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
482 |
-
#~ msgstr ""
|
483 |
-
#~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-02 09:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-04 02:14+0200\n"
|
6 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\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.4\n"
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
+
"Language: ru_RU\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
21 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
22 |
+
#: includes/class-wcpdf-export.php:204
|
23 |
msgid "You do not have sufficient permissions to access this page."
|
24 |
+
msgstr "У вас недостаточно прав для доступа к данной странице."
|
25 |
|
26 |
# This is a filename (prefix). do not use spaces or special characters!
|
27 |
+
#: includes/class-wcpdf-export.php:263
|
28 |
msgid "invoice"
|
29 |
msgid_plural "invoices"
|
30 |
msgstr[0] "накладная"
|
31 |
+
msgstr[1] "накладная"
|
32 |
+
msgstr[2] "накладная"
|
33 |
|
34 |
# This is a filename (prefix). do not use spaces or special characters!
|
35 |
+
#: includes/class-wcpdf-export.php:267
|
36 |
msgid "packing-slip"
|
37 |
msgid_plural "packing-slips"
|
38 |
+
msgstr[0] "счет-фактура"
|
39 |
+
msgstr[1] "счет-фактура"
|
40 |
+
msgstr[2] "счет-фактура"
|
41 |
|
42 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
43 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
44 |
msgid "PDF Invoices"
|
45 |
msgstr "PDF Накладные"
|
46 |
|
47 |
+
#: includes/class-wcpdf-settings.php:69
|
48 |
msgid "Settings"
|
49 |
msgstr "Настройки"
|
50 |
|
51 |
+
#: includes/class-wcpdf-settings.php:91
|
52 |
msgid "General"
|
53 |
+
msgstr "Основные"
|
54 |
|
55 |
+
#: includes/class-wcpdf-settings.php:92
|
56 |
msgid "Template"
|
57 |
msgstr "Шаблон"
|
58 |
|
59 |
+
#: includes/class-wcpdf-settings.php:101
|
60 |
msgid "WooCommerce PDF Invoices"
|
61 |
msgstr "WooCommerce PDF Накладные"
|
62 |
|
63 |
+
#: includes/class-wcpdf-settings.php:107
|
64 |
msgid "Status"
|
65 |
+
msgstr "Статус"
|
66 |
|
67 |
+
#: includes/class-wcpdf-settings.php:118
|
68 |
#, php-format
|
69 |
msgid ""
|
70 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
71 |
"extension."
|
72 |
msgstr ""
|
73 |
+
"Загружайте все накладные автоматически в ваш dropbox!<br/>Смотрите %s "
|
74 |
+
"расширение."
|
75 |
|
76 |
+
#: includes/class-wcpdf-settings.php:128
|
77 |
#, php-format
|
78 |
msgid ""
|
79 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
80 |
"Packing Slips templates at %s."
|
81 |
msgstr ""
|
82 |
+
"Ищите более продвинутые шаблоны? Смотрите Премиум PDF Invoice & Packing "
|
83 |
+
"Slips шаблоны на %s."
|
84 |
|
85 |
+
#: includes/class-wcpdf-settings.php:129
|
86 |
#, php-format
|
87 |
msgid "For custom templates, contact us at %s."
|
88 |
+
msgstr "За пользовательскими шаблонами, обращайтесь по %s."
|
89 |
|
90 |
+
#: includes/class-wcpdf-settings.php:184
|
91 |
msgid "General settings"
|
92 |
msgstr "Основные настройки"
|
93 |
|
94 |
+
#: includes/class-wcpdf-settings.php:191
|
95 |
msgid "How do you want to view the PDF?"
|
96 |
+
msgstr "Как вы хотите просматривать PDF?"
|
97 |
|
98 |
+
#: includes/class-wcpdf-settings.php:199
|
99 |
msgid "Download the PDF"
|
100 |
msgstr "Скачать PDF"
|
101 |
|
102 |
+
#: includes/class-wcpdf-settings.php:200
|
103 |
msgid "Open the PDF in a new browser tab/window"
|
104 |
+
msgstr "Открыть PDF в новом окне/вкладке браузера"
|
105 |
|
106 |
+
#: includes/class-wcpdf-settings.php:210
|
107 |
msgid "Attach invoice to:"
|
108 |
msgstr "Прикрепить накладную к:"
|
109 |
|
110 |
+
#: includes/class-wcpdf-settings.php:218
|
111 |
msgid "Admin New Order email"
|
112 |
+
msgstr "Email адресу Нового Заказа сделанного Администратором"
|
113 |
|
114 |
+
#: includes/class-wcpdf-settings.php:219
|
115 |
msgid "Customer Processing Order email"
|
116 |
+
msgstr "Email адресу Клиента, для Заказов в статусе Обработки"
|
117 |
|
118 |
+
#: includes/class-wcpdf-settings.php:220
|
119 |
msgid "Customer Completed Order email"
|
120 |
+
msgstr "Email адресу Клиента, для Завершенных Заказов"
|
121 |
|
122 |
+
#: includes/class-wcpdf-settings.php:221
|
123 |
msgid "Customer Invoice email"
|
124 |
+
msgstr "Email адресу Накладной Клиента"
|
125 |
|
126 |
+
#: includes/class-wcpdf-settings.php:223
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
130 |
"permissions for this folder! Without having write access to this folder, the "
|
131 |
"plugin will not be able to email invoices."
|
132 |
msgstr ""
|
133 |
+
"Судя по всему временная папка (<code>%s</code>) без прав на запись, "
|
134 |
+
"проверьте разрешения для этой папки! Без доступа записи к этой папке, плагин "
|
135 |
+
"не сможет посылать накладные по email."
|
136 |
|
137 |
+
#: includes/class-wcpdf-settings.php:229
|
138 |
msgid "Enable invoice number column in the orders list"
|
139 |
+
msgstr "Показывать номер накладной в списке заказов"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:268
|
142 |
msgid "PDF Template settings"
|
143 |
msgstr "PDF Настройки шаблона"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:280
|
146 |
msgid "Choose a template"
|
147 |
msgstr "Выберите шаблон"
|
148 |
|
149 |
+
#: includes/class-wcpdf-settings.php:288
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
153 |
+
"your (child) theme in <code>%s</code> to customize them"
|
154 |
msgstr ""
|
155 |
+
"Хотите использовать свой шаблон? Скопируйте все файлы из <code>%s</code> в "
|
156 |
+
"вашу (дочернюю) тему <code>%s</code> и редактируйте их там"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:294
|
159 |
msgid "Paper size"
|
160 |
msgstr "Размер бумаги"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:302
|
163 |
msgid "A4"
|
164 |
+
msgstr "А4"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:303
|
167 |
msgid "Letter"
|
168 |
msgstr "Письмо"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:310
|
171 |
msgid "Shop header/logo"
|
172 |
+
msgstr "Логотип Магазина в шапке документов"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:317
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
+
msgstr ""
|
177 |
+
"Выберите или загрузите ваш логотип для использования его в шапке документов"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:318
|
180 |
msgid "Set image"
|
181 |
msgstr "Установить изображение"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:319
|
184 |
msgid "Remove image"
|
185 |
msgstr "Удалить изображение"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:326
|
188 |
msgid "Shop Name"
|
189 |
+
msgstr "Название Магазина"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:339
|
192 |
msgid "Shop Address"
|
193 |
+
msgstr "Адрес Магазина"
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:371
|
196 |
msgid "Footer: terms & conditions, policies, etc."
|
197 |
+
msgstr "Подвал: условия, конфиденциальность, политика отношений, и т.д."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
#: includes/class-wcpdf-settings.php:386
|
200 |
+
msgid "Display invoice date"
|
201 |
+
msgstr "Отображать дату накладной"
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:399
|
204 |
+
msgid "Display built-in sequential invoice number"
|
205 |
+
msgstr "Отображать встроенный последовательный номер накладной"
|
|
|
|
|
|
|
|
|
206 |
|
207 |
+
#: includes/class-wcpdf-settings.php:412
|
208 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
209 |
+
msgstr "Следующий номер накладной (без префикса/суффикса и т.д.)"
|
210 |
|
211 |
+
#: includes/class-wcpdf-settings.php:420
|
212 |
msgid ""
|
213 |
"This is the number that will be used on the next invoice that is created. By "
|
214 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
216 |
"you override this and set it lower than the highest (PDF) invoice number, "
|
217 |
"this could create double invoice numbers!"
|
218 |
msgstr ""
|
219 |
+
"Этот номер будет использован в следующей созданой накладной. По умолчанию, "
|
220 |
+
"нумерация начинается с первого, созданого WooCommerce Номера Заказа и "
|
221 |
+
"повышается с каждой следующей накладной. Заметьте что если вы перезапишите "
|
222 |
+
"его и установите номер ниже предыдущих (PDF) накладных, это приведет к "
|
223 |
+
"дублированию номера накладной!"
|
224 |
+
|
225 |
+
#: includes/class-wcpdf-settings.php:426
|
|
|
|
|
226 |
msgid "Invoice number format"
|
227 |
+
msgstr "Формат номера накладной"
|
228 |
|
229 |
+
#: includes/class-wcpdf-settings.php:435
|
230 |
msgid "Prefix"
|
231 |
+
msgstr "Префикс"
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:437
|
234 |
msgid ""
|
235 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
236 |
"respectively"
|
237 |
msgstr ""
|
238 |
+
"чтобы использовать год и/или месяц заказа, используйте [order_year] или "
|
239 |
+
"[order_month] в соответсвии с названием"
|
240 |
|
241 |
+
#: includes/class-wcpdf-settings.php:440
|
242 |
msgid "Suffix"
|
243 |
+
msgstr "Суффикс"
|
244 |
|
245 |
+
#: includes/class-wcpdf-settings.php:445
|
246 |
msgid "Padding"
|
247 |
+
msgstr "Наполнение"
|
248 |
|
249 |
+
#: includes/class-wcpdf-settings.php:447
|
250 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
251 |
msgstr ""
|
252 |
+
"здесь введите количество цифр - введите \"6\" чтобы показать 42 как 000042"
|
253 |
|
254 |
+
#: includes/class-wcpdf-settings.php:450
|
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 |
+
"фильтром, настройки вверху будут проигнорированы"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 "Экстра поле 1"
|
269 |
|
270 |
#: includes/class-wcpdf-settings.php:473
|
271 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
272 |
+
msgstr "Это первая колонка подвала для <i>Modern (Premium)</i> шаблонов"
|
273 |
|
274 |
#: includes/class-wcpdf-settings.php:479
|
275 |
msgid "Extra field 2"
|
276 |
+
msgstr "Экстра поле 2"
|
277 |
|
278 |
#: includes/class-wcpdf-settings.php:488
|
279 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
280 |
+
msgstr "Это вторая колонка подвала для <i>Modern (Premium)</i> шаблонов"
|
281 |
|
282 |
#: includes/class-wcpdf-settings.php:494
|
283 |
msgid "Extra field 3"
|
284 |
+
msgstr "Экстра поле 3"
|
285 |
|
286 |
#: includes/class-wcpdf-settings.php:503
|
287 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
288 |
+
msgstr "Это третья колонка подвала для <i>Modern (Premium)</i> шаблонов"
|
289 |
|
290 |
+
#: includes/class-wcpdf-settings.php:761
|
291 |
msgid "Image resolution"
|
292 |
msgstr "Разрешение изображения"
|
293 |
|
294 |
+
#: includes/class-wcpdf-settings.php:877
|
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 |
+
"Эти поля (по желанию) используются в подвале <em>Modern (Premium)</em> "
|
301 |
+
"шаблонов, но также могут быть использованы в ваших собственных шаблонах"
|
|
|
302 |
|
303 |
+
#: includes/class-wcpdf-writepanels.php:32
|
304 |
+
msgid "PDF Packing Slips"
|
305 |
+
msgstr "PDF Счет-Фактуры"
|
306 |
+
|
307 |
+
#: includes/class-wcpdf-writepanels.php:123
|
308 |
msgid "Invoice Number"
|
309 |
+
msgstr "Номер Накладной"
|
310 |
|
311 |
+
#: includes/class-wcpdf-writepanels.php:160
|
312 |
msgid "Download invoice (PDF)"
|
313 |
msgstr "Скачать накладную (PDF)"
|
314 |
|
315 |
+
#: includes/class-wcpdf-writepanels.php:171
|
316 |
msgid "Create PDF"
|
317 |
msgstr "Создать PDF"
|
318 |
|
319 |
+
#: includes/class-wcpdf-writepanels.php:184
|
320 |
+
msgid "PDF Invoice"
|
321 |
msgstr "PDF Накладная"
|
322 |
|
323 |
+
#: includes/class-wcpdf-writepanels.php:189
|
324 |
msgid "PDF Packing Slip"
|
325 |
msgstr "PDF Счет-Фактура"
|
326 |
|
327 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
msgid "PDF Invoice Number (unformatted!)"
|
329 |
+
msgstr "PDF Номер Накладной (неформатированный!)"
|
330 |
|
331 |
+
#: includes/class-wcpdf-writepanels.php:235
|
332 |
+
#: templates/pdf/Simple/invoice.php:36
|
333 |
msgid "Invoice Date:"
|
334 |
+
msgstr "Дата Накладной:"
|
335 |
|
336 |
+
#: includes/class-wcpdf-writepanels.php:236
|
337 |
msgid "h"
|
338 |
+
msgstr "ч"
|
339 |
|
340 |
+
#: includes/class-wcpdf-writepanels.php:236
|
341 |
msgid "m"
|
342 |
+
msgstr "м"
|
343 |
|
344 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
345 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
352 |
msgid "Packing Slip"
|
353 |
msgstr "Счет-Фактура"
|
354 |
|
355 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
356 |
msgid "Invoice Number:"
|
357 |
+
msgstr "Номер Накладной:"
|
358 |
|
359 |
+
#: templates/pdf/Simple/invoice.php:39
|
360 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
361 |
msgid "Order Number:"
|
362 |
+
msgstr "Номер Заказа:"
|
363 |
|
364 |
+
#: templates/pdf/Simple/invoice.php:41
|
365 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
366 |
+
msgid "Order Date:"
|
367 |
+
msgstr "Дата Заказа:"
|
368 |
+
|
369 |
+
#: templates/pdf/Simple/invoice.php:43
|
370 |
msgid "Payment Method:"
|
371 |
+
msgstr "Метод Оплаты:"
|
372 |
|
373 |
+
#: templates/pdf/Simple/invoice.php:58
|
374 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
375 |
msgid "Product"
|
376 |
msgstr "Товар"
|
377 |
|
378 |
+
#: templates/pdf/Simple/invoice.php:59
|
379 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
380 |
msgid "Quantity"
|
381 |
msgstr "Количество"
|
382 |
|
383 |
+
#: templates/pdf/Simple/invoice.php:60
|
384 |
msgid "Price"
|
385 |
msgstr "Цена"
|
386 |
|
387 |
+
#: templates/pdf/Simple/invoice.php:66
|
388 |
msgid "Description"
|
389 |
+
msgstr "Описание"
|
390 |
|
391 |
+
#: templates/pdf/Simple/invoice.php:69
|
392 |
msgid "SKU"
|
393 |
+
msgstr "SKU"
|
394 |
|
395 |
+
#: templates/pdf/Simple/invoice.php:70
|
396 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
397 |
msgid "SKU:"
|
398 |
+
msgstr "SKU:"
|
399 |
|
400 |
+
#: templates/pdf/Simple/invoice.php:71
|
401 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
402 |
msgid "Weight:"
|
403 |
msgstr "Вес:"
|
404 |
|
405 |
+
#: templates/pdf/Simple/invoice.php:105
|
406 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
407 |
msgid "Customer Notes"
|
408 |
+
msgstr "Заметки Клиента"
|
409 |
|
410 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
411 |
#, php-format
|
412 |
msgid ""
|
413 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
414 |
"installed & activated!"
|
415 |
msgstr ""
|
416 |
+
"WooCommerce PDF Invoices & Packing Slips требует наличие установленного и "
|
417 |
+
"активированного %sWooCommerce%s плагина!"
|
418 |
|
419 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
420 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
421 |
msgid "N/A"
|
422 |
msgstr "N/A"
|
423 |
|
424 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
|
|
425 |
msgid "Payment method"
|
426 |
+
msgstr "Метод оплаты"
|
427 |
|
428 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
|
|
429 |
msgid "Shipping method"
|
430 |
+
msgstr "Метод доставки"
|
431 |
|
432 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
433 |
msgid "Subtotal"
|
434 |
msgstr "Промежуточный итог"
|
435 |
|
436 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
437 |
msgid "Shipping"
|
438 |
msgstr "Доставка"
|
439 |
|
440 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
441 |
msgid "Discount"
|
442 |
msgstr "Скидка"
|
443 |
|
444 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
445 |
msgid "VAT"
|
446 |
+
msgstr "НДС"
|
447 |
|
448 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
449 |
msgid "Total ex. VAT"
|
450 |
+
msgstr "Итого без НДС"
|
451 |
|
452 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
453 |
msgid "Total"
|
454 |
msgstr "Итого"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpo_wcpdf-sk_SK.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-sk_SK.po
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: KubiQ <7kubiq7@gmail.com>\n"
|
9 |
"Language: sk_SK\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=3; plural=(n==1) ?
|
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"
|
@@ -45,46 +45,47 @@ msgstr[1] "dodaci-list"
|
|
45 |
msgstr[2] "dodacie-listy"
|
46 |
|
47 |
# @ wpo_wcpdf
|
48 |
-
#: includes/class-wcpdf-settings.php:
|
49 |
-
#: includes/class-wcpdf-writepanels.php:
|
50 |
-
#: includes/class-wcpdf-writepanels.php:177
|
51 |
msgid "PDF Invoices"
|
52 |
msgstr "PDF faktúry"
|
53 |
|
54 |
# @ woocommerce
|
55 |
-
#: includes/class-wcpdf-settings.php:
|
56 |
msgid "Settings"
|
57 |
msgstr "Nastavenia"
|
58 |
|
59 |
# @ wpo_wcpdf
|
60 |
-
#: includes/class-wcpdf-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr "Všeobecné"
|
63 |
|
64 |
# @ wpo_wcpdf
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
66 |
msgid "Template"
|
67 |
msgstr "Šablóna"
|
68 |
|
69 |
# @ wpo_wcpdf
|
70 |
-
#: includes/class-wcpdf-settings.php:
|
71 |
msgid "WooCommerce PDF Invoices"
|
72 |
msgstr "WooCommerce PDF faktúry"
|
73 |
|
74 |
# @ wpo_wcpdf
|
75 |
-
#: includes/class-wcpdf-settings.php:
|
76 |
msgid "Status"
|
77 |
msgstr "Stav"
|
78 |
|
79 |
-
#: includes/class-wcpdf-settings.php:
|
80 |
#, php-format
|
81 |
msgid ""
|
82 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
83 |
"extension."
|
84 |
msgstr ""
|
|
|
|
|
85 |
|
86 |
# @ wpo_wcpdf
|
87 |
-
#: includes/class-wcpdf-settings.php:
|
88 |
#, php-format
|
89 |
msgid ""
|
90 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
@@ -94,58 +95,58 @@ msgstr ""
|
|
94 |
"šablóny na stránke %s."
|
95 |
|
96 |
# @ wpo_wcpdf
|
97 |
-
#: includes/class-wcpdf-settings.php:
|
98 |
#, php-format
|
99 |
msgid "For custom templates, contact us at %s."
|
100 |
msgstr "Ak chcete šablónu na mieru, kontaktuje nás na %s."
|
101 |
|
102 |
# @ wpo_wcpdf
|
103 |
-
#: includes/class-wcpdf-settings.php:
|
104 |
msgid "General settings"
|
105 |
msgstr "Všeobecné nastavenia"
|
106 |
|
107 |
# @ wpo_wcpdf
|
108 |
-
#: includes/class-wcpdf-settings.php:
|
109 |
msgid "How do you want to view the PDF?"
|
110 |
msgstr "Ako chcete zobraziť PDF?"
|
111 |
|
112 |
# @ wpo_wcpdf
|
113 |
-
#: includes/class-wcpdf-settings.php:
|
114 |
msgid "Download the PDF"
|
115 |
msgstr "Stiahnuť PDF"
|
116 |
|
117 |
# @ wpo_wcpdf
|
118 |
-
#: includes/class-wcpdf-settings.php:
|
119 |
msgid "Open the PDF in a new browser tab/window"
|
120 |
msgstr "Otvoriť PDF v novom okne"
|
121 |
|
122 |
# @ wpo_wcpdf
|
123 |
-
#: includes/class-wcpdf-settings.php:
|
124 |
msgid "Attach invoice to:"
|
125 |
msgstr "Priložiť faktúru k správam pre:"
|
126 |
|
127 |
# @ wpo_wcpdf
|
128 |
-
#: includes/class-wcpdf-settings.php:
|
129 |
msgid "Admin New Order email"
|
130 |
msgstr "administrátora - e-mail pri vytvorení novej objednávky"
|
131 |
|
132 |
# @ wpo_wcpdf
|
133 |
-
#: includes/class-wcpdf-settings.php:
|
134 |
msgid "Customer Processing Order email"
|
135 |
msgstr "zákazníka - e-mail pri prijatí objednávky"
|
136 |
|
137 |
# @ wpo_wcpdf
|
138 |
-
#: includes/class-wcpdf-settings.php:
|
139 |
msgid "Customer Completed Order email"
|
140 |
msgstr "zákazníka - e-mail pri vybavení objednávky"
|
141 |
|
142 |
# @ wpo_wcpdf
|
143 |
-
#: includes/class-wcpdf-settings.php:
|
144 |
msgid "Customer Invoice email"
|
145 |
msgstr "zákazníka - e-mail pri vytvorení faktúry"
|
146 |
|
147 |
# @ wpo_wcpdf
|
148 |
-
#: includes/class-wcpdf-settings.php:
|
149 |
#, php-format
|
150 |
msgid ""
|
151 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -157,111 +158,97 @@ msgstr ""
|
|
157 |
"priečinku, nebude možné odosielať faktúry e-mailom."
|
158 |
|
159 |
# @ wpo_wcpdf
|
160 |
-
#: includes/class-wcpdf-settings.php:
|
161 |
msgid "Enable invoice number column in the orders list"
|
162 |
msgstr "Zobraziť stĺpec s číslom faktúry v objednávkach"
|
163 |
|
164 |
# @ wpo_wcpdf
|
165 |
-
#: includes/class-wcpdf-settings.php:
|
166 |
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 |
#, 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:
|
186 |
msgid "Paper size"
|
187 |
msgstr "Veľkosť papiera"
|
188 |
|
189 |
# @ wpo_wcpdf
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "A4"
|
192 |
msgstr "A4"
|
193 |
|
194 |
# @ wpo_wcpdf
|
195 |
-
#: includes/class-wcpdf-settings.php:
|
196 |
msgid "Letter"
|
197 |
msgstr "Letter"
|
198 |
|
199 |
# @ wpo_wcpdf
|
200 |
-
#: includes/class-wcpdf-settings.php:
|
201 |
msgid "Shop header/logo"
|
202 |
msgstr "Hlavička / logo"
|
203 |
|
204 |
# @ wpo_wcpdf
|
205 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
211 |
msgid "Set image"
|
212 |
msgstr "Zvoliť obrázok"
|
213 |
|
214 |
# @ wpo_wcpdf
|
215 |
-
#: includes/class-wcpdf-settings.php:
|
216 |
msgid "Remove image"
|
217 |
msgstr "Odstrániť obrázok"
|
218 |
|
219 |
# @ wpo_wcpdf
|
220 |
-
#: includes/class-wcpdf-settings.php:
|
221 |
msgid "Shop Name"
|
222 |
msgstr "Názov obchodu"
|
223 |
|
224 |
# @ wpo_wcpdf
|
225 |
-
#: includes/class-wcpdf-settings.php:
|
226 |
msgid "Shop Address"
|
227 |
msgstr "Adresa obchodu"
|
228 |
|
229 |
# @ wpo_wcpdf
|
230 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
247 |
-
msgstr "
|
248 |
|
249 |
# @ wpo_wcpdf
|
250 |
-
#: includes/class-wcpdf-settings.php:
|
251 |
-
msgid ""
|
252 |
-
"
|
253 |
-
"WooCommerce order number"
|
254 |
-
msgstr ""
|
255 |
-
"Ak používate plugin <i>WooCommerce Sequential Order Numbers</i>, tak zvoľte "
|
256 |
-
"Číslo objednávky"
|
257 |
|
258 |
# @ wpo_wcpdf
|
259 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
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,53 +262,41 @@ msgstr ""
|
|
275 |
"faktúra, môže dôjsť k zdvojeniu číslovania vo faktúrach!"
|
276 |
|
277 |
# @ wpo_wcpdf
|
278 |
-
#: includes/class-wcpdf-settings.php:
|
279 |
-
#, fuzzy
|
280 |
msgid "Invoice number format"
|
281 |
-
msgstr "
|
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 |
-
|
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
|
@@ -359,12 +334,12 @@ 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:
|
363 |
msgid "Image resolution"
|
364 |
msgstr "Rozlíšenie obrázka"
|
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 "
|
@@ -375,54 +350,53 @@ msgstr ""
|
|
375 |
"šablóne"
|
376 |
|
377 |
# @ wpo_wcpdf
|
378 |
-
#: includes/class-wcpdf-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
379 |
msgid "Invoice Number"
|
380 |
msgstr "Číslo faktúry"
|
381 |
|
382 |
# @ wpo_wcpdf
|
383 |
-
#: includes/class-wcpdf-writepanels.php:
|
384 |
msgid "Download invoice (PDF)"
|
385 |
msgstr "Stiahnuť faktúru (PDF)"
|
386 |
|
387 |
# @ wpo_wcpdf
|
388 |
-
#: includes/class-wcpdf-writepanels.php:
|
389 |
msgid "Create PDF"
|
390 |
msgstr "Vytvoriť PDF"
|
391 |
|
392 |
# @ wpo_wcpdf
|
393 |
-
#: includes/class-wcpdf-writepanels.php:
|
394 |
-
msgid "PDF
|
395 |
msgstr "PDF faktúra"
|
396 |
|
397 |
# @ wpo_wcpdf
|
398 |
-
#: includes/class-wcpdf-writepanels.php:
|
399 |
msgid "PDF Packing Slip"
|
400 |
msgstr "PDF dodací list"
|
401 |
|
402 |
# @ wpo_wcpdf
|
403 |
-
#: includes/class-wcpdf-writepanels.php:
|
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:
|
415 |
-
#: templates/pdf/Simple/invoice.php:
|
416 |
msgid "Invoice Date:"
|
417 |
msgstr "Dátum vystavenia faktúry:"
|
418 |
|
419 |
-
#: includes/class-wcpdf-writepanels.php:
|
420 |
msgid "h"
|
421 |
-
msgstr ""
|
422 |
|
423 |
-
#: includes/class-wcpdf-writepanels.php:
|
424 |
msgid "m"
|
425 |
-
msgstr ""
|
426 |
|
427 |
# @ wpo_wcpdf
|
428 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
@@ -438,74 +412,74 @@ msgid "Packing Slip"
|
|
438 |
msgstr "Dodací list"
|
439 |
|
440 |
# @ wpo_wcpdf
|
441 |
-
#: templates/pdf/Simple/invoice.php:
|
442 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
443 |
-
msgid "Order Date:"
|
444 |
-
msgstr "Dátum objednávky:"
|
445 |
-
|
446 |
-
# @ wpo_wcpdf
|
447 |
-
#: templates/pdf/Simple/invoice.php:46
|
448 |
msgid "Invoice Number:"
|
449 |
msgstr "Číslo faktúry:"
|
450 |
|
451 |
# @ wpo_wcpdf
|
452 |
-
#: templates/pdf/Simple/invoice.php:
|
453 |
-
#: templates/pdf/Simple/packing-slip.php:
|
454 |
msgid "Order Number:"
|
455 |
msgstr "Číslo objednávky:"
|
456 |
|
457 |
# @ wpo_wcpdf
|
458 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
msgid "Payment Method:"
|
460 |
msgstr "Spôsob platby:"
|
461 |
|
462 |
# @ wpo_wcpdf
|
463 |
-
#: templates/pdf/Simple/invoice.php:
|
464 |
-
#: templates/pdf/Simple/packing-slip.php:
|
465 |
msgid "Product"
|
466 |
msgstr "Produkt"
|
467 |
|
468 |
# @ wpo_wcpdf
|
469 |
-
#: templates/pdf/Simple/invoice.php:
|
470 |
-
#: templates/pdf/Simple/packing-slip.php:
|
471 |
msgid "Quantity"
|
472 |
msgstr "Množstvo"
|
473 |
|
474 |
# @ wpo_wcpdf
|
475 |
-
#: templates/pdf/Simple/invoice.php:
|
476 |
msgid "Price"
|
477 |
msgstr "Cena"
|
478 |
|
479 |
# @ wpo_wcpdf
|
480 |
-
#: templates/pdf/Simple/invoice.php:
|
481 |
msgid "Description"
|
482 |
msgstr "Popis"
|
483 |
|
484 |
# @ wpo_wcpdf
|
485 |
-
#: templates/pdf/Simple/invoice.php:
|
486 |
msgid "SKU"
|
487 |
msgstr "Kód"
|
488 |
|
489 |
# @ wpo_wcpdf
|
490 |
-
#: templates/pdf/Simple/invoice.php:
|
491 |
-
#: templates/pdf/Simple/packing-slip.php:
|
492 |
msgid "SKU:"
|
493 |
msgstr "Kód:"
|
494 |
|
495 |
# @ wpo_wcpdf
|
496 |
-
#: templates/pdf/Simple/invoice.php:
|
497 |
-
#: templates/pdf/Simple/packing-slip.php:
|
498 |
msgid "Weight:"
|
499 |
msgstr "Hmotnosť:"
|
500 |
|
501 |
# @ wpo_wcpdf
|
502 |
-
#: templates/pdf/Simple/invoice.php:
|
503 |
-
#: templates/pdf/Simple/packing-slip.php:
|
504 |
msgid "Customer Notes"
|
505 |
msgstr "Poznámky"
|
506 |
|
507 |
# @ wpo_wcpdf
|
508 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
509 |
#, php-format
|
510 |
msgid ""
|
511 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
@@ -515,47 +489,75 @@ msgstr ""
|
|
515 |
"%sWooCommerce%s!"
|
516 |
|
517 |
# @ wpo_wcpdf
|
518 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
519 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
520 |
msgid "N/A"
|
521 |
msgstr "N/A"
|
522 |
|
523 |
# @ wpo_wcpdf
|
524 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
525 |
msgid "Payment method"
|
526 |
msgstr "Spôsob platby"
|
527 |
|
528 |
# @ wpo_wcpdf
|
529 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
530 |
msgid "Shipping method"
|
531 |
msgstr "Doprava"
|
532 |
|
533 |
# @ wpo_wcpdf
|
534 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
535 |
msgid "Subtotal"
|
536 |
msgstr "Medzisúčet"
|
537 |
|
538 |
# @ wpo_wcpdf
|
539 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
540 |
msgid "Shipping"
|
541 |
msgstr "Doprava"
|
542 |
|
543 |
# @ wpo_wcpdf
|
544 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
545 |
msgid "Discount"
|
546 |
msgstr "Zľava"
|
547 |
|
548 |
# @ wpo_wcpdf
|
549 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
550 |
msgid "VAT"
|
551 |
msgstr "DPH"
|
552 |
|
553 |
# @ default
|
554 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
555 |
msgid "Total ex. VAT"
|
556 |
msgstr "Spolu bez DPH"
|
557 |
|
558 |
# @ default
|
559 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
560 |
msgid "Total"
|
561 |
msgstr "Spolu"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-11-03 09:07+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-11-03 09:17+0100\n"
|
7 |
+
"Last-Translator: Ing. Jakub Novák <info@kubiq.sk>\n"
|
8 |
"Language-Team: KubiQ <7kubiq7@gmail.com>\n"
|
9 |
"Language: sk_SK\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
14 |
+
"X-Generator: Poedit 1.6.10\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:175 includes/class-wcpdf-export.php:180
|
24 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
25 |
+
#: includes/class-wcpdf-export.php:204
|
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:263
|
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:267
|
41 |
msgid "packing-slip"
|
42 |
msgid_plural "packing-slips"
|
43 |
msgstr[0] "dodacie-listy"
|
45 |
msgstr[2] "dodacie-listy"
|
46 |
|
47 |
# @ wpo_wcpdf
|
48 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
49 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
50 |
msgid "PDF Invoices"
|
51 |
msgstr "PDF faktúry"
|
52 |
|
53 |
# @ woocommerce
|
54 |
+
#: includes/class-wcpdf-settings.php:69
|
55 |
msgid "Settings"
|
56 |
msgstr "Nastavenia"
|
57 |
|
58 |
# @ wpo_wcpdf
|
59 |
+
#: includes/class-wcpdf-settings.php:91
|
60 |
msgid "General"
|
61 |
msgstr "Všeobecné"
|
62 |
|
63 |
# @ wpo_wcpdf
|
64 |
+
#: includes/class-wcpdf-settings.php:92
|
65 |
msgid "Template"
|
66 |
msgstr "Šablóna"
|
67 |
|
68 |
# @ wpo_wcpdf
|
69 |
+
#: includes/class-wcpdf-settings.php:101
|
70 |
msgid "WooCommerce PDF Invoices"
|
71 |
msgstr "WooCommerce PDF faktúry"
|
72 |
|
73 |
# @ wpo_wcpdf
|
74 |
+
#: includes/class-wcpdf-settings.php:107
|
75 |
msgid "Status"
|
76 |
msgstr "Stav"
|
77 |
|
78 |
+
#: includes/class-wcpdf-settings.php:118
|
79 |
#, php-format
|
80 |
msgid ""
|
81 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
82 |
"extension."
|
83 |
msgstr ""
|
84 |
+
"Automatické nahrávanie všetkých faktúr na Váš Dropbox!<br>Pozrite si tento "
|
85 |
+
"%s doplnok."
|
86 |
|
87 |
# @ wpo_wcpdf
|
88 |
+
#: includes/class-wcpdf-settings.php:128
|
89 |
#, php-format
|
90 |
msgid ""
|
91 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
95 |
"šablóny na stránke %s."
|
96 |
|
97 |
# @ wpo_wcpdf
|
98 |
+
#: includes/class-wcpdf-settings.php:129
|
99 |
#, php-format
|
100 |
msgid "For custom templates, contact us at %s."
|
101 |
msgstr "Ak chcete šablónu na mieru, kontaktuje nás na %s."
|
102 |
|
103 |
# @ wpo_wcpdf
|
104 |
+
#: includes/class-wcpdf-settings.php:184
|
105 |
msgid "General settings"
|
106 |
msgstr "Všeobecné nastavenia"
|
107 |
|
108 |
# @ wpo_wcpdf
|
109 |
+
#: includes/class-wcpdf-settings.php:191
|
110 |
msgid "How do you want to view the PDF?"
|
111 |
msgstr "Ako chcete zobraziť PDF?"
|
112 |
|
113 |
# @ wpo_wcpdf
|
114 |
+
#: includes/class-wcpdf-settings.php:199
|
115 |
msgid "Download the PDF"
|
116 |
msgstr "Stiahnuť PDF"
|
117 |
|
118 |
# @ wpo_wcpdf
|
119 |
+
#: includes/class-wcpdf-settings.php:200
|
120 |
msgid "Open the PDF in a new browser tab/window"
|
121 |
msgstr "Otvoriť PDF v novom okne"
|
122 |
|
123 |
# @ wpo_wcpdf
|
124 |
+
#: includes/class-wcpdf-settings.php:210
|
125 |
msgid "Attach invoice to:"
|
126 |
msgstr "Priložiť faktúru k správam pre:"
|
127 |
|
128 |
# @ wpo_wcpdf
|
129 |
+
#: includes/class-wcpdf-settings.php:218
|
130 |
msgid "Admin New Order email"
|
131 |
msgstr "administrátora - e-mail pri vytvorení novej objednávky"
|
132 |
|
133 |
# @ wpo_wcpdf
|
134 |
+
#: includes/class-wcpdf-settings.php:219
|
135 |
msgid "Customer Processing Order email"
|
136 |
msgstr "zákazníka - e-mail pri prijatí objednávky"
|
137 |
|
138 |
# @ wpo_wcpdf
|
139 |
+
#: includes/class-wcpdf-settings.php:220
|
140 |
msgid "Customer Completed Order email"
|
141 |
msgstr "zákazníka - e-mail pri vybavení objednávky"
|
142 |
|
143 |
# @ wpo_wcpdf
|
144 |
+
#: includes/class-wcpdf-settings.php:221
|
145 |
msgid "Customer Invoice email"
|
146 |
msgstr "zákazníka - e-mail pri vytvorení faktúry"
|
147 |
|
148 |
# @ wpo_wcpdf
|
149 |
+
#: includes/class-wcpdf-settings.php:223
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
158 |
"priečinku, nebude možné odosielať faktúry e-mailom."
|
159 |
|
160 |
# @ wpo_wcpdf
|
161 |
+
#: includes/class-wcpdf-settings.php:229
|
162 |
msgid "Enable invoice number column in the orders list"
|
163 |
msgstr "Zobraziť stĺpec s číslom faktúry v objednávkach"
|
164 |
|
165 |
# @ wpo_wcpdf
|
166 |
+
#: includes/class-wcpdf-settings.php:268
|
167 |
msgid "PDF Template settings"
|
168 |
msgstr "Nastavenia PDF šablón"
|
169 |
|
170 |
# @ wpo_wcpdf
|
171 |
+
#: includes/class-wcpdf-settings.php:280
|
172 |
msgid "Choose a template"
|
173 |
msgstr "Zvoľte šablónu"
|
174 |
|
175 |
# @ wpo_wcpdf
|
176 |
+
#: includes/class-wcpdf-settings.php:288
|
177 |
#, php-format
|
178 |
msgid ""
|
179 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
180 |
+
"your (child) theme in <code>%s</code> to customize them"
|
181 |
msgstr ""
|
182 |
"Chcete použiť vlastnú šablónu? Skopírujte všetky súbory z <code>%s</code> do "
|
183 |
"<code>%s</code> a upravte ich podľa potreby"
|
184 |
|
185 |
# @ wpo_wcpdf
|
186 |
+
#: includes/class-wcpdf-settings.php:294
|
187 |
msgid "Paper size"
|
188 |
msgstr "Veľkosť papiera"
|
189 |
|
190 |
# @ wpo_wcpdf
|
191 |
+
#: includes/class-wcpdf-settings.php:302
|
192 |
msgid "A4"
|
193 |
msgstr "A4"
|
194 |
|
195 |
# @ wpo_wcpdf
|
196 |
+
#: includes/class-wcpdf-settings.php:303
|
197 |
msgid "Letter"
|
198 |
msgstr "Letter"
|
199 |
|
200 |
# @ wpo_wcpdf
|
201 |
+
#: includes/class-wcpdf-settings.php:310
|
202 |
msgid "Shop header/logo"
|
203 |
msgstr "Hlavička / logo"
|
204 |
|
205 |
# @ wpo_wcpdf
|
206 |
+
#: includes/class-wcpdf-settings.php:317
|
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:318
|
212 |
msgid "Set image"
|
213 |
msgstr "Zvoliť obrázok"
|
214 |
|
215 |
# @ wpo_wcpdf
|
216 |
+
#: includes/class-wcpdf-settings.php:319
|
217 |
msgid "Remove image"
|
218 |
msgstr "Odstrániť obrázok"
|
219 |
|
220 |
# @ wpo_wcpdf
|
221 |
+
#: includes/class-wcpdf-settings.php:326
|
222 |
msgid "Shop Name"
|
223 |
msgstr "Názov obchodu"
|
224 |
|
225 |
# @ wpo_wcpdf
|
226 |
+
#: includes/class-wcpdf-settings.php:339
|
227 |
msgid "Shop Address"
|
228 |
msgstr "Adresa obchodu"
|
229 |
|
230 |
# @ wpo_wcpdf
|
231 |
+
#: includes/class-wcpdf-settings.php:371
|
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:386
|
237 |
+
msgid "Display invoice date"
|
238 |
+
msgstr "Zobraziť dátum faktúry"
|
239 |
|
240 |
# @ wpo_wcpdf
|
241 |
+
#: includes/class-wcpdf-settings.php:399
|
242 |
+
msgid "Display built-in sequential invoice number"
|
243 |
+
msgstr "Zobraziť vstavané číslovanie faktúr"
|
|
|
|
|
|
|
|
|
244 |
|
245 |
# @ wpo_wcpdf
|
246 |
+
#: includes/class-wcpdf-settings.php:412
|
247 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
248 |
msgstr "Ďalšie číslo faktúry (bez predpony/prípony)"
|
249 |
|
250 |
# @ wpo_wcpdf
|
251 |
+
#: includes/class-wcpdf-settings.php:420
|
252 |
msgid ""
|
253 |
"This is the number that will be used on the next invoice that is created. By "
|
254 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
262 |
"faktúra, môže dôjsť k zdvojeniu číslovania vo faktúrach!"
|
263 |
|
264 |
# @ wpo_wcpdf
|
265 |
+
#: includes/class-wcpdf-settings.php:426
|
|
|
266 |
msgid "Invoice number format"
|
267 |
+
msgstr "Formát čísla faktúry"
|
268 |
|
269 |
+
#: includes/class-wcpdf-settings.php:435
|
270 |
msgid "Prefix"
|
271 |
+
msgstr "Predpona"
|
272 |
|
273 |
+
#: includes/class-wcpdf-settings.php:437
|
274 |
msgid ""
|
275 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
276 |
"respectively"
|
277 |
msgstr ""
|
278 |
+
"pre použitie roku a/alebo mesiaca objednávky, použite [order_year] a/alebo "
|
279 |
+
"[order_month]"
|
280 |
|
281 |
+
#: includes/class-wcpdf-settings.php:440
|
282 |
msgid "Suffix"
|
283 |
+
msgstr "Prípona"
|
284 |
|
285 |
+
#: includes/class-wcpdf-settings.php:445
|
286 |
msgid "Padding"
|
287 |
+
msgstr "Vnútorné odsadenie"
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:447
|
290 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
291 |
+
msgstr "zadajte počet cifier - zadajte \"6\" a číslo 42 sa zobrazí ako 000042"
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:450
|
294 |
msgid ""
|
295 |
"note: if you have already created a custom invoice number format with a "
|
296 |
"filter, the above settings will be ignored"
|
297 |
msgstr ""
|
298 |
+
"poznámka: ak ste už vytvorili vlastné číslovanie faktúr prostredníctvom "
|
299 |
+
"filtra, tak tieto nastavenia budú ignorované"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
|
301 |
# @ wpo_wcpdf
|
302 |
#: includes/class-wcpdf-settings.php:457
|
334 |
msgstr "Toto je 3. políčko v pätičke v šablóne <i>Modern (Premium)</i>"
|
335 |
|
336 |
# @ default
|
337 |
+
#: includes/class-wcpdf-settings.php:761
|
338 |
msgid "Image resolution"
|
339 |
msgstr "Rozlíšenie obrázka"
|
340 |
|
341 |
# @ wpo_wcpdf
|
342 |
+
#: includes/class-wcpdf-settings.php:877
|
343 |
msgid ""
|
344 |
"These are used for the (optional) footer columns in the <em>Modern "
|
345 |
"(Premium)</em> template, but can also be used for other elements in your "
|
350 |
"šablóne"
|
351 |
|
352 |
# @ wpo_wcpdf
|
353 |
+
#: includes/class-wcpdf-writepanels.php:32
|
354 |
+
msgid "PDF Packing Slips"
|
355 |
+
msgstr "PDF dodacie listy"
|
356 |
+
|
357 |
+
# @ wpo_wcpdf
|
358 |
+
#: includes/class-wcpdf-writepanels.php:123
|
359 |
msgid "Invoice Number"
|
360 |
msgstr "Číslo faktúry"
|
361 |
|
362 |
# @ wpo_wcpdf
|
363 |
+
#: includes/class-wcpdf-writepanels.php:160
|
364 |
msgid "Download invoice (PDF)"
|
365 |
msgstr "Stiahnuť faktúru (PDF)"
|
366 |
|
367 |
# @ wpo_wcpdf
|
368 |
+
#: includes/class-wcpdf-writepanels.php:171
|
369 |
msgid "Create PDF"
|
370 |
msgstr "Vytvoriť PDF"
|
371 |
|
372 |
# @ wpo_wcpdf
|
373 |
+
#: includes/class-wcpdf-writepanels.php:184
|
374 |
+
msgid "PDF Invoice"
|
375 |
msgstr "PDF faktúra"
|
376 |
|
377 |
# @ wpo_wcpdf
|
378 |
+
#: includes/class-wcpdf-writepanels.php:189
|
379 |
msgid "PDF Packing Slip"
|
380 |
msgstr "PDF dodací list"
|
381 |
|
382 |
# @ wpo_wcpdf
|
383 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
msgid "PDF Invoice Number (unformatted!)"
|
385 |
msgstr "Číslo faktúry (mimo formátovania!)"
|
386 |
|
387 |
# @ wpo_wcpdf
|
388 |
+
#: includes/class-wcpdf-writepanels.php:235
|
389 |
+
#: templates/pdf/Simple/invoice.php:36
|
390 |
msgid "Invoice Date:"
|
391 |
msgstr "Dátum vystavenia faktúry:"
|
392 |
|
393 |
+
#: includes/class-wcpdf-writepanels.php:236
|
394 |
msgid "h"
|
395 |
+
msgstr "h"
|
396 |
|
397 |
+
#: includes/class-wcpdf-writepanels.php:236
|
398 |
msgid "m"
|
399 |
+
msgstr "m"
|
400 |
|
401 |
# @ wpo_wcpdf
|
402 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
412 |
msgstr "Dodací list"
|
413 |
|
414 |
# @ wpo_wcpdf
|
415 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
msgid "Invoice Number:"
|
417 |
msgstr "Číslo faktúry:"
|
418 |
|
419 |
# @ wpo_wcpdf
|
420 |
+
#: templates/pdf/Simple/invoice.php:39
|
421 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
422 |
msgid "Order Number:"
|
423 |
msgstr "Číslo objednávky:"
|
424 |
|
425 |
# @ wpo_wcpdf
|
426 |
+
#: templates/pdf/Simple/invoice.php:41
|
427 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
428 |
+
msgid "Order Date:"
|
429 |
+
msgstr "Dátum objednávky:"
|
430 |
+
|
431 |
+
# @ wpo_wcpdf
|
432 |
+
#: templates/pdf/Simple/invoice.php:43
|
433 |
msgid "Payment Method:"
|
434 |
msgstr "Spôsob platby:"
|
435 |
|
436 |
# @ wpo_wcpdf
|
437 |
+
#: templates/pdf/Simple/invoice.php:58
|
438 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
439 |
msgid "Product"
|
440 |
msgstr "Produkt"
|
441 |
|
442 |
# @ wpo_wcpdf
|
443 |
+
#: templates/pdf/Simple/invoice.php:59
|
444 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
445 |
msgid "Quantity"
|
446 |
msgstr "Množstvo"
|
447 |
|
448 |
# @ wpo_wcpdf
|
449 |
+
#: templates/pdf/Simple/invoice.php:60
|
450 |
msgid "Price"
|
451 |
msgstr "Cena"
|
452 |
|
453 |
# @ wpo_wcpdf
|
454 |
+
#: templates/pdf/Simple/invoice.php:66
|
455 |
msgid "Description"
|
456 |
msgstr "Popis"
|
457 |
|
458 |
# @ wpo_wcpdf
|
459 |
+
#: templates/pdf/Simple/invoice.php:69
|
460 |
msgid "SKU"
|
461 |
msgstr "Kód"
|
462 |
|
463 |
# @ wpo_wcpdf
|
464 |
+
#: templates/pdf/Simple/invoice.php:70
|
465 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
466 |
msgid "SKU:"
|
467 |
msgstr "Kód:"
|
468 |
|
469 |
# @ wpo_wcpdf
|
470 |
+
#: templates/pdf/Simple/invoice.php:71
|
471 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
472 |
msgid "Weight:"
|
473 |
msgstr "Hmotnosť:"
|
474 |
|
475 |
# @ wpo_wcpdf
|
476 |
+
#: templates/pdf/Simple/invoice.php:105
|
477 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
478 |
msgid "Customer Notes"
|
479 |
msgstr "Poznámky"
|
480 |
|
481 |
# @ wpo_wcpdf
|
482 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
483 |
#, php-format
|
484 |
msgid ""
|
485 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
489 |
"%sWooCommerce%s!"
|
490 |
|
491 |
# @ wpo_wcpdf
|
492 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
493 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
494 |
msgid "N/A"
|
495 |
msgstr "N/A"
|
496 |
|
497 |
# @ wpo_wcpdf
|
498 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
499 |
msgid "Payment method"
|
500 |
msgstr "Spôsob platby"
|
501 |
|
502 |
# @ wpo_wcpdf
|
503 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
504 |
msgid "Shipping method"
|
505 |
msgstr "Doprava"
|
506 |
|
507 |
# @ wpo_wcpdf
|
508 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
509 |
msgid "Subtotal"
|
510 |
msgstr "Medzisúčet"
|
511 |
|
512 |
# @ wpo_wcpdf
|
513 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
514 |
msgid "Shipping"
|
515 |
msgstr "Doprava"
|
516 |
|
517 |
# @ wpo_wcpdf
|
518 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
519 |
msgid "Discount"
|
520 |
msgstr "Zľava"
|
521 |
|
522 |
# @ wpo_wcpdf
|
523 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
524 |
msgid "VAT"
|
525 |
msgstr "DPH"
|
526 |
|
527 |
# @ default
|
528 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
529 |
msgid "Total ex. VAT"
|
530 |
msgstr "Spolu bez DPH"
|
531 |
|
532 |
# @ default
|
533 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
534 |
msgid "Total"
|
535 |
msgstr "Spolu"
|
536 |
+
|
537 |
+
# @ wpo_wcpdf
|
538 |
+
#~ msgid "Number to display on invoice"
|
539 |
+
#~ msgstr "Číslo zobrazené vo faktúre"
|
540 |
+
|
541 |
+
# @ wpo_wcpdf
|
542 |
+
#~ msgid "WooCommerce order number"
|
543 |
+
#~ msgstr "Číslo objednávky"
|
544 |
+
|
545 |
+
# @ wpo_wcpdf
|
546 |
+
#~ msgid ""
|
547 |
+
#~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
|
548 |
+
#~ "the WooCommerce order number"
|
549 |
+
#~ msgstr ""
|
550 |
+
#~ "Ak používate plugin <i>WooCommerce Sequential Order Numbers</i>, tak "
|
551 |
+
#~ "zvoľte Číslo objednávky"
|
552 |
+
|
553 |
+
# @ wpo_wcpdf
|
554 |
+
#~ msgid "Date to display on invoice"
|
555 |
+
#~ msgstr "Dátum zobrazený vo faktúre"
|
556 |
+
|
557 |
+
# @ wpo_wcpdf
|
558 |
+
#~ msgid "Order date"
|
559 |
+
#~ msgstr "Dátum objednávky"
|
560 |
+
|
561 |
+
# @ wpo_wcpdf
|
562 |
+
#~ msgid "PDF invoice"
|
563 |
+
#~ msgstr "PDF faktúra"
|
languages/wpo_wcpdf-uk.mo
CHANGED
Binary file
|
languages/wpo_wcpdf-uk.po
CHANGED
@@ -1,221 +1,214 @@
|
|
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=
|
|
|
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:
|
40 |
-
#: includes/class-wcpdf-writepanels.php:
|
41 |
-
#: includes/class-wcpdf-writepanels.php:177
|
42 |
msgid "PDF Invoices"
|
43 |
msgstr "PDF Накладні"
|
44 |
|
45 |
-
#: includes/class-wcpdf-settings.php:
|
46 |
msgid "Settings"
|
47 |
msgstr "Налаштування"
|
48 |
|
49 |
-
#: includes/class-wcpdf-settings.php:
|
50 |
msgid "General"
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#: includes/class-wcpdf-settings.php:
|
54 |
msgid "Template"
|
55 |
msgstr "Шаблон"
|
56 |
|
57 |
-
#: includes/class-wcpdf-settings.php:
|
58 |
msgid "WooCommerce PDF Invoices"
|
59 |
msgstr "WooCommerce PDF Накладні"
|
60 |
|
61 |
-
#: includes/class-wcpdf-settings.php:
|
62 |
msgid "Status"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: includes/class-wcpdf-settings.php:
|
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:
|
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 |
-
"
|
80 |
|
81 |
-
#: includes/class-wcpdf-settings.php:
|
82 |
#, php-format
|
83 |
msgid "For custom templates, contact us at %s."
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#: includes/class-wcpdf-settings.php:
|
87 |
msgid "General settings"
|
88 |
msgstr "Основні налаштування"
|
89 |
|
90 |
-
#: includes/class-wcpdf-settings.php:
|
91 |
msgid "How do you want to view the PDF?"
|
92 |
-
msgstr "Як ви хочете
|
93 |
|
94 |
-
#: includes/class-wcpdf-settings.php:
|
95 |
msgid "Download the PDF"
|
96 |
msgstr "Завантажити PDF"
|
97 |
|
98 |
-
#: includes/class-wcpdf-settings.php:
|
99 |
msgid "Open the PDF in a new browser tab/window"
|
100 |
-
msgstr "Відкрити PDF в
|
101 |
|
102 |
-
#: includes/class-wcpdf-settings.php:
|
103 |
msgid "Attach invoice to:"
|
104 |
msgstr "Прикріпити накладну до:"
|
105 |
|
106 |
-
#: includes/class-wcpdf-settings.php:
|
107 |
msgid "Admin New Order email"
|
108 |
-
msgstr "Email
|
109 |
|
110 |
-
#: includes/class-wcpdf-settings.php:
|
111 |
msgid "Customer Processing Order email"
|
112 |
-
msgstr "Email
|
113 |
|
114 |
-
#: includes/class-wcpdf-settings.php:
|
115 |
msgid "Customer Completed Order email"
|
116 |
-
msgstr "Email
|
117 |
|
118 |
-
#: includes/class-wcpdf-settings.php:
|
119 |
msgid "Customer Invoice email"
|
120 |
-
msgstr "Email
|
121 |
|
122 |
-
#: includes/class-wcpdf-settings.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
126 |
"permissions for this folder! Without having write access to this folder, the "
|
127 |
"plugin will not be able to email invoices."
|
128 |
msgstr ""
|
129 |
-
"
|
130 |
-
"
|
131 |
-
"
|
132 |
|
133 |
-
#: includes/class-wcpdf-settings.php:
|
134 |
msgid "Enable invoice number column in the orders list"
|
135 |
-
msgstr ""
|
136 |
|
137 |
-
#: includes/class-wcpdf-settings.php:
|
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 |
#, 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 |
-
"Хочете свій
|
152 |
-
"
|
153 |
|
154 |
-
#: includes/class-wcpdf-settings.php:
|
155 |
msgid "Paper size"
|
156 |
msgstr "Розмір паперу"
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "A4"
|
160 |
msgstr "А4"
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "Letter"
|
164 |
msgstr "Лист"
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Shop header/logo"
|
168 |
-
msgstr "Логотип в шапці
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Select or upload your invoice header/logo"
|
172 |
-
msgstr "
|
|
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Set image"
|
176 |
msgstr "Встановити зображення"
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Remove image"
|
180 |
msgstr "Видалити зображення"
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Shop Name"
|
184 |
-
msgstr "Назва
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Shop Address"
|
188 |
-
msgstr "Адреса
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
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 "
|
204 |
-
msgstr "
|
205 |
|
206 |
-
#: includes/class-wcpdf-settings.php:
|
207 |
-
msgid ""
|
208 |
-
"
|
209 |
-
"WooCommerce order number"
|
210 |
-
msgstr ""
|
211 |
-
"Якщо ви використовуєте WooCommerce Sequential Order Numbers плагін, виберіть "
|
212 |
-
"WooCommerce номер замовлення"
|
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 "
|
@@ -223,143 +216,129 @@ msgid ""
|
|
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 |
-
"замовчуванням, нумерація починається з
|
228 |
-
"
|
229 |
-
"
|
230 |
-
"
|
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:
|
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 |
-
|
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 "
|
285 |
|
286 |
#: includes/class-wcpdf-settings.php:473
|
287 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
288 |
-
msgstr "Це колонка
|
289 |
|
290 |
#: includes/class-wcpdf-settings.php:479
|
291 |
msgid "Extra field 2"
|
292 |
-
msgstr "
|
293 |
|
294 |
#: includes/class-wcpdf-settings.php:488
|
295 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
296 |
-
msgstr "Це колонка
|
297 |
|
298 |
#: includes/class-wcpdf-settings.php:494
|
299 |
msgid "Extra field 3"
|
300 |
-
msgstr "
|
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 |
|
306 |
-
#: includes/class-wcpdf-settings.php:
|
307 |
msgid "Image resolution"
|
308 |
msgstr "Дозвіл зображення"
|
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 "
|
314 |
"custom template"
|
315 |
msgstr ""
|
316 |
-
"
|
317 |
-
"
|
318 |
-
"блок для виведення в індивідуальному шаблоні."
|
319 |
|
320 |
-
#: includes/class-wcpdf-writepanels.php:
|
321 |
-
|
|
|
|
|
|
|
322 |
msgid "Invoice Number"
|
323 |
-
msgstr "Номер
|
324 |
|
325 |
-
#: includes/class-wcpdf-writepanels.php:
|
326 |
msgid "Download invoice (PDF)"
|
327 |
msgstr "Завантажити накладну (PDF)"
|
328 |
|
329 |
-
#: includes/class-wcpdf-writepanels.php:
|
330 |
msgid "Create PDF"
|
331 |
msgstr "Створити PDF"
|
332 |
|
333 |
-
#: includes/class-wcpdf-writepanels.php:
|
334 |
-
msgid "PDF
|
335 |
msgstr "PDF Накладна"
|
336 |
|
337 |
-
#: includes/class-wcpdf-writepanels.php:
|
338 |
msgid "PDF Packing Slip"
|
339 |
msgstr "PDF Рахунок-Фактура"
|
340 |
|
341 |
-
#: includes/class-wcpdf-writepanels.php:
|
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:
|
352 |
-
#: templates/pdf/Simple/invoice.php:
|
353 |
msgid "Invoice Date:"
|
354 |
-
msgstr "Дата
|
355 |
|
356 |
-
#: includes/class-wcpdf-writepanels.php:
|
357 |
msgid "h"
|
358 |
-
msgstr ""
|
359 |
|
360 |
-
#: includes/class-wcpdf-writepanels.php:
|
361 |
msgid "m"
|
362 |
-
msgstr ""
|
363 |
|
364 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
365 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
@@ -372,113 +351,103 @@ msgstr "Накладна"
|
|
372 |
msgid "Packing Slip"
|
373 |
msgstr "Рахунок-Фактура"
|
374 |
|
375 |
-
#: templates/pdf/Simple/invoice.php:
|
376 |
-
#: templates/pdf/Simple/packing-slip.php:30
|
377 |
-
msgid "Order Date:"
|
378 |
-
msgstr "Дата замовлення:"
|
379 |
-
|
380 |
-
#: templates/pdf/Simple/invoice.php:46
|
381 |
msgid "Invoice Number:"
|
382 |
-
msgstr "Номер
|
383 |
|
384 |
-
#: templates/pdf/Simple/invoice.php:
|
385 |
-
#: templates/pdf/Simple/packing-slip.php:
|
386 |
msgid "Order Number:"
|
387 |
-
msgstr "Номер
|
388 |
|
389 |
-
#: templates/pdf/Simple/invoice.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Payment Method:"
|
391 |
-
msgstr "Метод
|
392 |
|
393 |
-
#: templates/pdf/Simple/invoice.php:
|
394 |
-
#: templates/pdf/Simple/packing-slip.php:
|
395 |
msgid "Product"
|
396 |
msgstr "Товар"
|
397 |
|
398 |
-
#: templates/pdf/Simple/invoice.php:
|
399 |
-
#: templates/pdf/Simple/packing-slip.php:
|
400 |
msgid "Quantity"
|
401 |
msgstr "Кількість"
|
402 |
|
403 |
-
#: templates/pdf/Simple/invoice.php:
|
404 |
msgid "Price"
|
405 |
msgstr "Ціна"
|
406 |
|
407 |
-
#: templates/pdf/Simple/invoice.php:
|
408 |
msgid "Description"
|
409 |
-
msgstr ""
|
410 |
|
411 |
-
#: templates/pdf/Simple/invoice.php:
|
412 |
-
#, fuzzy
|
413 |
msgid "SKU"
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#: templates/pdf/Simple/invoice.php:
|
417 |
-
#: templates/pdf/Simple/packing-slip.php:
|
418 |
msgid "SKU:"
|
419 |
-
msgstr "
|
420 |
|
421 |
-
#: templates/pdf/Simple/invoice.php:
|
422 |
-
#: templates/pdf/Simple/packing-slip.php:
|
423 |
msgid "Weight:"
|
424 |
msgstr "Вага:"
|
425 |
|
426 |
-
#: templates/pdf/Simple/invoice.php:
|
427 |
-
#: templates/pdf/Simple/packing-slip.php:
|
428 |
msgid "Customer Notes"
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
432 |
#, php-format
|
433 |
msgid ""
|
434 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
435 |
"installed & activated!"
|
436 |
msgstr ""
|
437 |
-
"
|
438 |
-
"
|
439 |
|
440 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
441 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
442 |
msgid "N/A"
|
443 |
msgstr "N/A"
|
444 |
|
445 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
446 |
-
#, fuzzy
|
447 |
msgid "Payment method"
|
448 |
-
msgstr "Метод
|
449 |
|
450 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
451 |
-
#, fuzzy
|
452 |
msgid "Shipping method"
|
453 |
-
msgstr "
|
454 |
|
455 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
456 |
msgid "Subtotal"
|
457 |
msgstr "Проміжний підсумок"
|
458 |
|
459 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
460 |
msgid "Shipping"
|
461 |
msgstr "Доставка"
|
462 |
|
463 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
464 |
msgid "Discount"
|
465 |
msgstr "Знижка"
|
466 |
|
467 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
468 |
msgid "VAT"
|
469 |
-
msgstr ""
|
470 |
|
471 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
472 |
msgid "Total ex. VAT"
|
473 |
-
msgstr "
|
474 |
|
475 |
-
#: woocommerce-pdf-invoices-packingslips.php:
|
476 |
msgid "Total"
|
477 |
msgstr "Разом"
|
478 |
-
|
479 |
-
#~ msgid "..."
|
480 |
-
#~ msgstr "..."
|
481 |
-
|
482 |
-
#~ msgid "Email invoice (attach to order confirmation or invoice email)"
|
483 |
-
#~ msgstr ""
|
484 |
-
#~ "Отослать накладную по Email (прикрепить к заказу или к Email-у накладной)"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-02 09:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-04 02:08+0200\n"
|
6 |
"Last-Translator: Oleg Komarovskyi <komarovski21@gmail.com>\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.4\n"
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
|
17 |
+
"Language: ru_RU\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: includes/class-wcpdf-export.php:175 includes/class-wcpdf-export.php:180
|
21 |
+
#: includes/class-wcpdf-export.php:185 includes/class-wcpdf-export.php:196
|
22 |
+
#: includes/class-wcpdf-export.php:204
|
23 |
msgid "You do not have sufficient permissions to access this page."
|
24 |
+
msgstr "У вас недостатньо прав для доступу до даної сторінки."
|
25 |
|
26 |
# This is a filename (prefix). do not use spaces or special characters!
|
27 |
+
#: includes/class-wcpdf-export.php:263
|
28 |
msgid "invoice"
|
29 |
msgid_plural "invoices"
|
30 |
msgstr[0] "накладна"
|
31 |
+
msgstr[1] "накладна"
|
32 |
+
msgstr[2] "накладна"
|
33 |
|
34 |
# This is a filename (prefix). do not use spaces or special characters!
|
35 |
+
#: includes/class-wcpdf-export.php:267
|
36 |
msgid "packing-slip"
|
37 |
msgid_plural "packing-slips"
|
38 |
+
msgstr[0] "рахунок-фактура"
|
39 |
+
msgstr[1] "рахунок-фактура"
|
40 |
+
msgstr[2] "рахунок-фактура"
|
41 |
|
42 |
+
#: includes/class-wcpdf-settings.php:38 includes/class-wcpdf-settings.php:39
|
43 |
+
#: includes/class-wcpdf-writepanels.php:31
|
|
|
44 |
msgid "PDF Invoices"
|
45 |
msgstr "PDF Накладні"
|
46 |
|
47 |
+
#: includes/class-wcpdf-settings.php:69
|
48 |
msgid "Settings"
|
49 |
msgstr "Налаштування"
|
50 |
|
51 |
+
#: includes/class-wcpdf-settings.php:91
|
52 |
msgid "General"
|
53 |
+
msgstr "Основні"
|
54 |
|
55 |
+
#: includes/class-wcpdf-settings.php:92
|
56 |
msgid "Template"
|
57 |
msgstr "Шаблон"
|
58 |
|
59 |
+
#: includes/class-wcpdf-settings.php:101
|
60 |
msgid "WooCommerce PDF Invoices"
|
61 |
msgstr "WooCommerce PDF Накладні"
|
62 |
|
63 |
+
#: includes/class-wcpdf-settings.php:107
|
64 |
msgid "Status"
|
65 |
+
msgstr "Статус"
|
66 |
|
67 |
+
#: includes/class-wcpdf-settings.php:118
|
68 |
#, php-format
|
69 |
msgid ""
|
70 |
"Upload all invoices automatically to your dropbox!<br/>Check out the %s "
|
71 |
"extension."
|
72 |
msgstr ""
|
73 |
+
"Завантажуйте всі накладні автоматично в ваш dropbox!<br/>Дивіться %s "
|
74 |
+
"розширення."
|
75 |
|
76 |
+
#: includes/class-wcpdf-settings.php:128
|
77 |
#, php-format
|
78 |
msgid ""
|
79 |
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
80 |
"Packing Slips templates at %s."
|
81 |
msgstr ""
|
82 |
+
"Шукаєте більш просунуті шаблони? Дивіться Преміум PDF Invoice & Packing "
|
83 |
+
"Slips шаблони на %s."
|
84 |
|
85 |
+
#: includes/class-wcpdf-settings.php:129
|
86 |
#, php-format
|
87 |
msgid "For custom templates, contact us at %s."
|
88 |
+
msgstr "За індивідуальними шаблонами, звертайтеся за %s."
|
89 |
|
90 |
+
#: includes/class-wcpdf-settings.php:184
|
91 |
msgid "General settings"
|
92 |
msgstr "Основні налаштування"
|
93 |
|
94 |
+
#: includes/class-wcpdf-settings.php:191
|
95 |
msgid "How do you want to view the PDF?"
|
96 |
+
msgstr "Як ви хочете переглядати PDF?"
|
97 |
|
98 |
+
#: includes/class-wcpdf-settings.php:199
|
99 |
msgid "Download the PDF"
|
100 |
msgstr "Завантажити PDF"
|
101 |
|
102 |
+
#: includes/class-wcpdf-settings.php:200
|
103 |
msgid "Open the PDF in a new browser tab/window"
|
104 |
+
msgstr "Відкрити PDF в новому вікні/вкладці браузера"
|
105 |
|
106 |
+
#: includes/class-wcpdf-settings.php:210
|
107 |
msgid "Attach invoice to:"
|
108 |
msgstr "Прикріпити накладну до:"
|
109 |
|
110 |
+
#: includes/class-wcpdf-settings.php:218
|
111 |
msgid "Admin New Order email"
|
112 |
+
msgstr "Email адресу Нового Замовлення зробленого Адміністратором"
|
113 |
|
114 |
+
#: includes/class-wcpdf-settings.php:219
|
115 |
msgid "Customer Processing Order email"
|
116 |
+
msgstr "Email адресу Клієнта, для Замовлень в статусі Обробки"
|
117 |
|
118 |
+
#: includes/class-wcpdf-settings.php:220
|
119 |
msgid "Customer Completed Order email"
|
120 |
+
msgstr "Email адресу Клієнта, для Завершених Замовлень"
|
121 |
|
122 |
+
#: includes/class-wcpdf-settings.php:221
|
123 |
msgid "Customer Invoice email"
|
124 |
+
msgstr "Email адресу Накладної Клієнта"
|
125 |
|
126 |
+
#: includes/class-wcpdf-settings.php:223
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
130 |
"permissions for this folder! Without having write access to this folder, the "
|
131 |
"plugin will not be able to email invoices."
|
132 |
msgstr ""
|
133 |
+
"Судячи з усього тимчасова папка (<code>%s</code>) без прав на запис, "
|
134 |
+
"перевірте дозволи для цієї папки! Без доступу запису до цієї папки, плагін "
|
135 |
+
"не зможе посилати накладні по email."
|
136 |
|
137 |
+
#: includes/class-wcpdf-settings.php:229
|
138 |
msgid "Enable invoice number column in the orders list"
|
139 |
+
msgstr "Показувати номер накладної в списку замовлень"
|
140 |
|
141 |
+
#: includes/class-wcpdf-settings.php:268
|
142 |
msgid "PDF Template settings"
|
143 |
msgstr "PDF Налаштування шаблону"
|
144 |
|
145 |
+
#: includes/class-wcpdf-settings.php:280
|
146 |
msgid "Choose a template"
|
147 |
msgstr "Виберіть шаблон"
|
148 |
|
149 |
+
#: includes/class-wcpdf-settings.php:288
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
153 |
+
"your (child) theme in <code>%s</code> to customize them"
|
154 |
msgstr ""
|
155 |
+
"Хочете використовувати свій шаблон? Скопіюйте всі файли з <code>%s</code> в "
|
156 |
+
"вашу (дочірню) тему <code>%s</code> і редагуйте їх там"
|
157 |
|
158 |
+
#: includes/class-wcpdf-settings.php:294
|
159 |
msgid "Paper size"
|
160 |
msgstr "Розмір паперу"
|
161 |
|
162 |
+
#: includes/class-wcpdf-settings.php:302
|
163 |
msgid "A4"
|
164 |
msgstr "А4"
|
165 |
|
166 |
+
#: includes/class-wcpdf-settings.php:303
|
167 |
msgid "Letter"
|
168 |
msgstr "Лист"
|
169 |
|
170 |
+
#: includes/class-wcpdf-settings.php:310
|
171 |
msgid "Shop header/logo"
|
172 |
+
msgstr "Логотип Магазину в шапці документів"
|
173 |
|
174 |
+
#: includes/class-wcpdf-settings.php:317
|
175 |
msgid "Select or upload your invoice header/logo"
|
176 |
+
msgstr ""
|
177 |
+
"Виберіть або завантажте ваш логотип для використання його в шапці документів"
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:318
|
180 |
msgid "Set image"
|
181 |
msgstr "Встановити зображення"
|
182 |
|
183 |
+
#: includes/class-wcpdf-settings.php:319
|
184 |
msgid "Remove image"
|
185 |
msgstr "Видалити зображення"
|
186 |
|
187 |
+
#: includes/class-wcpdf-settings.php:326
|
188 |
msgid "Shop Name"
|
189 |
+
msgstr "Назва Магазину"
|
190 |
|
191 |
+
#: includes/class-wcpdf-settings.php:339
|
192 |
msgid "Shop Address"
|
193 |
+
msgstr "Адреса Магазину"
|
194 |
|
195 |
+
#: includes/class-wcpdf-settings.php:371
|
196 |
msgid "Footer: terms & conditions, policies, etc."
|
197 |
+
msgstr "Підвал: умови, конфіденційність, політика відносин, і т.д."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
#: includes/class-wcpdf-settings.php:386
|
200 |
+
msgid "Display invoice date"
|
201 |
+
msgstr "Відображати дату накладної"
|
202 |
|
203 |
+
#: includes/class-wcpdf-settings.php:399
|
204 |
+
msgid "Display built-in sequential invoice number"
|
205 |
+
msgstr "Відображати вбудований послідовний номер накладної"
|
|
|
|
|
|
|
|
|
206 |
|
207 |
+
#: includes/class-wcpdf-settings.php:412
|
208 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
209 |
+
msgstr "Наступний номер накладної (без префікса/суфікса і т.д.)"
|
210 |
|
211 |
+
#: includes/class-wcpdf-settings.php:420
|
212 |
msgid ""
|
213 |
"This is the number that will be used on the next invoice that is created. By "
|
214 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
216 |
"you override this and set it lower than the highest (PDF) invoice number, "
|
217 |
"this could create double invoice numbers!"
|
218 |
msgstr ""
|
219 |
+
"Цей номер буде використаний у наступній створеній накладній. За "
|
220 |
+
"замовчуванням, нумерація починається з першого, створеного WooCommerce "
|
221 |
+
"Номеру Замовлення і підвищується з кожною наступною накладною. Зауважте що "
|
222 |
+
"якщо ви перезапишите його і встановите номер нижче попередніх (PDF) "
|
223 |
+
"накладних, це призведе до дублювання номера накладної!"
|
224 |
+
|
225 |
+
#: includes/class-wcpdf-settings.php:426
|
|
|
|
|
226 |
msgid "Invoice number format"
|
227 |
+
msgstr "Формат номера накладної"
|
228 |
|
229 |
+
#: includes/class-wcpdf-settings.php:435
|
230 |
msgid "Prefix"
|
231 |
+
msgstr "Префікс"
|
232 |
|
233 |
+
#: includes/class-wcpdf-settings.php:437
|
234 |
msgid ""
|
235 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
236 |
"respectively"
|
237 |
msgstr ""
|
238 |
+
"щоб використовувати рік та/або місяць замовлення, використовуйте "
|
239 |
+
"[order_year] або [order_month] у відповідності з назвою"
|
240 |
|
241 |
+
#: includes/class-wcpdf-settings.php:440
|
242 |
msgid "Suffix"
|
243 |
+
msgstr "Суфікс"
|
244 |
|
245 |
+
#: includes/class-wcpdf-settings.php:445
|
246 |
msgid "Padding"
|
247 |
+
msgstr "Наповнення"
|
248 |
|
249 |
+
#: includes/class-wcpdf-settings.php:447
|
250 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
251 |
+
msgstr "тут введіть кількість цифр - введіть \"6\" щоб показати 42 як 000042"
|
252 |
|
253 |
+
#: includes/class-wcpdf-settings.php:450
|
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 |
+
"фільтром, налаштування вгорі будуть проігноровані"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
|
261 |
#: includes/class-wcpdf-settings.php:457
|
262 |
msgid "Extra template fields"
|
263 |
+
msgstr "Екстра поля шаблону"
|
264 |
|
265 |
#: includes/class-wcpdf-settings.php:464
|
266 |
msgid "Extra field 1"
|
267 |
+
msgstr "Екстра поле 1"
|
268 |
|
269 |
#: includes/class-wcpdf-settings.php:473
|
270 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
271 |
+
msgstr "Це перша колонка підвалу для <i>Modern (Premium)</i> шаблонів"
|
272 |
|
273 |
#: includes/class-wcpdf-settings.php:479
|
274 |
msgid "Extra field 2"
|
275 |
+
msgstr "Екстра поле 2"
|
276 |
|
277 |
#: includes/class-wcpdf-settings.php:488
|
278 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
279 |
+
msgstr "Це друга колонка підвалу для <i>Modern (Premium)</i> шаблонів"
|
280 |
|
281 |
#: includes/class-wcpdf-settings.php:494
|
282 |
msgid "Extra field 3"
|
283 |
+
msgstr "Екстра поле 3"
|
284 |
|
285 |
#: includes/class-wcpdf-settings.php:503
|
286 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
287 |
+
msgstr "Це третя колонка підвалу для <i>Modern (Premium)</i> шаблонів"
|
288 |
|
289 |
+
#: includes/class-wcpdf-settings.php:761
|
290 |
msgid "Image resolution"
|
291 |
msgstr "Дозвіл зображення"
|
292 |
|
293 |
+
#: includes/class-wcpdf-settings.php:877
|
294 |
msgid ""
|
295 |
"These are used for the (optional) footer columns in the <em>Modern "
|
296 |
"(Premium)</em> template, but can also be used for other elements in your "
|
297 |
"custom template"
|
298 |
msgstr ""
|
299 |
+
"Ці поля (за бажанням) використовуються в підвалі <em>Modern (Premium)</em> "
|
300 |
+
"шаблонів, але також можуть бути використані у ваших власних шаблонах"
|
|
|
301 |
|
302 |
+
#: includes/class-wcpdf-writepanels.php:32
|
303 |
+
msgid "PDF Packing Slips"
|
304 |
+
msgstr "PDF Рахунок-Фактури"
|
305 |
+
|
306 |
+
#: includes/class-wcpdf-writepanels.php:123
|
307 |
msgid "Invoice Number"
|
308 |
+
msgstr "Номер Накладної"
|
309 |
|
310 |
+
#: includes/class-wcpdf-writepanels.php:160
|
311 |
msgid "Download invoice (PDF)"
|
312 |
msgstr "Завантажити накладну (PDF)"
|
313 |
|
314 |
+
#: includes/class-wcpdf-writepanels.php:171
|
315 |
msgid "Create PDF"
|
316 |
msgstr "Створити PDF"
|
317 |
|
318 |
+
#: includes/class-wcpdf-writepanels.php:184
|
319 |
+
msgid "PDF Invoice"
|
320 |
msgstr "PDF Накладна"
|
321 |
|
322 |
+
#: includes/class-wcpdf-writepanels.php:189
|
323 |
msgid "PDF Packing Slip"
|
324 |
msgstr "PDF Рахунок-Фактура"
|
325 |
|
326 |
+
#: includes/class-wcpdf-writepanels.php:232
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
msgid "PDF Invoice Number (unformatted!)"
|
328 |
+
msgstr "PDF Номер Накладної (неформатований!)"
|
329 |
|
330 |
+
#: includes/class-wcpdf-writepanels.php:235
|
331 |
+
#: templates/pdf/Simple/invoice.php:36
|
332 |
msgid "Invoice Date:"
|
333 |
+
msgstr "Дата Накладної:"
|
334 |
|
335 |
+
#: includes/class-wcpdf-writepanels.php:236
|
336 |
msgid "h"
|
337 |
+
msgstr "г"
|
338 |
|
339 |
+
#: includes/class-wcpdf-writepanels.php:236
|
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
|
351 |
msgid "Packing Slip"
|
352 |
msgstr "Рахунок-Фактура"
|
353 |
|
354 |
+
#: templates/pdf/Simple/invoice.php:32
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Invoice Number:"
|
356 |
+
msgstr "Номер Накладної:"
|
357 |
|
358 |
+
#: templates/pdf/Simple/invoice.php:39
|
359 |
+
#: templates/pdf/Simple/packing-slip.php:33
|
360 |
msgid "Order Number:"
|
361 |
+
msgstr "Номер Замовлення:"
|
362 |
|
363 |
+
#: templates/pdf/Simple/invoice.php:41
|
364 |
+
#: templates/pdf/Simple/packing-slip.php:31
|
365 |
+
msgid "Order Date:"
|
366 |
+
msgstr "Дата Замовлення:"
|
367 |
+
|
368 |
+
#: templates/pdf/Simple/invoice.php:43
|
369 |
msgid "Payment Method:"
|
370 |
+
msgstr "Метод Оплати:"
|
371 |
|
372 |
+
#: templates/pdf/Simple/invoice.php:58
|
373 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
374 |
msgid "Product"
|
375 |
msgstr "Товар"
|
376 |
|
377 |
+
#: templates/pdf/Simple/invoice.php:59
|
378 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
379 |
msgid "Quantity"
|
380 |
msgstr "Кількість"
|
381 |
|
382 |
+
#: templates/pdf/Simple/invoice.php:60
|
383 |
msgid "Price"
|
384 |
msgstr "Ціна"
|
385 |
|
386 |
+
#: templates/pdf/Simple/invoice.php:66
|
387 |
msgid "Description"
|
388 |
+
msgstr "Опис"
|
389 |
|
390 |
+
#: templates/pdf/Simple/invoice.php:69
|
|
|
391 |
msgid "SKU"
|
392 |
+
msgstr "SKU"
|
393 |
|
394 |
+
#: templates/pdf/Simple/invoice.php:70
|
395 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
396 |
msgid "SKU:"
|
397 |
+
msgstr "SKU:"
|
398 |
|
399 |
+
#: templates/pdf/Simple/invoice.php:71
|
400 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
401 |
msgid "Weight:"
|
402 |
msgstr "Вага:"
|
403 |
|
404 |
+
#: templates/pdf/Simple/invoice.php:105
|
405 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
406 |
msgid "Customer Notes"
|
407 |
+
msgstr "Нотатки Клієнта"
|
408 |
|
409 |
+
#: woocommerce-pdf-invoices-packingslips.php:98
|
410 |
#, php-format
|
411 |
msgid ""
|
412 |
"WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
|
413 |
"installed & activated!"
|
414 |
msgstr ""
|
415 |
+
"WooCommerce PDF Invoices & Packing Slips вимагає наявність встановленого та "
|
416 |
+
"активованого %sWooCommerce%s плагіна!"
|
417 |
|
418 |
+
#: woocommerce-pdf-invoices-packingslips.php:206
|
419 |
+
#: woocommerce-pdf-invoices-packingslips.php:269
|
420 |
msgid "N/A"
|
421 |
msgstr "N/A"
|
422 |
|
423 |
+
#: woocommerce-pdf-invoices-packingslips.php:358
|
|
|
424 |
msgid "Payment method"
|
425 |
+
msgstr "Метод оплати"
|
426 |
|
427 |
+
#: woocommerce-pdf-invoices-packingslips.php:369
|
|
|
428 |
msgid "Shipping method"
|
429 |
+
msgstr "Метод доставки"
|
430 |
|
431 |
+
#: woocommerce-pdf-invoices-packingslips.php:484
|
432 |
msgid "Subtotal"
|
433 |
msgstr "Проміжний підсумок"
|
434 |
|
435 |
+
#: woocommerce-pdf-invoices-packingslips.php:506
|
436 |
msgid "Shipping"
|
437 |
msgstr "Доставка"
|
438 |
|
439 |
+
#: woocommerce-pdf-invoices-packingslips.php:540
|
440 |
msgid "Discount"
|
441 |
msgstr "Знижка"
|
442 |
|
443 |
+
#: woocommerce-pdf-invoices-packingslips.php:579
|
444 |
msgid "VAT"
|
445 |
+
msgstr "ПДВ"
|
446 |
|
447 |
+
#: woocommerce-pdf-invoices-packingslips.php:616
|
448 |
msgid "Total ex. VAT"
|
449 |
+
msgstr "Разом без ПДВ"
|
450 |
|
451 |
+
#: woocommerce-pdf-invoices-packingslips.php:619
|
452 |
msgid "Total"
|
453 |
msgstr "Разом"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpo_wcpdf.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
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: en_US\n"
|
@@ -61,62 +61,43 @@ msgstr ""
|
|
61 |
msgid "Status"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/class-wcpdf-settings.php:
|
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:128
|
72 |
-
#, php-format
|
73 |
-
msgid ""
|
74 |
-
"Looking for more advanced templates? Check out the Premium PDF Invoice & "
|
75 |
-
"Packing Slips templates at %s."
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: includes/class-wcpdf-settings.php:129
|
79 |
-
#, php-format
|
80 |
-
msgid "For custom templates, contact us at %s."
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/class-wcpdf-settings.php:184
|
84 |
msgid "General settings"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/class-wcpdf-settings.php:
|
88 |
msgid "How do you want to view the PDF?"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/class-wcpdf-settings.php:
|
92 |
msgid "Download the PDF"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/class-wcpdf-settings.php:
|
96 |
msgid "Open the PDF in a new browser tab/window"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: includes/class-wcpdf-settings.php:
|
100 |
msgid "Attach invoice to:"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/class-wcpdf-settings.php:
|
104 |
msgid "Admin New Order email"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/class-wcpdf-settings.php:
|
108 |
msgid "Customer Processing Order email"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-wcpdf-settings.php:
|
112 |
msgid "Customer Completed Order email"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/class-wcpdf-settings.php:
|
116 |
msgid "Customer Invoice email"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/class-wcpdf-settings.php:
|
120 |
#, php-format
|
121 |
msgid ""
|
122 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
@@ -124,78 +105,78 @@ msgid ""
|
|
124 |
"plugin will not be able to email invoices."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-wcpdf-settings.php:
|
128 |
msgid "Enable invoice number column in the orders list"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-wcpdf-settings.php:
|
132 |
msgid "PDF Template settings"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-wcpdf-settings.php:
|
136 |
msgid "Choose a template"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-wcpdf-settings.php:
|
140 |
#, php-format
|
141 |
msgid ""
|
142 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
143 |
-
"<code>%s</code> to customize them"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/class-wcpdf-settings.php:
|
147 |
msgid "Paper size"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: includes/class-wcpdf-settings.php:
|
151 |
msgid "A4"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: includes/class-wcpdf-settings.php:
|
155 |
msgid "Letter"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: includes/class-wcpdf-settings.php:
|
159 |
msgid "Shop header/logo"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/class-wcpdf-settings.php:
|
163 |
msgid "Select or upload your invoice header/logo"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/class-wcpdf-settings.php:
|
167 |
msgid "Set image"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/class-wcpdf-settings.php:
|
171 |
msgid "Remove image"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/class-wcpdf-settings.php:
|
175 |
msgid "Shop Name"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/class-wcpdf-settings.php:
|
179 |
msgid "Shop Address"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/class-wcpdf-settings.php:
|
183 |
msgid "Footer: terms & conditions, policies, etc."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/class-wcpdf-settings.php:
|
187 |
msgid "Display invoice date"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/class-wcpdf-settings.php:
|
191 |
msgid "Display built-in sequential invoice number"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/class-wcpdf-settings.php:
|
195 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/class-wcpdf-settings.php:
|
199 |
msgid ""
|
200 |
"This is the number that will be used on the next invoice that is created. By "
|
201 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
@@ -204,71 +185,71 @@ msgid ""
|
|
204 |
"this could create double invoice numbers!"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/class-wcpdf-settings.php:
|
208 |
msgid "Invoice number format"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/class-wcpdf-settings.php:
|
212 |
msgid "Prefix"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/class-wcpdf-settings.php:
|
216 |
msgid ""
|
217 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
218 |
"respectively"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/class-wcpdf-settings.php:
|
222 |
msgid "Suffix"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/class-wcpdf-settings.php:
|
226 |
msgid "Padding"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/class-wcpdf-settings.php:
|
230 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/class-wcpdf-settings.php:
|
234 |
msgid ""
|
235 |
"note: if you have already created a custom invoice number format with a "
|
236 |
"filter, the above settings will be ignored"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/class-wcpdf-settings.php:
|
240 |
msgid "Extra template fields"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/class-wcpdf-settings.php:
|
244 |
msgid "Extra field 1"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/class-wcpdf-settings.php:
|
248 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/class-wcpdf-settings.php:
|
252 |
msgid "Extra field 2"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-wcpdf-settings.php:
|
256 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-wcpdf-settings.php:
|
260 |
msgid "Extra field 3"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-wcpdf-settings.php:
|
264 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-wcpdf-settings.php:
|
268 |
msgid "Image resolution"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/class-wcpdf-settings.php:
|
272 |
msgid ""
|
273 |
"These are used for the (optional) footer columns in the <em>Modern "
|
274 |
"(Premium)</em> template, but can also be used for other elements in your "
|
@@ -279,6 +260,16 @@ msgstr ""
|
|
279 |
msgid "PDF Packing Slips"
|
280 |
msgstr ""
|
281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
#: includes/class-wcpdf-writepanels.php:123
|
283 |
msgid "Invoice Number"
|
284 |
msgstr ""
|
@@ -291,14 +282,6 @@ msgstr ""
|
|
291 |
msgid "Create PDF"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-wcpdf-writepanels.php:184
|
295 |
-
msgid "PDF Invoice"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: includes/class-wcpdf-writepanels.php:189
|
299 |
-
msgid "PDF Packing Slip"
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
#: includes/class-wcpdf-writepanels.php:232
|
303 |
msgid "PDF Invoice Number (unformatted!)"
|
304 |
msgstr ""
|
@@ -316,6 +299,93 @@ msgstr ""
|
|
316 |
msgid "m"
|
317 |
msgstr ""
|
318 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
320 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
321 |
msgid "Invoice"
|
@@ -345,40 +415,40 @@ msgstr ""
|
|
345 |
msgid "Payment Method:"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: templates/pdf/Simple/invoice.php:
|
349 |
-
#: templates/pdf/Simple/packing-slip.php:
|
350 |
msgid "Product"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: templates/pdf/Simple/invoice.php:
|
354 |
-
#: templates/pdf/Simple/packing-slip.php:
|
355 |
msgid "Quantity"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: templates/pdf/Simple/invoice.php:
|
359 |
msgid "Price"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: templates/pdf/Simple/invoice.php:
|
363 |
msgid "Description"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: templates/pdf/Simple/invoice.php:
|
367 |
msgid "SKU"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: templates/pdf/Simple/invoice.php:
|
371 |
-
#: templates/pdf/Simple/packing-slip.php:
|
372 |
msgid "SKU:"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: templates/pdf/Simple/invoice.php:
|
376 |
-
#: templates/pdf/Simple/packing-slip.php:
|
377 |
msgid "Weight:"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: templates/pdf/Simple/invoice.php:
|
381 |
-
#: templates/pdf/Simple/packing-slip.php:
|
382 |
msgid "Customer Notes"
|
383 |
msgstr ""
|
384 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
|
4 |
+
"POT-Creation-Date: 2014-11-06 14:51+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-11-06 14:53+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WP Overnight <support@wpovernight.com>\n"
|
8 |
"Language: en_US\n"
|
61 |
msgid "Status"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/class-wcpdf-settings.php:167
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "General settings"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/class-wcpdf-settings.php:174
|
69 |
msgid "How do you want to view the PDF?"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/class-wcpdf-settings.php:182
|
73 |
msgid "Download the PDF"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/class-wcpdf-settings.php:183
|
77 |
msgid "Open the PDF in a new browser tab/window"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/class-wcpdf-settings.php:193
|
81 |
msgid "Attach invoice to:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/class-wcpdf-settings.php:201
|
85 |
msgid "Admin New Order email"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: includes/class-wcpdf-settings.php:202
|
89 |
msgid "Customer Processing Order email"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/class-wcpdf-settings.php:203
|
93 |
msgid "Customer Completed Order email"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/class-wcpdf-settings.php:204
|
97 |
msgid "Customer Invoice email"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: includes/class-wcpdf-settings.php:206
|
101 |
#, php-format
|
102 |
msgid ""
|
103 |
"It looks like the temp folder (<code>%s</code>) is not writable, check the "
|
105 |
"plugin will not be able to email invoices."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: includes/class-wcpdf-settings.php:212
|
109 |
msgid "Enable invoice number column in the orders list"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/class-wcpdf-settings.php:251
|
113 |
msgid "PDF Template settings"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/class-wcpdf-settings.php:263
|
117 |
msgid "Choose a template"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/class-wcpdf-settings.php:271
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"Want to use your own template? Copy all the files from <code>%s</code> to "
|
124 |
+
"your (child) theme in <code>%s</code> to customize them"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/class-wcpdf-settings.php:277
|
128 |
msgid "Paper size"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/class-wcpdf-settings.php:285
|
132 |
msgid "A4"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/class-wcpdf-settings.php:286
|
136 |
msgid "Letter"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/class-wcpdf-settings.php:293
|
140 |
msgid "Shop header/logo"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/class-wcpdf-settings.php:300
|
144 |
msgid "Select or upload your invoice header/logo"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-wcpdf-settings.php:301
|
148 |
msgid "Set image"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-wcpdf-settings.php:302
|
152 |
msgid "Remove image"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/class-wcpdf-settings.php:309
|
156 |
msgid "Shop Name"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: includes/class-wcpdf-settings.php:322
|
160 |
msgid "Shop Address"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-wcpdf-settings.php:354
|
164 |
msgid "Footer: terms & conditions, policies, etc."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/class-wcpdf-settings.php:369
|
168 |
msgid "Display invoice date"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-wcpdf-settings.php:382
|
172 |
msgid "Display built-in sequential invoice number"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-wcpdf-settings.php:395
|
176 |
msgid "Next invoice number (without prefix/suffix etc.)"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-wcpdf-settings.php:403
|
180 |
msgid ""
|
181 |
"This is the number that will be used on the next invoice that is created. By "
|
182 |
"default, numbering starts from the WooCommerce Order Number of the first "
|
185 |
"this could create double invoice numbers!"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/class-wcpdf-settings.php:409
|
189 |
msgid "Invoice number format"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: includes/class-wcpdf-settings.php:418
|
193 |
msgid "Prefix"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/class-wcpdf-settings.php:420
|
197 |
msgid ""
|
198 |
"to use the order year and/or month, use [order_year] or [order_month] "
|
199 |
"respectively"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/class-wcpdf-settings.php:423
|
203 |
msgid "Suffix"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-wcpdf-settings.php:428
|
207 |
msgid "Padding"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-wcpdf-settings.php:430
|
211 |
msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/class-wcpdf-settings.php:433
|
215 |
msgid ""
|
216 |
"note: if you have already created a custom invoice number format with a "
|
217 |
"filter, the above settings will be ignored"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/class-wcpdf-settings.php:440
|
221 |
msgid "Extra template fields"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/class-wcpdf-settings.php:447
|
225 |
msgid "Extra field 1"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/class-wcpdf-settings.php:456
|
229 |
msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-wcpdf-settings.php:462
|
233 |
msgid "Extra field 2"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/class-wcpdf-settings.php:471
|
237 |
msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-wcpdf-settings.php:477
|
241 |
msgid "Extra field 3"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-wcpdf-settings.php:486
|
245 |
msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-wcpdf-settings.php:744
|
249 |
msgid "Image resolution"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-wcpdf-settings.php:860
|
253 |
msgid ""
|
254 |
"These are used for the (optional) footer columns in the <em>Modern "
|
255 |
"(Premium)</em> template, but can also be used for other elements in your "
|
260 |
msgid "PDF Packing Slips"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/class-wcpdf-writepanels.php:91
|
264 |
+
#: includes/class-wcpdf-writepanels.php:184
|
265 |
+
msgid "PDF Invoice"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/class-wcpdf-writepanels.php:96
|
269 |
+
#: includes/class-wcpdf-writepanels.php:189
|
270 |
+
msgid "PDF Packing Slip"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
#: includes/class-wcpdf-writepanels.php:123
|
274 |
msgid "Invoice Number"
|
275 |
msgstr ""
|
282 |
msgid "Create PDF"
|
283 |
msgstr ""
|
284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
#: includes/class-wcpdf-writepanels.php:232
|
286 |
msgid "PDF Invoice Number (unformatted!)"
|
287 |
msgstr ""
|
299 |
msgid "m"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/wcpdf-extensions.php:15
|
303 |
+
msgid "Check out these premium extensions!"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/wcpdf-extensions.php:16
|
307 |
+
msgid "click items to read more"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/wcpdf-extensions.php:23
|
311 |
+
msgid "Go Pro: Proforma invoices, credit notes & more!"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/wcpdf-extensions.php:25
|
315 |
+
msgid ""
|
316 |
+
"Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
|
317 |
+
"features:"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/wcpdf-extensions.php:27
|
321 |
+
msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: includes/wcpdf-extensions.php:28
|
325 |
+
msgid ""
|
326 |
+
"Attach a <b>static file</b> (for example a terms & conditions document) to "
|
327 |
+
"the WooCommerce emails of your choice."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/wcpdf-extensions.php:29
|
331 |
+
msgid ""
|
332 |
+
"Use <b>separate numbering systems</b> and/or format for proforma invoices "
|
333 |
+
"and credit notes or utilize the main invoice numbering system"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: includes/wcpdf-extensions.php:30
|
337 |
+
msgid ""
|
338 |
+
"<b>Customize</b> the <b>shipping & billing address</b> format to include "
|
339 |
+
"additional custom fields, font sizes etc. without the need to create a "
|
340 |
+
"custom template."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: includes/wcpdf-extensions.php:31
|
344 |
+
msgid "Use the plugin in multilingual <b>WPML</b> setups"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: includes/wcpdf-extensions.php:33
|
348 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: includes/wcpdf-extensions.php:41
|
352 |
+
msgid "Upload all invoices automatically to your dropbox"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: includes/wcpdf-extensions.php:47
|
356 |
+
msgid ""
|
357 |
+
"This extension conveniently uploads all the invoices (and other pdf "
|
358 |
+
"documents from the professional extension) that are emailed to your "
|
359 |
+
"customers to Dropbox. The best way to keep your invoice administration up to "
|
360 |
+
"date!"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: includes/wcpdf-extensions.php:48
|
364 |
+
msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: includes/wcpdf-extensions.php:62
|
368 |
+
msgid "More advanced templates"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: includes/wcpdf-extensions.php:65
|
372 |
+
msgid "Stylish modern invoices & packing slips with product thumbnails!"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: includes/wcpdf-extensions.php:66
|
376 |
+
msgid "More tax details on the invoices!"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: includes/wcpdf-extensions.php:67
|
380 |
+
#, php-format
|
381 |
+
msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/wcpdf-extensions.php:68
|
385 |
+
#, php-format
|
386 |
+
msgid "For custom templates, contact us at %s."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
#: templates/pdf/Simple/html-document-wrapper.php:6
|
390 |
#: templates/pdf/Simple/invoice.php:9 templates/pdf/Simple/invoice.php:21
|
391 |
msgid "Invoice"
|
415 |
msgid "Payment Method:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: templates/pdf/Simple/invoice.php:58
|
419 |
+
#: templates/pdf/Simple/packing-slip.php:48
|
420 |
msgid "Product"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: templates/pdf/Simple/invoice.php:59
|
424 |
+
#: templates/pdf/Simple/packing-slip.php:49
|
425 |
msgid "Quantity"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: templates/pdf/Simple/invoice.php:60
|
429 |
msgid "Price"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: templates/pdf/Simple/invoice.php:66
|
433 |
msgid "Description"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: templates/pdf/Simple/invoice.php:69
|
437 |
msgid "SKU"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: templates/pdf/Simple/invoice.php:70
|
441 |
+
#: templates/pdf/Simple/packing-slip.php:57
|
442 |
msgid "SKU:"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: templates/pdf/Simple/invoice.php:71
|
446 |
+
#: templates/pdf/Simple/packing-slip.php:58
|
447 |
msgid "Weight:"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: templates/pdf/Simple/invoice.php:105
|
451 |
+
#: templates/pdf/Simple/packing-slip.php:73
|
452 |
msgid "Customer Notes"
|
453 |
msgstr ""
|
454 |
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: pomegranate
|
3 |
-
Tags: woocommerce,
|
4 |
-
Requires at least: 3.5
|
5 |
-
Tested up to: 4.0
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -14,15 +14,19 @@ Create, print & automatically email PDF invoices & packing slips for WooCommerce
|
|
14 |
This WooCommerce extension automatically adds a PDF invoice to the order confirmation emails sent out to your customers. Includes a basic template (additional templates are available from [WP Overnight](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/)) as well as the possibility to modify/create your own templates. In addition, you can choose to download or print invoices and packing slips from the WooCommerce order admin.
|
15 |
|
16 |
= Main features =
|
17 |
-
* Automatically attach invoice PDF to
|
18 |
* Download the PDF invoice / packing slip from the order admin page
|
19 |
-
* Generate
|
20 |
* **Fully customizable** HTML/CSS invoice templates
|
21 |
-
*
|
22 |
* Sequential invoice numbers - with custom formatting
|
23 |
-
* **Available in: Czech, Dutch, English, French, German, Hungarian, Italian, Norwegian, Polish, Romanian, Russian, Slovak, Spanish, Swedish & Ukrainian**
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
|
27 |
= Fully customizable =
|
28 |
In addition to a number of default settings (including a custom header/logo) and several layout fields that you can use out of the box, the plugin contains HTML/CSS based templates that allow for customization & full control over the PDF output. Copy the templates to your theme folder and you don't have to worry that your customizations will be overwritten when you update the plugin.
|
@@ -34,6 +38,11 @@ In addition to a number of default settings (including a custom header/logo) and
|
|
34 |
|
35 |
== Installation ==
|
36 |
|
|
|
|
|
|
|
|
|
|
|
37 |
= Automatic installation =
|
38 |
Automatic installation is the easiest option as WordPress handles the file transfers itself and you don't even need to leave your web browser. To do an automatic install of WooCommerce PDF Invoices & Packing Slips, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.
|
39 |
|
@@ -55,12 +64,15 @@ In the search field type "WooCommerce PDF Invoices & Packing Slips" and click Se
|
|
55 |
|
56 |
= How do I create my own custom template? =
|
57 |
|
58 |
-
Copy the files from `wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/` to `wp-content/themes/yourtheme/woocommerce/pdf/yourtemplate` and customize them there. The new template will show up as 'yourtemplate' (the folder name) in the settings panel.
|
59 |
|
60 |
= Where can I find more templates? =
|
61 |
|
62 |
Go to [wpovernight.com](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/) to checkout more templates! These include templates with more tax details and product thumbnails. Need a custom templates? Contact us at support@wpovernight.com for more information.
|
63 |
|
|
|
|
|
|
|
64 |
= Can I contribute to the code? =
|
65 |
You're more than welcome! This plugin is hosted on github, where you can post issues or make pull requests.
|
66 |
https://github.com/wpovernight/woocommerce-pdf-invoices-packing-slips
|
@@ -123,7 +135,7 @@ function wpo_wcpdf_custom_filename( $filename, $template_type, $order_ids, $cont
|
|
123 |
// prepend your shopname to the file
|
124 |
$new_filename = 'myshopname_' . $filename;
|
125 |
|
126 |
-
return $
|
127 |
}
|
128 |
`
|
129 |
You can also use the $template_type ('invoice' or 'packing-slip'), $order_ids (single array) or $context ('download' or 'attachment') variables to make more complex rules for the filename.
|
@@ -176,6 +188,12 @@ This usually only happens on batch actions. PDF creation is a memory intensive j
|
|
176 |
|
177 |
== Changelog ==
|
178 |
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
= 1.4.9 =
|
180 |
* Feature: Order number and date are now displayed by default in the Simple template (invoice number and date still optional)
|
181 |
* Feature: Display Customer/Order notes with a simple shorthand (see FAQ)
|
1 |
=== Plugin Name ===
|
2 |
Contributors: pomegranate
|
3 |
+
Tags: woocommerce, pdf, invoices, packing slips, print, delivery notes, invoice, packing slip, export, email, bulk, automatic
|
4 |
+
Requires at least: 3.5
|
5 |
+
Tested up to: 4.0
|
6 |
+
Stable tag: 1.4.10
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
14 |
This WooCommerce extension automatically adds a PDF invoice to the order confirmation emails sent out to your customers. Includes a basic template (additional templates are available from [WP Overnight](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/)) as well as the possibility to modify/create your own templates. In addition, you can choose to download or print invoices and packing slips from the WooCommerce order admin.
|
15 |
|
16 |
= Main features =
|
17 |
+
* Automatically attach invoice PDF to WooCommerce emails of your choice
|
18 |
* Download the PDF invoice / packing slip from the order admin page
|
19 |
+
* Generate PDF invoices / packings slips in bulk
|
20 |
* **Fully customizable** HTML/CSS invoice templates
|
21 |
+
* Download invoices from the My Account page
|
22 |
* Sequential invoice numbers - with custom formatting
|
23 |
+
* **Available in: Czech, Dutch, English, Finnish, French, German, Hungarian, Italian, Norwegian, Polish, Romanian, Russian, Slovak, Spanish, Swedish & Ukrainian**
|
24 |
|
25 |
+
In addition to this, we offer several premium extensions:
|
26 |
+
|
27 |
+
* Create/email PDF Proforma Invoices, Credit Notes, email Packing Slips & more with [WooCommerce PDF Invoices & Packing Slips Professional](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-professional/)
|
28 |
+
* Upload all invoices automatically to Dropbox with [WooCommerce PDF Invoices & Packing Slips to Dropbox](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-dropbox/)
|
29 |
+
* More advanced & stylish templates with [WooCommerce PDF Invoices & Packing Slips Premium Templates](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/)
|
30 |
|
31 |
= Fully customizable =
|
32 |
In addition to a number of default settings (including a custom header/logo) and several layout fields that you can use out of the box, the plugin contains HTML/CSS based templates that allow for customization & full control over the PDF output. Copy the templates to your theme folder and you don't have to worry that your customizations will be overwritten when you update the plugin.
|
38 |
|
39 |
== Installation ==
|
40 |
|
41 |
+
= Minimum Requirements =
|
42 |
+
|
43 |
+
* WooCommerce 2.0 or later
|
44 |
+
* WordPress 3.5 or later
|
45 |
+
|
46 |
= Automatic installation =
|
47 |
Automatic installation is the easiest option as WordPress handles the file transfers itself and you don't even need to leave your web browser. To do an automatic install of WooCommerce PDF Invoices & Packing Slips, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.
|
48 |
|
64 |
|
65 |
= How do I create my own custom template? =
|
66 |
|
67 |
+
Copy the files from `wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/pdf/Simple/` to your (child) theme in `wp-content/themes/yourtheme/woocommerce/pdf/yourtemplate` and customize them there. The new template will show up as 'yourtemplate' (the folder name) in the settings panel.
|
68 |
|
69 |
= Where can I find more templates? =
|
70 |
|
71 |
Go to [wpovernight.com](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-premium-templates/) to checkout more templates! These include templates with more tax details and product thumbnails. Need a custom templates? Contact us at support@wpovernight.com for more information.
|
72 |
|
73 |
+
= Can I create/send a proforma invoice or a credit note? =
|
74 |
+
This is a feature of our Professional extension, which can be found at [wpovernight.com](https://wpovernight.com/downloads/woocommerce-pdf-invoices-packing-slips-professional/)
|
75 |
+
|
76 |
= Can I contribute to the code? =
|
77 |
You're more than welcome! This plugin is hosted on github, where you can post issues or make pull requests.
|
78 |
https://github.com/wpovernight/woocommerce-pdf-invoices-packing-slips
|
135 |
// prepend your shopname to the file
|
136 |
$new_filename = 'myshopname_' . $filename;
|
137 |
|
138 |
+
return $new_filename;
|
139 |
}
|
140 |
`
|
141 |
You can also use the $template_type ('invoice' or 'packing-slip'), $order_ids (single array) or $context ('download' or 'attachment') variables to make more complex rules for the filename.
|
188 |
|
189 |
== Changelog ==
|
190 |
|
191 |
+
= 1.4.10 =
|
192 |
+
* Fix: Invoice not attaching
|
193 |
+
* Translations: Updated POT file
|
194 |
+
* Translations: Updated Dutch, Norwegian, Polish, Brazilian Portugese, Romanian, Russian, Slovak, Spanish & Ukrainian (Many thanks to all the translators!)
|
195 |
+
* Templates: added action hooks for easier customizations (`wpo_wcpdf_before_order_details`, `wpo_wcpdf_after_order_details`, `wpo_wcpdf_invoice_title` & `wpo_wcpdf_packing_slip_title`)
|
196 |
+
|
197 |
= 1.4.9 =
|
198 |
* Feature: Order number and date are now displayed by default in the Simple template (invoice number and date still optional)
|
199 |
* Feature: Display Customer/Order notes with a simple shorthand (see FAQ)
|
templates/pdf/Simple/invoice.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
if( $wpo_wcpdf->get_header_logo_id() ) {
|
7 |
$wpo_wcpdf->header_logo();
|
8 |
} else {
|
9 |
-
|
10 |
}
|
11 |
?>
|
12 |
</td>
|
@@ -18,7 +18,7 @@
|
|
18 |
<tr>
|
19 |
<td>
|
20 |
<h3 class="document-type-label">
|
21 |
-
<?php if( $wpo_wcpdf->get_header_logo_id() )
|
22 |
</h3>
|
23 |
<?php do_action( 'wpo_wcpdf_after_document_label', 'invoice' ); ?>
|
24 |
</td>
|
@@ -50,6 +50,8 @@
|
|
50 |
</tr>
|
51 |
</table><!-- head container -->
|
52 |
|
|
|
|
|
53 |
<table class="order-details">
|
54 |
<thead>
|
55 |
<tr>
|
@@ -93,6 +95,8 @@
|
|
93 |
</tfoot>
|
94 |
</table><!-- order-details -->
|
95 |
|
|
|
|
|
96 |
<table class="notes container">
|
97 |
<tr>
|
98 |
<td colspan="3">
|
6 |
if( $wpo_wcpdf->get_header_logo_id() ) {
|
7 |
$wpo_wcpdf->header_logo();
|
8 |
} else {
|
9 |
+
echo apply_filters( 'wpo_wcpdf_invoice_title', __( 'Invoice', 'wpo_wcpdf' ) );
|
10 |
}
|
11 |
?>
|
12 |
</td>
|
18 |
<tr>
|
19 |
<td>
|
20 |
<h3 class="document-type-label">
|
21 |
+
<?php if( $wpo_wcpdf->get_header_logo_id() ) echo apply_filters( 'wpo_wcpdf_invoice_title', __( 'Invoice', 'wpo_wcpdf' ) ); ?>
|
22 |
</h3>
|
23 |
<?php do_action( 'wpo_wcpdf_after_document_label', 'invoice' ); ?>
|
24 |
</td>
|
50 |
</tr>
|
51 |
</table><!-- head container -->
|
52 |
|
53 |
+
<?php do_action( 'wpo_wcpdf_before_order_details', 'invoice' ); ?>
|
54 |
+
|
55 |
<table class="order-details">
|
56 |
<thead>
|
57 |
<tr>
|
95 |
</tfoot>
|
96 |
</table><!-- order-details -->
|
97 |
|
98 |
+
<?php do_action( 'wpo_wcpdf_after_order_details', 'invoice' ); ?>
|
99 |
+
|
100 |
<table class="notes container">
|
101 |
<tr>
|
102 |
<td colspan="3">
|
templates/pdf/Simple/packing-slip.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
if( $wpo_wcpdf->get_header_logo_id() ) {
|
7 |
$wpo_wcpdf->header_logo();
|
8 |
} else {
|
9 |
-
|
10 |
}
|
11 |
?>
|
12 |
</td>
|
@@ -18,7 +18,7 @@
|
|
18 |
<tr>
|
19 |
<td>
|
20 |
<h3 class="document-type-label">
|
21 |
-
<?php if( $wpo_wcpdf->get_header_logo_id() )
|
22 |
</h3>
|
23 |
<?php do_action( 'wpo_wcpdf_after_document_label', 'packing-slip' ); ?>
|
24 |
</td>
|
@@ -40,6 +40,8 @@
|
|
40 |
</tr>
|
41 |
</table><!-- head container -->
|
42 |
|
|
|
|
|
43 |
<table class="order-details">
|
44 |
<thead>
|
45 |
<tr>
|
@@ -61,6 +63,7 @@
|
|
61 |
</tbody>
|
62 |
</table><!-- order-details -->
|
63 |
|
|
|
64 |
|
65 |
<table class="notes container">
|
66 |
<tr>
|
6 |
if( $wpo_wcpdf->get_header_logo_id() ) {
|
7 |
$wpo_wcpdf->header_logo();
|
8 |
} else {
|
9 |
+
echo apply_filters( 'wpo_wcpdf_packing_slip_title', __( 'Packing Slip', 'wpo_wcpdf' ) );
|
10 |
}
|
11 |
?>
|
12 |
</td>
|
18 |
<tr>
|
19 |
<td>
|
20 |
<h3 class="document-type-label">
|
21 |
+
<?php if( $wpo_wcpdf->get_header_logo_id() ) echo apply_filters( 'wpo_wcpdf_packing_slip_title', __( 'Packing Slip', 'wpo_wcpdf' ) ); ?>
|
22 |
</h3>
|
23 |
<?php do_action( 'wpo_wcpdf_after_document_label', 'packing-slip' ); ?>
|
24 |
</td>
|
40 |
</tr>
|
41 |
</table><!-- head container -->
|
42 |
|
43 |
+
<?php do_action( 'wpo_wcpdf_before_order_details', 'packing-slip' ); ?>
|
44 |
+
|
45 |
<table class="order-details">
|
46 |
<thead>
|
47 |
<tr>
|
63 |
</tbody>
|
64 |
</table><!-- order-details -->
|
65 |
|
66 |
+
<?php do_action( 'wpo_wcpdf_after_order_details', 'packing-slip' ); ?>
|
67 |
|
68 |
<table class="notes container">
|
69 |
<tr>
|
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
|
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.10
|
7 |
* Author: Ewout Fernhout
|
8 |
* Author URI: http://www.wpovernight.com
|
9 |
* License: GPLv2 or later
|