Version Description
January 15, 2016 =
Added: Purchase Order Number from WooCommerce Purchase Order Gateway
Added: VAT Number from WooCommerce EU VAT Number
Added: Russian language files
Added: Option to enable mPDF debugging
Improved: Dutch language files
Improved: Romain language files
Fixed: Company logo image only showing red placeholder - Increased performance by using relative path to image
Fixed: Color picker CSS conflict
Download this release
Release Info
Developer | baaaaas |
Plugin | WooCommerce PDF Invoices |
Version | 2.4.0 |
Comparing to | |
See all releases |
Code changes from version 2.3.20 to 2.4.0
- assets/css/admin.css +0 -3
- bootstrap.php +2 -2
- includes/abstracts/abstract-bewpi-document.php +13 -11
- includes/abstracts/abstract-bewpi-invoice.php +27 -3
- includes/admin/settings/class-bewpi-admin-settings-general.php +21 -1
- includes/templates/invoices/simple/micro/body.php +6 -5
- includes/templates/invoices/simple/micro/style.css +3 -0
- lang/woocommerce-pdf-invoices-es_ES.po +43 -21
- lang/woocommerce-pdf-invoices-fr_FR.po +43 -21
- lang/woocommerce-pdf-invoices-nb_NO.po +43 -21
- lang/woocommerce-pdf-invoices-nl_NL.mo +0 -0
- lang/woocommerce-pdf-invoices-nl_NL.po +114 -56
- lang/woocommerce-pdf-invoices-ro_RO.mo +0 -0
- lang/woocommerce-pdf-invoices-ro_RO.po +62 -42
- lang/woocommerce-pdf-invoices-ru_RU.mo +0 -0
- lang/woocommerce-pdf-invoices-ru_RU.po +711 -0
- lang/woocommerce-pdf-invoices-sk_SK.po +1 -1
- lang/woocommerce-pdf-invoices-sl_SI.po +43 -21
- lang/woocommerce-pdf-invoices-sv_SE.po +43 -21
- lang/woocommerce-pdf-invoices.pot +42 -20
- readme.txt +24 -1
assets/css/admin.css
CHANGED
@@ -84,9 +84,6 @@ form.be_woocommerce_pdf_invoices_settings_form {
|
|
84 |
.block {
|
85 |
display: block;
|
86 |
}
|
87 |
-
#color-picker {
|
88 |
-
height: 28px;
|
89 |
-
}
|
90 |
.foot {
|
91 |
font-size: 12px;
|
92 |
}
|
84 |
.block {
|
85 |
display: block;
|
86 |
}
|
|
|
|
|
|
|
87 |
.foot {
|
88 |
font-size: 12px;
|
89 |
}
|
bootstrap.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce PDF Invoices
|
4 |
* Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
|
5 |
* Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
|
6 |
-
* Version: 2.
|
7 |
* Author: Bas Elbers
|
8 |
* Author URI: http://wcpdfinvoices.com
|
9 |
* License: GPL-2.0+
|
@@ -19,7 +19,7 @@ function bewpi_plugins_loaded() {
|
|
19 |
|
20 |
$wp_upload_dir = wp_upload_dir();
|
21 |
|
22 |
-
define( 'BEWPI_VERSION', '2.
|
23 |
define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
|
24 |
define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
|
25 |
define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . 'includes/templates/' );
|
3 |
* Plugin Name: WooCommerce PDF Invoices
|
4 |
* Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
|
5 |
* Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
|
6 |
+
* Version: 2.4.0
|
7 |
* Author: Bas Elbers
|
8 |
* Author URI: http://wcpdfinvoices.com
|
9 |
* License: GPL-2.0+
|
19 |
|
20 |
$wp_upload_dir = wp_upload_dir();
|
21 |
|
22 |
+
define( 'BEWPI_VERSION', '2.4.0' );
|
23 |
define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
|
24 |
define( 'BEWPI_DIR', plugin_dir_path( __FILE__ ) . '/' );
|
25 |
define( 'BEWPI_TEMPLATES_DIR', plugin_dir_path( __FILE__ ) . 'includes/templates/' );
|
includes/abstracts/abstract-bewpi-document.php
CHANGED
@@ -42,8 +42,8 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
|
|
42 |
*/
|
43 |
protected function generate( $html_sections, $dest, $paid ) {
|
44 |
set_time_limit(0);
|
45 |
-
|
46 |
-
|
47 |
$mpdf_options = $this->get_mpdf_options();
|
48 |
$mpdf = new mPDF(
|
49 |
$mpdf_options['mode'], // mode
|
@@ -58,22 +58,26 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
|
|
58 |
$mpdf_options['margin_footer'], // margin_footer
|
59 |
$mpdf_options['orientation'] // orientation
|
60 |
);
|
61 |
-
$mpdf->useOnlyCoreFonts = false; // false is default
|
62 |
|
|
|
63 |
if ( (bool)$this->template_options[ 'bewpi_show_payment_status' ] && $paid ) {
|
64 |
$mpdf->SetWatermarkText( __( 'Paid', 'woocommerce-pdf-invoices' ) );
|
65 |
$mpdf->showWatermarkText = true;
|
66 |
}
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
$mpdf->SetDisplayMode( 'fullpage' );
|
69 |
-
//$mpdf->useSubstitutions = true;
|
70 |
$mpdf->autoScriptToLang = true;
|
71 |
$mpdf->autoLangToFont = true;
|
72 |
$mpdf->setAutoTopMargin = 'stretch';
|
73 |
$mpdf->setAutoBottomMargin = 'stretch';
|
74 |
$mpdf->autoMarginPadding = 10;
|
75 |
-
|
76 |
-
//$mpdf->showImageErrors = true;
|
77 |
|
78 |
if ( ! empty ( $html_sections['header'] ) )
|
79 |
$mpdf->SetHTMLHeader( $html_sections['header'] );
|
@@ -83,12 +87,10 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
|
|
83 |
|
84 |
$mpdf->WriteHTML( $html_sections['style'] . $html_sections['body'] );
|
85 |
|
86 |
-
$mpdf
|
|
|
87 |
|
88 |
-
$mpdf->Output(
|
89 |
-
( $dest === 'F' ) ? $this->full_path : $this->filename,
|
90 |
-
$dest
|
91 |
-
);
|
92 |
}
|
93 |
|
94 |
/**
|
42 |
*/
|
43 |
protected function generate( $html_sections, $dest, $paid ) {
|
44 |
set_time_limit(0);
|
45 |
+
include BEWPI_LIB_DIR . 'mpdf/mpdf.php';
|
46 |
+
|
47 |
$mpdf_options = $this->get_mpdf_options();
|
48 |
$mpdf = new mPDF(
|
49 |
$mpdf_options['mode'], // mode
|
58 |
$mpdf_options['margin_footer'], // margin_footer
|
59 |
$mpdf_options['orientation'] // orientation
|
60 |
);
|
|
|
61 |
|
62 |
+
// show paid watermark
|
63 |
if ( (bool)$this->template_options[ 'bewpi_show_payment_status' ] && $paid ) {
|
64 |
$mpdf->SetWatermarkText( __( 'Paid', 'woocommerce-pdf-invoices' ) );
|
65 |
$mpdf->showWatermarkText = true;
|
66 |
}
|
67 |
|
68 |
+
// debugging
|
69 |
+
if ( (bool) $this->general_options[ 'bewpi_mpdf_debug' ] ) {
|
70 |
+
$mpdf->debug = true;
|
71 |
+
$mpdf->showImageErrors = true;
|
72 |
+
}
|
73 |
+
|
74 |
$mpdf->SetDisplayMode( 'fullpage' );
|
|
|
75 |
$mpdf->autoScriptToLang = true;
|
76 |
$mpdf->autoLangToFont = true;
|
77 |
$mpdf->setAutoTopMargin = 'stretch';
|
78 |
$mpdf->setAutoBottomMargin = 'stretch';
|
79 |
$mpdf->autoMarginPadding = 10;
|
80 |
+
$mpdf->useOnlyCoreFonts = false;
|
|
|
81 |
|
82 |
if ( ! empty ( $html_sections['header'] ) )
|
83 |
$mpdf->SetHTMLHeader( $html_sections['header'] );
|
87 |
|
88 |
$mpdf->WriteHTML( $html_sections['style'] . $html_sections['body'] );
|
89 |
|
90 |
+
$mpdf = apply_filters( 'bewpi_mpdf', $mpdf );
|
91 |
+
$filename = ( $dest === 'F' ) ? $this->full_path : $this->filename;
|
92 |
|
93 |
+
$mpdf->Output( $filename, $dest );
|
|
|
|
|
|
|
94 |
}
|
95 |
|
96 |
/**
|
includes/abstracts/abstract-bewpi-invoice.php
CHANGED
@@ -340,16 +340,40 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
340 |
if ( ! empty( $this->template_options['bewpi_company_logo'] ) ) {
|
341 |
$image_url = $this->template_options['bewpi_company_logo'];
|
342 |
|
343 |
-
// get the relative path due to slow generation of invoice.
|
344 |
-
|
|
|
|
|
|
|
345 |
|
346 |
-
$image_url = image_to_base64( $image_url );
|
347 |
echo '<img class="company-logo" src="' . $image_url . '"/>';
|
348 |
} else {
|
349 |
echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
|
350 |
}
|
351 |
}
|
352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
private function output_to_buffer( $full_path ) {
|
354 |
ob_start();
|
355 |
require_once $full_path;
|
340 |
if ( ! empty( $this->template_options['bewpi_company_logo'] ) ) {
|
341 |
$image_url = $this->template_options['bewpi_company_logo'];
|
342 |
|
343 |
+
// get the relative path due to slow generation of invoice.
|
344 |
+
$image_url = '..' . str_replace( get_site_url(), '', $image_url );
|
345 |
+
|
346 |
+
// try base64 encoding with or without relative path if MPDF gives images errors.
|
347 |
+
//$image_url = image_to_base64( $image_url );
|
348 |
|
|
|
349 |
echo '<img class="company-logo" src="' . $image_url . '"/>';
|
350 |
} else {
|
351 |
echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
|
352 |
}
|
353 |
}
|
354 |
|
355 |
+
/**
|
356 |
+
* Get VAT number from WooCommerce EU VAT Number plugin
|
357 |
+
*/
|
358 |
+
public function display_vat_number() {
|
359 |
+
$vat_number = get_post_meta( $this->order->id, '_vat_number', true );
|
360 |
+
if ( $vat_number !== '' ) {
|
361 |
+
echo '<span>' . sprintf( __( 'VAT Number: %s', 'woocommerce-pdf-invoices' ), $vat_number ) . '</span>';
|
362 |
+
}
|
363 |
+
}
|
364 |
+
|
365 |
+
/**
|
366 |
+
* Get PO Number from WooCommerce Purchase Order Gateway plugin
|
367 |
+
*/
|
368 |
+
public function display_purchase_order_number () {
|
369 |
+
if ( isset( $this->order->payment_method ) && $this->order->payment_method === 'woocommerce_gateway_purchase_order' ) {
|
370 |
+
$po_number = get_post_meta( $this->order->id, '_po_number', true );
|
371 |
+
if ( $po_number !== '' ) {
|
372 |
+
echo '<span>' . sprintf( __( 'Purchase Order Number: %s', 'woocommerce-gateway-purchase-order' ), $po_number ) . '</span>';
|
373 |
+
}
|
374 |
+
}
|
375 |
+
}
|
376 |
+
|
377 |
private function output_to_buffer( $full_path ) {
|
378 |
ob_start();
|
379 |
require_once $full_path;
|
includes/admin/settings/class-bewpi-admin-settings-general.php
CHANGED
@@ -178,7 +178,20 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
178 |
'type' => 'text',
|
179 |
'desc' => sprintf( __( 'Get your account from your Email It In %suser account%s.', 'woocommerce-pdf-invoices' ), '<a href="https://www.emailitin.com/user_account">', '</a>' ),
|
180 |
'default' => ''
|
181 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
);
|
183 |
|
184 |
return apply_filters( 'bewpi_general_settings', $settings );
|
@@ -206,11 +219,18 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
206 |
array( &$this, 'cloud_storage_desc_callback' ),
|
207 |
$this->settings_key
|
208 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
}
|
210 |
|
211 |
public function email_desc_callback() { }
|
212 |
public function download_desc_callback() {}
|
213 |
public function cloud_storage_desc_callback() { printf( __( 'Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or Egnyte and enter your account below.', 'woocommerce-pdf-invoices' ), '<a href="https://emailitin.com">Email It In</a>' ); }
|
|
|
214 |
|
215 |
/**
|
216 |
* Adds settings fields
|
178 |
'type' => 'text',
|
179 |
'desc' => sprintf( __( 'Get your account from your Email It In %suser account%s.', 'woocommerce-pdf-invoices' ), '<a href="https://www.emailitin.com/user_account">', '</a>' ),
|
180 |
'default' => ''
|
181 |
+
),
|
182 |
+
array(
|
183 |
+
'id' => 'bewpi-mpdf-debug',
|
184 |
+
'name' => $this->prefix . 'mpdf_debug',
|
185 |
+
'title' => '',
|
186 |
+
'callback' => array( &$this, 'input_callback' ),
|
187 |
+
'page' => $this->settings_key,
|
188 |
+
'section' => 'debug',
|
189 |
+
'type' => 'checkbox',
|
190 |
+
'desc' => __( 'Enable mPDF debugging' )
|
191 |
+
. '<br/><div class="bewpi-notes">' . __( 'Enable mPDF debugging if you aren\'t able to create an invoice.', 'woocommerce-pdf-invoices' ) . '</div>',
|
192 |
+
'class' => 'bewpi-checkbox-option-title',
|
193 |
+
'default' => 0
|
194 |
+
)
|
195 |
);
|
196 |
|
197 |
return apply_filters( 'bewpi_general_settings', $settings );
|
219 |
array( &$this, 'cloud_storage_desc_callback' ),
|
220 |
$this->settings_key
|
221 |
);
|
222 |
+
add_settings_section(
|
223 |
+
'debug',
|
224 |
+
__( 'Debug Options', 'woocommerce-pdf-invoices' ),
|
225 |
+
array( &$this, 'debug_desc_callback' ),
|
226 |
+
$this->settings_key
|
227 |
+
);
|
228 |
}
|
229 |
|
230 |
public function email_desc_callback() { }
|
231 |
public function download_desc_callback() {}
|
232 |
public function cloud_storage_desc_callback() { printf( __( 'Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or Egnyte and enter your account below.', 'woocommerce-pdf-invoices' ), '<a href="https://emailitin.com">Email It In</a>' ); }
|
233 |
+
public function debug_desc_callback() {}
|
234 |
|
235 |
/**
|
236 |
* Adds settings fields
|
includes/templates/invoices/simple/micro/body.php
CHANGED
@@ -21,9 +21,11 @@
|
|
21 |
<td class="invoice-details">
|
22 |
<h1 class="title"><?php _e( 'Invoice', 'woocommerce-pdf-invoices' ); ?></h1>
|
23 |
<span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
|
24 |
-
<span
|
25 |
-
<span
|
26 |
-
<span
|
|
|
|
|
27 |
</td>
|
28 |
<td class="total-amount" bgcolor="<?php echo $this->template_options['bewpi_color_theme']; ?>">
|
29 |
<span>
|
@@ -157,8 +159,7 @@
|
|
157 |
$product = wc_get_product( $item['product_id'] ); ?>
|
158 |
<tr class="product-row">
|
159 |
<td>
|
160 |
-
<?php echo $product->get_title();
|
161 |
-
<?php
|
162 |
global $wpdb;
|
163 |
|
164 |
if ( $metadata = $this->order->has_meta( $item_id ) ) {
|
21 |
<td class="invoice-details">
|
22 |
<h1 class="title"><?php _e( 'Invoice', 'woocommerce-pdf-invoices' ); ?></h1>
|
23 |
<span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
|
24 |
+
<span><?php echo $this->get_formatted_invoice_date(); ?></span><br/><br/>
|
25 |
+
<span><?php printf( __( 'Order Number: %s', 'woocommerce-pdf-invoices' ), $this->order->get_order_number() ); ?></span><br/>
|
26 |
+
<span><?php printf( __( 'Order Date: %s', 'woocommerce-pdf-invoices' ), $this->get_formatted_order_date() ); ?></span><br/>
|
27 |
+
<?php $this->display_purchase_order_number(); ?><br/>
|
28 |
+
<?php $this->display_vat_number(); ?>
|
29 |
</td>
|
30 |
<td class="total-amount" bgcolor="<?php echo $this->template_options['bewpi_color_theme']; ?>">
|
31 |
<span>
|
159 |
$product = wc_get_product( $item['product_id'] ); ?>
|
160 |
<tr class="product-row">
|
161 |
<td>
|
162 |
+
<?php echo $product->get_title();
|
|
|
163 |
global $wpdb;
|
164 |
|
165 |
if ( $metadata = $this->order->has_meta( $item_id ) ) {
|
includes/templates/invoices/simple/micro/style.css
CHANGED
@@ -84,6 +84,9 @@ span {
|
|
84 |
td.invoice-details {
|
85 |
vertical-align: top;
|
86 |
}
|
|
|
|
|
|
|
87 |
.number {
|
88 |
font-size: 16px;
|
89 |
}
|
84 |
td.invoice-details {
|
85 |
vertical-align: top;
|
86 |
}
|
87 |
+
td.invoice-details span {
|
88 |
+
font-size: 14px;
|
89 |
+
}
|
90 |
.number {
|
91 |
font-size: 16px;
|
92 |
}
|
lang/woocommerce-pdf-invoices-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
@@ -46,6 +46,16 @@ msgid ""
|
|
46 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
47 |
msgstr ""
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
#: ../includes/abstracts/abstract-bewpi-setting.php:98
|
50 |
msgid "Allowed HTML tags: "
|
51 |
msgstr ""
|
@@ -113,19 +123,31 @@ msgstr "Cuenta Email it In"
|
|
113 |
msgid "Get your account from your Email It In %suser account%s."
|
114 |
msgstr "Obtenga su cuenta desde su Email It In %suser account%s."
|
115 |
|
116 |
-
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
msgid "Email Options"
|
118 |
msgstr "Opciones de correo electrónico"
|
119 |
|
120 |
-
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:
|
121 |
msgid "Download Options"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:
|
125 |
msgid "Cloud Storage Options"
|
126 |
msgstr "Opciones de almacenamiento en la nube"
|
127 |
|
128 |
-
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
129 |
#, php-format
|
130 |
msgid ""
|
131 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -305,13 +327,13 @@ msgstr "Reiniciar el 1 de enero"
|
|
305 |
|
306 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
307 |
#: ../includes/templates/invoices/global/micro/body.php:44
|
308 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
309 |
msgid "SKU"
|
310 |
msgstr "Identificador"
|
311 |
|
312 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
313 |
#: ../includes/templates/invoices/global/micro/body.php:236
|
314 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
315 |
msgid "Subtotal"
|
316 |
msgstr "Subtotal"
|
317 |
|
@@ -325,15 +347,15 @@ msgstr ""
|
|
325 |
|
326 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
327 |
#: ../includes/templates/invoices/global/micro/body.php:220
|
328 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
329 |
msgid "Discount"
|
330 |
msgstr "Descuento"
|
331 |
|
332 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
333 |
#: ../includes/templates/invoices/global/micro/body.php:228
|
334 |
#: ../includes/templates/invoices/global/micro/body.php:244
|
335 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
336 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
337 |
msgid "Shipping"
|
338 |
msgstr "Envío"
|
339 |
|
@@ -637,29 +659,29 @@ msgid "Global Invoice"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../includes/templates/invoices/global/micro/body.php:40
|
640 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
641 |
msgid "Description"
|
642 |
msgstr "Descripción"
|
643 |
|
644 |
#: ../includes/templates/invoices/global/micro/body.php:48
|
645 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
646 |
msgid "Cost"
|
647 |
msgstr "Importe"
|
648 |
|
649 |
#: ../includes/templates/invoices/global/micro/body.php:50
|
650 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
651 |
msgid "Qty"
|
652 |
msgstr "Cant."
|
653 |
|
654 |
#: ../includes/templates/invoices/global/micro/body.php:56
|
655 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
656 |
msgid "VAT"
|
657 |
msgstr "Impuestos"
|
658 |
|
659 |
#: ../includes/templates/invoices/global/micro/body.php:67
|
660 |
#: ../includes/templates/invoices/global/micro/body.php:280
|
661 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
662 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
663 |
msgid "Total"
|
664 |
msgstr "Total"
|
665 |
|
@@ -669,12 +691,12 @@ msgid "Order #%d - %s"
|
|
669 |
msgstr ""
|
670 |
|
671 |
#: ../includes/templates/invoices/global/micro/body.php:255
|
672 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
673 |
msgid "Fee"
|
674 |
msgstr "Cuota"
|
675 |
|
676 |
#: ../includes/templates/invoices/global/micro/body.php:287
|
677 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
678 |
msgid "Refunded"
|
679 |
msgstr "Rembolsado"
|
680 |
|
@@ -698,8 +720,8 @@ msgstr ""
|
|
698 |
msgid "Order Date: %s"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
702 |
-
#: ../includes/templates/invoices/simple/micro/body.php:
|
703 |
msgid "Customer note"
|
704 |
msgstr "Nota del Cliente"
|
705 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-01-15 22:22+0100\n"
|
6 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
46 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:361
|
50 |
+
#, php-format
|
51 |
+
msgid "VAT Number: %s"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:372
|
55 |
+
#, php-format
|
56 |
+
msgid "Purchase Order Number: %s"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
#: ../includes/abstracts/abstract-bewpi-setting.php:98
|
60 |
msgid "Allowed HTML tags: "
|
61 |
msgstr ""
|
123 |
msgid "Get your account from your Email It In %suser account%s."
|
124 |
msgstr "Obtenga su cuenta desde su Email It In %suser account%s."
|
125 |
|
126 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
127 |
+
msgid "Enable mPDF debugging"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
131 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
135 |
msgid "Email Options"
|
136 |
msgstr "Opciones de correo electrónico"
|
137 |
|
138 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
139 |
msgid "Download Options"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
143 |
msgid "Cloud Storage Options"
|
144 |
msgstr "Opciones de almacenamiento en la nube"
|
145 |
|
146 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
147 |
+
msgid "Debug Options"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: ../includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
327 |
|
328 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
329 |
#: ../includes/templates/invoices/global/micro/body.php:44
|
330 |
+
#: ../includes/templates/invoices/simple/micro/body.php:48
|
331 |
msgid "SKU"
|
332 |
msgstr "Identificador"
|
333 |
|
334 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
335 |
#: ../includes/templates/invoices/global/micro/body.php:236
|
336 |
+
#: ../includes/templates/invoices/simple/micro/body.php:101
|
337 |
msgid "Subtotal"
|
338 |
msgstr "Subtotal"
|
339 |
|
347 |
|
348 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
349 |
#: ../includes/templates/invoices/global/micro/body.php:220
|
350 |
+
#: ../includes/templates/invoices/simple/micro/body.php:85
|
351 |
msgid "Discount"
|
352 |
msgstr "Descuento"
|
353 |
|
354 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
355 |
#: ../includes/templates/invoices/global/micro/body.php:228
|
356 |
#: ../includes/templates/invoices/global/micro/body.php:244
|
357 |
+
#: ../includes/templates/invoices/simple/micro/body.php:93
|
358 |
+
#: ../includes/templates/invoices/simple/micro/body.php:109
|
359 |
msgid "Shipping"
|
360 |
msgstr "Envío"
|
361 |
|
659 |
msgstr ""
|
660 |
|
661 |
#: ../includes/templates/invoices/global/micro/body.php:40
|
662 |
+
#: ../includes/templates/invoices/simple/micro/body.php:44
|
663 |
msgid "Description"
|
664 |
msgstr "Descripción"
|
665 |
|
666 |
#: ../includes/templates/invoices/global/micro/body.php:48
|
667 |
+
#: ../includes/templates/invoices/simple/micro/body.php:52
|
668 |
msgid "Cost"
|
669 |
msgstr "Importe"
|
670 |
|
671 |
#: ../includes/templates/invoices/global/micro/body.php:50
|
672 |
+
#: ../includes/templates/invoices/simple/micro/body.php:54
|
673 |
msgid "Qty"
|
674 |
msgstr "Cant."
|
675 |
|
676 |
#: ../includes/templates/invoices/global/micro/body.php:56
|
677 |
+
#: ../includes/templates/invoices/simple/micro/body.php:60
|
678 |
msgid "VAT"
|
679 |
msgstr "Impuestos"
|
680 |
|
681 |
#: ../includes/templates/invoices/global/micro/body.php:67
|
682 |
#: ../includes/templates/invoices/global/micro/body.php:280
|
683 |
+
#: ../includes/templates/invoices/simple/micro/body.php:71
|
684 |
+
#: ../includes/templates/invoices/simple/micro/body.php:145
|
685 |
msgid "Total"
|
686 |
msgstr "Total"
|
687 |
|
691 |
msgstr ""
|
692 |
|
693 |
#: ../includes/templates/invoices/global/micro/body.php:255
|
694 |
+
#: ../includes/templates/invoices/simple/micro/body.php:120
|
695 |
msgid "Fee"
|
696 |
msgstr "Cuota"
|
697 |
|
698 |
#: ../includes/templates/invoices/global/micro/body.php:287
|
699 |
+
#: ../includes/templates/invoices/simple/micro/body.php:152
|
700 |
msgid "Refunded"
|
701 |
msgstr "Rembolsado"
|
702 |
|
720 |
msgid "Order Date: %s"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../includes/templates/invoices/simple/micro/body.php:289
|
724 |
+
#: ../includes/templates/invoices/simple/micro/body.php:294
|
725 |
msgid "Customer note"
|
726 |
msgstr "Nota del Cliente"
|
727 |
|
lang/woocommerce-pdf-invoices-fr_FR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
|
7 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
8 |
"Language: fr_FR\n"
|
@@ -43,6 +43,16 @@ msgid ""
|
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
@@ -110,19 +120,31 @@ msgstr "Compte Email It In"
|
|
110 |
msgid "Get your account from your Email It In %suser account%s."
|
111 |
msgstr "Obtenez votre compte depuis Email It In %scompte utilisateur%s"
|
112 |
|
113 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgid "Email Options"
|
115 |
msgstr "Options Email"
|
116 |
|
117 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
118 |
msgid "Download Options"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
122 |
msgid "Cloud Storage Options"
|
123 |
msgstr "Options de stockage du cloud"
|
124 |
|
125 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -304,13 +326,13 @@ msgstr "Réinitialiser le 1er janvier"
|
|
304 |
|
305 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
306 |
#: includes/templates/invoices/global/micro/body.php:44
|
307 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
308 |
msgid "SKU"
|
309 |
msgstr "UGS"
|
310 |
|
311 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
312 |
#: includes/templates/invoices/global/micro/body.php:236
|
313 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
314 |
msgid "Subtotal"
|
315 |
msgstr "Sous-total"
|
316 |
|
@@ -324,15 +346,15 @@ msgstr ""
|
|
324 |
|
325 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
326 |
#: includes/templates/invoices/global/micro/body.php:220
|
327 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
328 |
msgid "Discount"
|
329 |
msgstr "Réduction"
|
330 |
|
331 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
332 |
#: includes/templates/invoices/global/micro/body.php:228
|
333 |
#: includes/templates/invoices/global/micro/body.php:244
|
334 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
335 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
336 |
msgid "Shipping"
|
337 |
msgstr "Livraison"
|
338 |
|
@@ -636,29 +658,29 @@ msgid "Global Invoice"
|
|
636 |
msgstr ""
|
637 |
|
638 |
#: includes/templates/invoices/global/micro/body.php:40
|
639 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
640 |
msgid "Description"
|
641 |
msgstr "Description"
|
642 |
|
643 |
#: includes/templates/invoices/global/micro/body.php:48
|
644 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
645 |
msgid "Cost"
|
646 |
msgstr "Coût"
|
647 |
|
648 |
#: includes/templates/invoices/global/micro/body.php:50
|
649 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
650 |
msgid "Qty"
|
651 |
msgstr "Qté"
|
652 |
|
653 |
#: includes/templates/invoices/global/micro/body.php:56
|
654 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
655 |
msgid "VAT"
|
656 |
msgstr "TVA"
|
657 |
|
658 |
#: includes/templates/invoices/global/micro/body.php:67
|
659 |
#: includes/templates/invoices/global/micro/body.php:280
|
660 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
661 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
662 |
msgid "Total"
|
663 |
msgstr "Total"
|
664 |
|
@@ -668,12 +690,12 @@ msgid "Order #%d - %s"
|
|
668 |
msgstr ""
|
669 |
|
670 |
#: includes/templates/invoices/global/micro/body.php:255
|
671 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
672 |
msgid "Fee"
|
673 |
msgstr ""
|
674 |
|
675 |
#: includes/templates/invoices/global/micro/body.php:287
|
676 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
677 |
msgid "Refunded"
|
678 |
msgstr "Remboursement"
|
679 |
|
@@ -697,8 +719,8 @@ msgstr ""
|
|
697 |
msgid "Order Date: %s"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
701 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
702 |
msgid "Customer note"
|
703 |
msgstr "Note du client"
|
704 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-01-15 22:22+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
6 |
"Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
|
7 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
8 |
"Language: fr_FR\n"
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:361
|
47 |
+
#, php-format
|
48 |
+
msgid "VAT Number: %s"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
52 |
+
#, php-format
|
53 |
+
msgid "Purchase Order Number: %s"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
57 |
msgid "Allowed HTML tags: "
|
58 |
msgstr ""
|
120 |
msgid "Get your account from your Email It In %suser account%s."
|
121 |
msgstr "Obtenez votre compte depuis Email It In %scompte utilisateur%s"
|
122 |
|
123 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
124 |
+
msgid "Enable mPDF debugging"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
128 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
132 |
msgid "Email Options"
|
133 |
msgstr "Options Email"
|
134 |
|
135 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
136 |
msgid "Download Options"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
140 |
msgid "Cloud Storage Options"
|
141 |
msgstr "Options de stockage du cloud"
|
142 |
|
143 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
144 |
+
msgid "Debug Options"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
148 |
#, php-format
|
149 |
msgid ""
|
150 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
326 |
|
327 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
328 |
#: includes/templates/invoices/global/micro/body.php:44
|
329 |
+
#: includes/templates/invoices/simple/micro/body.php:48
|
330 |
msgid "SKU"
|
331 |
msgstr "UGS"
|
332 |
|
333 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
334 |
#: includes/templates/invoices/global/micro/body.php:236
|
335 |
+
#: includes/templates/invoices/simple/micro/body.php:101
|
336 |
msgid "Subtotal"
|
337 |
msgstr "Sous-total"
|
338 |
|
346 |
|
347 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
348 |
#: includes/templates/invoices/global/micro/body.php:220
|
349 |
+
#: includes/templates/invoices/simple/micro/body.php:85
|
350 |
msgid "Discount"
|
351 |
msgstr "Réduction"
|
352 |
|
353 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
354 |
#: includes/templates/invoices/global/micro/body.php:228
|
355 |
#: includes/templates/invoices/global/micro/body.php:244
|
356 |
+
#: includes/templates/invoices/simple/micro/body.php:93
|
357 |
+
#: includes/templates/invoices/simple/micro/body.php:109
|
358 |
msgid "Shipping"
|
359 |
msgstr "Livraison"
|
360 |
|
658 |
msgstr ""
|
659 |
|
660 |
#: includes/templates/invoices/global/micro/body.php:40
|
661 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
662 |
msgid "Description"
|
663 |
msgstr "Description"
|
664 |
|
665 |
#: includes/templates/invoices/global/micro/body.php:48
|
666 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
667 |
msgid "Cost"
|
668 |
msgstr "Coût"
|
669 |
|
670 |
#: includes/templates/invoices/global/micro/body.php:50
|
671 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
672 |
msgid "Qty"
|
673 |
msgstr "Qté"
|
674 |
|
675 |
#: includes/templates/invoices/global/micro/body.php:56
|
676 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
677 |
msgid "VAT"
|
678 |
msgstr "TVA"
|
679 |
|
680 |
#: includes/templates/invoices/global/micro/body.php:67
|
681 |
#: includes/templates/invoices/global/micro/body.php:280
|
682 |
+
#: includes/templates/invoices/simple/micro/body.php:71
|
683 |
+
#: includes/templates/invoices/simple/micro/body.php:145
|
684 |
msgid "Total"
|
685 |
msgstr "Total"
|
686 |
|
690 |
msgstr ""
|
691 |
|
692 |
#: includes/templates/invoices/global/micro/body.php:255
|
693 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
694 |
msgid "Fee"
|
695 |
msgstr ""
|
696 |
|
697 |
#: includes/templates/invoices/global/micro/body.php:287
|
698 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
699 |
msgid "Refunded"
|
700 |
msgstr "Remboursement"
|
701 |
|
719 |
msgid "Order Date: %s"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/templates/invoices/simple/micro/body.php:289
|
723 |
+
#: includes/templates/invoices/simple/micro/body.php:294
|
724 |
msgid "Customer note"
|
725 |
msgstr "Note du client"
|
726 |
|
lang/woocommerce-pdf-invoices-nb_NO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
@@ -49,6 +49,16 @@ msgstr ""
|
|
49 |
"Faktura med fakturanummer %s finnes ikke. Opprett denne fakturaen og forsøk "
|
50 |
"igjen."
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
53 |
msgid "Allowed HTML tags: "
|
54 |
msgstr "Tillatte HTML koder: "
|
@@ -116,19 +126,31 @@ msgstr "Email It In konto"
|
|
116 |
msgid "Get your account from your Email It In %suser account%s."
|
117 |
msgstr "Få din konto fra din Email It In %suser account%s."
|
118 |
|
119 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgid "Email Options"
|
121 |
msgstr "E-post alternativer"
|
122 |
|
123 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
124 |
msgid "Download Options"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
128 |
msgid "Cloud Storage Options"
|
129 |
msgstr "Skylagringsalternativer"
|
130 |
|
131 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
132 |
#, php-format
|
133 |
msgid ""
|
134 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -322,13 +344,13 @@ msgstr "Tilbakestill 1. Januar"
|
|
322 |
|
323 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
324 |
#: includes/templates/invoices/global/micro/body.php:44
|
325 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
326 |
msgid "SKU"
|
327 |
msgstr "Prod.Nr."
|
328 |
|
329 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
330 |
#: includes/templates/invoices/global/micro/body.php:236
|
331 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
332 |
msgid "Subtotal"
|
333 |
msgstr "Delsum"
|
334 |
|
@@ -342,15 +364,15 @@ msgstr "Skatt (totalt)"
|
|
342 |
|
343 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
344 |
#: includes/templates/invoices/global/micro/body.php:220
|
345 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
346 |
msgid "Discount"
|
347 |
msgstr "Rabatt"
|
348 |
|
349 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
350 |
#: includes/templates/invoices/global/micro/body.php:228
|
351 |
#: includes/templates/invoices/global/micro/body.php:244
|
352 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
353 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
354 |
msgid "Shipping"
|
355 |
msgstr "Frakt"
|
356 |
|
@@ -682,29 +704,29 @@ msgid "Global Invoice"
|
|
682 |
msgstr "Global faktura"
|
683 |
|
684 |
#: includes/templates/invoices/global/micro/body.php:40
|
685 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
686 |
msgid "Description"
|
687 |
msgstr "Produkt"
|
688 |
|
689 |
#: includes/templates/invoices/global/micro/body.php:48
|
690 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
691 |
msgid "Cost"
|
692 |
msgstr "Pris"
|
693 |
|
694 |
#: includes/templates/invoices/global/micro/body.php:50
|
695 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
696 |
msgid "Qty"
|
697 |
msgstr "Ant"
|
698 |
|
699 |
#: includes/templates/invoices/global/micro/body.php:56
|
700 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
701 |
msgid "VAT"
|
702 |
msgstr "MVA"
|
703 |
|
704 |
#: includes/templates/invoices/global/micro/body.php:67
|
705 |
#: includes/templates/invoices/global/micro/body.php:280
|
706 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
707 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
708 |
msgid "Total"
|
709 |
msgstr "Totalt"
|
710 |
|
@@ -714,12 +736,12 @@ msgid "Order #%d - %s"
|
|
714 |
msgstr "Ordre #%d - %s"
|
715 |
|
716 |
#: includes/templates/invoices/global/micro/body.php:255
|
717 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
718 |
msgid "Fee"
|
719 |
msgstr "Avgift"
|
720 |
|
721 |
#: includes/templates/invoices/global/micro/body.php:287
|
722 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
723 |
msgid "Refunded"
|
724 |
msgstr "Refundert"
|
725 |
|
@@ -743,8 +765,8 @@ msgstr "Ordrenummer: %s"
|
|
743 |
msgid "Order Date: %s"
|
744 |
msgstr "Ordre dato: %s"
|
745 |
|
746 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
747 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
748 |
msgid "Customer note"
|
749 |
msgstr "Kundenotat"
|
750 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-01-15 22:22+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
49 |
"Faktura med fakturanummer %s finnes ikke. Opprett denne fakturaen og forsøk "
|
50 |
"igjen."
|
51 |
|
52 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:361
|
53 |
+
#, php-format
|
54 |
+
msgid "VAT Number: %s"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
58 |
+
#, php-format
|
59 |
+
msgid "Purchase Order Number: %s"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
63 |
msgid "Allowed HTML tags: "
|
64 |
msgstr "Tillatte HTML koder: "
|
126 |
msgid "Get your account from your Email It In %suser account%s."
|
127 |
msgstr "Få din konto fra din Email It In %suser account%s."
|
128 |
|
129 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
130 |
+
msgid "Enable mPDF debugging"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
134 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
138 |
msgid "Email Options"
|
139 |
msgstr "E-post alternativer"
|
140 |
|
141 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
142 |
msgid "Download Options"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
146 |
msgid "Cloud Storage Options"
|
147 |
msgstr "Skylagringsalternativer"
|
148 |
|
149 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
150 |
+
msgid "Debug Options"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
344 |
|
345 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
346 |
#: includes/templates/invoices/global/micro/body.php:44
|
347 |
+
#: includes/templates/invoices/simple/micro/body.php:48
|
348 |
msgid "SKU"
|
349 |
msgstr "Prod.Nr."
|
350 |
|
351 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
352 |
#: includes/templates/invoices/global/micro/body.php:236
|
353 |
+
#: includes/templates/invoices/simple/micro/body.php:101
|
354 |
msgid "Subtotal"
|
355 |
msgstr "Delsum"
|
356 |
|
364 |
|
365 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
366 |
#: includes/templates/invoices/global/micro/body.php:220
|
367 |
+
#: includes/templates/invoices/simple/micro/body.php:85
|
368 |
msgid "Discount"
|
369 |
msgstr "Rabatt"
|
370 |
|
371 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
372 |
#: includes/templates/invoices/global/micro/body.php:228
|
373 |
#: includes/templates/invoices/global/micro/body.php:244
|
374 |
+
#: includes/templates/invoices/simple/micro/body.php:93
|
375 |
+
#: includes/templates/invoices/simple/micro/body.php:109
|
376 |
msgid "Shipping"
|
377 |
msgstr "Frakt"
|
378 |
|
704 |
msgstr "Global faktura"
|
705 |
|
706 |
#: includes/templates/invoices/global/micro/body.php:40
|
707 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
708 |
msgid "Description"
|
709 |
msgstr "Produkt"
|
710 |
|
711 |
#: includes/templates/invoices/global/micro/body.php:48
|
712 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
713 |
msgid "Cost"
|
714 |
msgstr "Pris"
|
715 |
|
716 |
#: includes/templates/invoices/global/micro/body.php:50
|
717 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
718 |
msgid "Qty"
|
719 |
msgstr "Ant"
|
720 |
|
721 |
#: includes/templates/invoices/global/micro/body.php:56
|
722 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
723 |
msgid "VAT"
|
724 |
msgstr "MVA"
|
725 |
|
726 |
#: includes/templates/invoices/global/micro/body.php:67
|
727 |
#: includes/templates/invoices/global/micro/body.php:280
|
728 |
+
#: includes/templates/invoices/simple/micro/body.php:71
|
729 |
+
#: includes/templates/invoices/simple/micro/body.php:145
|
730 |
msgid "Total"
|
731 |
msgstr "Totalt"
|
732 |
|
736 |
msgstr "Ordre #%d - %s"
|
737 |
|
738 |
#: includes/templates/invoices/global/micro/body.php:255
|
739 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
740 |
msgid "Fee"
|
741 |
msgstr "Avgift"
|
742 |
|
743 |
#: includes/templates/invoices/global/micro/body.php:287
|
744 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
745 |
msgid "Refunded"
|
746 |
msgstr "Refundert"
|
747 |
|
765 |
msgid "Order Date: %s"
|
766 |
msgstr "Ordre dato: %s"
|
767 |
|
768 |
+
#: includes/templates/invoices/simple/micro/body.php:289
|
769 |
+
#: includes/templates/invoices/simple/micro/body.php:294
|
770 |
msgid "Customer note"
|
771 |
msgstr "Kundenotat"
|
772 |
|
lang/woocommerce-pdf-invoices-nl_NL.mo
CHANGED
Binary file
|
lang/woocommerce-pdf-invoices-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -29,6 +29,8 @@ msgid ""
|
|
29 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
30 |
"all invoices with invoice number %s and greater."
|
31 |
msgstr ""
|
|
|
|
|
32 |
|
33 |
#: includes/abstracts/abstract-bewpi-invoice.php:260
|
34 |
#, php-format
|
@@ -36,16 +38,30 @@ msgid ""
|
|
36 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
37 |
"First delete invoice and try again."
|
38 |
msgstr ""
|
|
|
|
|
39 |
|
40 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
47 |
msgid "Allowed HTML tags: "
|
48 |
-
msgstr ""
|
49 |
|
50 |
#: includes/abstracts/abstract-bewpi-setting.php:173
|
51 |
msgid "Remove logo"
|
@@ -69,7 +85,7 @@ msgstr "Klant factuur"
|
|
69 |
|
70 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:106
|
71 |
msgid "Do not attach"
|
72 |
-
msgstr ""
|
73 |
|
74 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:120
|
75 |
msgid "Attach to New order Email"
|
@@ -77,25 +93,27 @@ msgstr "Voeg toe aan New order Email"
|
|
77 |
|
78 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
79 |
msgid "View PDF"
|
80 |
-
msgstr ""
|
81 |
|
82 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:135
|
83 |
msgid "Download"
|
84 |
-
msgstr ""
|
85 |
|
86 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:139
|
87 |
msgid "Open in new browser tab/window"
|
88 |
-
msgstr ""
|
89 |
|
90 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
91 |
msgid "Enable download from account"
|
92 |
-
msgstr ""
|
93 |
|
94 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:154
|
95 |
msgid ""
|
96 |
"<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
|
97 |
"page.</div>"
|
98 |
msgstr ""
|
|
|
|
|
99 |
|
100 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
101 |
msgid "Enable Email It In"
|
@@ -103,26 +121,38 @@ msgstr "Inschakelen Email It In"
|
|
103 |
|
104 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:174
|
105 |
msgid "Email It In account"
|
106 |
-
msgstr ""
|
107 |
|
108 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:179
|
109 |
#, php-format
|
110 |
msgid "Get your account from your Email It In %suser account%s."
|
111 |
msgstr "Verkrijg uw account van uw Email It In %sgebruikersaccount%s."
|
112 |
|
113 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgid "Email Options"
|
115 |
msgstr "Email Opties"
|
116 |
|
117 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
118 |
msgid "Download Options"
|
119 |
-
msgstr ""
|
120 |
|
121 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
122 |
msgid "Cloud Storage Options"
|
123 |
msgstr "Online Opslag Opties"
|
124 |
|
125 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -134,7 +164,7 @@ msgstr ""
|
|
134 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
135 |
#: includes/be-woocommerce-pdf-invoices.php:219
|
136 |
msgid "Template"
|
137 |
-
msgstr ""
|
138 |
|
139 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
140 |
msgid "Color theme"
|
@@ -191,7 +221,7 @@ msgstr "Bedrijfsadres"
|
|
191 |
|
192 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
193 |
msgid "Displayed in upper-right corner near logo."
|
194 |
-
msgstr ""
|
195 |
|
196 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
197 |
msgid "Company details"
|
@@ -199,19 +229,19 @@ msgstr "Algemene bedrijfsgegevens"
|
|
199 |
|
200 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
201 |
msgid "Displayed below company address."
|
202 |
-
msgstr ""
|
203 |
|
204 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
205 |
msgid "Thank you text"
|
206 |
-
msgstr ""
|
207 |
|
208 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
209 |
msgid "Displayed in big colored bar directly after invoice total."
|
210 |
-
msgstr ""
|
211 |
|
212 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
213 |
msgid "Thank you for your purchase!"
|
214 |
-
msgstr ""
|
215 |
|
216 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
217 |
msgid "Show customer notes"
|
@@ -227,31 +257,33 @@ msgid ""
|
|
227 |
"Displayed below customer notes and above footer. Want to attach additional "
|
228 |
"pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
229 |
msgstr ""
|
|
|
|
|
230 |
|
231 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
232 |
msgid "Items will be shipped within 2 days."
|
233 |
-
msgstr ""
|
234 |
|
235 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
236 |
msgid "Left footer column."
|
237 |
-
msgstr ""
|
238 |
|
239 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
240 |
#, php-format
|
241 |
msgid "<b>Payment method</b> %s"
|
242 |
-
msgstr ""
|
243 |
|
244 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
245 |
msgid "Right footer column."
|
246 |
-
msgstr ""
|
247 |
|
248 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
249 |
msgid "Leave empty to show page numbering."
|
250 |
-
msgstr ""
|
251 |
|
252 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
253 |
msgid "Type"
|
254 |
-
msgstr ""
|
255 |
|
256 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
257 |
msgid "WooCommerce order number"
|
@@ -276,6 +308,10 @@ msgid ""
|
|
276 |
"editable by selecting checkbox. Next number needs to be lower then highest "
|
277 |
"existing invoice number or delete invoices first."
|
278 |
msgstr ""
|
|
|
|
|
|
|
|
|
279 |
|
280 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
281 |
msgid "Digits"
|
@@ -299,6 +335,8 @@ msgid ""
|
|
299 |
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
300 |
"slashes aren't supported."
|
301 |
msgstr ""
|
|
|
|
|
302 |
|
303 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
304 |
msgid "Reset on 1st of january"
|
@@ -306,35 +344,35 @@ msgstr "Reset op 1 januari"
|
|
306 |
|
307 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
308 |
#: includes/templates/invoices/global/micro/body.php:44
|
309 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
310 |
msgid "SKU"
|
311 |
msgstr "Productcode"
|
312 |
|
313 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
314 |
#: includes/templates/invoices/global/micro/body.php:236
|
315 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
316 |
msgid "Subtotal"
|
317 |
msgstr "Subtotaal"
|
318 |
|
319 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
320 |
msgid "Tax (item)"
|
321 |
-
msgstr ""
|
322 |
|
323 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
324 |
msgid "Tax (total)"
|
325 |
-
msgstr ""
|
326 |
|
327 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
328 |
#: includes/templates/invoices/global/micro/body.php:220
|
329 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
330 |
msgid "Discount"
|
331 |
msgstr "Korting"
|
332 |
|
333 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
334 |
#: includes/templates/invoices/global/micro/body.php:228
|
335 |
#: includes/templates/invoices/global/micro/body.php:244
|
336 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
337 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
338 |
msgid "Shipping"
|
339 |
msgstr "Verzending"
|
340 |
|
@@ -352,7 +390,7 @@ msgstr "Kopregel Opties"
|
|
352 |
|
353 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
354 |
msgid "Body Options"
|
355 |
-
msgstr ""
|
356 |
|
357 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
358 |
msgid "Footer Options"
|
@@ -376,13 +414,15 @@ msgstr "De kopregel is zichtbaar op iedere pagina."
|
|
376 |
|
377 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
378 |
msgid "The footer will be visible on every page."
|
379 |
-
msgstr ""
|
380 |
|
381 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
382 |
msgid ""
|
383 |
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
|
384 |
"order payment method."
|
385 |
msgstr ""
|
|
|
|
|
386 |
|
387 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
388 |
msgid "Enable or disable the columns."
|
@@ -414,19 +454,19 @@ msgstr "Opties"
|
|
414 |
|
415 |
#: includes/be-woocommerce-pdf-invoices.php:137
|
416 |
msgid "Premium"
|
417 |
-
msgstr ""
|
418 |
|
419 |
#: includes/be-woocommerce-pdf-invoices.php:182
|
420 |
msgid "Invalid request"
|
421 |
-
msgstr ""
|
422 |
|
423 |
#: includes/be-woocommerce-pdf-invoices.php:185
|
424 |
msgid "Invalid order ID"
|
425 |
-
msgstr ""
|
426 |
|
427 |
#: includes/be-woocommerce-pdf-invoices.php:191
|
428 |
msgid "Access denied"
|
429 |
-
msgstr ""
|
430 |
|
431 |
#: includes/be-woocommerce-pdf-invoices.php:218
|
432 |
msgid "General"
|
@@ -442,52 +482,61 @@ msgid ""
|
|
442 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
443 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
444 |
msgstr ""
|
|
|
|
|
445 |
|
446 |
#: includes/be-woocommerce-pdf-invoices.php:282
|
447 |
#, php-format
|
448 |
msgid "Version %s"
|
449 |
-
msgstr ""
|
450 |
|
451 |
#: includes/be-woocommerce-pdf-invoices.php:306
|
452 |
msgid "WooCommerce PDF Invoices Premium"
|
453 |
-
msgstr ""
|
454 |
|
455 |
#: includes/be-woocommerce-pdf-invoices.php:308
|
456 |
msgid ""
|
457 |
"This plugin offers a premium version which comes with the following features:"
|
458 |
msgstr ""
|
|
|
|
|
459 |
|
460 |
#: includes/be-woocommerce-pdf-invoices.php:309
|
461 |
msgid "Bill periodically by generating and sending global invoices."
|
462 |
msgstr ""
|
|
|
463 |
|
464 |
#: includes/be-woocommerce-pdf-invoices.php:310
|
465 |
msgid "Add additional PDF's to customer invoices."
|
466 |
-
msgstr ""
|
467 |
|
468 |
#: includes/be-woocommerce-pdf-invoices.php:311
|
469 |
msgid "Send customer invoices directly to suppliers and others."
|
470 |
-
msgstr ""
|
471 |
|
472 |
#: includes/be-woocommerce-pdf-invoices.php:312
|
473 |
#, php-format
|
474 |
msgid ""
|
475 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
476 |
msgstr ""
|
|
|
|
|
477 |
|
478 |
#: includes/be-woocommerce-pdf-invoices.php:314
|
479 |
msgid "Learn more"
|
480 |
-
msgstr ""
|
481 |
|
482 |
#: includes/be-woocommerce-pdf-invoices.php:318
|
483 |
msgid "Stay up-to-date"
|
484 |
-
msgstr ""
|
485 |
|
486 |
#: includes/be-woocommerce-pdf-invoices.php:327
|
487 |
msgid ""
|
488 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
489 |
"our newsletter."
|
490 |
msgstr ""
|
|
|
|
|
491 |
|
492 |
#: includes/be-woocommerce-pdf-invoices.php:333
|
493 |
msgid "Your email address"
|
@@ -544,6 +593,8 @@ msgstr ""
|
|
544 |
msgid ""
|
545 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
546 |
msgstr ""
|
|
|
|
|
547 |
|
548 |
#: includes/be-woocommerce-pdf-invoices.php:377
|
549 |
msgid "Need Help?"
|
@@ -619,12 +670,19 @@ msgid ""
|
|
619 |
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
620 |
"done it!</a>"
|
621 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
622 |
|
623 |
#: includes/class-bewpi-invoice.php:48
|
624 |
msgid ""
|
625 |
"Whoops, no template found. Please select a template on the Template settings "
|
626 |
"page first."
|
627 |
msgstr ""
|
|
|
|
|
628 |
|
629 |
#: includes/templates/invoices/global/micro/body.php:5
|
630 |
#: includes/templates/invoices/simple/micro/body.php:5
|
@@ -647,29 +705,29 @@ msgid "Global Invoice"
|
|
647 |
msgstr "Globale Factuur"
|
648 |
|
649 |
#: includes/templates/invoices/global/micro/body.php:40
|
650 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
651 |
msgid "Description"
|
652 |
msgstr "Beschrijving"
|
653 |
|
654 |
#: includes/templates/invoices/global/micro/body.php:48
|
655 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
656 |
msgid "Cost"
|
657 |
msgstr "Kosten"
|
658 |
|
659 |
#: includes/templates/invoices/global/micro/body.php:50
|
660 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
661 |
msgid "Qty"
|
662 |
msgstr "Aantal"
|
663 |
|
664 |
#: includes/templates/invoices/global/micro/body.php:56
|
665 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
666 |
msgid "VAT"
|
667 |
msgstr "BTW"
|
668 |
|
669 |
#: includes/templates/invoices/global/micro/body.php:67
|
670 |
#: includes/templates/invoices/global/micro/body.php:280
|
671 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
672 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
673 |
msgid "Total"
|
674 |
msgstr "Totaal"
|
675 |
|
@@ -679,12 +737,12 @@ msgid "Order #%d - %s"
|
|
679 |
msgstr "Bestelling #%d - %s"
|
680 |
|
681 |
#: includes/templates/invoices/global/micro/body.php:255
|
682 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
683 |
msgid "Fee"
|
684 |
msgstr "Handelingskosten"
|
685 |
|
686 |
#: includes/templates/invoices/global/micro/body.php:287
|
687 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
688 |
msgid "Refunded"
|
689 |
msgstr "Terugbetaald"
|
690 |
|
@@ -692,7 +750,7 @@ msgstr "Terugbetaald"
|
|
692 |
#: includes/templates/invoices/simple/micro/footer.php:18
|
693 |
#, php-format
|
694 |
msgid "%s of %s"
|
695 |
-
msgstr ""
|
696 |
|
697 |
#: includes/templates/invoices/simple/micro/body.php:22
|
698 |
msgid "Invoice"
|
@@ -708,8 +766,8 @@ msgstr "Bestellingsnummer: %s"
|
|
708 |
msgid "Order Date: %s"
|
709 |
msgstr "Datum bestelling: %s"
|
710 |
|
711 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
712 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
713 |
msgid "Customer note"
|
714 |
msgstr "Opmerking klant"
|
715 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-01-15 22:22+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
29 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
30 |
"all invoices with invoice number %s and greater."
|
31 |
msgstr ""
|
32 |
+
"Kon de factuur niet maken. Om het factuurnummer met %d te resetten, dienen "
|
33 |
+
"alle facturen met factuurnummers groter dan %s eerst te worden verwijderd."
|
34 |
|
35 |
#: includes/abstracts/abstract-bewpi-invoice.php:260
|
36 |
#, php-format
|
38 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
39 |
"First delete invoice and try again."
|
40 |
msgstr ""
|
41 |
+
"Kon de factuur niet maken. De factuur met factuurnummer %s bestaat reeds. "
|
42 |
+
"Verwijder de factuur en probeer opnieuw."
|
43 |
|
44 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
48 |
msgstr ""
|
49 |
+
"Factuur met factuurnummer %s niet gevonden. Maak eerst de factuur en probeer "
|
50 |
+
"opnieuw."
|
51 |
+
|
52 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:361
|
53 |
+
#, php-format
|
54 |
+
msgid "VAT Number: %s"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
58 |
+
#, php-format
|
59 |
+
msgid "Purchase Order Number: %s"
|
60 |
+
msgstr ""
|
61 |
|
62 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
63 |
msgid "Allowed HTML tags: "
|
64 |
+
msgstr "Toegestane HTML attributen:"
|
65 |
|
66 |
#: includes/abstracts/abstract-bewpi-setting.php:173
|
67 |
msgid "Remove logo"
|
85 |
|
86 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:106
|
87 |
msgid "Do not attach"
|
88 |
+
msgstr "Niet bijvoegen"
|
89 |
|
90 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:120
|
91 |
msgid "Attach to New order Email"
|
93 |
|
94 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
95 |
msgid "View PDF"
|
96 |
+
msgstr "Bekijk PDF"
|
97 |
|
98 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:135
|
99 |
msgid "Download"
|
100 |
+
msgstr "Download"
|
101 |
|
102 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:139
|
103 |
msgid "Open in new browser tab/window"
|
104 |
+
msgstr "Openen in nieuw browser tabblad/venster"
|
105 |
|
106 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
107 |
msgid "Enable download from account"
|
108 |
+
msgstr "Inschakelen download van Mijn Account pagina"
|
109 |
|
110 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:154
|
111 |
msgid ""
|
112 |
"<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
|
113 |
"page.</div>"
|
114 |
msgstr ""
|
115 |
+
"<br/><div class=\"bewpi-notes\">Laat klanten haar facturen downloaden van "
|
116 |
+
"Mijn Account pagina.</div>"
|
117 |
|
118 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
119 |
msgid "Enable Email It In"
|
121 |
|
122 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:174
|
123 |
msgid "Email It In account"
|
124 |
+
msgstr "Email It In account"
|
125 |
|
126 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:179
|
127 |
#, php-format
|
128 |
msgid "Get your account from your Email It In %suser account%s."
|
129 |
msgstr "Verkrijg uw account van uw Email It In %sgebruikersaccount%s."
|
130 |
|
131 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
132 |
+
msgid "Enable mPDF debugging"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
136 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
140 |
msgid "Email Options"
|
141 |
msgstr "Email Opties"
|
142 |
|
143 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
144 |
msgid "Download Options"
|
145 |
+
msgstr "Download Opties"
|
146 |
|
147 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
148 |
msgid "Cloud Storage Options"
|
149 |
msgstr "Online Opslag Opties"
|
150 |
|
151 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
152 |
+
msgid "Debug Options"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
156 |
#, php-format
|
157 |
msgid ""
|
158 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
164 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
165 |
#: includes/be-woocommerce-pdf-invoices.php:219
|
166 |
msgid "Template"
|
167 |
+
msgstr "Template"
|
168 |
|
169 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
170 |
msgid "Color theme"
|
221 |
|
222 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
223 |
msgid "Displayed in upper-right corner near logo."
|
224 |
+
msgstr "Wordt naast het logo weergegeven (rechts-boven in de hoek)."
|
225 |
|
226 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
227 |
msgid "Company details"
|
229 |
|
230 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
231 |
msgid "Displayed below company address."
|
232 |
+
msgstr "Wordt onder het bedrijfsadres weergegeven."
|
233 |
|
234 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
235 |
msgid "Thank you text"
|
236 |
+
msgstr "Bedankt tekst"
|
237 |
|
238 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
239 |
msgid "Displayed in big colored bar directly after invoice total."
|
240 |
+
msgstr "Wordt in de grote gekleurde balk direct na het totaal weergegeven."
|
241 |
|
242 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
243 |
msgid "Thank you for your purchase!"
|
244 |
+
msgstr "Bedankt voor uw aankoop!"
|
245 |
|
246 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
247 |
msgid "Show customer notes"
|
257 |
"Displayed below customer notes and above footer. Want to attach additional "
|
258 |
"pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
259 |
msgstr ""
|
260 |
+
"Wordt tussen de klantnotities en de voetnoot weergegeven. Voeg meerdere "
|
261 |
+
"pagina's aan de factuur toe met de <a href=\"%s\">Premium</a> versie."
|
262 |
|
263 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
264 |
msgid "Items will be shipped within 2 days."
|
265 |
+
msgstr "Producten worden binnen twee dagen verzonden."
|
266 |
|
267 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
268 |
msgid "Left footer column."
|
269 |
+
msgstr "Linker voetnoot kolom."
|
270 |
|
271 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
272 |
#, php-format
|
273 |
msgid "<b>Payment method</b> %s"
|
274 |
+
msgstr "<b>Betaalmethode</b> %s"
|
275 |
|
276 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
277 |
msgid "Right footer column."
|
278 |
+
msgstr "Rechter voetboot kolom."
|
279 |
|
280 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
281 |
msgid "Leave empty to show page numbering."
|
282 |
+
msgstr "Laat leeg om paginanummering te tonen."
|
283 |
|
284 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
285 |
msgid "Type"
|
286 |
+
msgstr "Type"
|
287 |
|
288 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
289 |
msgid "WooCommerce order number"
|
308 |
"editable by selecting checkbox. Next number needs to be lower then highest "
|
309 |
"existing invoice number or delete invoices first."
|
310 |
msgstr ""
|
311 |
+
"Reset het factuurnummer en start opnieuw met tellen<br/><b>Let wel:</b> "
|
312 |
+
"Selecteer vinkje om de waarde daadwerkelijk te veranderen. Deze functie is "
|
313 |
+
"alleen mogelijk met sequentiële nummering. Het opvolgende nummer behoort "
|
314 |
+
"lager te zijn dan het hoogst bestaande nummer of verwijder eerst de factuur."
|
315 |
|
316 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
317 |
msgid "Digits"
|
335 |
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
336 |
"slashes aren't supported."
|
337 |
msgstr ""
|
338 |
+
"Toegestane attributen: %s %s %s %s %s %s.<br/>%sLet wel:%s %s is verplicht "
|
339 |
+
"en schuine streep is niet toegestaan."
|
340 |
|
341 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
342 |
msgid "Reset on 1st of january"
|
344 |
|
345 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
346 |
#: includes/templates/invoices/global/micro/body.php:44
|
347 |
+
#: includes/templates/invoices/simple/micro/body.php:48
|
348 |
msgid "SKU"
|
349 |
msgstr "Productcode"
|
350 |
|
351 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
352 |
#: includes/templates/invoices/global/micro/body.php:236
|
353 |
+
#: includes/templates/invoices/simple/micro/body.php:101
|
354 |
msgid "Subtotal"
|
355 |
msgstr "Subtotaal"
|
356 |
|
357 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
358 |
msgid "Tax (item)"
|
359 |
+
msgstr "BTW (artikel)"
|
360 |
|
361 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
362 |
msgid "Tax (total)"
|
363 |
+
msgstr "BTW (totaal)"
|
364 |
|
365 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
366 |
#: includes/templates/invoices/global/micro/body.php:220
|
367 |
+
#: includes/templates/invoices/simple/micro/body.php:85
|
368 |
msgid "Discount"
|
369 |
msgstr "Korting"
|
370 |
|
371 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
372 |
#: includes/templates/invoices/global/micro/body.php:228
|
373 |
#: includes/templates/invoices/global/micro/body.php:244
|
374 |
+
#: includes/templates/invoices/simple/micro/body.php:93
|
375 |
+
#: includes/templates/invoices/simple/micro/body.php:109
|
376 |
msgid "Shipping"
|
377 |
msgstr "Verzending"
|
378 |
|
390 |
|
391 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
392 |
msgid "Body Options"
|
393 |
+
msgstr "Body Opties"
|
394 |
|
395 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
396 |
msgid "Footer Options"
|
414 |
|
415 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
416 |
msgid "The footer will be visible on every page."
|
417 |
+
msgstr "De voetnoot wordt op iedere pagina getoond."
|
418 |
|
419 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
420 |
msgid ""
|
421 |
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
|
422 |
"order payment method."
|
423 |
msgstr ""
|
424 |
+
"<b>Tip</b>: Gebruik de plaatsvervanger <code>[payment_method]</code> om de "
|
425 |
+
"betaalmethode weer te geven."
|
426 |
|
427 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
428 |
msgid "Enable or disable the columns."
|
454 |
|
455 |
#: includes/be-woocommerce-pdf-invoices.php:137
|
456 |
msgid "Premium"
|
457 |
+
msgstr "Premium"
|
458 |
|
459 |
#: includes/be-woocommerce-pdf-invoices.php:182
|
460 |
msgid "Invalid request"
|
461 |
+
msgstr "Invalide aanroep"
|
462 |
|
463 |
#: includes/be-woocommerce-pdf-invoices.php:185
|
464 |
msgid "Invalid order ID"
|
465 |
+
msgstr "Invalid order ID"
|
466 |
|
467 |
#: includes/be-woocommerce-pdf-invoices.php:191
|
468 |
msgid "Access denied"
|
469 |
+
msgstr "Toegang geweigerd"
|
470 |
|
471 |
#: includes/be-woocommerce-pdf-invoices.php:218
|
472 |
msgid "General"
|
482 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
483 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
484 |
msgstr ""
|
485 |
+
"Als je tevreden bent met <strong>WooCommerce PDF Invoices</strong> laat dan "
|
486 |
+
"a.u.b. een %s★★★★★%s beoordeling achter. Alvast bedankt!"
|
487 |
|
488 |
#: includes/be-woocommerce-pdf-invoices.php:282
|
489 |
#, php-format
|
490 |
msgid "Version %s"
|
491 |
+
msgstr "Versie %s"
|
492 |
|
493 |
#: includes/be-woocommerce-pdf-invoices.php:306
|
494 |
msgid "WooCommerce PDF Invoices Premium"
|
495 |
+
msgstr "WooCommerce PDF Invoices Premium"
|
496 |
|
497 |
#: includes/be-woocommerce-pdf-invoices.php:308
|
498 |
msgid ""
|
499 |
"This plugin offers a premium version which comes with the following features:"
|
500 |
msgstr ""
|
501 |
+
"Deze plugin heeft ook een betaalde versie beschikbaar en komt met de "
|
502 |
+
"volgende functies: "
|
503 |
|
504 |
#: includes/be-woocommerce-pdf-invoices.php:309
|
505 |
msgid "Bill periodically by generating and sending global invoices."
|
506 |
msgstr ""
|
507 |
+
"Factureer periodiek door globale facturen te genereren en te verzenden."
|
508 |
|
509 |
#: includes/be-woocommerce-pdf-invoices.php:310
|
510 |
msgid "Add additional PDF's to customer invoices."
|
511 |
+
msgstr "Voeg meerdere PDF's toe aan de factuur."
|
512 |
|
513 |
#: includes/be-woocommerce-pdf-invoices.php:311
|
514 |
msgid "Send customer invoices directly to suppliers and others."
|
515 |
+
msgstr "Verzend klantfacturen direct naar leveranciers en anderen."
|
516 |
|
517 |
#: includes/be-woocommerce-pdf-invoices.php:312
|
518 |
#, php-format
|
519 |
msgid ""
|
520 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
521 |
msgstr ""
|
522 |
+
"Compatibel met de emails van de <a href=\"%s\">WooCommerce Subscriptions</a> "
|
523 |
+
"plugin"
|
524 |
|
525 |
#: includes/be-woocommerce-pdf-invoices.php:314
|
526 |
msgid "Learn more"
|
527 |
+
msgstr "Leer meer"
|
528 |
|
529 |
#: includes/be-woocommerce-pdf-invoices.php:318
|
530 |
msgid "Stay up-to-date"
|
531 |
+
msgstr "Blijf op de hoogte"
|
532 |
|
533 |
#: includes/be-woocommerce-pdf-invoices.php:327
|
534 |
msgid ""
|
535 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
536 |
"our newsletter."
|
537 |
msgstr ""
|
538 |
+
"Wij ontwikkelen constant nieuwe functionaliteiten, blijf up-to-date door je "
|
539 |
+
"in te schrijven op de nieuwsbrief."
|
540 |
|
541 |
#: includes/be-woocommerce-pdf-invoices.php:333
|
542 |
msgid "Your email address"
|
593 |
msgid ""
|
594 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
595 |
msgstr ""
|
596 |
+
"Bekijk nu deze geweldige gratis WooCommerce PDF Invoices plugin voor "
|
597 |
+
"WordPress!"
|
598 |
|
599 |
#: includes/be-woocommerce-pdf-invoices.php:377
|
600 |
msgid "Need Help?"
|
670 |
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
671 |
"done it!</a>"
|
672 |
msgstr ""
|
673 |
+
"Je werkt nu al een tijd met <b>WooCommerce PDF Invoices</b>. Om de "
|
674 |
+
"toekomstige ontwikkeling te bevorderen, vragen wij jouw om ons een ★★★★★ "
|
675 |
+
"beoordeling te geven. Alvast bedankt! <br /> <a href='%s' "
|
676 |
+
"target='_blank'>Ja, zal het direct doen!</a> - <a href='%s'>Nee, heb ik al "
|
677 |
+
"gedaan!</a>"
|
678 |
|
679 |
#: includes/class-bewpi-invoice.php:48
|
680 |
msgid ""
|
681 |
"Whoops, no template found. Please select a template on the Template settings "
|
682 |
"page first."
|
683 |
msgstr ""
|
684 |
+
"Oeps, geen template gevonden. Selecteer een template op de Template Opties "
|
685 |
+
"pagina."
|
686 |
|
687 |
#: includes/templates/invoices/global/micro/body.php:5
|
688 |
#: includes/templates/invoices/simple/micro/body.php:5
|
705 |
msgstr "Globale Factuur"
|
706 |
|
707 |
#: includes/templates/invoices/global/micro/body.php:40
|
708 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
709 |
msgid "Description"
|
710 |
msgstr "Beschrijving"
|
711 |
|
712 |
#: includes/templates/invoices/global/micro/body.php:48
|
713 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
714 |
msgid "Cost"
|
715 |
msgstr "Kosten"
|
716 |
|
717 |
#: includes/templates/invoices/global/micro/body.php:50
|
718 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
719 |
msgid "Qty"
|
720 |
msgstr "Aantal"
|
721 |
|
722 |
#: includes/templates/invoices/global/micro/body.php:56
|
723 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
724 |
msgid "VAT"
|
725 |
msgstr "BTW"
|
726 |
|
727 |
#: includes/templates/invoices/global/micro/body.php:67
|
728 |
#: includes/templates/invoices/global/micro/body.php:280
|
729 |
+
#: includes/templates/invoices/simple/micro/body.php:71
|
730 |
+
#: includes/templates/invoices/simple/micro/body.php:145
|
731 |
msgid "Total"
|
732 |
msgstr "Totaal"
|
733 |
|
737 |
msgstr "Bestelling #%d - %s"
|
738 |
|
739 |
#: includes/templates/invoices/global/micro/body.php:255
|
740 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
741 |
msgid "Fee"
|
742 |
msgstr "Handelingskosten"
|
743 |
|
744 |
#: includes/templates/invoices/global/micro/body.php:287
|
745 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
746 |
msgid "Refunded"
|
747 |
msgstr "Terugbetaald"
|
748 |
|
750 |
#: includes/templates/invoices/simple/micro/footer.php:18
|
751 |
#, php-format
|
752 |
msgid "%s of %s"
|
753 |
+
msgstr "%s van %s"
|
754 |
|
755 |
#: includes/templates/invoices/simple/micro/body.php:22
|
756 |
msgid "Invoice"
|
766 |
msgid "Order Date: %s"
|
767 |
msgstr "Datum bestelling: %s"
|
768 |
|
769 |
+
#: includes/templates/invoices/simple/micro/body.php:289
|
770 |
+
#: includes/templates/invoices/simple/micro/body.php:294
|
771 |
msgid "Customer note"
|
772 |
msgstr "Opmerking klant"
|
773 |
|
lang/woocommerce-pdf-invoices-ro_RO.mo
CHANGED
Binary file
|
lang/woocommerce-pdf-invoices-ro_RO.po
CHANGED
@@ -7,17 +7,17 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: \n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2015-12-
|
11 |
-
"PO-Revision-Date:
|
12 |
-
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
-
"Language: ro\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"X-Generator: Poedit 1.7.3\n"
|
|
|
19 |
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
20 |
"2:1));\n"
|
|
|
21 |
|
22 |
#: includes/be-woocommerce-pdf-invoices.php:126
|
23 |
#, php-format
|
@@ -42,7 +42,7 @@ msgstr "Cerere invalidă"
|
|
42 |
|
43 |
#: includes/be-woocommerce-pdf-invoices.php:185
|
44 |
msgid "Invalid order ID"
|
45 |
-
msgstr "Număr de
|
46 |
|
47 |
#: includes/be-woocommerce-pdf-invoices.php:191
|
48 |
msgid "Access denied"
|
@@ -68,7 +68,7 @@ msgid ""
|
|
68 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
69 |
msgstr ""
|
70 |
"Dacă vă place <strong>WooCommerce Facturi PDF</strong> vă rugam să ne lăsați "
|
71 |
-
"un
|
72 |
|
73 |
#: includes/be-woocommerce-pdf-invoices.php:282
|
74 |
#, php-format
|
@@ -141,8 +141,9 @@ msgid ""
|
|
141 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
142 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
143 |
msgstr ""
|
144 |
-
"Acest plugin este un proiect care vrea să acopere
|
145 |
-
"<a href=\"http://www.woothemes.com/woocommerce
|
|
|
146 |
|
147 |
#: includes/be-woocommerce-pdf-invoices.php:347
|
148 |
msgid "<b>Version</b>: "
|
@@ -165,7 +166,7 @@ msgid ""
|
|
165 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
166 |
msgstr ""
|
167 |
"Nu vom cere niciodată donații însă garantăm dezvoltare in viitor, avem deci "
|
168 |
-
"nevoie de suportul dvs.
|
169 |
"calificativ <a href=\"https://wordpress.org/support/view/plugin-reviews/"
|
170 |
"woocommerce-pdf-invoices?rate=5#postform\">★★★★★</a> și votând pentru <a "
|
171 |
"href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">munca "
|
@@ -275,6 +276,8 @@ msgid ""
|
|
275 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
276 |
"all invoices with invoice number %s and greater."
|
277 |
msgstr ""
|
|
|
|
|
278 |
|
279 |
#: includes/abstracts/abstract-bewpi-invoice.php:260
|
280 |
#, php-format
|
@@ -282,44 +285,48 @@ msgid ""
|
|
282 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
283 |
"First delete invoice and try again."
|
284 |
msgstr ""
|
|
|
|
|
285 |
|
286 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
287 |
#, php-format
|
288 |
msgid ""
|
289 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
290 |
msgstr ""
|
|
|
|
|
291 |
|
292 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
293 |
msgid "Allowed HTML tags: "
|
294 |
-
msgstr ""
|
295 |
|
296 |
#: includes/abstracts/abstract-bewpi-setting.php:173
|
297 |
msgid "Remove logo"
|
298 |
-
msgstr ""
|
299 |
|
300 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:86
|
301 |
msgid "Attach to Email"
|
302 |
-
msgstr ""
|
303 |
|
304 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:94
|
305 |
msgid "Processing order"
|
306 |
-
msgstr ""
|
307 |
|
308 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:98
|
309 |
msgid "Completed order"
|
310 |
-
msgstr ""
|
311 |
|
312 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:102
|
313 |
msgid "Customer invoice"
|
314 |
-
msgstr ""
|
315 |
|
316 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:106
|
317 |
msgid "Do not attach"
|
318 |
-
msgstr ""
|
319 |
|
320 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:120
|
321 |
msgid "Attach to New order Email"
|
322 |
-
msgstr ""
|
323 |
|
324 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
325 |
msgid "View PDF"
|
@@ -342,19 +349,21 @@ msgid ""
|
|
342 |
"<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
|
343 |
"page.</div>"
|
344 |
msgstr ""
|
|
|
|
|
345 |
|
346 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
347 |
msgid "Enable Email It In"
|
348 |
-
msgstr "Activează trimiterea
|
349 |
|
350 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:174
|
351 |
msgid "Email It In account"
|
352 |
-
msgstr "Cont pentru email"
|
353 |
|
354 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:179
|
355 |
#, php-format
|
356 |
msgid "Get your account from your Email It In %suser account%s."
|
357 |
-
msgstr "Luați contul email din %
|
358 |
|
359 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:193
|
360 |
msgid "Email Options"
|
@@ -374,6 +383,8 @@ msgid ""
|
|
374 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
375 |
"Egnyte and enter your account below."
|
376 |
msgstr ""
|
|
|
|
|
377 |
|
378 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
379 |
msgid "Color theme"
|
@@ -386,7 +397,7 @@ msgstr "Format dată"
|
|
386 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:116
|
387 |
#, php-format
|
388 |
msgid "%sFormat%s of invoice date and order date."
|
389 |
-
msgstr ""
|
390 |
|
391 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:131
|
392 |
msgid "Display prices including tax"
|
@@ -397,6 +408,8 @@ msgid ""
|
|
397 |
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
|
398 |
"still be excluding tax, so disable it within the visible columns section."
|
399 |
msgstr ""
|
|
|
|
|
400 |
|
401 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:144
|
402 |
msgid "Shipping taxable"
|
@@ -412,7 +425,7 @@ msgstr "Marchează factura PDF ca fiind plătită (watermark)"
|
|
412 |
|
413 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:158
|
414 |
msgid "Invoice will be watermarked when order has been paid."
|
415 |
-
msgstr "Factura va fi marcata cu watermark când
|
416 |
|
417 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:166
|
418 |
msgid "Company name"
|
@@ -456,7 +469,7 @@ msgstr "Arată notițe client"
|
|
456 |
|
457 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:234
|
458 |
msgid "Terms & conditions, policies etc."
|
459 |
-
msgstr "
|
460 |
|
461 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:239
|
462 |
#, php-format
|
@@ -464,6 +477,8 @@ msgid ""
|
|
464 |
"Displayed below customer notes and above footer. Want to attach additional "
|
465 |
"pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
466 |
msgstr ""
|
|
|
|
|
467 |
|
468 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
469 |
msgid "Items will be shipped within 2 days."
|
@@ -492,7 +507,7 @@ msgstr "Tip"
|
|
492 |
|
493 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
494 |
msgid "WooCommerce order number"
|
495 |
-
msgstr "Număr de
|
496 |
|
497 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:281
|
498 |
msgid "Sequential number"
|
@@ -513,6 +528,11 @@ msgid ""
|
|
513 |
"editable by selecting checkbox. Next number needs to be lower then highest "
|
514 |
"existing invoice number or delete invoices first."
|
515 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
516 |
|
517 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
518 |
msgid "Digits"
|
@@ -520,11 +540,11 @@ msgstr "Cifre"
|
|
520 |
|
521 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:336
|
522 |
msgid "[prefix]"
|
523 |
-
msgstr ""
|
524 |
|
525 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:347
|
526 |
msgid "[suffix]"
|
527 |
-
msgstr ""
|
528 |
|
529 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:358
|
530 |
msgid "Format"
|
@@ -549,7 +569,7 @@ msgstr "Cod produs (SKU)"
|
|
549 |
|
550 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
551 |
#: includes/templates/invoices/global/micro/body.php:236
|
552 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
553 |
msgid "Subtotal"
|
554 |
msgstr "Subtotal"
|
555 |
|
@@ -563,15 +583,15 @@ msgstr "Taxe (total)"
|
|
563 |
|
564 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
565 |
#: includes/templates/invoices/global/micro/body.php:220
|
566 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
567 |
msgid "Discount"
|
568 |
msgstr "Reducere"
|
569 |
|
570 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
571 |
#: includes/templates/invoices/global/micro/body.php:228
|
572 |
#: includes/templates/invoices/global/micro/body.php:244
|
573 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
574 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
575 |
msgid "Shipping"
|
576 |
msgstr "Costuri de livrare"
|
577 |
|
@@ -593,7 +613,7 @@ msgstr "Opțiuni corp"
|
|
593 |
|
594 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
595 |
msgid "Footer Options"
|
596 |
-
msgstr "
|
597 |
|
598 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:494
|
599 |
msgid "Visible Columns"
|
@@ -601,19 +621,19 @@ msgstr "Coloane vizibile"
|
|
601 |
|
602 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:500
|
603 |
msgid "These are the general template options."
|
604 |
-
msgstr ""
|
605 |
|
606 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:501
|
607 |
msgid "These are the invoice number options."
|
608 |
-
msgstr ""
|
609 |
|
610 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:502
|
611 |
msgid "The header will be visible on every page. "
|
612 |
-
msgstr ""
|
613 |
|
614 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
615 |
msgid "The footer will be visible on every page."
|
616 |
-
msgstr ""
|
617 |
|
618 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
619 |
msgid ""
|
@@ -623,7 +643,7 @@ msgstr ""
|
|
623 |
|
624 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
625 |
msgid "Enable or disable the columns."
|
626 |
-
msgstr ""
|
627 |
|
628 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:579
|
629 |
msgid "File is invalid and contains either '..' or './'."
|
@@ -680,22 +700,22 @@ msgstr "TVA"
|
|
680 |
#: includes/templates/invoices/global/micro/body.php:67
|
681 |
#: includes/templates/invoices/global/micro/body.php:280
|
682 |
#: includes/templates/invoices/simple/micro/body.php:69
|
683 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
684 |
msgid "Total"
|
685 |
msgstr "Total"
|
686 |
|
687 |
#: includes/templates/invoices/global/micro/body.php:75
|
688 |
#, php-format
|
689 |
msgid "Order #%d - %s"
|
690 |
-
msgstr "
|
691 |
|
692 |
#: includes/templates/invoices/global/micro/body.php:255
|
693 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
694 |
msgid "Fee"
|
695 |
msgstr "Taxe"
|
696 |
|
697 |
#: includes/templates/invoices/global/micro/body.php:287
|
698 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
699 |
msgid "Refunded"
|
700 |
msgstr "Returnat"
|
701 |
|
@@ -712,12 +732,12 @@ msgstr "Factură"
|
|
712 |
#: includes/templates/invoices/simple/micro/body.php:25
|
713 |
#, php-format
|
714 |
msgid "Order Number: %s"
|
715 |
-
msgstr "Număr
|
716 |
|
717 |
#: includes/templates/invoices/simple/micro/body.php:26
|
718 |
#, php-format
|
719 |
msgid "Order Date: %s"
|
720 |
-
msgstr "Dată
|
721 |
|
722 |
#: includes/templates/invoices/simple/micro/body.php:288
|
723 |
#: includes/templates/invoices/simple/micro/body.php:293
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: \n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2015-12-25 09:22+0200\n"
|
11 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
|
|
12 |
"Language-Team: \n"
|
|
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 1.7.3\n"
|
17 |
+
"Last-Translator: \n"
|
18 |
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
19 |
"2:1));\n"
|
20 |
+
"Language: ro\n"
|
21 |
|
22 |
#: includes/be-woocommerce-pdf-invoices.php:126
|
23 |
#, php-format
|
42 |
|
43 |
#: includes/be-woocommerce-pdf-invoices.php:185
|
44 |
msgid "Invalid order ID"
|
45 |
+
msgstr "Număr de comandă invalid"
|
46 |
|
47 |
#: includes/be-woocommerce-pdf-invoices.php:191
|
48 |
msgid "Access denied"
|
68 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
69 |
msgstr ""
|
70 |
"Dacă vă place <strong>WooCommerce Facturi PDF</strong> vă rugam să ne lăsați "
|
71 |
+
"un calificativ %s★★★★★%s. Mulțumiri in avans!"
|
72 |
|
73 |
#: includes/be-woocommerce-pdf-invoices.php:282
|
74 |
#, php-format
|
141 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
142 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
143 |
msgstr ""
|
144 |
+
"Acest plugin este un proiect open source care vrea să acopere lipsa "
|
145 |
+
"facturărilor PDF din <a href=\"http://www.woothemes.com/woocommerce"
|
146 |
+
"\">WooCommerce</a>."
|
147 |
|
148 |
#: includes/be-woocommerce-pdf-invoices.php:347
|
149 |
msgid "<b>Version</b>: "
|
166 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
167 |
msgstr ""
|
168 |
"Nu vom cere niciodată donații însă garantăm dezvoltare in viitor, avem deci "
|
169 |
+
"nevoie de suportul dvs. Vă rugăm să vă arătați aprecierea lăsând un "
|
170 |
"calificativ <a href=\"https://wordpress.org/support/view/plugin-reviews/"
|
171 |
"woocommerce-pdf-invoices?rate=5#postform\">★★★★★</a> și votând pentru <a "
|
172 |
"href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">munca "
|
276 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
277 |
"all invoices with invoice number %s and greater."
|
278 |
msgstr ""
|
279 |
+
"Nu pot crea factura. Pentru a reseta numărul facturii cu %d, ștergeți toate "
|
280 |
+
"facturile cu numărul %s și mai mari."
|
281 |
|
282 |
#: includes/abstracts/abstract-bewpi-invoice.php:260
|
283 |
#, php-format
|
285 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
286 |
"First delete invoice and try again."
|
287 |
msgstr ""
|
288 |
+
"Nu pot crea factura. Factura cu numărul %s există deja. Ștergeți mai intâi "
|
289 |
+
"factura și încercați din nou."
|
290 |
|
291 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
292 |
#, php-format
|
293 |
msgid ""
|
294 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
295 |
msgstr ""
|
296 |
+
"Factura cu numărul %s nu a fost găsită. Creați mai întâi factura și "
|
297 |
+
"încercați din nou."
|
298 |
|
299 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
300 |
msgid "Allowed HTML tags: "
|
301 |
+
msgstr "Tag-uri HTML permise:"
|
302 |
|
303 |
#: includes/abstracts/abstract-bewpi-setting.php:173
|
304 |
msgid "Remove logo"
|
305 |
+
msgstr "Șterge logo"
|
306 |
|
307 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:86
|
308 |
msgid "Attach to Email"
|
309 |
+
msgstr "Atașează la email"
|
310 |
|
311 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:94
|
312 |
msgid "Processing order"
|
313 |
+
msgstr "În timpul procesării comenzii"
|
314 |
|
315 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:98
|
316 |
msgid "Completed order"
|
317 |
+
msgstr "Comandă completă"
|
318 |
|
319 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:102
|
320 |
msgid "Customer invoice"
|
321 |
+
msgstr "Factură client"
|
322 |
|
323 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:106
|
324 |
msgid "Do not attach"
|
325 |
+
msgstr "Nu atașează"
|
326 |
|
327 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:120
|
328 |
msgid "Attach to New order Email"
|
329 |
+
msgstr "Atașează la email comandă nouă"
|
330 |
|
331 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
332 |
msgid "View PDF"
|
349 |
"<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
|
350 |
"page.</div>"
|
351 |
msgstr ""
|
352 |
+
"<br/><div class=\"bewpi-notes\">Lăsați clienții să descarce factura din "
|
353 |
+
"pagina contului.</div>"
|
354 |
|
355 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
356 |
msgid "Enable Email It In"
|
357 |
+
msgstr "Activează trimiterea prin Email It In"
|
358 |
|
359 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:174
|
360 |
msgid "Email It In account"
|
361 |
+
msgstr "Cont pentru email Email It In"
|
362 |
|
363 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:179
|
364 |
#, php-format
|
365 |
msgid "Get your account from your Email It In %suser account%s."
|
366 |
+
msgstr "Luați contul email Email It In din %scont utilizator%s."
|
367 |
|
368 |
#: includes/admin/settings/class-bewpi-admin-settings-general.php:193
|
369 |
msgid "Email Options"
|
383 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
384 |
"Egnyte and enter your account below."
|
385 |
msgstr ""
|
386 |
+
"Subscrie la %s pentru a trimite facturi în Dropbox, OneDrive, Google Drive "
|
387 |
+
"sau Egnyte și pune contul tău mai jos."
|
388 |
|
389 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
390 |
msgid "Color theme"
|
397 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:116
|
398 |
#, php-format
|
399 |
msgid "%sFormat%s of invoice date and order date."
|
400 |
+
msgstr "%sFormat%s al datei facturii și al datei comenzii."
|
401 |
|
402 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:131
|
403 |
msgid "Display prices including tax"
|
408 |
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
|
409 |
"still be excluding tax, so disable it within the visible columns section."
|
410 |
msgstr ""
|
411 |
+
"Linia cu totalurile inclusiv taxele. <br/><b>Notă</b>: Subtotalurile nu vor "
|
412 |
+
"conține taxele, deci dezactivați-le în secțiunea coloanele vizibile."
|
413 |
|
414 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:144
|
415 |
msgid "Shipping taxable"
|
425 |
|
426 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:158
|
427 |
msgid "Invoice will be watermarked when order has been paid."
|
428 |
+
msgstr "Factura va fi marcata cu watermark când comanda va fi plătită."
|
429 |
|
430 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:166
|
431 |
msgid "Company name"
|
469 |
|
470 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:234
|
471 |
msgid "Terms & conditions, policies etc."
|
472 |
+
msgstr "Termeni și condiții, politici, etc."
|
473 |
|
474 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:239
|
475 |
#, php-format
|
477 |
"Displayed below customer notes and above footer. Want to attach additional "
|
478 |
"pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
479 |
msgstr ""
|
480 |
+
"Afișat sub notițe client și deasupra footer-ului. Doriți atașarea de pagini "
|
481 |
+
"adiționale la factură ? Uitați-vă la plugin-ul <a href=\"%s\">Premium</a>."
|
482 |
|
483 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
484 |
msgid "Items will be shipped within 2 days."
|
507 |
|
508 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
509 |
msgid "WooCommerce order number"
|
510 |
+
msgstr "Număr de comandă WooCommerce"
|
511 |
|
512 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:281
|
513 |
msgid "Sequential number"
|
528 |
"editable by selecting checkbox. Next number needs to be lower then highest "
|
529 |
"existing invoice number or delete invoices first."
|
530 |
msgstr ""
|
531 |
+
"Resetați numărătoarea pentru facturi și porniți de la un anumit număr al "
|
532 |
+
"facturii.<br/><b>Notă:</b> Disponibil numai pentru numere în ordine "
|
533 |
+
"secvențială și valoarea este editabilă selectând checkbox-ul. Numărul "
|
534 |
+
"urmator trebuie să fie mai mic decât cel mai mare număr de factură existentă "
|
535 |
+
"sau să ștergeți mai întâi facturi."
|
536 |
|
537 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
538 |
msgid "Digits"
|
540 |
|
541 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:336
|
542 |
msgid "[prefix]"
|
543 |
+
msgstr "[prefix]"
|
544 |
|
545 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:347
|
546 |
msgid "[suffix]"
|
547 |
+
msgstr "[sufix]"
|
548 |
|
549 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:358
|
550 |
msgid "Format"
|
569 |
|
570 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
571 |
#: includes/templates/invoices/global/micro/body.php:236
|
572 |
+
#: includes/templates/invoices/simple/micro/body.php:222
|
573 |
msgid "Subtotal"
|
574 |
msgstr "Subtotal"
|
575 |
|
583 |
|
584 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
585 |
#: includes/templates/invoices/global/micro/body.php:220
|
586 |
+
#: includes/templates/invoices/simple/micro/body.php:206
|
587 |
msgid "Discount"
|
588 |
msgstr "Reducere"
|
589 |
|
590 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
591 |
#: includes/templates/invoices/global/micro/body.php:228
|
592 |
#: includes/templates/invoices/global/micro/body.php:244
|
593 |
+
#: includes/templates/invoices/simple/micro/body.php:214
|
594 |
+
#: includes/templates/invoices/simple/micro/body.php:230
|
595 |
msgid "Shipping"
|
596 |
msgstr "Costuri de livrare"
|
597 |
|
613 |
|
614 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
615 |
msgid "Footer Options"
|
616 |
+
msgstr "Opțiuni footer"
|
617 |
|
618 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:494
|
619 |
msgid "Visible Columns"
|
621 |
|
622 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:500
|
623 |
msgid "These are the general template options."
|
624 |
+
msgstr "Acestea sunt opțiuni generale ale template-ului."
|
625 |
|
626 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:501
|
627 |
msgid "These are the invoice number options."
|
628 |
+
msgstr "Acestea sunt opțiuni pentru numărătoarea facturilor."
|
629 |
|
630 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:502
|
631 |
msgid "The header will be visible on every page. "
|
632 |
+
msgstr "Header-ul va fi vizibil pe toate paginile."
|
633 |
|
634 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
635 |
msgid "The footer will be visible on every page."
|
636 |
+
msgstr "Footer-ul va fi vizibl pe toate paginile."
|
637 |
|
638 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
639 |
msgid ""
|
643 |
|
644 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
645 |
msgid "Enable or disable the columns."
|
646 |
+
msgstr "Activează sau dezactivează coloanele."
|
647 |
|
648 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:579
|
649 |
msgid "File is invalid and contains either '..' or './'."
|
700 |
#: includes/templates/invoices/global/micro/body.php:67
|
701 |
#: includes/templates/invoices/global/micro/body.php:280
|
702 |
#: includes/templates/invoices/simple/micro/body.php:69
|
703 |
+
#: includes/templates/invoices/simple/micro/body.php:266
|
704 |
msgid "Total"
|
705 |
msgstr "Total"
|
706 |
|
707 |
#: includes/templates/invoices/global/micro/body.php:75
|
708 |
#, php-format
|
709 |
msgid "Order #%d - %s"
|
710 |
+
msgstr "Comanda #%d - %s"
|
711 |
|
712 |
#: includes/templates/invoices/global/micro/body.php:255
|
713 |
+
#: includes/templates/invoices/simple/micro/body.php:241
|
714 |
msgid "Fee"
|
715 |
msgstr "Taxe"
|
716 |
|
717 |
#: includes/templates/invoices/global/micro/body.php:287
|
718 |
+
#: includes/templates/invoices/simple/micro/body.php:273
|
719 |
msgid "Refunded"
|
720 |
msgstr "Returnat"
|
721 |
|
732 |
#: includes/templates/invoices/simple/micro/body.php:25
|
733 |
#, php-format
|
734 |
msgid "Order Number: %s"
|
735 |
+
msgstr "Număr comandă: %s"
|
736 |
|
737 |
#: includes/templates/invoices/simple/micro/body.php:26
|
738 |
#, php-format
|
739 |
msgid "Order Date: %s"
|
740 |
+
msgstr "Dată comandă: %s"
|
741 |
|
742 |
#: includes/templates/invoices/simple/micro/body.php:288
|
743 |
#: includes/templates/invoices/simple/micro/body.php:293
|
lang/woocommerce-pdf-invoices-ru_RU.mo
ADDED
Binary file
|
lang/woocommerce-pdf-invoices-ru_RU.po
ADDED
@@ -0,0 +1,711 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# SOME DESCRIPTIVE TITLE.
|
2 |
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3 |
+
# This file is distributed under the same license as the PACKAGE package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: \n"
|
9 |
+
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2016-01-12 14:18+0300\n"
|
11 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
12 |
+
"Language-Team: \n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"X-Generator: Poedit 1.7.3\n"
|
17 |
+
"Last-Translator: \n"
|
18 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
19 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
20 |
+
"Language: ru_RU\n"
|
21 |
+
|
22 |
+
#: includes/be-woocommerce-pdf-invoices.php:126
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
26 |
+
"PDF Invoices</strong></a>."
|
27 |
+
msgstr ""
|
28 |
+
"Хорошо!, тогда <a href=\"%s\">Начнем настраивать <strong>WooCommerce PDF "
|
29 |
+
"Invoices</strong></a>."
|
30 |
+
|
31 |
+
#: includes/be-woocommerce-pdf-invoices.php:136
|
32 |
+
msgid "Settings"
|
33 |
+
msgstr "Настройки"
|
34 |
+
|
35 |
+
#: includes/be-woocommerce-pdf-invoices.php:137
|
36 |
+
msgid "Premium"
|
37 |
+
msgstr "Премиум-поддержка"
|
38 |
+
|
39 |
+
#: includes/be-woocommerce-pdf-invoices.php:182
|
40 |
+
msgid "Invalid request"
|
41 |
+
msgstr "Неправильный запрос"
|
42 |
+
|
43 |
+
#: includes/be-woocommerce-pdf-invoices.php:185
|
44 |
+
msgid "Invalid order ID"
|
45 |
+
msgstr "Неправильный ID заказа"
|
46 |
+
|
47 |
+
#: includes/be-woocommerce-pdf-invoices.php:191
|
48 |
+
msgid "Access denied"
|
49 |
+
msgstr "Доступ ограничен"
|
50 |
+
|
51 |
+
#: includes/be-woocommerce-pdf-invoices.php:218
|
52 |
+
msgid "General"
|
53 |
+
msgstr "Основные"
|
54 |
+
|
55 |
+
#: includes/be-woocommerce-pdf-invoices.php:219
|
56 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
57 |
+
msgid "Template"
|
58 |
+
msgstr "Шаблон"
|
59 |
+
|
60 |
+
#: includes/be-woocommerce-pdf-invoices.php:242
|
61 |
+
msgid "Invoices"
|
62 |
+
msgstr "Накладные"
|
63 |
+
|
64 |
+
#: includes/be-woocommerce-pdf-invoices.php:281
|
65 |
+
#, php-format
|
66 |
+
msgid ""
|
67 |
+
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
68 |
+
"%s★★★★★%s rating. A huge thank you in advance!"
|
69 |
+
msgstr ""
|
70 |
+
"Если вам нравится <strong>WooCommerce PDF Invoices</strong> поставьте нам "
|
71 |
+
"%s★★★★★%s рейтинга. Огромное спасибо за ваш выбор!"
|
72 |
+
|
73 |
+
#: includes/be-woocommerce-pdf-invoices.php:282
|
74 |
+
#, php-format
|
75 |
+
msgid "Version %s"
|
76 |
+
msgstr "Версия %s"
|
77 |
+
|
78 |
+
#: includes/be-woocommerce-pdf-invoices.php:306
|
79 |
+
msgid "WooCommerce PDF Invoices Premium"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/be-woocommerce-pdf-invoices.php:308
|
83 |
+
msgid ""
|
84 |
+
"This plugin offers a premium version which comes with the following features:"
|
85 |
+
msgstr "Плагин имеет коммерческую версию, которая предлагает:"
|
86 |
+
|
87 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
88 |
+
msgid "Bill periodically by generating and sending global invoices."
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: includes/be-woocommerce-pdf-invoices.php:310
|
92 |
+
msgid "Add additional PDF's to customer invoices."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
96 |
+
msgid "Send customer invoices directly to suppliers and others."
|
97 |
+
msgstr "Выслать накладную поставщику и другим."
|
98 |
+
|
99 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
100 |
+
#, php-format
|
101 |
+
msgid ""
|
102 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
103 |
+
msgstr "Совместимо с плагином <a href=\"%s\">WooCommerce Subscriptions</a>."
|
104 |
+
|
105 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
106 |
+
msgid "Learn more"
|
107 |
+
msgstr "Узнать больше"
|
108 |
+
|
109 |
+
#: includes/be-woocommerce-pdf-invoices.php:318
|
110 |
+
msgid "Stay up-to-date"
|
111 |
+
msgstr "Проверять обновления"
|
112 |
+
|
113 |
+
#: includes/be-woocommerce-pdf-invoices.php:327
|
114 |
+
msgid ""
|
115 |
+
"We're constantly developing new features, stay up-to-date by subscribing to "
|
116 |
+
"our newsletter."
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/be-woocommerce-pdf-invoices.php:333
|
120 |
+
msgid "Your email address"
|
121 |
+
msgstr "Ваш email адрес"
|
122 |
+
|
123 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
124 |
+
msgid "Signup"
|
125 |
+
msgstr "Подписаться"
|
126 |
+
|
127 |
+
#: includes/be-woocommerce-pdf-invoices.php:337
|
128 |
+
msgid "No spam, ever. Unsubscribe at any time"
|
129 |
+
msgstr "Никакого спама. Отпишитесь в любой момент."
|
130 |
+
|
131 |
+
#: includes/be-woocommerce-pdf-invoices.php:345
|
132 |
+
msgid "About"
|
133 |
+
msgstr "О"
|
134 |
+
|
135 |
+
#: includes/be-woocommerce-pdf-invoices.php:346
|
136 |
+
msgid ""
|
137 |
+
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
138 |
+
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
139 |
+
msgstr ""
|
140 |
+
"Это плагин с открытым кодом который призван заполнить пробел в выставлении "
|
141 |
+
"счетов <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
142 |
+
|
143 |
+
#: includes/be-woocommerce-pdf-invoices.php:347
|
144 |
+
msgid "<b>Version</b>: "
|
145 |
+
msgstr "<b>Версия</b>: "
|
146 |
+
|
147 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
148 |
+
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
149 |
+
msgstr "<b>Автор</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
150 |
+
|
151 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
152 |
+
msgid "Support"
|
153 |
+
msgstr "Поддержка"
|
154 |
+
|
155 |
+
#: includes/be-woocommerce-pdf-invoices.php:353
|
156 |
+
msgid ""
|
157 |
+
"We will never ask for donations, but to garantee future development, we do "
|
158 |
+
"need your support. Please show us your appreciation by leaving a <a href="
|
159 |
+
"\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
|
160 |
+
"rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
|
161 |
+
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: includes/be-woocommerce-pdf-invoices.php:372
|
165 |
+
msgid ""
|
166 |
+
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/be-woocommerce-pdf-invoices.php:377
|
170 |
+
msgid "Need Help?"
|
171 |
+
msgstr "Нужна помощь?"
|
172 |
+
|
173 |
+
#: includes/be-woocommerce-pdf-invoices.php:379
|
174 |
+
msgid "Frequently Asked Questions"
|
175 |
+
msgstr "Часто задаваемые вопросы"
|
176 |
+
|
177 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
178 |
+
msgid "Support forum"
|
179 |
+
msgstr "Форум поддержки"
|
180 |
+
|
181 |
+
#: includes/be-woocommerce-pdf-invoices.php:381
|
182 |
+
msgid "Request a feature"
|
183 |
+
msgstr "Запросить функционал"
|
184 |
+
|
185 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
186 |
+
msgid "Email us"
|
187 |
+
msgstr "Напишите нам письмо:"
|
188 |
+
|
189 |
+
#: includes/be-woocommerce-pdf-invoices.php:437
|
190 |
+
msgid "PDF Invoice"
|
191 |
+
msgstr "Накладная в PDF"
|
192 |
+
|
193 |
+
#: includes/be-woocommerce-pdf-invoices.php:463
|
194 |
+
msgid "Invoiced on:"
|
195 |
+
msgstr "Дата накладной"
|
196 |
+
|
197 |
+
#: includes/be-woocommerce-pdf-invoices.php:467
|
198 |
+
msgid "Invoice number:"
|
199 |
+
msgstr "Номер накладной"
|
200 |
+
|
201 |
+
#: includes/be-woocommerce-pdf-invoices.php:505
|
202 |
+
msgid "View invoice"
|
203 |
+
msgstr "Просмотреть накладную"
|
204 |
+
|
205 |
+
#: includes/be-woocommerce-pdf-invoices.php:505
|
206 |
+
msgid "View"
|
207 |
+
msgstr "Просмотр"
|
208 |
+
|
209 |
+
#: includes/be-woocommerce-pdf-invoices.php:506
|
210 |
+
msgid "Cancel invoice"
|
211 |
+
msgstr "Удалить накладную"
|
212 |
+
|
213 |
+
#: includes/be-woocommerce-pdf-invoices.php:506
|
214 |
+
msgid "Cancel"
|
215 |
+
msgstr "Отмена"
|
216 |
+
|
217 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
218 |
+
msgid "Are you sure to delete the invoice?"
|
219 |
+
msgstr "Вы уверены что хотите удалить накладную?"
|
220 |
+
|
221 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
222 |
+
msgid "Create invoice"
|
223 |
+
msgstr "Создать накладную"
|
224 |
+
|
225 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
226 |
+
msgid "Create"
|
227 |
+
msgstr "Создать"
|
228 |
+
|
229 |
+
#: includes/be-woocommerce-pdf-invoices.php:534
|
230 |
+
#, php-format
|
231 |
+
msgid "Invoice %s (PDF)"
|
232 |
+
msgstr "Накладная %s (PDF)"
|
233 |
+
|
234 |
+
#: includes/be-woocommerce-pdf-invoices.php:644
|
235 |
+
#, php-format
|
236 |
+
msgid ""
|
237 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
238 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
239 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
240 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
241 |
+
"done it!</a>"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: includes/class-bewpi-invoice.php:48
|
245 |
+
msgid ""
|
246 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
247 |
+
"page first."
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/abstracts/abstract-bewpi-document.php:64
|
251 |
+
msgid "Paid"
|
252 |
+
msgstr "Оплачено"
|
253 |
+
|
254 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
255 |
+
#, php-format
|
256 |
+
msgid ""
|
257 |
+
"Could not create invoice. In order to reset invoice number with %d, delete "
|
258 |
+
"all invoices with invoice number %s and greater."
|
259 |
+
msgstr ""
|
260 |
+
"Невозможно создать накладную. Сбросте номера накладных с %d, удалите все "
|
261 |
+
"накладные с номера %s и выше."
|
262 |
+
|
263 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:260
|
264 |
+
#, php-format
|
265 |
+
msgid ""
|
266 |
+
"Could not create invoice. Invoice with invoice number %s already exists. "
|
267 |
+
"First delete invoice and try again."
|
268 |
+
msgstr ""
|
269 |
+
"Нельзя создать накладную. Накладная с номером %s уже существует. Сначала "
|
270 |
+
"удалите накладную и попробуйте заново."
|
271 |
+
|
272 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
273 |
+
#, php-format
|
274 |
+
msgid ""
|
275 |
+
"Invoice with invoice number %s not found. First create invoice and try again."
|
276 |
+
msgstr "Накладная с номером %s не найдена. Сначала создайте накладную."
|
277 |
+
|
278 |
+
#: includes/abstracts/abstract-bewpi-setting.php:98
|
279 |
+
msgid "Allowed HTML tags: "
|
280 |
+
msgstr "Допустимые HTML тэги: "
|
281 |
+
|
282 |
+
#: includes/abstracts/abstract-bewpi-setting.php:173
|
283 |
+
msgid "Remove logo"
|
284 |
+
msgstr "Удалить логотип"
|
285 |
+
|
286 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:86
|
287 |
+
msgid "Attach to Email"
|
288 |
+
msgstr "Присоединить к письму"
|
289 |
+
|
290 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:94
|
291 |
+
msgid "Processing order"
|
292 |
+
msgstr "Заказ в обработке"
|
293 |
+
|
294 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:98
|
295 |
+
msgid "Completed order"
|
296 |
+
msgstr "Выполненный заказ"
|
297 |
+
|
298 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:102
|
299 |
+
msgid "Customer invoice"
|
300 |
+
msgstr "Накладная покупателя"
|
301 |
+
|
302 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:106
|
303 |
+
msgid "Do not attach"
|
304 |
+
msgstr "Не прикреплять"
|
305 |
+
|
306 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:120
|
307 |
+
msgid "Attach to New order Email"
|
308 |
+
msgstr "Прикрепить к новому заказу"
|
309 |
+
|
310 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
311 |
+
msgid "View PDF"
|
312 |
+
msgstr "Просмотреть в PDF"
|
313 |
+
|
314 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:135
|
315 |
+
msgid "Download"
|
316 |
+
msgstr "Скачать"
|
317 |
+
|
318 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:139
|
319 |
+
msgid "Open in new browser tab/window"
|
320 |
+
msgstr "Открыть в новом браузера вкладки / окна"
|
321 |
+
|
322 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
323 |
+
msgid "Enable download from account"
|
324 |
+
msgstr "Включить скачать на странице \"Мой аккаунт\""
|
325 |
+
|
326 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:154
|
327 |
+
msgid ""
|
328 |
+
"<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
|
329 |
+
"page.</div>"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
333 |
+
msgid "Enable Email It In"
|
334 |
+
msgstr "Включить это Email-оповещение"
|
335 |
+
|
336 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:174
|
337 |
+
msgid "Email It In account"
|
338 |
+
msgstr "Прикрепить к e-mail"
|
339 |
+
|
340 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:179
|
341 |
+
#, php-format
|
342 |
+
msgid "Get your account from your Email It In %suser account%s."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:193
|
346 |
+
msgid "Email Options"
|
347 |
+
msgstr "Параметры Email"
|
348 |
+
|
349 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:199
|
350 |
+
msgid "Download Options"
|
351 |
+
msgstr "Свойства загрузки"
|
352 |
+
|
353 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:205
|
354 |
+
msgid "Cloud Storage Options"
|
355 |
+
msgstr "Свойства хранилища"
|
356 |
+
|
357 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:213
|
358 |
+
#, php-format
|
359 |
+
msgid ""
|
360 |
+
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
361 |
+
"Egnyte and enter your account below."
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
365 |
+
msgid "Color theme"
|
366 |
+
msgstr "Цвет темы"
|
367 |
+
|
368 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:111
|
369 |
+
msgid "Date format"
|
370 |
+
msgstr "Формат числа"
|
371 |
+
|
372 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:116
|
373 |
+
#, php-format
|
374 |
+
msgid "%sFormat%s of invoice date and order date."
|
375 |
+
msgstr "%sFormat%s даты накладной и даты заказа"
|
376 |
+
|
377 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:131
|
378 |
+
msgid "Display prices including tax"
|
379 |
+
msgstr "Отображать цены включая налоги"
|
380 |
+
|
381 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:132
|
382 |
+
msgid ""
|
383 |
+
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
|
384 |
+
"still be excluding tax, so disable it within the visible columns section."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:144
|
388 |
+
msgid "Shipping taxable"
|
389 |
+
msgstr "Налогооблагаемый"
|
390 |
+
|
391 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:145
|
392 |
+
msgid "Enable to display subtotal including shipping."
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:157
|
396 |
+
msgid "Mark invoice as paid"
|
397 |
+
msgstr "Отметить накладную как оплаченную"
|
398 |
+
|
399 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:158
|
400 |
+
msgid "Invoice will be watermarked when order has been paid."
|
401 |
+
msgstr "Накладная будет отмечена посчле оплаты"
|
402 |
+
|
403 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:166
|
404 |
+
msgid "Company name"
|
405 |
+
msgstr "Название компании"
|
406 |
+
|
407 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:177
|
408 |
+
msgid "Company logo"
|
409 |
+
msgstr "Логотип компании"
|
410 |
+
|
411 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
412 |
+
msgid "Company address"
|
413 |
+
msgstr "Адрес компании"
|
414 |
+
|
415 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
416 |
+
msgid "Displayed in upper-right corner near logo."
|
417 |
+
msgstr "Показать в правом верхнем углу рядом с логотипом."
|
418 |
+
|
419 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
420 |
+
msgid "Company details"
|
421 |
+
msgstr "Описание компании"
|
422 |
+
|
423 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
424 |
+
msgid "Displayed below company address."
|
425 |
+
msgstr "Показать перед Адресом компании"
|
426 |
+
|
427 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
428 |
+
msgid "Thank you text"
|
429 |
+
msgstr "Текс благодарности"
|
430 |
+
|
431 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
432 |
+
msgid "Displayed in big colored bar directly after invoice total."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
436 |
+
msgid "Thank you for your purchase!"
|
437 |
+
msgstr "Спасибо за ваш заказ!"
|
438 |
+
|
439 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
440 |
+
msgid "Show customer notes"
|
441 |
+
msgstr "Показать замечания покупателя"
|
442 |
+
|
443 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:234
|
444 |
+
msgid "Terms & conditions, policies etc."
|
445 |
+
msgstr "Условия и соглашения"
|
446 |
+
|
447 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:239
|
448 |
+
#, php-format
|
449 |
+
msgid ""
|
450 |
+
"Displayed below customer notes and above footer. Want to attach additional "
|
451 |
+
"pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
455 |
+
msgid "Items will be shipped within 2 days."
|
456 |
+
msgstr "Товары будут доставлены в течении 2х дней."
|
457 |
+
|
458 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
459 |
+
msgid "Left footer column."
|
460 |
+
msgstr "Подвал левой колонки"
|
461 |
+
|
462 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
463 |
+
#, php-format
|
464 |
+
msgid "<b>Payment method</b> %s"
|
465 |
+
msgstr "<b>Способ оплаты</b> %s"
|
466 |
+
|
467 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
468 |
+
msgid "Right footer column."
|
469 |
+
msgstr "Подвал правой колонки"
|
470 |
+
|
471 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
472 |
+
msgid "Leave empty to show page numbering."
|
473 |
+
msgstr "Оставьте пустым для отображения номеров страниц"
|
474 |
+
|
475 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
476 |
+
msgid "Type"
|
477 |
+
msgstr "Тип"
|
478 |
+
|
479 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
480 |
+
msgid "WooCommerce order number"
|
481 |
+
msgstr "Номер заказа вWooCommerce"
|
482 |
+
|
483 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:281
|
484 |
+
msgid "Sequential number"
|
485 |
+
msgstr "Порядковый номер"
|
486 |
+
|
487 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:295
|
488 |
+
msgid "Reset invoice counter"
|
489 |
+
msgstr "Сбросить счетчик накладных"
|
490 |
+
|
491 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:305
|
492 |
+
msgid "Next"
|
493 |
+
msgstr "Далее"
|
494 |
+
|
495 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:310
|
496 |
+
msgid ""
|
497 |
+
"Reset the invoice counter and start counting from given invoice number.<br/"
|
498 |
+
"><b>Note:</b> Only available for Sequential numbering and value will be "
|
499 |
+
"editable by selecting checkbox. Next number needs to be lower then highest "
|
500 |
+
"existing invoice number or delete invoices first."
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
504 |
+
msgid "Digits"
|
505 |
+
msgstr "Знаков"
|
506 |
+
|
507 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:336
|
508 |
+
msgid "[prefix]"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:347
|
512 |
+
msgid "[suffix]"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:358
|
516 |
+
msgid "Format"
|
517 |
+
msgstr "Формат"
|
518 |
+
|
519 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:363
|
520 |
+
#, php-format
|
521 |
+
msgid ""
|
522 |
+
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
523 |
+
"slashes aren't supported."
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
527 |
+
msgid "Reset on 1st of january"
|
528 |
+
msgstr "Сбросить 1го января"
|
529 |
+
|
530 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
531 |
+
#: includes/templates/invoices/global/micro/body.php:44
|
532 |
+
#: includes/templates/invoices/simple/micro/body.php:46
|
533 |
+
msgid "SKU"
|
534 |
+
msgstr "Артикул"
|
535 |
+
|
536 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
537 |
+
#: includes/templates/invoices/global/micro/body.php:236
|
538 |
+
#: includes/templates/invoices/simple/micro/body.php:99
|
539 |
+
msgid "Subtotal"
|
540 |
+
msgstr "Подытог"
|
541 |
+
|
542 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
543 |
+
msgid "Tax (item)"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
547 |
+
msgid "Tax (total)"
|
548 |
+
msgstr "Итого налогов"
|
549 |
+
|
550 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
551 |
+
#: includes/templates/invoices/global/micro/body.php:220
|
552 |
+
#: includes/templates/invoices/simple/micro/body.php:83
|
553 |
+
msgid "Discount"
|
554 |
+
msgstr "Скидка"
|
555 |
+
|
556 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
557 |
+
#: includes/templates/invoices/global/micro/body.php:228
|
558 |
+
#: includes/templates/invoices/global/micro/body.php:244
|
559 |
+
#: includes/templates/invoices/simple/micro/body.php:91
|
560 |
+
#: includes/templates/invoices/simple/micro/body.php:107
|
561 |
+
msgid "Shipping"
|
562 |
+
msgstr "Доставка"
|
563 |
+
|
564 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:464
|
565 |
+
msgid "General Options"
|
566 |
+
msgstr "Основные настройки"
|
567 |
+
|
568 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:470
|
569 |
+
msgid "Invoice Number Options"
|
570 |
+
msgstr "Это свойства номера накладной."
|
571 |
+
|
572 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:476
|
573 |
+
msgid "Header Options"
|
574 |
+
msgstr "Свойства заголовка"
|
575 |
+
|
576 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
577 |
+
msgid "Body Options"
|
578 |
+
msgstr "Свойства тела письма"
|
579 |
+
|
580 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
581 |
+
msgid "Footer Options"
|
582 |
+
msgstr "Свойства подвала"
|
583 |
+
|
584 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:494
|
585 |
+
msgid "Visible Columns"
|
586 |
+
msgstr "Видимые колонки"
|
587 |
+
|
588 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:500
|
589 |
+
msgid "These are the general template options."
|
590 |
+
msgstr "Это основные свойства шаблона."
|
591 |
+
|
592 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:501
|
593 |
+
msgid "These are the invoice number options."
|
594 |
+
msgstr "Это свойства номера накладной."
|
595 |
+
|
596 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:502
|
597 |
+
msgid "The header will be visible on every page. "
|
598 |
+
msgstr "Заголовок будет виден на каждой странице."
|
599 |
+
|
600 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
601 |
+
msgid "The footer will be visible on every page."
|
602 |
+
msgstr "Подвал будет виден на каждой странице."
|
603 |
+
|
604 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
605 |
+
msgid ""
|
606 |
+
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
|
607 |
+
"order payment method."
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
611 |
+
msgid "Enable or disable the columns."
|
612 |
+
msgstr "Включить или отключить колонки"
|
613 |
+
|
614 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:579
|
615 |
+
msgid "File is invalid and contains either '..' or './'."
|
616 |
+
msgstr "Неправильный формат файла и содержит '..' или './'."
|
617 |
+
|
618 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:586
|
619 |
+
msgid "File is invalid and contains ':' after the first character."
|
620 |
+
msgstr "Неправильный формат файла и содержит ':' после первого символа."
|
621 |
+
|
622 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:595
|
623 |
+
msgid "File should be less then 2MB."
|
624 |
+
msgstr "Файл должен быть меньше 2MB."
|
625 |
+
|
626 |
+
#: includes/templates/invoices/global/micro/body.php:5
|
627 |
+
#: includes/templates/invoices/simple/micro/body.php:5
|
628 |
+
msgid "Invoice to"
|
629 |
+
msgstr "Плательщик"
|
630 |
+
|
631 |
+
#: includes/templates/invoices/global/micro/body.php:7
|
632 |
+
#: includes/templates/invoices/simple/micro/body.php:7
|
633 |
+
#, php-format
|
634 |
+
msgid "Phone: %s"
|
635 |
+
msgstr "Телефон: %s"
|
636 |
+
|
637 |
+
#: includes/templates/invoices/global/micro/body.php:11
|
638 |
+
#: includes/templates/invoices/simple/micro/body.php:11
|
639 |
+
msgid "Ship to"
|
640 |
+
msgstr "Доставка в"
|
641 |
+
|
642 |
+
#: includes/templates/invoices/global/micro/body.php:22
|
643 |
+
msgid "Global Invoice"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: includes/templates/invoices/global/micro/body.php:40
|
647 |
+
#: includes/templates/invoices/simple/micro/body.php:42
|
648 |
+
msgid "Description"
|
649 |
+
msgstr "Описание"
|
650 |
+
|
651 |
+
#: includes/templates/invoices/global/micro/body.php:48
|
652 |
+
#: includes/templates/invoices/simple/micro/body.php:50
|
653 |
+
msgid "Cost"
|
654 |
+
msgstr "Цена"
|
655 |
+
|
656 |
+
#: includes/templates/invoices/global/micro/body.php:50
|
657 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
658 |
+
msgid "Qty"
|
659 |
+
msgstr "Кол-во"
|
660 |
+
|
661 |
+
#: includes/templates/invoices/global/micro/body.php:56
|
662 |
+
#: includes/templates/invoices/simple/micro/body.php:58
|
663 |
+
msgid "VAT"
|
664 |
+
msgstr "НДС"
|
665 |
+
|
666 |
+
#: includes/templates/invoices/global/micro/body.php:67
|
667 |
+
#: includes/templates/invoices/global/micro/body.php:280
|
668 |
+
#: includes/templates/invoices/simple/micro/body.php:69
|
669 |
+
#: includes/templates/invoices/simple/micro/body.php:143
|
670 |
+
msgid "Total"
|
671 |
+
msgstr "Всего:"
|
672 |
+
|
673 |
+
#: includes/templates/invoices/global/micro/body.php:75
|
674 |
+
#, php-format
|
675 |
+
msgid "Order #%d - %s"
|
676 |
+
msgstr "Заказ #%d - %s"
|
677 |
+
|
678 |
+
#: includes/templates/invoices/global/micro/body.php:255
|
679 |
+
#: includes/templates/invoices/simple/micro/body.php:118
|
680 |
+
msgid "Fee"
|
681 |
+
msgstr "Оплата"
|
682 |
+
|
683 |
+
#: includes/templates/invoices/global/micro/body.php:287
|
684 |
+
#: includes/templates/invoices/simple/micro/body.php:150
|
685 |
+
msgid "Refunded"
|
686 |
+
msgstr "Возвращён"
|
687 |
+
|
688 |
+
#: includes/templates/invoices/global/micro/footer.php:15
|
689 |
+
#: includes/templates/invoices/simple/micro/footer.php:18
|
690 |
+
#, php-format
|
691 |
+
msgid "%s of %s"
|
692 |
+
msgstr "%s из %s"
|
693 |
+
|
694 |
+
#: includes/templates/invoices/simple/micro/body.php:22
|
695 |
+
msgid "Invoice"
|
696 |
+
msgstr "Накладная"
|
697 |
+
|
698 |
+
#: includes/templates/invoices/simple/micro/body.php:25
|
699 |
+
#, php-format
|
700 |
+
msgid "Order Number: %s"
|
701 |
+
msgstr "Номер заказа: %s"
|
702 |
+
|
703 |
+
#: includes/templates/invoices/simple/micro/body.php:26
|
704 |
+
#, php-format
|
705 |
+
msgid "Order Date: %s"
|
706 |
+
msgstr "Дата заказа: %s"
|
707 |
+
|
708 |
+
#: includes/templates/invoices/simple/micro/body.php:288
|
709 |
+
#: includes/templates/invoices/simple/micro/body.php:293
|
710 |
+
msgid "Customer note"
|
711 |
+
msgstr "Замечания покупателя"
|
lang/woocommerce-pdf-invoices-sk_SK.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-12-12 23:36+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Jaroslav Semančík\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: sk_SK\n"
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-12-12 23:36+0100\n"
|
6 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
7 |
"Last-Translator: Jaroslav Semančík\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: sk_SK\n"
|
lang/woocommerce-pdf-invoices-sl_SI.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -43,6 +43,16 @@ msgid ""
|
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
@@ -110,19 +120,31 @@ msgstr ""
|
|
110 |
msgid "Get your account from your Email It In %suser account%s."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgid "Email Options"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
118 |
msgid "Download Options"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
122 |
msgid "Cloud Storage Options"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -302,13 +324,13 @@ msgstr ""
|
|
302 |
|
303 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
304 |
#: includes/templates/invoices/global/micro/body.php:44
|
305 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
306 |
msgid "SKU"
|
307 |
msgstr "Koda"
|
308 |
|
309 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
310 |
#: includes/templates/invoices/global/micro/body.php:236
|
311 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
312 |
msgid "Subtotal"
|
313 |
msgstr "Skupaj"
|
314 |
|
@@ -322,15 +344,15 @@ msgstr ""
|
|
322 |
|
323 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
324 |
#: includes/templates/invoices/global/micro/body.php:220
|
325 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
326 |
msgid "Discount"
|
327 |
msgstr "Popust"
|
328 |
|
329 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
330 |
#: includes/templates/invoices/global/micro/body.php:228
|
331 |
#: includes/templates/invoices/global/micro/body.php:244
|
332 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
333 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
334 |
msgid "Shipping"
|
335 |
msgstr "Poštnina"
|
336 |
|
@@ -634,29 +656,29 @@ msgid "Global Invoice"
|
|
634 |
msgstr ""
|
635 |
|
636 |
#: includes/templates/invoices/global/micro/body.php:40
|
637 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
638 |
msgid "Description"
|
639 |
msgstr "Opis"
|
640 |
|
641 |
#: includes/templates/invoices/global/micro/body.php:48
|
642 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
643 |
msgid "Cost"
|
644 |
msgstr ""
|
645 |
|
646 |
#: includes/templates/invoices/global/micro/body.php:50
|
647 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
648 |
msgid "Qty"
|
649 |
msgstr ""
|
650 |
|
651 |
#: includes/templates/invoices/global/micro/body.php:56
|
652 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
653 |
msgid "VAT"
|
654 |
msgstr ""
|
655 |
|
656 |
#: includes/templates/invoices/global/micro/body.php:67
|
657 |
#: includes/templates/invoices/global/micro/body.php:280
|
658 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
659 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
660 |
msgid "Total"
|
661 |
msgstr "Skupaj"
|
662 |
|
@@ -666,12 +688,12 @@ msgid "Order #%d - %s"
|
|
666 |
msgstr ""
|
667 |
|
668 |
#: includes/templates/invoices/global/micro/body.php:255
|
669 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
670 |
msgid "Fee"
|
671 |
msgstr ""
|
672 |
|
673 |
#: includes/templates/invoices/global/micro/body.php:287
|
674 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
675 |
msgid "Refunded"
|
676 |
msgstr ""
|
677 |
|
@@ -695,8 +717,8 @@ msgstr ""
|
|
695 |
msgid "Order Date: %s"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
699 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
700 |
msgid "Customer note"
|
701 |
msgstr "Komentar kupca"
|
702 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-01-15 22:22+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:361
|
47 |
+
#, php-format
|
48 |
+
msgid "VAT Number: %s"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
52 |
+
#, php-format
|
53 |
+
msgid "Purchase Order Number: %s"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
57 |
msgid "Allowed HTML tags: "
|
58 |
msgstr ""
|
120 |
msgid "Get your account from your Email It In %suser account%s."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
124 |
+
msgid "Enable mPDF debugging"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
128 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
132 |
msgid "Email Options"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
136 |
msgid "Download Options"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
140 |
msgid "Cloud Storage Options"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
144 |
+
msgid "Debug Options"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
148 |
#, php-format
|
149 |
msgid ""
|
150 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
324 |
|
325 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
326 |
#: includes/templates/invoices/global/micro/body.php:44
|
327 |
+
#: includes/templates/invoices/simple/micro/body.php:48
|
328 |
msgid "SKU"
|
329 |
msgstr "Koda"
|
330 |
|
331 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
332 |
#: includes/templates/invoices/global/micro/body.php:236
|
333 |
+
#: includes/templates/invoices/simple/micro/body.php:101
|
334 |
msgid "Subtotal"
|
335 |
msgstr "Skupaj"
|
336 |
|
344 |
|
345 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
346 |
#: includes/templates/invoices/global/micro/body.php:220
|
347 |
+
#: includes/templates/invoices/simple/micro/body.php:85
|
348 |
msgid "Discount"
|
349 |
msgstr "Popust"
|
350 |
|
351 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
352 |
#: includes/templates/invoices/global/micro/body.php:228
|
353 |
#: includes/templates/invoices/global/micro/body.php:244
|
354 |
+
#: includes/templates/invoices/simple/micro/body.php:93
|
355 |
+
#: includes/templates/invoices/simple/micro/body.php:109
|
356 |
msgid "Shipping"
|
357 |
msgstr "Poštnina"
|
358 |
|
656 |
msgstr ""
|
657 |
|
658 |
#: includes/templates/invoices/global/micro/body.php:40
|
659 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
660 |
msgid "Description"
|
661 |
msgstr "Opis"
|
662 |
|
663 |
#: includes/templates/invoices/global/micro/body.php:48
|
664 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
665 |
msgid "Cost"
|
666 |
msgstr ""
|
667 |
|
668 |
#: includes/templates/invoices/global/micro/body.php:50
|
669 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
670 |
msgid "Qty"
|
671 |
msgstr ""
|
672 |
|
673 |
#: includes/templates/invoices/global/micro/body.php:56
|
674 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
675 |
msgid "VAT"
|
676 |
msgstr ""
|
677 |
|
678 |
#: includes/templates/invoices/global/micro/body.php:67
|
679 |
#: includes/templates/invoices/global/micro/body.php:280
|
680 |
+
#: includes/templates/invoices/simple/micro/body.php:71
|
681 |
+
#: includes/templates/invoices/simple/micro/body.php:145
|
682 |
msgid "Total"
|
683 |
msgstr "Skupaj"
|
684 |
|
688 |
msgstr ""
|
689 |
|
690 |
#: includes/templates/invoices/global/micro/body.php:255
|
691 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
692 |
msgid "Fee"
|
693 |
msgstr ""
|
694 |
|
695 |
#: includes/templates/invoices/global/micro/body.php:287
|
696 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
697 |
msgid "Refunded"
|
698 |
msgstr ""
|
699 |
|
717 |
msgid "Order Date: %s"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/templates/invoices/simple/micro/body.php:289
|
721 |
+
#: includes/templates/invoices/simple/micro/body.php:294
|
722 |
msgid "Customer note"
|
723 |
msgstr "Komentar kupca"
|
724 |
|
lang/woocommerce-pdf-invoices-sv_SE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
@@ -43,6 +43,16 @@ msgid ""
|
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
@@ -110,19 +120,31 @@ msgstr ""
|
|
110 |
msgid "Get your account from your Email It In %suser account%s."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgid "Email Options"
|
115 |
msgstr "E-post inställningar"
|
116 |
|
117 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
118 |
msgid "Download Options"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
122 |
msgid "Cloud Storage Options"
|
123 |
msgstr "Moln lagring inställningar"
|
124 |
|
125 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -302,13 +324,13 @@ msgstr "Återställ den första januari"
|
|
302 |
|
303 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
304 |
#: includes/templates/invoices/global/micro/body.php:44
|
305 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
306 |
msgid "SKU"
|
307 |
msgstr "SKU"
|
308 |
|
309 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
310 |
#: includes/templates/invoices/global/micro/body.php:236
|
311 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
312 |
msgid "Subtotal"
|
313 |
msgstr "Delsumma"
|
314 |
|
@@ -322,15 +344,15 @@ msgstr ""
|
|
322 |
|
323 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
324 |
#: includes/templates/invoices/global/micro/body.php:220
|
325 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
326 |
msgid "Discount"
|
327 |
msgstr "Rabatt"
|
328 |
|
329 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
330 |
#: includes/templates/invoices/global/micro/body.php:228
|
331 |
#: includes/templates/invoices/global/micro/body.php:244
|
332 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
333 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
334 |
msgid "Shipping"
|
335 |
msgstr "Frakt"
|
336 |
|
@@ -634,29 +656,29 @@ msgid "Global Invoice"
|
|
634 |
msgstr ""
|
635 |
|
636 |
#: includes/templates/invoices/global/micro/body.php:40
|
637 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
638 |
msgid "Description"
|
639 |
msgstr "Beskrivning"
|
640 |
|
641 |
#: includes/templates/invoices/global/micro/body.php:48
|
642 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
643 |
msgid "Cost"
|
644 |
msgstr "Pris"
|
645 |
|
646 |
#: includes/templates/invoices/global/micro/body.php:50
|
647 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
648 |
msgid "Qty"
|
649 |
msgstr "Antal"
|
650 |
|
651 |
#: includes/templates/invoices/global/micro/body.php:56
|
652 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
653 |
msgid "VAT"
|
654 |
msgstr "Moms"
|
655 |
|
656 |
#: includes/templates/invoices/global/micro/body.php:67
|
657 |
#: includes/templates/invoices/global/micro/body.php:280
|
658 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
659 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
660 |
msgid "Total"
|
661 |
msgstr "Total"
|
662 |
|
@@ -666,12 +688,12 @@ msgid "Order #%d - %s"
|
|
666 |
msgstr "Order #%d - %s"
|
667 |
|
668 |
#: includes/templates/invoices/global/micro/body.php:255
|
669 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
670 |
msgid "Fee"
|
671 |
msgstr "Avgift"
|
672 |
|
673 |
#: includes/templates/invoices/global/micro/body.php:287
|
674 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
675 |
msgid "Refunded"
|
676 |
msgstr "Betalas"
|
677 |
|
@@ -695,8 +717,8 @@ msgstr "Ordernummer: %s"
|
|
695 |
msgid "Order Date: %s"
|
696 |
msgstr "Orderdatum: %s"
|
697 |
|
698 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
699 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
700 |
msgid "Customer note"
|
701 |
msgstr "Kund anteckning"
|
702 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-01-15 22:22+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-15 22:22+0100\n"
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:361
|
47 |
+
#, php-format
|
48 |
+
msgid "VAT Number: %s"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
52 |
+
#, php-format
|
53 |
+
msgid "Purchase Order Number: %s"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
57 |
msgid "Allowed HTML tags: "
|
58 |
msgstr ""
|
120 |
msgid "Get your account from your Email It In %suser account%s."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
124 |
+
msgid "Enable mPDF debugging"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
128 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
132 |
msgid "Email Options"
|
133 |
msgstr "E-post inställningar"
|
134 |
|
135 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
136 |
msgid "Download Options"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
140 |
msgid "Cloud Storage Options"
|
141 |
msgstr "Moln lagring inställningar"
|
142 |
|
143 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
144 |
+
msgid "Debug Options"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
148 |
#, php-format
|
149 |
msgid ""
|
150 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
324 |
|
325 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
326 |
#: includes/templates/invoices/global/micro/body.php:44
|
327 |
+
#: includes/templates/invoices/simple/micro/body.php:48
|
328 |
msgid "SKU"
|
329 |
msgstr "SKU"
|
330 |
|
331 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
332 |
#: includes/templates/invoices/global/micro/body.php:236
|
333 |
+
#: includes/templates/invoices/simple/micro/body.php:101
|
334 |
msgid "Subtotal"
|
335 |
msgstr "Delsumma"
|
336 |
|
344 |
|
345 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
346 |
#: includes/templates/invoices/global/micro/body.php:220
|
347 |
+
#: includes/templates/invoices/simple/micro/body.php:85
|
348 |
msgid "Discount"
|
349 |
msgstr "Rabatt"
|
350 |
|
351 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
352 |
#: includes/templates/invoices/global/micro/body.php:228
|
353 |
#: includes/templates/invoices/global/micro/body.php:244
|
354 |
+
#: includes/templates/invoices/simple/micro/body.php:93
|
355 |
+
#: includes/templates/invoices/simple/micro/body.php:109
|
356 |
msgid "Shipping"
|
357 |
msgstr "Frakt"
|
358 |
|
656 |
msgstr ""
|
657 |
|
658 |
#: includes/templates/invoices/global/micro/body.php:40
|
659 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
660 |
msgid "Description"
|
661 |
msgstr "Beskrivning"
|
662 |
|
663 |
#: includes/templates/invoices/global/micro/body.php:48
|
664 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
665 |
msgid "Cost"
|
666 |
msgstr "Pris"
|
667 |
|
668 |
#: includes/templates/invoices/global/micro/body.php:50
|
669 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
670 |
msgid "Qty"
|
671 |
msgstr "Antal"
|
672 |
|
673 |
#: includes/templates/invoices/global/micro/body.php:56
|
674 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
675 |
msgid "VAT"
|
676 |
msgstr "Moms"
|
677 |
|
678 |
#: includes/templates/invoices/global/micro/body.php:67
|
679 |
#: includes/templates/invoices/global/micro/body.php:280
|
680 |
+
#: includes/templates/invoices/simple/micro/body.php:71
|
681 |
+
#: includes/templates/invoices/simple/micro/body.php:145
|
682 |
msgid "Total"
|
683 |
msgstr "Total"
|
684 |
|
688 |
msgstr "Order #%d - %s"
|
689 |
|
690 |
#: includes/templates/invoices/global/micro/body.php:255
|
691 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
692 |
msgid "Fee"
|
693 |
msgstr "Avgift"
|
694 |
|
695 |
#: includes/templates/invoices/global/micro/body.php:287
|
696 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
697 |
msgid "Refunded"
|
698 |
msgstr "Betalas"
|
699 |
|
717 |
msgid "Order Date: %s"
|
718 |
msgstr "Orderdatum: %s"
|
719 |
|
720 |
+
#: includes/templates/invoices/simple/micro/body.php:289
|
721 |
+
#: includes/templates/invoices/simple/micro/body.php:294
|
722 |
msgid "Customer note"
|
723 |
msgstr "Kund anteckning"
|
724 |
|
lang/woocommerce-pdf-invoices.pot
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date:
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -263,6 +263,16 @@ msgid ""
|
|
263 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
264 |
msgstr ""
|
265 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
267 |
msgid "Allowed HTML tags: "
|
268 |
msgstr ""
|
@@ -330,19 +340,31 @@ msgstr ""
|
|
330 |
msgid "Get your account from your Email It In %suser account%s."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
msgid "Email Options"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
338 |
msgid "Download Options"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
342 |
msgid "Cloud Storage Options"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:
|
|
|
|
|
|
|
|
|
346 |
#, php-format
|
347 |
msgid ""
|
348 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
@@ -517,13 +539,13 @@ msgstr ""
|
|
517 |
|
518 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
519 |
#: includes/templates/invoices/global/micro/body.php:44
|
520 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
521 |
msgid "SKU"
|
522 |
msgstr ""
|
523 |
|
524 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
525 |
#: includes/templates/invoices/global/micro/body.php:236
|
526 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
527 |
msgid "Subtotal"
|
528 |
msgstr ""
|
529 |
|
@@ -537,15 +559,15 @@ msgstr ""
|
|
537 |
|
538 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
539 |
#: includes/templates/invoices/global/micro/body.php:220
|
540 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
541 |
msgid "Discount"
|
542 |
msgstr ""
|
543 |
|
544 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
545 |
#: includes/templates/invoices/global/micro/body.php:228
|
546 |
#: includes/templates/invoices/global/micro/body.php:244
|
547 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
548 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
549 |
msgid "Shipping"
|
550 |
msgstr ""
|
551 |
|
@@ -632,29 +654,29 @@ msgid "Global Invoice"
|
|
632 |
msgstr ""
|
633 |
|
634 |
#: includes/templates/invoices/global/micro/body.php:40
|
635 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
636 |
msgid "Description"
|
637 |
msgstr ""
|
638 |
|
639 |
#: includes/templates/invoices/global/micro/body.php:48
|
640 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
641 |
msgid "Cost"
|
642 |
msgstr ""
|
643 |
|
644 |
#: includes/templates/invoices/global/micro/body.php:50
|
645 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
646 |
msgid "Qty"
|
647 |
msgstr ""
|
648 |
|
649 |
#: includes/templates/invoices/global/micro/body.php:56
|
650 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
651 |
msgid "VAT"
|
652 |
msgstr ""
|
653 |
|
654 |
#: includes/templates/invoices/global/micro/body.php:67
|
655 |
#: includes/templates/invoices/global/micro/body.php:280
|
656 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
657 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
658 |
msgid "Total"
|
659 |
msgstr ""
|
660 |
|
@@ -664,12 +686,12 @@ msgid "Order #%d - %s"
|
|
664 |
msgstr ""
|
665 |
|
666 |
#: includes/templates/invoices/global/micro/body.php:255
|
667 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
668 |
msgid "Fee"
|
669 |
msgstr ""
|
670 |
|
671 |
#: includes/templates/invoices/global/micro/body.php:287
|
672 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
673 |
msgid "Refunded"
|
674 |
msgstr ""
|
675 |
|
@@ -693,7 +715,7 @@ msgstr ""
|
|
693 |
msgid "Order Date: %s"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
697 |
-
#: includes/templates/invoices/simple/micro/body.php:
|
698 |
msgid "Customer note"
|
699 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2016-01-15 22:21+0100\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
263 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:361
|
267 |
+
#, php-format
|
268 |
+
msgid "VAT Number: %s"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
272 |
+
#, php-format
|
273 |
+
msgid "Purchase Order Number: %s"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
277 |
msgid "Allowed HTML tags: "
|
278 |
msgstr ""
|
340 |
msgid "Get your account from your Email It In %suser account%s."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:190
|
344 |
+
msgid "Enable mPDF debugging"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:191
|
348 |
+
msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:206
|
352 |
msgid "Email Options"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:212
|
356 |
msgid "Download Options"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:218
|
360 |
msgid "Cloud Storage Options"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:224
|
364 |
+
msgid "Debug Options"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:232
|
368 |
#, php-format
|
369 |
msgid ""
|
370 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
539 |
|
540 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
541 |
#: includes/templates/invoices/global/micro/body.php:44
|
542 |
+
#: includes/templates/invoices/simple/micro/body.php:48
|
543 |
msgid "SKU"
|
544 |
msgstr ""
|
545 |
|
546 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
547 |
#: includes/templates/invoices/global/micro/body.php:236
|
548 |
+
#: includes/templates/invoices/simple/micro/body.php:101
|
549 |
msgid "Subtotal"
|
550 |
msgstr ""
|
551 |
|
559 |
|
560 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
561 |
#: includes/templates/invoices/global/micro/body.php:220
|
562 |
+
#: includes/templates/invoices/simple/micro/body.php:85
|
563 |
msgid "Discount"
|
564 |
msgstr ""
|
565 |
|
566 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
567 |
#: includes/templates/invoices/global/micro/body.php:228
|
568 |
#: includes/templates/invoices/global/micro/body.php:244
|
569 |
+
#: includes/templates/invoices/simple/micro/body.php:93
|
570 |
+
#: includes/templates/invoices/simple/micro/body.php:109
|
571 |
msgid "Shipping"
|
572 |
msgstr ""
|
573 |
|
654 |
msgstr ""
|
655 |
|
656 |
#: includes/templates/invoices/global/micro/body.php:40
|
657 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
658 |
msgid "Description"
|
659 |
msgstr ""
|
660 |
|
661 |
#: includes/templates/invoices/global/micro/body.php:48
|
662 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
663 |
msgid "Cost"
|
664 |
msgstr ""
|
665 |
|
666 |
#: includes/templates/invoices/global/micro/body.php:50
|
667 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
668 |
msgid "Qty"
|
669 |
msgstr ""
|
670 |
|
671 |
#: includes/templates/invoices/global/micro/body.php:56
|
672 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
673 |
msgid "VAT"
|
674 |
msgstr ""
|
675 |
|
676 |
#: includes/templates/invoices/global/micro/body.php:67
|
677 |
#: includes/templates/invoices/global/micro/body.php:280
|
678 |
+
#: includes/templates/invoices/simple/micro/body.php:71
|
679 |
+
#: includes/templates/invoices/simple/micro/body.php:145
|
680 |
msgid "Total"
|
681 |
msgstr ""
|
682 |
|
686 |
msgstr ""
|
687 |
|
688 |
#: includes/templates/invoices/global/micro/body.php:255
|
689 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
690 |
msgid "Fee"
|
691 |
msgstr ""
|
692 |
|
693 |
#: includes/templates/invoices/global/micro/body.php:287
|
694 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
695 |
msgid "Refunded"
|
696 |
msgstr ""
|
697 |
|
715 |
msgid "Order Date: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: includes/templates/invoices/simple/micro/body.php:289
|
719 |
+
#: includes/templates/invoices/simple/micro/body.php:294
|
720 |
msgid "Customer note"
|
721 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: woocommerce pdf invoices, invoice, generate, pdf, woocommerce, attachment, email, completed order, customer invoice, processing order, attach, automatic, vat, rate, sequential, number
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -131,8 +131,31 @@ To change the options of the PDF, use below example.
|
|
131 |
|
132 |
`[bewpi-download-invoice title="Download (PDF) Invoice {formatted_invoice_number}" order_id="ORDER_ID"]`
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
== Changelog ==
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
= 2.3.20 - December 30, 2015 =
|
137 |
|
138 |
- Improved: Changed textdomain to plugin slug due to preparation of WordPress translations packages
|
4 |
Tags: woocommerce pdf invoices, invoice, generate, pdf, woocommerce, attachment, email, completed order, customer invoice, processing order, attach, automatic, vat, rate, sequential, number
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 2.4.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
131 |
|
132 |
`[bewpi-download-invoice title="Download (PDF) Invoice {formatted_invoice_number}" order_id="ORDER_ID"]`
|
133 |
|
134 |
+
= How to change direction of invoice to RTL? =
|
135 |
+
To change the direction of the invoice to RTL or something else, add below filter to your themes functions.php.
|
136 |
+
|
137 |
+
`function bewpi_mpdf( $mpdf ) {
|
138 |
+
$mpdf->SetDirectionality( 'rtl' );
|
139 |
+
return $mpdf;
|
140 |
+
}
|
141 |
+
add_filter( 'bewpi_mpdf', 'bewpi_mpdf' );`
|
142 |
+
|
143 |
+
= Images doesn't display on invoice? =
|
144 |
+
Enable mPDF debugging on General Settings tab in order to output errors. Not recommended on live site!
|
145 |
+
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 2.4.0 - January 15, 2016 =
|
149 |
+
|
150 |
+
- Added: Purchase Order Number from WooCommerce Purchase Order Gateway
|
151 |
+
- Added: VAT Number from WooCommerce EU VAT Number
|
152 |
+
- Added: Russian language files
|
153 |
+
- Added: Option to enable mPDF debugging
|
154 |
+
- Improved: Dutch language files
|
155 |
+
- Improved: Romain language files
|
156 |
+
- Fixed: Company logo image only showing red placeholder - Increased performance by using relative path to image
|
157 |
+
- Fixed: Color picker CSS conflict
|
158 |
+
|
159 |
= 2.3.20 - December 30, 2015 =
|
160 |
|
161 |
- Improved: Changed textdomain to plugin slug due to preparation of WordPress translations packages
|